diff --git a/random_sample/generate_tasks.py b/random_sample/generate_tasks.py
index f5bf278..4cf2425 100644
--- a/random_sample/generate_tasks.py
+++ b/random_sample/generate_tasks.py
@@ -217,7 +217,7 @@ def get_random_tables_and_samples(cursor, tables, num_tables=5, num_samples=5):
return sampled_data
-def generate_questions(client, schema_context, sampled_data):
+def generate_questions(client, schema_context, sampled_data, verbose=False):
"""Generates questions by calling the OpenAI API."""
if not client:
raise ValueError("OpenAI client not provided.")
@@ -229,6 +229,11 @@ def generate_questions(client, schema_context, sampled_data):
sampled_data_str=sampled_data_str
)
+ if verbose:
+ print("\n--- Generation Prompt ---")
+ print(prompt)
+ print("-------------------------\n")
+
try:
response = client.chat.completions.create(
model=OPENAI_CONFIG["model"],
@@ -240,6 +245,10 @@ def generate_questions(client, schema_context, sampled_data):
response_format={"type": "json_object"},
)
content = response.choices[0].message.content
+ if verbose:
+ print("\n--- GPT-4o Raw Generation Response ---")
+ print(content)
+ print("--------------------------------------\n")
data = json.loads(content)
# The prompt asks for {"questions": [...]}, so we extract the list.
@@ -271,7 +280,7 @@ def load_existing_tasks(filepath):
print(f"Warning: Could not read or parse {filepath}. Starting with an empty list.")
return []
-def evaluate_and_refine_tasks(tasks, client):
+def evaluate_and_refine_tasks(tasks, client, verbose=False):
"""
Uses an LLM to evaluate if a SQL result answers the question and refines the answer.
"""
@@ -293,6 +302,11 @@ def evaluate_and_refine_tasks(tasks, client):
prompt = SEMANTIC_EVALUATION_PROMPT_TEMPLATE.format(task_data_json=task_data_json)
+ if verbose:
+ print("\n--- Evaluation Prompt ---")
+ print(prompt)
+ print("-------------------------\n")
+
try:
print(f" - Evaluating question: \"{task['question'][:80]}...\"")
response = client.chat.completions.create(
@@ -305,6 +319,10 @@ def evaluate_and_refine_tasks(tasks, client):
response_format={"type": "json_object"},
)
content = response.choices[0].message.content
+ if verbose:
+ print("\n--- GPT-4o Raw Evaluation Response ---")
+ print(content)
+ print("----------------------------------------\n")
evaluation_result = json.loads(content)
if evaluation_result.get("can_answer") is True and "new_answer" in evaluation_result:
@@ -351,6 +369,11 @@ def main():
default="generated_tasks.json",
help="The file to save the generated tasks to (in JSON format)."
)
+ parser.add_argument(
+ "-v", "--verbose",
+ action="store_true",
+ help="Enable verbose output, including prompts and raw LLM responses."
+ )
args = parser.parse_args()
# Load existing tasks from the output file
@@ -389,10 +412,14 @@ def main():
# Get random samples for this round
print("Sampling data from 5 random tables...")
sampled_data = get_random_tables_and_samples(cursor, core_tables, num_tables=5, num_samples=5)
+ if args.verbose:
+ print("\n--- Sampled Data ---")
+ print(json.dumps(sampled_data, indent=2, default=str))
+ print("--------------------\n")
# Generate questions
print("Generating questions with GPT-4o...")
- generated_tasks = generate_questions(client, schema_context, sampled_data)
+ generated_tasks = generate_questions(client, schema_context, sampled_data, verbose=args.verbose)
# Execute SQL for generated tasks
tasks_for_evaluation = []
@@ -416,7 +443,7 @@ def main():
print(f"Filtering task due to SQL error: {err} on SQL: {task['sql']}")
# Perform semantic evaluation and get validated tasks
- validated_tasks = evaluate_and_refine_tasks(tasks_for_evaluation, client)
+ validated_tasks = evaluate_and_refine_tasks(tasks_for_evaluation, client, verbose=args.verbose)
# Append new tasks and save to file
if validated_tasks:
diff --git a/random_sample/generated_tasks_5k.json b/random_sample/generated_tasks_5k.json
new file mode 100644
index 0000000..2d89599
--- /dev/null
+++ b/random_sample/generated_tasks_5k.json
@@ -0,0 +1,310131 @@
+[
+ {
+ "question": "What is the price of the product with entity_id 1022?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1022 AND attribute_id = 77;",
+ "answer": [
+ "27.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "27.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which review has the title 'bra stays comfy and dry'?",
+ "sql": "SELECT review_id FROM review_detail WHERE title = 'bra stays comfy and dry';",
+ "answer": [
+ "318"
+ ],
+ "sql_execute_result": [
+ [
+ 318
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2023-01-10 in store 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-10' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for entity_id 19.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 19 AND attribute_id = 119;",
+ "answer": [
+ "shorts-men"
+ ],
+ "sql_execute_result": [
+ [
+ "shorts-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on 2022-07-12 in store 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-07-12' AND store_id = 1 AND order_status = 'complete';",
+ "answer": [
+ "206.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "206.1200"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile_id 8 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 8;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product attribute with value_id 1276?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE value_id = 1276;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What nickname is associated with review_id 258?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 258;",
+ "answer": [
+ "Lang"
+ ],
+ "sql_execute_result": [
+ [
+ "Lang"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity_id 3?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 3 AND attribute_id = 120;",
+ "answer": [
+ "gear"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for orders completed on 2023-01-17 in store 0.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-01-17' AND store_id = 0 AND order_status = 'complete';",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 88?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 88;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the product entity with value ID 1272?",
+ "sql": "SELECT attribute_id FROM catalog_product_entity_varchar WHERE value_id = 1272;",
+ "answer": [
+ "106"
+ ],
+ "sql_execute_result": [
+ [
+ 106
+ ]
+ ]
+ },
+ {
+ "question": "On what date was the order with ID 1395 created?",
+ "sql": "SELECT period FROM sales_order_aggregated_created WHERE id = 1395;",
+ "answer": [
+ "2022-05-13"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-05-13"
+ ]
+ ]
+ },
+ {
+ "question": "Which search query has the highest popularity?",
+ "sql": "SELECT query_text FROM search_query WHERE popularity = (SELECT MAX(popularity) FROM search_query);",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'canceled'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'canceled';",
+ "answer": [
+ "Canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are returned for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered on January 17, 2023, in store 1?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-01-17' AND store_id = 1;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID with the least number of orders on May 13, 2022.",
+ "sql": "SELECT store_id FROM sales_order_aggregated_created WHERE period = '2022-05-13' ORDER BY orders_count ASC LIMIT 1;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the product entity ID for the image located at '/w/b/wb07-brown-0.jpg'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_varchar WHERE value = '/w/b/wb07-brown-0.jpg';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 13
+ ],
+ [
+ 13
+ ],
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the label 'Complete'?",
+ "sql": "SELECT status FROM sales_order_status WHERE label = 'Complete';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 8?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 8;",
+ "answer": [
+ "marym@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "marym@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 135?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 135 AND attribute_id = 75;",
+ "answer": [
+ "
You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.
\n• Navy specked full zip hoodie.
• Ribbed cuffs, banded waist.
• Side pockets.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.
\n• Navy specked full zip hoodie.
• Ribbed cuffs, banded waist.
• Side pockets.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region ID 349 in locale 'en_US'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 349 AND locale = 'en_US';",
+ "answer": [
+ "Raplamaa"
+ ],
+ "sql_execute_result": [
+ [
+ "Raplamaa"
+ ]
+ ]
+ },
+ {
+ "question": "List all ratings for entity ID 1.",
+ "sql": "SELECT rating_code FROM rating WHERE entity_id = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer with ID 14.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE entity_id = 14;",
+ "answer": [
+ "123 Main Street New York New York 10001"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street New York New York 10001"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating code 'Value'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Value';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Get the billing telephone number for customer with ID 30.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE entity_id = 30;",
+ "answer": [
+ "6175551212"
+ ],
+ "sql_execute_result": [
+ [
+ "6175551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the order ID 1?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'WH-05'? (product_id = 1428)",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1428;",
+ "answer": [
+ "7.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "7.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1428?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1428;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "Troy Yoga Short",
+ "Troy Yoga Short-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the current stock quantity for the product with ID 1492.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1492;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many items are in the order with the Increment ID '000000001'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for the sales order with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Does the product 'Eos V-Neck Hoodie' have any pending reviews?",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WH11-S-Blue') AND status_id = (SELECT status_id FROM review_status WHERE status_code = 'pending');",
+ "answer": [
+ "No, the product 'Eos V-Neck Hoodie' does not have any pending reviews."
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the invoice with increment ID '1'?",
+ "sql": "SELECT created_at FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "2023-04-19 16:15:45"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:45"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer group with ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for orders in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 11 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 11;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with ID 929 in Italy?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 929 AND country_id = 'IT';",
+ "answer": [
+ "Verbania"
+ ],
+ "sql_execute_result": [
+ [
+ "Verbania"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value and percentage for the vote with ID 199.",
+ "sql": "SELECT value, percent FROM rating_option_vote WHERE vote_id = 199;",
+ "answer": [
+ "4",
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Which parent category does the category with ID 24 belong to?",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 24;",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the region 'Tucum\u00e1n' in Argentina?",
+ "sql": "SELECT code FROM directory_country_region WHERE default_name = 'Tucum\u00e1n' AND country_id = 'AR';",
+ "answer": [
+ "AR-T"
+ ],
+ "sql_execute_result": [
+ [
+ "AR-T"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Wholesale' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the path of the category with entity ID 15?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 15;",
+ "answer": [
+ "1/2/11/12/15"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/11/12/15"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code associated with rating ID 4?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000064'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000064';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who completed the order with increment ID '000000228'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000228';",
+ "answer": [
+ "bbjones@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "bbjones@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products belong to the category with entity ID 3?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 3;",
+ "answer": [
+ "46"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories does the category with entity ID 22 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 22;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name associated with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for order with entity ID 121?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE entity_id = 121;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity ID 22?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 22;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity_id 38?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 38;",
+ "answer": [
+ "1/2/38"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/38"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer associated with the credit memo ID 1?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are returned for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders placed on 2022-06-26.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-06-26';",
+ "answer": [
+ "113.8000",
+ "212.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "113.8000"
+ ],
+ [
+ "212.4000"
+ ],
+ [
+ "113.8000"
+ ],
+ [
+ "212.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description text for the product with entity_id 673?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 673 AND attribute_id = 75;",
+ "answer": [
+ "When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.
\n• Blue heather tank with gray pocket.
• Contrast sides and back inserts.
• Self-fabric binding at neck and armholes.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.
\n• Blue heather tank with gray pocket.
• Contrast sides and back inserts.
• Self-fabric binding at neck and armholes.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status for the credit memo with increment_id '000000001'?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity_id 21 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 21;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order aggregated on 2022-03-29?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-03-29';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Get the billing address for the credit memo with entity_id 1.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 47?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 47;",
+ "answer": [
+ "john.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are in category ID 32?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 32;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ]
+ ]
+ },
+ {
+ "question": "Find the value for the eav attribute option with ID 35.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 35;",
+ "answer": [
+ "Leather"
+ ],
+ "sql_execute_result": [
+ [
+ "Leather"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice associated with order ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the email 'julie.nguyen@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'julie.nguyen@gmail.com';",
+ "answer": [
+ "Julie Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Julie Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product ID 329 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 329;",
+ "answer": [
+ "-75"
+ ],
+ "sql_execute_result": [
+ [
+ -75
+ ]
+ ]
+ },
+ {
+ "question": "List all invoice IDs where the shipping amount is 5.0000.",
+ "sql": "SELECT entity_id FROM sales_invoice WHERE shipping_amount = 5.0000;",
+ "answer": [
+ "1",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are in the default store view?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address ID for invoice entity ID 1?",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for customer 'Jason Miller'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Jason Miller';",
+ "answer": [
+ "3035551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3035551212"
+ ]
+ ]
+ },
+ {
+ "question": "List all inactive CMS pages.",
+ "sql": "SELECT page_id, title FROM cms_page WHERE is_active = 0;",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the region code 'CO-VAC'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'CO-VAC';",
+ "answer": [
+ "Valle del Cauca"
+ ],
+ "sql_execute_result": [
+ [
+ "Valle del Cauca"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with the complete address '789 Rodeo Drive Beverly Hills California 90212'.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE shipping_full = '789 Rodeo Drive Beverly Hills California 90212';",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout type for the CMS page titled 'About us'?",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the review with ID 313?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 313;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have the billing region 'Texas'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_region = 'Texas';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob Jones"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "James Baker"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input renderer for the attribute with ID 124?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 124;",
+ "answer": [
+ "Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price"
+ ]
+ ]
+ },
+ {
+ "question": "Find the content heading for the CMS page with identifier 'customer-service'.",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'customer-service';",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing postcode for customer 'Robert Johnson'?",
+ "sql": "SELECT billing_postcode FROM customer_grid_flat WHERE name = 'Robert Johnson';",
+ "answer": [
+ "02108"
+ ],
+ "sql_execute_result": [
+ [
+ "02108"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer 'Alexander Thomas'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Alexander Thomas';",
+ "answer": [
+ "alexander.thomas@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Ida Workout Parachute Pant-29-Purple' on 2023-03-20.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Ida Workout Parachute Pant-29-Purple' AND period = '2023-03-20';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many billing addresses were found for 'Sarah Miller'?",
+ "sql": "SELECT street, city, region, postcode, country_id FROM sales_order_address WHERE firstname = 'Sarah' AND lastname = 'Miller' AND address_type = 'billing';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ],
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating 'Quality' active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the description for the product with entity ID 1433.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1433 AND attribute_id = 75;",
+ "answer": [
+ "Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.
\n• Teal tee.
• Long back hem.
• Dropped shoulders.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.
\n• Teal tee.
• Long back hem.
• Dropped shoulders.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'anna.nguyen@yahoo.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'anna.nguyen@yahoo.com';",
+ "answer": [
+ "Anna Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Anna Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "Which region and city is the billing address for 'Bob Johnson' associated with?",
+ "sql": "SELECT billing_region, billing_city FROM customer_grid_flat WHERE name = 'Bob Johnson';",
+ "answer": [
+ "Texas",
+ "Richardson"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas",
+ "Richardson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the highest rating position for 'Kratos Gym Pant-32-Black' on 2022-01-20?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Kratos Gym Pant-32-Black' AND period = '2022-01-20';",
+ "answer": [
+ "3",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID where 'Bella Tank-XL-Black' was a bestseller on 2023-04-28?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Bella Tank-XL-Black' AND period = '2023-04-28';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many products have the rating code 'Value'?",
+ "sql": "SELECT COUNT(*) FROM rating WHERE rating_code = 'Value';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of 'Eos V-Neck Hoodie' shipped in shipment ID 3?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE parent_id = 3 AND product_id = 1194;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all active stores in the system.",
+ "sql": "SELECT name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ],
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the 'Iris Workout Top' shipped in shipment ID 1?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE parent_id = 1 AND product_id = 1428;",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID of the item positioned at -1032 in category ID 2.",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE position = -1032 AND category_id = 2;",
+ "answer": [
+ "1861"
+ ],
+ "sql_execute_result": [
+ [
+ 1861
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for the customer with address ID 70?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 70;",
+ "answer": [
+ "6505551212"
+ ],
+ "sql_execute_result": [
+ [
+ "6505551212"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the code 'default'?",
+ "sql": "SELECT name FROM store WHERE code = 'default';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name and SKU of the product shipped in shipment ID 2.",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE parent_id = 2 AND product_id = 1492;",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee",
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee",
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the region of the customer with address ID 36.",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 36;",
+ "answer": [
+ "California"
+ ],
+ "sql_execute_result": [
+ [
+ "California"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the customer with address ID 12?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 12;",
+ "answer": [
+ "Houston"
+ ],
+ "sql_execute_result": [
+ [
+ "Houston"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 18?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 18;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000068'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000068';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total of the order with entity ID 303.",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 303;",
+ "answer": [
+ "192.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "192.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of items ordered by customer with email 'avidreader99@yahoo.com'?",
+ "sql": "SELECT SUM(total_qty_ordered) FROM sales_order WHERE customer_email = 'avidreader99@yahoo.com';",
+ "answer": [
+ "52"
+ ],
+ "sql_execute_result": [
+ [
+ "52.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by customer with ID 2?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 2;",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 2040 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 2040 LIMIT 1;",
+ "answer": [
+ "-137"
+ ],
+ "sql_execute_result": [
+ [
+ -137
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 73 used in product listings?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 73;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with increment ID '000000303'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000303';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order with increment ID '000000002'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'About us' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the 'Privacy Policy' CMS page?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "2023-04-19 15:41:33"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 15:41:33"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the attribute ID 73 for product entity ID 2037?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 2037 AND attribute_id = 73;",
+ "answer": [
+ "Erika Running Short-32-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Erika Running Short-32-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the eav attribute option with ID 55?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 55;",
+ "answer": [
+ "Multi"
+ ],
+ "sql_execute_result": [
+ [
+ "Multi"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the invoice with ID 2.",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 1157 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1157;",
+ "answer": [
+ "-129",
+ "-132",
+ "-456"
+ ],
+ "sql_execute_result": [
+ [
+ -129
+ ],
+ [
+ -132
+ ],
+ [
+ -456
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1099?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1099 AND attribute_id = 121;",
+ "answer": [
+ "selene-yoga-hoodie-m-orange"
+ ],
+ "sql_execute_result": [
+ [
+ "selene-yoga-hoodie-m-orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'MSH09-32-Black'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MSH09-32-Black';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer who placed the order with increment ID '000000135'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000135';",
+ "answer": [
+ "jennifer.white@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jennifer.white@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total grand total for the order with ID 302.",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 302;",
+ "answer": [
+ "183.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "183.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name of order item with item ID 1583?",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 1583;",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with SKU 'WSH10-28-Black' is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WSH10-28-Black');",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WH07-M-White'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WH07-M-White';",
+ "answer": [
+ "Phoebe Zipper Sweatshirt",
+ "Phoebe Zipper Sweatshirt-M-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Phoebe Zipper Sweatshirt"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email for the order with entity ID 302?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 302;",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with ID 75?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 75;",
+ "answer": [
+ "Description"
+ ],
+ "sql_execute_result": [
+ [
+ "Description"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 847?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 847;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table name for the 'invoice' entity type in store 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 1;",
+ "answer": [
+ "sequence_invoice_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO3 code for the country with country_id 'BR'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'BR';",
+ "answer": [
+ "BRA"
+ ],
+ "sql_execute_result": [
+ [
+ "BRA"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity_id 4 in the default store?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 45 AND store_id = 0 AND entity_id = 4;",
+ "answer": [
+ "Bags"
+ ],
+ "sql_execute_result": [
+ [
+ "Bags"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum value for the sequence profile with profile_id 1?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 1;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating with rating_id 3 active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence table name for the 'order' entity type in store 0.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 0;",
+ "answer": [
+ "sequence_order_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_0"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category path for entity_id 19 in the default store?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 120 AND store_id = 0 AND entity_id = 19;",
+ "answer": [
+ "men/bottoms-men/shorts-men"
+ ],
+ "sql_execute_result": [
+ [
+ "men/bottoms-men/shorts-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating with rating_id 2?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 2;",
+ "answer": [
+ "Value"
+ ],
+ "sql_execute_result": [
+ [
+ "Value"
+ ]
+ ]
+ },
+ {
+ "question": "Find the warning value for the sequence profile with profile_id 5.",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the review with status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total base grand total for the invoice with increment ID '000000002'.",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order currency code for the invoice with entity ID 1?",
+ "sql": "SELECT order_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email associated with the credit memo with order ID 2?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE order_id = 2;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the invoice with increment ID '000000001'?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address ID for the invoice with entity ID 2.",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the invoice with increment ID '000000002'?",
+ "sql": "SELECT shipping_amount FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all sequence values for shipment sequences.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "1",
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the state of the invoice with entity ID 1?",
+ "sql": "SELECT state FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the order increment ID '000000002'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base grand total for the credit memo associated with the order increment ID '000000002'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the percent rating for the review with ID 249.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 249;",
+ "answer": [
+ "40"
+ ],
+ "sql_execute_result": [
+ [
+ 40
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are used in product listing?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE used_in_product_listing = 1;",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ 73
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 97
+ ],
+ [
+ 107
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 121
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 144
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for the group with ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status for the credit memo with entity ID 1?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of votes for product with entity PK value 14.",
+ "sql": "SELECT COUNT(*) FROM rating_option_vote WHERE entity_pk_value = 14;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status ID 3?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer with the name 'John Doe'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'John Doe';",
+ "answer": [
+ "johndoe123@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "johndoe123@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Troy Yoga Short-36-Black' in 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Troy Yoga Short-36-Black' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with the code 'admin' active?",
+ "sql": "SELECT is_active FROM store WHERE code = 'admin';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 19?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE customer_id = 19;",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items ordered in order with ID 62.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 62;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 1662?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1662;",
+ "answer": [
+ "WB05-L-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "WB05-L-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer 'Adam Garcia'?",
+ "sql": "SELECT entity_id, status FROM sales_order_grid WHERE customer_name = 'Adam Garcia';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 7,
+ "canceled"
+ ],
+ [
+ 17,
+ "complete"
+ ],
+ [
+ 56,
+ "canceled"
+ ],
+ [
+ 57,
+ "complete"
+ ],
+ [
+ 74,
+ "canceled"
+ ],
+ [
+ 82,
+ "complete"
+ ],
+ [
+ 130,
+ "complete"
+ ],
+ [
+ 172,
+ "canceled"
+ ],
+ [
+ 184,
+ "complete"
+ ],
+ [
+ 214,
+ "complete"
+ ],
+ [
+ 256,
+ "complete"
+ ],
+ [
+ 284,
+ "complete"
+ ],
+ [
+ 291,
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the attribute with ID 100 in the grid?",
+ "sql": "SELECT position FROM catalog_eav_attribute WHERE attribute_id = 100;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total for the order with increment ID '000000215'.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000215';",
+ "answer": [
+ "34.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "34.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all completed orders for 'Lucy Garcia'.",
+ "sql": "SELECT entity_id, grand_total FROM sales_order_grid WHERE customer_name = 'Lucy Garcia' AND status = 'complete';",
+ "answer": [
+ "Order ID: 50, Total: 268.0000",
+ "Order ID: 112, Total: 153.0000",
+ "Order ID: 113, Total: 88.4000",
+ "Order ID: 164, Total: 152.0000",
+ "Order ID: 215, Total: 34.0000",
+ "Order ID: 264, Total: 203.7200"
+ ],
+ "sql_execute_result": [
+ [
+ 50,
+ "268.0000"
+ ],
+ [
+ 112,
+ "153.0000"
+ ],
+ [
+ 113,
+ "88.4000"
+ ],
+ [
+ 164,
+ "152.0000"
+ ],
+ [
+ 215,
+ "34.0000"
+ ],
+ [
+ 264,
+ "203.7200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal for the order with ID 128?",
+ "sql": "SELECT subtotal FROM sales_order WHERE entity_id = 128;",
+ "answer": [
+ "192.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "192.2500"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping address for customer 'John Lee'.",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE customer_name = 'John Lee';",
+ "answer": [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with title 'Privacy Policy'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the CMS page '404 Not Found' is active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = '404 Not Found';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with item ID '460'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE item_id = 460;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock name for the stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the credit memo with increment ID '000000001'?",
+ "sql": "SELECT created_at FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the credit memo for customer 'Veronica Costello'?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the update time of the CMS page with title 'About us'?",
+ "sql": "SELECT update_time FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the identifier of the CMS page titled 'Customer Service'?",
+ "sql": "SELECT identifier FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "customer-service"
+ ],
+ "sql_execute_result": [
+ [
+ "customer-service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping and handling cost for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT shipping_and_handling FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of sequence values in the 'sequence_shipment_1' table.",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity_id 15?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 15 AND attribute_id = 119;",
+ "answer": [
+ "hoodies-and-sweatshirts-men"
+ ],
+ "sql_execute_result": [
+ [
+ "hoodies-and-sweatshirts-men"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for the order with payment entity_id 276?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 276;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with payment entity_id 57?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 57;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base amount ordered for the order with payment entity_id 132.",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 132;",
+ "answer": [
+ "161.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "161.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the decimal value for product with entity_id 370 and attribute_id 77?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 370 AND attribute_id = 77;",
+ "answer": [
+ "60.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "60.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the integer value for product entity_id 799 and attribute_id 93?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 799 AND attribute_id = 93;",
+ "answer": [
+ "52"
+ ],
+ "sql_execute_result": [
+ [
+ 52
+ ]
+ ]
+ },
+ {
+ "question": "Which entity type model is used for customers?",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_id = 1;",
+ "answer": [
+ "Magento\\Customer\\Model\\ResourceModel\\Customer"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Customer\\Model\\ResourceModel\\Customer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity model for invoices.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice"
+ ]
+ ]
+ },
+ {
+ "question": "Get the entity type code for the table 'catalog_product_entity'.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_table = 'catalog_product_entity';",
+ "answer": [
+ "catalog_product"
+ ],
+ "sql_execute_result": [
+ [
+ "catalog_product"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for attribute_id 82 for product entity_id 1923?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1923 AND attribute_id = 82;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'WT02-S-Yellow'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WT02-S-Yellow';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which category does the product with ID 1700 belong to?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1700;",
+ "answer": [
+ "26"
+ ],
+ "sql_execute_result": [
+ [
+ 26
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price of the product with entity ID 669.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 669 AND attribute_id = 77;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute value for the attribute ID 144 of the product with entity ID 137?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 137 AND attribute_id = 144;",
+ "answer": [
+ "169"
+ ],
+ "sql_execute_result": [
+ [
+ 169
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 13 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 13;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the order with ID 258?",
+ "sql": "SELECT created_at FROM sales_order_item WHERE order_id = 258 LIMIT 1;",
+ "answer": [
+ "2023-04-19 23:33:55"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 23:33:55"
+ ]
+ ]
+ },
+ {
+ "question": "Find the currency code used in the invoice with ID 2.",
+ "sql": "SELECT order_currency_code FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity ID 26?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 26;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type for the product with item ID 1348?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE item_id = 1348;",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed on 2022-06-24 in store with ID 0?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-06-24' AND store_id = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders placed on 2023-05-23 in store ID 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-05-23' AND store_id = 1;",
+ "answer": [
+ "208.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "208.2000"
+ ]
+ ]
+ },
+ {
+ "question": "How many pending reviews are there for the product with ID 2040?",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = 2040 AND status_id = (SELECT status_id FROM review_status WHERE status_code = 'Pending');",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with payment entity ID 211?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 211;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status and the total quantity ordered on 2022-08-17 for store ID 1?",
+ "sql": "SELECT order_status, total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-08-17' AND store_id = 1;",
+ "answer": [
+ "complete",
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "complete",
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for the orders created on 2023-05-14 at store ID 0.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-05-14' AND store_id = 0;",
+ "answer": [
+ "204.2500",
+ "89.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "204.2500"
+ ],
+ [
+ "89.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the order with payment entity ID 66?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 66;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with payment entity ID 19?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 19;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with ID 6 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 6;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with payment entity ID 24?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 24;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with entity ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered in order ID 196.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 196;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000151'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000151';",
+ "answer": [
+ "217.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "217.2000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer placed order ID 197?",
+ "sql": "SELECT CONCAT(customer_firstname, ' ', customer_lastname) FROM sales_order WHERE entity_id = 197;",
+ "answer": [
+ "Jane Doe"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Doe"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the order placed by customer Katie Wong?",
+ "sql": "SELECT shipping_amount FROM sales_order WHERE customer_firstname = 'Katie' AND customer_lastname = 'Wong';",
+ "answer": [
+ "25.0000",
+ "20.0000",
+ "10.0000",
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ],
+ [
+ "20.0000"
+ ],
+ [
+ "25.0000"
+ ],
+ [
+ "10.0000"
+ ],
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review percent for the review ID 319?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 319;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Get the product ID related to the highest sequence value in sequence_shipment_1.",
+ "sql": "SELECT entity_pk_value FROM rating_option_vote WHERE vote_id = (SELECT MAX(sequence_value) FROM sequence_shipment_1);",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who placed the order with ID 96?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 96;",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the option with ID 37 in eav_attribute_option_value?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 37;",
+ "answer": [
+ "Nylon"
+ ],
+ "sql_execute_result": [
+ [
+ "Nylon"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the shipping method for the order with protect code '0c928e11da72159c5b0b64496cbb23e2'.",
+ "sql": "SELECT shipping_method FROM sales_order WHERE protect_code = '0c928e11da72159c5b0b64496cbb23e2';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total item count for the order with the customer email 'jason.miller@yahoo.com'.",
+ "sql": "SELECT total_item_count FROM sales_order WHERE customer_email = 'jason.miller@yahoo.com';",
+ "answer": [
+ "4",
+ "1",
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 4
+ ],
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 1
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with entity ID 69?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 69;",
+ "answer": [
+ "sean.miller@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "sean.miller@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 188 in the bestsellers aggregated monthly table?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 188;",
+ "answer": [
+ "Abominable Hoodie-XL-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Abominable Hoodie-XL-Green"
+ ],
+ [
+ "Abominable Hoodie-XL-Green"
+ ],
+ [
+ "Abominable Hoodie-XL-Green"
+ ],
+ [
+ "Abominable Hoodie-XL-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity ordered in the store with ID 1 on 2023-02-14.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2023-02-14';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for customer named 'Bob Jones'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Bob Jones';",
+ "answer": [
+ "2141918677"
+ ],
+ "sql_execute_result": [
+ [
+ "2141918677"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders completed in the store with ID 1 on 2022-03-22.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-03-22' AND order_status = 'complete';",
+ "answer": [
+ "229.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "229.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with ID 0?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Get the rating position of the product 'Marco Lightweight Active Hoodie-L-Blue' for March 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Marco Lightweight Active Hoodie-L-Blue' AND period = '2022-03-01';",
+ "answer": [
+ "36",
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 36
+ ],
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the next order.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with SKU 'MS09-XL-Black'?",
+ "sql": "SELECT s.qty FROM cataloginventory_stock_item s INNER JOIN catalog_product_entity p ON s.product_id = p.entity_id WHERE p.sku = 'MS09-XL-Black';",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Phoebe Zipper Sweatshirt' category?",
+ "sql": "SELECT p.entity_id, p.sku, v.value AS name FROM catalog_product_entity p INNER JOIN catalog_product_entity_varchar v ON p.entity_id = v.entity_id WHERE v.value LIKE '%Phoebe Zipper Sweatshirt%';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ 1130,
+ "WH07",
+ "Phoebe Zipper Sweatshirt"
+ ],
+ [
+ 1124,
+ "WH07-L-Gray",
+ "Phoebe Zipper Sweatshirt-L-Gray"
+ ],
+ [
+ 1125,
+ "WH07-L-Purple",
+ "Phoebe Zipper Sweatshirt-L-Purple"
+ ],
+ [
+ 1126,
+ "WH07-L-White",
+ "Phoebe Zipper Sweatshirt-L-White"
+ ],
+ [
+ 1121,
+ "WH07-M-Gray",
+ "Phoebe Zipper Sweatshirt-M-Gray"
+ ],
+ [
+ 1122,
+ "WH07-M-Purple",
+ "Phoebe Zipper Sweatshirt-M-Purple"
+ ],
+ [
+ 1123,
+ "WH07-M-White",
+ "Phoebe Zipper Sweatshirt-M-White"
+ ],
+ [
+ 1118,
+ "WH07-S-Gray",
+ "Phoebe Zipper Sweatshirt-S-Gray"
+ ],
+ [
+ 1119,
+ "WH07-S-Purple",
+ "Phoebe Zipper Sweatshirt-S-Purple"
+ ],
+ [
+ 1120,
+ "WH07-S-White",
+ "Phoebe Zipper Sweatshirt-S-White"
+ ],
+ [
+ 1127,
+ "WH07-XL-Gray",
+ "Phoebe Zipper Sweatshirt-XL-Gray"
+ ],
+ [
+ 1128,
+ "WH07-XL-Purple",
+ "Phoebe Zipper Sweatshirt-XL-Purple"
+ ],
+ [
+ 1129,
+ "WH07-XL-White",
+ "Phoebe Zipper Sweatshirt-XL-White"
+ ],
+ [
+ 1115,
+ "WH07-XS-Gray",
+ "Phoebe Zipper Sweatshirt-XS-Gray"
+ ],
+ [
+ 1116,
+ "WH07-XS-Purple",
+ "Phoebe Zipper Sweatshirt-XS-Purple"
+ ],
+ [
+ 1117,
+ "WH07-XS-White",
+ "Phoebe Zipper Sweatshirt-XS-White"
+ ]
+ ]
+ },
+ {
+ "question": "Which products have been ordered but not shipped from order ID 70?",
+ "sql": "SELECT item_id, name, sku FROM sales_order_item WHERE order_id = 70 AND qty_shipped = 0;",
+ "answer": [
+ "Phoebe Zipper Sweatshirt",
+ "Eos V-Neck Hoodie",
+ "Carina Basic Capri"
+ ],
+ "sql_execute_result": [
+ [
+ 395,
+ "Phoebe Zipper Sweatshirt",
+ "WH07-M-White"
+ ],
+ [
+ 396,
+ "Phoebe Zipper Sweatshirt-M-White",
+ "WH07-M-White"
+ ],
+ [
+ 397,
+ "Eos V-Neck Hoodie",
+ "WH11-XS-Blue"
+ ],
+ [
+ 398,
+ "Eos V-Neck Hoodie-XS-Blue",
+ "WH11-XS-Blue"
+ ],
+ [
+ 399,
+ "Carina Basic Capri",
+ "WP09-28-Purple"
+ ],
+ [
+ 400,
+ "Carina Basic Capri-28-Purple",
+ "WP09-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 1?",
+ "sql": "SELECT rs.status_code FROM review r INNER JOIN review_status rs ON r.status_id = rs.status_id WHERE r.review_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 5?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 5;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the 'About us' CMS page?",
+ "sql": "SELECT creation_time FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with ID 1 active?",
+ "sql": "SELECT is_active FROM store WHERE store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which products are in order number 152?",
+ "sql": "SELECT product_id, name, sku FROM sales_order_item WHERE order_id = 152;",
+ "answer": [
+ "Layla Tee",
+ "Kenobi Trail Jacket",
+ "Summit Watch",
+ "Maxima Drawstring Short",
+ "Ana Running Short"
+ ],
+ "sql_execute_result": [
+ [
+ 1444,
+ "Layla Tee",
+ "WS04-M-Blue"
+ ],
+ [
+ 1435,
+ "Layla Tee-M-Blue",
+ "WS04-M-Blue"
+ ],
+ [
+ 302,
+ "Kenobi Trail Jacket",
+ "MJ04-S-Purple"
+ ],
+ [
+ 292,
+ "Kenobi Trail Jacket-S-Purple",
+ "MJ04-S-Purple"
+ ],
+ [
+ 38,
+ "Summit Watch",
+ "24-MG03"
+ ],
+ [
+ 1935,
+ "Maxima Drawstring Short",
+ "WSH02-29-Yellow"
+ ],
+ [
+ 1925,
+ "Maxima Drawstring Short-29-Yellow",
+ "WSH02-29-Yellow"
+ ],
+ [
+ 2017,
+ "Ana Running Short",
+ "WSH10-29-Orange"
+ ],
+ [
+ 2015,
+ "Ana Running Short-29-Orange",
+ "WSH10-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price of the order with order ID 13?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 13;",
+ "answer": [
+ "171.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "171.6000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading for the CMS page with the identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the order status 'paypal_reversed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name of the bestseller on 2023-05-14.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-05-14';",
+ "answer": [
+ "Ingrid Running Jacket-XS-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Ingrid Running Jacket-XS-White"
+ ],
+ [
+ "Ingrid Running Jacket-XS-White"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of 'Primo Endurance Tank-M-Red' were ordered on 2023-03-10?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Primo Endurance Tank-M-Red' AND period = '2023-03-10';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU associated with the entity ID 1463?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1463;",
+ "answer": [
+ "WS07-XS-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "WS07-XS-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating 'Quality' active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with ID 76?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 76;",
+ "answer": [
+ "Short Description"
+ ],
+ "sql_execute_result": [
+ [
+ "Short Description"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have the attribute value 1 for attribute ID 99?",
+ "sql": "SELECT COUNT(*) FROM catalog_product_entity_int WHERE attribute_id = 99 AND value = 1;",
+ "answer": [
+ "1859"
+ ],
+ "sql_execute_result": [
+ [
+ 1859
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the order status 'pending_payment'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "List all ratings codes available.",
+ "sql": "SELECT rating_code FROM rating;",
+ "answer": [
+ "Price",
+ "Quality",
+ "Rating",
+ "Value"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ],
+ [
+ "Quality"
+ ],
+ [
+ "Rating"
+ ],
+ [
+ "Value"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of 'Erica Evercool Sports Bra-XS-Yellow' in the rating on 2023-02-11?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Erica Evercool Sports Bra-XS-Yellow' AND period = '2023-02-11';",
+ "answer": [
+ "1",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with customer_id 2?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 2;",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity of the product with product_id 692?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 692;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category_id 36?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 36;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are in the 'complete' state?",
+ "sql": "SELECT entity_id FROM sales_order WHERE state = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 43
+ ],
+ [
+ 45
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 57
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 64
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 73
+ ],
+ [
+ 75
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 87
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 102
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 119
+ ],
+ [
+ 121
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 133
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 150
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 158
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 166
+ ],
+ [
+ 169
+ ],
+ [
+ 179
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 184
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 192
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 223
+ ],
+ [
+ 225
+ ],
+ [
+ 228
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 233
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 243
+ ],
+ [
+ 247
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 253
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 260
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 274
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 295
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of item_id 3 in the sales_order_item table?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE item_id = 3;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with the increment ID '000000051'?",
+ "sql": "SELECT base_shipping_amount FROM sales_order WHERE increment_id = '000000051';",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with ID 145?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 145;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ID 'BJ'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'BJ';",
+ "answer": [
+ "BEN"
+ ],
+ "sql_execute_result": [
+ [
+ "BEN"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in order with ID 282?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 282;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer's email for the order with increment ID '000000038'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000038';",
+ "answer": [
+ "jason.miller@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jason.miller@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "List the SKUs of products in the shipment with parent ID 3.",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "MSH09-36-Black",
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total order amount (grand total) for the order with ID 236.",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 236;",
+ "answer": [
+ "107.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "107.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the payment with entity ID 205?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 205;",
+ "answer": [
+ "108.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "108.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer first name for the order with ID 51?",
+ "sql": "SELECT customer_firstname FROM sales_order WHERE entity_id = 51;",
+ "answer": [
+ "John"
+ ],
+ "sql_execute_result": [
+ [
+ "John"
+ ]
+ ]
+ },
+ {
+ "question": "How many unique shipping addresses does Jane Smith have?",
+ "sql": "SELECT street, city, region, postcode, country_id FROM sales_order_address WHERE firstname = 'Jane' AND lastname = 'Smith' AND address_type = 'shipping';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ],
+ [
+ "789 Pine St",
+ "Seattle",
+ "Washington",
+ "98122",
+ "US"
+ ],
+ [
+ "456 Beverly Hills Blvd",
+ "Beverly Hills",
+ "California",
+ "90210",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Which product description contains the term 'LumaTech'?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 478 AND attribute_id = 75;",
+ "answer": [
+ "The crew-neck Ryker LumaTech\u2122 Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life. \u2022 Royal polyester tee with black accents. \u2022 Relaxed fit. \u2022 Short-Sleeve. \u2022 Machine wash/dry."
+ ],
+ "sql_execute_result": [
+ [
+ "The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.
\n• Royal polyester tee with black accents.
• Relaxed fit.
• Short-Sleeve.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "List all categories associated with product ID 1617.",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1617;",
+ "answer": [
+ "26"
+ ],
+ "sql_execute_result": [
+ [
+ 26
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1958 enabled?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1958 AND attribute_id = 115;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option ID 147?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 147 AND store_id = 0;",
+ "answer": [
+ "LumaTech\u2122"
+ ],
+ "sql_execute_result": [
+ [
+ "LumaTech™"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for the shipping address of order with parent ID 84.",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 84 AND address_type = 'billing';",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Get the text value for product ID 1839 with attribute ID 75.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1839 AND attribute_id = 75;",
+ "answer": [
+ "Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.
\n• Light blue parachute pants.
• Power mesh internal waistband for support.
• Internal waistband pocket.
• Antimicrobial finish.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.
\n• Light blue parachute pants.
• Power mesh internal waistband for support.
• Internal waistband pocket.
• Antimicrobial finish.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer with a shipping address on Pine Street?",
+ "sql": "SELECT lastname FROM sales_order_address WHERE street = '123 Pine Street' AND address_type = 'shipping';",
+ "answer": [
+ "Garcia"
+ ],
+ "sql_execute_result": [
+ [
+ "Garcia"
+ ],
+ [
+ "Garcia"
+ ],
+ [
+ "Garcia"
+ ],
+ [
+ "Garcia"
+ ],
+ [
+ "Garcia"
+ ],
+ [
+ "Garcia"
+ ]
+ ]
+ },
+ {
+ "question": "Which region in the US is associated with the billing address of Lucy Garcia?",
+ "sql": "SELECT region FROM sales_order_address WHERE firstname = 'Lucy' AND lastname = 'Garcia' AND address_type = 'billing';",
+ "answer": [
+ "Colorado"
+ ],
+ "sql_execute_result": [
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped for order with ID 300?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO-3 code for the country with ISO-2 code 'TF'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'TF';",
+ "answer": [
+ "ATF"
+ ],
+ "sql_execute_result": [
+ [
+ "ATF"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "List all products shipped in shipment with ID 3.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "Troy Yoga Short",
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Gwen Drawstring Bike Short-28-Orange' in May 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Gwen Drawstring Bike Short-28-Orange' AND period = '2023-05-01';",
+ "answer": [
+ "7",
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ],
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the email sent status for shipment with increment ID '000000001'?",
+ "sql": "SELECT email_sent FROM sales_shipment WHERE increment_id = '000000001';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice related to order ID 1?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of 'Proteus Fitness Jackshirt-M-Black' for January 2023?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Proteus Fitness Jackshirt-M-Black' AND period = '2023-01-01';",
+ "answer": [
+ "45.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "45.0000"
+ ],
+ [
+ "45.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the weight of the product with SKU 'MSH09-36-Black'.",
+ "sql": "SELECT weight FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with ISO2 code 'IL'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'IL';",
+ "answer": [
+ "ISR"
+ ],
+ "sql_execute_result": [
+ [
+ "ISR"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute code has a frontend label 'Tax Class'?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE frontend_label = 'Tax Class';",
+ "answer": [
+ "tax_class_id"
+ ],
+ "sql_execute_result": [
+ [
+ "tax_class_id"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name for the region code 'LU'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'LU';",
+ "answer": [
+ "Lucerne",
+ "Lucca"
+ ],
+ "sql_execute_result": [
+ [
+ "Lucerne"
+ ],
+ [
+ "Lucca"
+ ]
+ ]
+ },
+ {
+ "question": "List all entity type codes that share data.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE is_data_sharing = 1;",
+ "answer": [
+ "customer",
+ "customer_address",
+ "catalog_category",
+ "catalog_product",
+ "order",
+ "invoice",
+ "creditmemo",
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "customer"
+ ],
+ [
+ "customer_address"
+ ],
+ [
+ "catalog_category"
+ ],
+ [
+ "catalog_product"
+ ],
+ [
+ "order"
+ ],
+ [
+ "invoice"
+ ],
+ [
+ "creditmemo"
+ ],
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date of the shipment with increment ID '000000002'?",
+ "sql": "SELECT created_at FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "Find the backend type for the attribute code 'thumbnail_label'.",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'thumbnail_label';",
+ "answer": [
+ "varchar"
+ ],
+ "sql_execute_result": [
+ [
+ "varchar"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO2 code 'GS'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'GS';",
+ "answer": [
+ "SGS"
+ ],
+ "sql_execute_result": [
+ [
+ "SGS"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity model for entity type code 'catalog_product'.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'catalog_product';",
+ "answer": [
+ "Magento\\Catalog\\Model\\ResourceModel\\Product"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\ResourceModel\\Product"
+ ]
+ ]
+ },
+ {
+ "question": "Which store ID is associated with the shipment with increment ID '000000003'?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the payment with entity ID 222?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) FROM sales_order_payment WHERE entity_id = 222;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 804.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 804;",
+ "answer": [
+ "MP07-32-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MP07-32-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with region ID 998?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 998;",
+ "answer": [
+ "La Libertad"
+ ],
+ "sql_execute_result": [
+ [
+ "La Libertad"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product name for the order item with item ID 1364.",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 1364;",
+ "answer": [
+ "Grayson Crewneck Sweatshirt -S-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Grayson Crewneck Sweatshirt -S-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value of the rating option with option ID 18.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 18;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered amount for the payment with parent ID 22?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE parent_id = 22;",
+ "answer": [
+ "229.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "229.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the type ID for the product with SKU 'MJ02'.",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'MJ02';",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "How many region codes were found for country ID 'BG'?",
+ "sql": "SELECT code FROM directory_country_region WHERE country_id = 'BG';",
+ "answer": [
+ "28"
+ ],
+ "sql_execute_result": [
+ [
+ "BG-01"
+ ],
+ [
+ "BG-02"
+ ],
+ [
+ "BG-03"
+ ],
+ [
+ "BG-04"
+ ],
+ [
+ "BG-05"
+ ],
+ [
+ "BG-06"
+ ],
+ [
+ "BG-07"
+ ],
+ [
+ "BG-08"
+ ],
+ [
+ "BG-09"
+ ],
+ [
+ "BG-10"
+ ],
+ [
+ "BG-11"
+ ],
+ [
+ "BG-12"
+ ],
+ [
+ "BG-13"
+ ],
+ [
+ "BG-14"
+ ],
+ [
+ "BG-15"
+ ],
+ [
+ "BG-16"
+ ],
+ [
+ "BG-17"
+ ],
+ [
+ "BG-18"
+ ],
+ [
+ "BG-19"
+ ],
+ [
+ "BG-20"
+ ],
+ [
+ "BG-21"
+ ],
+ [
+ "BG-22"
+ ],
+ [
+ "BG-23"
+ ],
+ [
+ "BG-24"
+ ],
+ [
+ "BG-25"
+ ],
+ [
+ "BG-26"
+ ],
+ [
+ "BG-27"
+ ],
+ [
+ "BG-28"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the order item with item ID 16?",
+ "sql": "SELECT price_incl_tax FROM sales_order_item WHERE item_id = 16;",
+ "answer": [
+ "42.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "42.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for the rating option with rating ID 1 and option ID 2.",
+ "sql": "SELECT code FROM rating_option WHERE rating_id = 1 AND option_id = 2;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating option with option ID 14?",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 14;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ "4"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO-3 code 'BGD'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso3_code = 'BGD';",
+ "answer": [
+ "BD"
+ ],
+ "sql_execute_result": [
+ [
+ "BD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 961 in the bestsellers list?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 961;",
+ "answer": [
+ "Rapha Sports Short-36-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Rapha Sports Short-36-Blue"
+ ],
+ [
+ "Rapha Sports Short-36-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are there for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region ID 642.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 642;",
+ "answer": [
+ "Varna"
+ ],
+ "sql_execute_result": [
+ [
+ "Varna"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with option ID 3?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular search query in store ID 1?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Zoe Tank-S-Yellow' in the yearly bestsellers?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Zoe Tank-S-Yellow';",
+ "answer": [
+ "27",
+ "55"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 55
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO-2 code 'ES'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso2_code = 'ES';",
+ "answer": [
+ "ES"
+ ],
+ "sql_execute_result": [
+ [
+ "ES"
+ ]
+ ]
+ },
+ {
+ "question": "What is the locale for the region name 'Giurgiu'?",
+ "sql": "SELECT locale FROM directory_country_region_name WHERE name = 'Giurgiu';",
+ "answer": [
+ "en_US"
+ ],
+ "sql_execute_result": [
+ [
+ "en_US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the ID 14?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 14;",
+ "answer": [
+ "johndoe123@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "johndoe123@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with ID 23?",
+ "sql": "SELECT entity_id, state, status, grand_total FROM sales_order WHERE customer_id = 23;",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 33,
+ "complete",
+ "complete",
+ "120.2000"
+ ],
+ [
+ 45,
+ "complete",
+ "complete",
+ "183.2000"
+ ],
+ [
+ 77,
+ "canceled",
+ "canceled",
+ "104.0000"
+ ],
+ [
+ 94,
+ "canceled",
+ "canceled",
+ "64.0000"
+ ],
+ [
+ 108,
+ "canceled",
+ "canceled",
+ "75.0000"
+ ],
+ [
+ 146,
+ "complete",
+ "complete",
+ "70.0000"
+ ],
+ [
+ 150,
+ "complete",
+ "complete",
+ "215.8000"
+ ],
+ [
+ 152,
+ "canceled",
+ "canceled",
+ "223.0000"
+ ],
+ [
+ 218,
+ "complete",
+ "complete",
+ "212.2000"
+ ],
+ [
+ 241,
+ "canceled",
+ "canceled",
+ "44.0000"
+ ],
+ [
+ 244,
+ "canceled",
+ "canceled",
+ "89.0000"
+ ],
+ [
+ 287,
+ "complete",
+ "complete",
+ "44.0000"
+ ],
+ [
+ 301,
+ "new",
+ "pending",
+ "76.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered in the complete order with ID 36.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 36 AND status = 'complete';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the attribute option with value ID 185?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 185;",
+ "answer": [
+ "Roll Neck"
+ ],
+ "sql_execute_result": [
+ [
+ "Roll Neck"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the credit memo with ID 1?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sequence value for the latest invoice.",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer's name with email 'bob123@hotmail.com'?",
+ "sql": "SELECT CONCAT(customer_firstname, ' ', customer_lastname) AS name FROM sales_order WHERE customer_email = 'bob123@hotmail.com';",
+ "answer": [
+ "Bob Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Bob Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total of orders placed by customer 'Katie Wong'.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_firstname = 'Katie' AND customer_lastname = 'Wong';",
+ "answer": [
+ "806.2400"
+ ],
+ "sql_execute_result": [
+ [
+ "806.2400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are associated with the sales order address having the email 'john.lee@yahoo.com'?",
+ "sql": "SELECT region FROM sales_order_address WHERE email = 'john.lee@yahoo.com';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were returned for the query 'tanks'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'tanks';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the credit memo with increment ID '000000001'.",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the weight of the product named 'Troy Yoga Short'?",
+ "sql": "SELECT weight FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many cities are associated with the sales order address having the lastname 'Doe'?",
+ "sql": "SELECT city FROM sales_order_address WHERE lastname = 'Doe';",
+ "answer": [
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Miami"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with the name 'Minerva LumaTech™ V-Tee'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT shipping_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email associated with the sales order address for the customer with the firstname 'Ava'?",
+ "sql": "SELECT email FROM sales_order_address WHERE firstname = 'Ava';",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the customer named Emma Lopez?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE entity_id = 70;",
+ "answer": [
+ "101 S San Mateo Dr San Mateo California 94010"
+ ],
+ "sql_execute_result": [
+ [
+ "101 S San Mateo Dr San Mateo California 94010"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the reviewer who wrote 'Design is adorable-when you have cute workout gear, exercising is fun. I'd buy these again.'",
+ "sql": "SELECT nickname FROM review_detail WHERE detail_id = 311;",
+ "answer": [
+ "Brigitte"
+ ],
+ "sql_execute_result": [
+ [
+ "Brigitte"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product description for the product with entity ID 735.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 735 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.
\n• Light gray heather knit straight leg pants.
• Relaxed fit.
• Inseam: 32\".
• Machine wash/dry.
• CoolTech™ wicking fabric.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.
\n• Light gray heather knit straight leg pants.
• Relaxed fit.
• Inseam: 32\".
• Machine wash/dry.
• CoolTech™ wicking fabric.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer named Adam Garcia?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 25;",
+ "answer": [
+ "gamingpro456@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "gamingpro456@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Get the customer group code for the customer with email 'janesmith456@yahoo.com'.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = (SELECT group_id FROM customer_grid_flat WHERE email = 'janesmith456@yahoo.com');",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used in the credit memo with increment ID '000000001'?",
+ "sql": "SELECT payment_method FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review title for the review with ID 347.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 347;",
+ "answer": [
+ "Quite good"
+ ],
+ "sql_execute_result": [
+ [
+ "Quite good"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number for customer John Doe.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE entity_id = 14;",
+ "answer": [
+ "2125551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2125551212"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a description containing 'Elisa EverCool™ Tee brings serious relief'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_text WHERE value LIKE '%Elisa EverCool™ Tee brings serious relief%' AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store ID for the review written by Natosha.",
+ "sql": "SELECT store_id FROM review_detail WHERE nickname = 'Natosha';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with SKU 'WJ09-L-Blue'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WJ09-L-Blue';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are returned for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with item ID 938?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 938;",
+ "answer": [
+ "WP09-28-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "WP09-28-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is in the stock with stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount amount for the order item with ID 1145?",
+ "sql": "SELECT discount_amount FROM sales_order_item WHERE item_id = 1145;",
+ "answer": [
+ "11.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "11.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity score for the search query 'nike'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the total weight of the item with SKU 'WS09-XS-Red'?",
+ "sql": "SELECT weight FROM sales_order_item WHERE sku = 'WS09-XS-Red';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order currency code for the invoice with entity ID 2?",
+ "sql": "SELECT order_currency_code FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 1489 in the bestsellers list for the year 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1489 AND period = '2022-01-01';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee-XL-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the order sequence value of the 3rd record.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value LIMIT 2, 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Cassia Funnel Sweatshirt-M-Purple' in the yearly bestsellers list for 2022?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Cassia Funnel Sweatshirt-M-Purple' AND period = '2022-01-01';",
+ "answer": [
+ "48.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "48.0000"
+ ],
+ [
+ "48.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of 'Layla Tee-XS-Green' were ordered in the yearly bestsellers list for 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Layla Tee-XS-Green' AND period = '2023-01-01';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum sequence value for the sales sequence profile with profile ID 8?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 8;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Is the sequence profile with profile ID 5 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the warning sequence value for the profile ID 4 in the sales sequence profile?",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE profile_id = 4;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the period for the best-selling product 'Daria Bikram Pant-28-White'?",
+ "sql": "SELECT period FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Daria Bikram Pant-28-White';",
+ "answer": [
+ "2022-01-01"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-01-01"
+ ],
+ [
+ "2022-01-01"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the best-selling product 'Maxima Drawstring Short-29-Gray'.",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Maxima Drawstring Short-29-Gray';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 3?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 3;",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for order with increment ID '000000024'.",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000024';",
+ "answer": [
+ "116.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "116.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status code 'complete'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order with ID 259?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 259;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with increment ID '000000131' completed?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000131';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute code for entity type ID 3.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 3;",
+ "answer": [
+ "catalog_category"
+ ],
+ "sql_execute_result": [
+ [
+ "catalog_category"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the customer with address entity ID 60?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 60;",
+ "answer": [
+ "Beverly Hills"
+ ],
+ "sql_execute_result": [
+ [
+ "Beverly Hills"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the category value for entity ID 25 in catalog category entity varchar.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 25;",
+ "answer": [
+ "Tees",
+ "tees-women",
+ "women/tops-women/tees-women"
+ ],
+ "sql_execute_result": [
+ [
+ "Tees"
+ ],
+ [
+ "tees-women"
+ ],
+ [
+ "women/tops-women/tees-women"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with option ID 86.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 86;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the parent ID for the customer address with entity ID 53?",
+ "sql": "SELECT parent_id FROM customer_address_entity WHERE entity_id = 53;",
+ "answer": [
+ "53"
+ ],
+ "sql_execute_result": [
+ [
+ 53
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity model for entity type code 'order'.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'order';",
+ "answer": [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 119 in store ID 0 for entity ID 16 in catalog category entity varchar?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 119 AND store_id = 0 AND entity_id = 16;",
+ "answer": [
+ "tees-men"
+ ],
+ "sql_execute_result": [
+ [
+ "tees-men"
+ ]
+ ]
+ },
+ {
+ "question": "Which region does the customer address with entity ID 35 belong to?",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 35;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the option with option ID 121?",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 121;",
+ "answer": [
+ "152"
+ ],
+ "sql_execute_result": [
+ [
+ 152
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with order increment ID '000000208'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000208';",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the canceled order on 2023-01-10 in the admin store.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-01-10' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with status 'complete' are there in the Default Store View?",
+ "sql": "SELECT entity_id FROM sales_order_grid WHERE status = 'complete' AND store_id = 1;",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 43
+ ],
+ [
+ 45
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 57
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 64
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 73
+ ],
+ [
+ 75
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 87
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 102
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 119
+ ],
+ [
+ 121
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 133
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 150
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 158
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 166
+ ],
+ [
+ 169
+ ],
+ [
+ 179
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 184
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 192
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 223
+ ],
+ [
+ 225
+ ],
+ [
+ 228
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 233
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 243
+ ],
+ [
+ 247
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 253
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 260
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 274
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 295
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer 'Jane Doe'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE customer_name = 'Jane Doe';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "123.8000"
+ ],
+ [
+ "38.6000"
+ ],
+ [
+ "206.1200"
+ ],
+ [
+ "148.4000"
+ ],
+ [
+ "180.8000"
+ ],
+ [
+ "145.0000"
+ ],
+ [
+ "106.0000"
+ ],
+ [
+ "153.4000"
+ ],
+ [
+ "122.0000"
+ ],
+ [
+ "37.5000"
+ ],
+ [
+ "189.6000"
+ ],
+ [
+ "183.5000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders canceled on 2022-06-29 in the admin store.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-06-29' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "199.1000"
+ ],
+ "sql_execute_result": [
+ [
+ "199.1000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the shipping method used for order with increment ID '000000188'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000188';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'HR-05' in Croatia?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'HR-05' AND country_id = 'HR';",
+ "answer": [
+ "Vara\u017edinska \u017eupanija"
+ ],
+ "sql_execute_result": [
+ [
+ "Vara\u017edinska \u017eupanija"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the code 'default'?",
+ "sql": "SELECT name FROM store WHERE code = 'default';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for canceled orders on 2023-04-10 in the Default Store View.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-04-10' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with region ID 496?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 496;",
+ "answer": [
+ "Minas Gerais"
+ ],
+ "sql_execute_result": [
+ [
+ "Minas Gerais"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the store with ID 1 on 2022-09-29?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-09-29';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of products in the category with ID 41.",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 41;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU and name of the product with entity ID 2040.",
+ "sql": "SELECT cpe.sku, cpv.value as name FROM catalog_product_entity cpe JOIN catalog_product_entity_varchar cpv ON cpe.entity_id = cpv.entity_id WHERE cpe.entity_id = 2040;",
+ "answer": [
+ "WSH12",
+ "Erika Running Short"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12",
+ "Erika Running Short"
+ ],
+ [
+ "WSH12",
+ "container2"
+ ],
+ [
+ "WSH12",
+ "erika-running-short"
+ ],
+ [
+ "WSH12",
+ "0"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 2036?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2036;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders with the status 'closed'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'closed';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What are the names of all stores with stock_id = 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer group code for group ID 2.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "What are the base grand totals of orders with status 'closed'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE status = 'closed';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with option_id 91 in the default store?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 91 AND store_id = 0;",
+ "answer": [
+ "55 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "55 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items ordered on 2022-06-05 in store with ID 1?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-06-05' AND store_id = 1;",
+ "answer": [
+ "4.0000",
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'MSH11-33-Black'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MSH11-33-Black';",
+ "answer": [
+ "Arcadio Gym Short",
+ "Arcadio Gym Short-33-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Arcadio Gym Short"
+ ],
+ [
+ "Arcadio Gym Short-33-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled in the store with ID 0 on 2022-07-02?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-07-02' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders placed on 2022-03-28 with status 'canceled' in the store with ID 0?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-03-28' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "64.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "64.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of 'Sparta Gym Tank' ordered?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE name = 'Sparta Gym Tank-L-Green';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with ID 77?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 77;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing postcode for the order with ID 77?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE parent_id = 77 AND address_type = 'billing';",
+ "answer": [
+ "90212"
+ ],
+ "sql_execute_result": [
+ [
+ "90212"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity_id 2040 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO-3 code for the country with ISO-2 code 'PL'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'PL';",
+ "answer": [
+ "POL"
+ ],
+ "sql_execute_result": [
+ [
+ "POL"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the title of the CMS page with identifier 'enable-cookies'.",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'enable-cookies';",
+ "answer": [
+ "Enable Cookies"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Cookies"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with ID 93?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 93;",
+ "answer": [
+ "Schleswig-Holstein"
+ ],
+ "sql_execute_result": [
+ [
+ "Schleswig-Holstein"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence table name for the invoice entity type in store ID 1.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 1;",
+ "answer": [
+ "sequence_invoice_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the page layout for the CMS page titled 'Customer Service'?",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "Find the code of the website with the name 'Admin'.",
+ "sql": "SELECT code FROM store_website WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the customer service contact link from the 'About us' CMS page content.",
+ "sql": "SELECT content FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "{{store url=\"customer-service\"}}"
+ ],
+ "sql_execute_result": [
+ [
+ "\n
With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We\u2019re passionate about active lifestyles \u2013 and it goes way beyond apparel.
\n\n
At Luma, wellness is a way of life. We don\u2019t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.
\n\n
We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.
\n\n
\n
\n"
+ ]
+ ]
+ },
+ {
+ "question": "Is the website named 'Main Website' set as default?",
+ "sql": "SELECT is_default FROM store_website WHERE name = 'Main Website';",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews with the status 'Pending'.",
+ "sql": "SELECT review_id FROM review WHERE status_id = (SELECT status_id FROM review_status WHERE status_code = 'Pending');",
+ "answer": [
+ "347",
+ "349",
+ "351",
+ "352",
+ "353"
+ ],
+ "sql_execute_result": [
+ [
+ 347
+ ],
+ [
+ 349
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for shipments in store with ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'shipment' AND store_id = 1;",
+ "answer": [
+ "sequence_shipment_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_shipment_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default state for the order status 'holded'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'holded';",
+ "answer": [
+ "holded"
+ ],
+ "sql_execute_result": [
+ [
+ "holded"
+ ]
+ ]
+ },
+ {
+ "question": "Which website has the code 'admin'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews for product ID 1854.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 1854;",
+ "answer": [
+ "Review ID: 248, Created At: 2023-04-19 16:15:17",
+ "Review ID: 249, Created At: 2023-04-19 16:15:17",
+ "Review ID: 250, Created At: 2023-04-19 16:15:17"
+ ],
+ "sql_execute_result": [
+ [
+ 248,
+ "2023-04-19 16:15:17"
+ ],
+ [
+ 249,
+ "2023-04-19 16:15:17"
+ ],
+ [
+ 250,
+ "2023-04-19 16:15:17"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status ID 3?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the 'fraud' order status?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity type associated with meta ID 7.",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 7;",
+ "answer": [
+ "creditmemo"
+ ],
+ "sql_execute_result": [
+ [
+ "creditmemo"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are 'Approved'?",
+ "sql": "SELECT COUNT(*) FROM review WHERE status_id = (SELECT status_id FROM review_status WHERE status_code = 'Approved');",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 59?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 59;",
+ "answer": [
+ "ryan.tanaka@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "ryan.tanaka@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the customer 'Jane Doe'?",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_id = 3;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 31
+ ],
+ [
+ 47
+ ],
+ [
+ 84
+ ],
+ [
+ 116
+ ],
+ [
+ 153
+ ],
+ [
+ 190
+ ],
+ [
+ 197
+ ],
+ [
+ 220
+ ],
+ [
+ 225
+ ],
+ [
+ 245
+ ],
+ [
+ 259
+ ],
+ [
+ 302
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Minerva LumaTech\u2122 V-Tee'?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which region has the ID 484 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 484 AND locale = 'en_US';",
+ "answer": [
+ "Vilniaus Apskritis"
+ ],
+ "sql_execute_result": [
+ [
+ "Vilniaus Apskritis"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for invoice with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 2 in 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 2 AND locale = 'en_US';",
+ "answer": [
+ "Alaska"
+ ],
+ "sql_execute_result": [
+ [
+ "Alaska"
+ ]
+ ]
+ },
+ {
+ "question": "Find the best-selling product for the month of February 2023.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-02-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice with ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the order with payment method 'checkmo' and entity ID 84.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 84 AND method = 'checkmo';",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product was the bestseller in January 2023 for store ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-01-01' AND store_id = 0 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Impulse Duffle"
+ ],
+ "sql_execute_result": [
+ [
+ "Impulse Duffle"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer named 'Emma Davis'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Emma Davis';",
+ "answer": [
+ "musiclover99@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "musiclover99@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the billing address '200 Biscayne Blvd Way Miami Florida 33130'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_full = '200 Biscayne Blvd Way Miami Florida 33130';",
+ "answer": [
+ "Isabella Santos"
+ ],
+ "sql_execute_result": [
+ [
+ "Isabella Santos"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product 'Deion Long-Sleeve EverCool\u2122 Tee-XL-Black' in the monthly bestsellers for January 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Deion Long-Sleeve EverCool™ Tee-XL-Black' AND period = '2023-01-01';",
+ "answer": [
+ "28",
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 28
+ ],
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing postcode for customer 'Isaac Rodriguez'?",
+ "sql": "SELECT billing_postcode FROM customer_grid_flat WHERE name = 'Isaac Rodriguez';",
+ "answer": [
+ "85004"
+ ],
+ "sql_execute_result": [
+ [
+ "85004"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer was created in the 'Default Store View' with an email 'samantha.nguyen@gmail.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'samantha.nguyen@gmail.com' AND created_in = 'Default Store View';",
+ "answer": [
+ "Samantha Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Samantha Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered amount for the order with payment entity ID 101?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 101;",
+ "answer": [
+ "199.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "199.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code for the address of customer with entity ID 61?",
+ "sql": "SELECT postcode FROM customer_address_entity WHERE entity_id = 61;",
+ "answer": [
+ "07030"
+ ],
+ "sql_execute_result": [
+ [
+ "07030"
+ ]
+ ]
+ },
+ {
+ "question": "What is the page title for the CMS page with identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name of the best-selling product in April 2023.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-04-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page titled 'Enable Cookies'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Enable Cookies';",
+ "answer": [
+ "What are Cookies?"
+ ],
+ "sql_execute_result": [
+ [
+ "What are Cookies?"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city for the customer with address entity ID 38?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 38;",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent order sequence value?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the CMS page with the title 'Home Page'?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Home Page';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent shipment sequence value?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID for 'Dash Digital Watch' from the bestsellers data.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Dash Digital Watch';",
+ "answer": [
+ "40"
+ ],
+ "sql_execute_result": [
+ [
+ 40
+ ],
+ [
+ 40
+ ],
+ [
+ 40
+ ],
+ [
+ 40
+ ]
+ ]
+ },
+ {
+ "question": "What is the country ID for the customer address with entity ID 52?",
+ "sql": "SELECT country_id FROM customer_address_entity WHERE entity_id = 52;",
+ "answer": [
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the complete order on 2023-01-23?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE id = 1007;",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product with entity ID 1957.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1957;",
+ "answer": [
+ "WSH04-29-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH04-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are returned for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_id = 5;",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the title of the review with ID 151.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 151;",
+ "answer": [
+ "PURPLES"
+ ],
+ "sql_execute_result": [
+ [
+ "PURPLES"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID where the review titled 'Velcro straps?? Are you kidding me? Am I' was submitted?",
+ "sql": "SELECT store_id FROM review_detail WHERE detail_id = 293;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for the canceled order on 2022-12-27?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE id = 993;",
+ "answer": [
+ "194.7600"
+ ],
+ "sql_execute_result": [
+ [
+ "194.7600"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category ID associated with product ID 1345.",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1345;",
+ "answer": [
+ "23",
+ "8",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ],
+ [
+ 8
+ ],
+ [
+ 35
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the user who submitted the review titled 'Practically perfect'?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 39;",
+ "answer": [
+ "Lindsay"
+ ],
+ "sql_execute_result": [
+ [
+ "Lindsay"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the popularity of the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_id = 11;",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the complete order on 2022-01-12?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE id = 1328;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status code for the review with status ID 3?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product type for the product with SKU 'MSH09-32-Black'.",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'MSH09-32-Black';",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for the order with payment entity ID 122?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 122;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region ID 455 in the locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 455 AND locale = 'en_US';",
+ "answer": [
+ "S\u0113jas novads"
+ ],
+ "sql_execute_result": [
+ [
+ "S\u0113jas novads"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email of the customer associated with the payment entity ID 183.",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = (SELECT parent_id FROM sales_order_payment WHERE entity_id = 183);",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1273?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1273;",
+ "answer": [
+ "WJ05-S-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ05-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the order with payment entity ID 108.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 108;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with attribute code 'status'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'status';",
+ "answer": [
+ "Enable Product"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Product"
+ ]
+ ]
+ },
+ {
+ "question": "Find the date when the product with SKU 'WP03-29-Blue' was created.",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'WP03-29-Blue';",
+ "answer": [
+ "2023-04-19 16:13:53"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:53"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 18?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 18;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status code 'payment_review'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'payment_review';",
+ "answer": [
+ "Payment Review"
+ ],
+ "sql_execute_result": [
+ [
+ "Payment Review"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are currently in 'pending' status?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE status = 'pending';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with increment ID '000000028'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000028';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for order with increment ID '000000065'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000065';",
+ "answer": [
+ "210.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity ID 3?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 3;",
+ "answer": [
+ "46"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer group code for customer with ID 18.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = (SELECT group_id FROM customer_entity WHERE entity_id = 18);",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Get the order status label for the order with entity ID 95.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = (SELECT status FROM sales_order WHERE entity_id = 95);",
+ "answer": [
+ "Canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the store with website ID 1 is active.",
+ "sql": "SELECT is_active FROM store WHERE website_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock quantity for the product with ID 943.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 943;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the decimal attribute with ID 82 for the product with ID 92?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 82 AND entity_id = 92;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which rating option has a code '5' and belongs to rating ID 3?",
+ "sql": "SELECT option_id, code FROM rating_option WHERE rating_id = 3 AND code = '5';",
+ "answer": [
+ "15",
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 15,
+ "5"
+ ]
+ ]
+ },
+ {
+ "question": "List all sequence values for shipments.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "1",
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with ID 1428 in the shipment items.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE product_id = 1428;",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the option with ID 9?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 9;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price with ID 211 in the catalog product entity decimal table.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 211 AND attribute_id = 77;",
+ "answer": [
+ "64.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "64.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with ID 1713 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1713;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product named 'Eos V-Neck Hoodie'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who has the shipment with increment ID '000000002'?",
+ "sql": "SELECT ce.email FROM sales_shipment ss JOIN customer_entity ce ON ss.customer_id = ce.entity_id WHERE ss.increment_id = '000000002';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the text description of the product with entity ID 1579?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1579 AND attribute_id = 75;",
+ "answer": [
+ "When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.
\n• Short-Sleeves.
• Performance fabric.
• Machine wash/line dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.
\n• Short-Sleeves.
• Performance fabric.
• Machine wash/line dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for the order with ID 300.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name of the customer residing at '654 Park Avenue'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) FROM customer_address_entity WHERE street = '654 Park Avenue';",
+ "answer": [
+ "Julia Williams"
+ ],
+ "sql_execute_result": [
+ [
+ "Julia Williams"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO3 code 'BHR'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso3_code = 'BHR';",
+ "answer": [
+ "BH"
+ ],
+ "sql_execute_result": [
+ [
+ "BH"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order of the attribute option with ID 151?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 151;",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the postcode for the billing address with entity ID 4?",
+ "sql": "SELECT postcode FROM customer_address_entity WHERE entity_id = 4;",
+ "answer": [
+ "75202"
+ ],
+ "sql_execute_result": [
+ [
+ "75202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 64?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 64;",
+ "answer": [
+ "isabella.santos@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "isabella.santos@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Crown Summit Backpack' on 2023-04-19.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Crown Summit Backpack' AND period = '2023-04-19';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address ID for the invoice with increment ID '000000002'.",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name associated with email 'harrypotterfan1@gmail.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'harrypotterfan1@gmail.com';",
+ "answer": [
+ "Lily Potter"
+ ],
+ "sql_execute_result": [
+ [
+ "Lily Potter"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in the 'Default Store View'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product 'Hera Pullover Hoodie-M-Blue' in the bestseller daily list on 2022-02-08?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Hera Pullover Hoodie-M-Blue' AND period = '2022-02-08';",
+ "answer": [
+ "3",
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for the invoice belonging to order ID 1.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Mach Street Sweatshirt -XL-Blue' on 2023-04-19?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Mach Street Sweatshirt -XL-Blue' AND period = '2023-04-19';",
+ "answer": [
+ "62.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "62.0000"
+ ],
+ [
+ "62.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all customers who live in the region with ID 18.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_region_id = 18;",
+ "answer": [
+ "Jane Doe",
+ "Mary Martin",
+ "Samantha Jones",
+ "Sophie Taylor",
+ "Samantha Wu",
+ "Isabella Santos"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Doe"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Isabella Santos"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest order.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 23?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 23;",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with Product ID 261 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 261;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with increment ID '000000045'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000045';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the SKU for the product with entity ID 2040.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of orders placed by the customer with email 'john.lee@yahoo.com'.",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'john.lee@yahoo.com';",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "How many products have been ordered in total from store ID 1 on 2022-03-17?",
+ "sql": "SELECT SUM(total_qty_ordered) FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-03-17';",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ "8.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000104'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000104';",
+ "answer": [
+ "130.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "130.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position on 2022-03-17 in store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-03-17' AND store_id = 1 ORDER BY rating_pos DESC LIMIT 1;",
+ "answer": [
+ "Zing Jump Rope"
+ ],
+ "sql_execute_result": [
+ [
+ "Zing Jump Rope"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are associated with the billing address '123 Hogwarts Lane, Chicago, Illinois'?",
+ "sql": "SELECT parent_id FROM sales_order_address WHERE street = '123 Hogwarts Lane' AND city = 'Chicago';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 22
+ ],
+ [
+ 67
+ ],
+ [
+ 67
+ ],
+ [
+ 111
+ ],
+ [
+ 111
+ ],
+ [
+ 136
+ ],
+ [
+ 136
+ ],
+ [
+ 181
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 182
+ ],
+ [
+ 234
+ ],
+ [
+ 234
+ ],
+ [
+ 261
+ ],
+ [
+ 261
+ ],
+ [
+ 296
+ ],
+ [
+ 296
+ ],
+ [
+ 303
+ ],
+ [
+ 303
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the credit memo increment ID '000000001'?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the shipment sequence value 2.",
+ "sql": "SELECT store_id FROM sales_shipment WHERE increment_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What layout is used for the 'About us' CMS page?",
+ "sql": "SELECT page_layout FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are associated with the billing address '789 W Madison St, Chicago, Illinois'?",
+ "sql": "SELECT firstname, lastname FROM sales_order_address WHERE street = '789 W Madison St' AND city = 'Chicago';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions were found for the billing address with postcode '60637'?",
+ "sql": "SELECT region FROM sales_order_address WHERE postcode = '60637';",
+ "answer": [
+ "22"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "Fetch the payment method used in the credit memo with increment ID '000000001'.",
+ "sql": "SELECT payment_method FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 124?",
+ "sql": "SELECT status_code FROM review_status JOIN review ON review.status_id = review_status.status_id WHERE review.review_id = 124;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items in shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with increment ID '000000190'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000190';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were returned for the query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "Who is the customer associated with the order ID 259?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE entity_id = 259;",
+ "answer": [
+ "Jane Doe"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Doe"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000160'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000160';",
+ "answer": [
+ "124.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "124.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What store is associated with the shipment ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = (SELECT store_id FROM sales_shipment WHERE entity_id = 1);",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders with the status 'complete' on 2023-05-07?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE order_status = 'complete' AND period = '2023-05-07';",
+ "answer": [
+ "159.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "159.4000"
+ ],
+ [
+ "159.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the title of the review with ID 90.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 90;",
+ "answer": [
+ "Fell apart in wash"
+ ],
+ "sql_execute_result": [
+ [
+ "Fell apart in wash"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 1?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-01-19?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE order_status = 'canceled' AND period = '2022-01-19';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Is the order status 'fraud' visible on the front end?",
+ "sql": "SELECT visible_on_front FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the detail description of the review titled 'My favorite layers'.",
+ "sql": "SELECT detail FROM review_detail WHERE title = 'My favorite layers';",
+ "answer": [
+ "This is one of my favorite layers for running in the winter, it keeps me warm but it's not super bulky."
+ ],
+ "sql_execute_result": [
+ [
+ "This is one of my favorite layers for running in the winter, it keeps me warm but it's not super bulky."
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum value for the sales sequence profile with profile ID 5?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for orders with status 'complete' on 2022-03-31.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE order_status = 'complete' AND period = '2022-03-31';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ],
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who wrote the review titled 'OBSESSED with this!'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'OBSESSED with this!';",
+ "answer": [
+ "Cliff"
+ ],
+ "sql_execute_result": [
+ [
+ "Cliff"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the rating code 'Value' is active.",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Value';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for the customer with the shipping address on Tremont St in Boston.",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '456 Tremont St' AND city = 'Boston';",
+ "answer": [
+ "david.lee@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the website name associated with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the option with code '4' for rating ID 3?",
+ "sql": "SELECT value FROM rating_option WHERE code = '4' AND rating_id = 3;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Get the name of the product associated with the order item ID 1575.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE order_item_id = 1575;",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "How many cities were found for the billing address with postcode '60606'?",
+ "sql": "SELECT city FROM sales_order_address WHERE postcode = '60606' AND address_type = 'billing';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category ID for the product with entity ID 3282?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE entity_id = 3282;",
+ "answer": [
+ "25"
+ ],
+ "sql_execute_result": [
+ [
+ 25
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the region name for region ID 32.",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 32 LIMIT 1;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product named 'Eos V-Neck Hoodie'.",
+ "sql": "SELECT price FROM sales_shipment_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store code for the website with group ID 0?",
+ "sql": "SELECT code FROM store_group WHERE group_id = 0;",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with ID 103?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 103;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the payment with entity ID 18.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 18;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for attribute ID 126?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 126;",
+ "answer": [
+ "samples_title"
+ ],
+ "sql_execute_result": [
+ [
+ "samples_title"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the invoice with increment ID '000000001'?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the invoice with ID 1?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the payment with entity ID 201?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 201;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many total sequence values are there in the 'sequence_order_1' table?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type for meta ID 4 in sales sequence meta?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 4;",
+ "answer": [
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute with code 'email'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'email';",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "Find all search queries for the store with ID 1 that have the term 'Antonia Racer Tank'.",
+ "sql": "SELECT query_id, query_text, num_results, popularity, store_id, updated_at FROM search_query WHERE query_text = 'Antonia Racer Tank' AND store_id = 1;",
+ "answer": [
+ "Query ID: 13",
+ "Query Text: Antonia Racer Tank",
+ "Number of Results: 23",
+ "Popularity: 2",
+ "Store ID: 1",
+ "Updated At: 2023-04-24 19:09:46"
+ ],
+ "sql_execute_result": [
+ [
+ 13,
+ "Antonia Racer Tank",
+ 23,
+ 2,
+ 1,
+ "2023-04-24 19:09:46"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 752?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 752;",
+ "answer": [
+ "MP03-32-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "MP03-32-Green"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders with status 'canceled' for customer with ID 11.",
+ "sql": "SELECT entity_id, increment_id, status, customer_id, grand_total FROM sales_order_grid WHERE status = 'canceled' AND customer_id = 11;",
+ "answer": [
+ "Order ID: 000000134, Total: 64.0000",
+ "Order ID: 000000159, Total: 29.0000",
+ "Order ID: 000000209, Total: 39.0000",
+ "Order ID: 000000265, Total: 94.0000",
+ "Order ID: 000000280, Total: 71.5000",
+ "Order ID: 000000289, Total: 194.5000"
+ ],
+ "sql_execute_result": [
+ [
+ 134,
+ "000000134",
+ "canceled",
+ 11,
+ "64.0000"
+ ],
+ [
+ 159,
+ "000000159",
+ "canceled",
+ 11,
+ "29.0000"
+ ],
+ [
+ 209,
+ "000000209",
+ "canceled",
+ 11,
+ "39.0000"
+ ],
+ [
+ 265,
+ "000000265",
+ "canceled",
+ 11,
+ "94.0000"
+ ],
+ [
+ 280,
+ "000000280",
+ "canceled",
+ 11,
+ "71.5000"
+ ],
+ [
+ 289,
+ "000000289",
+ "canceled",
+ 11,
+ "194.5000"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are returned for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 179?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 179 AND attribute_id = 73;",
+ "answer": [
+ "Abominable Hoodie-S-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Abominable Hoodie-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with increment ID '000000142'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000142';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for the store with ID 1?",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE store_id = 1 LIMIT 1;",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many products of type 'simple' were created on 2023-04-19?",
+ "sql": "SELECT entity_id, sku FROM catalog_product_entity WHERE type_id = 'simple' AND DATE(created_at) = '2023-04-19';",
+ "answer": [
+ "1891"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "24-MB01"
+ ],
+ [
+ 2,
+ "24-MB04"
+ ],
+ [
+ 3,
+ "24-MB03"
+ ],
+ [
+ 4,
+ "24-MB05"
+ ],
+ [
+ 5,
+ "24-MB06"
+ ],
+ [
+ 6,
+ "24-MB02"
+ ],
+ [
+ 7,
+ "24-UB02"
+ ],
+ [
+ 8,
+ "24-WB01"
+ ],
+ [
+ 9,
+ "24-WB02"
+ ],
+ [
+ 10,
+ "24-WB05"
+ ],
+ [
+ 11,
+ "24-WB06"
+ ],
+ [
+ 12,
+ "24-WB03"
+ ],
+ [
+ 13,
+ "24-WB07"
+ ],
+ [
+ 14,
+ "24-WB04"
+ ],
+ [
+ 15,
+ "24-UG06"
+ ],
+ [
+ 16,
+ "24-UG07"
+ ],
+ [
+ 17,
+ "24-UG04"
+ ],
+ [
+ 18,
+ "24-UG02"
+ ],
+ [
+ 19,
+ "24-UG05"
+ ],
+ [
+ 20,
+ "24-UG01"
+ ],
+ [
+ 21,
+ "24-WG084"
+ ],
+ [
+ 22,
+ "24-WG088"
+ ],
+ [
+ 23,
+ "24-UG03"
+ ],
+ [
+ 24,
+ "24-WG081-gray"
+ ],
+ [
+ 25,
+ "24-WG081-pink"
+ ],
+ [
+ 26,
+ "24-WG081-blue"
+ ],
+ [
+ 27,
+ "24-WG082-gray"
+ ],
+ [
+ 28,
+ "24-WG082-pink"
+ ],
+ [
+ 29,
+ "24-WG082-blue"
+ ],
+ [
+ 30,
+ "24-WG083-gray"
+ ],
+ [
+ 31,
+ "24-WG083-pink"
+ ],
+ [
+ 32,
+ "24-WG083-blue"
+ ],
+ [
+ 33,
+ "24-WG085"
+ ],
+ [
+ 34,
+ "24-WG086"
+ ],
+ [
+ 35,
+ "24-WG087"
+ ],
+ [
+ 36,
+ "24-MG04"
+ ],
+ [
+ 37,
+ "24-MG01"
+ ],
+ [
+ 38,
+ "24-MG03"
+ ],
+ [
+ 39,
+ "24-MG05"
+ ],
+ [
+ 40,
+ "24-MG02"
+ ],
+ [
+ 41,
+ "24-WG09"
+ ],
+ [
+ 42,
+ "24-WG01"
+ ],
+ [
+ 43,
+ "24-WG03"
+ ],
+ [
+ 44,
+ "24-WG02"
+ ],
+ [
+ 47,
+ "MH01-XS-Black"
+ ],
+ [
+ 48,
+ "MH01-XS-Gray"
+ ],
+ [
+ 49,
+ "MH01-XS-Orange"
+ ],
+ [
+ 50,
+ "MH01-S-Black"
+ ],
+ [
+ 51,
+ "MH01-S-Gray"
+ ],
+ [
+ 52,
+ "MH01-S-Orange"
+ ],
+ [
+ 53,
+ "MH01-M-Black"
+ ],
+ [
+ 54,
+ "MH01-M-Gray"
+ ],
+ [
+ 55,
+ "MH01-M-Orange"
+ ],
+ [
+ 56,
+ "MH01-L-Black"
+ ],
+ [
+ 57,
+ "MH01-L-Gray"
+ ],
+ [
+ 58,
+ "MH01-L-Orange"
+ ],
+ [
+ 59,
+ "MH01-XL-Black"
+ ],
+ [
+ 60,
+ "MH01-XL-Gray"
+ ],
+ [
+ 61,
+ "MH01-XL-Orange"
+ ],
+ [
+ 63,
+ "MH02-XS-Black"
+ ],
+ [
+ 64,
+ "MH02-XS-Purple"
+ ],
+ [
+ 65,
+ "MH02-XS-Red"
+ ],
+ [
+ 66,
+ "MH02-S-Black"
+ ],
+ [
+ 67,
+ "MH02-S-Purple"
+ ],
+ [
+ 68,
+ "MH02-S-Red"
+ ],
+ [
+ 69,
+ "MH02-M-Black"
+ ],
+ [
+ 70,
+ "MH02-M-Purple"
+ ],
+ [
+ 71,
+ "MH02-M-Red"
+ ],
+ [
+ 72,
+ "MH02-L-Black"
+ ],
+ [
+ 73,
+ "MH02-L-Purple"
+ ],
+ [
+ 74,
+ "MH02-L-Red"
+ ],
+ [
+ 75,
+ "MH02-XL-Black"
+ ],
+ [
+ 76,
+ "MH02-XL-Purple"
+ ],
+ [
+ 77,
+ "MH02-XL-Red"
+ ],
+ [
+ 79,
+ "MH03-XS-Black"
+ ],
+ [
+ 80,
+ "MH03-XS-Blue"
+ ],
+ [
+ 81,
+ "MH03-XS-Green"
+ ],
+ [
+ 82,
+ "MH03-S-Black"
+ ],
+ [
+ 83,
+ "MH03-S-Blue"
+ ],
+ [
+ 84,
+ "MH03-S-Green"
+ ],
+ [
+ 85,
+ "MH03-M-Black"
+ ],
+ [
+ 86,
+ "MH03-M-Blue"
+ ],
+ [
+ 87,
+ "MH03-M-Green"
+ ],
+ [
+ 88,
+ "MH03-L-Black"
+ ],
+ [
+ 89,
+ "MH03-L-Blue"
+ ],
+ [
+ 90,
+ "MH03-L-Green"
+ ],
+ [
+ 91,
+ "MH03-XL-Black"
+ ],
+ [
+ 92,
+ "MH03-XL-Blue"
+ ],
+ [
+ 93,
+ "MH03-XL-Green"
+ ],
+ [
+ 95,
+ "MH04-XS-Green"
+ ],
+ [
+ 96,
+ "MH04-XS-White"
+ ],
+ [
+ 97,
+ "MH04-XS-Yellow"
+ ],
+ [
+ 98,
+ "MH04-S-Green"
+ ],
+ [
+ 99,
+ "MH04-S-White"
+ ],
+ [
+ 100,
+ "MH04-S-Yellow"
+ ],
+ [
+ 101,
+ "MH04-M-Green"
+ ],
+ [
+ 102,
+ "MH04-M-White"
+ ],
+ [
+ 103,
+ "MH04-M-Yellow"
+ ],
+ [
+ 104,
+ "MH04-L-Green"
+ ],
+ [
+ 105,
+ "MH04-L-White"
+ ],
+ [
+ 106,
+ "MH04-L-Yellow"
+ ],
+ [
+ 107,
+ "MH04-XL-Green"
+ ],
+ [
+ 108,
+ "MH04-XL-White"
+ ],
+ [
+ 109,
+ "MH04-XL-Yellow"
+ ],
+ [
+ 111,
+ "MH05-XS-Green"
+ ],
+ [
+ 112,
+ "MH05-XS-Red"
+ ],
+ [
+ 113,
+ "MH05-XS-White"
+ ],
+ [
+ 114,
+ "MH05-S-Green"
+ ],
+ [
+ 115,
+ "MH05-S-Red"
+ ],
+ [
+ 116,
+ "MH05-S-White"
+ ],
+ [
+ 117,
+ "MH05-M-Green"
+ ],
+ [
+ 118,
+ "MH05-M-Red"
+ ],
+ [
+ 119,
+ "MH05-M-White"
+ ],
+ [
+ 120,
+ "MH05-L-Green"
+ ],
+ [
+ 121,
+ "MH05-L-Red"
+ ],
+ [
+ 122,
+ "MH05-L-White"
+ ],
+ [
+ 123,
+ "MH05-XL-Green"
+ ],
+ [
+ 124,
+ "MH05-XL-Red"
+ ],
+ [
+ 125,
+ "MH05-XL-White"
+ ],
+ [
+ 127,
+ "MH06-XS-Black"
+ ],
+ [
+ 128,
+ "MH06-XS-Blue"
+ ],
+ [
+ 129,
+ "MH06-XS-Purple"
+ ],
+ [
+ 130,
+ "MH06-S-Black"
+ ],
+ [
+ 131,
+ "MH06-S-Blue"
+ ],
+ [
+ 132,
+ "MH06-S-Purple"
+ ],
+ [
+ 133,
+ "MH06-M-Black"
+ ],
+ [
+ 134,
+ "MH06-M-Blue"
+ ],
+ [
+ 135,
+ "MH06-M-Purple"
+ ],
+ [
+ 136,
+ "MH06-L-Black"
+ ],
+ [
+ 137,
+ "MH06-L-Blue"
+ ],
+ [
+ 138,
+ "MH06-L-Purple"
+ ],
+ [
+ 139,
+ "MH06-XL-Black"
+ ],
+ [
+ 140,
+ "MH06-XL-Blue"
+ ],
+ [
+ 141,
+ "MH06-XL-Purple"
+ ],
+ [
+ 143,
+ "MH07-XS-Black"
+ ],
+ [
+ 144,
+ "MH07-XS-Gray"
+ ],
+ [
+ 145,
+ "MH07-XS-Green"
+ ],
+ [
+ 146,
+ "MH07-S-Black"
+ ],
+ [
+ 147,
+ "MH07-S-Gray"
+ ],
+ [
+ 148,
+ "MH07-S-Green"
+ ],
+ [
+ 149,
+ "MH07-M-Black"
+ ],
+ [
+ 150,
+ "MH07-M-Gray"
+ ],
+ [
+ 151,
+ "MH07-M-Green"
+ ],
+ [
+ 152,
+ "MH07-L-Black"
+ ],
+ [
+ 153,
+ "MH07-L-Gray"
+ ],
+ [
+ 154,
+ "MH07-L-Green"
+ ],
+ [
+ 155,
+ "MH07-XL-Black"
+ ],
+ [
+ 156,
+ "MH07-XL-Gray"
+ ],
+ [
+ 157,
+ "MH07-XL-Green"
+ ],
+ [
+ 159,
+ "MH08-XS-Brown"
+ ],
+ [
+ 160,
+ "MH08-XS-Purple"
+ ],
+ [
+ 161,
+ "MH08-XS-Red"
+ ],
+ [
+ 162,
+ "MH08-S-Brown"
+ ],
+ [
+ 163,
+ "MH08-S-Purple"
+ ],
+ [
+ 164,
+ "MH08-S-Red"
+ ],
+ [
+ 165,
+ "MH08-M-Brown"
+ ],
+ [
+ 166,
+ "MH08-M-Purple"
+ ],
+ [
+ 167,
+ "MH08-M-Red"
+ ],
+ [
+ 168,
+ "MH08-L-Brown"
+ ],
+ [
+ 169,
+ "MH08-L-Purple"
+ ],
+ [
+ 170,
+ "MH08-L-Red"
+ ],
+ [
+ 171,
+ "MH08-XL-Brown"
+ ],
+ [
+ 172,
+ "MH08-XL-Purple"
+ ],
+ [
+ 173,
+ "MH08-XL-Red"
+ ],
+ [
+ 175,
+ "MH09-XS-Blue"
+ ],
+ [
+ 176,
+ "MH09-XS-Green"
+ ],
+ [
+ 177,
+ "MH09-XS-Red"
+ ],
+ [
+ 178,
+ "MH09-S-Blue"
+ ],
+ [
+ 179,
+ "MH09-S-Green"
+ ],
+ [
+ 180,
+ "MH09-S-Red"
+ ],
+ [
+ 181,
+ "MH09-M-Blue"
+ ],
+ [
+ 182,
+ "MH09-M-Green"
+ ],
+ [
+ 183,
+ "MH09-M-Red"
+ ],
+ [
+ 184,
+ "MH09-L-Blue"
+ ],
+ [
+ 185,
+ "MH09-L-Green"
+ ],
+ [
+ 186,
+ "MH09-L-Red"
+ ],
+ [
+ 187,
+ "MH09-XL-Blue"
+ ],
+ [
+ 188,
+ "MH09-XL-Green"
+ ],
+ [
+ 189,
+ "MH09-XL-Red"
+ ],
+ [
+ 191,
+ "MH10-XS-Black"
+ ],
+ [
+ 192,
+ "MH10-XS-Blue"
+ ],
+ [
+ 193,
+ "MH10-XS-Red"
+ ],
+ [
+ 194,
+ "MH10-S-Black"
+ ],
+ [
+ 195,
+ "MH10-S-Blue"
+ ],
+ [
+ 196,
+ "MH10-S-Red"
+ ],
+ [
+ 197,
+ "MH10-M-Black"
+ ],
+ [
+ 198,
+ "MH10-M-Blue"
+ ],
+ [
+ 199,
+ "MH10-M-Red"
+ ],
+ [
+ 200,
+ "MH10-L-Black"
+ ],
+ [
+ 201,
+ "MH10-L-Blue"
+ ],
+ [
+ 202,
+ "MH10-L-Red"
+ ],
+ [
+ 203,
+ "MH10-XL-Black"
+ ],
+ [
+ 204,
+ "MH10-XL-Blue"
+ ],
+ [
+ 205,
+ "MH10-XL-Red"
+ ],
+ [
+ 207,
+ "MH11-XS-Orange"
+ ],
+ [
+ 208,
+ "MH11-XS-Red"
+ ],
+ [
+ 209,
+ "MH11-XS-White"
+ ],
+ [
+ 210,
+ "MH11-S-Orange"
+ ],
+ [
+ 211,
+ "MH11-S-Red"
+ ],
+ [
+ 212,
+ "MH11-S-White"
+ ],
+ [
+ 213,
+ "MH11-M-Orange"
+ ],
+ [
+ 214,
+ "MH11-M-Red"
+ ],
+ [
+ 215,
+ "MH11-M-White"
+ ],
+ [
+ 216,
+ "MH11-L-Orange"
+ ],
+ [
+ 217,
+ "MH11-L-Red"
+ ],
+ [
+ 218,
+ "MH11-L-White"
+ ],
+ [
+ 219,
+ "MH11-XL-Orange"
+ ],
+ [
+ 220,
+ "MH11-XL-Red"
+ ],
+ [
+ 221,
+ "MH11-XL-White"
+ ],
+ [
+ 223,
+ "MH12-XS-Blue"
+ ],
+ [
+ 224,
+ "MH12-XS-Green"
+ ],
+ [
+ 225,
+ "MH12-XS-Red"
+ ],
+ [
+ 226,
+ "MH12-S-Blue"
+ ],
+ [
+ 227,
+ "MH12-S-Green"
+ ],
+ [
+ 228,
+ "MH12-S-Red"
+ ],
+ [
+ 229,
+ "MH12-M-Blue"
+ ],
+ [
+ 230,
+ "MH12-M-Green"
+ ],
+ [
+ 231,
+ "MH12-M-Red"
+ ],
+ [
+ 232,
+ "MH12-L-Blue"
+ ],
+ [
+ 233,
+ "MH12-L-Green"
+ ],
+ [
+ 234,
+ "MH12-L-Red"
+ ],
+ [
+ 235,
+ "MH12-XL-Blue"
+ ],
+ [
+ 236,
+ "MH12-XL-Green"
+ ],
+ [
+ 237,
+ "MH12-XL-Red"
+ ],
+ [
+ 239,
+ "MH13-XS-Blue"
+ ],
+ [
+ 240,
+ "MH13-XS-Green"
+ ],
+ [
+ 241,
+ "MH13-XS-Lavender"
+ ],
+ [
+ 242,
+ "MH13-S-Blue"
+ ],
+ [
+ 243,
+ "MH13-S-Green"
+ ],
+ [
+ 244,
+ "MH13-S-Lavender"
+ ],
+ [
+ 245,
+ "MH13-M-Blue"
+ ],
+ [
+ 246,
+ "MH13-M-Green"
+ ],
+ [
+ 247,
+ "MH13-M-Lavender"
+ ],
+ [
+ 248,
+ "MH13-L-Blue"
+ ],
+ [
+ 249,
+ "MH13-L-Green"
+ ],
+ [
+ 250,
+ "MH13-L-Lavender"
+ ],
+ [
+ 251,
+ "MH13-XL-Blue"
+ ],
+ [
+ 252,
+ "MH13-XL-Green"
+ ],
+ [
+ 253,
+ "MH13-XL-Lavender"
+ ],
+ [
+ 255,
+ "MJ01-XS-Orange"
+ ],
+ [
+ 256,
+ "MJ01-XS-Red"
+ ],
+ [
+ 257,
+ "MJ01-XS-Yellow"
+ ],
+ [
+ 258,
+ "MJ01-S-Orange"
+ ],
+ [
+ 259,
+ "MJ01-S-Red"
+ ],
+ [
+ 260,
+ "MJ01-S-Yellow"
+ ],
+ [
+ 261,
+ "MJ01-M-Orange"
+ ],
+ [
+ 262,
+ "MJ01-M-Red"
+ ],
+ [
+ 263,
+ "MJ01-M-Yellow"
+ ],
+ [
+ 264,
+ "MJ01-L-Orange"
+ ],
+ [
+ 265,
+ "MJ01-L-Red"
+ ],
+ [
+ 266,
+ "MJ01-L-Yellow"
+ ],
+ [
+ 267,
+ "MJ01-XL-Orange"
+ ],
+ [
+ 268,
+ "MJ01-XL-Red"
+ ],
+ [
+ 269,
+ "MJ01-XL-Yellow"
+ ],
+ [
+ 271,
+ "MJ02-XS-Green"
+ ],
+ [
+ 272,
+ "MJ02-XS-Orange"
+ ],
+ [
+ 273,
+ "MJ02-XS-Red"
+ ],
+ [
+ 274,
+ "MJ02-S-Green"
+ ],
+ [
+ 275,
+ "MJ02-S-Orange"
+ ],
+ [
+ 276,
+ "MJ02-S-Red"
+ ],
+ [
+ 277,
+ "MJ02-M-Green"
+ ],
+ [
+ 278,
+ "MJ02-M-Orange"
+ ],
+ [
+ 279,
+ "MJ02-M-Red"
+ ],
+ [
+ 280,
+ "MJ02-L-Green"
+ ],
+ [
+ 281,
+ "MJ02-L-Orange"
+ ],
+ [
+ 282,
+ "MJ02-L-Red"
+ ],
+ [
+ 283,
+ "MJ02-XL-Green"
+ ],
+ [
+ 284,
+ "MJ02-XL-Orange"
+ ],
+ [
+ 285,
+ "MJ02-XL-Red"
+ ],
+ [
+ 287,
+ "MJ04-XS-Black"
+ ],
+ [
+ 288,
+ "MJ04-XS-Blue"
+ ],
+ [
+ 289,
+ "MJ04-XS-Purple"
+ ],
+ [
+ 290,
+ "MJ04-S-Black"
+ ],
+ [
+ 291,
+ "MJ04-S-Blue"
+ ],
+ [
+ 292,
+ "MJ04-S-Purple"
+ ],
+ [
+ 293,
+ "MJ04-M-Black"
+ ],
+ [
+ 294,
+ "MJ04-M-Blue"
+ ],
+ [
+ 295,
+ "MJ04-M-Purple"
+ ],
+ [
+ 296,
+ "MJ04-L-Black"
+ ],
+ [
+ 297,
+ "MJ04-L-Blue"
+ ],
+ [
+ 298,
+ "MJ04-L-Purple"
+ ],
+ [
+ 299,
+ "MJ04-XL-Black"
+ ],
+ [
+ 300,
+ "MJ04-XL-Blue"
+ ],
+ [
+ 301,
+ "MJ04-XL-Purple"
+ ],
+ [
+ 303,
+ "MJ07-XS-Black"
+ ],
+ [
+ 304,
+ "MJ07-XS-Red"
+ ],
+ [
+ 305,
+ "MJ07-XS-Yellow"
+ ],
+ [
+ 306,
+ "MJ07-S-Black"
+ ],
+ [
+ 307,
+ "MJ07-S-Red"
+ ],
+ [
+ 308,
+ "MJ07-S-Yellow"
+ ],
+ [
+ 309,
+ "MJ07-M-Black"
+ ],
+ [
+ 310,
+ "MJ07-M-Red"
+ ],
+ [
+ 311,
+ "MJ07-M-Yellow"
+ ],
+ [
+ 312,
+ "MJ07-L-Black"
+ ],
+ [
+ 313,
+ "MJ07-L-Red"
+ ],
+ [
+ 314,
+ "MJ07-L-Yellow"
+ ],
+ [
+ 315,
+ "MJ07-XL-Black"
+ ],
+ [
+ 316,
+ "MJ07-XL-Red"
+ ],
+ [
+ 317,
+ "MJ07-XL-Yellow"
+ ],
+ [
+ 319,
+ "MJ08-XS-Blue"
+ ],
+ [
+ 320,
+ "MJ08-XS-Gray"
+ ],
+ [
+ 321,
+ "MJ08-XS-Green"
+ ],
+ [
+ 322,
+ "MJ08-S-Blue"
+ ],
+ [
+ 323,
+ "MJ08-S-Gray"
+ ],
+ [
+ 324,
+ "MJ08-S-Green"
+ ],
+ [
+ 325,
+ "MJ08-M-Blue"
+ ],
+ [
+ 326,
+ "MJ08-M-Gray"
+ ],
+ [
+ 327,
+ "MJ08-M-Green"
+ ],
+ [
+ 328,
+ "MJ08-L-Blue"
+ ],
+ [
+ 329,
+ "MJ08-L-Gray"
+ ],
+ [
+ 330,
+ "MJ08-L-Green"
+ ],
+ [
+ 331,
+ "MJ08-XL-Blue"
+ ],
+ [
+ 332,
+ "MJ08-XL-Gray"
+ ],
+ [
+ 333,
+ "MJ08-XL-Green"
+ ],
+ [
+ 335,
+ "MJ09-XS-Blue"
+ ],
+ [
+ 336,
+ "MJ09-XS-White"
+ ],
+ [
+ 337,
+ "MJ09-XS-Yellow"
+ ],
+ [
+ 338,
+ "MJ09-S-Blue"
+ ],
+ [
+ 339,
+ "MJ09-S-White"
+ ],
+ [
+ 340,
+ "MJ09-S-Yellow"
+ ],
+ [
+ 341,
+ "MJ09-M-Blue"
+ ],
+ [
+ 342,
+ "MJ09-M-White"
+ ],
+ [
+ 343,
+ "MJ09-M-Yellow"
+ ],
+ [
+ 344,
+ "MJ09-L-Blue"
+ ],
+ [
+ 345,
+ "MJ09-L-White"
+ ],
+ [
+ 346,
+ "MJ09-L-Yellow"
+ ],
+ [
+ 347,
+ "MJ09-XL-Blue"
+ ],
+ [
+ 348,
+ "MJ09-XL-White"
+ ],
+ [
+ 349,
+ "MJ09-XL-Yellow"
+ ],
+ [
+ 351,
+ "MJ10-XS-Black"
+ ],
+ [
+ 352,
+ "MJ10-XS-Orange"
+ ],
+ [
+ 353,
+ "MJ10-XS-Red"
+ ],
+ [
+ 354,
+ "MJ10-S-Black"
+ ],
+ [
+ 355,
+ "MJ10-S-Orange"
+ ],
+ [
+ 356,
+ "MJ10-S-Red"
+ ],
+ [
+ 357,
+ "MJ10-M-Black"
+ ],
+ [
+ 358,
+ "MJ10-M-Orange"
+ ],
+ [
+ 359,
+ "MJ10-M-Red"
+ ],
+ [
+ 360,
+ "MJ10-L-Black"
+ ],
+ [
+ 361,
+ "MJ10-L-Orange"
+ ],
+ [
+ 362,
+ "MJ10-L-Red"
+ ],
+ [
+ 363,
+ "MJ10-XL-Black"
+ ],
+ [
+ 364,
+ "MJ10-XL-Orange"
+ ],
+ [
+ 365,
+ "MJ10-XL-Red"
+ ],
+ [
+ 367,
+ "MJ11-XS-Black"
+ ],
+ [
+ 368,
+ "MJ11-XS-Green"
+ ],
+ [
+ 369,
+ "MJ11-XS-Red"
+ ],
+ [
+ 370,
+ "MJ11-S-Black"
+ ],
+ [
+ 371,
+ "MJ11-S-Green"
+ ],
+ [
+ 372,
+ "MJ11-S-Red"
+ ],
+ [
+ 373,
+ "MJ11-M-Black"
+ ],
+ [
+ 374,
+ "MJ11-M-Green"
+ ],
+ [
+ 375,
+ "MJ11-M-Red"
+ ],
+ [
+ 376,
+ "MJ11-L-Black"
+ ],
+ [
+ 377,
+ "MJ11-L-Green"
+ ],
+ [
+ 378,
+ "MJ11-L-Red"
+ ],
+ [
+ 379,
+ "MJ11-XL-Black"
+ ],
+ [
+ 380,
+ "MJ11-XL-Green"
+ ],
+ [
+ 381,
+ "MJ11-XL-Red"
+ ],
+ [
+ 383,
+ "MJ06-XS-Blue"
+ ],
+ [
+ 384,
+ "MJ06-XS-Green"
+ ],
+ [
+ 385,
+ "MJ06-XS-Purple"
+ ],
+ [
+ 386,
+ "MJ06-S-Blue"
+ ],
+ [
+ 387,
+ "MJ06-S-Green"
+ ],
+ [
+ 388,
+ "MJ06-S-Purple"
+ ],
+ [
+ 389,
+ "MJ06-M-Blue"
+ ],
+ [
+ 390,
+ "MJ06-M-Green"
+ ],
+ [
+ 391,
+ "MJ06-M-Purple"
+ ],
+ [
+ 392,
+ "MJ06-L-Blue"
+ ],
+ [
+ 393,
+ "MJ06-L-Green"
+ ],
+ [
+ 394,
+ "MJ06-L-Purple"
+ ],
+ [
+ 395,
+ "MJ06-XL-Blue"
+ ],
+ [
+ 396,
+ "MJ06-XL-Green"
+ ],
+ [
+ 397,
+ "MJ06-XL-Purple"
+ ],
+ [
+ 399,
+ "MJ03-XS-Black"
+ ],
+ [
+ 400,
+ "MJ03-XS-Green"
+ ],
+ [
+ 401,
+ "MJ03-XS-Red"
+ ],
+ [
+ 402,
+ "MJ03-S-Black"
+ ],
+ [
+ 403,
+ "MJ03-S-Green"
+ ],
+ [
+ 404,
+ "MJ03-S-Red"
+ ],
+ [
+ 405,
+ "MJ03-M-Black"
+ ],
+ [
+ 406,
+ "MJ03-M-Green"
+ ],
+ [
+ 407,
+ "MJ03-M-Red"
+ ],
+ [
+ 408,
+ "MJ03-L-Black"
+ ],
+ [
+ 409,
+ "MJ03-L-Green"
+ ],
+ [
+ 410,
+ "MJ03-L-Red"
+ ],
+ [
+ 411,
+ "MJ03-XL-Black"
+ ],
+ [
+ 412,
+ "MJ03-XL-Green"
+ ],
+ [
+ 413,
+ "MJ03-XL-Red"
+ ],
+ [
+ 415,
+ "MJ12-XS-Black"
+ ],
+ [
+ 416,
+ "MJ12-XS-Blue"
+ ],
+ [
+ 417,
+ "MJ12-XS-Orange"
+ ],
+ [
+ 418,
+ "MJ12-S-Black"
+ ],
+ [
+ 419,
+ "MJ12-S-Blue"
+ ],
+ [
+ 420,
+ "MJ12-S-Orange"
+ ],
+ [
+ 421,
+ "MJ12-M-Black"
+ ],
+ [
+ 422,
+ "MJ12-M-Blue"
+ ],
+ [
+ 423,
+ "MJ12-M-Orange"
+ ],
+ [
+ 424,
+ "MJ12-L-Black"
+ ],
+ [
+ 425,
+ "MJ12-L-Blue"
+ ],
+ [
+ 426,
+ "MJ12-L-Orange"
+ ],
+ [
+ 427,
+ "MJ12-XL-Black"
+ ],
+ [
+ 428,
+ "MJ12-XL-Blue"
+ ],
+ [
+ 429,
+ "MJ12-XL-Orange"
+ ],
+ [
+ 431,
+ "MS04-XS-Black"
+ ],
+ [
+ 432,
+ "MS04-XS-Orange"
+ ],
+ [
+ 433,
+ "MS04-XS-Red"
+ ],
+ [
+ 434,
+ "MS04-S-Black"
+ ],
+ [
+ 435,
+ "MS04-S-Orange"
+ ],
+ [
+ 436,
+ "MS04-S-Red"
+ ],
+ [
+ 437,
+ "MS04-M-Black"
+ ],
+ [
+ 438,
+ "MS04-M-Orange"
+ ],
+ [
+ 439,
+ "MS04-M-Red"
+ ],
+ [
+ 440,
+ "MS04-L-Black"
+ ],
+ [
+ 441,
+ "MS04-L-Orange"
+ ],
+ [
+ 442,
+ "MS04-L-Red"
+ ],
+ [
+ 443,
+ "MS04-XL-Black"
+ ],
+ [
+ 444,
+ "MS04-XL-Orange"
+ ],
+ [
+ 445,
+ "MS04-XL-Red"
+ ],
+ [
+ 447,
+ "MS05-XS-Black"
+ ],
+ [
+ 448,
+ "MS05-XS-Blue"
+ ],
+ [
+ 449,
+ "MS05-XS-Purple"
+ ],
+ [
+ 450,
+ "MS05-S-Black"
+ ],
+ [
+ 451,
+ "MS05-S-Blue"
+ ],
+ [
+ 452,
+ "MS05-S-Purple"
+ ],
+ [
+ 453,
+ "MS05-M-Black"
+ ],
+ [
+ 454,
+ "MS05-M-Blue"
+ ],
+ [
+ 455,
+ "MS05-M-Purple"
+ ],
+ [
+ 456,
+ "MS05-L-Black"
+ ],
+ [
+ 457,
+ "MS05-L-Blue"
+ ],
+ [
+ 458,
+ "MS05-L-Purple"
+ ],
+ [
+ 459,
+ "MS05-XL-Black"
+ ],
+ [
+ 460,
+ "MS05-XL-Blue"
+ ],
+ [
+ 461,
+ "MS05-XL-Purple"
+ ],
+ [
+ 463,
+ "MS09-XS-Black"
+ ],
+ [
+ 464,
+ "MS09-XS-Blue"
+ ],
+ [
+ 465,
+ "MS09-XS-Red"
+ ],
+ [
+ 466,
+ "MS09-S-Black"
+ ],
+ [
+ 467,
+ "MS09-S-Blue"
+ ],
+ [
+ 468,
+ "MS09-S-Red"
+ ],
+ [
+ 469,
+ "MS09-M-Black"
+ ],
+ [
+ 470,
+ "MS09-M-Blue"
+ ],
+ [
+ 471,
+ "MS09-M-Red"
+ ],
+ [
+ 472,
+ "MS09-L-Black"
+ ],
+ [
+ 473,
+ "MS09-L-Blue"
+ ],
+ [
+ 474,
+ "MS09-L-Red"
+ ],
+ [
+ 475,
+ "MS09-XL-Black"
+ ],
+ [
+ 476,
+ "MS09-XL-Blue"
+ ],
+ [
+ 477,
+ "MS09-XL-Red"
+ ],
+ [
+ 479,
+ "MS11-XS-Blue"
+ ],
+ [
+ 480,
+ "MS11-XS-Green"
+ ],
+ [
+ 481,
+ "MS11-XS-Yellow"
+ ],
+ [
+ 482,
+ "MS11-S-Blue"
+ ],
+ [
+ 483,
+ "MS11-S-Green"
+ ],
+ [
+ 484,
+ "MS11-S-Yellow"
+ ],
+ [
+ 485,
+ "MS11-M-Blue"
+ ],
+ [
+ 486,
+ "MS11-M-Green"
+ ],
+ [
+ 487,
+ "MS11-M-Yellow"
+ ],
+ [
+ 488,
+ "MS11-L-Blue"
+ ],
+ [
+ 489,
+ "MS11-L-Green"
+ ],
+ [
+ 490,
+ "MS11-L-Yellow"
+ ],
+ [
+ 491,
+ "MS11-XL-Blue"
+ ],
+ [
+ 492,
+ "MS11-XL-Green"
+ ],
+ [
+ 493,
+ "MS11-XL-Yellow"
+ ],
+ [
+ 495,
+ "MS12-XS-Black"
+ ],
+ [
+ 496,
+ "MS12-XS-Blue"
+ ],
+ [
+ 497,
+ "MS12-XS-Red"
+ ],
+ [
+ 498,
+ "MS12-S-Black"
+ ],
+ [
+ 499,
+ "MS12-S-Blue"
+ ],
+ [
+ 500,
+ "MS12-S-Red"
+ ],
+ [
+ 501,
+ "MS12-M-Black"
+ ],
+ [
+ 502,
+ "MS12-M-Blue"
+ ],
+ [
+ 503,
+ "MS12-M-Red"
+ ],
+ [
+ 504,
+ "MS12-L-Black"
+ ],
+ [
+ 505,
+ "MS12-L-Blue"
+ ],
+ [
+ 506,
+ "MS12-L-Red"
+ ],
+ [
+ 507,
+ "MS12-XL-Black"
+ ],
+ [
+ 508,
+ "MS12-XL-Blue"
+ ],
+ [
+ 509,
+ "MS12-XL-Red"
+ ],
+ [
+ 511,
+ "MS03-XS-Gray"
+ ],
+ [
+ 512,
+ "MS03-XS-Green"
+ ],
+ [
+ 513,
+ "MS03-XS-Orange"
+ ],
+ [
+ 514,
+ "MS03-S-Gray"
+ ],
+ [
+ 515,
+ "MS03-S-Green"
+ ],
+ [
+ 516,
+ "MS03-S-Orange"
+ ],
+ [
+ 517,
+ "MS03-M-Gray"
+ ],
+ [
+ 518,
+ "MS03-M-Green"
+ ],
+ [
+ 519,
+ "MS03-M-Orange"
+ ],
+ [
+ 520,
+ "MS03-L-Gray"
+ ],
+ [
+ 521,
+ "MS03-L-Green"
+ ],
+ [
+ 522,
+ "MS03-L-Orange"
+ ],
+ [
+ 523,
+ "MS03-XL-Gray"
+ ],
+ [
+ 524,
+ "MS03-XL-Green"
+ ],
+ [
+ 525,
+ "MS03-XL-Orange"
+ ],
+ [
+ 527,
+ "MS06-XS-Blue"
+ ],
+ [
+ 528,
+ "MS06-XS-Green"
+ ],
+ [
+ 529,
+ "MS06-XS-Yellow"
+ ],
+ [
+ 530,
+ "MS06-S-Blue"
+ ],
+ [
+ 531,
+ "MS06-S-Green"
+ ],
+ [
+ 532,
+ "MS06-S-Yellow"
+ ],
+ [
+ 533,
+ "MS06-M-Blue"
+ ],
+ [
+ 534,
+ "MS06-M-Green"
+ ],
+ [
+ 535,
+ "MS06-M-Yellow"
+ ],
+ [
+ 536,
+ "MS06-L-Blue"
+ ],
+ [
+ 537,
+ "MS06-L-Green"
+ ],
+ [
+ 538,
+ "MS06-L-Yellow"
+ ],
+ [
+ 539,
+ "MS06-XL-Blue"
+ ],
+ [
+ 540,
+ "MS06-XL-Green"
+ ],
+ [
+ 541,
+ "MS06-XL-Yellow"
+ ],
+ [
+ 543,
+ "MS01-XS-Black"
+ ],
+ [
+ 544,
+ "MS01-XS-Brown"
+ ],
+ [
+ 545,
+ "MS01-XS-Yellow"
+ ],
+ [
+ 546,
+ "MS01-S-Black"
+ ],
+ [
+ 547,
+ "MS01-S-Brown"
+ ],
+ [
+ 548,
+ "MS01-S-Yellow"
+ ],
+ [
+ 549,
+ "MS01-M-Black"
+ ],
+ [
+ 550,
+ "MS01-M-Brown"
+ ],
+ [
+ 551,
+ "MS01-M-Yellow"
+ ],
+ [
+ 552,
+ "MS01-L-Black"
+ ],
+ [
+ 553,
+ "MS01-L-Brown"
+ ],
+ [
+ 554,
+ "MS01-L-Yellow"
+ ],
+ [
+ 555,
+ "MS01-XL-Black"
+ ],
+ [
+ 556,
+ "MS01-XL-Brown"
+ ],
+ [
+ 557,
+ "MS01-XL-Yellow"
+ ],
+ [
+ 559,
+ "MS02-XS-Black"
+ ],
+ [
+ 560,
+ "MS02-XS-Blue"
+ ],
+ [
+ 561,
+ "MS02-XS-Gray"
+ ],
+ [
+ 562,
+ "MS02-S-Black"
+ ],
+ [
+ 563,
+ "MS02-S-Blue"
+ ],
+ [
+ 564,
+ "MS02-S-Gray"
+ ],
+ [
+ 565,
+ "MS02-M-Black"
+ ],
+ [
+ 566,
+ "MS02-M-Blue"
+ ],
+ [
+ 567,
+ "MS02-M-Gray"
+ ],
+ [
+ 568,
+ "MS02-L-Black"
+ ],
+ [
+ 569,
+ "MS02-L-Blue"
+ ],
+ [
+ 570,
+ "MS02-L-Gray"
+ ],
+ [
+ 571,
+ "MS02-XL-Black"
+ ],
+ [
+ 572,
+ "MS02-XL-Blue"
+ ],
+ [
+ 573,
+ "MS02-XL-Gray"
+ ],
+ [
+ 575,
+ "MS10-XS-Black"
+ ],
+ [
+ 576,
+ "MS10-XS-Blue"
+ ],
+ [
+ 577,
+ "MS10-XS-Red"
+ ],
+ [
+ 578,
+ "MS10-S-Black"
+ ],
+ [
+ 579,
+ "MS10-S-Blue"
+ ],
+ [
+ 580,
+ "MS10-S-Red"
+ ],
+ [
+ 581,
+ "MS10-M-Black"
+ ],
+ [
+ 582,
+ "MS10-M-Blue"
+ ],
+ [
+ 583,
+ "MS10-M-Red"
+ ],
+ [
+ 584,
+ "MS10-L-Black"
+ ],
+ [
+ 585,
+ "MS10-L-Blue"
+ ],
+ [
+ 586,
+ "MS10-L-Red"
+ ],
+ [
+ 587,
+ "MS10-XL-Black"
+ ],
+ [
+ 588,
+ "MS10-XL-Blue"
+ ],
+ [
+ 589,
+ "MS10-XL-Red"
+ ],
+ [
+ 591,
+ "MS07-XS-Black"
+ ],
+ [
+ 592,
+ "MS07-XS-Green"
+ ],
+ [
+ 593,
+ "MS07-XS-White"
+ ],
+ [
+ 594,
+ "MS07-S-Black"
+ ],
+ [
+ 595,
+ "MS07-S-Green"
+ ],
+ [
+ 596,
+ "MS07-S-White"
+ ],
+ [
+ 597,
+ "MS07-M-Black"
+ ],
+ [
+ 598,
+ "MS07-M-Green"
+ ],
+ [
+ 599,
+ "MS07-M-White"
+ ],
+ [
+ 600,
+ "MS07-L-Black"
+ ],
+ [
+ 601,
+ "MS07-L-Green"
+ ],
+ [
+ 602,
+ "MS07-L-White"
+ ],
+ [
+ 603,
+ "MS07-XL-Black"
+ ],
+ [
+ 604,
+ "MS07-XL-Green"
+ ],
+ [
+ 605,
+ "MS07-XL-White"
+ ],
+ [
+ 607,
+ "MS08-XS-Black"
+ ],
+ [
+ 608,
+ "MS08-XS-Blue"
+ ],
+ [
+ 609,
+ "MS08-XS-Red"
+ ],
+ [
+ 610,
+ "MS08-S-Black"
+ ],
+ [
+ 611,
+ "MS08-S-Blue"
+ ],
+ [
+ 612,
+ "MS08-S-Red"
+ ],
+ [
+ 613,
+ "MS08-M-Black"
+ ],
+ [
+ 614,
+ "MS08-M-Blue"
+ ],
+ [
+ 615,
+ "MS08-M-Red"
+ ],
+ [
+ 616,
+ "MS08-L-Black"
+ ],
+ [
+ 617,
+ "MS08-L-Blue"
+ ],
+ [
+ 618,
+ "MS08-L-Red"
+ ],
+ [
+ 619,
+ "MS08-XL-Black"
+ ],
+ [
+ 620,
+ "MS08-XL-Blue"
+ ],
+ [
+ 621,
+ "MS08-XL-Red"
+ ],
+ [
+ 623,
+ "MT01-XS-Gray"
+ ],
+ [
+ 624,
+ "MT01-XS-Orange"
+ ],
+ [
+ 625,
+ "MT01-XS-Red"
+ ],
+ [
+ 626,
+ "MT01-S-Gray"
+ ],
+ [
+ 627,
+ "MT01-S-Orange"
+ ],
+ [
+ 628,
+ "MT01-S-Red"
+ ],
+ [
+ 629,
+ "MT01-M-Gray"
+ ],
+ [
+ 630,
+ "MT01-M-Orange"
+ ],
+ [
+ 631,
+ "MT01-M-Red"
+ ],
+ [
+ 632,
+ "MT01-L-Gray"
+ ],
+ [
+ 633,
+ "MT01-L-Orange"
+ ],
+ [
+ 634,
+ "MT01-L-Red"
+ ],
+ [
+ 635,
+ "MT01-XL-Gray"
+ ],
+ [
+ 636,
+ "MT01-XL-Orange"
+ ],
+ [
+ 637,
+ "MT01-XL-Red"
+ ],
+ [
+ 639,
+ "MT02-XS-Gray"
+ ],
+ [
+ 640,
+ "MT02-XS-Red"
+ ],
+ [
+ 641,
+ "MT02-XS-White"
+ ],
+ [
+ 642,
+ "MT02-S-Gray"
+ ],
+ [
+ 643,
+ "MT02-S-Red"
+ ],
+ [
+ 644,
+ "MT02-S-White"
+ ],
+ [
+ 645,
+ "MT02-M-Gray"
+ ],
+ [
+ 646,
+ "MT02-M-Red"
+ ],
+ [
+ 647,
+ "MT02-M-White"
+ ],
+ [
+ 648,
+ "MT02-L-Gray"
+ ],
+ [
+ 649,
+ "MT02-L-Red"
+ ],
+ [
+ 650,
+ "MT02-L-White"
+ ],
+ [
+ 651,
+ "MT02-XL-Gray"
+ ],
+ [
+ 652,
+ "MT02-XL-Red"
+ ],
+ [
+ 653,
+ "MT02-XL-White"
+ ],
+ [
+ 655,
+ "MT03-XS-Blue"
+ ],
+ [
+ 656,
+ "MT03-XS-Red"
+ ],
+ [
+ 657,
+ "MT03-XS-Yellow"
+ ],
+ [
+ 658,
+ "MT03-S-Blue"
+ ],
+ [
+ 659,
+ "MT03-S-Red"
+ ],
+ [
+ 660,
+ "MT03-S-Yellow"
+ ],
+ [
+ 661,
+ "MT03-M-Blue"
+ ],
+ [
+ 662,
+ "MT03-M-Red"
+ ],
+ [
+ 663,
+ "MT03-M-Yellow"
+ ],
+ [
+ 664,
+ "MT03-L-Blue"
+ ],
+ [
+ 665,
+ "MT03-L-Red"
+ ],
+ [
+ 666,
+ "MT03-L-Yellow"
+ ],
+ [
+ 667,
+ "MT03-XL-Blue"
+ ],
+ [
+ 668,
+ "MT03-XL-Red"
+ ],
+ [
+ 669,
+ "MT03-XL-Yellow"
+ ],
+ [
+ 671,
+ "MT04-XS-Blue"
+ ],
+ [
+ 672,
+ "MT04-S-Blue"
+ ],
+ [
+ 673,
+ "MT04-M-Blue"
+ ],
+ [
+ 674,
+ "MT04-L-Blue"
+ ],
+ [
+ 675,
+ "MT04-XL-Blue"
+ ],
+ [
+ 677,
+ "MT05-XS-Blue"
+ ],
+ [
+ 678,
+ "MT05-S-Blue"
+ ],
+ [
+ 679,
+ "MT05-M-Blue"
+ ],
+ [
+ 680,
+ "MT05-L-Blue"
+ ],
+ [
+ 681,
+ "MT05-XL-Blue"
+ ],
+ [
+ 683,
+ "MT06-XS-Black"
+ ],
+ [
+ 684,
+ "MT06-S-Black"
+ ],
+ [
+ 685,
+ "MT06-M-Black"
+ ],
+ [
+ 686,
+ "MT06-L-Black"
+ ],
+ [
+ 687,
+ "MT06-XL-Black"
+ ],
+ [
+ 689,
+ "MT07-XS-Gray"
+ ],
+ [
+ 690,
+ "MT07-S-Gray"
+ ],
+ [
+ 691,
+ "MT07-M-Gray"
+ ],
+ [
+ 692,
+ "MT07-L-Gray"
+ ],
+ [
+ 693,
+ "MT07-XL-Gray"
+ ],
+ [
+ 695,
+ "MT08-XS-Green"
+ ],
+ [
+ 696,
+ "MT08-S-Green"
+ ],
+ [
+ 697,
+ "MT08-M-Green"
+ ],
+ [
+ 698,
+ "MT08-L-Green"
+ ],
+ [
+ 699,
+ "MT08-XL-Green"
+ ],
+ [
+ 701,
+ "MT09-XS-Blue"
+ ],
+ [
+ 702,
+ "MT09-S-Blue"
+ ],
+ [
+ 703,
+ "MT09-M-Blue"
+ ],
+ [
+ 704,
+ "MT09-L-Blue"
+ ],
+ [
+ 705,
+ "MT09-XL-Blue"
+ ],
+ [
+ 707,
+ "MT10-XS-Yellow"
+ ],
+ [
+ 708,
+ "MT10-S-Yellow"
+ ],
+ [
+ 709,
+ "MT10-M-Yellow"
+ ],
+ [
+ 710,
+ "MT10-L-Yellow"
+ ],
+ [
+ 711,
+ "MT10-XL-Yellow"
+ ],
+ [
+ 713,
+ "MT11-XS-Blue"
+ ],
+ [
+ 714,
+ "MT11-S-Blue"
+ ],
+ [
+ 715,
+ "MT11-M-Blue"
+ ],
+ [
+ 716,
+ "MT11-L-Blue"
+ ],
+ [
+ 717,
+ "MT11-XL-Blue"
+ ],
+ [
+ 719,
+ "MT12-XS-Blue"
+ ],
+ [
+ 720,
+ "MT12-S-Blue"
+ ],
+ [
+ 721,
+ "MT12-M-Blue"
+ ],
+ [
+ 722,
+ "MT12-L-Blue"
+ ],
+ [
+ 723,
+ "MT12-XL-Blue"
+ ],
+ [
+ 725,
+ "MP01-32-Black"
+ ],
+ [
+ 726,
+ "MP01-32-Gray"
+ ],
+ [
+ 727,
+ "MP01-32-Purple"
+ ],
+ [
+ 728,
+ "MP01-33-Black"
+ ],
+ [
+ 729,
+ "MP01-33-Gray"
+ ],
+ [
+ 730,
+ "MP01-33-Purple"
+ ],
+ [
+ 731,
+ "MP01-34-Black"
+ ],
+ [
+ 732,
+ "MP01-34-Gray"
+ ],
+ [
+ 733,
+ "MP01-34-Purple"
+ ],
+ [
+ 734,
+ "MP01-36-Black"
+ ],
+ [
+ 735,
+ "MP01-36-Gray"
+ ],
+ [
+ 736,
+ "MP01-36-Purple"
+ ],
+ [
+ 738,
+ "MP02-32-Blue"
+ ],
+ [
+ 739,
+ "MP02-32-Gray"
+ ],
+ [
+ 740,
+ "MP02-32-Red"
+ ],
+ [
+ 741,
+ "MP02-33-Blue"
+ ],
+ [
+ 742,
+ "MP02-33-Gray"
+ ],
+ [
+ 743,
+ "MP02-33-Red"
+ ],
+ [
+ 744,
+ "MP02-34-Blue"
+ ],
+ [
+ 745,
+ "MP02-34-Gray"
+ ],
+ [
+ 746,
+ "MP02-34-Red"
+ ],
+ [
+ 747,
+ "MP02-36-Blue"
+ ],
+ [
+ 748,
+ "MP02-36-Gray"
+ ],
+ [
+ 749,
+ "MP02-36-Red"
+ ],
+ [
+ 751,
+ "MP03-32-Blue"
+ ],
+ [
+ 752,
+ "MP03-32-Green"
+ ],
+ [
+ 753,
+ "MP03-32-Red"
+ ],
+ [
+ 754,
+ "MP03-33-Blue"
+ ],
+ [
+ 755,
+ "MP03-33-Green"
+ ],
+ [
+ 756,
+ "MP03-33-Red"
+ ],
+ [
+ 757,
+ "MP03-34-Blue"
+ ],
+ [
+ 758,
+ "MP03-34-Green"
+ ],
+ [
+ 759,
+ "MP03-34-Red"
+ ],
+ [
+ 760,
+ "MP03-36-Blue"
+ ],
+ [
+ 761,
+ "MP03-36-Green"
+ ],
+ [
+ 762,
+ "MP03-36-Red"
+ ],
+ [
+ 764,
+ "MP04-32-Black"
+ ],
+ [
+ 765,
+ "MP04-32-Gray"
+ ],
+ [
+ 766,
+ "MP04-32-Green"
+ ],
+ [
+ 767,
+ "MP04-33-Black"
+ ],
+ [
+ 768,
+ "MP04-33-Gray"
+ ],
+ [
+ 769,
+ "MP04-33-Green"
+ ],
+ [
+ 770,
+ "MP04-34-Black"
+ ],
+ [
+ 771,
+ "MP04-34-Gray"
+ ],
+ [
+ 772,
+ "MP04-34-Green"
+ ],
+ [
+ 773,
+ "MP04-36-Black"
+ ],
+ [
+ 774,
+ "MP04-36-Gray"
+ ],
+ [
+ 775,
+ "MP04-36-Green"
+ ],
+ [
+ 777,
+ "MP05-32-Black"
+ ],
+ [
+ 778,
+ "MP05-32-Blue"
+ ],
+ [
+ 779,
+ "MP05-32-Green"
+ ],
+ [
+ 780,
+ "MP05-33-Black"
+ ],
+ [
+ 781,
+ "MP05-33-Blue"
+ ],
+ [
+ 782,
+ "MP05-33-Green"
+ ],
+ [
+ 783,
+ "MP05-34-Black"
+ ],
+ [
+ 784,
+ "MP05-34-Blue"
+ ],
+ [
+ 785,
+ "MP05-34-Green"
+ ],
+ [
+ 786,
+ "MP05-36-Black"
+ ],
+ [
+ 787,
+ "MP05-36-Blue"
+ ],
+ [
+ 788,
+ "MP05-36-Green"
+ ],
+ [
+ 790,
+ "MP06-32-Gray"
+ ],
+ [
+ 791,
+ "MP06-32-Green"
+ ],
+ [
+ 792,
+ "MP06-32-Orange"
+ ],
+ [
+ 793,
+ "MP06-33-Gray"
+ ],
+ [
+ 794,
+ "MP06-33-Green"
+ ],
+ [
+ 795,
+ "MP06-33-Orange"
+ ],
+ [
+ 796,
+ "MP06-34-Gray"
+ ],
+ [
+ 797,
+ "MP06-34-Green"
+ ],
+ [
+ 798,
+ "MP06-34-Orange"
+ ],
+ [
+ 799,
+ "MP06-36-Gray"
+ ],
+ [
+ 800,
+ "MP06-36-Green"
+ ],
+ [
+ 801,
+ "MP06-36-Orange"
+ ],
+ [
+ 803,
+ "MP07-32-Black"
+ ],
+ [
+ 804,
+ "MP07-32-Blue"
+ ],
+ [
+ 805,
+ "MP07-32-Purple"
+ ],
+ [
+ 806,
+ "MP07-33-Black"
+ ],
+ [
+ 807,
+ "MP07-33-Blue"
+ ],
+ [
+ 808,
+ "MP07-33-Purple"
+ ],
+ [
+ 809,
+ "MP07-34-Black"
+ ],
+ [
+ 810,
+ "MP07-34-Blue"
+ ],
+ [
+ 811,
+ "MP07-34-Purple"
+ ],
+ [
+ 812,
+ "MP07-36-Black"
+ ],
+ [
+ 813,
+ "MP07-36-Blue"
+ ],
+ [
+ 814,
+ "MP07-36-Purple"
+ ],
+ [
+ 816,
+ "MP08-32-Blue"
+ ],
+ [
+ 817,
+ "MP08-32-Green"
+ ],
+ [
+ 818,
+ "MP08-32-Red"
+ ],
+ [
+ 819,
+ "MP08-33-Blue"
+ ],
+ [
+ 820,
+ "MP08-33-Green"
+ ],
+ [
+ 821,
+ "MP08-33-Red"
+ ],
+ [
+ 822,
+ "MP08-34-Blue"
+ ],
+ [
+ 823,
+ "MP08-34-Green"
+ ],
+ [
+ 824,
+ "MP08-34-Red"
+ ],
+ [
+ 825,
+ "MP08-36-Blue"
+ ],
+ [
+ 826,
+ "MP08-36-Green"
+ ],
+ [
+ 827,
+ "MP08-36-Red"
+ ],
+ [
+ 829,
+ "MP09-32-Black"
+ ],
+ [
+ 830,
+ "MP09-32-Blue"
+ ],
+ [
+ 831,
+ "MP09-32-Red"
+ ],
+ [
+ 832,
+ "MP09-33-Black"
+ ],
+ [
+ 833,
+ "MP09-33-Blue"
+ ],
+ [
+ 834,
+ "MP09-33-Red"
+ ],
+ [
+ 835,
+ "MP09-34-Black"
+ ],
+ [
+ 836,
+ "MP09-34-Blue"
+ ],
+ [
+ 837,
+ "MP09-34-Red"
+ ],
+ [
+ 838,
+ "MP09-36-Black"
+ ],
+ [
+ 839,
+ "MP09-36-Blue"
+ ],
+ [
+ 840,
+ "MP09-36-Red"
+ ],
+ [
+ 842,
+ "MP10-32-Black"
+ ],
+ [
+ 843,
+ "MP10-32-Blue"
+ ],
+ [
+ 844,
+ "MP10-32-Green"
+ ],
+ [
+ 845,
+ "MP10-33-Black"
+ ],
+ [
+ 846,
+ "MP10-33-Blue"
+ ],
+ [
+ 847,
+ "MP10-33-Green"
+ ],
+ [
+ 848,
+ "MP10-34-Black"
+ ],
+ [
+ 849,
+ "MP10-34-Blue"
+ ],
+ [
+ 850,
+ "MP10-34-Green"
+ ],
+ [
+ 851,
+ "MP10-36-Black"
+ ],
+ [
+ 852,
+ "MP10-36-Blue"
+ ],
+ [
+ 853,
+ "MP10-36-Green"
+ ],
+ [
+ 855,
+ "MP11-32-Blue"
+ ],
+ [
+ 856,
+ "MP11-32-Brown"
+ ],
+ [
+ 857,
+ "MP11-32-Green"
+ ],
+ [
+ 858,
+ "MP11-33-Blue"
+ ],
+ [
+ 859,
+ "MP11-33-Brown"
+ ],
+ [
+ 860,
+ "MP11-33-Green"
+ ],
+ [
+ 861,
+ "MP11-34-Blue"
+ ],
+ [
+ 862,
+ "MP11-34-Brown"
+ ],
+ [
+ 863,
+ "MP11-34-Green"
+ ],
+ [
+ 864,
+ "MP11-36-Blue"
+ ],
+ [
+ 865,
+ "MP11-36-Brown"
+ ],
+ [
+ 866,
+ "MP11-36-Green"
+ ],
+ [
+ 868,
+ "MP12-32-Black"
+ ],
+ [
+ 869,
+ "MP12-32-Blue"
+ ],
+ [
+ 870,
+ "MP12-32-Red"
+ ],
+ [
+ 871,
+ "MP12-33-Black"
+ ],
+ [
+ 872,
+ "MP12-33-Blue"
+ ],
+ [
+ 873,
+ "MP12-33-Red"
+ ],
+ [
+ 874,
+ "MP12-34-Black"
+ ],
+ [
+ 875,
+ "MP12-34-Blue"
+ ],
+ [
+ 876,
+ "MP12-34-Red"
+ ],
+ [
+ 877,
+ "MP12-36-Black"
+ ],
+ [
+ 878,
+ "MP12-36-Blue"
+ ],
+ [
+ 879,
+ "MP12-36-Red"
+ ],
+ [
+ 881,
+ "MSH01-32-Black"
+ ],
+ [
+ 882,
+ "MSH01-32-Blue"
+ ],
+ [
+ 883,
+ "MSH01-32-Red"
+ ],
+ [
+ 884,
+ "MSH01-33-Black"
+ ],
+ [
+ 885,
+ "MSH01-33-Blue"
+ ],
+ [
+ 886,
+ "MSH01-33-Red"
+ ],
+ [
+ 887,
+ "MSH01-34-Black"
+ ],
+ [
+ 888,
+ "MSH01-34-Blue"
+ ],
+ [
+ 889,
+ "MSH01-34-Red"
+ ],
+ [
+ 890,
+ "MSH01-36-Black"
+ ],
+ [
+ 891,
+ "MSH01-36-Blue"
+ ],
+ [
+ 892,
+ "MSH01-36-Red"
+ ],
+ [
+ 894,
+ "MSH02-32-Black"
+ ],
+ [
+ 895,
+ "MSH02-33-Black"
+ ],
+ [
+ 896,
+ "MSH02-34-Black"
+ ],
+ [
+ 897,
+ "MSH02-36-Black"
+ ],
+ [
+ 899,
+ "MSH03-32-Black"
+ ],
+ [
+ 900,
+ "MSH03-32-Blue"
+ ],
+ [
+ 901,
+ "MSH03-32-Green"
+ ],
+ [
+ 902,
+ "MSH03-33-Black"
+ ],
+ [
+ 903,
+ "MSH03-33-Blue"
+ ],
+ [
+ 904,
+ "MSH03-33-Green"
+ ],
+ [
+ 905,
+ "MSH03-34-Black"
+ ],
+ [
+ 906,
+ "MSH03-34-Blue"
+ ],
+ [
+ 907,
+ "MSH03-34-Green"
+ ],
+ [
+ 908,
+ "MSH03-36-Black"
+ ],
+ [
+ 909,
+ "MSH03-36-Blue"
+ ],
+ [
+ 910,
+ "MSH03-36-Green"
+ ],
+ [
+ 912,
+ "MSH04-32-Gray"
+ ],
+ [
+ 913,
+ "MSH04-32-Purple"
+ ],
+ [
+ 914,
+ "MSH04-32-Yellow"
+ ],
+ [
+ 915,
+ "MSH04-33-Gray"
+ ],
+ [
+ 916,
+ "MSH04-33-Purple"
+ ],
+ [
+ 917,
+ "MSH04-33-Yellow"
+ ],
+ [
+ 918,
+ "MSH04-34-Gray"
+ ],
+ [
+ 919,
+ "MSH04-34-Purple"
+ ],
+ [
+ 920,
+ "MSH04-34-Yellow"
+ ],
+ [
+ 921,
+ "MSH04-36-Gray"
+ ],
+ [
+ 922,
+ "MSH04-36-Purple"
+ ],
+ [
+ 923,
+ "MSH04-36-Yellow"
+ ],
+ [
+ 925,
+ "MSH05-32-Black"
+ ],
+ [
+ 926,
+ "MSH05-32-Blue"
+ ],
+ [
+ 927,
+ "MSH05-32-Gray"
+ ],
+ [
+ 928,
+ "MSH05-33-Black"
+ ],
+ [
+ 929,
+ "MSH05-33-Blue"
+ ],
+ [
+ 930,
+ "MSH05-33-Gray"
+ ],
+ [
+ 931,
+ "MSH05-34-Black"
+ ],
+ [
+ 932,
+ "MSH05-34-Blue"
+ ],
+ [
+ 933,
+ "MSH05-34-Gray"
+ ],
+ [
+ 934,
+ "MSH05-36-Black"
+ ],
+ [
+ 935,
+ "MSH05-36-Blue"
+ ],
+ [
+ 936,
+ "MSH05-36-Gray"
+ ],
+ [
+ 938,
+ "MSH06-32-Blue"
+ ],
+ [
+ 939,
+ "MSH06-32-Gray"
+ ],
+ [
+ 940,
+ "MSH06-32-Red"
+ ],
+ [
+ 941,
+ "MSH06-33-Blue"
+ ],
+ [
+ 942,
+ "MSH06-33-Gray"
+ ],
+ [
+ 943,
+ "MSH06-33-Red"
+ ],
+ [
+ 944,
+ "MSH06-34-Blue"
+ ],
+ [
+ 945,
+ "MSH06-34-Gray"
+ ],
+ [
+ 946,
+ "MSH06-34-Red"
+ ],
+ [
+ 947,
+ "MSH06-36-Blue"
+ ],
+ [
+ 948,
+ "MSH06-36-Gray"
+ ],
+ [
+ 949,
+ "MSH06-36-Red"
+ ],
+ [
+ 951,
+ "MSH07-32-Black"
+ ],
+ [
+ 952,
+ "MSH07-32-Blue"
+ ],
+ [
+ 953,
+ "MSH07-32-Purple"
+ ],
+ [
+ 954,
+ "MSH07-33-Black"
+ ],
+ [
+ 955,
+ "MSH07-33-Blue"
+ ],
+ [
+ 956,
+ "MSH07-33-Purple"
+ ],
+ [
+ 957,
+ "MSH07-34-Black"
+ ],
+ [
+ 958,
+ "MSH07-34-Blue"
+ ],
+ [
+ 959,
+ "MSH07-34-Purple"
+ ],
+ [
+ 960,
+ "MSH07-36-Black"
+ ],
+ [
+ 961,
+ "MSH07-36-Blue"
+ ],
+ [
+ 962,
+ "MSH07-36-Purple"
+ ],
+ [
+ 964,
+ "MSH08-32-Black"
+ ],
+ [
+ 965,
+ "MSH08-32-Blue"
+ ],
+ [
+ 966,
+ "MSH08-32-Green"
+ ],
+ [
+ 967,
+ "MSH08-33-Black"
+ ],
+ [
+ 968,
+ "MSH08-33-Blue"
+ ],
+ [
+ 969,
+ "MSH08-33-Green"
+ ],
+ [
+ 970,
+ "MSH08-34-Black"
+ ],
+ [
+ 971,
+ "MSH08-34-Blue"
+ ],
+ [
+ 972,
+ "MSH08-34-Green"
+ ],
+ [
+ 973,
+ "MSH08-36-Black"
+ ],
+ [
+ 974,
+ "MSH08-36-Blue"
+ ],
+ [
+ 975,
+ "MSH08-36-Green"
+ ],
+ [
+ 977,
+ "MSH09-32-Black"
+ ],
+ [
+ 978,
+ "MSH09-32-Blue"
+ ],
+ [
+ 979,
+ "MSH09-32-Green"
+ ],
+ [
+ 980,
+ "MSH09-33-Black"
+ ],
+ [
+ 981,
+ "MSH09-33-Blue"
+ ],
+ [
+ 982,
+ "MSH09-33-Green"
+ ],
+ [
+ 983,
+ "MSH09-34-Black"
+ ],
+ [
+ 984,
+ "MSH09-34-Blue"
+ ],
+ [
+ 985,
+ "MSH09-34-Green"
+ ],
+ [
+ 986,
+ "MSH09-36-Black"
+ ],
+ [
+ 987,
+ "MSH09-36-Blue"
+ ],
+ [
+ 988,
+ "MSH09-36-Green"
+ ],
+ [
+ 990,
+ "MSH10-32-Blue"
+ ],
+ [
+ 991,
+ "MSH10-32-Green"
+ ],
+ [
+ 992,
+ "MSH10-32-Purple"
+ ],
+ [
+ 993,
+ "MSH10-33-Blue"
+ ],
+ [
+ 994,
+ "MSH10-33-Green"
+ ],
+ [
+ 995,
+ "MSH10-33-Purple"
+ ],
+ [
+ 996,
+ "MSH10-34-Blue"
+ ],
+ [
+ 997,
+ "MSH10-34-Green"
+ ],
+ [
+ 998,
+ "MSH10-34-Purple"
+ ],
+ [
+ 999,
+ "MSH10-36-Blue"
+ ],
+ [
+ 1000,
+ "MSH10-36-Green"
+ ],
+ [
+ 1001,
+ "MSH10-36-Purple"
+ ],
+ [
+ 1003,
+ "MSH11-32-Black"
+ ],
+ [
+ 1004,
+ "MSH11-32-Blue"
+ ],
+ [
+ 1005,
+ "MSH11-32-Red"
+ ],
+ [
+ 1006,
+ "MSH11-33-Black"
+ ],
+ [
+ 1007,
+ "MSH11-33-Blue"
+ ],
+ [
+ 1008,
+ "MSH11-33-Red"
+ ],
+ [
+ 1009,
+ "MSH11-34-Black"
+ ],
+ [
+ 1010,
+ "MSH11-34-Blue"
+ ],
+ [
+ 1011,
+ "MSH11-34-Red"
+ ],
+ [
+ 1012,
+ "MSH11-36-Black"
+ ],
+ [
+ 1013,
+ "MSH11-36-Blue"
+ ],
+ [
+ 1014,
+ "MSH11-36-Red"
+ ],
+ [
+ 1016,
+ "MSH12-32-Black"
+ ],
+ [
+ 1017,
+ "MSH12-32-Gray"
+ ],
+ [
+ 1018,
+ "MSH12-32-Red"
+ ],
+ [
+ 1019,
+ "MSH12-33-Black"
+ ],
+ [
+ 1020,
+ "MSH12-33-Gray"
+ ],
+ [
+ 1021,
+ "MSH12-33-Red"
+ ],
+ [
+ 1022,
+ "MSH12-34-Black"
+ ],
+ [
+ 1023,
+ "MSH12-34-Gray"
+ ],
+ [
+ 1024,
+ "MSH12-34-Red"
+ ],
+ [
+ 1025,
+ "MSH12-36-Black"
+ ],
+ [
+ 1026,
+ "MSH12-36-Gray"
+ ],
+ [
+ 1027,
+ "MSH12-36-Red"
+ ],
+ [
+ 1029,
+ "WH01-XS-Green"
+ ],
+ [
+ 1030,
+ "WH01-XS-Orange"
+ ],
+ [
+ 1031,
+ "WH01-XS-Purple"
+ ],
+ [
+ 1032,
+ "WH01-S-Green"
+ ],
+ [
+ 1033,
+ "WH01-S-Orange"
+ ],
+ [
+ 1034,
+ "WH01-S-Purple"
+ ],
+ [
+ 1035,
+ "WH01-M-Green"
+ ],
+ [
+ 1036,
+ "WH01-M-Orange"
+ ],
+ [
+ 1037,
+ "WH01-M-Purple"
+ ],
+ [
+ 1038,
+ "WH01-L-Green"
+ ],
+ [
+ 1039,
+ "WH01-L-Orange"
+ ],
+ [
+ 1040,
+ "WH01-L-Purple"
+ ],
+ [
+ 1041,
+ "WH01-XL-Green"
+ ],
+ [
+ 1042,
+ "WH01-XL-Orange"
+ ],
+ [
+ 1043,
+ "WH01-XL-Purple"
+ ],
+ [
+ 1045,
+ "WH02-XS-Blue"
+ ],
+ [
+ 1046,
+ "WH02-XS-Green"
+ ],
+ [
+ 1047,
+ "WH02-XS-Orange"
+ ],
+ [
+ 1048,
+ "WH02-S-Blue"
+ ],
+ [
+ 1049,
+ "WH02-S-Green"
+ ],
+ [
+ 1050,
+ "WH02-S-Orange"
+ ],
+ [
+ 1051,
+ "WH02-M-Blue"
+ ],
+ [
+ 1052,
+ "WH02-M-Green"
+ ],
+ [
+ 1053,
+ "WH02-M-Orange"
+ ],
+ [
+ 1054,
+ "WH02-L-Blue"
+ ],
+ [
+ 1055,
+ "WH02-L-Green"
+ ],
+ [
+ 1056,
+ "WH02-L-Orange"
+ ],
+ [
+ 1057,
+ "WH02-XL-Blue"
+ ],
+ [
+ 1058,
+ "WH02-XL-Green"
+ ],
+ [
+ 1059,
+ "WH02-XL-Orange"
+ ],
+ [
+ 1061,
+ "WH03-XS-Green"
+ ],
+ [
+ 1062,
+ "WH03-XS-Purple"
+ ],
+ [
+ 1063,
+ "WH03-XS-Red"
+ ],
+ [
+ 1064,
+ "WH03-S-Green"
+ ],
+ [
+ 1065,
+ "WH03-S-Purple"
+ ],
+ [
+ 1066,
+ "WH03-S-Red"
+ ],
+ [
+ 1067,
+ "WH03-M-Green"
+ ],
+ [
+ 1068,
+ "WH03-M-Purple"
+ ],
+ [
+ 1069,
+ "WH03-M-Red"
+ ],
+ [
+ 1070,
+ "WH03-L-Green"
+ ],
+ [
+ 1071,
+ "WH03-L-Purple"
+ ],
+ [
+ 1072,
+ "WH03-L-Red"
+ ],
+ [
+ 1073,
+ "WH03-XL-Green"
+ ],
+ [
+ 1074,
+ "WH03-XL-Purple"
+ ],
+ [
+ 1075,
+ "WH03-XL-Red"
+ ],
+ [
+ 1077,
+ "WH04-XS-Blue"
+ ],
+ [
+ 1078,
+ "WH04-XS-Orange"
+ ],
+ [
+ 1079,
+ "WH04-XS-Purple"
+ ],
+ [
+ 1080,
+ "WH04-S-Blue"
+ ],
+ [
+ 1081,
+ "WH04-S-Orange"
+ ],
+ [
+ 1082,
+ "WH04-S-Purple"
+ ],
+ [
+ 1083,
+ "WH04-M-Blue"
+ ],
+ [
+ 1084,
+ "WH04-M-Orange"
+ ],
+ [
+ 1085,
+ "WH04-M-Purple"
+ ],
+ [
+ 1086,
+ "WH04-L-Blue"
+ ],
+ [
+ 1087,
+ "WH04-L-Orange"
+ ],
+ [
+ 1088,
+ "WH04-L-Purple"
+ ],
+ [
+ 1089,
+ "WH04-XL-Blue"
+ ],
+ [
+ 1090,
+ "WH04-XL-Orange"
+ ],
+ [
+ 1091,
+ "WH04-XL-Purple"
+ ],
+ [
+ 1093,
+ "WH05-XS-Orange"
+ ],
+ [
+ 1094,
+ "WH05-XS-Purple"
+ ],
+ [
+ 1095,
+ "WH05-XS-White"
+ ],
+ [
+ 1096,
+ "WH05-S-Orange"
+ ],
+ [
+ 1097,
+ "WH05-S-Purple"
+ ],
+ [
+ 1098,
+ "WH05-S-White"
+ ],
+ [
+ 1099,
+ "WH05-M-Orange"
+ ],
+ [
+ 1100,
+ "WH05-M-Purple"
+ ],
+ [
+ 1101,
+ "WH05-M-White"
+ ],
+ [
+ 1102,
+ "WH05-L-Orange"
+ ],
+ [
+ 1103,
+ "WH05-L-Purple"
+ ],
+ [
+ 1104,
+ "WH05-L-White"
+ ],
+ [
+ 1105,
+ "WH05-XL-Orange"
+ ],
+ [
+ 1106,
+ "WH05-XL-Purple"
+ ],
+ [
+ 1107,
+ "WH05-XL-White"
+ ],
+ [
+ 1109,
+ "WH06-XS-Purple"
+ ],
+ [
+ 1110,
+ "WH06-S-Purple"
+ ],
+ [
+ 1111,
+ "WH06-M-Purple"
+ ],
+ [
+ 1112,
+ "WH06-L-Purple"
+ ],
+ [
+ 1113,
+ "WH06-XL-Purple"
+ ],
+ [
+ 1115,
+ "WH07-XS-Gray"
+ ],
+ [
+ 1116,
+ "WH07-XS-Purple"
+ ],
+ [
+ 1117,
+ "WH07-XS-White"
+ ],
+ [
+ 1118,
+ "WH07-S-Gray"
+ ],
+ [
+ 1119,
+ "WH07-S-Purple"
+ ],
+ [
+ 1120,
+ "WH07-S-White"
+ ],
+ [
+ 1121,
+ "WH07-M-Gray"
+ ],
+ [
+ 1122,
+ "WH07-M-Purple"
+ ],
+ [
+ 1123,
+ "WH07-M-White"
+ ],
+ [
+ 1124,
+ "WH07-L-Gray"
+ ],
+ [
+ 1125,
+ "WH07-L-Purple"
+ ],
+ [
+ 1126,
+ "WH07-L-White"
+ ],
+ [
+ 1127,
+ "WH07-XL-Gray"
+ ],
+ [
+ 1128,
+ "WH07-XL-Purple"
+ ],
+ [
+ 1129,
+ "WH07-XL-White"
+ ],
+ [
+ 1131,
+ "WH08-XS-Orange"
+ ],
+ [
+ 1132,
+ "WH08-XS-Purple"
+ ],
+ [
+ 1133,
+ "WH08-XS-White"
+ ],
+ [
+ 1134,
+ "WH08-S-Orange"
+ ],
+ [
+ 1135,
+ "WH08-S-Purple"
+ ],
+ [
+ 1136,
+ "WH08-S-White"
+ ],
+ [
+ 1137,
+ "WH08-M-Orange"
+ ],
+ [
+ 1138,
+ "WH08-M-Purple"
+ ],
+ [
+ 1139,
+ "WH08-M-White"
+ ],
+ [
+ 1140,
+ "WH08-L-Orange"
+ ],
+ [
+ 1141,
+ "WH08-L-Purple"
+ ],
+ [
+ 1142,
+ "WH08-L-White"
+ ],
+ [
+ 1143,
+ "WH08-XL-Orange"
+ ],
+ [
+ 1144,
+ "WH08-XL-Purple"
+ ],
+ [
+ 1145,
+ "WH08-XL-White"
+ ],
+ [
+ 1147,
+ "WH09-XS-Green"
+ ],
+ [
+ 1148,
+ "WH09-XS-Purple"
+ ],
+ [
+ 1149,
+ "WH09-XS-Red"
+ ],
+ [
+ 1150,
+ "WH09-S-Green"
+ ],
+ [
+ 1151,
+ "WH09-S-Purple"
+ ],
+ [
+ 1152,
+ "WH09-S-Red"
+ ],
+ [
+ 1153,
+ "WH09-M-Green"
+ ],
+ [
+ 1154,
+ "WH09-M-Purple"
+ ],
+ [
+ 1155,
+ "WH09-M-Red"
+ ],
+ [
+ 1156,
+ "WH09-L-Green"
+ ],
+ [
+ 1157,
+ "WH09-L-Purple"
+ ],
+ [
+ 1158,
+ "WH09-L-Red"
+ ],
+ [
+ 1159,
+ "WH09-XL-Green"
+ ],
+ [
+ 1160,
+ "WH09-XL-Purple"
+ ],
+ [
+ 1161,
+ "WH09-XL-Red"
+ ],
+ [
+ 1163,
+ "WH10-XS-Blue"
+ ],
+ [
+ 1164,
+ "WH10-XS-Gray"
+ ],
+ [
+ 1165,
+ "WH10-XS-Yellow"
+ ],
+ [
+ 1166,
+ "WH10-S-Blue"
+ ],
+ [
+ 1167,
+ "WH10-S-Gray"
+ ],
+ [
+ 1168,
+ "WH10-S-Yellow"
+ ],
+ [
+ 1169,
+ "WH10-M-Blue"
+ ],
+ [
+ 1170,
+ "WH10-M-Gray"
+ ],
+ [
+ 1171,
+ "WH10-M-Yellow"
+ ],
+ [
+ 1172,
+ "WH10-L-Blue"
+ ],
+ [
+ 1173,
+ "WH10-L-Gray"
+ ],
+ [
+ 1174,
+ "WH10-L-Yellow"
+ ],
+ [
+ 1175,
+ "WH10-XL-Blue"
+ ],
+ [
+ 1176,
+ "WH10-XL-Gray"
+ ],
+ [
+ 1177,
+ "WH10-XL-Yellow"
+ ],
+ [
+ 1179,
+ "WH11-XS-Blue"
+ ],
+ [
+ 1180,
+ "WH11-XS-Green"
+ ],
+ [
+ 1181,
+ "WH11-XS-Orange"
+ ],
+ [
+ 1182,
+ "WH11-S-Blue"
+ ],
+ [
+ 1183,
+ "WH11-S-Green"
+ ],
+ [
+ 1184,
+ "WH11-S-Orange"
+ ],
+ [
+ 1185,
+ "WH11-M-Blue"
+ ],
+ [
+ 1186,
+ "WH11-M-Green"
+ ],
+ [
+ 1187,
+ "WH11-M-Orange"
+ ],
+ [
+ 1188,
+ "WH11-L-Blue"
+ ],
+ [
+ 1189,
+ "WH11-L-Green"
+ ],
+ [
+ 1190,
+ "WH11-L-Orange"
+ ],
+ [
+ 1191,
+ "WH11-XL-Blue"
+ ],
+ [
+ 1192,
+ "WH11-XL-Green"
+ ],
+ [
+ 1193,
+ "WH11-XL-Orange"
+ ],
+ [
+ 1195,
+ "WH12-XS-Gray"
+ ],
+ [
+ 1196,
+ "WH12-XS-Green"
+ ],
+ [
+ 1197,
+ "WH12-XS-Purple"
+ ],
+ [
+ 1198,
+ "WH12-S-Gray"
+ ],
+ [
+ 1199,
+ "WH12-S-Green"
+ ],
+ [
+ 1200,
+ "WH12-S-Purple"
+ ],
+ [
+ 1201,
+ "WH12-M-Gray"
+ ],
+ [
+ 1202,
+ "WH12-M-Green"
+ ],
+ [
+ 1203,
+ "WH12-M-Purple"
+ ],
+ [
+ 1204,
+ "WH12-L-Gray"
+ ],
+ [
+ 1205,
+ "WH12-L-Green"
+ ],
+ [
+ 1206,
+ "WH12-L-Purple"
+ ],
+ [
+ 1207,
+ "WH12-XL-Gray"
+ ],
+ [
+ 1208,
+ "WH12-XL-Green"
+ ],
+ [
+ 1209,
+ "WH12-XL-Purple"
+ ],
+ [
+ 1211,
+ "WJ01-S-Blue"
+ ],
+ [
+ 1212,
+ "WJ01-S-Red"
+ ],
+ [
+ 1213,
+ "WJ01-S-Yellow"
+ ],
+ [
+ 1214,
+ "WJ01-M-Blue"
+ ],
+ [
+ 1215,
+ "WJ01-M-Red"
+ ],
+ [
+ 1216,
+ "WJ01-M-Yellow"
+ ],
+ [
+ 1217,
+ "WJ01-L-Blue"
+ ],
+ [
+ 1218,
+ "WJ01-L-Red"
+ ],
+ [
+ 1219,
+ "WJ01-L-Yellow"
+ ],
+ [
+ 1221,
+ "WJ02-XS-Black"
+ ],
+ [
+ 1222,
+ "WJ02-XS-Blue"
+ ],
+ [
+ 1223,
+ "WJ02-XS-Gray"
+ ],
+ [
+ 1224,
+ "WJ02-S-Black"
+ ],
+ [
+ 1225,
+ "WJ02-S-Blue"
+ ],
+ [
+ 1226,
+ "WJ02-S-Gray"
+ ],
+ [
+ 1227,
+ "WJ02-M-Black"
+ ],
+ [
+ 1228,
+ "WJ02-M-Blue"
+ ],
+ [
+ 1229,
+ "WJ02-M-Gray"
+ ],
+ [
+ 1230,
+ "WJ02-L-Black"
+ ],
+ [
+ 1231,
+ "WJ02-L-Blue"
+ ],
+ [
+ 1232,
+ "WJ02-L-Gray"
+ ],
+ [
+ 1233,
+ "WJ02-XL-Black"
+ ],
+ [
+ 1234,
+ "WJ02-XL-Blue"
+ ],
+ [
+ 1235,
+ "WJ02-XL-Gray"
+ ],
+ [
+ 1237,
+ "WJ03-XS-Blue"
+ ],
+ [
+ 1238,
+ "WJ03-XS-Orange"
+ ],
+ [
+ 1239,
+ "WJ03-XS-Red"
+ ],
+ [
+ 1240,
+ "WJ03-S-Blue"
+ ],
+ [
+ 1241,
+ "WJ03-S-Orange"
+ ],
+ [
+ 1242,
+ "WJ03-S-Red"
+ ],
+ [
+ 1243,
+ "WJ03-M-Blue"
+ ],
+ [
+ 1244,
+ "WJ03-M-Orange"
+ ],
+ [
+ 1245,
+ "WJ03-M-Red"
+ ],
+ [
+ 1246,
+ "WJ03-L-Blue"
+ ],
+ [
+ 1247,
+ "WJ03-L-Orange"
+ ],
+ [
+ 1248,
+ "WJ03-L-Red"
+ ],
+ [
+ 1249,
+ "WJ03-XL-Blue"
+ ],
+ [
+ 1250,
+ "WJ03-XL-Orange"
+ ],
+ [
+ 1251,
+ "WJ03-XL-Red"
+ ],
+ [
+ 1253,
+ "WJ04-XS-Orange"
+ ],
+ [
+ 1254,
+ "WJ04-XS-Red"
+ ],
+ [
+ 1255,
+ "WJ04-XS-White"
+ ],
+ [
+ 1256,
+ "WJ04-S-Orange"
+ ],
+ [
+ 1257,
+ "WJ04-S-Red"
+ ],
+ [
+ 1258,
+ "WJ04-S-White"
+ ],
+ [
+ 1259,
+ "WJ04-M-Orange"
+ ],
+ [
+ 1260,
+ "WJ04-M-Red"
+ ],
+ [
+ 1261,
+ "WJ04-M-White"
+ ],
+ [
+ 1262,
+ "WJ04-L-Orange"
+ ],
+ [
+ 1263,
+ "WJ04-L-Red"
+ ],
+ [
+ 1264,
+ "WJ04-L-White"
+ ],
+ [
+ 1265,
+ "WJ04-XL-Orange"
+ ],
+ [
+ 1266,
+ "WJ04-XL-Red"
+ ],
+ [
+ 1267,
+ "WJ04-XL-White"
+ ],
+ [
+ 1269,
+ "WJ05-XS-Brown"
+ ],
+ [
+ 1270,
+ "WJ05-XS-Green"
+ ],
+ [
+ 1271,
+ "WJ05-XS-Red"
+ ],
+ [
+ 1272,
+ "WJ05-S-Brown"
+ ],
+ [
+ 1273,
+ "WJ05-S-Green"
+ ],
+ [
+ 1274,
+ "WJ05-S-Red"
+ ],
+ [
+ 1275,
+ "WJ05-M-Brown"
+ ],
+ [
+ 1276,
+ "WJ05-M-Green"
+ ],
+ [
+ 1277,
+ "WJ05-M-Red"
+ ],
+ [
+ 1278,
+ "WJ05-L-Brown"
+ ],
+ [
+ 1279,
+ "WJ05-L-Green"
+ ],
+ [
+ 1280,
+ "WJ05-L-Red"
+ ],
+ [
+ 1281,
+ "WJ05-XL-Brown"
+ ],
+ [
+ 1282,
+ "WJ05-XL-Green"
+ ],
+ [
+ 1283,
+ "WJ05-XL-Red"
+ ],
+ [
+ 1285,
+ "WJ07-XS-Orange"
+ ],
+ [
+ 1286,
+ "WJ07-XS-Purple"
+ ],
+ [
+ 1287,
+ "WJ07-XS-Red"
+ ],
+ [
+ 1288,
+ "WJ07-S-Orange"
+ ],
+ [
+ 1289,
+ "WJ07-S-Purple"
+ ],
+ [
+ 1290,
+ "WJ07-S-Red"
+ ],
+ [
+ 1291,
+ "WJ07-M-Orange"
+ ],
+ [
+ 1292,
+ "WJ07-M-Purple"
+ ],
+ [
+ 1293,
+ "WJ07-M-Red"
+ ],
+ [
+ 1294,
+ "WJ07-L-Orange"
+ ],
+ [
+ 1295,
+ "WJ07-L-Purple"
+ ],
+ [
+ 1296,
+ "WJ07-L-Red"
+ ],
+ [
+ 1297,
+ "WJ07-XL-Orange"
+ ],
+ [
+ 1298,
+ "WJ07-XL-Purple"
+ ],
+ [
+ 1299,
+ "WJ07-XL-Red"
+ ],
+ [
+ 1301,
+ "WJ08-XS-Gray"
+ ],
+ [
+ 1302,
+ "WJ08-XS-Orange"
+ ],
+ [
+ 1303,
+ "WJ08-XS-Purple"
+ ],
+ [
+ 1304,
+ "WJ08-S-Gray"
+ ],
+ [
+ 1305,
+ "WJ08-S-Orange"
+ ],
+ [
+ 1306,
+ "WJ08-S-Purple"
+ ],
+ [
+ 1307,
+ "WJ08-M-Gray"
+ ],
+ [
+ 1308,
+ "WJ08-M-Orange"
+ ],
+ [
+ 1309,
+ "WJ08-M-Purple"
+ ],
+ [
+ 1310,
+ "WJ08-L-Gray"
+ ],
+ [
+ 1311,
+ "WJ08-L-Orange"
+ ],
+ [
+ 1312,
+ "WJ08-L-Purple"
+ ],
+ [
+ 1313,
+ "WJ08-XL-Gray"
+ ],
+ [
+ 1314,
+ "WJ08-XL-Orange"
+ ],
+ [
+ 1315,
+ "WJ08-XL-Purple"
+ ],
+ [
+ 1317,
+ "WJ09-XS-Blue"
+ ],
+ [
+ 1318,
+ "WJ09-XS-Gray"
+ ],
+ [
+ 1319,
+ "WJ09-XS-Green"
+ ],
+ [
+ 1320,
+ "WJ09-S-Blue"
+ ],
+ [
+ 1321,
+ "WJ09-S-Gray"
+ ],
+ [
+ 1322,
+ "WJ09-S-Green"
+ ],
+ [
+ 1323,
+ "WJ09-M-Blue"
+ ],
+ [
+ 1324,
+ "WJ09-M-Gray"
+ ],
+ [
+ 1325,
+ "WJ09-M-Green"
+ ],
+ [
+ 1326,
+ "WJ09-L-Blue"
+ ],
+ [
+ 1327,
+ "WJ09-L-Gray"
+ ],
+ [
+ 1328,
+ "WJ09-L-Green"
+ ],
+ [
+ 1329,
+ "WJ09-XL-Blue"
+ ],
+ [
+ 1330,
+ "WJ09-XL-Gray"
+ ],
+ [
+ 1331,
+ "WJ09-XL-Green"
+ ],
+ [
+ 1333,
+ "WJ10-XS-Black"
+ ],
+ [
+ 1334,
+ "WJ10-XS-Orange"
+ ],
+ [
+ 1335,
+ "WJ10-XS-Yellow"
+ ],
+ [
+ 1336,
+ "WJ10-S-Black"
+ ],
+ [
+ 1337,
+ "WJ10-S-Orange"
+ ],
+ [
+ 1338,
+ "WJ10-S-Yellow"
+ ],
+ [
+ 1339,
+ "WJ10-M-Black"
+ ],
+ [
+ 1340,
+ "WJ10-M-Orange"
+ ],
+ [
+ 1341,
+ "WJ10-M-Yellow"
+ ],
+ [
+ 1342,
+ "WJ10-L-Black"
+ ],
+ [
+ 1343,
+ "WJ10-L-Orange"
+ ],
+ [
+ 1344,
+ "WJ10-L-Yellow"
+ ],
+ [
+ 1345,
+ "WJ10-XL-Black"
+ ],
+ [
+ 1346,
+ "WJ10-XL-Orange"
+ ],
+ [
+ 1347,
+ "WJ10-XL-Yellow"
+ ],
+ [
+ 1349,
+ "WJ11-XS-Black"
+ ],
+ [
+ 1350,
+ "WJ11-XS-Blue"
+ ],
+ [
+ 1351,
+ "WJ11-XS-Orange"
+ ],
+ [
+ 1352,
+ "WJ11-S-Black"
+ ],
+ [
+ 1353,
+ "WJ11-S-Blue"
+ ],
+ [
+ 1354,
+ "WJ11-S-Orange"
+ ],
+ [
+ 1355,
+ "WJ11-M-Black"
+ ],
+ [
+ 1356,
+ "WJ11-M-Blue"
+ ],
+ [
+ 1357,
+ "WJ11-M-Orange"
+ ],
+ [
+ 1358,
+ "WJ11-L-Black"
+ ],
+ [
+ 1359,
+ "WJ11-L-Blue"
+ ],
+ [
+ 1360,
+ "WJ11-L-Orange"
+ ],
+ [
+ 1361,
+ "WJ11-XL-Black"
+ ],
+ [
+ 1362,
+ "WJ11-XL-Blue"
+ ],
+ [
+ 1363,
+ "WJ11-XL-Orange"
+ ],
+ [
+ 1365,
+ "WJ06-XS-Blue"
+ ],
+ [
+ 1366,
+ "WJ06-XS-Green"
+ ],
+ [
+ 1367,
+ "WJ06-XS-Purple"
+ ],
+ [
+ 1368,
+ "WJ06-S-Blue"
+ ],
+ [
+ 1369,
+ "WJ06-S-Green"
+ ],
+ [
+ 1370,
+ "WJ06-S-Purple"
+ ],
+ [
+ 1371,
+ "WJ06-M-Blue"
+ ],
+ [
+ 1372,
+ "WJ06-M-Green"
+ ],
+ [
+ 1373,
+ "WJ06-M-Purple"
+ ],
+ [
+ 1374,
+ "WJ06-L-Blue"
+ ],
+ [
+ 1375,
+ "WJ06-L-Green"
+ ],
+ [
+ 1376,
+ "WJ06-L-Purple"
+ ],
+ [
+ 1377,
+ "WJ06-XL-Blue"
+ ],
+ [
+ 1378,
+ "WJ06-XL-Green"
+ ],
+ [
+ 1379,
+ "WJ06-XL-Purple"
+ ],
+ [
+ 1381,
+ "WJ12-XS-Black"
+ ],
+ [
+ 1382,
+ "WJ12-XS-Blue"
+ ],
+ [
+ 1383,
+ "WJ12-XS-Purple"
+ ],
+ [
+ 1384,
+ "WJ12-S-Black"
+ ],
+ [
+ 1385,
+ "WJ12-S-Blue"
+ ],
+ [
+ 1386,
+ "WJ12-S-Purple"
+ ],
+ [
+ 1387,
+ "WJ12-M-Black"
+ ],
+ [
+ 1388,
+ "WJ12-M-Blue"
+ ],
+ [
+ 1389,
+ "WJ12-M-Purple"
+ ],
+ [
+ 1390,
+ "WJ12-L-Black"
+ ],
+ [
+ 1391,
+ "WJ12-L-Blue"
+ ],
+ [
+ 1392,
+ "WJ12-L-Purple"
+ ],
+ [
+ 1393,
+ "WJ12-XL-Black"
+ ],
+ [
+ 1394,
+ "WJ12-XL-Blue"
+ ],
+ [
+ 1395,
+ "WJ12-XL-Purple"
+ ],
+ [
+ 1397,
+ "WS02-XS-Blue"
+ ],
+ [
+ 1398,
+ "WS02-XS-Green"
+ ],
+ [
+ 1399,
+ "WS02-XS-Red"
+ ],
+ [
+ 1400,
+ "WS02-S-Blue"
+ ],
+ [
+ 1401,
+ "WS02-S-Green"
+ ],
+ [
+ 1402,
+ "WS02-S-Red"
+ ],
+ [
+ 1403,
+ "WS02-M-Blue"
+ ],
+ [
+ 1404,
+ "WS02-M-Green"
+ ],
+ [
+ 1405,
+ "WS02-M-Red"
+ ],
+ [
+ 1406,
+ "WS02-L-Blue"
+ ],
+ [
+ 1407,
+ "WS02-L-Green"
+ ],
+ [
+ 1408,
+ "WS02-L-Red"
+ ],
+ [
+ 1409,
+ "WS02-XL-Blue"
+ ],
+ [
+ 1410,
+ "WS02-XL-Green"
+ ],
+ [
+ 1411,
+ "WS02-XL-Red"
+ ],
+ [
+ 1413,
+ "WS03-XS-Blue"
+ ],
+ [
+ 1414,
+ "WS03-XS-Green"
+ ],
+ [
+ 1415,
+ "WS03-XS-Red"
+ ],
+ [
+ 1416,
+ "WS03-S-Blue"
+ ],
+ [
+ 1417,
+ "WS03-S-Green"
+ ],
+ [
+ 1418,
+ "WS03-S-Red"
+ ],
+ [
+ 1419,
+ "WS03-M-Blue"
+ ],
+ [
+ 1420,
+ "WS03-M-Green"
+ ],
+ [
+ 1421,
+ "WS03-M-Red"
+ ],
+ [
+ 1422,
+ "WS03-L-Blue"
+ ],
+ [
+ 1423,
+ "WS03-L-Green"
+ ],
+ [
+ 1424,
+ "WS03-L-Red"
+ ],
+ [
+ 1425,
+ "WS03-XL-Blue"
+ ],
+ [
+ 1426,
+ "WS03-XL-Green"
+ ],
+ [
+ 1427,
+ "WS03-XL-Red"
+ ],
+ [
+ 1429,
+ "WS04-XS-Blue"
+ ],
+ [
+ 1430,
+ "WS04-XS-Green"
+ ],
+ [
+ 1431,
+ "WS04-XS-Red"
+ ],
+ [
+ 1432,
+ "WS04-S-Blue"
+ ],
+ [
+ 1433,
+ "WS04-S-Green"
+ ],
+ [
+ 1434,
+ "WS04-S-Red"
+ ],
+ [
+ 1435,
+ "WS04-M-Blue"
+ ],
+ [
+ 1436,
+ "WS04-M-Green"
+ ],
+ [
+ 1437,
+ "WS04-M-Red"
+ ],
+ [
+ 1438,
+ "WS04-L-Blue"
+ ],
+ [
+ 1439,
+ "WS04-L-Green"
+ ],
+ [
+ 1440,
+ "WS04-L-Red"
+ ],
+ [
+ 1441,
+ "WS04-XL-Blue"
+ ],
+ [
+ 1442,
+ "WS04-XL-Green"
+ ],
+ [
+ 1443,
+ "WS04-XL-Red"
+ ],
+ [
+ 1445,
+ "WS06-XS-Gray"
+ ],
+ [
+ 1446,
+ "WS06-XS-Purple"
+ ],
+ [
+ 1447,
+ "WS06-XS-Red"
+ ],
+ [
+ 1448,
+ "WS06-S-Gray"
+ ],
+ [
+ 1449,
+ "WS06-S-Purple"
+ ],
+ [
+ 1450,
+ "WS06-S-Red"
+ ],
+ [
+ 1451,
+ "WS06-M-Gray"
+ ],
+ [
+ 1452,
+ "WS06-M-Purple"
+ ],
+ [
+ 1453,
+ "WS06-M-Red"
+ ],
+ [
+ 1454,
+ "WS06-L-Gray"
+ ],
+ [
+ 1455,
+ "WS06-L-Purple"
+ ],
+ [
+ 1456,
+ "WS06-L-Red"
+ ],
+ [
+ 1457,
+ "WS06-XL-Gray"
+ ],
+ [
+ 1458,
+ "WS06-XL-Purple"
+ ],
+ [
+ 1459,
+ "WS06-XL-Red"
+ ],
+ [
+ 1461,
+ "WS07-XS-Black"
+ ],
+ [
+ 1462,
+ "WS07-XS-White"
+ ],
+ [
+ 1463,
+ "WS07-XS-Yellow"
+ ],
+ [
+ 1464,
+ "WS07-S-Black"
+ ],
+ [
+ 1465,
+ "WS07-S-White"
+ ],
+ [
+ 1466,
+ "WS07-S-Yellow"
+ ],
+ [
+ 1467,
+ "WS07-M-Black"
+ ],
+ [
+ 1468,
+ "WS07-M-White"
+ ],
+ [
+ 1469,
+ "WS07-M-Yellow"
+ ],
+ [
+ 1470,
+ "WS07-L-Black"
+ ],
+ [
+ 1471,
+ "WS07-L-White"
+ ],
+ [
+ 1472,
+ "WS07-L-Yellow"
+ ],
+ [
+ 1473,
+ "WS07-XL-Black"
+ ],
+ [
+ 1474,
+ "WS07-XL-White"
+ ],
+ [
+ 1475,
+ "WS07-XL-Yellow"
+ ],
+ [
+ 1477,
+ "WS08-XS-Black"
+ ],
+ [
+ 1478,
+ "WS08-XS-Blue"
+ ],
+ [
+ 1479,
+ "WS08-XS-Red"
+ ],
+ [
+ 1480,
+ "WS08-S-Black"
+ ],
+ [
+ 1481,
+ "WS08-S-Blue"
+ ],
+ [
+ 1482,
+ "WS08-S-Red"
+ ],
+ [
+ 1483,
+ "WS08-M-Black"
+ ],
+ [
+ 1484,
+ "WS08-M-Blue"
+ ],
+ [
+ 1485,
+ "WS08-M-Red"
+ ],
+ [
+ 1486,
+ "WS08-L-Black"
+ ],
+ [
+ 1487,
+ "WS08-L-Blue"
+ ],
+ [
+ 1488,
+ "WS08-L-Red"
+ ],
+ [
+ 1489,
+ "WS08-XL-Black"
+ ],
+ [
+ 1490,
+ "WS08-XL-Blue"
+ ],
+ [
+ 1491,
+ "WS08-XL-Red"
+ ],
+ [
+ 1493,
+ "WS09-XS-Blue"
+ ],
+ [
+ 1494,
+ "WS09-XS-Red"
+ ],
+ [
+ 1495,
+ "WS09-XS-White"
+ ],
+ [
+ 1496,
+ "WS09-S-Blue"
+ ],
+ [
+ 1497,
+ "WS09-S-Red"
+ ],
+ [
+ 1498,
+ "WS09-S-White"
+ ],
+ [
+ 1499,
+ "WS09-M-Blue"
+ ],
+ [
+ 1500,
+ "WS09-M-Red"
+ ],
+ [
+ 1501,
+ "WS09-M-White"
+ ],
+ [
+ 1502,
+ "WS09-L-Blue"
+ ],
+ [
+ 1503,
+ "WS09-L-Red"
+ ],
+ [
+ 1504,
+ "WS09-L-White"
+ ],
+ [
+ 1505,
+ "WS09-XL-Blue"
+ ],
+ [
+ 1506,
+ "WS09-XL-Red"
+ ],
+ [
+ 1507,
+ "WS09-XL-White"
+ ],
+ [
+ 1509,
+ "WS10-XS-Green"
+ ],
+ [
+ 1510,
+ "WS10-XS-Red"
+ ],
+ [
+ 1511,
+ "WS10-XS-Yellow"
+ ],
+ [
+ 1512,
+ "WS10-S-Green"
+ ],
+ [
+ 1513,
+ "WS10-S-Red"
+ ],
+ [
+ 1514,
+ "WS10-S-Yellow"
+ ],
+ [
+ 1515,
+ "WS10-M-Green"
+ ],
+ [
+ 1516,
+ "WS10-M-Red"
+ ],
+ [
+ 1517,
+ "WS10-M-Yellow"
+ ],
+ [
+ 1518,
+ "WS10-L-Green"
+ ],
+ [
+ 1519,
+ "WS10-L-Red"
+ ],
+ [
+ 1520,
+ "WS10-L-Yellow"
+ ],
+ [
+ 1521,
+ "WS10-XL-Green"
+ ],
+ [
+ 1522,
+ "WS10-XL-Red"
+ ],
+ [
+ 1523,
+ "WS10-XL-Yellow"
+ ],
+ [
+ 1525,
+ "WS11-XS-Green"
+ ],
+ [
+ 1526,
+ "WS11-XS-Orange"
+ ],
+ [
+ 1527,
+ "WS11-XS-Yellow"
+ ],
+ [
+ 1528,
+ "WS11-S-Green"
+ ],
+ [
+ 1529,
+ "WS11-S-Orange"
+ ],
+ [
+ 1530,
+ "WS11-S-Yellow"
+ ],
+ [
+ 1531,
+ "WS11-M-Green"
+ ],
+ [
+ 1532,
+ "WS11-M-Orange"
+ ],
+ [
+ 1533,
+ "WS11-M-Yellow"
+ ],
+ [
+ 1534,
+ "WS11-L-Green"
+ ],
+ [
+ 1535,
+ "WS11-L-Orange"
+ ],
+ [
+ 1536,
+ "WS11-L-Yellow"
+ ],
+ [
+ 1537,
+ "WS11-XL-Green"
+ ],
+ [
+ 1538,
+ "WS11-XL-Orange"
+ ],
+ [
+ 1539,
+ "WS11-XL-Yellow"
+ ],
+ [
+ 1541,
+ "WS12-XS-Blue"
+ ],
+ [
+ 1542,
+ "WS12-XS-Orange"
+ ],
+ [
+ 1543,
+ "WS12-XS-Purple"
+ ],
+ [
+ 1544,
+ "WS12-S-Blue"
+ ],
+ [
+ 1545,
+ "WS12-S-Orange"
+ ],
+ [
+ 1546,
+ "WS12-S-Purple"
+ ],
+ [
+ 1547,
+ "WS12-M-Blue"
+ ],
+ [
+ 1548,
+ "WS12-M-Orange"
+ ],
+ [
+ 1549,
+ "WS12-M-Purple"
+ ],
+ [
+ 1550,
+ "WS12-L-Blue"
+ ],
+ [
+ 1551,
+ "WS12-L-Orange"
+ ],
+ [
+ 1552,
+ "WS12-L-Purple"
+ ],
+ [
+ 1553,
+ "WS12-XL-Blue"
+ ],
+ [
+ 1554,
+ "WS12-XL-Orange"
+ ],
+ [
+ 1555,
+ "WS12-XL-Purple"
+ ],
+ [
+ 1557,
+ "WS01-XS-Black"
+ ],
+ [
+ 1558,
+ "WS01-XS-Green"
+ ],
+ [
+ 1559,
+ "WS01-XS-Yellow"
+ ],
+ [
+ 1560,
+ "WS01-S-Black"
+ ],
+ [
+ 1561,
+ "WS01-S-Green"
+ ],
+ [
+ 1562,
+ "WS01-S-Yellow"
+ ],
+ [
+ 1563,
+ "WS01-M-Black"
+ ],
+ [
+ 1564,
+ "WS01-M-Green"
+ ],
+ [
+ 1565,
+ "WS01-M-Yellow"
+ ],
+ [
+ 1566,
+ "WS01-L-Black"
+ ],
+ [
+ 1567,
+ "WS01-L-Green"
+ ],
+ [
+ 1568,
+ "WS01-L-Yellow"
+ ],
+ [
+ 1569,
+ "WS01-XL-Black"
+ ],
+ [
+ 1570,
+ "WS01-XL-Green"
+ ],
+ [
+ 1571,
+ "WS01-XL-Yellow"
+ ],
+ [
+ 1573,
+ "WS05-XS-Black"
+ ],
+ [
+ 1574,
+ "WS05-XS-Orange"
+ ],
+ [
+ 1575,
+ "WS05-XS-Yellow"
+ ],
+ [
+ 1576,
+ "WS05-S-Black"
+ ],
+ [
+ 1577,
+ "WS05-S-Orange"
+ ],
+ [
+ 1578,
+ "WS05-S-Yellow"
+ ],
+ [
+ 1579,
+ "WS05-M-Black"
+ ],
+ [
+ 1580,
+ "WS05-M-Orange"
+ ],
+ [
+ 1581,
+ "WS05-M-Yellow"
+ ],
+ [
+ 1582,
+ "WS05-L-Black"
+ ],
+ [
+ 1583,
+ "WS05-L-Orange"
+ ],
+ [
+ 1584,
+ "WS05-L-Yellow"
+ ],
+ [
+ 1585,
+ "WS05-XL-Black"
+ ],
+ [
+ 1586,
+ "WS05-XL-Orange"
+ ],
+ [
+ 1587,
+ "WS05-XL-Yellow"
+ ],
+ [
+ 1589,
+ "WB01-XS-Black"
+ ],
+ [
+ 1590,
+ "WB01-XS-Gray"
+ ],
+ [
+ 1591,
+ "WB01-XS-Purple"
+ ],
+ [
+ 1592,
+ "WB01-S-Black"
+ ],
+ [
+ 1593,
+ "WB01-S-Gray"
+ ],
+ [
+ 1594,
+ "WB01-S-Purple"
+ ],
+ [
+ 1595,
+ "WB01-M-Black"
+ ],
+ [
+ 1596,
+ "WB01-M-Gray"
+ ],
+ [
+ 1597,
+ "WB01-M-Purple"
+ ],
+ [
+ 1598,
+ "WB01-L-Black"
+ ],
+ [
+ 1599,
+ "WB01-L-Gray"
+ ],
+ [
+ 1600,
+ "WB01-L-Purple"
+ ],
+ [
+ 1601,
+ "WB01-XL-Black"
+ ],
+ [
+ 1602,
+ "WB01-XL-Gray"
+ ],
+ [
+ 1603,
+ "WB01-XL-Purple"
+ ],
+ [
+ 1605,
+ "WB02-XS-Blue"
+ ],
+ [
+ 1606,
+ "WB02-XS-Orange"
+ ],
+ [
+ 1607,
+ "WB02-XS-Yellow"
+ ],
+ [
+ 1608,
+ "WB02-S-Blue"
+ ],
+ [
+ 1609,
+ "WB02-S-Orange"
+ ],
+ [
+ 1610,
+ "WB02-S-Yellow"
+ ],
+ [
+ 1611,
+ "WB02-M-Blue"
+ ],
+ [
+ 1612,
+ "WB02-M-Orange"
+ ],
+ [
+ 1613,
+ "WB02-M-Yellow"
+ ],
+ [
+ 1614,
+ "WB02-L-Blue"
+ ],
+ [
+ 1615,
+ "WB02-L-Orange"
+ ],
+ [
+ 1616,
+ "WB02-L-Yellow"
+ ],
+ [
+ 1617,
+ "WB02-XL-Blue"
+ ],
+ [
+ 1618,
+ "WB02-XL-Orange"
+ ],
+ [
+ 1619,
+ "WB02-XL-Yellow"
+ ],
+ [
+ 1621,
+ "WB03-XS-Green"
+ ],
+ [
+ 1622,
+ "WB03-XS-Red"
+ ],
+ [
+ 1623,
+ "WB03-XS-Yellow"
+ ],
+ [
+ 1624,
+ "WB03-S-Green"
+ ],
+ [
+ 1625,
+ "WB03-S-Red"
+ ],
+ [
+ 1626,
+ "WB03-S-Yellow"
+ ],
+ [
+ 1627,
+ "WB03-M-Green"
+ ],
+ [
+ 1628,
+ "WB03-M-Red"
+ ],
+ [
+ 1629,
+ "WB03-M-Yellow"
+ ],
+ [
+ 1630,
+ "WB03-L-Green"
+ ],
+ [
+ 1631,
+ "WB03-L-Red"
+ ],
+ [
+ 1632,
+ "WB03-L-Yellow"
+ ],
+ [
+ 1633,
+ "WB03-XL-Green"
+ ],
+ [
+ 1634,
+ "WB03-XL-Red"
+ ],
+ [
+ 1635,
+ "WB03-XL-Yellow"
+ ],
+ [
+ 1637,
+ "WB04-XS-Blue"
+ ],
+ [
+ 1638,
+ "WB04-XS-Purple"
+ ],
+ [
+ 1639,
+ "WB04-XS-Yellow"
+ ],
+ [
+ 1640,
+ "WB04-S-Blue"
+ ],
+ [
+ 1641,
+ "WB04-S-Purple"
+ ],
+ [
+ 1642,
+ "WB04-S-Yellow"
+ ],
+ [
+ 1643,
+ "WB04-M-Blue"
+ ],
+ [
+ 1644,
+ "WB04-M-Purple"
+ ],
+ [
+ 1645,
+ "WB04-M-Yellow"
+ ],
+ [
+ 1646,
+ "WB04-L-Blue"
+ ],
+ [
+ 1647,
+ "WB04-L-Purple"
+ ],
+ [
+ 1648,
+ "WB04-L-Yellow"
+ ],
+ [
+ 1649,
+ "WB04-XL-Blue"
+ ],
+ [
+ 1650,
+ "WB04-XL-Purple"
+ ],
+ [
+ 1651,
+ "WB04-XL-Yellow"
+ ],
+ [
+ 1653,
+ "WB05-XS-Black"
+ ],
+ [
+ 1654,
+ "WB05-XS-Orange"
+ ],
+ [
+ 1655,
+ "WB05-XS-Purple"
+ ],
+ [
+ 1656,
+ "WB05-S-Black"
+ ],
+ [
+ 1657,
+ "WB05-S-Orange"
+ ],
+ [
+ 1658,
+ "WB05-S-Purple"
+ ],
+ [
+ 1659,
+ "WB05-M-Black"
+ ],
+ [
+ 1660,
+ "WB05-M-Orange"
+ ],
+ [
+ 1661,
+ "WB05-M-Purple"
+ ],
+ [
+ 1662,
+ "WB05-L-Black"
+ ],
+ [
+ 1663,
+ "WB05-L-Orange"
+ ],
+ [
+ 1664,
+ "WB05-L-Purple"
+ ],
+ [
+ 1665,
+ "WB05-XL-Black"
+ ],
+ [
+ 1666,
+ "WB05-XL-Orange"
+ ],
+ [
+ 1667,
+ "WB05-XL-Purple"
+ ],
+ [
+ 1669,
+ "WT01-XS-Black"
+ ],
+ [
+ 1670,
+ "WT01-XS-Blue"
+ ],
+ [
+ 1671,
+ "WT01-XS-Orange"
+ ],
+ [
+ 1672,
+ "WT01-S-Black"
+ ],
+ [
+ 1673,
+ "WT01-S-Blue"
+ ],
+ [
+ 1674,
+ "WT01-S-Orange"
+ ],
+ [
+ 1675,
+ "WT01-M-Black"
+ ],
+ [
+ 1676,
+ "WT01-M-Blue"
+ ],
+ [
+ 1677,
+ "WT01-M-Orange"
+ ],
+ [
+ 1678,
+ "WT01-L-Black"
+ ],
+ [
+ 1679,
+ "WT01-L-Blue"
+ ],
+ [
+ 1680,
+ "WT01-L-Orange"
+ ],
+ [
+ 1681,
+ "WT01-XL-Black"
+ ],
+ [
+ 1682,
+ "WT01-XL-Blue"
+ ],
+ [
+ 1683,
+ "WT01-XL-Orange"
+ ],
+ [
+ 1685,
+ "WT02-XS-Green"
+ ],
+ [
+ 1686,
+ "WT02-XS-Orange"
+ ],
+ [
+ 1687,
+ "WT02-XS-Yellow"
+ ],
+ [
+ 1688,
+ "WT02-S-Green"
+ ],
+ [
+ 1689,
+ "WT02-S-Orange"
+ ],
+ [
+ 1690,
+ "WT02-S-Yellow"
+ ],
+ [
+ 1691,
+ "WT02-M-Green"
+ ],
+ [
+ 1692,
+ "WT02-M-Orange"
+ ],
+ [
+ 1693,
+ "WT02-M-Yellow"
+ ],
+ [
+ 1694,
+ "WT02-L-Green"
+ ],
+ [
+ 1695,
+ "WT02-L-Orange"
+ ],
+ [
+ 1696,
+ "WT02-L-Yellow"
+ ],
+ [
+ 1697,
+ "WT02-XL-Green"
+ ],
+ [
+ 1698,
+ "WT02-XL-Orange"
+ ],
+ [
+ 1699,
+ "WT02-XL-Yellow"
+ ],
+ [
+ 1701,
+ "WT03-XS-Orange"
+ ],
+ [
+ 1702,
+ "WT03-XS-Purple"
+ ],
+ [
+ 1703,
+ "WT03-XS-Red"
+ ],
+ [
+ 1704,
+ "WT03-S-Orange"
+ ],
+ [
+ 1705,
+ "WT03-S-Purple"
+ ],
+ [
+ 1706,
+ "WT03-S-Red"
+ ],
+ [
+ 1707,
+ "WT03-M-Orange"
+ ],
+ [
+ 1708,
+ "WT03-M-Purple"
+ ],
+ [
+ 1709,
+ "WT03-M-Red"
+ ],
+ [
+ 1710,
+ "WT03-L-Orange"
+ ],
+ [
+ 1711,
+ "WT03-L-Purple"
+ ],
+ [
+ 1712,
+ "WT03-L-Red"
+ ],
+ [
+ 1713,
+ "WT03-XL-Orange"
+ ],
+ [
+ 1714,
+ "WT03-XL-Purple"
+ ],
+ [
+ 1715,
+ "WT03-XL-Red"
+ ],
+ [
+ 1717,
+ "WT04-XS-Blue"
+ ],
+ [
+ 1718,
+ "WT04-XS-Purple"
+ ],
+ [
+ 1719,
+ "WT04-XS-Red"
+ ],
+ [
+ 1720,
+ "WT04-S-Blue"
+ ],
+ [
+ 1721,
+ "WT04-S-Purple"
+ ],
+ [
+ 1722,
+ "WT04-S-Red"
+ ],
+ [
+ 1723,
+ "WT04-M-Blue"
+ ],
+ [
+ 1724,
+ "WT04-M-Purple"
+ ],
+ [
+ 1725,
+ "WT04-M-Red"
+ ],
+ [
+ 1726,
+ "WT04-L-Blue"
+ ],
+ [
+ 1727,
+ "WT04-L-Purple"
+ ],
+ [
+ 1728,
+ "WT04-L-Red"
+ ],
+ [
+ 1729,
+ "WT04-XL-Blue"
+ ],
+ [
+ 1730,
+ "WT04-XL-Purple"
+ ],
+ [
+ 1731,
+ "WT04-XL-Red"
+ ],
+ [
+ 1733,
+ "WT05-XS-Orange"
+ ],
+ [
+ 1734,
+ "WT05-XS-Purple"
+ ],
+ [
+ 1735,
+ "WT05-XS-White"
+ ],
+ [
+ 1736,
+ "WT05-S-Orange"
+ ],
+ [
+ 1737,
+ "WT05-S-Purple"
+ ],
+ [
+ 1738,
+ "WT05-S-White"
+ ],
+ [
+ 1739,
+ "WT05-M-Orange"
+ ],
+ [
+ 1740,
+ "WT05-M-Purple"
+ ],
+ [
+ 1741,
+ "WT05-M-White"
+ ],
+ [
+ 1742,
+ "WT05-L-Orange"
+ ],
+ [
+ 1743,
+ "WT05-L-Purple"
+ ],
+ [
+ 1744,
+ "WT05-L-White"
+ ],
+ [
+ 1745,
+ "WT05-XL-Orange"
+ ],
+ [
+ 1746,
+ "WT05-XL-Purple"
+ ],
+ [
+ 1747,
+ "WT05-XL-White"
+ ],
+ [
+ 1749,
+ "WT06-XS-Blue"
+ ],
+ [
+ 1750,
+ "WT06-XS-Red"
+ ],
+ [
+ 1751,
+ "WT06-XS-Yellow"
+ ],
+ [
+ 1752,
+ "WT06-S-Blue"
+ ],
+ [
+ 1753,
+ "WT06-S-Red"
+ ],
+ [
+ 1754,
+ "WT06-S-Yellow"
+ ],
+ [
+ 1755,
+ "WT06-M-Blue"
+ ],
+ [
+ 1756,
+ "WT06-M-Red"
+ ],
+ [
+ 1757,
+ "WT06-M-Yellow"
+ ],
+ [
+ 1758,
+ "WT06-L-Blue"
+ ],
+ [
+ 1759,
+ "WT06-L-Red"
+ ],
+ [
+ 1760,
+ "WT06-L-Yellow"
+ ],
+ [
+ 1761,
+ "WT06-XL-Blue"
+ ],
+ [
+ 1762,
+ "WT06-XL-Red"
+ ],
+ [
+ 1763,
+ "WT06-XL-Yellow"
+ ],
+ [
+ 1765,
+ "WT07-XS-Green"
+ ],
+ [
+ 1766,
+ "WT07-XS-White"
+ ],
+ [
+ 1767,
+ "WT07-XS-Yellow"
+ ],
+ [
+ 1768,
+ "WT07-S-Green"
+ ],
+ [
+ 1769,
+ "WT07-S-White"
+ ],
+ [
+ 1770,
+ "WT07-S-Yellow"
+ ],
+ [
+ 1771,
+ "WT07-M-Green"
+ ],
+ [
+ 1772,
+ "WT07-M-White"
+ ],
+ [
+ 1773,
+ "WT07-M-Yellow"
+ ],
+ [
+ 1774,
+ "WT07-L-Green"
+ ],
+ [
+ 1775,
+ "WT07-L-White"
+ ],
+ [
+ 1776,
+ "WT07-L-Yellow"
+ ],
+ [
+ 1777,
+ "WT07-XL-Green"
+ ],
+ [
+ 1778,
+ "WT07-XL-White"
+ ],
+ [
+ 1779,
+ "WT07-XL-Yellow"
+ ],
+ [
+ 1781,
+ "WT08-XS-Black"
+ ],
+ [
+ 1782,
+ "WT08-XS-Purple"
+ ],
+ [
+ 1783,
+ "WT08-XS-Yellow"
+ ],
+ [
+ 1784,
+ "WT08-S-Black"
+ ],
+ [
+ 1785,
+ "WT08-S-Purple"
+ ],
+ [
+ 1786,
+ "WT08-S-Yellow"
+ ],
+ [
+ 1787,
+ "WT08-M-Black"
+ ],
+ [
+ 1788,
+ "WT08-M-Purple"
+ ],
+ [
+ 1789,
+ "WT08-M-Yellow"
+ ],
+ [
+ 1790,
+ "WT08-L-Black"
+ ],
+ [
+ 1791,
+ "WT08-L-Purple"
+ ],
+ [
+ 1792,
+ "WT08-L-Yellow"
+ ],
+ [
+ 1793,
+ "WT08-XL-Black"
+ ],
+ [
+ 1794,
+ "WT08-XL-Purple"
+ ],
+ [
+ 1795,
+ "WT08-XL-Yellow"
+ ],
+ [
+ 1797,
+ "WT09-XS-Purple"
+ ],
+ [
+ 1798,
+ "WT09-XS-White"
+ ],
+ [
+ 1799,
+ "WT09-XS-Yellow"
+ ],
+ [
+ 1800,
+ "WT09-S-Purple"
+ ],
+ [
+ 1801,
+ "WT09-S-White"
+ ],
+ [
+ 1802,
+ "WT09-S-Yellow"
+ ],
+ [
+ 1803,
+ "WT09-M-Purple"
+ ],
+ [
+ 1804,
+ "WT09-M-White"
+ ],
+ [
+ 1805,
+ "WT09-M-Yellow"
+ ],
+ [
+ 1806,
+ "WT09-L-Purple"
+ ],
+ [
+ 1807,
+ "WT09-L-White"
+ ],
+ [
+ 1808,
+ "WT09-L-Yellow"
+ ],
+ [
+ 1809,
+ "WT09-XL-Purple"
+ ],
+ [
+ 1810,
+ "WT09-XL-White"
+ ],
+ [
+ 1811,
+ "WT09-XL-Yellow"
+ ],
+ [
+ 1813,
+ "WP01-28-Black"
+ ],
+ [
+ 1814,
+ "WP01-28-Gray"
+ ],
+ [
+ 1815,
+ "WP01-28-White"
+ ],
+ [
+ 1816,
+ "WP01-29-Black"
+ ],
+ [
+ 1817,
+ "WP01-29-Gray"
+ ],
+ [
+ 1818,
+ "WP01-29-White"
+ ],
+ [
+ 1820,
+ "WP02-28-Blue"
+ ],
+ [
+ 1821,
+ "WP02-28-Purple"
+ ],
+ [
+ 1822,
+ "WP02-28-Red"
+ ],
+ [
+ 1823,
+ "WP02-29-Blue"
+ ],
+ [
+ 1824,
+ "WP02-29-Purple"
+ ],
+ [
+ 1825,
+ "WP02-29-Red"
+ ],
+ [
+ 1827,
+ "WP03-28-Black"
+ ],
+ [
+ 1828,
+ "WP03-28-Blue"
+ ],
+ [
+ 1829,
+ "WP03-28-Purple"
+ ],
+ [
+ 1830,
+ "WP03-29-Black"
+ ],
+ [
+ 1831,
+ "WP03-29-Blue"
+ ],
+ [
+ 1832,
+ "WP03-29-Purple"
+ ],
+ [
+ 1834,
+ "WP04-28-Black"
+ ],
+ [
+ 1835,
+ "WP04-28-Blue"
+ ],
+ [
+ 1836,
+ "WP04-28-White"
+ ],
+ [
+ 1837,
+ "WP04-29-Black"
+ ],
+ [
+ 1838,
+ "WP04-29-Blue"
+ ],
+ [
+ 1839,
+ "WP04-29-White"
+ ],
+ [
+ 1841,
+ "WP05-28-Blue"
+ ],
+ [
+ 1842,
+ "WP05-28-Gray"
+ ],
+ [
+ 1843,
+ "WP05-28-Red"
+ ],
+ [
+ 1844,
+ "WP05-29-Blue"
+ ],
+ [
+ 1845,
+ "WP05-29-Gray"
+ ],
+ [
+ 1846,
+ "WP05-29-Red"
+ ],
+ [
+ 1848,
+ "WP06-28-Black"
+ ],
+ [
+ 1849,
+ "WP06-28-Blue"
+ ],
+ [
+ 1850,
+ "WP06-28-Orange"
+ ],
+ [
+ 1851,
+ "WP06-29-Black"
+ ],
+ [
+ 1852,
+ "WP06-29-Blue"
+ ],
+ [
+ 1853,
+ "WP06-29-Orange"
+ ],
+ [
+ 1855,
+ "WP07-28-Black"
+ ],
+ [
+ 1856,
+ "WP07-28-Blue"
+ ],
+ [
+ 1857,
+ "WP07-28-Orange"
+ ],
+ [
+ 1858,
+ "WP07-29-Black"
+ ],
+ [
+ 1859,
+ "WP07-29-Blue"
+ ],
+ [
+ 1860,
+ "WP07-29-Orange"
+ ],
+ [
+ 1862,
+ "WP08-28-Black"
+ ],
+ [
+ 1863,
+ "WP08-28-Green"
+ ],
+ [
+ 1864,
+ "WP08-28-Red"
+ ],
+ [
+ 1865,
+ "WP08-29-Black"
+ ],
+ [
+ 1866,
+ "WP08-29-Green"
+ ],
+ [
+ 1867,
+ "WP08-29-Red"
+ ],
+ [
+ 1869,
+ "WP09-28-Black"
+ ],
+ [
+ 1870,
+ "WP09-28-Blue"
+ ],
+ [
+ 1871,
+ "WP09-28-Purple"
+ ],
+ [
+ 1872,
+ "WP09-29-Black"
+ ],
+ [
+ 1873,
+ "WP09-29-Blue"
+ ],
+ [
+ 1874,
+ "WP09-29-Purple"
+ ],
+ [
+ 1876,
+ "WP10-28-Black"
+ ],
+ [
+ 1877,
+ "WP10-28-Gray"
+ ],
+ [
+ 1878,
+ "WP10-28-White"
+ ],
+ [
+ 1879,
+ "WP10-29-Black"
+ ],
+ [
+ 1880,
+ "WP10-29-Gray"
+ ],
+ [
+ 1881,
+ "WP10-29-White"
+ ],
+ [
+ 1883,
+ "WP11-28-Blue"
+ ],
+ [
+ 1884,
+ "WP11-28-Green"
+ ],
+ [
+ 1885,
+ "WP11-28-Red"
+ ],
+ [
+ 1886,
+ "WP11-29-Blue"
+ ],
+ [
+ 1887,
+ "WP11-29-Green"
+ ],
+ [
+ 1888,
+ "WP11-29-Red"
+ ],
+ [
+ 1890,
+ "WP12-28-Blue"
+ ],
+ [
+ 1891,
+ "WP12-28-Gray"
+ ],
+ [
+ 1892,
+ "WP12-28-Green"
+ ],
+ [
+ 1893,
+ "WP12-29-Blue"
+ ],
+ [
+ 1894,
+ "WP12-29-Gray"
+ ],
+ [
+ 1895,
+ "WP12-29-Green"
+ ],
+ [
+ 1897,
+ "WP13-28-Blue"
+ ],
+ [
+ 1898,
+ "WP13-28-Green"
+ ],
+ [
+ 1899,
+ "WP13-28-Orange"
+ ],
+ [
+ 1900,
+ "WP13-29-Blue"
+ ],
+ [
+ 1901,
+ "WP13-29-Green"
+ ],
+ [
+ 1902,
+ "WP13-29-Orange"
+ ],
+ [
+ 1904,
+ "WSH01-28-Black"
+ ],
+ [
+ 1905,
+ "WSH01-28-Green"
+ ],
+ [
+ 1906,
+ "WSH01-28-Red"
+ ],
+ [
+ 1907,
+ "WSH01-29-Black"
+ ],
+ [
+ 1908,
+ "WSH01-29-Green"
+ ],
+ [
+ 1909,
+ "WSH01-29-Red"
+ ],
+ [
+ 1910,
+ "WSH01-30-Black"
+ ],
+ [
+ 1911,
+ "WSH01-30-Green"
+ ],
+ [
+ 1912,
+ "WSH01-30-Red"
+ ],
+ [
+ 1913,
+ "WSH01-31-Black"
+ ],
+ [
+ 1914,
+ "WSH01-31-Green"
+ ],
+ [
+ 1915,
+ "WSH01-31-Red"
+ ],
+ [
+ 1916,
+ "WSH01-32-Black"
+ ],
+ [
+ 1917,
+ "WSH01-32-Green"
+ ],
+ [
+ 1918,
+ "WSH01-32-Red"
+ ],
+ [
+ 1920,
+ "WSH02-28-Gray"
+ ],
+ [
+ 1921,
+ "WSH02-28-Orange"
+ ],
+ [
+ 1922,
+ "WSH02-28-Yellow"
+ ],
+ [
+ 1923,
+ "WSH02-29-Gray"
+ ],
+ [
+ 1924,
+ "WSH02-29-Orange"
+ ],
+ [
+ 1925,
+ "WSH02-29-Yellow"
+ ],
+ [
+ 1926,
+ "WSH02-30-Gray"
+ ],
+ [
+ 1927,
+ "WSH02-30-Orange"
+ ],
+ [
+ 1928,
+ "WSH02-30-Yellow"
+ ],
+ [
+ 1929,
+ "WSH02-31-Gray"
+ ],
+ [
+ 1930,
+ "WSH02-31-Orange"
+ ],
+ [
+ 1931,
+ "WSH02-31-Yellow"
+ ],
+ [
+ 1932,
+ "WSH02-32-Gray"
+ ],
+ [
+ 1933,
+ "WSH02-32-Orange"
+ ],
+ [
+ 1934,
+ "WSH02-32-Yellow"
+ ],
+ [
+ 1936,
+ "WSH03-28-Blue"
+ ],
+ [
+ 1937,
+ "WSH03-28-Gray"
+ ],
+ [
+ 1938,
+ "WSH03-28-Orange"
+ ],
+ [
+ 1939,
+ "WSH03-29-Blue"
+ ],
+ [
+ 1940,
+ "WSH03-29-Gray"
+ ],
+ [
+ 1941,
+ "WSH03-29-Orange"
+ ],
+ [
+ 1942,
+ "WSH03-30-Blue"
+ ],
+ [
+ 1943,
+ "WSH03-30-Gray"
+ ],
+ [
+ 1944,
+ "WSH03-30-Orange"
+ ],
+ [
+ 1945,
+ "WSH03-31-Blue"
+ ],
+ [
+ 1946,
+ "WSH03-31-Gray"
+ ],
+ [
+ 1947,
+ "WSH03-31-Orange"
+ ],
+ [
+ 1948,
+ "WSH03-32-Blue"
+ ],
+ [
+ 1949,
+ "WSH03-32-Gray"
+ ],
+ [
+ 1950,
+ "WSH03-32-Orange"
+ ],
+ [
+ 1952,
+ "WSH04-28-Black"
+ ],
+ [
+ 1953,
+ "WSH04-28-Green"
+ ],
+ [
+ 1954,
+ "WSH04-28-Orange"
+ ],
+ [
+ 1955,
+ "WSH04-29-Black"
+ ],
+ [
+ 1956,
+ "WSH04-29-Green"
+ ],
+ [
+ 1957,
+ "WSH04-29-Orange"
+ ],
+ [
+ 1958,
+ "WSH04-30-Black"
+ ],
+ [
+ 1959,
+ "WSH04-30-Green"
+ ],
+ [
+ 1960,
+ "WSH04-30-Orange"
+ ],
+ [
+ 1961,
+ "WSH04-31-Black"
+ ],
+ [
+ 1962,
+ "WSH04-31-Green"
+ ],
+ [
+ 1963,
+ "WSH04-31-Orange"
+ ],
+ [
+ 1964,
+ "WSH04-32-Black"
+ ],
+ [
+ 1965,
+ "WSH04-32-Green"
+ ],
+ [
+ 1966,
+ "WSH04-32-Orange"
+ ],
+ [
+ 1968,
+ "WSH05-28-Blue"
+ ],
+ [
+ 1969,
+ "WSH05-28-Purple"
+ ],
+ [
+ 1970,
+ "WSH05-28-Yellow"
+ ],
+ [
+ 1971,
+ "WSH05-29-Blue"
+ ],
+ [
+ 1972,
+ "WSH05-29-Purple"
+ ],
+ [
+ 1973,
+ "WSH05-29-Yellow"
+ ],
+ [
+ 1974,
+ "WSH05-30-Blue"
+ ],
+ [
+ 1975,
+ "WSH05-30-Purple"
+ ],
+ [
+ 1976,
+ "WSH05-30-Yellow"
+ ],
+ [
+ 1977,
+ "WSH05-31-Blue"
+ ],
+ [
+ 1978,
+ "WSH05-31-Purple"
+ ],
+ [
+ 1979,
+ "WSH05-31-Yellow"
+ ],
+ [
+ 1980,
+ "WSH05-32-Blue"
+ ],
+ [
+ 1981,
+ "WSH05-32-Purple"
+ ],
+ [
+ 1982,
+ "WSH05-32-Yellow"
+ ],
+ [
+ 1984,
+ "WSH06-28-Gray"
+ ],
+ [
+ 1985,
+ "WSH06-28-Orange"
+ ],
+ [
+ 1986,
+ "WSH06-28-Purple"
+ ],
+ [
+ 1987,
+ "WSH06-29-Gray"
+ ],
+ [
+ 1988,
+ "WSH06-29-Orange"
+ ],
+ [
+ 1989,
+ "WSH06-29-Purple"
+ ],
+ [
+ 1991,
+ "WSH07-28-Black"
+ ],
+ [
+ 1992,
+ "WSH07-28-Blue"
+ ],
+ [
+ 1993,
+ "WSH07-28-Purple"
+ ],
+ [
+ 1994,
+ "WSH07-29-Black"
+ ],
+ [
+ 1995,
+ "WSH07-29-Blue"
+ ],
+ [
+ 1996,
+ "WSH07-29-Purple"
+ ],
+ [
+ 1998,
+ "WSH08-28-Purple"
+ ],
+ [
+ 1999,
+ "WSH08-29-Purple"
+ ],
+ [
+ 2000,
+ "WSH08-30-Purple"
+ ],
+ [
+ 2001,
+ "WSH08-31-Purple"
+ ],
+ [
+ 2002,
+ "WSH08-32-Purple"
+ ],
+ [
+ 2004,
+ "WSH09-28-Gray"
+ ],
+ [
+ 2005,
+ "WSH09-28-Green"
+ ],
+ [
+ 2006,
+ "WSH09-28-White"
+ ],
+ [
+ 2007,
+ "WSH09-29-Gray"
+ ],
+ [
+ 2008,
+ "WSH09-29-Green"
+ ],
+ [
+ 2009,
+ "WSH09-29-White"
+ ],
+ [
+ 2011,
+ "WSH10-28-Black"
+ ],
+ [
+ 2012,
+ "WSH10-28-Orange"
+ ],
+ [
+ 2013,
+ "WSH10-28-White"
+ ],
+ [
+ 2014,
+ "WSH10-29-Black"
+ ],
+ [
+ 2015,
+ "WSH10-29-Orange"
+ ],
+ [
+ 2016,
+ "WSH10-29-White"
+ ],
+ [
+ 2018,
+ "WSH11-28-Blue"
+ ],
+ [
+ 2019,
+ "WSH11-28-Orange"
+ ],
+ [
+ 2020,
+ "WSH11-28-Red"
+ ],
+ [
+ 2021,
+ "WSH11-29-Blue"
+ ],
+ [
+ 2022,
+ "WSH11-29-Orange"
+ ],
+ [
+ 2023,
+ "WSH11-29-Red"
+ ],
+ [
+ 2025,
+ "WSH12-28-Green"
+ ],
+ [
+ 2026,
+ "WSH12-28-Purple"
+ ],
+ [
+ 2027,
+ "WSH12-28-Red"
+ ],
+ [
+ 2028,
+ "WSH12-29-Green"
+ ],
+ [
+ 2029,
+ "WSH12-29-Purple"
+ ],
+ [
+ 2030,
+ "WSH12-29-Red"
+ ],
+ [
+ 2031,
+ "WSH12-30-Green"
+ ],
+ [
+ 2032,
+ "WSH12-30-Purple"
+ ],
+ [
+ 2033,
+ "WSH12-30-Red"
+ ],
+ [
+ 2034,
+ "WSH12-31-Green"
+ ],
+ [
+ 2035,
+ "WSH12-31-Purple"
+ ],
+ [
+ 2036,
+ "WSH12-31-Red"
+ ],
+ [
+ 2037,
+ "WSH12-32-Green"
+ ],
+ [
+ 2038,
+ "WSH12-32-Purple"
+ ],
+ [
+ 2039,
+ "WSH12-32-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with order ID 146.",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 146;",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 18?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 18;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all shipments associated with order ID 300.",
+ "sql": "SELECT entity_id, store_id, total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "3",
+ "1",
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ 3,
+ 1,
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product ID 1492?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1492;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the name and email of the customer with the shipping address in city 'Miami Beach'.",
+ "sql": "SELECT customer_entity.firstname, customer_entity.lastname, customer_entity.email FROM customer_entity INNER JOIN customer_address_entity ON customer_entity.entity_id = customer_address_entity.parent_id WHERE customer_address_entity.city = 'Miami Beach';",
+ "answer": [
+ "Mary Martin",
+ "marym@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "Mary",
+ "Martin",
+ "marym@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'customer1@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer1@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 63?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 63;",
+ "answer": [
+ "james.baker@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "james.baker@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find shipments for order with ID 2.",
+ "sql": "SELECT entity_id, increment_id FROM sales_shipment WHERE order_id = 2;",
+ "answer": [
+ "2",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ 2,
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of results for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "List active websites.",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find all addresses associated with customer ID 2.",
+ "sql": "SELECT entity_id, street FROM customer_address_entity WHERE parent_id = 2;",
+ "answer": [
+ "123 Main Street"
+ ],
+ "sql_execute_result": [
+ [
+ 2,
+ "123 Main Street"
+ ]
+ ]
+ },
+ {
+ "question": "Get the popularity score for the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 1308?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1308 AND attribute_id = 73 AND store_id = 0;",
+ "answer": [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "How many units are in stock for the product with SKU 'Adrienne Trek Jacket-M-Orange'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1308;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with region ID 668?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 668;",
+ "answer": [
+ "Ais\u00e9n del General Carlos Iba\u00f1ez del Campo"
+ ],
+ "sql_execute_result": [
+ [
+ "Ais\u00e9n del General Carlos Iba\u00f1ez del Campo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status code 'pending'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending';",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for entity_type_id 3?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 3;",
+ "answer": [
+ "catalog_category"
+ ],
+ "sql_execute_result": [
+ [
+ "catalog_category"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer Alex Martin?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Alex' AND lastname = 'Martin';",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with code '3' and rating ID 3?",
+ "sql": "SELECT value FROM rating_option WHERE code = '3' AND rating_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address ID for customer with email 'james.baker@gmail.com'.",
+ "sql": "SELECT default_billing FROM customer_entity WHERE email = 'james.baker@gmail.com';",
+ "answer": [
+ "63"
+ ],
+ "sql_execute_result": [
+ [
+ 63
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in 'Default Store View'?",
+ "sql": "SELECT email FROM customer_entity WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the eav attribute option with option ID 159?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 159;",
+ "answer": [
+ "Terry"
+ ],
+ "sql_execute_result": [
+ [
+ "Terry"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest invoice.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating option position for option ID 19?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 19;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the customer with the default billing ID 20.",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE default_billing = 20;",
+ "answer": [
+ "Olivia",
+ "Lee"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia",
+ "Lee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with customer Robert Johnson?",
+ "sql": "SELECT store_id FROM customer_entity WHERE firstname = 'Robert' AND lastname = 'Johnson';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for creditmemo in the default store?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND store_id = 0;",
+ "answer": [
+ "sequence_creditmemo_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_creditmemo_0"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name of the region with code 'BAW' in Germany.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'BAW' AND country_id = 'DE';",
+ "answer": [
+ "Baden-W\u00fcrttemberg"
+ ],
+ "sql_execute_result": [
+ [
+ "Baden-W\u00fcrttemberg"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the review with ID 331?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 331;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for store ID 0 on 2022-08-26?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-08-26' AND store_id = 0;",
+ "answer": [
+ "211.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "211.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Who is the customer for creditmemo with increment ID '000000001'?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status for the order with increment ID '000000002'?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for orders on 2022-12-01 in store ID 1?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-12-01' AND store_id = 1;",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the creditmemo created on 2023-04-19?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE created_at = '2023-04-19 16:15:47';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Which region has the code 'VE-P' in Venezuela?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'VE-P' AND country_id = 'VE';",
+ "answer": [
+ "Portuguesa"
+ ],
+ "sql_execute_result": [
+ [
+ "Portuguesa"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percentage score for the rating vote with ID 6?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 6;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with the code 'vat_request_success'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'vat_request_success';",
+ "answer": [
+ "VAT number validation request success"
+ ],
+ "sql_execute_result": [
+ [
+ "VAT number validation request success"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the decimal attribute with attribute ID 77 for the product with entity ID 1491?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND entity_id = 1491;",
+ "answer": [
+ "32.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the product name stored in catalog_product_entity_varchar for entity ID 351?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 351 AND attribute_id = 73;",
+ "answer": [
+ "Mars HeatTech\u2122 Pullover-XS-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Mars HeatTech™ Pullover-XS-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sequence profile with profile ID 1 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many steps are defined in the sequence profile with meta ID 2?",
+ "sql": "SELECT step FROM sales_sequence_profile WHERE meta_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name associated with the SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute with the code 'children'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'children';",
+ "answer": [
+ "text"
+ ],
+ "sql_execute_result": [
+ [
+ "text"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered on 2023-04-28 for store ID 1?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-04-28' AND store_id = 1;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the customer with parent ID 69.",
+ "sql": "SELECT city FROM customer_address_entity WHERE parent_id = 69;",
+ "answer": [
+ "Salt Lake City"
+ ],
+ "sql_execute_result": [
+ [
+ "Salt Lake City"
+ ]
+ ]
+ },
+ {
+ "question": "What was the total income amount for orders on 2022-12-24 at store ID 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-12-24' AND store_id = 1;",
+ "answer": [
+ "230.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "230.1200"
+ ]
+ ]
+ },
+ {
+ "question": "List the payment method used for the order with parent ID 182.",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 182;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the region name for region ID 58.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 58;",
+ "answer": [
+ "Utah"
+ ],
+ "sql_execute_result": [
+ [
+ "Utah"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on 2023-04-28 in store with ID 1?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-04-28' AND store_id = 1 AND order_status = 'complete';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for completed orders on 2022-12-24?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-12-24' AND order_status = 'complete';",
+ "answer": [
+ "230.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "230.1200"
+ ],
+ [
+ "230.1200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders placed on 2023-01-09 for store ID 0?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-09' AND store_id = 0;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the last known address of the customer with the email 'customer5@example.com'?",
+ "sql": "SELECT city, street FROM customer_address_entity WHERE parent_id = 69;",
+ "answer": [
+ "Salt Lake City",
+ "50 W Broadway"
+ ],
+ "sql_execute_result": [
+ [
+ "Salt Lake City",
+ "50 W Broadway"
+ ]
+ ]
+ },
+ {
+ "question": "Check the stock quantity for product ID 2040.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'complete'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the text description for the product with entity ID 509.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 509;",
+ "answer": [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status ID 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes available in the database.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with option ID 190.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 190;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 1936?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1936;",
+ "answer": [
+ "For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.
\n• Dark heather gray rouched bike shorts.
• Fitted. Inseam: 2\".
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.
\n• Dark heather gray rouched bike shorts.
• Fitted. Inseam: 2\".
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Which order status has the label 'Pending Payment'?",
+ "sql": "SELECT status FROM sales_order_status WHERE label = 'Pending Payment';",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID associated with the option ID 5.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 5;",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 137
+ ]
+ ]
+ },
+ {
+ "question": "How many sort orders were found for attribute ID 144?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE attribute_id = 144;",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 2
+ ],
+ [
+ 4
+ ],
+ [
+ 6
+ ],
+ [
+ 8
+ ],
+ [
+ 10
+ ],
+ [
+ 1
+ ],
+ [
+ 3
+ ],
+ [
+ 5
+ ],
+ [
+ 7
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Leah Yoga Top-M-White' on 2022-10-22 across all stores?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Leah Yoga Top-M-White' AND period = '2022-10-22';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price for the shipment item with order item ID 1.",
+ "sql": "SELECT name AS product_name, price FROM sales_shipment_item WHERE order_item_id = 1;",
+ "answer": [
+ "Iris Workout Top",
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top",
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the code 'default'?",
+ "sql": "SELECT name FROM store WHERE code = 'default';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed for the product 'Sprite Yoga Strap 6 foot' on 2023-04-05 for store ID 1?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Yoga Strap 6 foot' AND period = '2023-04-05' AND store_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the shipment item named 'Eos V-Neck Hoodie'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "List the product names that were bestsellers on 2023-01-13 across all stores.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-01-13';",
+ "answer": [
+ "Orestes Yoga Pant -34-Green",
+ "Cobalt CoolTech™ Fitness Short-32-Red",
+ "Neve Studio Dance Jacket-XS-Orange",
+ "Iris Workout Top-L-Red",
+ "Layla Tee-XS-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with ID 1492 in the shipment items?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE product_id = 1492;",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the store ID 0?",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the invoice with entity ID 2?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with ID 264?",
+ "sql": "SELECT firstname, lastname, street, city, region, postcode, country_id FROM sales_order_address WHERE parent_id = 264 AND address_type = 'shipping';",
+ "answer": [
+ "Lucy Garcia",
+ "456 Santa Fe Drive",
+ "Denver",
+ "Colorado",
+ "80202",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "Lucy",
+ "Garcia",
+ "456 Santa Fe Drive",
+ "Denver",
+ "Colorado",
+ "80202",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Which product was the best seller in May 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-05-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Frankie Sweatshirt-XS-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Frankie Sweatshirt-XS-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for order ID 69?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE parent_id = 69;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "How much is the total amount ordered for payment entity ID 141?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 141;",
+ "answer": [
+ "167.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "167.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity invoiced for invoice ID 1?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with the shipping address entity ID 103.",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 103 AND address_type = 'shipping';",
+ "answer": [
+ "brian.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "brian.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for invoice ID 2?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the region ID 32?",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 32 LIMIT 1;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for product ID 1832 in the monthly bestsellers table.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1832 LIMIT 1;",
+ "answer": [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total tax amount for invoice ID 2?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 3?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 3;",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for product with SKU 'MSH04-36-Gray'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_daily WHERE product_id = 921;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer left the review titled 'Quite good'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Quite good';",
+ "answer": [
+ "Jane Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Smith"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has an ID of 691 and what is its price?",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_daily WHERE product_id = 691;",
+ "answer": [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ "22.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name where Jane Doe made purchases?",
+ "sql": "SELECT created_in FROM customer_grid_flat WHERE email = 'jane.doe@hotmail.com';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for order type on store 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews were submitted by the user with nickname 'Avelina'?",
+ "sql": "SELECT COUNT(*) FROM review_detail WHERE nickname = 'Avelina';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status for the product with SKU 'MSH01-32-Red'?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 883;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups available.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the website name associated with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state of orders with status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the type ID for the product with entity ID 244.",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 244;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of shipments processed.",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer group ID 2?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were created on '2023-04-19'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE DATE(created_at) = '2023-04-19';",
+ "answer": [
+ "240"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ],
+ [
+ "24-MB04"
+ ],
+ [
+ "24-MB03"
+ ],
+ [
+ "24-MB05"
+ ],
+ [
+ "24-MB06"
+ ],
+ [
+ "24-MB02"
+ ],
+ [
+ "24-UB02"
+ ],
+ [
+ "24-WB01"
+ ],
+ [
+ "24-WB02"
+ ],
+ [
+ "24-WB05"
+ ],
+ [
+ "24-WB06"
+ ],
+ [
+ "24-WB03"
+ ],
+ [
+ "24-WB07"
+ ],
+ [
+ "24-WB04"
+ ],
+ [
+ "24-UG06"
+ ],
+ [
+ "24-UG07"
+ ],
+ [
+ "24-UG04"
+ ],
+ [
+ "24-UG02"
+ ],
+ [
+ "24-UG05"
+ ],
+ [
+ "24-UG01"
+ ],
+ [
+ "24-WG084"
+ ],
+ [
+ "24-WG088"
+ ],
+ [
+ "24-UG03"
+ ],
+ [
+ "24-WG081-gray"
+ ],
+ [
+ "24-WG081-pink"
+ ],
+ [
+ "24-WG081-blue"
+ ],
+ [
+ "24-WG082-gray"
+ ],
+ [
+ "24-WG082-pink"
+ ],
+ [
+ "24-WG082-blue"
+ ],
+ [
+ "24-WG083-gray"
+ ],
+ [
+ "24-WG083-pink"
+ ],
+ [
+ "24-WG083-blue"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "24-WG087"
+ ],
+ [
+ "24-MG04"
+ ],
+ [
+ "24-MG01"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG05"
+ ],
+ [
+ "24-MG02"
+ ],
+ [
+ "24-WG09"
+ ],
+ [
+ "24-WG01"
+ ],
+ [
+ "24-WG03"
+ ],
+ [
+ "24-WG02"
+ ],
+ [
+ "24-WG080"
+ ],
+ [
+ "24-WG085_Group"
+ ],
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH02"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH05"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH06"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH08"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH09"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH10"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH11"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH12"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MH13"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ02"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ10"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ11"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ03"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS04"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS09"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS12"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS03"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS02"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS10"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS07"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MS08"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT01"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT02"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT04"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT05"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT06"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT09"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MT12"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP01"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP03"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP04"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP05"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP06"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP07"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP08"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP09"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP10"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP11"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MP12"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH01"
+ ],
+ [
+ "MSH02-32-Black"
+ ],
+ [
+ "MSH02-33-Black"
+ ],
+ [
+ "MSH02-34-Black"
+ ],
+ [
+ "MSH02-36-Black"
+ ],
+ [
+ "MSH02"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH04-32-Gray"
+ ],
+ [
+ "MSH04-32-Purple"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Gray"
+ ],
+ [
+ "MSH04-33-Purple"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Gray"
+ ],
+ [
+ "MSH04-34-Purple"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Gray"
+ ],
+ [
+ "MSH04-36-Purple"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MSH04"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH06"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH07"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH08"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH10"
+ ],
+ [
+ "MSH11-32-Black"
+ ],
+ [
+ "MSH11-32-Blue"
+ ],
+ [
+ "MSH11-32-Red"
+ ],
+ [
+ "MSH11-33-Black"
+ ],
+ [
+ "MSH11-33-Blue"
+ ],
+ [
+ "MSH11-33-Red"
+ ],
+ [
+ "MSH11-34-Black"
+ ],
+ [
+ "MSH11-34-Blue"
+ ],
+ [
+ "MSH11-34-Red"
+ ],
+ [
+ "MSH11-36-Black"
+ ],
+ [
+ "MSH11-36-Blue"
+ ],
+ [
+ "MSH11-36-Red"
+ ],
+ [
+ "MSH11"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "MSH12"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH03"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WB05"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP03"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP04"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP05"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP06"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP08"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP09"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP10"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP11"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WP13"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH01"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH04"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH06"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH09"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ],
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store code for the store named 'Admin'.",
+ "sql": "SELECT code FROM store WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the tax class ID for the 'Retailer' customer group.",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the top-selling product at store ID 1 on February 6, 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 AND period = '2022-02-06' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Erika Running Short-31-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Erika Running Short-31-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total of the invoice with increment ID '000000002'.",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings for entity ID 1.",
+ "sql": "SELECT rating_code FROM rating WHERE entity_id = 1 AND is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 106 for the product with entity ID 1492?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE attribute_id = 106 AND entity_id = 1492;",
+ "answer": [
+ "container2"
+ ],
+ "sql_execute_result": [
+ [
+ "container2"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'Retailer'?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the order associated with invoice entity ID 1.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position rating for the product named 'Sylvia Capri-28-Red' in store ID 0?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sylvia Capri-28-Red' AND store_id = 0;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute ID 124 for the product with entity ID 1578?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE attribute_id = 124 AND entity_id = 1578;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "0"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "What was the base shipping amount for the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_shipping_amount FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity_id 154?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 154;",
+ "answer": [
+ "MH07-L-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "MH07-L-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 1540 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1540;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the integer attribute with ID 115 for the product with entity ID 154?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 154 AND attribute_id = 115;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 819?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 819;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with ID 1.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "How much total quantity has been ordered for product with product_id 1363?",
+ "sql": "SELECT COALESCE(SUM(qty_ordered), 0) AS total_qty FROM sales_order_item WHERE product_id = 1363;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of product with entity_id 819 in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 819;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders for the customer with email 'john.lee@yahoo.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'john.lee@yahoo.com';",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the total sales amount for orders made in store with ID 1?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product_id 1540?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1540;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories does the category with entity_id 1 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 1;",
+ "answer": [
+ "39"
+ ],
+ "sql_execute_result": [
+ [
+ 39
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with order_id 300?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 300;",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are there in category with ID 13?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 13;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order with ID 69?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 69;",
+ "answer": [
+ "alexander.thomas@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered in order ID 39.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 39;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red' in the shipment?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "Which city does customer with address ID 39 live in?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 39;",
+ "answer": [
+ "Dallas"
+ ],
+ "sql_execute_result": [
+ [
+ "Dallas"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 83 visible in advanced search?",
+ "sql": "SELECT is_visible_in_advanced_search FROM catalog_eav_attribute WHERE attribute_id = 83;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount of order with ID 272?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 272;",
+ "answer": [
+ "82.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "82.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product description for product ID 1376?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1376 AND attribute_id = 75;",
+ "answer": [
+ "On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.
\n• Adjustable hood.• Fleece-lined, zippered hand pockets.• Thumbhole cuffs.• Full zip.• Mock-neck collar.• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.
\n• Adjustable hood.• Fleece-lined, zippered hand pockets.• Thumbhole cuffs.• Full zip.• Mock-neck collar.• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the protect code for order ID 118?",
+ "sql": "SELECT protect_code FROM sales_order WHERE entity_id = 118;",
+ "answer": [
+ "1f2a0c2a2f6094ed2ebbd6a5cbfd0b0c"
+ ],
+ "sql_execute_result": [
+ [
+ "1f2a0c2a2f6094ed2ebbd6a5cbfd0b0c"
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number associated with address ID 5.",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 5;",
+ "answer": [
+ "5107819902"
+ ],
+ "sql_execute_result": [
+ [
+ "5107819902"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for order ID 285?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 285;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title and content heading of the CMS page with the identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title, content_heading FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy",
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy",
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-08-24 in store with ID 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-08-24' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 7?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 7;",
+ "answer": [
+ "24-UB02"
+ ],
+ "sql_execute_result": [
+ [
+ "24-UB02"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with country_id 'GR'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'GR';",
+ "answer": [
+ "GRC"
+ ],
+ "sql_execute_result": [
+ [
+ "GRC"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with review_id 139?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 139;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the content heading of the CMS page titled 'About us'.",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders on 2022-12-18 in store with ID 0?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-12-18' AND store_id = 0 AND order_status = 'complete';",
+ "answer": [
+ "187.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "187.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path value for the category with entity_id 18?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 18 AND attribute_id = 120 AND store_id = 0;",
+ "answer": [
+ "men/bottoms-men/pants-men"
+ ],
+ "sql_execute_result": [
+ [
+ "men/bottoms-men/pants-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with billing name 'Veronica Costello'?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Veronica' AND lastname = 'Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for the product with entity_id 366 in the default store?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 366 AND attribute_id = 77 AND store_id = 0;",
+ "answer": [
+ "66.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "66.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with increment ID '000000236'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000236';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for orders with status 'canceled'.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "17408.0700"
+ ],
+ "sql_execute_result": [
+ [
+ "17408.0700"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have the email 'helloworld@yahoo.com'?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE customer_email = 'helloworld@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sarah Miller"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base grand total for all closed orders?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order_grid WHERE status = 'closed';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have the status 'canceled'?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 142
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of the product with entity_id 704 in the default store?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 704 AND attribute_id = 77 AND store_id = 0;",
+ "answer": [
+ "29.00"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders for customer with email 'jla_7781@gmail.com'.",
+ "sql": "SELECT entity_id, status FROM sales_order_grid WHERE customer_email = 'jla_7781@gmail.com';",
+ "answer": [
+ "Order ID: 19, Status: canceled",
+ "Order ID: 53, Status: complete",
+ "Order ID: 54, Status: complete",
+ "Order ID: 98, Status: canceled",
+ "Order ID: 110, Status: canceled",
+ "Order ID: 142, Status: canceled",
+ "Order ID: 167, Status: canceled",
+ "Order ID: 267, Status: canceled",
+ "Order ID: 290, Status: canceled"
+ ],
+ "sql_execute_result": [
+ [
+ 19,
+ "canceled"
+ ],
+ [
+ 53,
+ "complete"
+ ],
+ [
+ 54,
+ "complete"
+ ],
+ [
+ 98,
+ "canceled"
+ ],
+ [
+ 110,
+ "canceled"
+ ],
+ [
+ 142,
+ "canceled"
+ ],
+ [
+ 167,
+ "canceled"
+ ],
+ [
+ 267,
+ "canceled"
+ ],
+ [
+ 290,
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name with store_id 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout of the 'About us' CMS page?",
+ "sql": "SELECT page_layout FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'Customer Service' page active?",
+ "sql": "SELECT is_active FROM cms_page WHERE page_id = 6;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for orders in store with ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find the title of the review with ID 347.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 347;",
+ "answer": [
+ "Quite good"
+ ],
+ "sql_execute_result": [
+ [
+ "Quite good"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer who wrote 'Fits tons of gear'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Fits tons of gear';",
+ "answer": [
+ "Elizabeth"
+ ],
+ "sql_execute_result": [
+ [
+ "Elizabeth"
+ ]
+ ]
+ },
+ {
+ "question": "Is attribute ID 77 visible on the front?",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = 77;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the search weight of attribute ID 106?",
+ "sql": "SELECT search_weight FROM catalog_eav_attribute WHERE attribute_id = 106;",
+ "answer": [
+ "1.0"
+ ],
+ "sql_execute_result": [
+ [
+ 1.0
+ ]
+ ]
+ },
+ {
+ "question": "Find the content heading of the 'Enable Cookies' page.",
+ "sql": "SELECT content_heading FROM cms_page WHERE page_id = 3;",
+ "answer": [
+ "What are Cookies?"
+ ],
+ "sql_execute_result": [
+ [
+ "What are Cookies?"
+ ]
+ ]
+ },
+ {
+ "question": "Get the creation time of the '404 Not Found' CMS page.",
+ "sql": "SELECT creation_time FROM cms_page WHERE page_id = 1;",
+ "answer": [
+ "2023-04-19 15:41:33"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 15:41:33"
+ ]
+ ]
+ },
+ {
+ "question": "Does the attribute ID 120 use page builder?",
+ "sql": "SELECT is_pagebuilder_enabled FROM catalog_eav_attribute WHERE attribute_id = 120;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1563?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1563;",
+ "answer": [
+ "WS01-M-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "WS01-M-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category path for the category with entity ID 25.",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 25;",
+ "answer": [
+ "1/2/20/21/25"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/20/21/25"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the payment method for the order with payment entity ID 112.",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 112;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with payment entity ID 137?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 137;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID for the invoice item with entity ID 1.",
+ "sql": "SELECT product_id FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "1428"
+ ],
+ "sql_execute_result": [
+ [
+ 1428
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 3 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price of the invoice item with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'MT02-XS-White'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'MT02-XS-White';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with SKU 'MJ09-M-Yellow'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MJ09-M-Yellow');",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all completed orders for customer with email 'samantha.nguyen@gmail.com'.",
+ "sql": "SELECT entity_id AS order_id, grand_total FROM sales_order WHERE status = 'complete' AND customer_email = 'samantha.nguyen@gmail.com';",
+ "answer": [
+ "145",
+ "230.1200"
+ ],
+ "sql_execute_result": [
+ [
+ 145,
+ "230.1200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product attribute with ID 82 for the product entity 1526?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1526 AND attribute_id = 82;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the address for the customer with the parent ID 54.",
+ "sql": "SELECT city, street, region, postcode FROM customer_address_entity WHERE parent_id = 54;",
+ "answer": [
+ "Chicago",
+ "111 Wacker Dr",
+ "Illinois",
+ "60601"
+ ],
+ "sql_execute_result": [
+ [
+ "Chicago",
+ "111 Wacker Dr",
+ "Illinois",
+ "60601"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input renderer for the catalog attribute with ID 134?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 134;",
+ "answer": [
+ "Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with increment ID '000000145'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000145';",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for the order with ID 288?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 288;",
+ "answer": [
+ "188.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "188.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of items in the order with increment ID '000000192'.",
+ "sql": "SELECT weight FROM sales_order WHERE increment_id = '000000192';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order placed by Ava Brown?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE customer_firstname = 'Ava' AND customer_lastname = 'Brown';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ],
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the order with increment ID '000000200'?",
+ "sql": "SELECT tax_amount FROM sales_order WHERE increment_id = '000000200';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Which status corresponds to the label 'PayPal Reversed'?",
+ "sql": "SELECT status FROM sales_order_status WHERE label = 'PayPal Reversed';",
+ "answer": [
+ "paypal_reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "paypal_reversed"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been made for order ID 1?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_shipment WHERE order_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with region ID 737 in the 'en_US' locale.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 737 AND locale = 'en_US';",
+ "answer": [
+ "Meta"
+ ],
+ "sql_execute_result": [
+ [
+ "Meta"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product attribute with entity ID 276 and attribute ID 115?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 276 AND attribute_id = 115;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped in the shipment with increment ID '000000002'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice associated with order ID 2.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the status 'payment_review'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'payment_review';",
+ "answer": [
+ "Payment Review"
+ ],
+ "sql_execute_result": [
+ [
+ "Payment Review"
+ ]
+ ]
+ },
+ {
+ "question": "What region name corresponds to region ID 916 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 916 AND locale = 'en_US';",
+ "answer": [
+ "Siracusa"
+ ],
+ "sql_execute_result": [
+ [
+ "Siracusa"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of products shipped in the shipment with entity ID 3.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer who placed the order with increment ID '000000127'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000127';",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity in stock for the product with ID 597.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 597;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with code 'sku'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'sku';",
+ "answer": [
+ "SKU"
+ ],
+ "sql_execute_result": [
+ [
+ "SKU"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order placed by Samantha Jones with increment ID '000000249'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000249';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the description text for the product with entity ID 1033.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1033 AND attribute_id = 75;",
+ "answer": [
+ "Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.
• Light green heathered hoodie.
• Long-Sleeve, pullover.
• Long elliptical hem for extra coverage.
• Deep button placket for layering.
• Double rib design.
• Mid layer, mid weight.
• 98% Merino Wool / 2% Spandex"
+ ],
+ "sql_execute_result": [
+ [
+ "Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.
• Light green heathered hoodie.
• Long-Sleeve, pullover.
• Long elliptical hem for extra coverage.
• Deep button placket for layering.
• Double rib design.
• Mid layer, mid weight.
• 98% Merino Wool / 2% Spandex"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute ID corresponds to the 'Style Bags' attribute?",
+ "sql": "SELECT attribute_id FROM eav_attribute WHERE attribute_code = 'style_bags';",
+ "answer": [
+ "138"
+ ],
+ "sql_execute_result": [
+ [
+ 138
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 145 visible on the frontend?",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = 145;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping name for the order with increment ID '000000256'?",
+ "sql": "SELECT shipping_name FROM sales_order_grid WHERE increment_id = '000000256';",
+ "answer": [
+ "Adam Garcia"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam Garcia"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for the product with ID 252.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 252 AND attribute_id = 75;",
+ "answer": [
+ "For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.
\n• Light blue heather full zip hoodie.
• Fitted flatlock seams.
• Matching lining and drawstring.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.
\n• Light blue heather full zip hoodie.
• Fitted flatlock seams.
• Matching lining and drawstring.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000021'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000021';",
+ "answer": [
+ "210.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the order status 'pending_payment'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for the order with increment ID '000000077'.",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000077';",
+ "answer": [
+ "104.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "104.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What shipping method is used in the order with ID 99?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 99;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Which website has the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the review with ID 187?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 187;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email of the customer for the order with increment ID '000000308'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000308';",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with ID 136?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 136;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer ID is associated with the order ID 10?",
+ "sql": "SELECT customer_id FROM sales_order WHERE entity_id = 10;",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer 'Jane Smith'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_firstname = 'Jane' AND customer_lastname = 'Smith';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ "106.0000"
+ ],
+ [
+ "113.8000"
+ ],
+ [
+ "192.7600"
+ ],
+ [
+ "100.8000"
+ ],
+ [
+ "168.8000"
+ ],
+ [
+ "72.0000"
+ ],
+ [
+ "153.0000"
+ ],
+ [
+ "181.0000"
+ ],
+ [
+ "71.5000"
+ ],
+ [
+ "87.0000"
+ ],
+ [
+ "37.0000"
+ ],
+ [
+ "47.0000"
+ ],
+ [
+ "185.0000"
+ ],
+ [
+ "54.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "60.0000"
+ ],
+ [
+ "77.0000"
+ ],
+ [
+ "158.2500"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the review with ID 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Which category does the product with ID 1139 belong to?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1139;",
+ "answer": [
+ "24",
+ "30",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 24
+ ],
+ [
+ 30
+ ],
+ [
+ 35
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1354?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1354;",
+ "answer": [
+ "WJ11-S-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ11-S-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the invoice with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with SKU 'MS02-L-Gray' in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MS02-L-Gray');",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created_at timestamp for the product with SKU 'WT06-S-Red'?",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'WT06-S-Red';",
+ "answer": [
+ "2023-04-19 16:13:52"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:52"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice with entity ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Which product type is the product with entity ID 1868?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 1868;",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default group ID for the website with ID 1?",
+ "sql": "SELECT default_group_id FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 1412?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1412;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 16?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 16;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 431
+ ],
+ [
+ 432
+ ],
+ [
+ 433
+ ],
+ [
+ 434
+ ],
+ [
+ 435
+ ],
+ [
+ 436
+ ],
+ [
+ 437
+ ],
+ [
+ 438
+ ],
+ [
+ 439
+ ],
+ [
+ 440
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 443
+ ],
+ [
+ 444
+ ],
+ [
+ 445
+ ],
+ [
+ 446
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 463
+ ],
+ [
+ 464
+ ],
+ [
+ 465
+ ],
+ [
+ 466
+ ],
+ [
+ 467
+ ],
+ [
+ 468
+ ],
+ [
+ 469
+ ],
+ [
+ 470
+ ],
+ [
+ 471
+ ],
+ [
+ 472
+ ],
+ [
+ 473
+ ],
+ [
+ 474
+ ],
+ [
+ 475
+ ],
+ [
+ 476
+ ],
+ [
+ 477
+ ],
+ [
+ 478
+ ],
+ [
+ 479
+ ],
+ [
+ 480
+ ],
+ [
+ 481
+ ],
+ [
+ 482
+ ],
+ [
+ 483
+ ],
+ [
+ 484
+ ],
+ [
+ 485
+ ],
+ [
+ 486
+ ],
+ [
+ 487
+ ],
+ [
+ 488
+ ],
+ [
+ 489
+ ],
+ [
+ 490
+ ],
+ [
+ 491
+ ],
+ [
+ 492
+ ],
+ [
+ 493
+ ],
+ [
+ 494
+ ],
+ [
+ 495
+ ],
+ [
+ 496
+ ],
+ [
+ 497
+ ],
+ [
+ 498
+ ],
+ [
+ 499
+ ],
+ [
+ 500
+ ],
+ [
+ 501
+ ],
+ [
+ 502
+ ],
+ [
+ 503
+ ],
+ [
+ 504
+ ],
+ [
+ 505
+ ],
+ [
+ 506
+ ],
+ [
+ 507
+ ],
+ [
+ 508
+ ],
+ [
+ 509
+ ],
+ [
+ 510
+ ],
+ [
+ 511
+ ],
+ [
+ 512
+ ],
+ [
+ 513
+ ],
+ [
+ 514
+ ],
+ [
+ 515
+ ],
+ [
+ 516
+ ],
+ [
+ 517
+ ],
+ [
+ 518
+ ],
+ [
+ 519
+ ],
+ [
+ 520
+ ],
+ [
+ 521
+ ],
+ [
+ 522
+ ],
+ [
+ 523
+ ],
+ [
+ 524
+ ],
+ [
+ 525
+ ],
+ [
+ 526
+ ],
+ [
+ 527
+ ],
+ [
+ 528
+ ],
+ [
+ 529
+ ],
+ [
+ 530
+ ],
+ [
+ 531
+ ],
+ [
+ 532
+ ],
+ [
+ 533
+ ],
+ [
+ 534
+ ],
+ [
+ 535
+ ],
+ [
+ 536
+ ],
+ [
+ 537
+ ],
+ [
+ 538
+ ],
+ [
+ 539
+ ],
+ [
+ 540
+ ],
+ [
+ 541
+ ],
+ [
+ 542
+ ],
+ [
+ 543
+ ],
+ [
+ 544
+ ],
+ [
+ 545
+ ],
+ [
+ 546
+ ],
+ [
+ 547
+ ],
+ [
+ 548
+ ],
+ [
+ 549
+ ],
+ [
+ 550
+ ],
+ [
+ 551
+ ],
+ [
+ 552
+ ],
+ [
+ 553
+ ],
+ [
+ 554
+ ],
+ [
+ 555
+ ],
+ [
+ 556
+ ],
+ [
+ 557
+ ],
+ [
+ 558
+ ],
+ [
+ 559
+ ],
+ [
+ 560
+ ],
+ [
+ 561
+ ],
+ [
+ 562
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ],
+ [
+ 565
+ ],
+ [
+ 566
+ ],
+ [
+ 567
+ ],
+ [
+ 568
+ ],
+ [
+ 569
+ ],
+ [
+ 570
+ ],
+ [
+ 571
+ ],
+ [
+ 572
+ ],
+ [
+ 573
+ ],
+ [
+ 574
+ ],
+ [
+ 575
+ ],
+ [
+ 576
+ ],
+ [
+ 577
+ ],
+ [
+ 578
+ ],
+ [
+ 579
+ ],
+ [
+ 580
+ ],
+ [
+ 581
+ ],
+ [
+ 582
+ ],
+ [
+ 583
+ ],
+ [
+ 584
+ ],
+ [
+ 585
+ ],
+ [
+ 586
+ ],
+ [
+ 587
+ ],
+ [
+ 588
+ ],
+ [
+ 589
+ ],
+ [
+ 590
+ ],
+ [
+ 591
+ ],
+ [
+ 592
+ ],
+ [
+ 593
+ ],
+ [
+ 594
+ ],
+ [
+ 595
+ ],
+ [
+ 596
+ ],
+ [
+ 597
+ ],
+ [
+ 598
+ ],
+ [
+ 599
+ ],
+ [
+ 600
+ ],
+ [
+ 601
+ ],
+ [
+ 602
+ ],
+ [
+ 603
+ ],
+ [
+ 604
+ ],
+ [
+ 605
+ ],
+ [
+ 606
+ ],
+ [
+ 607
+ ],
+ [
+ 608
+ ],
+ [
+ 609
+ ],
+ [
+ 610
+ ],
+ [
+ 611
+ ],
+ [
+ 612
+ ],
+ [
+ 613
+ ],
+ [
+ 614
+ ],
+ [
+ 615
+ ],
+ [
+ 616
+ ],
+ [
+ 617
+ ],
+ [
+ 618
+ ],
+ [
+ 619
+ ],
+ [
+ 620
+ ],
+ [
+ 621
+ ],
+ [
+ 622
+ ]
+ ]
+ },
+ {
+ "question": "Check if the rating with ID 3 is active.",
+ "sql": "SELECT is_active FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 1444 in category ID 36?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1444 AND category_id = 36;",
+ "answer": [
+ "-153"
+ ],
+ "sql_execute_result": [
+ [
+ -153
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been created so far?",
+ "sql": "SELECT COUNT(*) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs have a stock quantity of 100?",
+ "sql": "SELECT product_id FROM cataloginventory_stock_item WHERE qty = '100.0000';",
+ "answer": [
+ "300"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 348
+ ],
+ [
+ 349
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ],
+ [
+ 354
+ ],
+ [
+ 355
+ ],
+ [
+ 356
+ ],
+ [
+ 357
+ ],
+ [
+ 358
+ ],
+ [
+ 359
+ ],
+ [
+ 360
+ ],
+ [
+ 361
+ ],
+ [
+ 362
+ ],
+ [
+ 363
+ ],
+ [
+ 364
+ ],
+ [
+ 365
+ ],
+ [
+ 367
+ ],
+ [
+ 368
+ ],
+ [
+ 369
+ ],
+ [
+ 370
+ ],
+ [
+ 371
+ ],
+ [
+ 372
+ ],
+ [
+ 373
+ ],
+ [
+ 374
+ ],
+ [
+ 375
+ ],
+ [
+ 376
+ ],
+ [
+ 377
+ ],
+ [
+ 378
+ ],
+ [
+ 379
+ ],
+ [
+ 380
+ ],
+ [
+ 381
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 399
+ ],
+ [
+ 400
+ ],
+ [
+ 401
+ ],
+ [
+ 402
+ ],
+ [
+ 403
+ ],
+ [
+ 404
+ ],
+ [
+ 405
+ ],
+ [
+ 406
+ ],
+ [
+ 407
+ ],
+ [
+ 408
+ ],
+ [
+ 409
+ ],
+ [
+ 410
+ ],
+ [
+ 411
+ ],
+ [
+ 412
+ ],
+ [
+ 413
+ ],
+ [
+ 415
+ ],
+ [
+ 416
+ ],
+ [
+ 417
+ ],
+ [
+ 418
+ ],
+ [
+ 419
+ ],
+ [
+ 420
+ ],
+ [
+ 421
+ ],
+ [
+ 422
+ ],
+ [
+ 423
+ ],
+ [
+ 424
+ ],
+ [
+ 425
+ ],
+ [
+ 426
+ ],
+ [
+ 427
+ ],
+ [
+ 428
+ ],
+ [
+ 429
+ ],
+ [
+ 431
+ ],
+ [
+ 432
+ ],
+ [
+ 433
+ ],
+ [
+ 434
+ ],
+ [
+ 435
+ ],
+ [
+ 436
+ ],
+ [
+ 437
+ ],
+ [
+ 438
+ ],
+ [
+ 439
+ ],
+ [
+ 440
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 443
+ ],
+ [
+ 444
+ ],
+ [
+ 445
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 463
+ ],
+ [
+ 464
+ ],
+ [
+ 465
+ ],
+ [
+ 466
+ ],
+ [
+ 467
+ ],
+ [
+ 468
+ ],
+ [
+ 469
+ ],
+ [
+ 470
+ ],
+ [
+ 471
+ ],
+ [
+ 472
+ ],
+ [
+ 473
+ ],
+ [
+ 474
+ ],
+ [
+ 475
+ ],
+ [
+ 476
+ ],
+ [
+ 477
+ ],
+ [
+ 479
+ ],
+ [
+ 480
+ ],
+ [
+ 481
+ ],
+ [
+ 482
+ ],
+ [
+ 483
+ ],
+ [
+ 484
+ ],
+ [
+ 485
+ ],
+ [
+ 486
+ ],
+ [
+ 487
+ ],
+ [
+ 488
+ ],
+ [
+ 489
+ ],
+ [
+ 490
+ ],
+ [
+ 491
+ ],
+ [
+ 492
+ ],
+ [
+ 493
+ ],
+ [
+ 495
+ ],
+ [
+ 496
+ ],
+ [
+ 497
+ ],
+ [
+ 498
+ ],
+ [
+ 499
+ ],
+ [
+ 500
+ ],
+ [
+ 501
+ ],
+ [
+ 502
+ ],
+ [
+ 503
+ ],
+ [
+ 504
+ ],
+ [
+ 505
+ ],
+ [
+ 506
+ ],
+ [
+ 507
+ ],
+ [
+ 508
+ ],
+ [
+ 509
+ ],
+ [
+ 511
+ ],
+ [
+ 512
+ ],
+ [
+ 513
+ ],
+ [
+ 514
+ ],
+ [
+ 515
+ ],
+ [
+ 516
+ ],
+ [
+ 517
+ ],
+ [
+ 518
+ ],
+ [
+ 519
+ ],
+ [
+ 520
+ ],
+ [
+ 521
+ ],
+ [
+ 522
+ ],
+ [
+ 523
+ ],
+ [
+ 524
+ ],
+ [
+ 525
+ ],
+ [
+ 527
+ ],
+ [
+ 528
+ ],
+ [
+ 529
+ ],
+ [
+ 530
+ ],
+ [
+ 531
+ ],
+ [
+ 532
+ ],
+ [
+ 533
+ ],
+ [
+ 534
+ ],
+ [
+ 535
+ ],
+ [
+ 536
+ ],
+ [
+ 537
+ ],
+ [
+ 538
+ ],
+ [
+ 539
+ ],
+ [
+ 540
+ ],
+ [
+ 541
+ ],
+ [
+ 543
+ ],
+ [
+ 544
+ ],
+ [
+ 545
+ ],
+ [
+ 546
+ ],
+ [
+ 547
+ ],
+ [
+ 548
+ ],
+ [
+ 549
+ ],
+ [
+ 550
+ ],
+ [
+ 551
+ ],
+ [
+ 552
+ ],
+ [
+ 553
+ ],
+ [
+ 554
+ ],
+ [
+ 555
+ ],
+ [
+ 556
+ ],
+ [
+ 557
+ ],
+ [
+ 559
+ ],
+ [
+ 560
+ ],
+ [
+ 561
+ ],
+ [
+ 562
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ],
+ [
+ 565
+ ],
+ [
+ 566
+ ],
+ [
+ 567
+ ],
+ [
+ 568
+ ],
+ [
+ 569
+ ],
+ [
+ 570
+ ],
+ [
+ 571
+ ],
+ [
+ 572
+ ],
+ [
+ 573
+ ],
+ [
+ 575
+ ],
+ [
+ 576
+ ],
+ [
+ 577
+ ],
+ [
+ 578
+ ],
+ [
+ 579
+ ],
+ [
+ 580
+ ],
+ [
+ 581
+ ],
+ [
+ 582
+ ],
+ [
+ 583
+ ],
+ [
+ 584
+ ],
+ [
+ 585
+ ],
+ [
+ 586
+ ],
+ [
+ 587
+ ],
+ [
+ 588
+ ],
+ [
+ 589
+ ],
+ [
+ 591
+ ],
+ [
+ 592
+ ],
+ [
+ 593
+ ],
+ [
+ 594
+ ],
+ [
+ 595
+ ],
+ [
+ 596
+ ],
+ [
+ 597
+ ],
+ [
+ 598
+ ],
+ [
+ 599
+ ],
+ [
+ 600
+ ],
+ [
+ 601
+ ],
+ [
+ 602
+ ],
+ [
+ 603
+ ],
+ [
+ 604
+ ],
+ [
+ 605
+ ],
+ [
+ 607
+ ],
+ [
+ 608
+ ],
+ [
+ 609
+ ],
+ [
+ 610
+ ],
+ [
+ 611
+ ],
+ [
+ 612
+ ],
+ [
+ 613
+ ],
+ [
+ 614
+ ],
+ [
+ 615
+ ],
+ [
+ 616
+ ],
+ [
+ 617
+ ],
+ [
+ 618
+ ],
+ [
+ 619
+ ],
+ [
+ 620
+ ],
+ [
+ 621
+ ],
+ [
+ 623
+ ],
+ [
+ 624
+ ],
+ [
+ 625
+ ],
+ [
+ 626
+ ],
+ [
+ 627
+ ],
+ [
+ 628
+ ],
+ [
+ 629
+ ],
+ [
+ 630
+ ],
+ [
+ 631
+ ],
+ [
+ 632
+ ],
+ [
+ 633
+ ],
+ [
+ 634
+ ],
+ [
+ 635
+ ],
+ [
+ 636
+ ],
+ [
+ 637
+ ],
+ [
+ 639
+ ],
+ [
+ 640
+ ],
+ [
+ 641
+ ],
+ [
+ 642
+ ],
+ [
+ 643
+ ],
+ [
+ 644
+ ],
+ [
+ 645
+ ],
+ [
+ 646
+ ],
+ [
+ 647
+ ],
+ [
+ 648
+ ],
+ [
+ 649
+ ],
+ [
+ 650
+ ],
+ [
+ 651
+ ],
+ [
+ 652
+ ],
+ [
+ 653
+ ],
+ [
+ 655
+ ],
+ [
+ 656
+ ],
+ [
+ 657
+ ],
+ [
+ 658
+ ],
+ [
+ 659
+ ],
+ [
+ 660
+ ],
+ [
+ 661
+ ],
+ [
+ 662
+ ],
+ [
+ 663
+ ],
+ [
+ 664
+ ],
+ [
+ 665
+ ],
+ [
+ 666
+ ],
+ [
+ 667
+ ],
+ [
+ 668
+ ],
+ [
+ 669
+ ],
+ [
+ 671
+ ],
+ [
+ 672
+ ],
+ [
+ 673
+ ],
+ [
+ 674
+ ],
+ [
+ 675
+ ],
+ [
+ 677
+ ],
+ [
+ 678
+ ],
+ [
+ 679
+ ],
+ [
+ 680
+ ],
+ [
+ 681
+ ],
+ [
+ 683
+ ],
+ [
+ 684
+ ],
+ [
+ 685
+ ],
+ [
+ 686
+ ],
+ [
+ 687
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 695
+ ],
+ [
+ 696
+ ],
+ [
+ 697
+ ],
+ [
+ 698
+ ],
+ [
+ 699
+ ],
+ [
+ 701
+ ],
+ [
+ 702
+ ],
+ [
+ 703
+ ],
+ [
+ 704
+ ],
+ [
+ 705
+ ],
+ [
+ 707
+ ],
+ [
+ 708
+ ],
+ [
+ 709
+ ],
+ [
+ 710
+ ],
+ [
+ 711
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 719
+ ],
+ [
+ 720
+ ],
+ [
+ 721
+ ],
+ [
+ 722
+ ],
+ [
+ 723
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1061
+ ],
+ [
+ 1062
+ ],
+ [
+ 1063
+ ],
+ [
+ 1064
+ ],
+ [
+ 1065
+ ],
+ [
+ 1066
+ ],
+ [
+ 1067
+ ],
+ [
+ 1068
+ ],
+ [
+ 1069
+ ],
+ [
+ 1070
+ ],
+ [
+ 1071
+ ],
+ [
+ 1072
+ ],
+ [
+ 1073
+ ],
+ [
+ 1074
+ ],
+ [
+ 1075
+ ],
+ [
+ 1077
+ ],
+ [
+ 1078
+ ],
+ [
+ 1079
+ ],
+ [
+ 1080
+ ],
+ [
+ 1081
+ ],
+ [
+ 1082
+ ],
+ [
+ 1083
+ ],
+ [
+ 1084
+ ],
+ [
+ 1085
+ ],
+ [
+ 1086
+ ],
+ [
+ 1087
+ ],
+ [
+ 1088
+ ],
+ [
+ 1089
+ ],
+ [
+ 1090
+ ],
+ [
+ 1091
+ ],
+ [
+ 1093
+ ],
+ [
+ 1094
+ ],
+ [
+ 1095
+ ],
+ [
+ 1096
+ ],
+ [
+ 1097
+ ],
+ [
+ 1098
+ ],
+ [
+ 1099
+ ],
+ [
+ 1100
+ ],
+ [
+ 1101
+ ],
+ [
+ 1102
+ ],
+ [
+ 1103
+ ],
+ [
+ 1104
+ ],
+ [
+ 1105
+ ],
+ [
+ 1106
+ ],
+ [
+ 1107
+ ],
+ [
+ 1109
+ ],
+ [
+ 1110
+ ],
+ [
+ 1111
+ ],
+ [
+ 1112
+ ],
+ [
+ 1113
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1477
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ]
+ ]
+ },
+ {
+ "question": "List the rating codes available in the system.",
+ "sql": "SELECT rating_code FROM rating;",
+ "answer": [
+ "Price",
+ "Quality",
+ "Rating",
+ "Value"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ],
+ [
+ "Quality"
+ ],
+ [
+ "Rating"
+ ],
+ [
+ "Value"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of invoices issued?",
+ "sql": "SELECT COUNT(*) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status for product ID 1412?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1412;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What entity ID corresponds to the category ID 23 and product ID 1313?",
+ "sql": "SELECT entity_id FROM catalog_category_product WHERE category_id = 23 AND product_id = 1313;",
+ "answer": [
+ "2735"
+ ],
+ "sql_execute_result": [
+ [
+ 2735
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity_id 1907?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1907;",
+ "answer": [
+ "Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.
\n• Black run shorts
- cotton/spandex.
• 5” inseam.
• Machine wash/Line dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.
\n• Black run shorts
- cotton/spandex.
• 5” inseam.
• Machine wash/Line dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of children categories under category with entity_id 29.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 29;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group_id 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are used in the product listing?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE used_in_product_listing = 1;",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ 73
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 97
+ ],
+ [
+ 107
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 121
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 144
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with attribute_id 146 filterable?",
+ "sql": "SELECT is_filterable FROM catalog_eav_attribute WHERE attribute_id = 146;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity_id 15?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 15;",
+ "answer": [
+ "1/2/11/12/15"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/11/12/15"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute has the code 'sleeve'?",
+ "sql": "SELECT attribute_id FROM eav_attribute WHERE attribute_code = 'sleeve';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 153
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with attribute_id 100 used in the grid?",
+ "sql": "SELECT is_used_in_grid FROM catalog_eav_attribute WHERE attribute_id = 100;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with attribute_id 131?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 131;",
+ "answer": [
+ "Dynamic Weight"
+ ],
+ "sql_execute_result": [
+ [
+ "Dynamic Weight"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region ID 640?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 640;",
+ "answer": [
+ "Blagoevgrad"
+ ],
+ "sql_execute_result": [
+ [
+ "Blagoevgrad"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for the order with increment ID '000000260'.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000260';",
+ "answer": [
+ "219.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "219.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer made the order with increment ID '000000268'?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE increment_id = '000000268';",
+ "answer": [
+ "Alex Martin"
+ ],
+ "sql_execute_result": [
+ [
+ "Alex Martin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date of the credit memo with increment ID '000000001'?",
+ "sql": "SELECT created_at FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "Which order ID corresponds to the shipment with increment ID '000000003'?",
+ "sql": "SELECT order_id FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "300"
+ ],
+ "sql_execute_result": [
+ [
+ 300
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who made the order with increment ID '000000205'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000205';",
+ "answer": [
+ "john.lee@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.lee@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the order related to credit memo increment ID '000000001'?",
+ "sql": "SELECT order_base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which store ID is associated with the sales sequence meta of entity type 'creditmemo' and meta ID 7?",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND meta_id = 7;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with increment ID '000000067'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000067';",
+ "answer": [
+ "123 Hogwarts Lane,Chicago,Illinois,60637"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Hogwarts Lane,Chicago,Illinois,60637"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were shipped in the shipment with increment ID '000000002'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses were found for the customer with the billing address on '333 S Broad St, Philadelphia'?",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '333 S Broad St' AND city = 'Philadelphia';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on '2022-05-02' in store with ID 0?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with entity ID 369.",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 369 AND attribute_id = 121 AND store_id = 0;",
+ "answer": [
+ "typhon-performance-fleece-lined-jacket-xs-red"
+ ],
+ "sql_execute_result": [
+ [
+ "typhon-performance-fleece-lined-jacket-xs-red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with order ID 2?",
+ "sql": "SELECT street, city FROM sales_order_address WHERE parent_id = 2 AND address_type = 'shipping';",
+ "answer": [
+ "6146 Honey Bluff Parkway",
+ "Calder"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway",
+ "Calder"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position for the period starting '2023-01-01' in store with ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE period = '2023-01-01' AND store_id = 0 ORDER BY rating_pos DESC LIMIT 1;",
+ "answer": [
+ "Aether Gym Pant -33-Brown"
+ ],
+ "sql_execute_result": [
+ [
+ "Aether Gym Pant -33-Brown"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address and phone number for the billing address with ID 572?",
+ "sql": "SELECT email, telephone FROM sales_order_address WHERE entity_id = 572;",
+ "answer": [
+ "soccerfanatic22@gmail.com",
+ "7135555555"
+ ],
+ "sql_execute_result": [
+ [
+ "soccerfanatic22@gmail.com",
+ "7135555555"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity invoiced for the order with ID 2.",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product shipped with entity ID 4?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE entity_id = 4;",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the grand total for the invoice with increment ID '000000002'.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered with order item ID 1?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE order_item_id = 1;",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute code for the attribute with ID 123.",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 123;",
+ "answer": [
+ "msrp"
+ ],
+ "sql_execute_result": [
+ [
+ "msrp"
+ ]
+ ]
+ },
+ {
+ "question": "List the sort order for the attribute options with attribute ID 138.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE attribute_id = 138;",
+ "answer": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the order with ID 1?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Which city is associated with the shipping address with ID 525?",
+ "sql": "SELECT city FROM sales_order_address WHERE entity_id = 525;",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total tax amount for the invoice with entity ID 2.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with parent ID 26?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method FROM sales_order_payment WHERE parent_id = 26;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'Retailer'?",
+ "sql": "SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the eav attribute option with value ID 46?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 46;",
+ "answer": [
+ "Synthetic"
+ ],
+ "sql_execute_result": [
+ [
+ "Synthetic"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store group with group ID 1.",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the review with ID 197?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 197;",
+ "answer": [
+ "2023-04-19 16:15:15"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:15"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the payment with entity ID 184?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 184;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the 'Synthetic' eav attribute option value.",
+ "sql": "SELECT store_id FROM eav_attribute_option_value WHERE value = 'Synthetic';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Identify the root category ID for the 'Default' store group.",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Default';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many unique entity PK values were found for the review created at '2023-04-19 16:15:13'?",
+ "sql": "SELECT entity_pk_value FROM review WHERE created_at = '2023-04-19 16:15:13';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 590
+ ],
+ [
+ 590
+ ],
+ [
+ 590
+ ],
+ [
+ 494
+ ],
+ [
+ 494
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 510
+ ],
+ [
+ 510
+ ],
+ [
+ 893
+ ],
+ [
+ 893
+ ],
+ [
+ 893
+ ],
+ [
+ 911
+ ],
+ [
+ 911
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 924
+ ],
+ [
+ 924
+ ],
+ [
+ 937
+ ],
+ [
+ 937
+ ],
+ [
+ 937
+ ],
+ [
+ 950
+ ],
+ [
+ 950
+ ],
+ [
+ 963
+ ],
+ [
+ 963
+ ],
+ [
+ 963
+ ],
+ [
+ 976
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 989
+ ],
+ [
+ 989
+ ],
+ [
+ 638
+ ],
+ [
+ 638
+ ],
+ [
+ 638
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 654
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount ordered for the payment with entity ID 2?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 829?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 829;",
+ "answer": [
+ "MP09-32-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MP09-32-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the product with ID 23 in the bestsellers list on 2023-04-30.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 23 AND period = '2023-04-30';",
+ "answer": [
+ "Harmony Lumaflex\u2122 Strength Band Kit"
+ ],
+ "sql_execute_result": [
+ [
+ "Harmony Lumaflex™ Strength Band Kit "
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit "
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with entity_id 636?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 636 AND attribute_id = 77 AND store_id = 0;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity_id 40?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 40;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity_id 7 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 7;",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the review with review_id 198?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 198;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with product_id 1719 on 2022-11-03?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_id = 1719 AND period = '2022-11-03';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity_id 14 in its parent category?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 14;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity_id 12?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 12;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 33?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product with entity ID 993.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 993;",
+ "answer": [
+ "MSH10-33-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH10-33-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews have been created with status ID 1?",
+ "sql": "SELECT COUNT(*) FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the review with ID 183?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 183;",
+ "answer": [
+ "2023-04-19 16:15:15"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:15"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1047?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1047;",
+ "answer": [
+ "WH02-XS-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WH02-XS-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with email 'olivia.jackson@gmail.com'?",
+ "sql": "SELECT firstname FROM customer_entity WHERE email = 'olivia.jackson@gmail.com';",
+ "answer": [
+ "Olivia"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum sequence value in the sequence_shipment_1 table?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'WS05-L-Black'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'WS05-L-Black';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "Find the review ID for the review created on '2023-04-19 16:15:12' for product ID 478.",
+ "sql": "SELECT review_id FROM review WHERE created_at = '2023-04-19 16:15:12' AND entity_pk_value = 478;",
+ "answer": [
+ "89",
+ "90",
+ "91"
+ ],
+ "sql_execute_result": [
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the customer with ID 2?",
+ "sql": "SELECT created_at FROM customer_entity WHERE entity_id = 2;",
+ "answer": [
+ "2023-04-19 21:44:57"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 21:44:57"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price for the product with entity ID 976?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 976 AND attribute_id = 77;",
+ "answer": [
+ "35.00"
+ ],
+ "sql_execute_result": [
+ [
+ "35.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with ID 6 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 6;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipment total quantity for the order with ID 300.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current sequence value for shipments?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Which website is associated with stock ID 1?",
+ "sql": "SELECT website_id FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID for the shipment created on 2023-04-23?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE created_at = '2023-04-23 22:09:21';",
+ "answer": [
+ "000000003"
+ ],
+ "sql_execute_result": [
+ [
+ "000000003"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items in the shipment with increment ID '000000001'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store ID is associated with the shipment entity ID 2?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum warning value for the sales sequence profile with meta ID 4?",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE meta_id = 4;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product with entity ID 1305 and attribute ID 77?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1305 AND attribute_id = 77;",
+ "answer": [
+ "57.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "57.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with ID 209?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 209;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for product with ID 1645 in daily bestseller records.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 1645;",
+ "answer": [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000291'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000291';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How much was the base shipping amount for the order with payment ID 96?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 96;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position for the daily period '2023-04-02'?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-04-02' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Stark Fundamental Hoodie-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Stark Fundamental Hoodie-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order ID 122?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 122;",
+ "answer": [
+ "alexander.thomas@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "List the shipping address for the order placed by customer ID 25.",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE customer_id = 25;",
+ "answer": [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ],
+ [
+ "123 Pine Street,Seattle,Washington,98122"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for order with increment ID '000000092'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000092';",
+ "answer": [
+ "97.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "97.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which state is associated with the status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 456?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 456;",
+ "answer": [
+ "MS05-L-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MS05-L-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for the customer with entity ID 40.",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 40;",
+ "answer": [
+ "jessica.nguyen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.nguyen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute 'sale' for category entity ID 37?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 37 AND attribute_id = 120;",
+ "answer": [
+ "sale"
+ ],
+ "sql_execute_result": [
+ [
+ "sale"
+ ]
+ ]
+ },
+ {
+ "question": "Which rating option has the code '4' and belongs to rating ID 2?",
+ "sql": "SELECT option_id FROM rating_option WHERE code = '4' AND rating_id = 2;",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the attribute option with option ID 135.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 135;",
+ "answer": [
+ "Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer with the first name 'Emma'?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Emma';",
+ "answer": [
+ "musiclover99@hotmail.com",
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'WS03-XL-Green'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'WS03-XL-Green';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs of products were created on '2023-04-19'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE DATE(created_at) = '2023-04-19';",
+ "answer": [
+ "200"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ],
+ [
+ "24-MB04"
+ ],
+ [
+ "24-MB03"
+ ],
+ [
+ "24-MB05"
+ ],
+ [
+ "24-MB06"
+ ],
+ [
+ "24-MB02"
+ ],
+ [
+ "24-UB02"
+ ],
+ [
+ "24-WB01"
+ ],
+ [
+ "24-WB02"
+ ],
+ [
+ "24-WB05"
+ ],
+ [
+ "24-WB06"
+ ],
+ [
+ "24-WB03"
+ ],
+ [
+ "24-WB07"
+ ],
+ [
+ "24-WB04"
+ ],
+ [
+ "24-UG06"
+ ],
+ [
+ "24-UG07"
+ ],
+ [
+ "24-UG04"
+ ],
+ [
+ "24-UG02"
+ ],
+ [
+ "24-UG05"
+ ],
+ [
+ "24-UG01"
+ ],
+ [
+ "24-WG084"
+ ],
+ [
+ "24-WG088"
+ ],
+ [
+ "24-UG03"
+ ],
+ [
+ "24-WG081-gray"
+ ],
+ [
+ "24-WG081-pink"
+ ],
+ [
+ "24-WG081-blue"
+ ],
+ [
+ "24-WG082-gray"
+ ],
+ [
+ "24-WG082-pink"
+ ],
+ [
+ "24-WG082-blue"
+ ],
+ [
+ "24-WG083-gray"
+ ],
+ [
+ "24-WG083-pink"
+ ],
+ [
+ "24-WG083-blue"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "24-WG087"
+ ],
+ [
+ "24-MG04"
+ ],
+ [
+ "24-MG01"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG05"
+ ],
+ [
+ "24-MG02"
+ ],
+ [
+ "24-WG09"
+ ],
+ [
+ "24-WG01"
+ ],
+ [
+ "24-WG03"
+ ],
+ [
+ "24-WG02"
+ ],
+ [
+ "24-WG080"
+ ],
+ [
+ "24-WG085_Group"
+ ],
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH02"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH05"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH06"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH08"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH09"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH10"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH11"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH12"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MH13"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ02"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ10"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ11"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ03"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS04"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS09"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS12"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS03"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS02"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS10"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS07"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MS08"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT01"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT02"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT04"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT05"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT06"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT09"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MT12"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP01"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP03"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP04"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP05"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP06"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP07"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP08"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP09"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP10"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP11"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MP12"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH01"
+ ],
+ [
+ "MSH02-32-Black"
+ ],
+ [
+ "MSH02-33-Black"
+ ],
+ [
+ "MSH02-34-Black"
+ ],
+ [
+ "MSH02-36-Black"
+ ],
+ [
+ "MSH02"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH04-32-Gray"
+ ],
+ [
+ "MSH04-32-Purple"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Gray"
+ ],
+ [
+ "MSH04-33-Purple"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Gray"
+ ],
+ [
+ "MSH04-34-Purple"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Gray"
+ ],
+ [
+ "MSH04-36-Purple"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MSH04"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH06"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH07"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH08"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH10"
+ ],
+ [
+ "MSH11-32-Black"
+ ],
+ [
+ "MSH11-32-Blue"
+ ],
+ [
+ "MSH11-32-Red"
+ ],
+ [
+ "MSH11-33-Black"
+ ],
+ [
+ "MSH11-33-Blue"
+ ],
+ [
+ "MSH11-33-Red"
+ ],
+ [
+ "MSH11-34-Black"
+ ],
+ [
+ "MSH11-34-Blue"
+ ],
+ [
+ "MSH11-34-Red"
+ ],
+ [
+ "MSH11-36-Black"
+ ],
+ [
+ "MSH11-36-Blue"
+ ],
+ [
+ "MSH11-36-Red"
+ ],
+ [
+ "MSH11"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "MSH12"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH03"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WB05"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP03"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP04"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP05"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP06"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP08"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP09"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP10"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP11"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WP13"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH01"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH04"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH06"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH09"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ],
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default billing address ID for customer with email 'nathan.chen@gmail.com'?",
+ "sql": "SELECT default_billing FROM customer_entity WHERE email = 'nathan.chen@gmail.com';",
+ "answer": [
+ "65"
+ ],
+ "sql_execute_result": [
+ [
+ 65
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with option ID 4?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 4;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000245'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000245';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with ID 262?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 262;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Check if product with ID 1498 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1498;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID of a product that is in category 34 and has the position -204.",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 34 AND position = -204;",
+ "answer": [
+ "1733"
+ ],
+ "sql_execute_result": [
+ [
+ 1733
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order ID 260?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 260;",
+ "answer": [
+ "john.lee@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.lee@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with ID 39?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 39;",
+ "answer": [
+ "218.8500"
+ ],
+ "sql_execute_result": [
+ [
+ "218.8500"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the created and updated timestamps for the invoice with ID 2.",
+ "sql": "SELECT created_at, updated_at FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2023-04-19 16:15:47",
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47",
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer ID placed the order with increment ID '000000029'?",
+ "sql": "SELECT customer_id FROM sales_order WHERE increment_id = '000000029';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name with the highest quantity ordered in store ID 1 from 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "Find all search queries in store ID 1 that had zero results.",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 AND num_results = 0;",
+ "answer": [
+ "nike"
+ ],
+ "sql_execute_result": [
+ [
+ "nike"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label of the order status 'paypal_reversed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'Retailer'?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 695 in the locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 695 AND locale = 'en_US';",
+ "answer": [
+ "Henan Sheng"
+ ],
+ "sql_execute_result": [
+ [
+ "Henan Sheng"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found?",
+ "sql": "SELECT product_id, product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 0 AND period = '2023-01-01';",
+ "answer": [
+ "141"
+ ],
+ "sql_execute_result": [
+ [
+ 3,
+ "Crown Summit Backpack"
+ ],
+ [
+ 7,
+ "Impulse Duffle"
+ ],
+ [
+ 11,
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ 13,
+ "Overnight Duffle"
+ ],
+ [
+ 16,
+ "Dual Handle Cardio Ball"
+ ],
+ [
+ 20,
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ 23,
+ "Harmony Lumaflex™ Strength Band Kit "
+ ],
+ [
+ 25,
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ 26,
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ 27,
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ 28,
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ 29,
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ 30,
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ 33,
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ 34,
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ 36,
+ "Aim Analog Watch"
+ ],
+ [
+ 37,
+ "Endurance Watch"
+ ],
+ [
+ 47,
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ],
+ [
+ 50,
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ 88,
+ "Bruno Compete Hoodie-L-Black"
+ ],
+ [
+ 95,
+ "Frankie Sweatshirt-XS-Green"
+ ],
+ [
+ 127,
+ "Stark Fundamental Hoodie-XS-Black"
+ ],
+ [
+ 128,
+ "Stark Fundamental Hoodie-XS-Blue"
+ ],
+ [
+ 129,
+ "Stark Fundamental Hoodie-XS-Purple"
+ ],
+ [
+ 134,
+ "Stark Fundamental Hoodie-M-Blue"
+ ],
+ [
+ 204,
+ "Mach Street Sweatshirt -XL-Blue"
+ ],
+ [
+ 220,
+ "Grayson Crewneck Sweatshirt -XL-Red"
+ ],
+ [
+ 234,
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ 243,
+ "Marco Lightweight Active Hoodie-S-Green"
+ ],
+ [
+ 262,
+ "Beaumont Summit Kit-M-Red"
+ ],
+ [
+ 315,
+ "Orion Two-Tone Fitted Jacket-XL-Black"
+ ],
+ [
+ 336,
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ 351,
+ "Mars HeatTech™ Pullover-XS-Black"
+ ],
+ [
+ 388,
+ "Jupiter All-Weather Trainer -S-Purple"
+ ],
+ [
+ 421,
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ [
+ 422,
+ "Proteus Fitness Jackshirt-M-Blue"
+ ],
+ [
+ 432,
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ 546,
+ "Aero Daily Fitness Tee-S-Black"
+ ],
+ [
+ 586,
+ "Logan HeatTec® Tee-L-Red"
+ ],
+ [
+ 601,
+ "Deion Long-Sleeve EverCool™ Tee-L-Green"
+ ],
+ [
+ 603,
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black"
+ ],
+ [
+ 645,
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ 652,
+ "Tristan Endurance Tank-XL-Red"
+ ],
+ [
+ 662,
+ "Primo Endurance Tank-M-Red"
+ ],
+ [
+ 691,
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ 699,
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ 709,
+ "Tiberius Gym Tank-M-Yellow"
+ ],
+ [
+ 716,
+ "Atlas Fitness Tank-L-Blue"
+ ],
+ [
+ 726,
+ "Caesar Warm-Up Pant-32-Gray"
+ ],
+ [
+ 736,
+ "Caesar Warm-Up Pant-36-Purple"
+ ],
+ [
+ 758,
+ "Geo Insulated Jogging Pant-34-Green"
+ ],
+ [
+ 764,
+ "Supernova Sport Pant-32-Black"
+ ],
+ [
+ 790,
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ [
+ 796,
+ "Mithra Warmup Pant-34-Gray"
+ ],
+ [
+ 801,
+ "Mithra Warmup Pant-36-Orange"
+ ],
+ [
+ 804,
+ "Thorpe Track Pant-32-Blue"
+ ],
+ [
+ 805,
+ "Thorpe Track Pant-32-Purple"
+ ],
+ [
+ 824,
+ "Zeppelin Yoga Pant-34-Red"
+ ],
+ [
+ 850,
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ 859,
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ 863,
+ "Aether Gym Pant -34-Green"
+ ],
+ [
+ 865,
+ "Aether Gym Pant -36-Brown"
+ ],
+ [
+ 883,
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ 895,
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ 926,
+ "Hawkeye Yoga Short-32-Blue"
+ ],
+ [
+ 936,
+ "Hawkeye Yoga Short-36-Gray"
+ ],
+ [
+ 948,
+ "Lono Yoga Short-36-Gray"
+ ],
+ [
+ 961,
+ "Rapha Sports Short-36-Blue"
+ ],
+ [
+ 977,
+ "Troy Yoga Short-32-Black"
+ ],
+ [
+ 986,
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ 1007,
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ 1014,
+ "Arcadio Gym Short-36-Red"
+ ],
+ [
+ 1033,
+ "Mona Pullover Hoodlie-S-Orange"
+ ],
+ [
+ 1040,
+ "Mona Pullover Hoodlie-L-Purple"
+ ],
+ [
+ 1063,
+ "Autumn Pullie-XS-Red"
+ ],
+ [
+ 1064,
+ "Autumn Pullie-S-Green"
+ ],
+ [
+ 1175,
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ 1182,
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ 1202,
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ 1219,
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ 1222,
+ "Josie Yoga Jacket-XS-Blue"
+ ],
+ [
+ 1225,
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ 1240,
+ "Augusta Pullover Jacket-S-Blue"
+ ],
+ [
+ 1243,
+ "Augusta Pullover Jacket-M-Blue"
+ ],
+ [
+ 1254,
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ 1255,
+ "Ingrid Running Jacket-XS-White"
+ ],
+ [
+ 1271,
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ 1283,
+ "Riona Full Zip Jacket-XL-Red"
+ ],
+ [
+ 1299,
+ "Inez Full Zip Jacket-XL-Red"
+ ],
+ [
+ 1329,
+ "Jade Yoga Jacket-XL-Blue"
+ ],
+ [
+ 1335,
+ "Nadia Elements Shell-XS-Yellow"
+ ],
+ [
+ 1336,
+ "Nadia Elements Shell-S-Black"
+ ],
+ [
+ 1340,
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ 1351,
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ 1354,
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ [
+ 1355,
+ "Neve Studio Dance Jacket-M-Black"
+ ],
+ [
+ 1365,
+ "Juno Jacket-XS-Blue"
+ ],
+ [
+ 1407,
+ "Gabrielle Micro Sleeve Top-L-Green"
+ ],
+ [
+ 1424,
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ 1430,
+ "Layla Tee-XS-Green"
+ ],
+ [
+ 1468,
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ 1473,
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ 1479,
+ "Minerva LumaTech™ V-Tee-XS-Red"
+ ],
+ [
+ 1483,
+ "Minerva LumaTech™ V-Tee-M-Black"
+ ],
+ [
+ 1500,
+ "Tiffany Fitness Tee-M-Red"
+ ],
+ [
+ 1505,
+ "Tiffany Fitness Tee-XL-Blue"
+ ],
+ [
+ 1568,
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ 1607,
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ 1631,
+ "Celeste Sports Bra-L-Red"
+ ],
+ [
+ 1644,
+ "Prima Compete Bra Top-M-Purple"
+ ],
+ [
+ 1681,
+ "Bella Tank-XL-Black"
+ ],
+ [
+ 1685,
+ "Zoe Tank-XS-Green"
+ ],
+ [
+ 1690,
+ "Zoe Tank-S-Yellow"
+ ],
+ [
+ 1695,
+ "Zoe Tank-L-Orange"
+ ],
+ [
+ 1699,
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ 1757,
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ [
+ 1818,
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ 1828,
+ "Ida Workout Parachute Pant-28-Blue"
+ ],
+ [
+ 1832,
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ 1836,
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ 1838,
+ "Cora Parachute Pant-29-Blue"
+ ],
+ [
+ 1849,
+ "Diana Tights-28-Blue"
+ ],
+ [
+ 1855,
+ "Aeon Capri-28-Black"
+ ],
+ [
+ 1859,
+ "Aeon Capri-29-Blue"
+ ],
+ [
+ 1885,
+ "Sylvia Capri-28-Red"
+ ],
+ [
+ 1905,
+ "Fiona Fitness Short-28-Green"
+ ],
+ [
+ 1906,
+ "Fiona Fitness Short-28-Red"
+ ],
+ [
+ 1910,
+ "Fiona Fitness Short-30-Black"
+ ],
+ [
+ 1913,
+ "Fiona Fitness Short-31-Black"
+ ],
+ [
+ 1922,
+ "Maxima Drawstring Short-28-Yellow"
+ ],
+ [
+ 1932,
+ "Maxima Drawstring Short-32-Gray"
+ ],
+ [
+ 1938,
+ "Gwen Drawstring Bike Short-28-Orange"
+ ],
+ [
+ 1941,
+ "Gwen Drawstring Bike Short-29-Orange"
+ ],
+ [
+ 1958,
+ "Artemis Running Short-30-Black"
+ ],
+ [
+ 1988,
+ "Angel Light Running Short-29-Orange"
+ ],
+ [
+ 1989,
+ "Angel Light Running Short-29-Purple"
+ ],
+ [
+ 1993,
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ [
+ 1995,
+ "Echo Fit Compression Short-29-Blue"
+ ],
+ [
+ 2022,
+ "Ina Compression Short-29-Orange"
+ ],
+ [
+ 2023,
+ "Ina Compression Short-29-Red"
+ ],
+ [
+ 2038,
+ "Erika Running Short-32-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many search queries with the text 'hollister' are there in store ID 1?",
+ "sql": "SELECT COUNT(*) FROM search_query WHERE query_text = 'hollister' AND store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Wholesale' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for 'Gobi HeatTec® Tee-M-Orange' in 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Gobi HeatTec® Tee-M-Orange' AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which search query in store ID 1 has the highest popularity?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 54?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 54;",
+ "answer": [
+ "jessica.wong@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.wong@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Aim Analog Watch'.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Aim Analog Watch';",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "2.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing city for customer 'Bob Johnson'?",
+ "sql": "SELECT billing_city FROM customer_grid_flat WHERE name = 'Bob Johnson';",
+ "answer": [
+ "Richardson"
+ ],
+ "sql_execute_result": [
+ [
+ "Richardson"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review title for review ID 340.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 340;",
+ "answer": [
+ "Great fit - love the v-neck design!"
+ ],
+ "sql_execute_result": [
+ [
+ "Great fit - love the v-neck design! "
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Erica Evercool Sports Bra-XS-Yellow'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Erica Evercool Sports Bra-XS-Yellow';",
+ "answer": [
+ "39.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "39.0000"
+ ],
+ [
+ "39.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the nickname for the reviewer of review ID 159.",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 159;",
+ "answer": [
+ "Chasidy"
+ ],
+ "sql_execute_result": [
+ [
+ "Chasidy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the first shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value LIMIT 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered from store ID 1 in 2023?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "161"
+ ],
+ "sql_execute_result": [
+ [
+ "161.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing postcode for customer 'Samantha Wu'?",
+ "sql": "SELECT billing_postcode FROM customer_grid_flat WHERE name = 'Samantha Wu';",
+ "answer": [
+ "33139"
+ ],
+ "sql_execute_result": [
+ [
+ "33139"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Summit Watch'.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Summit Watch';",
+ "answer": [
+ "140",
+ "242"
+ ],
+ "sql_execute_result": [
+ [
+ 140
+ ],
+ [
+ 242
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with entity ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the order ID 1.",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE entity_id = 1;",
+ "answer": [
+ "Veronica",
+ "Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1428?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1428;",
+ "answer": [
+ "WS03"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name with the highest rating position on January 20, 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-01-20' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Ryker LumaTech\u2122 Tee (Crew-neck)-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders did customer with email 'customer5@example.com' place?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer5@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1428 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1428;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders placed by customer with email 'roni_cost@example.com'.",
+ "sql": "SELECT entity_id, status, grand_total FROM sales_order WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "Order ID: 1, Status: canceled, Total: 36.3900",
+ "Order ID: 2, Status: closed, Total: 39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "canceled",
+ "36.3900"
+ ],
+ [
+ 2,
+ "closed",
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status for product with ID 519?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 519;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region_id 92?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 92 AND locale = 'en_US';",
+ "answer": [
+ "Sachsen-Anhalt"
+ ],
+ "sql_execute_result": [
+ [
+ "Sachsen-Anhalt"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for stock ID 1?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE stock_id = 1 AND qty > 0;",
+ "answer": [
+ "1890"
+ ],
+ "sql_execute_result": [
+ [
+ 1890
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000002'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'MT02-M-Gray'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MT02-M-Gray';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 926 visible in the store with store ID 0?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 926 AND attribute_id = 97 AND store_id = 0;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the order status 'closed'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'closed';",
+ "answer": [
+ "Closed"
+ ],
+ "sql_execute_result": [
+ [
+ "Closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product ID 971?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 971;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of search results for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with stock_id 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for the order with increment ID '000000080'?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE increment_id = '000000080';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer who placed the order with increment ID '000000039'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000039';",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with identifier 'about-us'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the order placed by customer with ID 31?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_id = 31;",
+ "answer": [
+ "1189.04"
+ ],
+ "sql_execute_result": [
+ [
+ "171.6000"
+ ],
+ [
+ "203.0400"
+ ],
+ [
+ "52.2000"
+ ],
+ [
+ "97.0000"
+ ],
+ [
+ "136.4000"
+ ],
+ [
+ "181.0000"
+ ],
+ [
+ "189.8000"
+ ],
+ [
+ "37.0000"
+ ],
+ [
+ "121.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for the entity ID 18 under catalog category varchar attributes.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 18 AND attribute_id = 45;",
+ "answer": [
+ "Pants"
+ ],
+ "sql_execute_result": [
+ [
+ "Pants"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute value for product entity ID 1008 with attribute ID 144 in the integer attribute table?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1008 AND attribute_id = 144;",
+ "answer": [
+ "176"
+ ],
+ "sql_execute_result": [
+ [
+ 176
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for order with increment ID '000000259'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000259';",
+ "answer": [
+ "189.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "189.6000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout type for the CMS page with the title 'Home Page'?",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = 'Home Page';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price of the bestseller product with ID 33 in 2023.",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_yearly WHERE product_id = 33 AND period = '2023-01-01';",
+ "answer": [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the address on 6146 Honey Bluff Parkway?",
+ "sql": "SELECT firstname, lastname FROM customer_address_entity WHERE street = '6146 Honey Bluff Parkway';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "How many products and their ratings were found for store ID 0 in 2023?",
+ "sql": "SELECT product_name, rating_pos FROM sales_bestsellers_aggregated_yearly WHERE store_id = 0 AND period = '2023-01-01';",
+ "answer": [
+ "141"
+ ],
+ "sql_execute_result": [
+ [
+ "Crown Summit Backpack",
+ 58
+ ],
+ [
+ "Impulse Duffle",
+ 11
+ ],
+ [
+ "Endeavor Daytrip Backpack",
+ 40
+ ],
+ [
+ "Overnight Duffle",
+ 2
+ ],
+ [
+ "Dual Handle Cardio Ball",
+ 107
+ ],
+ [
+ "Quest Lumaflex™ Band",
+ 34
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit ",
+ 131
+ ],
+ [
+ "Sprite Stasis Ball 55 cm",
+ 25
+ ],
+ [
+ "Sprite Stasis Ball 55 cm",
+ 129
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ 104
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ 15
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ 8
+ ],
+ [
+ "Sprite Stasis Ball 75 cm",
+ 109
+ ],
+ [
+ "Sprite Yoga Strap 6 foot",
+ 1
+ ],
+ [
+ "Sprite Yoga Strap 8 foot",
+ 6
+ ],
+ [
+ "Aim Analog Watch",
+ 10
+ ],
+ [
+ "Endurance Watch",
+ 75
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Black",
+ 29
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black",
+ 74
+ ],
+ [
+ "Bruno Compete Hoodie-L-Black",
+ 126
+ ],
+ [
+ "Frankie Sweatshirt-XS-Green",
+ 41
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Black",
+ 108
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Blue",
+ 65
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Purple",
+ 19
+ ],
+ [
+ "Stark Fundamental Hoodie-M-Blue",
+ 121
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue",
+ 4
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Red",
+ 91
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red",
+ 116
+ ],
+ [
+ "Marco Lightweight Active Hoodie-S-Green",
+ 18
+ ],
+ [
+ "Beaumont Summit Kit-M-Red",
+ 105
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XL-Black",
+ 138
+ ],
+ [
+ "Taurus Elements Shell-XS-White",
+ 77
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Black",
+ 42
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Purple",
+ 125
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Black",
+ 63
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Blue",
+ 88
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange",
+ 9
+ ],
+ [
+ "Aero Daily Fitness Tee-S-Black",
+ 52
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red",
+ 137
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-L-Green",
+ 31
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black",
+ 51
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray",
+ 22
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red",
+ 61
+ ],
+ [
+ "Primo Endurance Tank-M-Red",
+ 35
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray",
+ 68
+ ],
+ [
+ "Sparta Gym Tank-XL-Green",
+ 14
+ ],
+ [
+ "Tiberius Gym Tank-M-Yellow",
+ 89
+ ],
+ [
+ "Atlas Fitness Tank-L-Blue",
+ 69
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Gray",
+ 94
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Purple",
+ 82
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Green",
+ 102
+ ],
+ [
+ "Supernova Sport Pant-32-Black",
+ 112
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray",
+ 132
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray",
+ 38
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange",
+ 90
+ ],
+ [
+ "Thorpe Track Pant-32-Blue",
+ 135
+ ],
+ [
+ "Thorpe Track Pant-32-Purple",
+ 64
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Red",
+ 32
+ ],
+ [
+ "Orestes Yoga Pant -34-Green",
+ 84
+ ],
+ [
+ "Aether Gym Pant -33-Brown",
+ 141
+ ],
+ [
+ "Aether Gym Pant -34-Green",
+ 118
+ ],
+ [
+ "Aether Gym Pant -36-Brown",
+ 120
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red",
+ 134
+ ],
+ [
+ "Apollo Running Short-33-Black",
+ 66
+ ],
+ [
+ "Hawkeye Yoga Short-32-Blue",
+ 16
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray",
+ 12
+ ],
+ [
+ "Lono Yoga Short-36-Gray",
+ 56
+ ],
+ [
+ "Rapha Sports Short-36-Blue",
+ 115
+ ],
+ [
+ "Troy Yoga Short-32-Black",
+ 117
+ ],
+ [
+ "Troy Yoga Short-36-Black",
+ 43
+ ],
+ [
+ "Arcadio Gym Short-33-Blue",
+ 73
+ ],
+ [
+ "Arcadio Gym Short-36-Red",
+ 76
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Orange",
+ 47
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Purple",
+ 46
+ ],
+ [
+ "Autumn Pullie-XS-Red",
+ 127
+ ],
+ [
+ "Autumn Pullie-S-Green",
+ 28
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue",
+ 30
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue",
+ 95
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green",
+ 100
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow",
+ 36
+ ],
+ [
+ "Josie Yoga Jacket-XS-Blue",
+ 62
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue",
+ 79
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue",
+ 21
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue",
+ 71
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red",
+ 81
+ ],
+ [
+ "Ingrid Running Jacket-XS-White",
+ 37
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red",
+ 128
+ ],
+ [
+ "Riona Full Zip Jacket-XL-Red",
+ 113
+ ],
+ [
+ "Inez Full Zip Jacket-XL-Red",
+ 23
+ ],
+ [
+ "Jade Yoga Jacket-XL-Blue",
+ 106
+ ],
+ [
+ "Nadia Elements Shell-XS-Yellow",
+ 119
+ ],
+ [
+ "Nadia Elements Shell-S-Black",
+ 122
+ ],
+ [
+ "Nadia Elements Shell-M-Orange",
+ 87
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange",
+ 59
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange",
+ 48
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Black",
+ 93
+ ],
+ [
+ "Juno Jacket-XS-Blue",
+ 53
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green",
+ 98
+ ],
+ [
+ "Iris Workout Top-L-Red",
+ 110
+ ],
+ [
+ "Layla Tee-XS-Green",
+ 5
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White",
+ 136
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black",
+ 124
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red",
+ 7
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Black",
+ 20
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red",
+ 101
+ ],
+ [
+ "Tiffany Fitness Tee-XL-Blue",
+ 45
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow",
+ 50
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow",
+ 54
+ ],
+ [
+ "Celeste Sports Bra-L-Red",
+ 24
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple",
+ 33
+ ],
+ [
+ "Bella Tank-XL-Black",
+ 80
+ ],
+ [
+ "Zoe Tank-XS-Green",
+ 70
+ ],
+ [
+ "Zoe Tank-S-Yellow",
+ 27
+ ],
+ [
+ "Zoe Tank-L-Orange",
+ 83
+ ],
+ [
+ "Zoe Tank-XL-Yellow",
+ 26
+ ],
+ [
+ "Chloe Compete Tank-M-Yellow",
+ 111
+ ],
+ [
+ "Karmen Yoga Pant-29-White",
+ 130
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Blue",
+ 139
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple",
+ 3
+ ],
+ [
+ "Cora Parachute Pant-28-White",
+ 57
+ ],
+ [
+ "Cora Parachute Pant-29-Blue",
+ 72
+ ],
+ [
+ "Diana Tights-28-Blue",
+ 55
+ ],
+ [
+ "Aeon Capri-28-Black",
+ 123
+ ],
+ [
+ "Aeon Capri-29-Blue",
+ 67
+ ],
+ [
+ "Sylvia Capri-28-Red",
+ 44
+ ],
+ [
+ "Fiona Fitness Short-28-Green",
+ 39
+ ],
+ [
+ "Fiona Fitness Short-28-Red",
+ 133
+ ],
+ [
+ "Fiona Fitness Short-30-Black",
+ 114
+ ],
+ [
+ "Fiona Fitness Short-31-Black",
+ 140
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow",
+ 49
+ ],
+ [
+ "Maxima Drawstring Short-32-Gray",
+ 92
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Orange",
+ 97
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Orange",
+ 86
+ ],
+ [
+ "Artemis Running Short-30-Black",
+ 17
+ ],
+ [
+ "Angel Light Running Short-29-Orange",
+ 99
+ ],
+ [
+ "Angel Light Running Short-29-Purple",
+ 13
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple",
+ 96
+ ],
+ [
+ "Echo Fit Compression Short-29-Blue",
+ 60
+ ],
+ [
+ "Ina Compression Short-29-Orange",
+ 78
+ ],
+ [
+ "Ina Compression Short-29-Red",
+ 85
+ ],
+ [
+ "Erika Running Short-32-Purple",
+ 103
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute with code 'sku'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'sku';",
+ "answer": [
+ "Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'pattern' attribute user-defined?",
+ "sql": "SELECT is_user_defined FROM eav_attribute WHERE attribute_code = 'pattern';",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are used in product listing and are global?",
+ "sql": "SELECT attribute_id, is_global, used_in_product_listing FROM catalog_eav_attribute WHERE is_global = 1 AND used_in_product_listing = 1;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 77,
+ 1,
+ 1
+ ],
+ [
+ 78,
+ 1,
+ 1
+ ],
+ [
+ 93,
+ 1,
+ 1
+ ],
+ [
+ 107,
+ 1,
+ 1
+ ],
+ [
+ 123,
+ 1,
+ 1
+ ],
+ [
+ 125,
+ 1,
+ 1
+ ],
+ [
+ 128,
+ 1,
+ 1
+ ],
+ [
+ 129,
+ 1,
+ 1
+ ],
+ [
+ 131,
+ 1,
+ 1
+ ],
+ [
+ 132,
+ 1,
+ 1
+ ],
+ [
+ 133,
+ 1,
+ 1
+ ],
+ [
+ 144,
+ 1,
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List all customers in Arizona with their phone numbers.",
+ "sql": "SELECT firstname, lastname, telephone FROM customer_address_entity WHERE region = 'Arizona';",
+ "answer": [
+ "Adam Garcia, 6025551212",
+ "Jacob Rivera, 6025551212",
+ "Isaac Rodriguez, 6025551212"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam",
+ "Garcia",
+ "6025551212"
+ ],
+ [
+ "Jacob",
+ "Rivera",
+ "6025551212"
+ ],
+ [
+ "Isaac",
+ "Rodriguez",
+ "6025551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum warning value for active sales sequence profiles?",
+ "sql": "SELECT MAX(warning_value) FROM sales_sequence_profile WHERE is_active = 1;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the search weight for the attribute with ID 63?",
+ "sql": "SELECT search_weight FROM catalog_eav_attribute WHERE attribute_id = 63;",
+ "answer": [
+ "1.0"
+ ],
+ "sql_execute_result": [
+ [
+ 1.0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of stock available for product ID 917?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 917;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the original price of the 'Summit Watch' in order item ID 401?",
+ "sql": "SELECT original_price FROM sales_order_item WHERE item_id = 401;",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is associated with the sales shipment item that has a SKU of 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product type for the sales order item with ID 1161.",
+ "sql": "SELECT product_type FROM sales_order_item WHERE item_id = 1161;",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the CMS page with the identifier 'enable-cookies'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'enable-cookies';",
+ "answer": [
+ "Enable Cookies"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Cookies"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 47 visible on the front end?",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = 47;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered in sales order item ID 1491?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 1491;",
+ "answer": [
+ "MSH06-36-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH06-36-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Which CMS page has the title '404 Not Found'?",
+ "sql": "SELECT title FROM cms_page WHERE page_id = 1;",
+ "answer": [
+ "404 Not Found"
+ ],
+ "sql_execute_result": [
+ [
+ "404 Not Found"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity of 'Eos V-Neck Hoodie' in the sales shipment item with entity ID 4?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE entity_id = 4;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 965?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 965;",
+ "answer": [
+ "MSH08-32-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH08-32-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name for the region with region_id 897.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 897;",
+ "answer": [
+ "Pescara"
+ ],
+ "sql_execute_result": [
+ [
+ "Pescara"
+ ]
+ ]
+ },
+ {
+ "question": "What is the country code for the region with region_id 426?",
+ "sql": "SELECT country_id FROM directory_country_region WHERE region_id = 426;",
+ "answer": [
+ "LV"
+ ],
+ "sql_execute_result": [
+ [
+ "LV"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region_id 230 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 230 AND locale = 'en_US';",
+ "answer": [
+ "Loz\u00e8re"
+ ],
+ "sql_execute_result": [
+ [
+ "Loz\u00e8re"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute_id for the product with entity_id 1353 and value_id 8303.",
+ "sql": "SELECT attribute_id FROM catalog_product_entity_int WHERE entity_id = 1353 AND value_id = 8303;",
+ "answer": [
+ "144"
+ ],
+ "sql_execute_result": [
+ [
+ 144
+ ]
+ ]
+ },
+ {
+ "question": "What is the type_id of the product with SKU 'WSH12-32-Green'?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'WSH12-32-Green';",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value after 194 in the sequence_order_1 table.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 WHERE sequence_value > 194 ORDER BY sequence_value ASC LIMIT 1;",
+ "answer": [
+ "195"
+ ],
+ "sql_execute_result": [
+ [
+ 195
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute_set_id of the product with entity_id 2030?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE entity_id = 2030;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'PT-18'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'PT-18';",
+ "answer": [
+ "Viseu"
+ ],
+ "sql_execute_result": [
+ [
+ "Viseu"
+ ]
+ ]
+ },
+ {
+ "question": "Find the locale for the region named '\u00cdpeiros'.",
+ "sql": "SELECT locale FROM directory_country_region_name WHERE name = '\u00cdpeiros';",
+ "answer": [
+ "en_US"
+ ],
+ "sql_execute_result": [
+ [
+ "en_US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 30?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE customer_id = 30 LIMIT 1;",
+ "answer": [
+ "david.lee@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "david.lee@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'coolcat321@hotmail.com'?",
+ "sql": "SELECT increment_id FROM sales_order_grid WHERE customer_email = 'coolcat321@hotmail.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "000000046"
+ ],
+ [
+ "000000066"
+ ],
+ [
+ "000000081"
+ ],
+ [
+ "000000088"
+ ],
+ [
+ "000000132"
+ ],
+ [
+ "000000137"
+ ],
+ [
+ "000000148"
+ ],
+ [
+ "000000154"
+ ],
+ [
+ "000000161"
+ ],
+ [
+ "000000180"
+ ],
+ [
+ "000000232"
+ ],
+ [
+ "000000239"
+ ],
+ [
+ "000000243"
+ ],
+ [
+ "000000249"
+ ],
+ [
+ "000000266"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity in stock for product with ID 228?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 228;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many anonymous review titles were found?",
+ "sql": "SELECT title FROM review_detail WHERE customer_id IS NULL;",
+ "answer": [
+ "350"
+ ],
+ "sql_execute_result": [
+ [
+ "I prefer more compartments"
+ ],
+ [
+ "I use it a lot "
+ ],
+ [
+ "I've had this thing for really long"
+ ],
+ [
+ "Decent bag"
+ ],
+ [
+ "Screwed up my back"
+ ],
+ [
+ "Awesome bag"
+ ],
+ [
+ "The back needs more padding"
+ ],
+ [
+ "I bought this backpack for my son"
+ ],
+ [
+ "awesome for going back and forth"
+ ],
+ [
+ "comfy and i don't feel like a loser"
+ ],
+ [
+ "The shoulder strap broke "
+ ],
+ [
+ "Good for work. Holds everything "
+ ],
+ [
+ "Great bag! I use it for everything! "
+ ],
+ [
+ "This bag is really cool"
+ ],
+ [
+ "Color is weird"
+ ],
+ [
+ "I am OBSESSED with these"
+ ],
+ [
+ "This thing is awesome "
+ ],
+ [
+ "It slides around on my wrist"
+ ],
+ [
+ "Working flawlessly"
+ ],
+ [
+ "offers a lot of technology"
+ ],
+ [
+ "Hydration alarm"
+ ],
+ [
+ "It works ok but the ugliness is blinding"
+ ],
+ [
+ "Watch too tight"
+ ],
+ [
+ "No ticktock"
+ ],
+ [
+ "Not a bad watch for the price"
+ ],
+ [
+ "the only watch I wear"
+ ],
+ [
+ "Dual time zone settings"
+ ],
+ [
+ "Really perfect for travel "
+ ],
+ [
+ "I really like the modern look"
+ ],
+ [
+ "This watch is so tight"
+ ],
+ [
+ "My favorite layers"
+ ],
+ [
+ "Weird looking pocket"
+ ],
+ [
+ "Perfect layer for the game"
+ ],
+ [
+ "The fabric is great"
+ ],
+ [
+ "This jacket isn't keeping me warm"
+ ],
+ [
+ "I don't feel protected"
+ ],
+ [
+ "avid hiker/snowboarder"
+ ],
+ [
+ "Has never let me down"
+ ],
+ [
+ "Practically perferct"
+ ],
+ [
+ "Excellent quality. I actually love"
+ ],
+ [
+ "I just live for this track jacket"
+ ],
+ [
+ "Not 100% sure how I feel"
+ ],
+ [
+ "fleece lining"
+ ],
+ [
+ "I didn't think it was that warm"
+ ],
+ [
+ "for my son to wear to school "
+ ],
+ [
+ "Kinda bulky"
+ ],
+ [
+ "easy to take apart"
+ ],
+ [
+ "does everything it's suppose"
+ ],
+ [
+ "Love it; don't have to take off gloves"
+ ],
+ [
+ "Wish buttons were on sleeve"
+ ],
+ [
+ "Great on my evening ride"
+ ],
+ [
+ "Loop thing broke"
+ ],
+ [
+ "They chafed me!"
+ ],
+ [
+ "They are comfy"
+ ],
+ [
+ "Saggy pants"
+ ],
+ [
+ "These are really bulky"
+ ],
+ [
+ "Inseam is WAY too long"
+ ],
+ [
+ "Keeping me warm before games"
+ ],
+ [
+ "There's nothing to dislike"
+ ],
+ [
+ "The mesh lining sometimes snags"
+ ],
+ [
+ "These are great!"
+ ],
+ [
+ "I bought these for my man."
+ ],
+ [
+ "I like them"
+ ],
+ [
+ "THESE PANTS KEEP ME WARM"
+ ],
+ [
+ "Good dog walking pants"
+ ],
+ [
+ "The draw string is more like half a draw"
+ ],
+ [
+ "I got this for running"
+ ],
+ [
+ "Nice and light. "
+ ],
+ [
+ "I bought 5 of the same color!"
+ ],
+ [
+ "my new favorite CrossFit shirt"
+ ],
+ [
+ "Works for the gym"
+ ],
+ [
+ "I like the crew neck"
+ ],
+ [
+ "Hate the fabric"
+ ],
+ [
+ "Ready to hit the gym"
+ ],
+ [
+ "Too small "
+ ],
+ [
+ "it says moisturewicking?"
+ ],
+ [
+ "This shirt is a dream come true"
+ ],
+ [
+ "Awesome tee! Not cheap."
+ ],
+ [
+ "Liked the way it fit mostly"
+ ],
+ [
+ "Keeps me cool"
+ ],
+ [
+ "Gets the job done. Even when I'm pouring"
+ ],
+ [
+ "I sweat SO much."
+ ],
+ [
+ "This shirt is too tight and too thin."
+ ],
+ [
+ "Great training top. "
+ ],
+ [
+ "I love this shirt. Perfect fit"
+ ],
+ [
+ "Comfortable and soft"
+ ],
+ [
+ "It's okay, a little boring. "
+ ],
+ [
+ "Very comfy but wears thin"
+ ],
+ [
+ "I've lost 50 pounds in 5 months"
+ ],
+ [
+ "Fell apart in wash"
+ ],
+ [
+ "Fantastic shirt for the price!"
+ ],
+ [
+ "Luma got it right with this one."
+ ],
+ [
+ "Ripped the FIRST TIME I wore "
+ ],
+ [
+ "Really comfy shirt"
+ ],
+ [
+ "I work out a lot"
+ ],
+ [
+ "Nice fit and fabric"
+ ],
+ [
+ "I purchased this tank top for my son"
+ ],
+ [
+ "Yea. This pilled imeddiately"
+ ],
+ [
+ "Why can't you make this in my size?"
+ ],
+ [
+ "Wear this on evening runs"
+ ],
+ [
+ "Great for baoting "
+ ],
+ [
+ "These do drain well"
+ ],
+ [
+ "They work great in water"
+ ],
+ [
+ "The only things I care about when I'm ru"
+ ],
+ [
+ "Great! I wear these almost every day-esp"
+ ],
+ [
+ "These sit in my foyer waiting for my eve"
+ ],
+ [
+ "Running in these are imPOSSible!! I only"
+ ],
+ [
+ "Pretty average cts. Their comfrtable whe"
+ ],
+ [
+ "I wear these to my gym daily. I go hard "
+ ],
+ [
+ "Love, love, love - did I say love? It wa"
+ ],
+ [
+ "I slipped on a rock on these shoes and I"
+ ],
+ [
+ "The only thing I don't like about these "
+ ],
+ [
+ "These are really good to play tennis in "
+ ],
+ [
+ "I wore these until they finally gave out"
+ ],
+ [
+ "How awesome is it to find a product that"
+ ],
+ [
+ "I wouldn't be a runner if it wasn't for "
+ ],
+ [
+ "I wear these for a variety of sports and"
+ ],
+ [
+ "Awesome shoes!! I didn't realize how muc"
+ ],
+ [
+ "They ran too narrow for me and the mater"
+ ],
+ [
+ "These are really REALLY LIGHT! Not much "
+ ],
+ [
+ "Not great on slippery grass. I wear them"
+ ],
+ [
+ "I used these as racing flats and they we"
+ ],
+ [
+ "Unflattering"
+ ],
+ [
+ "Keeps me comfortable"
+ ],
+ [
+ "Nothing to write home about"
+ ],
+ [
+ "Average tank"
+ ],
+ [
+ "NOT for skinny dudes "
+ ],
+ [
+ "Keeps me feeling dry"
+ ],
+ [
+ "I feel awesome when I wear this"
+ ],
+ [
+ "Comfortable"
+ ],
+ [
+ "I bought a few of these for my husband. "
+ ],
+ [
+ "TINY neck hole??"
+ ],
+ [
+ "Shirt can stink after"
+ ],
+ [
+ "Wish it was longer"
+ ],
+ [
+ "Razorback version?"
+ ],
+ [
+ "Fits true to size, feels great."
+ ],
+ [
+ "I bought this bag for my daughter"
+ ],
+ [
+ "Goes everywhere with me"
+ ],
+ [
+ "The material is a little thin"
+ ],
+ [
+ "OBSESSED with this!"
+ ],
+ [
+ "Great but pricey"
+ ],
+ [
+ "I hate working out...This does not help."
+ ],
+ [
+ "Want more resistance"
+ ],
+ [
+ "Agreed. More resistance"
+ ],
+ [
+ "Too lazy to go to gym"
+ ],
+ [
+ "Do not buy!"
+ ],
+ [
+ "They work, nothing special. "
+ ],
+ [
+ "Good value for the price"
+ ],
+ [
+ "I BRING THIS TO ALL MY MEETS!"
+ ],
+ [
+ "perfect for when I'm too lazy"
+ ],
+ [
+ "PURPLES"
+ ],
+ [
+ "these are ok"
+ ],
+ [
+ "Will whip you into shape!"
+ ],
+ [
+ "Easy to clean"
+ ],
+ [
+ "Perfect weight"
+ ],
+ [
+ "should've got a while ago"
+ ],
+ [
+ "I love this bag! It's cute"
+ ],
+ [
+ "I pack a TON of stuff"
+ ],
+ [
+ "Wish there were pockets "
+ ],
+ [
+ "Motivated by this Bag!"
+ ],
+ [
+ "Wish it had more pocket"
+ ],
+ [
+ "Fits tons of gear"
+ ],
+ [
+ "ok bag for a day's hike"
+ ],
+ [
+ "I bike four miles a day to work and back"
+ ],
+ [
+ "I would love this bag EXCEPT . . ."
+ ],
+ [
+ "it's really ugly,"
+ ],
+ [
+ "What's not to like about this bag?!!"
+ ],
+ [
+ "Did I get floor model?"
+ ],
+ [
+ "I bought this backpack for my daughter"
+ ],
+ [
+ "I heart this backpack so hard. "
+ ],
+ [
+ "Can I give zero stars?"
+ ],
+ [
+ "Um, not actually waterproof"
+ ],
+ [
+ "A roomy duffle"
+ ],
+ [
+ "doesn't hold that much"
+ ],
+ [
+ "Good bank for small hand"
+ ],
+ [
+ "Super sleek, love it. "
+ ],
+ [
+ "My mom loves it"
+ ],
+ [
+ "Not classical but cool"
+ ],
+ [
+ "Buckle BROKE"
+ ],
+ [
+ "It died after a week"
+ ],
+ [
+ "The strap broke"
+ ],
+ [
+ "Pieces kept coming off"
+ ],
+ [
+ "Keeps excellent time and is pretty tough"
+ ],
+ [
+ "Has been through quite a few adventures "
+ ],
+ [
+ "Rides up during workouts"
+ ],
+ [
+ "Great for cooler runs. "
+ ],
+ [
+ "I literally wear this everywhere"
+ ],
+ [
+ "I can't get enough of this hoodie"
+ ],
+ [
+ "Not really flattering"
+ ],
+ [
+ "Softest hoodie ever"
+ ],
+ [
+ "The fabric stains easily"
+ ],
+ [
+ "I wear it to class"
+ ],
+ [
+ "Zipper is goofy"
+ ],
+ [
+ "Needs long sleeves please"
+ ],
+ [
+ "My favorite hoodie"
+ ],
+ [
+ "Not very stylish"
+ ],
+ [
+ "Kept me warm"
+ ],
+ [
+ "Great value"
+ ],
+ [
+ "Best hoodies I've owned."
+ ],
+ [
+ "Love it!"
+ ],
+ [
+ "Fall weather jogs or walks"
+ ],
+ [
+ "Soft but not wrm"
+ ],
+ [
+ "Ultra comfy"
+ ],
+ [
+ "Pocket too small for mp3"
+ ],
+ [
+ "Fitted, awesome"
+ ],
+ [
+ "Shrinks a lot"
+ ],
+ [
+ "Shrunk right away!"
+ ],
+ [
+ "my new fave zip up"
+ ],
+ [
+ "Only shirt I wear anywmore"
+ ],
+ [
+ "it's so light and really long!"
+ ],
+ [
+ "Wish I'd bought the tshirt"
+ ],
+ [
+ "Fleece inside, sweater outside"
+ ],
+ [
+ "Great for hiking and camping"
+ ],
+ [
+ "Super warm."
+ ],
+ [
+ "This is REALLY comfortable!"
+ ],
+ [
+ "Thumb holes rock!"
+ ],
+ [
+ "REALLY lightweight."
+ ],
+ [
+ "Nice for skiing"
+ ],
+ [
+ "Most comfortable jacket"
+ ],
+ [
+ "a little short for me"
+ ],
+ [
+ "Square shape"
+ ],
+ [
+ "This is my go-to jacket"
+ ],
+ [
+ "I wear this pretty much every day!"
+ ],
+ [
+ "Horrible unflatterung design"
+ ],
+ [
+ "The actual color is brighter"
+ ],
+ [
+ "Big back pocket"
+ ],
+ [
+ "Everyone loves this jacket on me"
+ ],
+ [
+ "Rain proof?"
+ ],
+ [
+ "Overheated"
+ ],
+ [
+ "Great colors!"
+ ],
+ [
+ "This is the most dependable piece I own."
+ ],
+ [
+ "Not for cold weather"
+ ],
+ [
+ "Perfect, perfect, perfect in every way. "
+ ],
+ [
+ "Awesome bottoms "
+ ],
+ [
+ "Great for yoga"
+ ],
+ [
+ "Yoga is for hippees"
+ ],
+ [
+ "I can't stop lookin in the mirror! "
+ ],
+ [
+ "Want more colors"
+ ],
+ [
+ "I have 5 pairs"
+ ],
+ [
+ "These pants move so well!"
+ ],
+ [
+ "Seams separated righth away"
+ ],
+ [
+ "high waistband, no muffin top!"
+ ],
+ [
+ "Relaxing"
+ ],
+ [
+ "LOVE, LOVE, LOVE. "
+ ],
+ [
+ "NOT flattering."
+ ],
+ [
+ "These are soft and stretchy"
+ ],
+ [
+ "I bought these for yoga"
+ ],
+ [
+ "These pants are so cute!"
+ ],
+ [
+ "good for PJs but that's about it"
+ ],
+ [
+ "These are my favorite pants. "
+ ],
+ [
+ "Soooooooooooooo light!"
+ ],
+ [
+ "Cute."
+ ],
+ [
+ "I really dig this shirt for races"
+ ],
+ [
+ "This shirt is decent for running"
+ ],
+ [
+ "Wish it was longer"
+ ],
+ [
+ "Fits my large head TG"
+ ],
+ [
+ "Flatters my big build"
+ ],
+ [
+ "Fits my fiancee better"
+ ],
+ [
+ "Fabric is great for sport"
+ ],
+ [
+ "Doesn't help my figure one bit"
+ ],
+ [
+ "What's with the sleeve cut?"
+ ],
+ [
+ "Light, comfy"
+ ],
+ [
+ "Light but tight"
+ ],
+ [
+ "Looks and feels aweseom "
+ ],
+ [
+ "Really close-fitting. Do not love."
+ ],
+ [
+ "Not at all soft"
+ ],
+ [
+ "This T is a no brainer-solid color"
+ ],
+ [
+ "Thank you! "
+ ],
+ [
+ "Um, NOT flattering at ALL."
+ ],
+ [
+ "Like the color .sleeves were too tight. "
+ ],
+ [
+ "Sooooooooooo soft! "
+ ],
+ [
+ "Cute, comfy. "
+ ],
+ [
+ "I love that it's so lightweight. "
+ ],
+ [
+ "who doesn't love a racerback, amiright?!"
+ ],
+ [
+ "I where this AAALLLLL the time"
+ ],
+ [
+ "soft but a little tight"
+ ],
+ [
+ "Love the fabric, but it's huge!"
+ ],
+ [
+ "Soft"
+ ],
+ [
+ "omg I love this tank top, it's perfect"
+ ],
+ [
+ "cool and dry"
+ ],
+ [
+ "Not great"
+ ],
+ [
+ "What a versatile shirt!"
+ ],
+ [
+ "So comfortable I almost feel barefoot. T"
+ ],
+ [
+ "On the plus side, the perforated cushion"
+ ],
+ [
+ "I threw them out when the mushy lining s"
+ ],
+ [
+ "Beyond perfection! I always get tons of "
+ ],
+ [
+ "These look awesome with EVERYTHING! Hone"
+ ],
+ [
+ "The suede upper makes these pretty hard "
+ ],
+ [
+ "Love a preppy sneaker! These are still a"
+ ],
+ [
+ "These are my favorite new pair of sneake"
+ ],
+ [
+ "Have had these for quite a while and the"
+ ],
+ [
+ "Really comfy and awesome for running or "
+ ],
+ [
+ "Velcro straps?? Are you kidding me? Am I"
+ ],
+ [
+ "Cool-looking kicks! I'd wear them anywhe"
+ ],
+ [
+ "I absolutely love these trainers. I can "
+ ],
+ [
+ "Don't like the strap on top; gets too lo"
+ ],
+ [
+ "Love the no laces and they feel really g"
+ ],
+ [
+ "I love these for when I walk the boardwa"
+ ],
+ [
+ "These looked really ugly on my feet when"
+ ],
+ [
+ "I can appreciate the concept, but I thin"
+ ],
+ [
+ "I couldn't live without these. I wear th"
+ ],
+ [
+ "These are really well made and so lightw"
+ ],
+ [
+ "Want these in every single color Luma ma"
+ ],
+ [
+ "Ummm, fashion? If you say so. They're co"
+ ],
+ [
+ "Cute and comfortable definitely. The ela"
+ ],
+ [
+ "Love love LOVE!!! I can't get enough of "
+ ],
+ [
+ "It was really hard to find the right siz"
+ ],
+ [
+ "VERY LIGHTWEIGHT COMFY-GOOD SHOES"
+ ],
+ [
+ "Wore these for a year and they started f"
+ ],
+ [
+ "I am in love with these shoes and will b"
+ ],
+ [
+ "Design is adorable-when you have cute wo"
+ ],
+ [
+ "Have no idea what all the fuss is about "
+ ],
+ [
+ "Pic is WAY different then the real thing"
+ ],
+ [
+ "Meh, I'm not hating them, but I'm not in"
+ ],
+ [
+ "I'm a mom on the go and I love these sho"
+ ],
+ [
+ "Not exactly true to size"
+ ],
+ [
+ "Snug fit without being too tight"
+ ],
+ [
+ "bra stays comfy and dry"
+ ],
+ [
+ "One of my favorites b/c no chafing!"
+ ],
+ [
+ "Doesn't fit me. Luma fail."
+ ],
+ [
+ "does not fit. worthless."
+ ],
+ [
+ "So, so awesome. Great Support!"
+ ],
+ [
+ "I love this bra"
+ ],
+ [
+ "So comfortable"
+ ],
+ [
+ "It's an average bra"
+ ],
+ [
+ "Make this with patterns"
+ ],
+ [
+ "Cute gym top"
+ ],
+ [
+ "Cute, stretchy top!"
+ ],
+ [
+ "I got every color"
+ ],
+ [
+ "unflattering. Ugh."
+ ],
+ [
+ "Training bra?"
+ ],
+ [
+ "Sizes are off"
+ ],
+ [
+ "Makes me feel so snug! WHOO! "
+ ],
+ [
+ "Could be flirtier."
+ ],
+ [
+ "Not for non-petite"
+ ],
+ [
+ "one of my favorites"
+ ],
+ [
+ "Zero support/modesty"
+ ],
+ [
+ "Not for high impact"
+ ],
+ [
+ "A regular or me"
+ ],
+ [
+ "Great fit - love the v-neck design! "
+ ],
+ [
+ "The seams bother me"
+ ],
+ [
+ "A sweet n sporty look for the gym"
+ ],
+ [
+ "Good choice for working out"
+ ],
+ [
+ "I love the look"
+ ],
+ [
+ "Huge arm holes??"
+ ],
+ [
+ "Super cute!!! I love it"
+ ],
+ [
+ "Quite good"
+ ],
+ [
+ "OKish"
+ ],
+ [
+ "Good but not perfect"
+ ],
+ [
+ "Bad!"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 21 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 21 AND locale = 'en_US';",
+ "answer": [
+ "Hawaii"
+ ],
+ "sql_execute_result": [
+ [
+ "Hawaii"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000037'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000037';",
+ "answer": [
+ "127.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "127.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What stock name is associated with stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping information for the order with ID 215.",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE entity_id = 215;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal for the order placed by 'Lucy Garcia'?",
+ "sql": "SELECT subtotal FROM sales_order_grid WHERE customer_name = 'Lucy Garcia';",
+ "answer": [
+ "191.0000",
+ "83.4000",
+ "290.0000",
+ "138.0000",
+ "78.4000",
+ "132.0000",
+ "39.0000",
+ "29.0000",
+ "223.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "191.0000"
+ ],
+ [
+ "83.4000"
+ ],
+ [
+ "290.0000"
+ ],
+ [
+ "138.0000"
+ ],
+ [
+ "78.4000"
+ ],
+ [
+ "132.0000"
+ ],
+ [
+ "39.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "223.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with increment ID '000000216'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000216';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the 'Iris Workout Top' on invoice?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the 'Minerva LumaTech\u2122 V-Tee' item on invoice.",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer group with ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the stock name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 425 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 425 AND locale = 'en_US';",
+ "answer": [
+ "N\u012bcas novads"
+ ],
+ "sql_execute_result": [
+ [
+ "N\u012bcas novads"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price including tax for the 'Minerva LumaTech\u2122 V-Tee' item.",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for ID 798 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 798 AND locale = 'en_US';",
+ "answer": [
+ "\u00cdpeiros"
+ ],
+ "sql_execute_result": [
+ [
+ "\u00cdpeiros"
+ ]
+ ]
+ },
+ {
+ "question": "How many customer groups have a tax class ID of 3?",
+ "sql": "SELECT COUNT(*) FROM customer_group WHERE tax_class_id = 3;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest invoice.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the 'Iris Workout Top' item?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total of the invoice with increment ID '000000002'.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the sequence table 'sequence_shipment_1'?",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with the ISO-2 code 'WS'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'WS';",
+ "answer": [
+ "WSM"
+ ],
+ "sql_execute_result": [
+ [
+ "WSM"
+ ]
+ ]
+ },
+ {
+ "question": "How many email notifications have been sent for the shipment with entity ID 1?",
+ "sql": "SELECT email_sent FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address ID for the invoice with entity ID 1.",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice associated with order ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type for the sequence with meta ID 3?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 3;",
+ "answer": [
+ "creditmemo"
+ ],
+ "sql_execute_result": [
+ [
+ "creditmemo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest shipment?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are there for the product with ID 462?",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = 462;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for the rating with ID 3.",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "Is the stock with ID 1 active in the default website?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1 AND website_id = 0;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "How many active profiles are there in the sales sequence?",
+ "sql": "SELECT COUNT(*) FROM sales_sequence_profile WHERE is_active = 1;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date for review ID 79?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 79;",
+ "answer": [
+ "2023-04-19 16:15:12"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:12"
+ ]
+ ]
+ },
+ {
+ "question": "Which product ID is associated with the rating ID 4?",
+ "sql": "SELECT entity_id FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum warning value for sales sequence profiles?",
+ "sql": "SELECT MAX(warning_value) FROM sales_sequence_profile;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the position value for the rating code 'Quality'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "List all review IDs for the product with ID 39.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 39;",
+ "answer": [
+ "27",
+ "28",
+ "29",
+ "30"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ]
+ ]
+ },
+ {
+ "question": "What is the phone number for customer James Baker?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE firstname = 'James' AND lastname = 'Baker';",
+ "answer": [
+ "2145551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2145551212"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for invoice with increment ID '000000002'.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Get the title of the CMS page with identifier 'enable-cookies'.",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'enable-cookies';",
+ "answer": [
+ "Enable Cookies"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Cookies"
+ ]
+ ]
+ },
+ {
+ "question": "List all products ordered on the period '2022-11-20' from the bestsellers aggregated daily data.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-11-20';",
+ "answer": [
+ "Tristan Endurance Tank-S-Red",
+ "Vulcan Weightlifting Tank-L-Black",
+ "Apollo Running Short-34-Black",
+ "Emma Leggings-29-Red",
+ "Bess Yoga Short-32-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "Tristan Endurance Tank-S-Red"
+ ],
+ [
+ "Vulcan Weightlifting Tank-L-Black"
+ ],
+ [
+ "Apollo Running Short-34-Black"
+ ],
+ [
+ "Emma Leggings-29-Red"
+ ],
+ [
+ "Bess Yoga Short-32-Yellow"
+ ],
+ [
+ "Tristan Endurance Tank-S-Red"
+ ],
+ [
+ "Vulcan Weightlifting Tank-L-Black"
+ ],
+ [
+ "Apollo Running Short-34-Black"
+ ],
+ [
+ "Emma Leggings-29-Red"
+ ],
+ [
+ "Bess Yoga Short-32-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value description for the attribute option with ID 206?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 206;",
+ "answer": [
+ "Hot"
+ ],
+ "sql_execute_result": [
+ [
+ "Hot"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Get the store currency code for the invoice with ID 1.",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 57?",
+ "sql": "SELECT region FROM customer_address_entity WHERE region_id = 57 LIMIT 1;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "How many product names with ID 29 were found in the bestsellers aggregated daily data?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 29;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the layout of the CMS page titled '404 Not Found'.",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = '404 Not Found';",
+ "answer": [
+ "2columns-right"
+ ],
+ "sql_execute_result": [
+ [
+ "2columns-right"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'home'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for customer with ID 39.",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 39;",
+ "answer": [
+ "david.smith@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "david.smith@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer who titled their review 'The fabric is great'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'The fabric is great';",
+ "answer": [
+ "Emory"
+ ],
+ "sql_execute_result": [
+ [
+ "Emory"
+ ]
+ ]
+ },
+ {
+ "question": "List all products ordered from the store with ID 0 on January 6th, 2023.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 0 AND period = '2023-01-06';",
+ "answer": [
+ "Overnight Duffle",
+ "Deion Long-Sleeve EverCool\u2122 Tee-XL-Black",
+ "Tiffany Fitness Tee-M-Red",
+ "Zoe Tank-S-Yellow",
+ "Ina Compression Short-29-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red"
+ ],
+ [
+ "Zoe Tank-S-Yellow"
+ ],
+ [
+ "Ina Compression Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the category entity ID 22 in the catalog_category_entity_varchar table?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 22;",
+ "answer": [
+ "Bottoms",
+ "bottoms-women",
+ "women/bottoms-women"
+ ],
+ "sql_execute_result": [
+ [
+ "Bottoms"
+ ],
+ [
+ "bottoms-women"
+ ],
+ [
+ "women/bottoms-women"
+ ]
+ ]
+ },
+ {
+ "question": "Which CMS page has the title 'Customer Service'?",
+ "sql": "SELECT identifier FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "customer-service"
+ ],
+ "sql_execute_result": [
+ [
+ "customer-service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Ajax Full-Zip Sweatshirt -L-Red' ordered on December 6th, 2022?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Ajax Full-Zip Sweatshirt -L-Red' AND period = '2022-12-06';",
+ "answer": [
+ "69.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "69.0000"
+ ],
+ [
+ "69.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews by the nickname 'Dorcas'.",
+ "sql": "SELECT title FROM review_detail WHERE nickname = 'Dorcas';",
+ "answer": [
+ "So, so awesome. Great Support!"
+ ],
+ "sql_execute_result": [
+ [
+ "So, so awesome. Great Support!"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID where Jade Yoga Jacket-L-Blue was ordered on September 29th, 2022?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Jade Yoga Jacket-L-Blue' AND period = '2022-09-29';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the customer with the email 'john.smith@yahoo.com'.",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'john.smith@yahoo.com';",
+ "answer": [
+ "John Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "John Smith"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for the order with payment entity ID 59?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 59;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were found for the search query 'hollister'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with increment ID '000000002'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What was the store ID for the shipment with sequence value 2?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = (SELECT entity_id FROM sequence_shipment_1 WHERE sequence_value = 2);",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Arcadio Gym Short-36-Black' on November 10, 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Arcadio Gym Short-36-Black' AND period = '2022-11-10';",
+ "answer": [
+ "1",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping tax amount for the invoice with entity ID 1?",
+ "sql": "SELECT shipping_tax_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were found for the query 'nike'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the best-selling product on January 12, 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-01-12';",
+ "answer": [
+ "Stark Fundamental Hoodie-XS-Black",
+ "Stellar Solar Jacket-L-Yellow",
+ "Nadia Elements Shell-M-Orange",
+ "Juliana Short-Sleeve Tee-M-White",
+ "Prima Compete Bra Top-M-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Stark Fundamental Hoodie-XS-Black"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Black"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the payment with parent ID 173?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE parent_id = 173;",
+ "answer": [
+ "94.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "94.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type for the product with entity ID 1960?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1960 AND attribute_id = 144;",
+ "answer": [
+ "173"
+ ],
+ "sql_execute_result": [
+ [
+ 173
+ ]
+ ]
+ },
+ {
+ "question": "Which category corresponds to the path 'men/tops-men/tanks-men'?",
+ "sql": "SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'men/tops-men/tanks-men' AND attribute_id = 120;",
+ "answer": [
+ "17"
+ ],
+ "sql_execute_result": [
+ [
+ 17
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer residing at '111 Wacker Dr'?",
+ "sql": "SELECT lastname FROM customer_address_entity WHERE street LIKE '%111 Wacker Dr%' AND city = 'Chicago';",
+ "answer": [
+ "Wong"
+ ],
+ "sql_execute_result": [
+ [
+ "Wong"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the option ID 66 in the eav_attribute_option_value table?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 66;",
+ "answer": [
+ "Shoulder"
+ ],
+ "sql_execute_result": [
+ [
+ "Shoulder"
+ ]
+ ]
+ },
+ {
+ "question": "Which entity type is associated with the sequence table 'sequence_shipment_1'?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
+ "answer": [
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "What are the first and last names of the customer with city 'Miami'?",
+ "sql": "SELECT firstname, lastname FROM customer_address_entity WHERE city = 'Miami';",
+ "answer": [
+ "Jane Doe",
+ "Samantha Jones",
+ "Sophie Taylor",
+ "Samantha Wu",
+ "Isabella Santos"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane",
+ "Doe"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Sophie",
+ "Taylor"
+ ],
+ [
+ "Samantha",
+ "Wu"
+ ],
+ [
+ "Isabella",
+ "Santos"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the region ID 23?",
+ "sql": "SELECT region FROM customer_address_entity WHERE region_id = 23 LIMIT 1;",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute value for attribute ID 93 and entity ID 1981 from the catalog_product_entity_int table.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE attribute_id = 93 AND entity_id = 1981;",
+ "answer": [
+ "57"
+ ],
+ "sql_execute_result": [
+ [
+ 57
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 9?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 9 AND attribute_id = 45;",
+ "answer": [
+ "Training"
+ ],
+ "sql_execute_result": [
+ [
+ "Training"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 40?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 40;",
+ "answer": [
+ "jessica.nguyen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.nguyen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total amount ordered for the payment with parent ID 198.",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE parent_id = 198;",
+ "answer": [
+ "96.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "96.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the review with ID 37?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 37;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 2010?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 2010 AND attribute_id = 77;",
+ "answer": [
+ "44.00"
+ ],
+ "sql_execute_result": [
+ [
+ "44.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the order payment with entity ID 85.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 85;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer with email 'roni_cost@example.com'?",
+ "sql": "SELECT lastname FROM customer_entity WHERE email = 'roni_cost@example.com';",
+ "answer": [
+ "Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Find the percentage rating for the product with entity PK value 963.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE entity_pk_value = 963;",
+ "answer": [
+ "100",
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ],
+ [
+ 100
+ ],
+ [
+ 60
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store ID for the store group 'Main Website Store'?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the sales order payment with entity ID 220?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 220;",
+ "answer": [
+ "153.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "153.4000"
+ ]
+ ]
+ },
+ {
+ "question": "How many results did the search query 'Antonia Racer Tank' return?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with ID 177?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 177;",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ "34"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is associated with the review ID 262?",
+ "sql": "SELECT entity_pk_value FROM review WHERE review_id = 262;",
+ "answer": [
+ "1444"
+ ],
+ "sql_execute_result": [
+ [
+ 1444
+ ]
+ ]
+ },
+ {
+ "question": "What store ID is used for sequence table 'sequence_shipment_1'?",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product ordered in item ID 962.",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 962;",
+ "answer": [
+ "MSH11-32-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH11-32-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'hollister' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU '24-WG086'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = '24-WG086';",
+ "answer": [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score of the search query 'nike'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type for meta ID 2 in the sales sequence meta table?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 2;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the review with ID 70?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 70;",
+ "answer": [
+ "2023-04-19 16:15:12"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the shipping address of the order with ID 41?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 41 AND address_type = 'shipping';",
+ "answer": [
+ "marym@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "marym@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for the order with ID 300.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 3?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the percent of the rating option vote for the review with ID 7.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 7;",
+ "answer": [
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ 60
+ ]
+ ]
+ },
+ {
+ "question": "What category name corresponds to the category entity with ID 6?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 6 AND attribute_id = 45;",
+ "answer": [
+ "Watches"
+ ],
+ "sql_execute_result": [
+ [
+ "Watches"
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the billing address of the order with ID 92.",
+ "sql": "SELECT city FROM sales_order_address WHERE parent_id = 92 AND address_type = 'billing';",
+ "answer": [
+ "Denver"
+ ],
+ "sql_execute_result": [
+ [
+ "Denver"
+ ]
+ ]
+ },
+ {
+ "question": "Find the vote value for the rating option with ID 271.",
+ "sql": "SELECT value FROM rating_option_vote WHERE vote_id = 271;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for the billing address with entity ID 426?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 426;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product category identifier for the entity ID 13.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 13 AND attribute_id = 120;",
+ "answer": [
+ "men/bottoms-men"
+ ],
+ "sql_execute_result": [
+ [
+ "men/bottoms-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity_id 13?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 13 AND attribute_id = 45;",
+ "answer": [
+ "Bottoms"
+ ],
+ "sql_execute_result": [
+ [
+ "Bottoms"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name of the region with region_id 224.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 224;",
+ "answer": [
+ "Loire"
+ ],
+ "sql_execute_result": [
+ [
+ "Loire"
+ ]
+ ]
+ },
+ {
+ "question": "What is the search query text for query_id 19?",
+ "sql": "SELECT query_text FROM search_query WHERE query_id = 19;",
+ "answer": [
+ "nike"
+ ],
+ "sql_execute_result": [
+ [
+ "nike"
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of results for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with product_id 788 in category_id 2?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 788 AND category_id = 2;",
+ "answer": [
+ "-172"
+ ],
+ "sql_execute_result": [
+ [
+ -172
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value from sequence_order_1 with the highest value.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'WP10'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'WP10';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the region with the default name 'Saaremaa'?",
+ "sql": "SELECT code FROM directory_country_region WHERE default_name = 'Saaremaa';",
+ "answer": [
+ "EE-74"
+ ],
+ "sql_execute_result": [
+ [
+ "EE-74"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the category with the value 'PAGE' and entity_id 29?",
+ "sql": "SELECT attribute_id FROM catalog_category_entity_varchar WHERE entity_id = 29 AND value = 'PAGE';",
+ "answer": [
+ "52"
+ ],
+ "sql_execute_result": [
+ [
+ 52
+ ]
+ ]
+ },
+ {
+ "question": "How many results did the search query 'MT02-M-Gray' return?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the order status 'pending'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending';",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of search results for the query 'Antonia Racer Tank'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews with a status of 'Approved' were found?",
+ "sql": "SELECT review_id, entity_pk_value FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ 1
+ ],
+ [
+ 2,
+ 1
+ ],
+ [
+ 3,
+ 6
+ ],
+ [
+ 4,
+ 6
+ ],
+ [
+ 5,
+ 6
+ ],
+ [
+ 6,
+ 3
+ ],
+ [
+ 7,
+ 3
+ ],
+ [
+ 8,
+ 3
+ ],
+ [
+ 9,
+ 2
+ ],
+ [
+ 10,
+ 2
+ ],
+ [
+ 11,
+ 4
+ ],
+ [
+ 12,
+ 4
+ ],
+ [
+ 13,
+ 4
+ ],
+ [
+ 14,
+ 5
+ ],
+ [
+ 15,
+ 5
+ ],
+ [
+ 16,
+ 37
+ ],
+ [
+ 17,
+ 37
+ ],
+ [
+ 18,
+ 37
+ ],
+ [
+ 19,
+ 40
+ ],
+ [
+ 20,
+ 40
+ ],
+ [
+ 21,
+ 40
+ ],
+ [
+ 22,
+ 38
+ ],
+ [
+ 23,
+ 38
+ ],
+ [
+ 24,
+ 38
+ ],
+ [
+ 25,
+ 36
+ ],
+ [
+ 26,
+ 36
+ ],
+ [
+ 27,
+ 39
+ ],
+ [
+ 28,
+ 39
+ ],
+ [
+ 29,
+ 39
+ ],
+ [
+ 30,
+ 39
+ ],
+ [
+ 31,
+ 270
+ ],
+ [
+ 32,
+ 270
+ ],
+ [
+ 33,
+ 286
+ ],
+ [
+ 34,
+ 286
+ ],
+ [
+ 35,
+ 414
+ ],
+ [
+ 36,
+ 414
+ ],
+ [
+ 37,
+ 414
+ ],
+ [
+ 38,
+ 302
+ ],
+ [
+ 39,
+ 302
+ ],
+ [
+ 40,
+ 302
+ ],
+ [
+ 41,
+ 398
+ ],
+ [
+ 42,
+ 398
+ ],
+ [
+ 43,
+ 398
+ ],
+ [
+ 44,
+ 318
+ ],
+ [
+ 45,
+ 318
+ ],
+ [
+ 46,
+ 334
+ ],
+ [
+ 47,
+ 334
+ ],
+ [
+ 48,
+ 334
+ ],
+ [
+ 49,
+ 350
+ ],
+ [
+ 50,
+ 350
+ ],
+ [
+ 51,
+ 366
+ ],
+ [
+ 52,
+ 366
+ ],
+ [
+ 53,
+ 737
+ ],
+ [
+ 54,
+ 737
+ ],
+ [
+ 55,
+ 737
+ ],
+ [
+ 56,
+ 750
+ ],
+ [
+ 57,
+ 750
+ ],
+ [
+ 58,
+ 750
+ ],
+ [
+ 59,
+ 763
+ ],
+ [
+ 60,
+ 763
+ ],
+ [
+ 61,
+ 776
+ ],
+ [
+ 62,
+ 776
+ ],
+ [
+ 63,
+ 776
+ ],
+ [
+ 64,
+ 789
+ ],
+ [
+ 65,
+ 789
+ ],
+ [
+ 66,
+ 789
+ ],
+ [
+ 67,
+ 558
+ ],
+ [
+ 68,
+ 558
+ ],
+ [
+ 69,
+ 558
+ ],
+ [
+ 70,
+ 574
+ ],
+ [
+ 71,
+ 574
+ ],
+ [
+ 72,
+ 526
+ ],
+ [
+ 73,
+ 526
+ ],
+ [
+ 74,
+ 446
+ ],
+ [
+ 75,
+ 446
+ ],
+ [
+ 76,
+ 446
+ ],
+ [
+ 77,
+ 462
+ ],
+ [
+ 78,
+ 462
+ ],
+ [
+ 79,
+ 462
+ ],
+ [
+ 80,
+ 542
+ ],
+ [
+ 81,
+ 542
+ ],
+ [
+ 82,
+ 606
+ ],
+ [
+ 83,
+ 606
+ ],
+ [
+ 84,
+ 606
+ ],
+ [
+ 85,
+ 622
+ ],
+ [
+ 86,
+ 622
+ ],
+ [
+ 87,
+ 622
+ ],
+ [
+ 88,
+ 622
+ ],
+ [
+ 89,
+ 478
+ ],
+ [
+ 90,
+ 478
+ ],
+ [
+ 91,
+ 478
+ ],
+ [
+ 92,
+ 590
+ ],
+ [
+ 93,
+ 590
+ ],
+ [
+ 94,
+ 590
+ ],
+ [
+ 95,
+ 494
+ ],
+ [
+ 96,
+ 494
+ ],
+ [
+ 97,
+ 494
+ ],
+ [
+ 98,
+ 510
+ ],
+ [
+ 99,
+ 510
+ ],
+ [
+ 100,
+ 510
+ ],
+ [
+ 101,
+ 893
+ ],
+ [
+ 102,
+ 893
+ ],
+ [
+ 103,
+ 893
+ ],
+ [
+ 104,
+ 911
+ ],
+ [
+ 105,
+ 911
+ ],
+ [
+ 106,
+ 911
+ ],
+ [
+ 107,
+ 924
+ ],
+ [
+ 108,
+ 924
+ ],
+ [
+ 109,
+ 924
+ ],
+ [
+ 110,
+ 937
+ ],
+ [
+ 111,
+ 937
+ ],
+ [
+ 112,
+ 937
+ ],
+ [
+ 113,
+ 950
+ ],
+ [
+ 114,
+ 950
+ ],
+ [
+ 115,
+ 963
+ ],
+ [
+ 116,
+ 963
+ ],
+ [
+ 117,
+ 963
+ ],
+ [
+ 118,
+ 976
+ ],
+ [
+ 119,
+ 976
+ ],
+ [
+ 120,
+ 989
+ ],
+ [
+ 121,
+ 989
+ ],
+ [
+ 122,
+ 989
+ ],
+ [
+ 123,
+ 638
+ ],
+ [
+ 124,
+ 638
+ ],
+ [
+ 125,
+ 638
+ ],
+ [
+ 126,
+ 638
+ ],
+ [
+ 127,
+ 654
+ ],
+ [
+ 128,
+ 654
+ ],
+ [
+ 129,
+ 654
+ ],
+ [
+ 130,
+ 670
+ ],
+ [
+ 131,
+ 670
+ ],
+ [
+ 132,
+ 670
+ ],
+ [
+ 133,
+ 676
+ ],
+ [
+ 134,
+ 676
+ ],
+ [
+ 135,
+ 676
+ ],
+ [
+ 136,
+ 676
+ ],
+ [
+ 137,
+ 7
+ ],
+ [
+ 138,
+ 7
+ ],
+ [
+ 139,
+ 7
+ ],
+ [
+ 140,
+ 20
+ ],
+ [
+ 141,
+ 20
+ ],
+ [
+ 142,
+ 20
+ ],
+ [
+ 143,
+ 18
+ ],
+ [
+ 144,
+ 18
+ ],
+ [
+ 145,
+ 23
+ ],
+ [
+ 146,
+ 23
+ ],
+ [
+ 147,
+ 23
+ ],
+ [
+ 148,
+ 17
+ ],
+ [
+ 149,
+ 17
+ ],
+ [
+ 150,
+ 17
+ ],
+ [
+ 151,
+ 19
+ ],
+ [
+ 152,
+ 19
+ ],
+ [
+ 153,
+ 19
+ ],
+ [
+ 154,
+ 15
+ ],
+ [
+ 155,
+ 16
+ ],
+ [
+ 156,
+ 16
+ ],
+ [
+ 157,
+ 8
+ ],
+ [
+ 158,
+ 8
+ ],
+ [
+ 159,
+ 8
+ ],
+ [
+ 160,
+ 9
+ ],
+ [
+ 161,
+ 9
+ ],
+ [
+ 162,
+ 12
+ ],
+ [
+ 163,
+ 12
+ ],
+ [
+ 164,
+ 14
+ ],
+ [
+ 165,
+ 14
+ ],
+ [
+ 166,
+ 14
+ ],
+ [
+ 167,
+ 10
+ ],
+ [
+ 168,
+ 10
+ ],
+ [
+ 169,
+ 11
+ ],
+ [
+ 170,
+ 11
+ ],
+ [
+ 171,
+ 11
+ ],
+ [
+ 172,
+ 13
+ ],
+ [
+ 173,
+ 13
+ ],
+ [
+ 174,
+ 13
+ ],
+ [
+ 175,
+ 42
+ ],
+ [
+ 176,
+ 42
+ ],
+ [
+ 177,
+ 42
+ ],
+ [
+ 178,
+ 44
+ ],
+ [
+ 179,
+ 44
+ ],
+ [
+ 180,
+ 43
+ ],
+ [
+ 181,
+ 43
+ ],
+ [
+ 182,
+ 43
+ ],
+ [
+ 183,
+ 41
+ ],
+ [
+ 184,
+ 41
+ ],
+ [
+ 185,
+ 1044
+ ],
+ [
+ 186,
+ 1044
+ ],
+ [
+ 187,
+ 1044
+ ],
+ [
+ 188,
+ 1060
+ ],
+ [
+ 189,
+ 1060
+ ],
+ [
+ 190,
+ 1060
+ ],
+ [
+ 191,
+ 1076
+ ],
+ [
+ 192,
+ 1076
+ ],
+ [
+ 193,
+ 1076
+ ],
+ [
+ 194,
+ 1092
+ ],
+ [
+ 195,
+ 1092
+ ],
+ [
+ 196,
+ 1092
+ ],
+ [
+ 197,
+ 1108
+ ],
+ [
+ 198,
+ 1108
+ ],
+ [
+ 199,
+ 1108
+ ],
+ [
+ 200,
+ 1114
+ ],
+ [
+ 201,
+ 1114
+ ],
+ [
+ 202,
+ 1220
+ ],
+ [
+ 203,
+ 1220
+ ],
+ [
+ 204,
+ 1220
+ ],
+ [
+ 205,
+ 1236
+ ],
+ [
+ 206,
+ 1236
+ ],
+ [
+ 207,
+ 1236
+ ],
+ [
+ 208,
+ 1236
+ ],
+ [
+ 209,
+ 1252
+ ],
+ [
+ 210,
+ 1252
+ ],
+ [
+ 211,
+ 1252
+ ],
+ [
+ 212,
+ 1268
+ ],
+ [
+ 213,
+ 1268
+ ],
+ [
+ 214,
+ 1284
+ ],
+ [
+ 215,
+ 1284
+ ],
+ [
+ 216,
+ 1284
+ ],
+ [
+ 217,
+ 1380
+ ],
+ [
+ 218,
+ 1380
+ ],
+ [
+ 219,
+ 1380
+ ],
+ [
+ 220,
+ 1300
+ ],
+ [
+ 221,
+ 1300
+ ],
+ [
+ 222,
+ 1300
+ ],
+ [
+ 223,
+ 1316
+ ],
+ [
+ 224,
+ 1316
+ ],
+ [
+ 225,
+ 1332
+ ],
+ [
+ 226,
+ 1332
+ ],
+ [
+ 227,
+ 1332
+ ],
+ [
+ 228,
+ 1348
+ ],
+ [
+ 229,
+ 1348
+ ],
+ [
+ 230,
+ 1348
+ ],
+ [
+ 231,
+ 1364
+ ],
+ [
+ 232,
+ 1364
+ ],
+ [
+ 233,
+ 1364
+ ],
+ [
+ 234,
+ 1819
+ ],
+ [
+ 235,
+ 1819
+ ],
+ [
+ 236,
+ 1826
+ ],
+ [
+ 237,
+ 1826
+ ],
+ [
+ 238,
+ 1826
+ ],
+ [
+ 239,
+ 1833
+ ],
+ [
+ 240,
+ 1833
+ ],
+ [
+ 241,
+ 1833
+ ],
+ [
+ 242,
+ 1840
+ ],
+ [
+ 243,
+ 1840
+ ],
+ [
+ 244,
+ 1840
+ ],
+ [
+ 245,
+ 1840
+ ],
+ [
+ 246,
+ 1847
+ ],
+ [
+ 247,
+ 1847
+ ],
+ [
+ 248,
+ 1854
+ ],
+ [
+ 249,
+ 1854
+ ],
+ [
+ 250,
+ 1854
+ ],
+ [
+ 251,
+ 1572
+ ],
+ [
+ 252,
+ 1572
+ ],
+ [
+ 253,
+ 1572
+ ],
+ [
+ 254,
+ 1412
+ ],
+ [
+ 255,
+ 1412
+ ],
+ [
+ 256,
+ 1412
+ ],
+ [
+ 257,
+ 1428
+ ],
+ [
+ 258,
+ 1428
+ ],
+ [
+ 259,
+ 1428
+ ],
+ [
+ 260,
+ 1428
+ ],
+ [
+ 261,
+ 1444
+ ],
+ [
+ 262,
+ 1444
+ ],
+ [
+ 263,
+ 1588
+ ],
+ [
+ 264,
+ 1588
+ ],
+ [
+ 265,
+ 1588
+ ],
+ [
+ 266,
+ 1476
+ ],
+ [
+ 267,
+ 1476
+ ],
+ [
+ 268,
+ 1492
+ ],
+ [
+ 269,
+ 1492
+ ],
+ [
+ 270,
+ 1492
+ ],
+ [
+ 271,
+ 1508
+ ],
+ [
+ 272,
+ 1508
+ ],
+ [
+ 273,
+ 1508
+ ],
+ [
+ 274,
+ 1524
+ ],
+ [
+ 275,
+ 1524
+ ],
+ [
+ 276,
+ 1524
+ ],
+ [
+ 277,
+ 1540
+ ],
+ [
+ 278,
+ 1540
+ ],
+ [
+ 279,
+ 1540
+ ],
+ [
+ 280,
+ 1556
+ ],
+ [
+ 281,
+ 1556
+ ],
+ [
+ 282,
+ 1556
+ ],
+ [
+ 283,
+ 1919
+ ],
+ [
+ 284,
+ 1919
+ ],
+ [
+ 285,
+ 1919
+ ],
+ [
+ 286,
+ 1935
+ ],
+ [
+ 287,
+ 1935
+ ],
+ [
+ 288,
+ 1935
+ ],
+ [
+ 289,
+ 1951
+ ],
+ [
+ 290,
+ 1951
+ ],
+ [
+ 291,
+ 1967
+ ],
+ [
+ 292,
+ 1967
+ ],
+ [
+ 293,
+ 1983
+ ],
+ [
+ 294,
+ 1983
+ ],
+ [
+ 295,
+ 1983
+ ],
+ [
+ 296,
+ 1990
+ ],
+ [
+ 297,
+ 1990
+ ],
+ [
+ 298,
+ 1997
+ ],
+ [
+ 299,
+ 1997
+ ],
+ [
+ 300,
+ 1997
+ ],
+ [
+ 301,
+ 2003
+ ],
+ [
+ 302,
+ 2003
+ ],
+ [
+ 303,
+ 2003
+ ],
+ [
+ 304,
+ 2010
+ ],
+ [
+ 305,
+ 2010
+ ],
+ [
+ 306,
+ 2010
+ ],
+ [
+ 307,
+ 2017
+ ],
+ [
+ 308,
+ 2017
+ ],
+ [
+ 309,
+ 2017
+ ],
+ [
+ 310,
+ 2024
+ ],
+ [
+ 311,
+ 2024
+ ],
+ [
+ 312,
+ 2024
+ ],
+ [
+ 313,
+ 2040
+ ],
+ [
+ 314,
+ 2040
+ ],
+ [
+ 315,
+ 2040
+ ],
+ [
+ 316,
+ 1604
+ ],
+ [
+ 317,
+ 1604
+ ],
+ [
+ 318,
+ 1604
+ ],
+ [
+ 319,
+ 1604
+ ],
+ [
+ 320,
+ 1620
+ ],
+ [
+ 321,
+ 1620
+ ],
+ [
+ 322,
+ 1620
+ ],
+ [
+ 323,
+ 1620
+ ],
+ [
+ 324,
+ 1636
+ ],
+ [
+ 325,
+ 1636
+ ],
+ [
+ 326,
+ 1636
+ ],
+ [
+ 327,
+ 1652
+ ],
+ [
+ 328,
+ 1652
+ ],
+ [
+ 329,
+ 1652
+ ],
+ [
+ 330,
+ 1668
+ ],
+ [
+ 331,
+ 1668
+ ],
+ [
+ 332,
+ 1668
+ ],
+ [
+ 333,
+ 1764
+ ],
+ [
+ 334,
+ 1764
+ ],
+ [
+ 335,
+ 1764
+ ],
+ [
+ 336,
+ 1780
+ ],
+ [
+ 337,
+ 1796
+ ],
+ [
+ 338,
+ 1796
+ ],
+ [
+ 339,
+ 1796
+ ],
+ [
+ 340,
+ 1812
+ ],
+ [
+ 341,
+ 1812
+ ],
+ [
+ 342,
+ 1684
+ ],
+ [
+ 343,
+ 1684
+ ],
+ [
+ 344,
+ 1700
+ ],
+ [
+ 345,
+ 1700
+ ],
+ [
+ 346,
+ 1700
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 980?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 980;",
+ "answer": [
+ "Misiones"
+ ],
+ "sql_execute_result": [
+ [
+ "Misiones"
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'WP10' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'WP10';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which review status has the code 'Not Approved'?",
+ "sql": "SELECT status_id FROM review_status WHERE status_code = 'Not Approved';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity of the search query 'MT02-M-Gray'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the number of search results for the 'nike' query.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Fetch the updated timestamp for the 'Joust Bag' search query.",
+ "sql": "SELECT updated_at FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "2023-04-24 19:24:09"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-24 19:24:09"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for 'paypal_canceled_reversal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 980?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 980 AND attribute_id = 75;",
+ "answer": [
+ "The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.
\n• Navy polyester pinstripe shorts.
• Woven fabric with moderate stretch.
• 62% cotton/34% nylon/4% spandex.
• LumaTech™ lining.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.
\n• Navy polyester pinstripe shorts.
• Woven fabric with moderate stretch.
• 62% cotton/34% nylon/4% spandex.
• LumaTech™ lining.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product ID 980?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 980;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with entity ID 215 complete?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 215;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items shipped for order ID 2?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer named 'John Doe'?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE customer_name = 'John Doe';",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are pending approval?",
+ "sql": "SELECT COUNT(*) FROM review WHERE status_id = (SELECT status_id FROM review_status WHERE status_code = 'pending');",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews with status 'approved'.",
+ "sql": "SELECT review_id, entity_pk_value FROM review WHERE status_id = 2;",
+ "answer": [
+ "347",
+ "349",
+ "351",
+ "352",
+ "353"
+ ],
+ "sql_execute_result": [
+ [
+ 347,
+ 1396
+ ],
+ [
+ 349,
+ 1396
+ ],
+ [
+ 351,
+ 1396
+ ],
+ [
+ 352,
+ 1210
+ ],
+ [
+ 353,
+ 1210
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were created with status 'complete' on 2022-09-19?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE order_status = 'complete' AND period = '2022-09-19';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which CMS page is inactive?",
+ "sql": "SELECT page_id, title FROM cms_page WHERE is_active = 0;",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'home'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 21 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 21;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group does Veronica Costello belong to?",
+ "sql": "SELECT customer_group_id FROM sales_creditmemo_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders with status 'canceled' on 2022-08-25?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE order_status = 'canceled' AND period = '2022-08-25';",
+ "answer": [
+ "365.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "365.6000"
+ ],
+ [
+ "365.6000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with identifier 'enable-cookies'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'enable-cookies';",
+ "answer": [
+ "What are Cookies?"
+ ],
+ "sql_execute_result": [
+ [
+ "What are Cookies?"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation time of the review with ID 64.",
+ "sql": "SELECT created_at FROM review WHERE review_id = 64;",
+ "answer": [
+ "2023-04-19 16:15:12"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 57?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 57;",
+ "answer": [
+ "jacob.rivera@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jacob.rivera@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all canceled orders for customer 'John Smith'.",
+ "sql": "SELECT entity_id, status, base_grand_total FROM sales_order_grid WHERE customer_id = 10 AND status = 'canceled';",
+ "answer": [
+ "Order ID: 12, Total: 113.80",
+ "Order ID: 76, Total: 72.00",
+ "Order ID: 103, Total: 71.50",
+ "Order ID: 222, Total: 185.00",
+ "Order ID: 246, Total: 74.00",
+ "Order ID: 271, Total: 77.00"
+ ],
+ "sql_execute_result": [
+ [
+ 12,
+ "canceled",
+ "113.8000"
+ ],
+ [
+ 76,
+ "canceled",
+ "72.0000"
+ ],
+ [
+ 103,
+ "canceled",
+ "71.5000"
+ ],
+ [
+ 222,
+ "canceled",
+ "185.0000"
+ ],
+ [
+ 246,
+ "canceled",
+ "74.0000"
+ ],
+ [
+ 271,
+ "canceled",
+ "77.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 2040?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 2040;",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product ID 2040?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are under category ID 3?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 3;",
+ "answer": [
+ "46"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ]
+ ]
+ },
+ {
+ "question": "What is the total revenue for completed orders in store ID 1?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order_grid WHERE status = 'complete' AND store_id = 1;",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 17?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 17;",
+ "answer": [
+ "harrypotterfan1@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "harrypotterfan1@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order ID 22?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 22;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for order with increment ID '000000202'?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE increment_id = '000000202';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is associated with the product ID 1044?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1882 AND attribute_id = 75;",
+ "answer": [
+ "The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.",
+ "\u2022 Heather gray capris with pink striped waist.",
+ "\u2022 Flatlock seams.",
+ "\u2022 Interior pocket."
+ ],
+ "sql_execute_result": [
+ [
+ "The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.
\n• Heather gray capris with pink striped waist.
• Flatlock seams.
• Interior pocket.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the sales order with increment ID '000000171'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000171';",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with entity ID 171 completed?",
+ "sql": "SELECT state FROM sales_order WHERE entity_id = 171;",
+ "answer": [
+ "No, the order with entity ID 171 is not completed. It is canceled."
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for product ID 1882 in the catalog product entity text table.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1882 AND attribute_id = 75;",
+ "answer": [
+ "The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.",
+ "\u2022 Heather gray capris with pink striped waist.",
+ "\u2022 Flatlock seams.",
+ "\u2022 Interior pocket."
+ ],
+ "sql_execute_result": [
+ [
+ "The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.
\n• Heather gray capris with pink striped waist.
• Flatlock seams.
• Interior pocket.
"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer placed the order with increment ID '000000183'?",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE increment_id = '000000183';",
+ "answer": [
+ "Grace Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace",
+ "Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with increment ID '000000202'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000202';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for order with increment ID '000000202'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000202';",
+ "answer": [
+ "180.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "180.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Primo Endurance Tank-M-Red' in the yearly bestseller list?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Primo Endurance Tank-M-Red';",
+ "answer": [
+ "51",
+ "112"
+ ],
+ "sql_execute_result": [
+ [
+ 51
+ ],
+ [
+ 112
+ ]
+ ]
+ },
+ {
+ "question": "Find the percentage score of the review with ID 162.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 162;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for 'Apollo Running Short-33-Black' on 2023-04-19?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Apollo Running Short-33-Black' AND period = '2023-04-19';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page 'Privacy Policy' currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the review for the product with ID 8?",
+ "sql": "SELECT created_at FROM review WHERE entity_pk_value = 8;",
+ "answer": [
+ "2023-04-19 16:15:14"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:14"
+ ],
+ [
+ "2023-04-19 16:15:14"
+ ],
+ [
+ "2023-04-19 16:15:14"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of 'Supernova Sport Pant-32-Black' in the daily bestseller list?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Supernova Sport Pant-32-Black';",
+ "answer": [
+ "36.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "36.0000"
+ ],
+ [
+ "36.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout of the CMS page with the identifier 'no-route'?",
+ "sql": "SELECT page_layout FROM cms_page WHERE identifier = 'no-route';",
+ "answer": [
+ "2columns-right"
+ ],
+ "sql_execute_result": [
+ [
+ "2columns-right"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer rating value for the review with ID 173.",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 173;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with ID 5?",
+ "sql": "SELECT title FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Endeavor Daytrip Backpack' on 2023-01-23.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Endeavor Daytrip Backpack' AND period = '2023-01-23';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with entity_id 322?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 322;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order with ID 230?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 230;",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT price FROM sales_order_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "24.0000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "24.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with product ID 1828.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1828;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with ID 989 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 989;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discount amount refunded for order ID 2?",
+ "sql": "SELECT discount_refunded FROM sales_order_item WHERE order_id = 2;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity ordered for the product with SKU 'WT06-L-Blue'?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'WT06-L-Blue';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 18?",
+ "sql": "SELECT customer_email FROM sales_order WHERE customer_id = 18 LIMIT 1;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all completed orders for customer Lily Potter.",
+ "sql": "SELECT entity_id AS order_id, grand_total FROM sales_order WHERE customer_firstname = 'Lily' AND customer_lastname = 'Potter' AND status = 'complete';",
+ "answer": [
+ "Order ID: 21, Total: 210.0000",
+ "Order ID: 22, Total: 229.8000",
+ "Order ID: 181, Total: 151.4000",
+ "Order ID: 182, Total: 91.0000"
+ ],
+ "sql_execute_result": [
+ [
+ 21,
+ "210.0000"
+ ],
+ [
+ 22,
+ "229.8000"
+ ],
+ [
+ 181,
+ "151.4000"
+ ],
+ [
+ 182,
+ "91.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the canceled order with ID 126?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 126;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products and their ordered quantities were found for April 2023?",
+ "sql": "SELECT product_name, qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-04-01';",
+ "answer": [
+ "110"
+ ],
+ "sql_execute_result": [
+ [
+ "Crown Summit Backpack",
+ "1.0000"
+ ],
+ [
+ "Overnight Duffle",
+ "1.0000"
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit ",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot",
+ "3.0000"
+ ],
+ [
+ "Endurance Watch",
+ "1.0000"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Black",
+ "1.0000"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Black",
+ "1.0000"
+ ],
+ [
+ "Stark Fundamental Hoodie-M-Blue",
+ "1.0000"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue",
+ "1.0000"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange",
+ "2.0000"
+ ],
+ [
+ "Aero Daily Fitness Tee-S-Black",
+ "1.0000"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red",
+ "1.0000"
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red",
+ "1.0000"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green",
+ "1.0000"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Green",
+ "1.0000"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray",
+ "1.0000"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange",
+ "1.0000"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Red",
+ "1.0000"
+ ],
+ [
+ "Aether Gym Pant -33-Brown",
+ "1.0000"
+ ],
+ [
+ "Apollo Running Short-33-Black",
+ "1.0000"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray",
+ "2.0000"
+ ],
+ [
+ "Lono Yoga Short-36-Gray",
+ "1.0000"
+ ],
+ [
+ "Troy Yoga Short-32-Black",
+ "1.0000"
+ ],
+ [
+ "Troy Yoga Short-36-Black",
+ "1.0000"
+ ],
+ [
+ "Arcadio Gym Short-36-Red",
+ "1.0000"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Orange",
+ "1.0000"
+ ],
+ [
+ "Autumn Pullie-XS-Red",
+ "1.0000"
+ ],
+ [
+ "Autumn Pullie-S-Green",
+ "1.0000"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue",
+ "1.0000"
+ ],
+ [
+ "Inez Full Zip Jacket-XL-Red",
+ "1.0000"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Blue",
+ "1.0000"
+ ],
+ [
+ "Nadia Elements Shell-S-Black",
+ "1.0000"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange",
+ "1.0000"
+ ],
+ [
+ "Juno Jacket-XS-Blue",
+ "1.0000"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green",
+ "1.0000"
+ ],
+ [
+ "Celeste Sports Bra-L-Red",
+ "1.0000"
+ ],
+ [
+ "Bella Tank-XL-Black",
+ "1.0000"
+ ],
+ [
+ "Zoe Tank-L-Orange",
+ "1.0000"
+ ],
+ [
+ "Karmen Yoga Pant-29-White",
+ "1.0000"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple",
+ "1.0000"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue",
+ "1.0000"
+ ],
+ [
+ "Diana Tights-28-Blue",
+ "1.0000"
+ ],
+ [
+ "Aeon Capri-28-Black",
+ "1.0000"
+ ],
+ [
+ "Fiona Fitness Short-28-Red",
+ "1.0000"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow",
+ "1.0000"
+ ],
+ [
+ "Angel Light Running Short-29-Orange",
+ "1.0000"
+ ],
+ [
+ "Angel Light Running Short-29-Purple",
+ "1.0000"
+ ],
+ [
+ "Erika Running Short-32-Purple",
+ "1.0000"
+ ],
+ [
+ "Crown Summit Backpack",
+ "1.0000"
+ ],
+ [
+ "Overnight Duffle",
+ "1.0000"
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit ",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot",
+ "3.0000"
+ ],
+ [
+ "Endurance Watch",
+ "1.0000"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Black",
+ "1.0000"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Black",
+ "1.0000"
+ ],
+ [
+ "Stark Fundamental Hoodie-M-Blue",
+ "1.0000"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue",
+ "1.0000"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange",
+ "2.0000"
+ ],
+ [
+ "Aero Daily Fitness Tee-S-Black",
+ "1.0000"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red",
+ "1.0000"
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red",
+ "1.0000"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green",
+ "1.0000"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Green",
+ "1.0000"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray",
+ "1.0000"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange",
+ "1.0000"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Red",
+ "1.0000"
+ ],
+ [
+ "Aether Gym Pant -33-Brown",
+ "1.0000"
+ ],
+ [
+ "Apollo Running Short-33-Black",
+ "1.0000"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray",
+ "2.0000"
+ ],
+ [
+ "Lono Yoga Short-36-Gray",
+ "1.0000"
+ ],
+ [
+ "Troy Yoga Short-32-Black",
+ "1.0000"
+ ],
+ [
+ "Troy Yoga Short-36-Black",
+ "1.0000"
+ ],
+ [
+ "Arcadio Gym Short-36-Red",
+ "1.0000"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Orange",
+ "1.0000"
+ ],
+ [
+ "Autumn Pullie-XS-Red",
+ "1.0000"
+ ],
+ [
+ "Autumn Pullie-S-Green",
+ "1.0000"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue",
+ "1.0000"
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue",
+ "1.0000"
+ ],
+ [
+ "Inez Full Zip Jacket-XL-Red",
+ "1.0000"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Blue",
+ "1.0000"
+ ],
+ [
+ "Nadia Elements Shell-S-Black",
+ "1.0000"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange",
+ "1.0000"
+ ],
+ [
+ "Juno Jacket-XS-Blue",
+ "1.0000"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green",
+ "1.0000"
+ ],
+ [
+ "Celeste Sports Bra-L-Red",
+ "1.0000"
+ ],
+ [
+ "Bella Tank-XL-Black",
+ "1.0000"
+ ],
+ [
+ "Zoe Tank-L-Orange",
+ "1.0000"
+ ],
+ [
+ "Karmen Yoga Pant-29-White",
+ "1.0000"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple",
+ "1.0000"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue",
+ "1.0000"
+ ],
+ [
+ "Diana Tights-28-Blue",
+ "1.0000"
+ ],
+ [
+ "Aeon Capri-28-Black",
+ "1.0000"
+ ],
+ [
+ "Fiona Fitness Short-28-Red",
+ "1.0000"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow",
+ "1.0000"
+ ],
+ [
+ "Angel Light Running Short-29-Orange",
+ "1.0000"
+ ],
+ [
+ "Angel Light Running Short-29-Purple",
+ "1.0000"
+ ],
+ [
+ "Erika Running Short-32-Purple",
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the position and value for the rating option with rating ID 3.",
+ "sql": "SELECT position, value FROM rating_option WHERE rating_id = 3;",
+ "answer": [
+ "Position: 1, Value: 1",
+ "Position: 2, Value: 2",
+ "Position: 3, Value: 3",
+ "Position: 4, Value: 4",
+ "Position: 5, Value: 5"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ 1
+ ],
+ [
+ 2,
+ 2
+ ],
+ [
+ 3,
+ 3
+ ],
+ [
+ 4,
+ 4
+ ],
+ [
+ 5,
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Get the shipping description for the order with ID 22.",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 22;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What was the grand total for the order with ID 92?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 92;",
+ "answer": [
+ "97.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "97.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store name for the order with ID 16.",
+ "sql": "SELECT store_name FROM sales_order WHERE entity_id = 16;",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the shipment sequence value 2.",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = (SELECT sequence_value FROM sequence_shipment_1 WHERE sequence_value = 2);",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of search results for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity of the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Get the frontend label for the attribute code 'street'.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'street';",
+ "answer": [
+ "Street Address"
+ ],
+ "sql_execute_result": [
+ [
+ "Street Address"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute type for 'samples_title'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'samples_title';",
+ "answer": [
+ "varchar"
+ ],
+ "sql_execute_result": [
+ [
+ "varchar"
+ ]
+ ]
+ },
+ {
+ "question": "Which store website has the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the query 'MT02-M-Gray'.",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the product entity with ID 714 in the catalog_product_entity_int table?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 714;",
+ "answer": [
+ "50",
+ "1",
+ "2",
+ "167"
+ ],
+ "sql_execute_result": [
+ [
+ 50
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 167
+ ]
+ ]
+ },
+ {
+ "question": "Is the query 'WP10' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'WP10';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the default group ID for the 'Admin' website?",
+ "sql": "SELECT default_group_id FROM store_website WHERE name = 'Admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with ID 11?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 11 AND attribute_id = 119;",
+ "answer": [
+ "men"
+ ],
+ "sql_execute_result": [
+ [
+ "men"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs were found for products in category ID 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000049'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000049';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are there for store ID 1?",
+ "sql": "SELECT title FROM review_detail WHERE store_id = 1;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ "I prefer more compartments"
+ ],
+ [
+ "I use it a lot "
+ ],
+ [
+ "I've had this thing for really long"
+ ],
+ [
+ "Decent bag"
+ ],
+ [
+ "Screwed up my back"
+ ],
+ [
+ "Awesome bag"
+ ],
+ [
+ "The back needs more padding"
+ ],
+ [
+ "I bought this backpack for my son"
+ ],
+ [
+ "awesome for going back and forth"
+ ],
+ [
+ "comfy and i don't feel like a loser"
+ ],
+ [
+ "The shoulder strap broke "
+ ],
+ [
+ "Good for work. Holds everything "
+ ],
+ [
+ "Great bag! I use it for everything! "
+ ],
+ [
+ "This bag is really cool"
+ ],
+ [
+ "Color is weird"
+ ],
+ [
+ "I am OBSESSED with these"
+ ],
+ [
+ "This thing is awesome "
+ ],
+ [
+ "It slides around on my wrist"
+ ],
+ [
+ "Working flawlessly"
+ ],
+ [
+ "offers a lot of technology"
+ ],
+ [
+ "Hydration alarm"
+ ],
+ [
+ "It works ok but the ugliness is blinding"
+ ],
+ [
+ "Watch too tight"
+ ],
+ [
+ "No ticktock"
+ ],
+ [
+ "Not a bad watch for the price"
+ ],
+ [
+ "the only watch I wear"
+ ],
+ [
+ "Dual time zone settings"
+ ],
+ [
+ "Really perfect for travel "
+ ],
+ [
+ "I really like the modern look"
+ ],
+ [
+ "This watch is so tight"
+ ],
+ [
+ "My favorite layers"
+ ],
+ [
+ "Weird looking pocket"
+ ],
+ [
+ "Perfect layer for the game"
+ ],
+ [
+ "The fabric is great"
+ ],
+ [
+ "This jacket isn't keeping me warm"
+ ],
+ [
+ "I don't feel protected"
+ ],
+ [
+ "avid hiker/snowboarder"
+ ],
+ [
+ "Has never let me down"
+ ],
+ [
+ "Practically perferct"
+ ],
+ [
+ "Excellent quality. I actually love"
+ ],
+ [
+ "I just live for this track jacket"
+ ],
+ [
+ "Not 100% sure how I feel"
+ ],
+ [
+ "fleece lining"
+ ],
+ [
+ "I didn't think it was that warm"
+ ],
+ [
+ "for my son to wear to school "
+ ],
+ [
+ "Kinda bulky"
+ ],
+ [
+ "easy to take apart"
+ ],
+ [
+ "does everything it's suppose"
+ ],
+ [
+ "Love it; don't have to take off gloves"
+ ],
+ [
+ "Wish buttons were on sleeve"
+ ],
+ [
+ "Great on my evening ride"
+ ],
+ [
+ "Loop thing broke"
+ ],
+ [
+ "They chafed me!"
+ ],
+ [
+ "They are comfy"
+ ],
+ [
+ "Saggy pants"
+ ],
+ [
+ "These are really bulky"
+ ],
+ [
+ "Inseam is WAY too long"
+ ],
+ [
+ "Keeping me warm before games"
+ ],
+ [
+ "There's nothing to dislike"
+ ],
+ [
+ "The mesh lining sometimes snags"
+ ],
+ [
+ "These are great!"
+ ],
+ [
+ "I bought these for my man."
+ ],
+ [
+ "I like them"
+ ],
+ [
+ "THESE PANTS KEEP ME WARM"
+ ],
+ [
+ "Good dog walking pants"
+ ],
+ [
+ "The draw string is more like half a draw"
+ ],
+ [
+ "I got this for running"
+ ],
+ [
+ "Nice and light. "
+ ],
+ [
+ "I bought 5 of the same color!"
+ ],
+ [
+ "my new favorite CrossFit shirt"
+ ],
+ [
+ "Works for the gym"
+ ],
+ [
+ "I like the crew neck"
+ ],
+ [
+ "Hate the fabric"
+ ],
+ [
+ "Ready to hit the gym"
+ ],
+ [
+ "Too small "
+ ],
+ [
+ "it says moisturewicking?"
+ ],
+ [
+ "This shirt is a dream come true"
+ ],
+ [
+ "Awesome tee! Not cheap."
+ ],
+ [
+ "Liked the way it fit mostly"
+ ],
+ [
+ "Keeps me cool"
+ ],
+ [
+ "Gets the job done. Even when I'm pouring"
+ ],
+ [
+ "I sweat SO much."
+ ],
+ [
+ "This shirt is too tight and too thin."
+ ],
+ [
+ "Great training top. "
+ ],
+ [
+ "I love this shirt. Perfect fit"
+ ],
+ [
+ "Comfortable and soft"
+ ],
+ [
+ "It's okay, a little boring. "
+ ],
+ [
+ "Very comfy but wears thin"
+ ],
+ [
+ "I've lost 50 pounds in 5 months"
+ ],
+ [
+ "Fell apart in wash"
+ ],
+ [
+ "Fantastic shirt for the price!"
+ ],
+ [
+ "Luma got it right with this one."
+ ],
+ [
+ "Ripped the FIRST TIME I wore "
+ ],
+ [
+ "Really comfy shirt"
+ ],
+ [
+ "I work out a lot"
+ ],
+ [
+ "Nice fit and fabric"
+ ],
+ [
+ "I purchased this tank top for my son"
+ ],
+ [
+ "Yea. This pilled imeddiately"
+ ],
+ [
+ "Why can't you make this in my size?"
+ ],
+ [
+ "Wear this on evening runs"
+ ],
+ [
+ "Great for baoting "
+ ],
+ [
+ "These do drain well"
+ ],
+ [
+ "They work great in water"
+ ],
+ [
+ "The only things I care about when I'm ru"
+ ],
+ [
+ "Great! I wear these almost every day-esp"
+ ],
+ [
+ "These sit in my foyer waiting for my eve"
+ ],
+ [
+ "Running in these are imPOSSible!! I only"
+ ],
+ [
+ "Pretty average cts. Their comfrtable whe"
+ ],
+ [
+ "I wear these to my gym daily. I go hard "
+ ],
+ [
+ "Love, love, love - did I say love? It wa"
+ ],
+ [
+ "I slipped on a rock on these shoes and I"
+ ],
+ [
+ "The only thing I don't like about these "
+ ],
+ [
+ "These are really good to play tennis in "
+ ],
+ [
+ "I wore these until they finally gave out"
+ ],
+ [
+ "How awesome is it to find a product that"
+ ],
+ [
+ "I wouldn't be a runner if it wasn't for "
+ ],
+ [
+ "I wear these for a variety of sports and"
+ ],
+ [
+ "Awesome shoes!! I didn't realize how muc"
+ ],
+ [
+ "They ran too narrow for me and the mater"
+ ],
+ [
+ "These are really REALLY LIGHT! Not much "
+ ],
+ [
+ "Not great on slippery grass. I wear them"
+ ],
+ [
+ "I used these as racing flats and they we"
+ ],
+ [
+ "Unflattering"
+ ],
+ [
+ "Keeps me comfortable"
+ ],
+ [
+ "Nothing to write home about"
+ ],
+ [
+ "Average tank"
+ ],
+ [
+ "NOT for skinny dudes "
+ ],
+ [
+ "Keeps me feeling dry"
+ ],
+ [
+ "I feel awesome when I wear this"
+ ],
+ [
+ "Comfortable"
+ ],
+ [
+ "I bought a few of these for my husband. "
+ ],
+ [
+ "TINY neck hole??"
+ ],
+ [
+ "Shirt can stink after"
+ ],
+ [
+ "Wish it was longer"
+ ],
+ [
+ "Razorback version?"
+ ],
+ [
+ "Fits true to size, feels great."
+ ],
+ [
+ "I bought this bag for my daughter"
+ ],
+ [
+ "Goes everywhere with me"
+ ],
+ [
+ "The material is a little thin"
+ ],
+ [
+ "OBSESSED with this!"
+ ],
+ [
+ "Great but pricey"
+ ],
+ [
+ "I hate working out...This does not help."
+ ],
+ [
+ "Want more resistance"
+ ],
+ [
+ "Agreed. More resistance"
+ ],
+ [
+ "Too lazy to go to gym"
+ ],
+ [
+ "Do not buy!"
+ ],
+ [
+ "They work, nothing special. "
+ ],
+ [
+ "Good value for the price"
+ ],
+ [
+ "I BRING THIS TO ALL MY MEETS!"
+ ],
+ [
+ "perfect for when I'm too lazy"
+ ],
+ [
+ "PURPLES"
+ ],
+ [
+ "these are ok"
+ ],
+ [
+ "Will whip you into shape!"
+ ],
+ [
+ "Easy to clean"
+ ],
+ [
+ "Perfect weight"
+ ],
+ [
+ "should've got a while ago"
+ ],
+ [
+ "I love this bag! It's cute"
+ ],
+ [
+ "I pack a TON of stuff"
+ ],
+ [
+ "Wish there were pockets "
+ ],
+ [
+ "Motivated by this Bag!"
+ ],
+ [
+ "Wish it had more pocket"
+ ],
+ [
+ "Fits tons of gear"
+ ],
+ [
+ "ok bag for a day's hike"
+ ],
+ [
+ "I bike four miles a day to work and back"
+ ],
+ [
+ "I would love this bag EXCEPT . . ."
+ ],
+ [
+ "it's really ugly,"
+ ],
+ [
+ "What's not to like about this bag?!!"
+ ],
+ [
+ "Did I get floor model?"
+ ],
+ [
+ "I bought this backpack for my daughter"
+ ],
+ [
+ "I heart this backpack so hard. "
+ ],
+ [
+ "Can I give zero stars?"
+ ],
+ [
+ "Um, not actually waterproof"
+ ],
+ [
+ "A roomy duffle"
+ ],
+ [
+ "doesn't hold that much"
+ ],
+ [
+ "Good bank for small hand"
+ ],
+ [
+ "Super sleek, love it. "
+ ],
+ [
+ "My mom loves it"
+ ],
+ [
+ "Not classical but cool"
+ ],
+ [
+ "Buckle BROKE"
+ ],
+ [
+ "It died after a week"
+ ],
+ [
+ "The strap broke"
+ ],
+ [
+ "Pieces kept coming off"
+ ],
+ [
+ "Keeps excellent time and is pretty tough"
+ ],
+ [
+ "Has been through quite a few adventures "
+ ],
+ [
+ "Rides up during workouts"
+ ],
+ [
+ "Great for cooler runs. "
+ ],
+ [
+ "I literally wear this everywhere"
+ ],
+ [
+ "I can't get enough of this hoodie"
+ ],
+ [
+ "Not really flattering"
+ ],
+ [
+ "Softest hoodie ever"
+ ],
+ [
+ "The fabric stains easily"
+ ],
+ [
+ "I wear it to class"
+ ],
+ [
+ "Zipper is goofy"
+ ],
+ [
+ "Needs long sleeves please"
+ ],
+ [
+ "My favorite hoodie"
+ ],
+ [
+ "Not very stylish"
+ ],
+ [
+ "Kept me warm"
+ ],
+ [
+ "Great value"
+ ],
+ [
+ "Best hoodies I've owned."
+ ],
+ [
+ "Love it!"
+ ],
+ [
+ "Fall weather jogs or walks"
+ ],
+ [
+ "Soft but not wrm"
+ ],
+ [
+ "Ultra comfy"
+ ],
+ [
+ "Pocket too small for mp3"
+ ],
+ [
+ "Fitted, awesome"
+ ],
+ [
+ "Shrinks a lot"
+ ],
+ [
+ "Shrunk right away!"
+ ],
+ [
+ "my new fave zip up"
+ ],
+ [
+ "Only shirt I wear anywmore"
+ ],
+ [
+ "it's so light and really long!"
+ ],
+ [
+ "Wish I'd bought the tshirt"
+ ],
+ [
+ "Fleece inside, sweater outside"
+ ],
+ [
+ "Great for hiking and camping"
+ ],
+ [
+ "Super warm."
+ ],
+ [
+ "This is REALLY comfortable!"
+ ],
+ [
+ "Thumb holes rock!"
+ ],
+ [
+ "REALLY lightweight."
+ ],
+ [
+ "Nice for skiing"
+ ],
+ [
+ "Most comfortable jacket"
+ ],
+ [
+ "a little short for me"
+ ],
+ [
+ "Square shape"
+ ],
+ [
+ "This is my go-to jacket"
+ ],
+ [
+ "I wear this pretty much every day!"
+ ],
+ [
+ "Horrible unflatterung design"
+ ],
+ [
+ "The actual color is brighter"
+ ],
+ [
+ "Big back pocket"
+ ],
+ [
+ "Everyone loves this jacket on me"
+ ],
+ [
+ "Rain proof?"
+ ],
+ [
+ "Overheated"
+ ],
+ [
+ "Great colors!"
+ ],
+ [
+ "This is the most dependable piece I own."
+ ],
+ [
+ "Not for cold weather"
+ ],
+ [
+ "Perfect, perfect, perfect in every way. "
+ ],
+ [
+ "Awesome bottoms "
+ ],
+ [
+ "Great for yoga"
+ ],
+ [
+ "Yoga is for hippees"
+ ],
+ [
+ "I can't stop lookin in the mirror! "
+ ],
+ [
+ "Want more colors"
+ ],
+ [
+ "I have 5 pairs"
+ ],
+ [
+ "These pants move so well!"
+ ],
+ [
+ "Seams separated righth away"
+ ],
+ [
+ "high waistband, no muffin top!"
+ ],
+ [
+ "Relaxing"
+ ],
+ [
+ "LOVE, LOVE, LOVE. "
+ ],
+ [
+ "NOT flattering."
+ ],
+ [
+ "These are soft and stretchy"
+ ],
+ [
+ "I bought these for yoga"
+ ],
+ [
+ "These pants are so cute!"
+ ],
+ [
+ "good for PJs but that's about it"
+ ],
+ [
+ "These are my favorite pants. "
+ ],
+ [
+ "Soooooooooooooo light!"
+ ],
+ [
+ "Cute."
+ ],
+ [
+ "I really dig this shirt for races"
+ ],
+ [
+ "This shirt is decent for running"
+ ],
+ [
+ "Wish it was longer"
+ ],
+ [
+ "Fits my large head TG"
+ ],
+ [
+ "Flatters my big build"
+ ],
+ [
+ "Fits my fiancee better"
+ ],
+ [
+ "Fabric is great for sport"
+ ],
+ [
+ "Doesn't help my figure one bit"
+ ],
+ [
+ "What's with the sleeve cut?"
+ ],
+ [
+ "Light, comfy"
+ ],
+ [
+ "Light but tight"
+ ],
+ [
+ "Looks and feels aweseom "
+ ],
+ [
+ "Really close-fitting. Do not love."
+ ],
+ [
+ "Not at all soft"
+ ],
+ [
+ "This T is a no brainer-solid color"
+ ],
+ [
+ "Thank you! "
+ ],
+ [
+ "Um, NOT flattering at ALL."
+ ],
+ [
+ "Like the color .sleeves were too tight. "
+ ],
+ [
+ "Sooooooooooo soft! "
+ ],
+ [
+ "Cute, comfy. "
+ ],
+ [
+ "I love that it's so lightweight. "
+ ],
+ [
+ "who doesn't love a racerback, amiright?!"
+ ],
+ [
+ "I where this AAALLLLL the time"
+ ],
+ [
+ "soft but a little tight"
+ ],
+ [
+ "Love the fabric, but it's huge!"
+ ],
+ [
+ "Soft"
+ ],
+ [
+ "omg I love this tank top, it's perfect"
+ ],
+ [
+ "cool and dry"
+ ],
+ [
+ "Not great"
+ ],
+ [
+ "What a versatile shirt!"
+ ],
+ [
+ "So comfortable I almost feel barefoot. T"
+ ],
+ [
+ "On the plus side, the perforated cushion"
+ ],
+ [
+ "I threw them out when the mushy lining s"
+ ],
+ [
+ "Beyond perfection! I always get tons of "
+ ],
+ [
+ "These look awesome with EVERYTHING! Hone"
+ ],
+ [
+ "The suede upper makes these pretty hard "
+ ],
+ [
+ "Love a preppy sneaker! These are still a"
+ ],
+ [
+ "These are my favorite new pair of sneake"
+ ],
+ [
+ "Have had these for quite a while and the"
+ ],
+ [
+ "Really comfy and awesome for running or "
+ ],
+ [
+ "Velcro straps?? Are you kidding me? Am I"
+ ],
+ [
+ "Cool-looking kicks! I'd wear them anywhe"
+ ],
+ [
+ "I absolutely love these trainers. I can "
+ ],
+ [
+ "Don't like the strap on top; gets too lo"
+ ],
+ [
+ "Love the no laces and they feel really g"
+ ],
+ [
+ "I love these for when I walk the boardwa"
+ ],
+ [
+ "These looked really ugly on my feet when"
+ ],
+ [
+ "I can appreciate the concept, but I thin"
+ ],
+ [
+ "I couldn't live without these. I wear th"
+ ],
+ [
+ "These are really well made and so lightw"
+ ],
+ [
+ "Want these in every single color Luma ma"
+ ],
+ [
+ "Ummm, fashion? If you say so. They're co"
+ ],
+ [
+ "Cute and comfortable definitely. The ela"
+ ],
+ [
+ "Love love LOVE!!! I can't get enough of "
+ ],
+ [
+ "It was really hard to find the right siz"
+ ],
+ [
+ "VERY LIGHTWEIGHT COMFY-GOOD SHOES"
+ ],
+ [
+ "Wore these for a year and they started f"
+ ],
+ [
+ "I am in love with these shoes and will b"
+ ],
+ [
+ "Design is adorable-when you have cute wo"
+ ],
+ [
+ "Have no idea what all the fuss is about "
+ ],
+ [
+ "Pic is WAY different then the real thing"
+ ],
+ [
+ "Meh, I'm not hating them, but I'm not in"
+ ],
+ [
+ "I'm a mom on the go and I love these sho"
+ ],
+ [
+ "Not exactly true to size"
+ ],
+ [
+ "Snug fit without being too tight"
+ ],
+ [
+ "bra stays comfy and dry"
+ ],
+ [
+ "One of my favorites b/c no chafing!"
+ ],
+ [
+ "Doesn't fit me. Luma fail."
+ ],
+ [
+ "does not fit. worthless."
+ ],
+ [
+ "So, so awesome. Great Support!"
+ ],
+ [
+ "I love this bra"
+ ],
+ [
+ "So comfortable"
+ ],
+ [
+ "It's an average bra"
+ ],
+ [
+ "Make this with patterns"
+ ],
+ [
+ "Cute gym top"
+ ],
+ [
+ "Cute, stretchy top!"
+ ],
+ [
+ "I got every color"
+ ],
+ [
+ "unflattering. Ugh."
+ ],
+ [
+ "Training bra?"
+ ],
+ [
+ "Sizes are off"
+ ],
+ [
+ "Makes me feel so snug! WHOO! "
+ ],
+ [
+ "Could be flirtier."
+ ],
+ [
+ "Not for non-petite"
+ ],
+ [
+ "one of my favorites"
+ ],
+ [
+ "Zero support/modesty"
+ ],
+ [
+ "Not for high impact"
+ ],
+ [
+ "A regular or me"
+ ],
+ [
+ "Great fit - love the v-neck design! "
+ ],
+ [
+ "The seams bother me"
+ ],
+ [
+ "A sweet n sporty look for the gym"
+ ],
+ [
+ "Good choice for working out"
+ ],
+ [
+ "I love the look"
+ ],
+ [
+ "Huge arm holes??"
+ ],
+ [
+ "Super cute!!! I love it"
+ ],
+ [
+ "Quite good"
+ ],
+ [
+ "OKish"
+ ],
+ [
+ "won't recommand"
+ ],
+ [
+ "Good but not perfect"
+ ],
+ [
+ "Bad!"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 1456?",
+ "sql": "SELECT SUM(position) FROM catalog_category_product WHERE product_id = 1456;",
+ "answer": [
+ "-1233"
+ ],
+ "sql_execute_result": [
+ [
+ "-1233"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'matt.baker@yahoo.com'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE customer_email = 'matt.baker@yahoo.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "107.6000"
+ ],
+ [
+ "118.0000"
+ ],
+ [
+ "204.0400"
+ ],
+ [
+ "112.0000"
+ ],
+ [
+ "166.4000"
+ ],
+ [
+ "79.0000"
+ ],
+ [
+ "115.0000"
+ ],
+ [
+ "167.0000"
+ ],
+ [
+ "88.0000"
+ ],
+ [
+ "176.1000"
+ ],
+ [
+ "73.0000"
+ ],
+ [
+ "212.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer with review ID 168?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 168;",
+ "answer": [
+ "Lasandra"
+ ],
+ "sql_execute_result": [
+ [
+ "Lasandra"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method used by Jason Miller.",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE customer_name = 'Jason Miller';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for product with ID 1811?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1811;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the sales order with payment entity ID 92?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 92;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the CMS page 'Enable Cookies' is currently active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Enable Cookies';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute value for the product with entity ID 1686 and attribute ID 144.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1686 AND attribute_id = 144;",
+ "answer": [
+ "166"
+ ],
+ "sql_execute_result": [
+ [
+ 166
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the payment with parent ID 24?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE parent_id = 24;",
+ "answer": [
+ "116.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "116.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the page layout of the CMS page titled 'Home Page'.",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = 'Home Page';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock with product ID 73?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 73;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the additional information for the payment method of entity ID 298?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 298;",
+ "answer": [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the identifier of the CMS page with title 'About us'?",
+ "sql": "SELECT identifier FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "about-us"
+ ],
+ "sql_execute_result": [
+ [
+ "about-us"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with ID 114?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 114;",
+ "answer": [
+ "Country of Manufacture"
+ ],
+ "sql_execute_result": [
+ [
+ "Country of Manufacture"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'About us' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for the attribute with ID 114?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 114;",
+ "answer": [
+ "country_of_manufacture"
+ ],
+ "sql_execute_result": [
+ [
+ "country_of_manufacture"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 2040 currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity ID 66?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 66;",
+ "answer": [
+ "hannah.lim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "hannah.lim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the sales order with entity ID 3?",
+ "sql": "SELECT tax_amount FROM sales_order WHERE entity_id = 3;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with entity ID 2040 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 2040;",
+ "answer": [
+ "-137",
+ "-279",
+ "-1181"
+ ],
+ "sql_execute_result": [
+ [
+ -137
+ ],
+ [
+ -279
+ ],
+ [
+ -1181
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 99 required in the admin store?",
+ "sql": "SELECT is_required_in_admin_store FROM catalog_eav_attribute WHERE attribute_id = 99;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Is the page with ID 5 active?",
+ "sql": "SELECT is_active FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "true"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'about-us'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the stock with stock ID 1?",
+ "sql": "SELECT COUNT(product_id) FROM cataloginventory_stock_item WHERE stock_id = 1;",
+ "answer": [
+ "2040"
+ ],
+ "sql_execute_result": [
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the attribute with ID 137?",
+ "sql": "SELECT position FROM catalog_eav_attribute WHERE attribute_id = 137;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with entity ID 3.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 3;",
+ "answer": [
+ "456 Las Vegas Blvd S,Las Vegas,Nevada,89109"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Las Vegas Blvd S,Las Vegas,Nevada,89109"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for orders placed by Ava Brown?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order_grid WHERE customer_name = 'Ava Brown';",
+ "answer": [
+ "1167.7500"
+ ],
+ "sql_execute_result": [
+ [
+ "1167.7500"
+ ]
+ ]
+ },
+ {
+ "question": "List all canceled orders for customer Samantha Nguyen.",
+ "sql": "SELECT entity_id AS order_id, grand_total, increment_id FROM sales_order_grid WHERE customer_name = 'Samantha Nguyen' AND status = 'canceled';",
+ "answer": [
+ "Order ID: 171, Total: 220.00, Increment ID: 000000171",
+ "Order ID: 279, Total: 44.00, Increment ID: 000000279"
+ ],
+ "sql_execute_result": [
+ [
+ 171,
+ "220.0000",
+ "000000171"
+ ],
+ [
+ 279,
+ "44.0000",
+ "000000279"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 1092.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1092;",
+ "answer": [
+ "WH04"
+ ],
+ "sql_execute_result": [
+ [
+ "WH04"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 457?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 457;",
+ "answer": [
+ "Tukuma novads"
+ ],
+ "sql_execute_result": [
+ [
+ "Tukuma novads"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used by customer Alex Johnson in order with increment ID '000000152'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000152';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the order with increment ID '000000037'.",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000037';",
+ "answer": [
+ "127.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "127.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the sequence tables for the store with ID 1.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE store_id = 1;",
+ "answer": [
+ "sequence_order_1",
+ "sequence_invoice_1",
+ "sequence_creditmemo_1",
+ "sequence_shipment_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ],
+ [
+ "sequence_invoice_1"
+ ],
+ [
+ "sequence_creditmemo_1"
+ ],
+ [
+ "sequence_shipment_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order placed by David Lee?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE customer_name = 'David Lee';",
+ "answer": [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found with 'Flat Rate - Fixed' shipping method?",
+ "sql": "SELECT entity_id AS order_id, customer_name FROM sales_order_grid WHERE shipping_information = 'Flat Rate - Fixed';",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "Veronica Costello"
+ ],
+ [
+ 2,
+ "Veronica Costello"
+ ],
+ [
+ 3,
+ "Brian Smith"
+ ],
+ [
+ 4,
+ "Jane Smith"
+ ],
+ [
+ 5,
+ "Grace Nguyen"
+ ],
+ [
+ 6,
+ "John Doe"
+ ],
+ [
+ 7,
+ "Adam Garcia"
+ ],
+ [
+ 8,
+ "Bob Johnson"
+ ],
+ [
+ 9,
+ "John Smith"
+ ],
+ [
+ 10,
+ "Matt Baker"
+ ],
+ [
+ 11,
+ "Grace Nguyen"
+ ],
+ [
+ 12,
+ "Jane Smith"
+ ],
+ [
+ 13,
+ "Jason Miller"
+ ],
+ [
+ 14,
+ "Bob Jones"
+ ],
+ [
+ 15,
+ "Sarah Miller"
+ ],
+ [
+ 16,
+ "Grace Nguyen"
+ ],
+ [
+ 17,
+ "Adam Garcia"
+ ],
+ [
+ 18,
+ "Sophie Taylor"
+ ],
+ [
+ 19,
+ "Julia Williams"
+ ],
+ [
+ 20,
+ "Jason Miller"
+ ],
+ [
+ 21,
+ "Lily Potter"
+ ],
+ [
+ 22,
+ "Lily Potter"
+ ],
+ [
+ 23,
+ "Alex Martin"
+ ],
+ [
+ 24,
+ "Mary Martin"
+ ],
+ [
+ 25,
+ "John Doe"
+ ],
+ [
+ 26,
+ "Lucy Garcia"
+ ],
+ [
+ 27,
+ "Bob Johnson"
+ ],
+ [
+ 28,
+ "Sarah Miller"
+ ],
+ [
+ 29,
+ "Lucy Garcia"
+ ],
+ [
+ 30,
+ "Alex Martin"
+ ],
+ [
+ 31,
+ "Jane Doe"
+ ],
+ [
+ 32,
+ "Grace Nguyen"
+ ],
+ [
+ 33,
+ "Alex Johnson"
+ ],
+ [
+ 34,
+ "Jane Smith"
+ ],
+ [
+ 35,
+ "Alex Martin"
+ ],
+ [
+ 36,
+ "Katie Wong"
+ ],
+ [
+ 37,
+ "David Lee"
+ ],
+ [
+ 38,
+ "Jason Miller"
+ ],
+ [
+ 39,
+ "Sarah Miller"
+ ],
+ [
+ 40,
+ "Lisa Kim"
+ ],
+ [
+ 41,
+ "Mary Martin"
+ ],
+ [
+ 42,
+ "Michael Nguyen"
+ ],
+ [
+ 43,
+ "Bob Johnson"
+ ],
+ [
+ 44,
+ "Lisa Green"
+ ],
+ [
+ 45,
+ "Alex Johnson"
+ ],
+ [
+ 46,
+ "Samantha Jones"
+ ],
+ [
+ 47,
+ "Jane Doe"
+ ],
+ [
+ 48,
+ "Ava Brown"
+ ],
+ [
+ 49,
+ "Alexander Thomas"
+ ],
+ [
+ 50,
+ "Lucy Garcia"
+ ],
+ [
+ 51,
+ "John Lee"
+ ],
+ [
+ 52,
+ "Brian Smith"
+ ],
+ [
+ 53,
+ "Julia Williams"
+ ],
+ [
+ 54,
+ "Julia Williams"
+ ],
+ [
+ 55,
+ "Bob Johnson"
+ ],
+ [
+ 56,
+ "Adam Garcia"
+ ],
+ [
+ 57,
+ "Adam Garcia"
+ ],
+ [
+ 58,
+ "John Lee"
+ ],
+ [
+ 59,
+ "John Smith"
+ ],
+ [
+ 60,
+ "Jennifer White"
+ ],
+ [
+ 61,
+ "Jane Smith"
+ ],
+ [
+ 62,
+ "Sarah Miller"
+ ],
+ [
+ 63,
+ "Alex Martin"
+ ],
+ [
+ 64,
+ "Mary Martin"
+ ],
+ [
+ 65,
+ "Grace Nguyen"
+ ],
+ [
+ 66,
+ "Samantha Jones"
+ ],
+ [
+ 67,
+ "Lily Potter"
+ ],
+ [
+ 68,
+ "John Smith"
+ ],
+ [
+ 69,
+ "Alexander Thomas"
+ ],
+ [
+ 70,
+ "Jane Smith"
+ ],
+ [
+ 71,
+ "Daniel Jackson"
+ ],
+ [
+ 72,
+ "Jennifer White"
+ ],
+ [
+ 73,
+ "Bob Jones"
+ ],
+ [
+ 74,
+ "Adam Garcia"
+ ],
+ [
+ 75,
+ "Jennifer White"
+ ],
+ [
+ 76,
+ "Jane Smith"
+ ],
+ [
+ 77,
+ "Alex Johnson"
+ ],
+ [
+ 78,
+ "Ava Brown"
+ ],
+ [
+ 79,
+ "John Smith"
+ ],
+ [
+ 80,
+ "Grace Nguyen"
+ ],
+ [
+ 81,
+ "Samantha Jones"
+ ],
+ [
+ 82,
+ "Adam Garcia"
+ ],
+ [
+ 83,
+ "Bob Johnson"
+ ],
+ [
+ 84,
+ "Jane Doe"
+ ],
+ [
+ 85,
+ "Grace Nguyen"
+ ],
+ [
+ 86,
+ "John Doe"
+ ],
+ [
+ 87,
+ "Bob Jones"
+ ],
+ [
+ 88,
+ "Samantha Jones"
+ ],
+ [
+ 89,
+ "Matt Baker"
+ ],
+ [
+ 90,
+ "Ava Brown"
+ ],
+ [
+ 91,
+ "Jane Smith"
+ ],
+ [
+ 92,
+ "Jason Miller"
+ ],
+ [
+ 93,
+ "John Smith"
+ ],
+ [
+ 94,
+ "Alex Johnson"
+ ],
+ [
+ 95,
+ "John Smith"
+ ],
+ [
+ 96,
+ "John Smith"
+ ],
+ [
+ 97,
+ "Matt Baker"
+ ],
+ [
+ 98,
+ "Julia Williams"
+ ],
+ [
+ 99,
+ "Jane Smith"
+ ],
+ [
+ 100,
+ "Jennifer White"
+ ],
+ [
+ 101,
+ "Sarah Miller"
+ ],
+ [
+ 102,
+ "Michael Nguyen"
+ ],
+ [
+ 103,
+ "Jane Smith"
+ ],
+ [
+ 104,
+ "John Lee"
+ ],
+ [
+ 105,
+ "Michael Nguyen"
+ ],
+ [
+ 106,
+ "John Lee"
+ ],
+ [
+ 107,
+ "John Smith"
+ ],
+ [
+ 108,
+ "Alex Johnson"
+ ],
+ [
+ 109,
+ "Jason Miller"
+ ],
+ [
+ 110,
+ "Julia Williams"
+ ],
+ [
+ 111,
+ "Lily Potter"
+ ],
+ [
+ 112,
+ "Lucy Garcia"
+ ],
+ [
+ 113,
+ "Lucy Garcia"
+ ],
+ [
+ 114,
+ "Grace Nguyen"
+ ],
+ [
+ 115,
+ "John Smith"
+ ],
+ [
+ 116,
+ "Jane Doe"
+ ],
+ [
+ 117,
+ "John Lee"
+ ],
+ [
+ 118,
+ "Brian Smith"
+ ],
+ [
+ 119,
+ "Michael Nguyen"
+ ],
+ [
+ 120,
+ "Matt Baker"
+ ],
+ [
+ 121,
+ "Brian Smith"
+ ],
+ [
+ 122,
+ "Alexander Thomas"
+ ],
+ [
+ 123,
+ "Olivia Lee"
+ ],
+ [
+ 124,
+ "Sophie Taylor"
+ ],
+ [
+ 125,
+ "Matt Baker"
+ ],
+ [
+ 126,
+ "Grace Nguyen"
+ ],
+ [
+ 127,
+ "Michael Nguyen"
+ ],
+ [
+ 128,
+ "Ava Brown"
+ ],
+ [
+ 129,
+ "Olivia Lee"
+ ],
+ [
+ 130,
+ "Adam Garcia"
+ ],
+ [
+ 131,
+ "Matt Baker"
+ ],
+ [
+ 132,
+ "Samantha Jones"
+ ],
+ [
+ 133,
+ "Jason Miller"
+ ],
+ [
+ 134,
+ "Daniel Jackson"
+ ],
+ [
+ 135,
+ "Jennifer White"
+ ],
+ [
+ 136,
+ "Lily Potter"
+ ],
+ [
+ 137,
+ "Samantha Jones"
+ ],
+ [
+ 138,
+ "Matt Baker"
+ ],
+ [
+ 139,
+ "Katie Wong"
+ ],
+ [
+ 140,
+ "Jennifer White"
+ ],
+ [
+ 141,
+ "Matt Baker"
+ ],
+ [
+ 142,
+ "Julia Williams"
+ ],
+ [
+ 143,
+ "Brian Smith"
+ ],
+ [
+ 144,
+ "John Smith"
+ ],
+ [
+ 145,
+ "Samantha Nguyen"
+ ],
+ [
+ 146,
+ "Alex Johnson"
+ ],
+ [
+ 147,
+ "Jennifer White"
+ ],
+ [
+ 148,
+ "Samantha Jones"
+ ],
+ [
+ 149,
+ "Ava Brown"
+ ],
+ [
+ 150,
+ "Alex Johnson"
+ ],
+ [
+ 151,
+ "David Lee"
+ ],
+ [
+ 152,
+ "Alex Johnson"
+ ],
+ [
+ 153,
+ "Jane Doe"
+ ],
+ [
+ 154,
+ "Samantha Jones"
+ ],
+ [
+ 155,
+ "Olivia Lee"
+ ],
+ [
+ 156,
+ "Sarah Miller"
+ ],
+ [
+ 157,
+ "Sarah Miller"
+ ],
+ [
+ 158,
+ "Lisa Green"
+ ],
+ [
+ 159,
+ "Daniel Jackson"
+ ],
+ [
+ 160,
+ "Michael Nguyen"
+ ],
+ [
+ 161,
+ "Samantha Jones"
+ ],
+ [
+ 162,
+ "Olivia Lee"
+ ],
+ [
+ 163,
+ "Jane Smith"
+ ],
+ [
+ 164,
+ "Lucy Garcia"
+ ],
+ [
+ 165,
+ "Alex Martin"
+ ],
+ [
+ 166,
+ "Grace Nguyen"
+ ],
+ [
+ 167,
+ "Julia Williams"
+ ],
+ [
+ 168,
+ "Bob Jones"
+ ],
+ [
+ 169,
+ "Jennifer White"
+ ],
+ [
+ 170,
+ "Olivia Lee"
+ ],
+ [
+ 171,
+ "Samantha Nguyen"
+ ],
+ [
+ 172,
+ "Adam Garcia"
+ ],
+ [
+ 173,
+ "Alex Martin"
+ ],
+ [
+ 174,
+ "Emma Davis"
+ ],
+ [
+ 175,
+ "Katie Wong"
+ ],
+ [
+ 176,
+ "Lisa Kim"
+ ],
+ [
+ 177,
+ "Alex Martin"
+ ],
+ [
+ 178,
+ "Lisa Kim"
+ ],
+ [
+ 179,
+ "Michael Nguyen"
+ ],
+ [
+ 180,
+ "Samantha Jones"
+ ],
+ [
+ 181,
+ "Lily Potter"
+ ],
+ [
+ 182,
+ "Lily Potter"
+ ],
+ [
+ 183,
+ "Grace Nguyen"
+ ],
+ [
+ 184,
+ "Adam Garcia"
+ ],
+ [
+ 185,
+ "Sarah Miller"
+ ],
+ [
+ 186,
+ "Jane Smith"
+ ],
+ [
+ 187,
+ "Matt Baker"
+ ],
+ [
+ 188,
+ "John Doe"
+ ],
+ [
+ 189,
+ "Grace Nguyen"
+ ],
+ [
+ 190,
+ "Jane Doe"
+ ],
+ [
+ 191,
+ "Alex Martin"
+ ],
+ [
+ 192,
+ "Emma Davis"
+ ],
+ [
+ 193,
+ "Bob Jones"
+ ],
+ [
+ 194,
+ "David Lee"
+ ],
+ [
+ 195,
+ "Lisa Kim"
+ ],
+ [
+ 196,
+ "Jason Miller"
+ ],
+ [
+ 197,
+ "Jane Doe"
+ ],
+ [
+ 198,
+ "Katie Wong"
+ ],
+ [
+ 199,
+ "Jane Smith"
+ ],
+ [
+ 200,
+ "Ava Brown"
+ ],
+ [
+ 201,
+ "Matt Baker"
+ ],
+ [
+ 202,
+ "Mary Martin"
+ ],
+ [
+ 203,
+ "Bob Jones"
+ ],
+ [
+ 204,
+ "Lucy Garcia"
+ ],
+ [
+ 205,
+ "John Lee"
+ ],
+ [
+ 206,
+ "Alexander Thomas"
+ ],
+ [
+ 207,
+ "Lisa Green"
+ ],
+ [
+ 208,
+ "Michael Nguyen"
+ ],
+ [
+ 209,
+ "Daniel Jackson"
+ ],
+ [
+ 210,
+ "John Lee"
+ ],
+ [
+ 211,
+ "Sophie Taylor"
+ ],
+ [
+ 212,
+ "Sophie Taylor"
+ ],
+ [
+ 213,
+ "Bob Johnson"
+ ],
+ [
+ 214,
+ "Adam Garcia"
+ ],
+ [
+ 215,
+ "Lucy Garcia"
+ ],
+ [
+ 216,
+ "Sarah Miller"
+ ],
+ [
+ 217,
+ "John Smith"
+ ],
+ [
+ 218,
+ "Alex Johnson"
+ ],
+ [
+ 219,
+ "Alexander Thomas"
+ ],
+ [
+ 220,
+ "Jane Doe"
+ ],
+ [
+ 221,
+ "Brian Smith"
+ ],
+ [
+ 222,
+ "Jane Smith"
+ ],
+ [
+ 223,
+ "Bob Jones"
+ ],
+ [
+ 224,
+ "Matt Baker"
+ ],
+ [
+ 225,
+ "Jane Doe"
+ ],
+ [
+ 226,
+ "Jane Smith"
+ ],
+ [
+ 227,
+ "Bob Johnson"
+ ],
+ [
+ 228,
+ "Bob Jones"
+ ],
+ [
+ 229,
+ "Sarah Miller"
+ ],
+ [
+ 230,
+ "Ava Brown"
+ ],
+ [
+ 231,
+ "Lisa Kim"
+ ],
+ [
+ 232,
+ "Samantha Jones"
+ ],
+ [
+ 233,
+ "Daniel Jackson"
+ ],
+ [
+ 234,
+ "Lily Potter"
+ ],
+ [
+ 235,
+ "Lisa Kim"
+ ],
+ [
+ 236,
+ "Sarah Miller"
+ ],
+ [
+ 237,
+ "Bob Johnson"
+ ],
+ [
+ 238,
+ "Alex Martin"
+ ],
+ [
+ 239,
+ "Samantha Jones"
+ ],
+ [
+ 240,
+ "Alex Martin"
+ ],
+ [
+ 241,
+ "Alex Johnson"
+ ],
+ [
+ 242,
+ "Olivia Lee"
+ ],
+ [
+ 243,
+ "Samantha Jones"
+ ],
+ [
+ 244,
+ "Alex Johnson"
+ ],
+ [
+ 245,
+ "Jane Doe"
+ ],
+ [
+ 246,
+ "Jane Smith"
+ ],
+ [
+ 247,
+ "Jane Smith"
+ ],
+ [
+ 248,
+ "Alexander Thomas"
+ ],
+ [
+ 249,
+ "Samantha Jones"
+ ],
+ [
+ 250,
+ "Daniel Jackson"
+ ],
+ [
+ 251,
+ "Alexander Thomas"
+ ],
+ [
+ 252,
+ "Ava Brown"
+ ],
+ [
+ 253,
+ "Sarah Miller"
+ ],
+ [
+ 254,
+ "Michael Nguyen"
+ ],
+ [
+ 255,
+ "Lisa Kim"
+ ],
+ [
+ 256,
+ "Adam Garcia"
+ ],
+ [
+ 257,
+ "John Smith"
+ ],
+ [
+ 258,
+ "Michael Nguyen"
+ ],
+ [
+ 259,
+ "Jane Doe"
+ ],
+ [
+ 260,
+ "John Lee"
+ ],
+ [
+ 261,
+ "Lily Potter"
+ ],
+ [
+ 262,
+ "John Doe"
+ ],
+ [
+ 263,
+ "John Doe"
+ ],
+ [
+ 264,
+ "Lucy Garcia"
+ ],
+ [
+ 265,
+ "Daniel Jackson"
+ ],
+ [
+ 266,
+ "Samantha Jones"
+ ],
+ [
+ 267,
+ "Julia Williams"
+ ],
+ [
+ 268,
+ "Alex Martin"
+ ],
+ [
+ 269,
+ "Sophie Taylor"
+ ],
+ [
+ 270,
+ "Ava Brown"
+ ],
+ [
+ 271,
+ "Jane Smith"
+ ],
+ [
+ 272,
+ "Michael Nguyen"
+ ],
+ [
+ 273,
+ "John Smith"
+ ],
+ [
+ 274,
+ "Jane Smith"
+ ],
+ [
+ 275,
+ "Alexander Thomas"
+ ],
+ [
+ 276,
+ "Sarah Miller"
+ ],
+ [
+ 277,
+ "Katie Wong"
+ ],
+ [
+ 278,
+ "Jason Miller"
+ ],
+ [
+ 279,
+ "Samantha Nguyen"
+ ],
+ [
+ 280,
+ "Daniel Jackson"
+ ],
+ [
+ 281,
+ "Mary Martin"
+ ],
+ [
+ 282,
+ "Brian Smith"
+ ],
+ [
+ 283,
+ "Bob Jones"
+ ],
+ [
+ 284,
+ "Adam Garcia"
+ ],
+ [
+ 285,
+ "Olivia Lee"
+ ],
+ [
+ 286,
+ "Olivia Lee"
+ ],
+ [
+ 287,
+ "Alex Johnson"
+ ],
+ [
+ 288,
+ "Bob Jones"
+ ],
+ [
+ 289,
+ "Daniel Jackson"
+ ],
+ [
+ 290,
+ "Julia Williams"
+ ],
+ [
+ 291,
+ "Adam Garcia"
+ ],
+ [
+ 292,
+ "Jason Miller"
+ ],
+ [
+ 293,
+ "John Doe"
+ ],
+ [
+ 294,
+ "Alexander Thomas"
+ ],
+ [
+ 295,
+ "Matt Baker"
+ ],
+ [
+ 296,
+ "Lily Potter"
+ ],
+ [
+ 297,
+ "Sarah Miller"
+ ],
+ [
+ 298,
+ "Alex Martin"
+ ],
+ [
+ 299,
+ "Sarah Miller"
+ ],
+ [
+ 300,
+ "Grace Nguyen"
+ ],
+ [
+ 301,
+ "Alex Johnson"
+ ],
+ [
+ 302,
+ "Jane Doe"
+ ],
+ [
+ 303,
+ "Lily Potter"
+ ],
+ [
+ 304,
+ "Alexander Thomas"
+ ],
+ [
+ 305,
+ "Mary Martin"
+ ],
+ [
+ 306,
+ "Michael Nguyen"
+ ],
+ [
+ 307,
+ "Grace Nguyen"
+ ],
+ [
+ 308,
+ "Grace Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 859 in the bestsellers daily aggregate?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 859;",
+ "answer": [
+ "Aether Gym Pant -33-Brown"
+ ],
+ "sql_execute_result": [
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status label for the status code 'complete'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the attribute code for the attribute with ID 136.",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 136;",
+ "answer": [
+ "tax_class_id"
+ ],
+ "sql_execute_result": [
+ [
+ "tax_class_id"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Daria Bikram Pant-29-Black' on 2022-12-11?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Daria Bikram Pant-29-Black' AND period = '2022-12-11';",
+ "answer": [
+ "3",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence shipment records exist in the table 'sequence_shipment_1'?",
+ "sql": "SELECT COUNT(*) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute code 'custom_design_to'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'custom_design_to';",
+ "answer": [
+ "Active To"
+ ],
+ "sql_execute_result": [
+ [
+ "Active To"
+ ],
+ [
+ "Active To"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Sparta Gym Tank-XL-Green' in the bestsellers daily table.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sparta Gym Tank-XL-Green';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the status 'payment_review'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'payment_review';",
+ "answer": [
+ "Payment Review"
+ ],
+ "sql_execute_result": [
+ [
+ "Payment Review"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default value for the attribute code 'tax_class_id'.",
+ "sql": "SELECT default_value FROM eav_attribute WHERE attribute_code = 'tax_class_id';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the default website?",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 2?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 1181
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for product ID 911.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 911;",
+ "answer": [
+ "104",
+ "105",
+ "106"
+ ],
+ "sql_execute_result": [
+ [
+ 104,
+ "2023-04-19 16:15:13"
+ ],
+ [
+ 105,
+ "2023-04-19 16:15:13"
+ ],
+ [
+ 106,
+ "2023-04-19 16:15:13"
+ ]
+ ]
+ },
+ {
+ "question": "Is product ID 1516 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1516;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock quantity for product ID 731.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 731;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which category contains product ID 940?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 940;",
+ "answer": [
+ "19",
+ "8",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ],
+ [
+ 8
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity_id 799?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 799 AND attribute_id = 77;",
+ "answer": [
+ "28.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "28.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the title of the CMS page with identifier 'home'.",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with parent_id 216?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 216;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating with rating_id 1?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the customer address with entity_id 35.",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 35;",
+ "answer": [
+ "Dallas"
+ ],
+ "sql_execute_result": [
+ [
+ "Dallas"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page titled 'Privacy Policy' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount ordered for the payment with entity_id 167?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 167;",
+ "answer": [
+ "38.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "38.6000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating with code 'Price'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Price';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the street address for the customer with address entity_id 54.",
+ "sql": "SELECT street FROM customer_address_entity WHERE entity_id = 54;",
+ "answer": [
+ "111 Wacker Dr"
+ ],
+ "sql_execute_result": [
+ [
+ "111 Wacker Dr"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the payment with entity_id 253?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 253;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 6?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 6 AND attribute_id = 119;",
+ "answer": [
+ "watches"
+ ],
+ "sql_execute_result": [
+ [
+ "watches"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 1584?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1584;",
+ "answer": [
+ "WS05-L-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "WS05-L-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax class ID for the customer group named 'General'.",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'General';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 1264?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1264 AND attribute_id = 77;",
+ "answer": [
+ "84.00"
+ ],
+ "sql_execute_result": [
+ [
+ "84.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values from `sequence_order_1` are greater than 50?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 WHERE sequence_value > 50;",
+ "answer": [
+ "258"
+ ],
+ "sql_execute_result": [
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 26?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 26 AND attribute_id = 45;",
+ "answer": [
+ "Bras & Tanks"
+ ],
+ "sql_execute_result": [
+ [
+ "Bras & Tanks"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the creation time for the product with SKU 'WT02-L-Orange'.",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'WT02-L-Orange';",
+ "answer": [
+ "2023-04-19 16:13:51"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:51"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 891?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 891 AND attribute_id = 77;",
+ "answer": [
+ "44.00"
+ ],
+ "sql_execute_result": [
+ [
+ "44.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of customer groups available.",
+ "sql": "SELECT COUNT(*) FROM customer_group;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 917?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 917;",
+ "answer": [
+ "MSH04-33-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH04-33-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 2040?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with increment ID '000000002'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the invoice with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Calculate the total sales amount for store ID 1 for April 19, 2023.",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE store_id = 1 AND DATE(created_at) = '2023-04-19';",
+ "answer": [
+ "1302.3000"
+ ],
+ "sql_execute_result": [
+ [
+ "1302.3000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the order with order ID 2.",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with order ID 50?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 50;",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with SKU 'MSH09-36-Black' shipped.",
+ "sql": "SELECT SUM(qty) FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the order with increment ID '000000111'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000111';",
+ "answer": [
+ "217.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "217.1200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT payment_method FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "List the names of products shipped under shipment ID 3.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "Troy Yoga Short",
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the complete order with increment ID '000000121'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000121';",
+ "answer": [
+ "75.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "75.5000"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with increment ID '000000169'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000169';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of products shipped under shipment ID 3.",
+ "sql": "SELECT SUM(weight) FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What was the discount amount applied to the order with increment ID '000000111'?",
+ "sql": "SELECT discount_amount FROM sales_order WHERE increment_id = '000000111';",
+ "answer": [
+ "-34.2800"
+ ],
+ "sql_execute_result": [
+ [
+ "-34.2800"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name associated with credit memo ID 1?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence number for the most recent shipment in store 1?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the top-selling product in store 1 for April 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-04-01' AND store_id = 1 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been made for order ID 300?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of 'Jade Yoga Jacket-L-Blue'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Jade Yoga Jacket-L-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which rating option has a code '5' and belongs to rating ID 2?",
+ "sql": "SELECT option_id FROM rating_option WHERE code = '5' AND rating_id = 2;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been sent from store 1 with emails sent?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE store_id = 1 AND email_sent = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items shipped for shipment ID 3?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the 'sequence_invoice_1' table in the sales_sequence_meta.",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_invoice_1';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product 'Hera Pullover Hoodie-M-Green' in the bestseller list for March 2022 in store 1?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Hera Pullover Hoodie-M-Green' AND period = '2022-03-01' AND store_id = 1;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID for the shipment with entity ID 2?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000108'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000108';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping and handling cost for the order placed by 'Bob Jones'?",
+ "sql": "SELECT shipping_and_handling FROM sales_order_grid WHERE customer_name = 'Bob Jones';",
+ "answer": [
+ "120.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ],
+ [
+ "20.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "10.0000"
+ ],
+ [
+ "25.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "15.0000"
+ ],
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the email 'coolcat321@hotmail.com' associated with their order?",
+ "sql": "SELECT firstname, lastname FROM sales_order_address WHERE email = 'coolcat321@hotmail.com';",
+ "answer": [
+ "Samantha Jones"
+ ],
+ "sql_execute_result": [
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were found for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the region associated with shipping address ID 599?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 599;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have a status of 'complete'?",
+ "sql": "SELECT increment_id FROM sales_order_grid WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ "000000004"
+ ],
+ [
+ "000000009"
+ ],
+ [
+ "000000011"
+ ],
+ [
+ "000000013"
+ ],
+ [
+ "000000016"
+ ],
+ [
+ "000000017"
+ ],
+ [
+ "000000020"
+ ],
+ [
+ "000000021"
+ ],
+ [
+ "000000022"
+ ],
+ [
+ "000000023"
+ ],
+ [
+ "000000024"
+ ],
+ [
+ "000000027"
+ ],
+ [
+ "000000028"
+ ],
+ [
+ "000000031"
+ ],
+ [
+ "000000032"
+ ],
+ [
+ "000000033"
+ ],
+ [
+ "000000034"
+ ],
+ [
+ "000000035"
+ ],
+ [
+ "000000036"
+ ],
+ [
+ "000000037"
+ ],
+ [
+ "000000043"
+ ],
+ [
+ "000000045"
+ ],
+ [
+ "000000047"
+ ],
+ [
+ "000000048"
+ ],
+ [
+ "000000050"
+ ],
+ [
+ "000000051"
+ ],
+ [
+ "000000053"
+ ],
+ [
+ "000000054"
+ ],
+ [
+ "000000055"
+ ],
+ [
+ "000000057"
+ ],
+ [
+ "000000061"
+ ],
+ [
+ "000000062"
+ ],
+ [
+ "000000064"
+ ],
+ [
+ "000000069"
+ ],
+ [
+ "000000070"
+ ],
+ [
+ "000000071"
+ ],
+ [
+ "000000073"
+ ],
+ [
+ "000000075"
+ ],
+ [
+ "000000078"
+ ],
+ [
+ "000000079"
+ ],
+ [
+ "000000082"
+ ],
+ [
+ "000000083"
+ ],
+ [
+ "000000084"
+ ],
+ [
+ "000000087"
+ ],
+ [
+ "000000089"
+ ],
+ [
+ "000000090"
+ ],
+ [
+ "000000091"
+ ],
+ [
+ "000000092"
+ ],
+ [
+ "000000093"
+ ],
+ [
+ "000000096"
+ ],
+ [
+ "000000097"
+ ],
+ [
+ "000000099"
+ ],
+ [
+ "000000100"
+ ],
+ [
+ "000000102"
+ ],
+ [
+ "000000104"
+ ],
+ [
+ "000000105"
+ ],
+ [
+ "000000112"
+ ],
+ [
+ "000000113"
+ ],
+ [
+ "000000114"
+ ],
+ [
+ "000000115"
+ ],
+ [
+ "000000116"
+ ],
+ [
+ "000000119"
+ ],
+ [
+ "000000121"
+ ],
+ [
+ "000000127"
+ ],
+ [
+ "000000128"
+ ],
+ [
+ "000000130"
+ ],
+ [
+ "000000131"
+ ],
+ [
+ "000000133"
+ ],
+ [
+ "000000137"
+ ],
+ [
+ "000000138"
+ ],
+ [
+ "000000139"
+ ],
+ [
+ "000000140"
+ ],
+ [
+ "000000145"
+ ],
+ [
+ "000000146"
+ ],
+ [
+ "000000147"
+ ],
+ [
+ "000000148"
+ ],
+ [
+ "000000150"
+ ],
+ [
+ "000000154"
+ ],
+ [
+ "000000155"
+ ],
+ [
+ "000000156"
+ ],
+ [
+ "000000158"
+ ],
+ [
+ "000000160"
+ ],
+ [
+ "000000161"
+ ],
+ [
+ "000000163"
+ ],
+ [
+ "000000164"
+ ],
+ [
+ "000000166"
+ ],
+ [
+ "000000169"
+ ],
+ [
+ "000000179"
+ ],
+ [
+ "000000181"
+ ],
+ [
+ "000000182"
+ ],
+ [
+ "000000184"
+ ],
+ [
+ "000000186"
+ ],
+ [
+ "000000187"
+ ],
+ [
+ "000000188"
+ ],
+ [
+ "000000189"
+ ],
+ [
+ "000000190"
+ ],
+ [
+ "000000192"
+ ],
+ [
+ "000000196"
+ ],
+ [
+ "000000197"
+ ],
+ [
+ "000000199"
+ ],
+ [
+ "000000200"
+ ],
+ [
+ "000000201"
+ ],
+ [
+ "000000202"
+ ],
+ [
+ "000000203"
+ ],
+ [
+ "000000205"
+ ],
+ [
+ "000000207"
+ ],
+ [
+ "000000208"
+ ],
+ [
+ "000000213"
+ ],
+ [
+ "000000214"
+ ],
+ [
+ "000000215"
+ ],
+ [
+ "000000216"
+ ],
+ [
+ "000000217"
+ ],
+ [
+ "000000218"
+ ],
+ [
+ "000000223"
+ ],
+ [
+ "000000225"
+ ],
+ [
+ "000000228"
+ ],
+ [
+ "000000230"
+ ],
+ [
+ "000000231"
+ ],
+ [
+ "000000233"
+ ],
+ [
+ "000000235"
+ ],
+ [
+ "000000236"
+ ],
+ [
+ "000000237"
+ ],
+ [
+ "000000238"
+ ],
+ [
+ "000000239"
+ ],
+ [
+ "000000240"
+ ],
+ [
+ "000000243"
+ ],
+ [
+ "000000247"
+ ],
+ [
+ "000000250"
+ ],
+ [
+ "000000251"
+ ],
+ [
+ "000000253"
+ ],
+ [
+ "000000256"
+ ],
+ [
+ "000000257"
+ ],
+ [
+ "000000258"
+ ],
+ [
+ "000000260"
+ ],
+ [
+ "000000262"
+ ],
+ [
+ "000000263"
+ ],
+ [
+ "000000264"
+ ],
+ [
+ "000000268"
+ ],
+ [
+ "000000269"
+ ],
+ [
+ "000000270"
+ ],
+ [
+ "000000274"
+ ],
+ [
+ "000000276"
+ ],
+ [
+ "000000277"
+ ],
+ [
+ "000000281"
+ ],
+ [
+ "000000282"
+ ],
+ [
+ "000000284"
+ ],
+ [
+ "000000285"
+ ],
+ [
+ "000000286"
+ ],
+ [
+ "000000287"
+ ],
+ [
+ "000000288"
+ ],
+ [
+ "000000295"
+ ],
+ [
+ "000000297"
+ ],
+ [
+ "000000298"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "How many address types were found for the order with email 'alex.martin@gmail.com'?",
+ "sql": "SELECT address_type FROM sales_order_address WHERE email = 'alex.martin@gmail.com';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ],
+ [
+ "shipping"
+ ],
+ [
+ "billing"
+ ]
+ ]
+ },
+ {
+ "question": "How many order currency codes were found for the order where the shipping name is 'Jane Doe'?",
+ "sql": "SELECT order_currency_code FROM sales_order_grid WHERE shipping_name = 'Jane Doe';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "How many total results are there for the search query with ID 9?",
+ "sql": "SELECT num_results FROM search_query WHERE query_id = 9;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 52?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 52;",
+ "answer": [
+ "sophia.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "sophia.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with entity ID 90?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 90;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with SKU 'WS02-XL-Green'.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'WS02-XL-Green';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price of the order with entity ID 98?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 98;",
+ "answer": [
+ "223.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "223.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'WT02-S-Yellow' in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WT02-S-Yellow');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 166?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 166 AND attribute_id = 77;",
+ "answer": [
+ "42.00"
+ ],
+ "sql_execute_result": [
+ [
+ "42.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the billing address '888 Charles St Baltimore Maryland 21201'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_full = '888 Charles St Baltimore Maryland 21201';",
+ "answer": [
+ "Sophia Kim"
+ ],
+ "sql_execute_result": [
+ [
+ "Sophia Kim"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current state of the order with increment ID '000000090'?",
+ "sql": "SELECT state FROM sales_order WHERE increment_id = '000000090';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 55?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 55;",
+ "answer": [
+ "ethan.garcia@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "ethan.garcia@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with SKU 'WSH10-29-White'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WSH10-29-White';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value given in the review with ID 295?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 295;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are in the 'General' customer group?",
+ "sql": "SELECT email FROM customer_entity WHERE group_id = 1;",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU '24-MG05'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = '24-MG05';",
+ "answer": [
+ "Cruise Dual Analog Watch"
+ ],
+ "sql_execute_result": [
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the customer with email 'katie.wong@hotmail.com'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_id = (SELECT entity_id FROM customer_entity WHERE email = 'katie.wong@hotmail.com');",
+ "answer": [
+ "36",
+ "139",
+ "175",
+ "198",
+ "277"
+ ],
+ "sql_execute_result": [
+ [
+ 36
+ ],
+ [
+ 139
+ ],
+ [
+ 175
+ ],
+ [
+ 198
+ ],
+ [
+ 277
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount amount for the item 'Ana Running Short'?",
+ "sql": "SELECT discount_amount FROM sales_order_item WHERE name = 'Ana Running Short';",
+ "answer": [
+ "8.0000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "8.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "8.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the percent rating for the product with ID 1652.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE entity_pk_value = 1652;",
+ "answer": [
+ "40",
+ "80",
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ 40
+ ],
+ [
+ 80
+ ],
+ [
+ 60
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name for the billing address ID 24.",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE default_billing = 24;",
+ "answer": [
+ "Emma Davis"
+ ],
+ "sql_execute_result": [
+ [
+ "Emma",
+ "Davis"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with code '4'?",
+ "sql": "SELECT position FROM rating_option WHERE code = '4';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 4
+ ],
+ [
+ 4
+ ],
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code for customer address entity ID 67?",
+ "sql": "SELECT postcode FROM customer_address_entity WHERE entity_id = 67;",
+ "answer": [
+ "85004"
+ ],
+ "sql_execute_result": [
+ [
+ "85004"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last sequence value recorded for order sequences?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with option ID 18?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 18;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the sales invoice item entity ID 1.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What region is customer with address entity ID 12 located in?",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 12;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base row total including tax for sales invoice item entity ID 2.",
+ "sql": "SELECT base_row_total_incl_tax FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer address entity ID 11?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 11;",
+ "answer": [
+ "2155556789"
+ ],
+ "sql_execute_result": [
+ [
+ "2155556789"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 33?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have been ordered in total from store ID 1 in 2023?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "161"
+ ],
+ "sql_execute_result": [
+ [
+ "161.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for orders placed by customer with ID 2?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_id = 2;",
+ "answer": [
+ "1735.0500"
+ ],
+ "sql_execute_result": [
+ [
+ "1735.0500"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Default Store View' store?",
+ "sql": "SELECT COUNT(DISTINCT entity_id) FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ 70
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for product with ID 1054 recorded in the bestsellers aggregated data for January 2022.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1054 AND period = '2022-01-01';",
+ "answer": [
+ "Hera Pullover Hoodie-L-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Hera Pullover Hoodie-L-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories does the category with ID 1 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 1;",
+ "answer": [
+ "39"
+ ],
+ "sql_execute_result": [
+ [
+ 39
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many customer names were found who have orders in the store with ID 1?",
+ "sql": "SELECT DISTINCT customer_firstname, customer_lastname FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ],
+ [
+ "Brian",
+ "Smith"
+ ],
+ [
+ "Jane",
+ "Smith"
+ ],
+ [
+ "Grace",
+ "Nguyen"
+ ],
+ [
+ "John",
+ "Doe"
+ ],
+ [
+ "Adam",
+ "Garcia"
+ ],
+ [
+ "Bob",
+ "Johnson"
+ ],
+ [
+ "John",
+ "Smith"
+ ],
+ [
+ "Matt",
+ "Baker"
+ ],
+ [
+ "Jason",
+ "Miller"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Sarah",
+ "Miller"
+ ],
+ [
+ "Sophie",
+ "Taylor"
+ ],
+ [
+ "Julia",
+ "Williams"
+ ],
+ [
+ "Lily",
+ "Potter"
+ ],
+ [
+ "Alex",
+ "Martin"
+ ],
+ [
+ "Mary",
+ "Martin"
+ ],
+ [
+ "Lucy",
+ "Garcia"
+ ],
+ [
+ "Jane",
+ "Doe"
+ ],
+ [
+ "Alex",
+ "Johnson"
+ ],
+ [
+ "Katie",
+ "Wong"
+ ],
+ [
+ "David",
+ "Lee"
+ ],
+ [
+ "Lisa",
+ "Kim"
+ ],
+ [
+ "Michael",
+ "Nguyen"
+ ],
+ [
+ "Lisa",
+ "Green"
+ ],
+ [
+ "Samantha",
+ "Jones"
+ ],
+ [
+ "Ava",
+ "Brown"
+ ],
+ [
+ "Alexander",
+ "Thomas"
+ ],
+ [
+ "John",
+ "Lee"
+ ],
+ [
+ "Jennifer",
+ "White"
+ ],
+ [
+ "Daniel",
+ "Jackson"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Samantha",
+ "Nguyen"
+ ],
+ [
+ "Emma",
+ "Davis"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full address of customer John Smith?",
+ "sql": "SELECT CONCAT(street, ', ', city, ', ', region, ', ', postcode, ', ', country_id) AS address FROM customer_address_entity WHERE firstname = 'John' AND lastname = 'Smith';",
+ "answer": [
+ "123 Main Street, Birmingham, Alabama, 35213, US",
+ "789 Main St, Dallas, Texas, 75201, US"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street, Birmingham, Alabama, 35213, US"
+ ],
+ [
+ "789 Main St, Dallas, Texas, 75201, US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 68?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 68 AND attribute_id = 77;",
+ "answer": [
+ "70.00"
+ ],
+ "sql_execute_result": [
+ [
+ "70.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups and their codes.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were shipped in shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for customer Sean Miller?",
+ "sql": "SELECT region FROM customer_address_entity WHERE firstname = 'Sean' AND lastname = 'Miller';",
+ "answer": [
+ "Utah"
+ ],
+ "sql_execute_result": [
+ [
+ "Utah"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address associated with customer ID 1.",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all active customer addresses in California.",
+ "sql": "SELECT CONCAT(street, ', ', city, ', ', region) AS address FROM customer_address_entity WHERE region = 'California' AND is_active = 1;",
+ "answer": [
+ "321 Maple Avenue, Oakland, California",
+ "456 Beverly Hills Blvd, Beverly Hills, California",
+ "123 Malibu Beach Road, Malibu, California",
+ "789 Rodeo Drive, Beverly Hills, California",
+ "789 W Olympic Blvd, Los Angeles, California",
+ "456 Hollywood Blvd, Los Angeles, California",
+ "456 Sunset Blvd, Los Angeles, California",
+ "90210 Beverly Hills Dr, Beverly Hills, California",
+ "101 S San Mateo Dr, San Mateo, California"
+ ],
+ "sql_execute_result": [
+ [
+ "321 Maple Avenue, Oakland, California"
+ ],
+ [
+ "456 Beverly Hills Blvd, Beverly Hills, California"
+ ],
+ [
+ "123 Malibu Beach Road, Malibu, California"
+ ],
+ [
+ "789 Rodeo Drive, Beverly Hills, California"
+ ],
+ [
+ "789 W Olympic Blvd, Los Angeles, California"
+ ],
+ [
+ "456 Hollywood Blvd, Los Angeles, California"
+ ],
+ [
+ "456 Sunset Blvd, Los Angeles, California"
+ ],
+ [
+ "90210 Beverly Hills Dr, Beverly Hills, California"
+ ],
+ [
+ "101 S San Mateo Dr, San Mateo, California"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with ID 26?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 26;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 19?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 19;",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the order with increment ID '000000128'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000128';",
+ "answer": [
+ "212.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "212.2500"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with the status 'canceled' were found?",
+ "sql": "SELECT entity_id, customer_email, grand_total FROM sales_order WHERE status='canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "roni_cost@example.com",
+ "36.3900"
+ ],
+ [
+ 3,
+ "brian.smith@yahoo.com",
+ "160.2500"
+ ],
+ [
+ 5,
+ "avidreader99@yahoo.com",
+ "137.0000"
+ ],
+ [
+ 6,
+ "johndoe123@gmail.com",
+ "53.0000"
+ ],
+ [
+ 7,
+ "adam.garcia@gmail.com",
+ "108.2500"
+ ],
+ [
+ 8,
+ "bob123@hotmail.com",
+ "146.0000"
+ ],
+ [
+ 10,
+ "matt.baker@yahoo.com",
+ "107.6000"
+ ],
+ [
+ 12,
+ "janesmith@gmail.com",
+ "113.8000"
+ ],
+ [
+ 14,
+ "bbjones@gmail.com",
+ "85.2000"
+ ],
+ [
+ 15,
+ "helloworld@yahoo.com",
+ "61.0000"
+ ],
+ [
+ 18,
+ "fashionista88@gmail.com",
+ "105.0000"
+ ],
+ [
+ 19,
+ "jla_7781@gmail.com",
+ "214.6000"
+ ],
+ [
+ 25,
+ "johndoe123@gmail.com",
+ "204.2500"
+ ],
+ [
+ 26,
+ "artsygal123@hotmail.com",
+ "216.0000"
+ ],
+ [
+ 29,
+ "artsygal123@hotmail.com",
+ "98.4000"
+ ],
+ [
+ 30,
+ "alex.martin@gmail.com",
+ "67.0000"
+ ],
+ [
+ 38,
+ "jason.miller@yahoo.com",
+ "52.2000"
+ ],
+ [
+ 39,
+ "helloworld@yahoo.com",
+ "218.8500"
+ ],
+ [
+ 40,
+ "lisa.kim@gmail.com",
+ "74.0000"
+ ],
+ [
+ 41,
+ "marym@gmail.com",
+ "161.2500"
+ ],
+ [
+ 42,
+ "michael.nguyen@yahoo.com",
+ "211.6000"
+ ],
+ [
+ 44,
+ "lisa.green@hotmail.com",
+ "155.0000"
+ ],
+ [
+ 46,
+ "coolcat321@hotmail.com",
+ "139.0000"
+ ],
+ [
+ 49,
+ "alexander.thomas@hotmail.com",
+ "205.0000"
+ ],
+ [
+ 52,
+ "brian.smith@yahoo.com",
+ "48.0000"
+ ],
+ [
+ 56,
+ "gamingpro456@gmail.com",
+ "198.6000"
+ ],
+ [
+ 58,
+ "john.lee@yahoo.com",
+ "199.1000"
+ ],
+ [
+ 59,
+ "john.smith.xyz@gmail.com",
+ "95.4000"
+ ],
+ [
+ 60,
+ "jennifer.white@yahoo.com",
+ "60.0000"
+ ],
+ [
+ 63,
+ "alex.martin@gmail.com",
+ "196.0000"
+ ],
+ [
+ 66,
+ "coolcat321@hotmail.com",
+ "162.2000"
+ ],
+ [
+ 67,
+ "harrypotterfan1@gmail.com",
+ "194.7600"
+ ],
+ [
+ 68,
+ "john.smith.xyz@gmail.com",
+ "211.8000"
+ ],
+ [
+ 72,
+ "jennifer.white@yahoo.com",
+ "178.0000"
+ ],
+ [
+ 74,
+ "gamingpro456@gmail.com",
+ "67.8000"
+ ],
+ [
+ 76,
+ "janesmith@gmail.com",
+ "72.0000"
+ ],
+ [
+ 77,
+ "fitnessjunkie22@yahoo.com",
+ "104.0000"
+ ],
+ [
+ 80,
+ "avidreader99@yahoo.com",
+ "37.5000"
+ ],
+ [
+ 81,
+ "coolcat321@hotmail.com",
+ "183.5900"
+ ],
+ [
+ 85,
+ "avidreader99@yahoo.com",
+ "203.0000"
+ ],
+ [
+ 86,
+ "johndoe123@gmail.com",
+ "105.4000"
+ ],
+ [
+ 88,
+ "coolcat321@hotmail.com",
+ "168.8000"
+ ],
+ [
+ 94,
+ "fitnessjunkie22@yahoo.com",
+ "64.0000"
+ ],
+ [
+ 95,
+ "john.smith.xyz@gmail.com",
+ "64.0000"
+ ],
+ [
+ 98,
+ "jla_7781@gmail.com",
+ "223.6000"
+ ],
+ [
+ 101,
+ "helloworld@yahoo.com",
+ "199.8000"
+ ],
+ [
+ 103,
+ "janesmith@gmail.com",
+ "71.5000"
+ ],
+ [
+ 106,
+ "john.lee@yahoo.com",
+ "99.0000"
+ ],
+ [
+ 107,
+ "john.smith.xyz@gmail.com",
+ "45.0000"
+ ],
+ [
+ 108,
+ "fitnessjunkie22@yahoo.com",
+ "75.0000"
+ ],
+ [
+ 109,
+ "jason.miller@yahoo.com",
+ "136.4000"
+ ],
+ [
+ 110,
+ "jla_7781@gmail.com",
+ "104.0000"
+ ],
+ [
+ 111,
+ "harrypotterfan1@gmail.com",
+ "217.1200"
+ ],
+ [
+ 117,
+ "john.lee@yahoo.com",
+ "196.8000"
+ ],
+ [
+ 118,
+ "brian.smith@yahoo.com",
+ "29.0000"
+ ],
+ [
+ 120,
+ "matt.baker@yahoo.com",
+ "112.0000"
+ ],
+ [
+ 122,
+ "alexander.thomas@hotmail.com",
+ "123.2000"
+ ],
+ [
+ 123,
+ "soccerfanatic22@gmail.com",
+ "209.0000"
+ ],
+ [
+ 124,
+ "fashionista88@gmail.com",
+ "193.6400"
+ ],
+ [
+ 126,
+ "avidreader99@yahoo.com",
+ "207.0000"
+ ],
+ [
+ 129,
+ "soccerfanatic22@gmail.com",
+ "151.0000"
+ ],
+ [
+ 132,
+ "coolcat321@hotmail.com",
+ "161.8000"
+ ],
+ [
+ 134,
+ "daniel.jackson@hotmail.com",
+ "64.0000"
+ ],
+ [
+ 135,
+ "jennifer.white@yahoo.com",
+ "141.0000"
+ ],
+ [
+ 136,
+ "harrypotterfan1@gmail.com",
+ "208.2000"
+ ],
+ [
+ 141,
+ "matt.baker@yahoo.com",
+ "167.0000"
+ ],
+ [
+ 142,
+ "jla_7781@gmail.com",
+ "87.0000"
+ ],
+ [
+ 143,
+ "brian.smith@yahoo.com",
+ "95.0000"
+ ],
+ [
+ 144,
+ "john.smith.xyz@gmail.com",
+ "171.0000"
+ ],
+ [
+ 149,
+ "beachlover99@yahoo.com",
+ "34.0000"
+ ],
+ [
+ 151,
+ "david.lee@gmail.com",
+ "217.2000"
+ ],
+ [
+ 152,
+ "fitnessjunkie22@yahoo.com",
+ "223.0000"
+ ],
+ [
+ 153,
+ "jane.doe@hotmail.com",
+ "180.8000"
+ ],
+ [
+ 157,
+ "helloworld@yahoo.com",
+ "44.0000"
+ ],
+ [
+ 159,
+ "daniel.jackson@hotmail.com",
+ "29.0000"
+ ],
+ [
+ 162,
+ "soccerfanatic22@gmail.com",
+ "152.2000"
+ ],
+ [
+ 165,
+ "alex.martin@gmail.com",
+ "202.6000"
+ ],
+ [
+ 167,
+ "jla_7781@gmail.com",
+ "38.6000"
+ ],
+ [
+ 168,
+ "bbjones@gmail.com",
+ "146.0000"
+ ],
+ [
+ 170,
+ "soccerfanatic22@gmail.com",
+ "66.0000"
+ ],
+ [
+ 171,
+ "samantha.nguyen@gmail.com",
+ "220.0000"
+ ],
+ [
+ 172,
+ "adam.garcia@gmail.com",
+ "64.0000"
+ ],
+ [
+ 173,
+ "alex.martin@gmail.com",
+ "94.2000"
+ ],
+ [
+ 174,
+ "musiclover99@hotmail.com",
+ "45.8000"
+ ],
+ [
+ 175,
+ "katie.wong@hotmail.com",
+ "205.6400"
+ ],
+ [
+ 176,
+ "lisa.kim@gmail.com",
+ "37.0000"
+ ],
+ [
+ 177,
+ "alex.martin@gmail.com",
+ "76.0000"
+ ],
+ [
+ 178,
+ "lisa.kim@gmail.com",
+ "64.0000"
+ ],
+ [
+ 180,
+ "coolcat321@hotmail.com",
+ "135.2000"
+ ],
+ [
+ 183,
+ "avidreader99@yahoo.com",
+ "201.6000"
+ ],
+ [
+ 185,
+ "helloworld@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 191,
+ "alex.martin@gmail.com",
+ "95.0000"
+ ],
+ [
+ 193,
+ "bbjones@gmail.com",
+ "224.4000"
+ ],
+ [
+ 194,
+ "david.lee@gmail.com",
+ "94.0000"
+ ],
+ [
+ 195,
+ "lisa.kim@gmail.com",
+ "133.0000"
+ ],
+ [
+ 198,
+ "katie.wong@hotmail.com",
+ "96.0000"
+ ],
+ [
+ 204,
+ "artsygal123@hotmail.com",
+ "44.0000"
+ ],
+ [
+ 206,
+ "alexander.thomas@hotmail.com",
+ "62.0000"
+ ],
+ [
+ 209,
+ "daniel.jackson@hotmail.com",
+ "39.0000"
+ ],
+ [
+ 210,
+ "john.lee@yahoo.com",
+ "228.9900"
+ ],
+ [
+ 211,
+ "fashionista88@gmail.com",
+ "107.4000"
+ ],
+ [
+ 212,
+ "fashionista88@gmail.com",
+ "68.0000"
+ ],
+ [
+ 219,
+ "alexander.thomas@hotmail.com",
+ "223.0000"
+ ],
+ [
+ 220,
+ "jane.doe@hotmail.com",
+ "153.4000"
+ ],
+ [
+ 221,
+ "brian.smith@yahoo.com",
+ "76.0000"
+ ],
+ [
+ 222,
+ "janesmith@gmail.com",
+ "185.0000"
+ ],
+ [
+ 224,
+ "matt.baker@yahoo.com",
+ "73.0000"
+ ],
+ [
+ 226,
+ "janesmith456@yahoo.com",
+ "54.0000"
+ ],
+ [
+ 227,
+ "bob123@hotmail.com",
+ "27.0000"
+ ],
+ [
+ 229,
+ "helloworld@yahoo.com",
+ "55.0000"
+ ],
+ [
+ 232,
+ "coolcat321@hotmail.com",
+ "143.0000"
+ ],
+ [
+ 234,
+ "harrypotterfan1@gmail.com",
+ "50.0000"
+ ],
+ [
+ 241,
+ "fitnessjunkie22@yahoo.com",
+ "44.0000"
+ ],
+ [
+ 242,
+ "soccerfanatic22@gmail.com",
+ "183.0000"
+ ],
+ [
+ 244,
+ "fitnessjunkie22@yahoo.com",
+ "89.0000"
+ ],
+ [
+ 245,
+ "jane.doe@hotmail.com",
+ "37.5000"
+ ],
+ [
+ 246,
+ "janesmith@gmail.com",
+ "74.0000"
+ ],
+ [
+ 248,
+ "alexander.thomas@hotmail.com",
+ "192.0000"
+ ],
+ [
+ 249,
+ "coolcat321@hotmail.com",
+ "125.0000"
+ ],
+ [
+ 252,
+ "beachlover99@yahoo.com",
+ "65.0000"
+ ],
+ [
+ 254,
+ "michael.nguyen@yahoo.com",
+ "145.5000"
+ ],
+ [
+ 255,
+ "lisa.kim@gmail.com",
+ "34.0000"
+ ],
+ [
+ 259,
+ "jane.doe@hotmail.com",
+ "189.6000"
+ ],
+ [
+ 261,
+ "harrypotterfan1@gmail.com",
+ "192.0000"
+ ],
+ [
+ 265,
+ "daniel.jackson@hotmail.com",
+ "94.0000"
+ ],
+ [
+ 266,
+ "coolcat321@hotmail.com",
+ "183.1900"
+ ],
+ [
+ 267,
+ "jla_7781@gmail.com",
+ "117.0000"
+ ],
+ [
+ 271,
+ "janesmith@gmail.com",
+ "77.0000"
+ ],
+ [
+ 272,
+ "michael.nguyen@yahoo.com",
+ "82.0000"
+ ],
+ [
+ 273,
+ "john.smith.xyz@gmail.com",
+ "190.0000"
+ ],
+ [
+ 275,
+ "alexander.thomas@hotmail.com",
+ "195.4000"
+ ],
+ [
+ 278,
+ "jason.miller@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 279,
+ "samantha.nguyen@gmail.com",
+ "44.0000"
+ ],
+ [
+ 280,
+ "daniel.jackson@hotmail.com",
+ "71.5000"
+ ],
+ [
+ 283,
+ "bbjones@gmail.com",
+ "154.8000"
+ ],
+ [
+ 289,
+ "daniel.jackson@hotmail.com",
+ "194.5000"
+ ],
+ [
+ 290,
+ "jla_7781@gmail.com",
+ "53.0000"
+ ],
+ [
+ 291,
+ "gamingpro456@gmail.com",
+ "43.4000"
+ ],
+ [
+ 292,
+ "jason.miller@yahoo.com",
+ "121.0000"
+ ],
+ [
+ 293,
+ "johndoe123@gmail.com",
+ "208.0000"
+ ],
+ [
+ 294,
+ "alexander.thomas@hotmail.com",
+ "171.0000"
+ ],
+ [
+ 296,
+ "harrypotterfan1@gmail.com",
+ "23.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000271'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000271';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered in total in order with ID 26?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 26;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for completed orders with status 'complete'?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the email 'janesmith@gmail.com'?",
+ "sql": "SELECT email FROM customer_entity WHERE email = 'janesmith@gmail.com';",
+ "answer": [
+ "janesmith@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for order with increment ID '000000128'.",
+ "sql": "SELECT store_name FROM sales_order WHERE increment_id = '000000128';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with increment_id '000000139' shipped?",
+ "sql": "SELECT CASE WHEN can_ship_partially IS NULL OR can_ship_partially = 0 THEN 'No' ELSE 'Yes' END AS can_ship_partially FROM sales_order WHERE increment_id = '000000139';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ "No"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'michael.nguyen@yahoo.com'?",
+ "sql": "SELECT entity_id, status FROM sales_order WHERE customer_email = 'michael.nguyen@yahoo.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 42,
+ "canceled"
+ ],
+ [
+ 102,
+ "complete"
+ ],
+ [
+ 105,
+ "complete"
+ ],
+ [
+ 119,
+ "complete"
+ ],
+ [
+ 127,
+ "complete"
+ ],
+ [
+ 160,
+ "complete"
+ ],
+ [
+ 179,
+ "complete"
+ ],
+ [
+ 208,
+ "complete"
+ ],
+ [
+ 254,
+ "canceled"
+ ],
+ [
+ 258,
+ "complete"
+ ],
+ [
+ 272,
+ "canceled"
+ ],
+ [
+ 306,
+ "pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping description for the order with increment ID '000000256'?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE increment_id = '000000256';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are there in Romania?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'RO';",
+ "answer": [
+ "42"
+ ],
+ "sql_execute_result": [
+ [
+ "Alba"
+ ],
+ [
+ "Arad"
+ ],
+ [
+ "Arge\u015f"
+ ],
+ [
+ "Bac\u0103u"
+ ],
+ [
+ "Bihor"
+ ],
+ [
+ "Bistri\u0163a-N\u0103s\u0103ud"
+ ],
+ [
+ "Boto\u015fani"
+ ],
+ [
+ "Bra\u015fov"
+ ],
+ [
+ "Br\u0103ila"
+ ],
+ [
+ "Bucure\u015fti"
+ ],
+ [
+ "Buz\u0103u"
+ ],
+ [
+ "Cara\u015f-Severin"
+ ],
+ [
+ "C\u0103l\u0103ra\u015fi"
+ ],
+ [
+ "Cluj"
+ ],
+ [
+ "Constan\u0163a"
+ ],
+ [
+ "Covasna"
+ ],
+ [
+ "D\u00e2mbovi\u0163a"
+ ],
+ [
+ "Dolj"
+ ],
+ [
+ "Gala\u0163i"
+ ],
+ [
+ "Giurgiu"
+ ],
+ [
+ "Gorj"
+ ],
+ [
+ "Harghita"
+ ],
+ [
+ "Hunedoara"
+ ],
+ [
+ "Ialomi\u0163a"
+ ],
+ [
+ "Ia\u015fi"
+ ],
+ [
+ "Ilfov"
+ ],
+ [
+ "Maramure\u015f"
+ ],
+ [
+ "Mehedin\u0163i"
+ ],
+ [
+ "Mure\u015f"
+ ],
+ [
+ "Neam\u0163"
+ ],
+ [
+ "Olt"
+ ],
+ [
+ "Prahova"
+ ],
+ [
+ "Satu-Mare"
+ ],
+ [
+ "S\u0103laj"
+ ],
+ [
+ "Sibiu"
+ ],
+ [
+ "Suceava"
+ ],
+ [
+ "Teleorman"
+ ],
+ [
+ "Timi\u015f"
+ ],
+ [
+ "Tulcea"
+ ],
+ [
+ "Vaslui"
+ ],
+ [
+ "V\u00e2lcea"
+ ],
+ [
+ "Vrancea"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all complete orders?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the value of the decimal attribute for product ID 1425.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1425 AND attribute_id = 77;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the current sequence value for shipments.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many canceled orders were found?",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 3
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 10
+ ],
+ [
+ 12
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 44
+ ],
+ [
+ 46
+ ],
+ [
+ 49
+ ],
+ [
+ 52
+ ],
+ [
+ 56
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 63
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 72
+ ],
+ [
+ 74
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 88
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 98
+ ],
+ [
+ 101
+ ],
+ [
+ 103
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 120
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 126
+ ],
+ [
+ 129
+ ],
+ [
+ 132
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 149
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 157
+ ],
+ [
+ 159
+ ],
+ [
+ 162
+ ],
+ [
+ 165
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 180
+ ],
+ [
+ 183
+ ],
+ [
+ 185
+ ],
+ [
+ 191
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 198
+ ],
+ [
+ 204
+ ],
+ [
+ 206
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 224
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 229
+ ],
+ [
+ 232
+ ],
+ [
+ 234
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 252
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 259
+ ],
+ [
+ 261
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 275
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 283
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 296
+ ]
+ ]
+ },
+ {
+ "question": "What is the protect code for order with entity ID 18?",
+ "sql": "SELECT protect_code FROM sales_order WHERE entity_id = 18;",
+ "answer": [
+ "d337d9ab2dfc1bfe5378dd7ae44bcaa5"
+ ],
+ "sql_execute_result": [
+ [
+ "d337d9ab2dfc1bfe5378dd7ae44bcaa5"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name associated with the attribute option value ID 120?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 120;",
+ "answer": [
+ "Windbreaker"
+ ],
+ "sql_execute_result": [
+ [
+ "Windbreaker"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were made by customer with ID 17?",
+ "sql": "SELECT entity_id, status FROM sales_order WHERE customer_id = 17;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 21,
+ "complete"
+ ],
+ [
+ 22,
+ "complete"
+ ],
+ [
+ 67,
+ "canceled"
+ ],
+ [
+ 111,
+ "canceled"
+ ],
+ [
+ 136,
+ "canceled"
+ ],
+ [
+ 181,
+ "complete"
+ ],
+ [
+ 182,
+ "complete"
+ ],
+ [
+ 234,
+ "canceled"
+ ],
+ [
+ 261,
+ "canceled"
+ ],
+ [
+ 296,
+ "canceled"
+ ],
+ [
+ 303,
+ "pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 978?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 978 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.
\n• Navy polyester pinstripe shorts.
• Woven fabric with moderate stretch.
• 62% cotton/34% nylon/4% spandex.
• LumaTech™ lining.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.
\n• Navy polyester pinstripe shorts.
• Woven fabric with moderate stretch.
• 62% cotton/34% nylon/4% spandex.
• LumaTech™ lining.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value given in vote ID 286?",
+ "sql": "SELECT value FROM rating_option_vote WHERE vote_id = 286;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WH11-S-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile ID 4 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the store code for the admin store.",
+ "sql": "SELECT code FROM store WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "How many product descriptions mention 'Reflectivity'?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE value LIKE '%Reflectivity%';",
+ "answer": [
+ "42"
+ ],
+ "sql_execute_result": [
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.
\n• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Troy Yoga Short'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "MSH09-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH09-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with shipment parent ID 3?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for product ID 1194 in sales shipment items.",
+ "sql": "SELECT price FROM sales_shipment_item WHERE product_id = 1194;",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 1020?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1020 AND attribute_id = 77;",
+ "answer": [
+ "27.00"
+ ],
+ "sql_execute_result": [
+ [
+ "27.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the best-selling product for the store with ID 1 in 2022.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2022-01-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with the default store ID 1?",
+ "sql": "SELECT name FROM store_group WHERE default_store_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "How many product names have a rating position above 100 for store ID 1 in 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2022-01-01' AND rating_pos > 100;",
+ "answer": [
+ "183"
+ ],
+ "sql_execute_result": [
+ [
+ "Hero Hoodie-S-Green"
+ ],
+ [
+ "Inez Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Blue"
+ ],
+ [
+ "Meteor Workout Short-32-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Orange"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Black"
+ ],
+ [
+ "Maxima Drawstring Short-29-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Orestes Fitness Short-36-Black"
+ ],
+ [
+ "Atomic Endurance Running Tee (Crew-Neck)-S-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Gray"
+ ],
+ [
+ "Aero Daily Fitness Tee-L-Yellow"
+ ],
+ [
+ "Miko Pullover Hoodie-S-Orange"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-S-Green"
+ ],
+ [
+ "Celeste Sports Bra-M-Red"
+ ],
+ [
+ "Eos V-Neck Hoodie-L-Green"
+ ],
+ [
+ "Sol Active Short-34-Purple"
+ ],
+ [
+ "Emma Leggings-29-Red"
+ ],
+ [
+ "Leah Yoga Top-S-White"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XS-Blue"
+ ],
+ [
+ "Nora Practice Tank-M-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Blue"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Gray"
+ ],
+ [
+ "Strike Endurance Tee-L-Blue"
+ ],
+ [
+ "Lono Yoga Short-34-Gray"
+ ],
+ [
+ "Zoe Tank-XL-Orange"
+ ],
+ [
+ "Helios Endurance Tank-L-Blue"
+ ],
+ [
+ "Vulcan Weightlifting Tank-M-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Red"
+ ],
+ [
+ "Vulcan Weightlifting Tank-XS-Black"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-L-Red"
+ ],
+ [
+ "Ana Running Short-28-White"
+ ],
+ [
+ "Angel Light Running Short-28-Orange"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Green"
+ ],
+ [
+ "Logan HeatTec® Tee-M-Blue"
+ ],
+ [
+ "Balboa Persistence Tee-S-Orange"
+ ],
+ [
+ "Teton Pullover Hoodie-S-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Aero Daily Fitness Tee-XL-Brown"
+ ],
+ [
+ "Orestes Yoga Pant -34-Black"
+ ],
+ [
+ "Rival Field Messenger"
+ ],
+ [
+ "Sybil Running Short-29-Purple"
+ ],
+ [
+ "Gwen Drawstring Bike Short-31-Orange"
+ ],
+ [
+ "Sinbad Fitness Tank-XL-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Blue"
+ ],
+ [
+ "Zoltan Gym Tee-M-Green"
+ ],
+ [
+ "Lando Gym Jacket-L-Blue"
+ ],
+ [
+ "Arcadio Gym Short-34-Red"
+ ],
+ [
+ "Montana Wind Jacket-L-Green"
+ ],
+ [
+ "Diva Gym Tee-L-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Blue"
+ ],
+ [
+ "Bolo Sport Watch"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XL-Blue"
+ ],
+ [
+ "Radiant Tee-XL-Orange"
+ ],
+ [
+ "Sybil Running Short-30-Purple"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Thorpe Track Pant-34-Purple"
+ ],
+ [
+ "Mimi All-Purpose Short-29-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Blue"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -XS-Blue"
+ ],
+ [
+ "Vulcan Weightlifting Tank-L-Black"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XL-Blue"
+ ],
+ [
+ "Lando Gym Jacket-M-Green"
+ ],
+ [
+ "Fiona Fitness Short-32-Black"
+ ],
+ [
+ "Rapha Sports Short-32-Black"
+ ],
+ [
+ "Portia Capri-29-Green"
+ ],
+ [
+ "Sahara Leggings-28-Blue"
+ ],
+ [
+ "Iris Workout Top-M-Red"
+ ],
+ [
+ "Selene Yoga Hoodie-M-Orange"
+ ],
+ [
+ "Pierce Gym Short-34-Black"
+ ],
+ [
+ "Oslo Trek Hoodie-XS-Purple"
+ ],
+ [
+ "Rapha Sports Short-33-Black"
+ ],
+ [
+ "Cassius Sparring Tank-XL-Blue"
+ ],
+ [
+ "Diva Gym Tee-L-Yellow"
+ ],
+ [
+ "Argus All-Weather Tank-L-Gray"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ "Maxima Drawstring Short-29-Orange"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Red"
+ ],
+ [
+ "Apollo Running Short-36-Black"
+ ],
+ [
+ "Summit Watch"
+ ],
+ [
+ "Primo Endurance Tank-M-Yellow"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Red"
+ ],
+ [
+ "Erica Evercool Sports Bra-XL-Yellow"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-L-Red"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Red"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XL-Orange"
+ ],
+ [
+ "Prima Compete Bra Top-L-Purple"
+ ],
+ [
+ "Mithra Warmup Pant-33-Green"
+ ],
+ [
+ "Electra Bra Top-XL-Purple"
+ ],
+ [
+ "Aether Gym Pant -32-Blue"
+ ],
+ [
+ "Ana Running Short-29-Black"
+ ],
+ [
+ "Hyperion Elements Jacket-M-Orange"
+ ],
+ [
+ "Carina Basic Capri-28-Purple"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Yellow"
+ ],
+ [
+ "Erikssen CoolTech™ Fitness Tank-XS-Orange"
+ ],
+ [
+ "Balboa Persistence Tee-L-Orange"
+ ],
+ [
+ "Kratos Gym Pant-32-Green"
+ ],
+ [
+ "Karmen Yoga Pant-29-Gray"
+ ],
+ [
+ "Riona Full Zip Jacket-M-Brown"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XL-Red"
+ ],
+ [
+ "Arcadio Gym Short-36-Black"
+ ],
+ [
+ "Tristan Endurance Tank-L-Red"
+ ],
+ [
+ "Apollo Running Short-34-Black"
+ ],
+ [
+ "Sahara Leggings-28-Gray"
+ ],
+ [
+ "Sol Active Short-36-Green"
+ ],
+ [
+ "Teton Pullover Hoodie-L-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-XL-Orange"
+ ],
+ [
+ "Stark Fundamental Hoodie-XL-Black"
+ ],
+ [
+ "Nona Fitness Tank-S-Blue"
+ ],
+ [
+ "Oslo Trek Hoodie-S-Brown"
+ ],
+ [
+ "Antonia Racer Tank-M-Purple"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-M-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-M-Blue"
+ ],
+ [
+ "Hyperion Elements Jacket-S-Red"
+ ],
+ [
+ "Emma Leggings-29-Purple"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-M-Green"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-L-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Iris Workout Top-S-Blue"
+ ],
+ [
+ "Antonia Racer Tank-L-Purple"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-XL-Green"
+ ],
+ [
+ "Carina Basic Capri-28-Blue"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Kenobi Trail Jacket-L-Black"
+ ],
+ [
+ "Zoltan Gym Tee-XL-Green"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Black"
+ ],
+ [
+ "Daria Bikram Pant-28-White"
+ ],
+ [
+ "Sylvia Capri-29-Blue"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red"
+ ],
+ [
+ "Beaumont Summit Kit-S-Orange"
+ ],
+ [
+ "Mars HeatTech™ Pullover-M-Black"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XS-Blue"
+ ],
+ [
+ "Daria Bikram Pant-29-White"
+ ],
+ [
+ "Riona Full Zip Jacket-S-Green"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-White"
+ ],
+ [
+ "Zoe Tank-M-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Green"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-L-Orange"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Red"
+ ],
+ [
+ "Carina Basic Capri-28-Black"
+ ],
+ [
+ "Cronus Yoga Pant -36-Red"
+ ],
+ [
+ "Cronus Yoga Pant -34-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-White"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Blue"
+ ],
+ [
+ "Mimi All-Purpose Short-28-Green"
+ ],
+ [
+ "Frankie Sweatshirt-L-Yellow"
+ ],
+ [
+ "Layla Tee-M-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-XL-Purple"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Red"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-29-Green"
+ ],
+ [
+ "Helios EverCool™ Tee-M-Black"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Black"
+ ],
+ [
+ "Ingrid Running Jacket-XL-White"
+ ],
+ [
+ "Helios Endurance Tank-S-Blue"
+ ],
+ [
+ "Zoe Tank-L-Yellow"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ "Leah Yoga Top-S-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-L-White"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Thorpe Track Pant-33-Black"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Green"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Atlas Fitness Tank-M-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Blue"
+ ],
+ [
+ "Aero Daily Fitness Tee-XS-Brown"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Prima Compete Bra Top-XL-Yellow"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-M-Orange"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-M-Purple"
+ ],
+ [
+ "Lono Yoga Short-34-Blue"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ [
+ "Kratos Gym Pant-32-Black"
+ ],
+ [
+ "Proteus Fitness Jackshirt-L-Blue"
+ ],
+ [
+ "Bella Tank-XL-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-36-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the option ID 56 in the attribute option value table?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 56;",
+ "answer": [
+ "Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Sinbad Fitness Tank-M-Blue' in store ID 1 for the year 2022.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sinbad Fitness Tank-M-Blue' AND store_id = 1 AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store group has the root category ID 2?",
+ "sql": "SELECT name FROM store_group WHERE root_category_id = 2;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Leah Yoga Top-XS-Purple' in store ID 0 for the year 2022.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Leah Yoga Top-XS-Purple' AND store_id = 0 AND period = '2022-01-01';",
+ "answer": [
+ "39.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "39.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Sprite Yoga Strap 6 foot' in store ID 1 for the year 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sprite Yoga Strap 6 foot' AND store_id = 1 AND period = '2022-01-01';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ 18
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 40?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 40;",
+ "answer": [
+ "jessica.nguyen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.nguyen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are in category ID 8?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 8;",
+ "answer": [
+ "347"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 13
+ ],
+ [
+ 19
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 44
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product ID 878 in category ID 2?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 878 AND category_id = 2;",
+ "answer": [
+ "-262"
+ ],
+ "sql_execute_result": [
+ [
+ -262
+ ]
+ ]
+ },
+ {
+ "question": "Get the name associated with the rating ID 1.",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the image path for product ID 21.",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 21 AND attribute_id = 87;",
+ "answer": [
+ "/l/u/luma-yoga-brick.jpg"
+ ],
+ "sql_execute_result": [
+ [
+ "/l/u/luma-yoga-brick.jpg"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with the email 'david.lee@gmail.com'?",
+ "sql": "SELECT firstname FROM customer_entity WHERE email = 'david.lee@gmail.com';",
+ "answer": [
+ "David"
+ ],
+ "sql_execute_result": [
+ [
+ "David"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value of the last created order.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings for entity ID 1.",
+ "sql": "SELECT rating_code FROM rating WHERE entity_id = 1 AND is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID for customer email 'janesmith456@yahoo.com'?",
+ "sql": "SELECT store_id FROM customer_entity WHERE email = 'janesmith456@yahoo.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with increment ID '000000099'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000099';",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total price including tax for the product with SKU 'MT11-M-Blue'.",
+ "sql": "SELECT price_incl_tax FROM sales_order_item WHERE sku = 'MT11-M-Blue';",
+ "answer": [
+ "18.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "18.0000"
+ ],
+ [
+ null
+ ],
+ [
+ "18.0000"
+ ],
+ [
+ null
+ ],
+ [
+ "18.0000"
+ ],
+ [
+ null
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with ID 145 in the sales order grid?",
+ "sql": "SELECT status FROM sales_order_grid WHERE entity_id = 145;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the payment method used for the order with ID 197.",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 197;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product associated with the order item ID 941.",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 941;",
+ "answer": [
+ "Sylvia Capri"
+ ],
+ "sql_execute_result": [
+ [
+ "Sylvia Capri"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are linked to category ID 34?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 34;",
+ "answer": [
+ "279"
+ ],
+ "sql_execute_result": [
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in the order with increment ID '000000078'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000078';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have orders with a status of 'canceled' in the sales order grid?",
+ "sql": "SELECT DISTINCT customer_name FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Katie Wong"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with increment ID '000000179'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE increment_id = '000000179';",
+ "answer": [
+ "789 W Madison St, Chicago, Illinois, 60606"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Madison St,Chicago,Illinois,60606"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'avidreader99@yahoo.com'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_email = 'avidreader99@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "137.0000"
+ ],
+ [
+ "143.8000"
+ ],
+ [
+ "215.0000"
+ ],
+ [
+ "196.2000"
+ ],
+ [
+ "210.0000"
+ ],
+ [
+ "37.5000"
+ ],
+ [
+ "203.0000"
+ ],
+ [
+ "65.0000"
+ ],
+ [
+ "207.0000"
+ ],
+ [
+ "198.6400"
+ ],
+ [
+ "201.6000"
+ ],
+ [
+ "251.2400"
+ ],
+ [
+ "88.0000"
+ ],
+ [
+ "101.2000"
+ ],
+ [
+ "175.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount of the order with increment ID '000000250'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000250';",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with increment ID '000000197'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000197';",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 989.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 989;",
+ "answer": [
+ "Review ID: 120, Created At: 2023-04-19 16:15:13",
+ "Review ID: 121, Created At: 2023-04-19 16:15:13",
+ "Review ID: 122, Created At: 2023-04-19 16:15:13"
+ ],
+ "sql_execute_result": [
+ [
+ 120,
+ "2023-04-19 16:15:13"
+ ],
+ [
+ 121,
+ "2023-04-19 16:15:13"
+ ],
+ [
+ 122,
+ "2023-04-19 16:15:13"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of the order with increment ID '000000137'.",
+ "sql": "SELECT weight FROM sales_order WHERE increment_id = '000000137';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name for the order with increment ID '000000083'?",
+ "sql": "SELECT CONCAT(customer_firstname, ' ', customer_lastname) AS customer_name FROM sales_order WHERE increment_id = '000000083';",
+ "answer": [
+ "Bob Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review status ID for the review with ID 293.",
+ "sql": "SELECT status_id FROM review WHERE review_id = 293;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for entity ID 1411 in the decimal attribute table?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1411 AND attribute_id = 77;",
+ "answer": [
+ "28.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "28.000000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders for customer ID 11.",
+ "sql": "SELECT increment_id, grand_total FROM sales_order WHERE customer_id = 11;",
+ "answer": [
+ "Order ID: 000000071, Total: 59.0000",
+ "Order ID: 000000134, Total: 64.0000",
+ "Order ID: 000000159, Total: 29.0000",
+ "Order ID: 000000209, Total: 39.0000",
+ "Order ID: 000000233, Total: 77.4000",
+ "Order ID: 000000250, Total: 25.0000",
+ "Order ID: 000000265, Total: 94.0000",
+ "Order ID: 000000280, Total: 71.5000",
+ "Order ID: 000000289, Total: 194.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "000000071",
+ "59.0000"
+ ],
+ [
+ "000000134",
+ "64.0000"
+ ],
+ [
+ "000000159",
+ "29.0000"
+ ],
+ [
+ "000000209",
+ "39.0000"
+ ],
+ [
+ "000000233",
+ "77.4000"
+ ],
+ [
+ "000000250",
+ "25.0000"
+ ],
+ [
+ "000000265",
+ "94.0000"
+ ],
+ [
+ "000000280",
+ "71.5000"
+ ],
+ [
+ "000000289",
+ "194.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 1607?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1607;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "How many product SKUs are associated with category ID 35?",
+ "sql": "SELECT cpe.sku FROM catalog_category_product ccp JOIN catalog_product_entity cpe ON ccp.product_id = cpe.entity_id WHERE ccp.category_id = 35;",
+ "answer": [
+ "310"
+ ],
+ "sql_execute_result": [
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH08"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have been ordered in the default store view in February 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE store_id = 0 AND period = '2023-02-01';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation timestamp for the product with entity ID 25?",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE entity_id = 25;",
+ "answer": [
+ "2023-04-19 16:12:45"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:12:45"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders for the customer with ID 1?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Retailer' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name of the bestseller for November 2022 in store 1.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-11-01' AND store_id = 1 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Jade Yoga Jacket-XS-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Jade Yoga Jacket-XS-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "List the ISO-3 code for the country with ISO-2 code 'BY'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'BY';",
+ "answer": [
+ "BLR"
+ ],
+ "sql_execute_result": [
+ [
+ "BLR"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Josie Yoga Jacket-XS-Blue' in January 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Josie Yoga Jacket-XS-Blue' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation date of the review with ID 133.",
+ "sql": "SELECT created_at FROM review WHERE review_id = 133;",
+ "answer": [
+ "2023-04-19 16:15:14"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:14"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the table 'sales_order'?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_table = 'sales_order';",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position of the product 'Sprite Stasis Ball 75 cm' for October 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sprite Stasis Ball 75 cm' AND period = '2022-10-01';",
+ "answer": [
+ "5",
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ],
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "What is the status ID of the review for product ID 37?",
+ "sql": "SELECT status_id FROM review WHERE entity_pk_value = 37;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List the product price of 'Iris Workout Top-L-Red' for January 2023 in store 1.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Iris Workout Top-L-Red' AND period = '2023-01-01' AND store_id = 1;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity model for the 'catalog_category' entity type.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'catalog_category';",
+ "answer": [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for the store with code 'default'?",
+ "sql": "SELECT name FROM store WHERE code = 'default';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find all sales orders that have the status 'processing'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'processing';",
+ "answer": [
+ "125",
+ "300"
+ ],
+ "sql_execute_result": [
+ [
+ 125
+ ],
+ [
+ 300
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the sales order with parent ID 162?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 162;",
+ "answer": [
+ "soccerfanatic22@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the state associated with the region ID 57.",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 57 LIMIT 1;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the store with ID 1 is active.",
+ "sql": "SELECT is_active FROM store WHERE store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer address entity with ID 20?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 20;",
+ "answer": [
+ "7135555555"
+ ],
+ "sql_execute_result": [
+ [
+ "7135555555"
+ ]
+ ]
+ },
+ {
+ "question": "Get the city name for customer address entity with ID 60.",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 60;",
+ "answer": [
+ "Beverly Hills"
+ ],
+ "sql_execute_result": [
+ [
+ "Beverly Hills"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the order with sequence value 230?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 WHERE sequence_value = 230;",
+ "answer": [
+ "230"
+ ],
+ "sql_execute_result": [
+ [
+ 230
+ ]
+ ]
+ },
+ {
+ "question": "Find the street address for the billing address with entity ID 134.",
+ "sql": "SELECT street FROM sales_order_address WHERE entity_id = 134;",
+ "answer": [
+ "123 Hogwarts Lane"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Hogwarts Lane"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the customer first name for the shipping address with entity ID 451.",
+ "sql": "SELECT firstname FROM sales_order_address WHERE entity_id = 451;",
+ "answer": [
+ "Jane"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default status for the processing state.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'processing' AND is_default = 1;",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute value for product ID 1605 in the catalog_product_entity_varchar table?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1605;",
+ "answer": [
+ "Erica Evercool Sports Bra-XS-Blue",
+ "container2",
+ "erica-evercool-sports-bra-xs-blue",
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "Erica Evercool Sports Bra-XS-Blue"
+ ],
+ [
+ "container2"
+ ],
+ [
+ "erica-evercool-sports-bra-xs-blue"
+ ],
+ [
+ "0"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store code for the admin store.",
+ "sql": "SELECT code FROM store WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order of the option with ID 184 in eav_attribute_option?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 184;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with ID 15?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 15;",
+ "answer": [
+ "208"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the category ID for product ID 737 from catalog_category_product.",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 737;",
+ "answer": [
+ "18",
+ "32",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 18
+ ],
+ [
+ 32
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product ID 1723 in the catalog_category_product table?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1723;",
+ "answer": [
+ "-135",
+ "-219",
+ "-910"
+ ],
+ "sql_execute_result": [
+ [
+ -135
+ ],
+ [
+ -219
+ ],
+ [
+ -910
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID for the option ID 99 in eav_attribute_option.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 99;",
+ "answer": [
+ "147"
+ ],
+ "sql_execute_result": [
+ [
+ 147
+ ]
+ ]
+ },
+ {
+ "question": "What is the value ID for the attribute with ID 106 and entity ID 726 in catalog_product_entity_varchar?",
+ "sql": "SELECT value_id FROM catalog_product_entity_varchar WHERE attribute_id = 106 AND entity_id = 726;",
+ "answer": [
+ "3036"
+ ],
+ "sql_execute_result": [
+ [
+ 3036
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were found in the 'Default Store View' created on April 23, 2023?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View' AND DATE(created_at) = '2023-04-23';",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for customer 'Lisa Green'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Lisa Green';",
+ "answer": [
+ "456 Elm Street Dallas Texas 75201"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Elm Street Dallas Texas 75201"
+ ]
+ ]
+ },
+ {
+ "question": "List the titles of active CMS pages.",
+ "sql": "SELECT title FROM cms_page WHERE is_active = 1;",
+ "answer": [
+ "404 Not Found",
+ "Home Page",
+ "Enable Cookies",
+ "About us",
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "404 Not Found"
+ ],
+ [
+ "Home Page"
+ ],
+ [
+ "Enable Cookies"
+ ],
+ [
+ "About us"
+ ],
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "Which review status is not approved?",
+ "sql": "SELECT status_code FROM review_status WHERE status_code = 'Not Approved';",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with ISO2 code 'JP'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'JP';",
+ "answer": [
+ "JPN"
+ ],
+ "sql_execute_result": [
+ [
+ "JPN"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email with billing postcode '10001'.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE billing_postcode = '10001';",
+ "answer": [
+ "johndoe123@gmail.com",
+ "alex.martin@gmail.com",
+ "kate.jones@gmail.com",
+ "roberto.lopez@hotmail.com",
+ "jane.doe@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the CMS page with identifier 'about-us'?",
+ "sql": "SELECT content FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "\n
With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We\u2019re passionate about active lifestyles \u2013 and it goes way beyond apparel.
\n\n
At Luma, wellness is a way of life. We don\u2019t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.
\n\n
We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.
\n\n
\n
\n"
+ ],
+ "sql_execute_result": [
+ [
+ "\n
With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We\u2019re passionate about active lifestyles \u2013 and it goes way beyond apparel.
\n\n
At Luma, wellness is a way of life. We don\u2019t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.
\n\n
We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.
\n\n
\n
\n"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the region 'Arizona' in their billing address?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_region = 'Arizona';",
+ "answer": [
+ "Adam Garcia",
+ "Jacob Rivera",
+ "Isaac Rodriguez"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Isaac Rodriguez"
+ ]
+ ]
+ },
+ {
+ "question": "What are the details of the CMS page with identifier 'enable-cookies'?",
+ "sql": "SELECT title, content_heading, creation_time FROM cms_page WHERE identifier = 'enable-cookies';",
+ "answer": [
+ "Enable Cookies",
+ "What are Cookies?",
+ "2023-04-19 15:41:33"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Cookies",
+ "What are Cookies?",
+ "2023-04-19 15:41:33"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating with ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default stock name for website ID 0?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE website_id = 0;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on April 3, 2023?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-04-03' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 487 in Brazil?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 487 AND country_id = 'BR';",
+ "answer": [
+ "Amap\u00e1"
+ ],
+ "sql_execute_result": [
+ [
+ "Amap\u00e1"
+ ]
+ ]
+ },
+ {
+ "question": "List the customer group codes available in the customer group table.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the content heading of the CMS page with title 'Customer Service'.",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status of the order aggregated on August 26, 2022?",
+ "sql": "SELECT order_status FROM sales_order_aggregated_created WHERE period = '2022-08-26';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the country code for the region 'Krustpils novads'?",
+ "sql": "SELECT country_id FROM directory_country_region WHERE default_name = 'Krustpils novads';",
+ "answer": [
+ "LV"
+ ],
+ "sql_execute_result": [
+ [
+ "LV"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page with title 'Enable Cookies' currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Enable Cookies';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on August 20, 2022?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-08-20' AND order_status = 'complete';",
+ "answer": [
+ "97.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "97.0000"
+ ],
+ [
+ "97.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'tanks'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'tanks';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'NS' in the country 'CA'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'NS' AND country_id = 'CA';",
+ "answer": [
+ "Nova Scotia"
+ ],
+ "sql_execute_result": [
+ [
+ "Nova Scotia"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile ID 4 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity of the search query with the text 'nike'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store ID for the store group named 'Main Website Store'?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'MT02-M-Gray'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the country code for the region 'Fier'?",
+ "sql": "SELECT country_id FROM directory_country_region WHERE default_name = 'Fier';",
+ "answer": [
+ "AL"
+ ],
+ "sql_execute_result": [
+ [
+ "AL"
+ ]
+ ]
+ },
+ {
+ "question": "Find the root category ID for the store group with the code 'main_website_store'.",
+ "sql": "SELECT root_category_id FROM store_group WHERE code = 'main_website_store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the max value for the sales sequence profile with meta ID 2?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE meta_id = 2;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with product ID 830?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 830;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer lives in Birmingham?",
+ "sql": "SELECT firstname, lastname FROM customer_address_entity WHERE city = 'Birmingham';",
+ "answer": [
+ "John Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "John",
+ "Smith"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews have been submitted for the product with ID 1819?",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = 1819;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store view code?",
+ "sql": "SELECT code FROM store WHERE store_id = 1;",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with ID 0 active?",
+ "sql": "SELECT is_active FROM store WHERE store_id = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity model associated with the 'catalog_category' entity type code.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'catalog_category';",
+ "answer": [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 12?",
+ "sql": "SELECT region FROM customer_address_entity WHERE region_id = 12;",
+ "answer": [
+ "California"
+ ],
+ "sql_execute_result": [
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ],
+ [
+ "California"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for the stock ID 1?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE stock_id = 1 AND is_in_stock = 1;",
+ "answer": [
+ "2039"
+ ],
+ "sql_execute_result": [
+ [
+ 2039
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number of the customer living in Denver?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE city = 'Denver';",
+ "answer": [
+ "3035555555",
+ "3035551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3035555555"
+ ],
+ [
+ "3035551212"
+ ],
+ [
+ "3035551212"
+ ],
+ [
+ "3035551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for entity type ID 6?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were bestsellers on 2023-04-19 for store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-04-19' AND store_id = 1;",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ "Crown Summit Backpack"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red"
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray"
+ ],
+ [
+ "Troy Yoga Short-32-Black"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue"
+ ],
+ [
+ "Nadia Elements Shell-S-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green"
+ ],
+ [
+ "Celeste Sports Bra-L-Red"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue"
+ ],
+ [
+ "Aeon Capri-28-Black"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow"
+ ],
+ [
+ "Angel Light Running Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity shipped in shipment with increment ID '000000002'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of invoice with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Ina Compression Short-29-Blue'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Ina Compression Short-29-Blue';",
+ "answer": [
+ "49.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "49.0000"
+ ],
+ [
+ "49.0000"
+ ],
+ [
+ "49.0000"
+ ],
+ [
+ "49.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for product ID 220 on 2023-01-17 in store ID 1.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_id = 220 AND period = '2023-01-17' AND store_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine if the sales sequence profile with ID 5 is active.",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the tax amount for the invoice with increment ID '000000001'.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal including tax for invoice with entity ID 1?",
+ "sql": "SELECT subtotal_incl_tax FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position of the product 'Inez Full Zip Jacket-XS-Red' on 2022-06-26 in store ID 0.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Inez Full Zip Jacket-XS-Red' AND period = '2022-06-26' AND store_id = 0;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'home'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1924?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1924;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 30?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 30;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ]
+ ]
+ },
+ {
+ "question": "Get the nickname of the reviewer who posted the review titled 'unflattering. Ugh.'",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'unflattering. Ugh.';",
+ "answer": [
+ "Avelina"
+ ],
+ "sql_execute_result": [
+ [
+ "Avelina"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the 'Privacy Policy' page is active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of active CMS pages.",
+ "sql": "SELECT COUNT(*) FROM cms_page WHERE is_active = 1;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page updated on '2025-06-03'?",
+ "sql": "SELECT title FROM cms_page WHERE update_time = '2025-06-03 09:26:35';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status and state of the order with ID 85?",
+ "sql": "SELECT status, state FROM sales_order WHERE entity_id = 85;",
+ "answer": [
+ "canceled",
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled",
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders on 2023-01-28?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-01-28';",
+ "answer": [
+ "5.0000",
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ],
+ [
+ "20.0000"
+ ],
+ [
+ "5.0000"
+ ],
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2023-02-16?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-02-16' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with ID 33.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 33;",
+ "answer": [
+ "24-WG085"
+ ],
+ "sql_execute_result": [
+ [
+ "24-WG085"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped for shipment ID 3?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for store ID 1 on 2022-09-23.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-09-23';",
+ "answer": [
+ "210.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MH11-XL-Orange'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MH11-XL-Orange';",
+ "answer": [
+ "Grayson Crewneck Sweatshirt",
+ "Grayson Crewneck Sweatshirt -XL-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Grayson Crewneck Sweatshirt "
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer group ID 2?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 1812.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1812;",
+ "answer": [
+ "WT09"
+ ],
+ "sql_execute_result": [
+ [
+ "WT09"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the invoice item with entity ID 1?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 29?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 29 AND attribute_id = 120;",
+ "answer": [
+ "promotions"
+ ],
+ "sql_execute_result": [
+ [
+ "promotions"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the type ID for the product with SKU 'MSH11-36-Black'?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'MSH11-36-Black';",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the order with the highest sequence value in sequence_order_1.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs are in the catalog_product_entity table?",
+ "sql": "SELECT sku FROM catalog_product_entity;",
+ "answer": [
+ "2040"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ],
+ [
+ "24-MB02"
+ ],
+ [
+ "24-MB03"
+ ],
+ [
+ "24-MB04"
+ ],
+ [
+ "24-MB05"
+ ],
+ [
+ "24-MB06"
+ ],
+ [
+ "24-MG01"
+ ],
+ [
+ "24-MG02"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG04"
+ ],
+ [
+ "24-MG05"
+ ],
+ [
+ "24-UB02"
+ ],
+ [
+ "24-UG01"
+ ],
+ [
+ "24-UG02"
+ ],
+ [
+ "24-UG03"
+ ],
+ [
+ "24-UG04"
+ ],
+ [
+ "24-UG05"
+ ],
+ [
+ "24-UG06"
+ ],
+ [
+ "24-UG07"
+ ],
+ [
+ "24-WB01"
+ ],
+ [
+ "24-WB02"
+ ],
+ [
+ "24-WB03"
+ ],
+ [
+ "24-WB04"
+ ],
+ [
+ "24-WB05"
+ ],
+ [
+ "24-WB06"
+ ],
+ [
+ "24-WB07"
+ ],
+ [
+ "24-WG01"
+ ],
+ [
+ "24-WG02"
+ ],
+ [
+ "24-WG03"
+ ],
+ [
+ "24-WG080"
+ ],
+ [
+ "24-WG081-blue"
+ ],
+ [
+ "24-WG081-gray"
+ ],
+ [
+ "24-WG081-pink"
+ ],
+ [
+ "24-WG082-blue"
+ ],
+ [
+ "24-WG082-gray"
+ ],
+ [
+ "24-WG082-pink"
+ ],
+ [
+ "24-WG083-blue"
+ ],
+ [
+ "24-WG083-gray"
+ ],
+ [
+ "24-WG083-pink"
+ ],
+ [
+ "24-WG084"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "24-WG085_Group"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "24-WG087"
+ ],
+ [
+ "24-WG088"
+ ],
+ [
+ "24-WG09"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH02"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH05"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH06"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH07"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH08"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH09"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH10"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH11"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH12"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH13"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MJ01"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ02"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ03"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ09"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ10"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ11"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ12"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MP01"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP03"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP04"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP05"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP06"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP07"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP08"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP09"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP10"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP11"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP12"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MS01"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS02"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS03"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS04"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS06"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS07"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS08"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS09"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS10"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS11"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS12"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MSH01"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH02"
+ ],
+ [
+ "MSH02-32-Black"
+ ],
+ [
+ "MSH02-33-Black"
+ ],
+ [
+ "MSH02-34-Black"
+ ],
+ [
+ "MSH02-36-Black"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH04"
+ ],
+ [
+ "MSH04-32-Gray"
+ ],
+ [
+ "MSH04-32-Purple"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Gray"
+ ],
+ [
+ "MSH04-33-Purple"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Gray"
+ ],
+ [
+ "MSH04-34-Purple"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Gray"
+ ],
+ [
+ "MSH04-36-Purple"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH06"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH07"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH08"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH10"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH11"
+ ],
+ [
+ "MSH11-32-Black"
+ ],
+ [
+ "MSH11-32-Blue"
+ ],
+ [
+ "MSH11-32-Red"
+ ],
+ [
+ "MSH11-33-Black"
+ ],
+ [
+ "MSH11-33-Blue"
+ ],
+ [
+ "MSH11-33-Red"
+ ],
+ [
+ "MSH11-34-Black"
+ ],
+ [
+ "MSH11-34-Blue"
+ ],
+ [
+ "MSH11-34-Red"
+ ],
+ [
+ "MSH11-36-Black"
+ ],
+ [
+ "MSH11-36-Blue"
+ ],
+ [
+ "MSH11-36-Red"
+ ],
+ [
+ "MSH12"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "MT01"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT02"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT03"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT04"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT05"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT06"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT08"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT09"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT10"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT12"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB04"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB05"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH03"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP03"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP04"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP05"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP06"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP08"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP09"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP10"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP11"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP13"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WSH01"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH04"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH06"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH09"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH12"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT02"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT06"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT09"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with entity ID 972?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE entity_id = 972;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with product ID 1428.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE product_id = 1428;",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000025'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000025';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total of the order placed by customer with email 'johndoe123@gmail.com'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_email = 'johndoe123@gmail.com';",
+ "answer": [
+ "53.0000",
+ "204.2500",
+ "105.4000",
+ "71.0000",
+ "163.0000",
+ "136.9900",
+ "208.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "53.0000"
+ ],
+ [
+ "204.2500"
+ ],
+ [
+ "105.4000"
+ ],
+ [
+ "71.0000"
+ ],
+ [
+ "163.0000"
+ ],
+ [
+ "136.9900"
+ ],
+ [
+ "208.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for order with increment ID '000000050'?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE increment_id = '000000050';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with increment ID '000000110'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000110';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the email 'jla_7781@gmail.com'?",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE email = 'jla_7781@gmail.com';",
+ "answer": [
+ "Julia",
+ "Williams"
+ ],
+ "sql_execute_result": [
+ [
+ "Julia",
+ "Williams"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer Julia Williams?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'jla_7781@gmail.com';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of products ordered in order with entity ID 50?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 50;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all completed orders?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping description for the order with entity ID 110?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 110;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for quote with ID 296?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE quote_id = 296;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with increment ID '000000021' canceled?",
+ "sql": "SELECT CASE WHEN state = 'canceled' THEN 'Yes' ELSE 'No' END AS is_canceled FROM sales_order WHERE increment_id = '000000021';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ "No"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the order having entity ID 25?",
+ "sql": "SELECT store_name FROM sales_order WHERE entity_id = 25;",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Has an email been sent for the order with increment ID '000000050'?",
+ "sql": "SELECT email_sent FROM sales_order WHERE increment_id = '000000050';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total due for the order with shipping description 'Flat Rate - Fixed' and customer email 'lisa.kim@gmail.com'?",
+ "sql": "SELECT total_due FROM sales_order WHERE shipping_description = 'Flat Rate - Fixed' AND customer_email = 'lisa.kim@gmail.com';",
+ "answer": [
+ "74.0000",
+ "37.0000",
+ "64.0000",
+ "133.0000",
+ "132.0000",
+ "131.1000",
+ "34.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "74.0000"
+ ],
+ [
+ "37.0000"
+ ],
+ [
+ "64.0000"
+ ],
+ [
+ "133.0000"
+ ],
+ [
+ "132.0000"
+ ],
+ [
+ "131.1000"
+ ],
+ [
+ "34.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been canceled?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE state = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 142
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 58?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 58;",
+ "answer": [
+ "sophia.young@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "sophia.young@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered in order with ID 87?",
+ "sql": "SELECT sku FROM sales_order_item WHERE order_id = 87;",
+ "answer": [
+ "WSH07-28-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered with SKU 'MP10-34-Green'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MP10-34-Green';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity_id 17?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 17;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with product_id 1997 a virtual product?",
+ "sql": "SELECT is_virtual FROM sales_order_item WHERE product_id = 1997;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the total ordered quantity for product with SKU '24-UG01'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = '24-UG01';",
+ "answer": [
+ "7.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "7.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the category with entity_id 8?",
+ "sql": "SELECT created_at FROM catalog_category_entity WHERE entity_id = 8;",
+ "answer": [
+ "2023-04-19 16:12:35"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:12:35"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'MSH02-33-Black'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MSH02-33-Black';",
+ "answer": [
+ "Apollo Running Short",
+ "Apollo Running Short-33-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Apollo Running Short"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Apollo Running Short"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Apollo Running Short"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What are the applied rule IDs for the order item with item_id 527?",
+ "sql": "SELECT applied_rule_ids FROM sales_order_item WHERE item_id = 527;",
+ "answer": [
+ "2",
+ "1",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ "2,1,3"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 58?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 58;",
+ "answer": [
+ "sophia.young@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "sophia.young@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'matthew.kim@gmail.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'matthew.kim@gmail.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table name for invoices in store ID 0?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 0;",
+ "answer": [
+ "sequence_invoice_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_0"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with entity ID 555.",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 555 AND attribute_id = 73 AND store_id = 0;",
+ "answer": [
+ "Aero Daily Fitness Tee-XL-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Aero Daily Fitness Tee-XL-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status of the order with increment ID '000000081'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000081';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders for customer ID 36.",
+ "sql": "SELECT increment_id FROM sales_order_grid WHERE customer_id = 36;",
+ "answer": [
+ "000000049",
+ "000000069",
+ "000000122",
+ "000000206",
+ "000000219",
+ "000000248",
+ "000000251",
+ "000000275",
+ "000000294",
+ "000000304"
+ ],
+ "sql_execute_result": [
+ [
+ "000000049"
+ ],
+ [
+ "000000069"
+ ],
+ [
+ "000000122"
+ ],
+ [
+ "000000206"
+ ],
+ [
+ "000000219"
+ ],
+ [
+ "000000248"
+ ],
+ [
+ "000000251"
+ ],
+ [
+ "000000275"
+ ],
+ [
+ "000000294"
+ ],
+ [
+ "000000304"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer associated with order ID 32?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 32;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total of the order placed by Ava Brown.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE customer_name = 'Ava Brown';",
+ "answer": [
+ "176.6000",
+ "133.0000",
+ "202.0000",
+ "212.2500",
+ "34.0000",
+ "191.5000",
+ "93.4000",
+ "65.0000",
+ "60.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "176.6000"
+ ],
+ [
+ "133.0000"
+ ],
+ [
+ "202.0000"
+ ],
+ [
+ "212.2500"
+ ],
+ [
+ "34.0000"
+ ],
+ [
+ "191.5000"
+ ],
+ [
+ "93.4000"
+ ],
+ [
+ "65.0000"
+ ],
+ [
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with increment ID '000000078'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000078';",
+ "answer": [
+ "123 Malibu Beach Road, Malibu, California, 90265"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Malibu Beach Road,Malibu,California,90265"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipping methods were used in the orders by Samantha Jones?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE customer_name = 'Samantha Jones';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with increment ID '000000032'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000032';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with store group ID 1.",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with the highest rating position in the 'sales_bestsellers_aggregated_monthly' table.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Thorpe Track Pant-33-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Thorpe Track Pant-33-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs were created on '2023-04-19 16:13:41'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE created_at = '2023-04-19 16:13:41';",
+ "answer": [
+ "67"
+ ],
+ "sql_execute_result": [
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are in the country with code 'FI'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'FI';",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ "Lappi"
+ ],
+ [
+ "Pohjois-Pohjanmaa"
+ ],
+ [
+ "Kainuu"
+ ],
+ [
+ "Pohjois-Karjala"
+ ],
+ [
+ "Pohjois-Savo"
+ ],
+ [
+ "Etel\u00e4-Savo"
+ ],
+ [
+ "Etel\u00e4-Pohjanmaa"
+ ],
+ [
+ "Pohjanmaa"
+ ],
+ [
+ "Pirkanmaa"
+ ],
+ [
+ "Satakunta"
+ ],
+ [
+ "Keski-Pohjanmaa"
+ ],
+ [
+ "Keski-Suomi"
+ ],
+ [
+ "Varsinais-Suomi"
+ ],
+ [
+ "Etel\u00e4-Karjala"
+ ],
+ [
+ "P\u00e4ij\u00e4t-H\u00e4me"
+ ],
+ [
+ "Kanta-H\u00e4me"
+ ],
+ [
+ "Uusimaa"
+ ],
+ [
+ "It\u00e4-Uusimaa"
+ ],
+ [
+ "Kymenlaakso"
+ ],
+ [
+ "Ahvenanmaa"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID of the 'Sparta Gym Tank-L-Green' in the 'sales_bestsellers_aggregated_monthly' table.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sparta Gym Tank-L-Green';",
+ "answer": [
+ "698"
+ ],
+ "sql_execute_result": [
+ [
+ 698
+ ],
+ [
+ 698
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WSH07-29-Blue'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity WHERE sku = 'WSH07-29-Blue';",
+ "answer": [
+ "1995"
+ ],
+ "sql_execute_result": [
+ [
+ 1995
+ ]
+ ]
+ },
+ {
+ "question": "Find the country code for the region named 'Pescara'.",
+ "sql": "SELECT country_id FROM directory_country_region WHERE default_name = 'Pescara';",
+ "answer": [
+ "IT"
+ ],
+ "sql_execute_result": [
+ [
+ "IT"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value of the latest shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Sahara Leggings-28-Gray' in February 2022.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sahara Leggings-28-Gray' AND period = '2022-02-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'MSH12-34-Black'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'MSH12-34-Black';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 312?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 312;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders placed by the customer with email 'janesmith456@yahoo.com'.",
+ "sql": "SELECT entity_id AS order_id, grand_total FROM sales_order WHERE customer_email = 'janesmith456@yahoo.com';",
+ "answer": [
+ "Order ID: 4, Total: 106.0000",
+ "Order ID: 70, Total: 168.8000",
+ "Order ID: 91, Total: 153.0000",
+ "Order ID: 99, Total: 181.0000",
+ "Order ID: 163, Total: 87.0000",
+ "Order ID: 186, Total: 37.0000",
+ "Order ID: 199, Total: 47.0000",
+ "Order ID: 226, Total: 54.0000",
+ "Order ID: 247, Total: 60.0000",
+ "Order ID: 274, Total: 158.2500"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "106.0000"
+ ],
+ [
+ 70,
+ "168.8000"
+ ],
+ [
+ 91,
+ "153.0000"
+ ],
+ [
+ 99,
+ "181.0000"
+ ],
+ [
+ 163,
+ "87.0000"
+ ],
+ [
+ 186,
+ "37.0000"
+ ],
+ [
+ 199,
+ "47.0000"
+ ],
+ [
+ 226,
+ "54.0000"
+ ],
+ [
+ 247,
+ "60.0000"
+ ],
+ [
+ 274,
+ "158.2500"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 688?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 688 AND store_id = 0;",
+ "answer": [
+ "The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.
\n• Black polyester spandex tank.
• 100% polyester.
• Freedom of movement.
• No-chafe seams.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.
\n• Black polyester spandex tank.
• 100% polyester.
• Freedom of movement.
• No-chafe seams.
"
+ ],
+ [
+ "142,38"
+ ],
+ [
+ "134"
+ ],
+ [
+ "196"
+ ],
+ [
+ "201,204,208"
+ ]
+ ]
+ },
+ {
+ "question": "Find the best-selling product for the month of May 2023.",
+ "sql": "SELECT product_name, qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-05-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Neve Studio Dance Jacket-M-Black",
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Neve Studio Dance Jacket-M-Black",
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the product with ID 1778 in stock?",
+ "sql": "SELECT store.name FROM cataloginventory_stock_item JOIN store ON cataloginventory_stock_item.website_id = store.website_id WHERE product_id = 1778;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the order with increment ID '000000127'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000127';",
+ "answer": [
+ "37.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "37.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with ID 284?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 284;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value of the latest invoice?",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the product with SKU 'Diana Tights-28-Blue' and its price.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Diana Tights-28-Blue';",
+ "answer": [
+ "47.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "47.2000"
+ ],
+ [
+ "47.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order ID 199?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 199;",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address of the customer 'Veronica Costello' for credit memo ID 1?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "How many items of product ID 15 are currently in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 15;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest invoice generated?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and telephone number of the customer at address ID 57?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name, telephone FROM customer_address_entity WHERE entity_id = 57;",
+ "answer": [
+ "Jacob Rivera",
+ "6025551212"
+ ],
+ "sql_execute_result": [
+ [
+ "Jacob Rivera",
+ "6025551212"
+ ]
+ ]
+ },
+ {
+ "question": "Which product was sold the most in the year 2022 in store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2022-01-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer named Jessica Wong?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Jessica Wong';",
+ "answer": [
+ "jessica.wong@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.wong@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders associated with the product SKU 'WT01-L-Orange'.",
+ "sql": "SELECT order_id FROM sales_order_item WHERE sku = 'WT01-L-Orange';",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ 34
+ ],
+ [
+ 34
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the credit memo with ID 1?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews for product ID 334.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 334;",
+ "answer": [
+ "46",
+ "47",
+ "48"
+ ],
+ "sql_execute_result": [
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity ordered for the product ID 160.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 160;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order with increment ID '000000002'?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MH07-XL-Gray'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MH07-XL-Gray';",
+ "answer": [
+ "Hero Hoodie",
+ "Hero Hoodie-XL-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Hero Hoodie"
+ ],
+ [
+ "Hero Hoodie-XL-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total price of the order item with ID 166.",
+ "sql": "SELECT price FROM sales_order_item WHERE item_id = 166;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total amount for the credit memo with ID 1?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the order ID for the sales order item created at '2023-04-19 22:53:06'.",
+ "sql": "SELECT order_id FROM sales_order_item WHERE created_at = '2023-04-19 22:53:06';",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ],
+ [
+ 21
+ ],
+ [
+ 21
+ ],
+ [
+ 21
+ ],
+ [
+ 21
+ ],
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with ID 1924?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1924;",
+ "answer": [
+ "WSH02-29-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH02-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 680 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 680;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the email of the customer who made the order with increment ID '000000002'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product named 'Sprite Stasis Ball 65 cm' on 2023-02-16.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 65 cm' AND period = '2023-02-16';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which store name is associated with the stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating named 'Value'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Value';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Maxima Drawstring Short-29-Orange' ordered on 2022-03-02.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Maxima Drawstring Short-29-Orange' AND period = '2022-03-02';",
+ "answer": [
+ "28.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "28.0000"
+ ],
+ [
+ "28.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name for the billing address '6146 Honey Bluff Parkway,Calder,Michigan,49628-7978'?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE billing_address = '6146 Honey Bluff Parkway,Calder,Michigan,49628-7978';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 29?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 29;",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with entity ID 1396 in the rating_option_vote table.",
+ "sql": "SELECT COUNT(*) FROM rating_option_vote WHERE entity_pk_value = 1396;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with option ID 20?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 20;",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ 16
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status ID 1 in the review_status table?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with entity ID 42?",
+ "sql": "SELECT firstname FROM customer_entity WHERE entity_id = 42;",
+ "answer": [
+ "Emily"
+ ],
+ "sql_execute_result": [
+ [
+ "Emily"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for customer with ID 60?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE entity_id = 60;",
+ "answer": [
+ "3105551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3105551212"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the review with review ID 349 is approved.",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = (SELECT status_id FROM review WHERE review_id = 349);",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity ordered for the product with product ID 1396 from the sales_order_item table.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1396;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock status of the product with ID 1396?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1396;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of orders placed by the customer Samantha Jones.",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE customer_id = 16;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the customer Grace Nguyen?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE entity_id = 18;",
+ "answer": [
+ "789 Harvard Square Cambridge Massachusetts 02138"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Harvard Square Cambridge Massachusetts 02138"
+ ]
+ ]
+ },
+ {
+ "question": "List all search queries that have the text 'nike' and are active.",
+ "sql": "SELECT query_id, query_text FROM search_query WHERE query_text = 'nike' AND is_active = 1;",
+ "answer": [
+ "nike"
+ ],
+ "sql_execute_result": [
+ [
+ 19,
+ "nike"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 1130?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1130;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total of all completed orders for customer Jane Doe.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order_grid WHERE customer_email = 'jane.doe@hotmail.com' AND status = 'complete';",
+ "answer": [
+ "889.9200"
+ ],
+ "sql_execute_result": [
+ [
+ "889.9200"
+ ]
+ ]
+ },
+ {
+ "question": "How many children categories does the category with ID 2 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 2;",
+ "answer": [
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ 38
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the payment method used in the order with increment ID '000000147'.",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000147';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal amount for the order placed by Adam Garcia with increment ID '000000256'?",
+ "sql": "SELECT subtotal FROM sales_order_grid WHERE increment_id = '000000256';",
+ "answer": [
+ "84.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "84.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for the customer named Ryan Tanaka.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Ryan Tanaka';",
+ "answer": [
+ "ryan.tanaka@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "ryan.tanaka@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with increment ID '000000070'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000070';",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been canceled?",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 3
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 10
+ ],
+ [
+ 12
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 44
+ ],
+ [
+ 46
+ ],
+ [
+ 49
+ ],
+ [
+ 52
+ ],
+ [
+ 56
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 63
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 72
+ ],
+ [
+ 74
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 88
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 98
+ ],
+ [
+ 101
+ ],
+ [
+ 103
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 120
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 126
+ ],
+ [
+ 129
+ ],
+ [
+ 132
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 149
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 157
+ ],
+ [
+ 159
+ ],
+ [
+ 162
+ ],
+ [
+ 165
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 180
+ ],
+ [
+ 183
+ ],
+ [
+ 185
+ ],
+ [
+ 191
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 198
+ ],
+ [
+ 204
+ ],
+ [
+ 206
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 224
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 229
+ ],
+ [
+ 232
+ ],
+ [
+ 234
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 252
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 259
+ ],
+ [
+ 261
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 275
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 283
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 296
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in invoice with ID 2?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the billing address ID for the sales order with ID 207.",
+ "sql": "SELECT billing_address_id FROM sales_order WHERE entity_id = 207;",
+ "answer": [
+ "414"
+ ],
+ "sql_execute_result": [
+ [
+ 414
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have placed complete orders?",
+ "sql": "SELECT DISTINCT customer_firstname FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "26"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane"
+ ],
+ [
+ "John"
+ ],
+ [
+ "Grace"
+ ],
+ [
+ "Jason"
+ ],
+ [
+ "Adam"
+ ],
+ [
+ "Lily"
+ ],
+ [
+ "Alex"
+ ],
+ [
+ "Mary"
+ ],
+ [
+ "Bob"
+ ],
+ [
+ "Sarah"
+ ],
+ [
+ "Katie"
+ ],
+ [
+ "David"
+ ],
+ [
+ "Ava"
+ ],
+ [
+ "Lucy"
+ ],
+ [
+ "Julia"
+ ],
+ [
+ "Alexander"
+ ],
+ [
+ "Daniel"
+ ],
+ [
+ "Jennifer"
+ ],
+ [
+ "Matt"
+ ],
+ [
+ "Michael"
+ ],
+ [
+ "Brian"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Olivia"
+ ],
+ [
+ "Lisa"
+ ],
+ [
+ "Emma"
+ ],
+ [
+ "Sophie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region of the customer with address ID 42?",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 42;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with ID 259?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 259;",
+ "answer": [
+ "189.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "189.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store currency code used for the invoice with ID 1.",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used in the order with ID 70?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 70;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status label for the status 'complete'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'complete';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity in stock for the product with product ID 1521?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1521;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the rating option with option ID 79.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 79 AND store_id = 0;",
+ "answer": [
+ "Lockable"
+ ],
+ "sql_execute_result": [
+ [
+ "Lockable"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with entity ID 1846 is available for sale.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1846 AND attribute_id = 99 AND store_id = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 1275?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1275 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.",
+ "\u2022 Brown heather full zip rouched jacket.",
+ "\u2022 Side hand pockets for extra storage.",
+ "\u2022 High collar.",
+ "\u2022 Thick cuffs for extra coverage.",
+ "\u2022 Durable, shape retention material to longer wear."
+ ],
+ "sql_execute_result": [
+ [
+ "The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.
\n• Brown heather full zip rouched jacket.
• Side hand pockets for extra storage.
• High collar.
• Thick cuffs for extra coverage.
• Durable, shape retention material to longer wear.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the parent category ID for the category with entity ID 23?",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 23;",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "What is the option value for option ID 24 in store ID 0?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 24 AND store_id = 0;",
+ "answer": [
+ "Backpack"
+ ],
+ "sql_execute_result": [
+ [
+ "Backpack"
+ ]
+ ]
+ },
+ {
+ "question": "Determine if the product with entity ID 753 has a certain attribute with value ID 4573.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 753 AND value_id = 4573;",
+ "answer": [
+ "58"
+ ],
+ "sql_execute_result": [
+ [
+ 58
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity ID of the category that has the path '1/2/9'.",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE path = '1/2/9';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status for the product with product ID 199?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 199;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the state for orders with status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "List all payment methods used for the order with entity ID 273.",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE parent_id = 273;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for the order with entity ID 139.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 139;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for shipments in store ID 0?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'shipment' AND store_id = 0;",
+ "answer": [
+ "sequence_shipment_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_shipment_0"
+ ]
+ ]
+ },
+ {
+ "question": "List the visible statuses on the front for orders.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "fraud",
+ "holded",
+ "payment_review",
+ "pending",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the attribute option with value 'Ripstop'?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value = 'Ripstop';",
+ "answer": [
+ "Ripstop"
+ ],
+ "sql_execute_result": [
+ [
+ "Ripstop"
+ ]
+ ]
+ },
+ {
+ "question": "List all distinct states for orders with default status.",
+ "sql": "SELECT DISTINCT state FROM sales_order_status_state WHERE is_default = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "holded",
+ "payment_review",
+ "new",
+ "pending_payment",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "new"
+ ],
+ [
+ "pending_payment"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the option value for the option ID 174?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 174;",
+ "answer": [
+ "31"
+ ],
+ "sql_execute_result": [
+ [
+ "31"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 389?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 389 AND attribute_id = 77;",
+ "answer": [
+ "56.990000"
+ ],
+ "sql_execute_result": [
+ [
+ "56.990000"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the description of the product with entity ID 1907.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1907 AND attribute_id = 75;",
+ "answer": [
+ "Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.
\n• Black run shorts
- cotton/spandex.
• 5” inseam.
• Machine wash/Line dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.
\n• Black run shorts
- cotton/spandex.
• 5” inseam.
• Machine wash/Line dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer associated with the shipping address having the entity ID 5.",
+ "sql": "SELECT firstname FROM sales_order_address WHERE entity_id = 5;",
+ "answer": [
+ "Brian"
+ ],
+ "sql_execute_result": [
+ [
+ "Brian"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity type with ID 6?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the street address for the shipping address linked to order with parent ID 3?",
+ "sql": "SELECT street FROM sales_order_address WHERE parent_id = 3 AND address_type = 'shipping';",
+ "answer": [
+ "456 Las Vegas Blvd S"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Las Vegas Blvd S"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 1497?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1497 AND attribute_id = 77;",
+ "answer": [
+ "28.00"
+ ],
+ "sql_execute_result": [
+ [
+ "28.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for the store group with code 'main_website_store'.",
+ "sql": "SELECT name FROM store_group WHERE code = 'main_website_store';",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content detail of the product with entity ID 480?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 480 AND attribute_id = 75;",
+ "answer": [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer associated with the billing address having the entity ID 354?",
+ "sql": "SELECT lastname FROM sales_order_address WHERE entity_id = 354;",
+ "answer": [
+ "Martin"
+ ],
+ "sql_execute_result": [
+ [
+ "Martin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items ordered in the complete order with order ID 218?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 218 AND state = 'complete';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer who placed the order with increment ID '000000295'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000295';",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with review ID 231?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 231;",
+ "answer": [
+ "This is the most dependable piece I own."
+ ],
+ "sql_execute_result": [
+ [
+ "This is the most dependable piece I own."
+ ]
+ ]
+ },
+ {
+ "question": "How much discount was applied to the order with order ID 19?",
+ "sql": "SELECT discount_amount FROM sales_order WHERE entity_id = 19;",
+ "answer": [
+ "-47.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "-47.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the nickname of the user who wrote the review titled 'Love the fabric, but it's huge!'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Love the fabric, but it\\'s huge!';",
+ "answer": [
+ "Maisie"
+ ],
+ "sql_execute_result": [
+ [
+ "Maisie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the order placed by Jason Miller?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE customer_firstname = 'Jason' AND customer_lastname = 'Miller';",
+ "answer": [
+ "171.6000",
+ "203.0400",
+ "52.2000",
+ "97.0000",
+ "136.4000",
+ "181.0000",
+ "189.8000",
+ "37.0000",
+ "121.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "171.6000"
+ ],
+ [
+ "203.0400"
+ ],
+ [
+ "52.2000"
+ ],
+ [
+ "97.0000"
+ ],
+ [
+ "136.4000"
+ ],
+ [
+ "181.0000"
+ ],
+ [
+ "189.8000"
+ ],
+ [
+ "37.0000"
+ ],
+ [
+ "121.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with option ID 185.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 185;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What shipping method was used for the order with order ID 52?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 52;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store ID associated with the review titled 'Softest hoodie ever'.",
+ "sql": "SELECT store_id FROM review_detail WHERE title = 'Softest hoodie ever';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the decimal attribute with value ID 3898?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE value_id = 3898;",
+ "answer": [
+ "62.990000"
+ ],
+ "sql_execute_result": [
+ [
+ "62.990000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products with their names and prices were found in the 'Default Store View' for the month of January 2023?",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "44"
+ ],
+ "sql_execute_result": [
+ [
+ "Impulse Duffle",
+ "74.0000"
+ ],
+ [
+ "Endeavor Daytrip Backpack",
+ "33.0000"
+ ],
+ [
+ "Overnight Duffle",
+ "45.0000"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm",
+ "23.0000"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot",
+ "17.0000"
+ ],
+ [
+ "Aim Analog Watch",
+ "45.0000"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black",
+ "52.0000"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Black",
+ "42.0000"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Purple",
+ "42.0000"
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Red",
+ "64.0000"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red",
+ "42.0000"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XL-Black",
+ "72.0000"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Purple",
+ "56.9900"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Black",
+ "45.0000"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-L-Green",
+ "39.0000"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black",
+ "39.0000"
+ ],
+ [
+ "Atlas Fitness Tank-L-Blue",
+ "18.0000"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Purple",
+ "28.0000"
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray",
+ "22.4000"
+ ],
+ [
+ "Orestes Yoga Pant -34-Green",
+ "52.8000"
+ ],
+ [
+ "Aether Gym Pant -34-Green",
+ "59.2000"
+ ],
+ [
+ "Aether Gym Pant -36-Brown",
+ "59.2000"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red",
+ "44.0000"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Blue",
+ "29.0000"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Purple",
+ "57.0000"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow",
+ "75.0000"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Blue",
+ "56.2500"
+ ],
+ [
+ "Riona Full Zip Jacket-XL-Red",
+ "60.0000"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange",
+ "69.0000"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange",
+ "69.0000"
+ ],
+ [
+ "Iris Workout Top-L-Red",
+ "29.0000"
+ ],
+ [
+ "Layla Tee-XS-Green",
+ "29.0000"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White",
+ "42.0000"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red",
+ "32.0000"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red",
+ "28.0000"
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple",
+ "24.0000"
+ ],
+ [
+ "Zoe Tank-S-Yellow",
+ "29.0000"
+ ],
+ [
+ "Aeon Capri-29-Blue",
+ "38.4000"
+ ],
+ [
+ "Sylvia Capri-28-Red",
+ "33.6000"
+ ],
+ [
+ "Fiona Fitness Short-28-Green",
+ "29.0000"
+ ],
+ [
+ "Fiona Fitness Short-30-Black",
+ "29.0000"
+ ],
+ [
+ "Maxima Drawstring Short-32-Gray",
+ "28.0000"
+ ],
+ [
+ "Artemis Running Short-30-Black",
+ "45.0000"
+ ],
+ [
+ "Ina Compression Short-29-Orange",
+ "49.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for store with ID 0.",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the option with ID 203?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 203;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the percent rating for review ID 301?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 301;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price for product ID 560 in the 'Default Store View' for April 2022.",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND product_id = 560 AND period = '2022-04-01';",
+ "answer": [
+ "Ryker LumaTech\u2122 Tee (V-neck)-XS-Blue",
+ "28.00"
+ ],
+ "sql_execute_result": [
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XS-Blue",
+ "28.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many times was the 'Phoebe Zipper Sweatshirt-M-White' ordered in July 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Phoebe Zipper Sweatshirt-M-White' AND period = '2022-07-01';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the store code for the store named 'Default Store View'.",
+ "sql": "SELECT code FROM store WHERE name = 'Default Store View';",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the rating value for the vote ID 160.",
+ "sql": "SELECT value FROM rating_option_vote WHERE vote_id = 160;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Supernova Sport Pant-32-Black' in March 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Supernova Sport Pant-32-Black' AND period = '2023-03-01';",
+ "answer": [
+ "11",
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ],
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest shipment.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the full address for customer Alex Martin?",
+ "sql": "SELECT street, city, region, postcode, country_id FROM customer_address_entity WHERE firstname = 'Alex' AND lastname = 'Martin';",
+ "answer": [
+ "123 Main Street",
+ "New York",
+ "New York",
+ "10001",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street",
+ "New York",
+ "New York",
+ "10001",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Find the invoice total amount for order with increment ID '000000002'.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current state associated with the 'pending' status?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending';",
+ "answer": [
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "new"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'Privacy Policy' CMS page active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store currency code for the invoice with entity_id 1.",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity ordered in the invoice with increment ID '000000001'.",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What was the creation time for the 'About us' page?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for postal code 80202?",
+ "sql": "SELECT region FROM customer_address_entity WHERE postcode = '80202';",
+ "answer": [
+ "Colorado"
+ ],
+ "sql_execute_result": [
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Colorado"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the 'fraud' status?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for Olivia Jackson.",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE firstname = 'Olivia' AND lastname = 'Jackson';",
+ "answer": [
+ "3035551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3035551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 27?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 27;",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with ID 218 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 218;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000203'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000203';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "How much was the grand total for the order made by customer with email 'roni_cost@example.com'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "36.3900",
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ],
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for store with ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "List the name of the customer with ID 46.",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE entity_id = 46;",
+ "answer": [
+ "Jane Doe"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Doe"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total paid amount for the order with increment ID '000000002'.",
+ "sql": "SELECT total_paid FROM sales_order_grid WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value given in review with ID 81?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 81;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping address for the order made by Bob Jones.",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE customer_name = 'Bob Jones';",
+ "answer": [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ "sql_execute_result": [
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ],
+ [
+ "890 Elm Street,Dallas,Texas,75202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 1459?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1459;",
+ "answer": [
+ "WS06-XL-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS06-XL-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with SKU 'WJ04-XL-Red'?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1266 AND attribute_id = (SELECT attribute_id FROM eav_attribute WHERE attribute_code = 'price');",
+ "answer": [
+ "84.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "84.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity_id 3?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 3;",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for product_id 1266?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1266;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category_id 2?",
+ "sql": "SELECT cp.value FROM catalog_product_entity AS cpe INNER JOIN catalog_product_entity_varchar AS cp ON cpe.entity_id = cp.entity_id INNER JOIN eav_attribute AS ea ON cp.attribute_id = ea.attribute_id AND ea.attribute_code = 'name' INNER JOIN catalog_category_product AS ccp ON ccp.product_id = cp.entity_id WHERE ccp.category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Gray"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Gray"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-M-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-M-Gray"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-M-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-L-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-L-Gray"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-L-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XL-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XL-Gray"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XL-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie"
+ ],
+ [
+ "Bruno Compete Hoodie-XS-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-XS-Blue"
+ ],
+ [
+ "Bruno Compete Hoodie-XS-Green"
+ ],
+ [
+ "Bruno Compete Hoodie-S-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-S-Blue"
+ ],
+ [
+ "Bruno Compete Hoodie-S-Green"
+ ],
+ [
+ "Bruno Compete Hoodie-M-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-M-Blue"
+ ],
+ [
+ "Bruno Compete Hoodie-M-Green"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Blue"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Green"
+ ],
+ [
+ "Bruno Compete Hoodie-XL-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-XL-Blue"
+ ],
+ [
+ "Bruno Compete Hoodie-XL-Green"
+ ],
+ [
+ "Bruno Compete Hoodie"
+ ],
+ [
+ "Frankie Sweatshirt-XS-Green"
+ ],
+ [
+ "Frankie Sweatshirt-XS-White"
+ ],
+ [
+ "Frankie Sweatshirt-XS-Yellow"
+ ],
+ [
+ "Frankie Sweatshirt-S-Green"
+ ],
+ [
+ "Frankie Sweatshirt-S-White"
+ ],
+ [
+ "Frankie Sweatshirt-S-Yellow"
+ ],
+ [
+ "Frankie Sweatshirt-M-Green"
+ ],
+ [
+ "Frankie Sweatshirt-M-White"
+ ],
+ [
+ "Frankie Sweatshirt-M-Yellow"
+ ],
+ [
+ "Frankie Sweatshirt-L-Green"
+ ],
+ [
+ "Frankie Sweatshirt-L-White"
+ ],
+ [
+ "Frankie Sweatshirt-L-Yellow"
+ ],
+ [
+ "Frankie Sweatshirt-XL-Green"
+ ],
+ [
+ "Frankie Sweatshirt-XL-White"
+ ],
+ [
+ "Frankie Sweatshirt-XL-Yellow"
+ ],
+ [
+ "Frankie Sweatshirt"
+ ],
+ [
+ "Kenobi Trail Jacket-XS-Black"
+ ],
+ [
+ "Kenobi Trail Jacket-XS-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-XS-Purple"
+ ],
+ [
+ "Kenobi Trail Jacket-S-Black"
+ ],
+ [
+ "Kenobi Trail Jacket-S-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-S-Purple"
+ ],
+ [
+ "Kenobi Trail Jacket-M-Black"
+ ],
+ [
+ "Kenobi Trail Jacket-M-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-M-Purple"
+ ],
+ [
+ "Kenobi Trail Jacket-L-Black"
+ ],
+ [
+ "Kenobi Trail Jacket-L-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-L-Purple"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Black"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Purple"
+ ],
+ [
+ "Kenobi Trail Jacket"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XS-Blue"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XS-Green"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XS-Purple"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Blue"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Green"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Purple"
+ ],
+ [
+ "Jupiter All-Weather Trainer -M-Blue"
+ ],
+ [
+ "Jupiter All-Weather Trainer -M-Green"
+ ],
+ [
+ "Jupiter All-Weather Trainer -M-Purple"
+ ],
+ [
+ "Jupiter All-Weather Trainer -L-Blue"
+ ],
+ [
+ "Jupiter All-Weather Trainer -L-Green"
+ ],
+ [
+ "Jupiter All-Weather Trainer -L-Purple"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XL-Blue"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XL-Green"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XL-Purple"
+ ],
+ [
+ "Jupiter All-Weather Trainer "
+ ],
+ [
+ "Helios EverCool™ Tee-XS-Black"
+ ],
+ [
+ "Helios EverCool™ Tee-XS-Blue"
+ ],
+ [
+ "Helios EverCool™ Tee-XS-Purple"
+ ],
+ [
+ "Helios EverCool™ Tee-S-Black"
+ ],
+ [
+ "Helios EverCool™ Tee-S-Blue"
+ ],
+ [
+ "Helios EverCool™ Tee-S-Purple"
+ ],
+ [
+ "Helios EverCool™ Tee-M-Black"
+ ],
+ [
+ "Helios EverCool™ Tee-M-Blue"
+ ],
+ [
+ "Helios EverCool™ Tee-M-Purple"
+ ],
+ [
+ "Helios EverCool™ Tee-L-Black"
+ ],
+ [
+ "Helios EverCool™ Tee-L-Blue"
+ ],
+ [
+ "Helios EverCool™ Tee-L-Purple"
+ ],
+ [
+ "Helios EverCool™ Tee-XL-Black"
+ ],
+ [
+ "Helios EverCool™ Tee-XL-Blue"
+ ],
+ [
+ "Helios EverCool™ Tee-XL-Purple"
+ ],
+ [
+ "Helios EverCool™ Tee"
+ ],
+ [
+ "Argus All-Weather Tank-XS-Gray"
+ ],
+ [
+ "Argus All-Weather Tank-S-Gray"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ "Argus All-Weather Tank-L-Gray"
+ ],
+ [
+ "Argus All-Weather Tank-XL-Gray"
+ ],
+ [
+ "Argus All-Weather Tank"
+ ],
+ [
+ "Atlas Fitness Tank-XS-Blue"
+ ],
+ [
+ "Atlas Fitness Tank-S-Blue"
+ ],
+ [
+ "Atlas Fitness Tank-M-Blue"
+ ],
+ [
+ "Atlas Fitness Tank-L-Blue"
+ ],
+ [
+ "Atlas Fitness Tank-XL-Blue"
+ ],
+ [
+ "Atlas Fitness Tank"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Black"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Gray"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Purple"
+ ],
+ [
+ "Caesar Warm-Up Pant-33-Black"
+ ],
+ [
+ "Caesar Warm-Up Pant-33-Gray"
+ ],
+ [
+ "Caesar Warm-Up Pant-33-Purple"
+ ],
+ [
+ "Caesar Warm-Up Pant-34-Black"
+ ],
+ [
+ "Caesar Warm-Up Pant-34-Gray"
+ ],
+ [
+ "Caesar Warm-Up Pant-34-Purple"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Black"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Gray"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Purple"
+ ],
+ [
+ "Caesar Warm-Up Pant"
+ ],
+ [
+ "Viktor LumaTech™ Pant-32-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-32-Gray"
+ ],
+ [
+ "Viktor LumaTech™ Pant-32-Red"
+ ],
+ [
+ "Viktor LumaTech™ Pant-33-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-33-Gray"
+ ],
+ [
+ "Viktor LumaTech™ Pant-33-Red"
+ ],
+ [
+ "Viktor LumaTech™ Pant-34-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-34-Gray"
+ ],
+ [
+ "Viktor LumaTech™ Pant-34-Red"
+ ],
+ [
+ "Viktor LumaTech™ Pant-36-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-36-Gray"
+ ],
+ [
+ "Viktor LumaTech™ Pant-36-Red"
+ ],
+ [
+ "Viktor LumaTech™ Pant"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Blue"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Green"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant-33-Blue"
+ ],
+ [
+ "Geo Insulated Jogging Pant-33-Green"
+ ],
+ [
+ "Geo Insulated Jogging Pant-33-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Blue"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Green"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant-36-Blue"
+ ],
+ [
+ "Geo Insulated Jogging Pant-36-Green"
+ ],
+ [
+ "Geo Insulated Jogging Pant-36-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant"
+ ],
+ [
+ "Supernova Sport Pant-32-Black"
+ ],
+ [
+ "Supernova Sport Pant-32-Gray"
+ ],
+ [
+ "Supernova Sport Pant-32-Green"
+ ],
+ [
+ "Supernova Sport Pant-33-Black"
+ ],
+ [
+ "Supernova Sport Pant-33-Gray"
+ ],
+ [
+ "Supernova Sport Pant-33-Green"
+ ],
+ [
+ "Supernova Sport Pant-34-Black"
+ ],
+ [
+ "Supernova Sport Pant-34-Gray"
+ ],
+ [
+ "Supernova Sport Pant-34-Green"
+ ],
+ [
+ "Supernova Sport Pant-36-Black"
+ ],
+ [
+ "Supernova Sport Pant-36-Gray"
+ ],
+ [
+ "Supernova Sport Pant-36-Green"
+ ],
+ [
+ "Supernova Sport Pant"
+ ],
+ [
+ "Kratos Gym Pant-32-Black"
+ ],
+ [
+ "Kratos Gym Pant-32-Blue"
+ ],
+ [
+ "Kratos Gym Pant-32-Green"
+ ],
+ [
+ "Kratos Gym Pant-33-Black"
+ ],
+ [
+ "Kratos Gym Pant-33-Blue"
+ ],
+ [
+ "Kratos Gym Pant-33-Green"
+ ],
+ [
+ "Kratos Gym Pant-34-Black"
+ ],
+ [
+ "Kratos Gym Pant-34-Blue"
+ ],
+ [
+ "Kratos Gym Pant-34-Green"
+ ],
+ [
+ "Kratos Gym Pant-36-Black"
+ ],
+ [
+ "Kratos Gym Pant-36-Blue"
+ ],
+ [
+ "Kratos Gym Pant-36-Green"
+ ],
+ [
+ "Kratos Gym Pant"
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-32-Green"
+ ],
+ [
+ "Mithra Warmup Pant-32-Orange"
+ ],
+ [
+ "Mithra Warmup Pant-33-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-33-Green"
+ ],
+ [
+ "Mithra Warmup Pant-33-Orange"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-34-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Orange"
+ ],
+ [
+ "Mithra Warmup Pant-36-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-36-Green"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange"
+ ],
+ [
+ "Mithra Warmup Pant"
+ ],
+ [
+ "Thorpe Track Pant-32-Black"
+ ],
+ [
+ "Thorpe Track Pant-32-Blue"
+ ],
+ [
+ "Thorpe Track Pant-32-Purple"
+ ],
+ [
+ "Thorpe Track Pant-33-Black"
+ ],
+ [
+ "Thorpe Track Pant-33-Blue"
+ ],
+ [
+ "Thorpe Track Pant-33-Purple"
+ ],
+ [
+ "Thorpe Track Pant-34-Black"
+ ],
+ [
+ "Thorpe Track Pant-34-Blue"
+ ],
+ [
+ "Thorpe Track Pant-34-Purple"
+ ],
+ [
+ "Thorpe Track Pant-36-Black"
+ ],
+ [
+ "Thorpe Track Pant-36-Blue"
+ ],
+ [
+ "Thorpe Track Pant-36-Purple"
+ ],
+ [
+ "Thorpe Track Pant"
+ ],
+ [
+ "Zeppelin Yoga Pant-32-Blue"
+ ],
+ [
+ "Zeppelin Yoga Pant-32-Green"
+ ],
+ [
+ "Zeppelin Yoga Pant-32-Red"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Blue"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Green"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Red"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Blue"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Green"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Red"
+ ],
+ [
+ "Zeppelin Yoga Pant-36-Blue"
+ ],
+ [
+ "Zeppelin Yoga Pant-36-Green"
+ ],
+ [
+ "Zeppelin Yoga Pant-36-Red"
+ ],
+ [
+ "Zeppelin Yoga Pant"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Red"
+ ],
+ [
+ "Livingston All-Purpose Tight-33-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-33-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-33-Red"
+ ],
+ [
+ "Livingston All-Purpose Tight-34-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-34-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-34-Red"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Red"
+ ],
+ [
+ "Livingston All-Purpose Tight"
+ ],
+ [
+ "Orestes Yoga Pant -32-Black"
+ ],
+ [
+ "Orestes Yoga Pant -32-Blue"
+ ],
+ [
+ "Orestes Yoga Pant -32-Green"
+ ],
+ [
+ "Orestes Yoga Pant -33-Black"
+ ],
+ [
+ "Orestes Yoga Pant -33-Blue"
+ ],
+ [
+ "Orestes Yoga Pant -33-Green"
+ ],
+ [
+ "Orestes Yoga Pant -34-Black"
+ ],
+ [
+ "Orestes Yoga Pant -34-Blue"
+ ],
+ [
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ "Orestes Yoga Pant -36-Black"
+ ],
+ [
+ "Orestes Yoga Pant -36-Blue"
+ ],
+ [
+ "Orestes Yoga Pant -36-Green"
+ ],
+ [
+ "Orestes Yoga Pant "
+ ],
+ [
+ "Aether Gym Pant -32-Blue"
+ ],
+ [
+ "Aether Gym Pant -32-Brown"
+ ],
+ [
+ "Aether Gym Pant -32-Green"
+ ],
+ [
+ "Aether Gym Pant -33-Blue"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Aether Gym Pant -33-Green"
+ ],
+ [
+ "Aether Gym Pant -34-Blue"
+ ],
+ [
+ "Aether Gym Pant -34-Brown"
+ ],
+ [
+ "Aether Gym Pant -34-Green"
+ ],
+ [
+ "Aether Gym Pant -36-Blue"
+ ],
+ [
+ "Aether Gym Pant -36-Brown"
+ ],
+ [
+ "Aether Gym Pant -36-Green"
+ ],
+ [
+ "Aether Gym Pant "
+ ],
+ [
+ "Cronus Yoga Pant -32-Black"
+ ],
+ [
+ "Cronus Yoga Pant -32-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -32-Red"
+ ],
+ [
+ "Cronus Yoga Pant -33-Black"
+ ],
+ [
+ "Cronus Yoga Pant -33-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -33-Red"
+ ],
+ [
+ "Cronus Yoga Pant -34-Black"
+ ],
+ [
+ "Cronus Yoga Pant -34-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -34-Red"
+ ],
+ [
+ "Cronus Yoga Pant -36-Black"
+ ],
+ [
+ "Cronus Yoga Pant -36-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -36-Red"
+ ],
+ [
+ "Cronus Yoga Pant "
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Black"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Blue"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-33-Black"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-33-Blue"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-33-Red"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-34-Black"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-34-Blue"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-34-Red"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-36-Black"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-36-Blue"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-36-Red"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short"
+ ],
+ [
+ "Meteor Workout Short-32-Black"
+ ],
+ [
+ "Meteor Workout Short-32-Blue"
+ ],
+ [
+ "Meteor Workout Short-32-Green"
+ ],
+ [
+ "Meteor Workout Short-33-Black"
+ ],
+ [
+ "Meteor Workout Short-33-Blue"
+ ],
+ [
+ "Meteor Workout Short-33-Green"
+ ],
+ [
+ "Meteor Workout Short-34-Black"
+ ],
+ [
+ "Meteor Workout Short-34-Blue"
+ ],
+ [
+ "Meteor Workout Short-34-Green"
+ ],
+ [
+ "Meteor Workout Short-36-Black"
+ ],
+ [
+ "Meteor Workout Short-36-Blue"
+ ],
+ [
+ "Meteor Workout Short-36-Green"
+ ],
+ [
+ "Meteor Workout Short"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Gray"
+ ],
+ [
+ "Hawkeye Yoga Short-33-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-33-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short-33-Gray"
+ ],
+ [
+ "Hawkeye Yoga Short-34-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-34-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short-34-Gray"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray"
+ ],
+ [
+ "Hawkeye Yoga Short"
+ ],
+ [
+ "Lono Yoga Short-32-Blue"
+ ],
+ [
+ "Lono Yoga Short-32-Gray"
+ ],
+ [
+ "Lono Yoga Short-32-Red"
+ ],
+ [
+ "Lono Yoga Short-33-Blue"
+ ],
+ [
+ "Lono Yoga Short-33-Gray"
+ ],
+ [
+ "Lono Yoga Short-33-Red"
+ ],
+ [
+ "Lono Yoga Short-34-Blue"
+ ],
+ [
+ "Lono Yoga Short-34-Gray"
+ ],
+ [
+ "Lono Yoga Short-34-Red"
+ ],
+ [
+ "Lono Yoga Short-36-Blue"
+ ],
+ [
+ "Lono Yoga Short-36-Gray"
+ ],
+ [
+ "Lono Yoga Short-36-Red"
+ ],
+ [
+ "Lono Yoga Short"
+ ],
+ [
+ "Rapha Sports Short-32-Black"
+ ],
+ [
+ "Rapha Sports Short-32-Blue"
+ ],
+ [
+ "Rapha Sports Short-32-Purple"
+ ],
+ [
+ "Rapha Sports Short-33-Black"
+ ],
+ [
+ "Rapha Sports Short-33-Blue"
+ ],
+ [
+ "Rapha Sports Short-33-Purple"
+ ],
+ [
+ "Rapha Sports Short-34-Black"
+ ],
+ [
+ "Rapha Sports Short-34-Blue"
+ ],
+ [
+ "Rapha Sports Short-34-Purple"
+ ],
+ [
+ "Rapha Sports Short-36-Black"
+ ],
+ [
+ "Rapha Sports Short-36-Blue"
+ ],
+ [
+ "Rapha Sports Short-36-Purple"
+ ],
+ [
+ "Rapha Sports Short"
+ ],
+ [
+ "Orestes Fitness Short-32-Black"
+ ],
+ [
+ "Orestes Fitness Short-32-Blue"
+ ],
+ [
+ "Orestes Fitness Short-32-Green"
+ ],
+ [
+ "Orestes Fitness Short-33-Black"
+ ],
+ [
+ "Orestes Fitness Short-33-Blue"
+ ],
+ [
+ "Orestes Fitness Short-33-Green"
+ ],
+ [
+ "Orestes Fitness Short-34-Black"
+ ],
+ [
+ "Orestes Fitness Short-34-Blue"
+ ],
+ [
+ "Orestes Fitness Short-34-Green"
+ ],
+ [
+ "Orestes Fitness Short-36-Black"
+ ],
+ [
+ "Orestes Fitness Short-36-Blue"
+ ],
+ [
+ "Orestes Fitness Short-36-Green"
+ ],
+ [
+ "Orestes Fitness Short"
+ ],
+ [
+ "Troy Yoga Short-32-Black"
+ ],
+ [
+ "Troy Yoga Short-32-Blue"
+ ],
+ [
+ "Troy Yoga Short-32-Green"
+ ],
+ [
+ "Troy Yoga Short-33-Black"
+ ],
+ [
+ "Troy Yoga Short-33-Blue"
+ ],
+ [
+ "Troy Yoga Short-33-Green"
+ ],
+ [
+ "Troy Yoga Short-34-Black"
+ ],
+ [
+ "Troy Yoga Short-34-Blue"
+ ],
+ [
+ "Troy Yoga Short-34-Green"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Troy Yoga Short-36-Blue"
+ ],
+ [
+ "Troy Yoga Short-36-Green"
+ ],
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Sol Active Short-32-Blue"
+ ],
+ [
+ "Sol Active Short-32-Green"
+ ],
+ [
+ "Sol Active Short-32-Purple"
+ ],
+ [
+ "Sol Active Short-33-Blue"
+ ],
+ [
+ "Sol Active Short-33-Green"
+ ],
+ [
+ "Sol Active Short-33-Purple"
+ ],
+ [
+ "Sol Active Short-34-Blue"
+ ],
+ [
+ "Sol Active Short-34-Green"
+ ],
+ [
+ "Sol Active Short-34-Purple"
+ ],
+ [
+ "Sol Active Short-36-Blue"
+ ],
+ [
+ "Sol Active Short-36-Green"
+ ],
+ [
+ "Sol Active Short-36-Purple"
+ ],
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Pierce Gym Short-32-Black"
+ ],
+ [
+ "Pierce Gym Short-32-Gray"
+ ],
+ [
+ "Pierce Gym Short-32-Red"
+ ],
+ [
+ "Pierce Gym Short-33-Black"
+ ],
+ [
+ "Pierce Gym Short-33-Gray"
+ ],
+ [
+ "Pierce Gym Short-33-Red"
+ ],
+ [
+ "Pierce Gym Short-34-Black"
+ ],
+ [
+ "Pierce Gym Short-34-Gray"
+ ],
+ [
+ "Pierce Gym Short-34-Red"
+ ],
+ [
+ "Pierce Gym Short-36-Black"
+ ],
+ [
+ "Pierce Gym Short-36-Gray"
+ ],
+ [
+ "Pierce Gym Short-36-Red"
+ ],
+ [
+ "Pierce Gym Short"
+ ],
+ [
+ "Mona Pullover Hoodlie-XS-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-XS-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-XS-Purple"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Purple"
+ ],
+ [
+ "Mona Pullover Hoodlie-M-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-M-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-M-Purple"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Purple"
+ ],
+ [
+ "Mona Pullover Hoodlie-XL-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-XL-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-XL-Purple"
+ ],
+ [
+ "Mona Pullover Hoodlie"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie-S-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-S-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-S-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie-XL-Blue"
+ ],
+ [
+ "Hera Pullover Hoodie-XL-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-XL-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XS-Gray"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XS-Purple"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XS-White"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-S-Gray"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-S-Purple"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-S-White"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-Gray"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-Purple"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-White"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-L-Gray"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-L-Purple"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-L-White"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XL-Gray"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XL-Purple"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-XL-White"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XS-Orange"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XS-Purple"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XS-White"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-S-Orange"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-S-Purple"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-S-White"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-M-Orange"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-M-Purple"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-M-White"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-L-Orange"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-L-Purple"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-L-White"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XL-Orange"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XL-Purple"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XL-White"
+ ],
+ [
+ "Cassia Funnel Sweatshirt"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XS-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XS-Purple"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XS-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-S-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-S-Purple"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-S-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-M-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-M-Purple"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-M-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-L-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-L-Purple"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-L-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XL-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XL-Purple"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-XL-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt"
+ ],
+ [
+ "Helena Hooded Fleece-XS-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XS-Gray"
+ ],
+ [
+ "Helena Hooded Fleece-XS-Yellow"
+ ],
+ [
+ "Helena Hooded Fleece-S-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-S-Gray"
+ ],
+ [
+ "Helena Hooded Fleece-S-Yellow"
+ ],
+ [
+ "Helena Hooded Fleece-M-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-M-Gray"
+ ],
+ [
+ "Helena Hooded Fleece-M-Yellow"
+ ],
+ [
+ "Helena Hooded Fleece-L-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-L-Gray"
+ ],
+ [
+ "Helena Hooded Fleece-L-Yellow"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Gray"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Yellow"
+ ],
+ [
+ "Helena Hooded Fleece"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie-M-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-M-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-M-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie-L-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-L-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-L-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie-XL-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-XL-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-XL-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XS-Gray"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XS-Green"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XS-Purple"
+ ],
+ [
+ "Circe Hooded Ice Fleece-S-Gray"
+ ],
+ [
+ "Circe Hooded Ice Fleece-S-Green"
+ ],
+ [
+ "Circe Hooded Ice Fleece-S-Purple"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Gray"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Purple"
+ ],
+ [
+ "Circe Hooded Ice Fleece-L-Gray"
+ ],
+ [
+ "Circe Hooded Ice Fleece-L-Green"
+ ],
+ [
+ "Circe Hooded Ice Fleece-L-Purple"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XL-Gray"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XL-Green"
+ ],
+ [
+ "Circe Hooded Ice Fleece-XL-Purple"
+ ],
+ [
+ "Circe Hooded Ice Fleece"
+ ],
+ [
+ "Stellar Solar Jacket-S-Blue"
+ ],
+ [
+ "Stellar Solar Jacket-S-Red"
+ ],
+ [
+ "Stellar Solar Jacket-S-Yellow"
+ ],
+ [
+ "Stellar Solar Jacket-M-Blue"
+ ],
+ [
+ "Stellar Solar Jacket-M-Red"
+ ],
+ [
+ "Stellar Solar Jacket-M-Yellow"
+ ],
+ [
+ "Stellar Solar Jacket-L-Blue"
+ ],
+ [
+ "Stellar Solar Jacket-L-Red"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ "Stellar Solar Jacket"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Black"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-S-Black"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-S-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-M-Black"
+ ],
+ [
+ "Josie Yoga Jacket-M-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-M-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-L-Black"
+ ],
+ [
+ "Josie Yoga Jacket-L-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-L-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-XL-Black"
+ ],
+ [
+ "Josie Yoga Jacket-XL-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-XL-Gray"
+ ],
+ [
+ "Josie Yoga Jacket"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Ingrid Running Jacket-XS-White"
+ ],
+ [
+ "Ingrid Running Jacket-S-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-S-Red"
+ ],
+ [
+ "Ingrid Running Jacket-S-White"
+ ],
+ [
+ "Ingrid Running Jacket-M-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-M-Red"
+ ],
+ [
+ "Ingrid Running Jacket-M-White"
+ ],
+ [
+ "Ingrid Running Jacket-L-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-L-Red"
+ ],
+ [
+ "Ingrid Running Jacket-L-White"
+ ],
+ [
+ "Ingrid Running Jacket-XL-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-XL-Red"
+ ],
+ [
+ "Ingrid Running Jacket-XL-White"
+ ],
+ [
+ "Ingrid Running Jacket"
+ ],
+ [
+ "Adrienne Trek Jacket-XS-Gray"
+ ],
+ [
+ "Adrienne Trek Jacket-XS-Orange"
+ ],
+ [
+ "Adrienne Trek Jacket-XS-Purple"
+ ],
+ [
+ "Adrienne Trek Jacket-S-Gray"
+ ],
+ [
+ "Adrienne Trek Jacket-S-Orange"
+ ],
+ [
+ "Adrienne Trek Jacket-S-Purple"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Gray"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Purple"
+ ],
+ [
+ "Adrienne Trek Jacket-L-Gray"
+ ],
+ [
+ "Adrienne Trek Jacket-L-Orange"
+ ],
+ [
+ "Adrienne Trek Jacket-L-Purple"
+ ],
+ [
+ "Adrienne Trek Jacket-XL-Gray"
+ ],
+ [
+ "Adrienne Trek Jacket-XL-Orange"
+ ],
+ [
+ "Adrienne Trek Jacket-XL-Purple"
+ ],
+ [
+ "Adrienne Trek Jacket"
+ ],
+ [
+ "Jade Yoga Jacket-XS-Blue"
+ ],
+ [
+ "Jade Yoga Jacket-XS-Gray"
+ ],
+ [
+ "Jade Yoga Jacket-XS-Green"
+ ],
+ [
+ "Jade Yoga Jacket-S-Blue"
+ ],
+ [
+ "Jade Yoga Jacket-S-Gray"
+ ],
+ [
+ "Jade Yoga Jacket-S-Green"
+ ],
+ [
+ "Jade Yoga Jacket-M-Blue"
+ ],
+ [
+ "Jade Yoga Jacket-M-Gray"
+ ],
+ [
+ "Jade Yoga Jacket-M-Green"
+ ],
+ [
+ "Jade Yoga Jacket-L-Blue"
+ ],
+ [
+ "Jade Yoga Jacket-L-Gray"
+ ],
+ [
+ "Jade Yoga Jacket-L-Green"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Blue"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Gray"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Green"
+ ],
+ [
+ "Jade Yoga Jacket"
+ ],
+ [
+ "Nadia Elements Shell-XS-Black"
+ ],
+ [
+ "Nadia Elements Shell-XS-Orange"
+ ],
+ [
+ "Nadia Elements Shell-XS-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-S-Black"
+ ],
+ [
+ "Nadia Elements Shell-S-Orange"
+ ],
+ [
+ "Nadia Elements Shell-S-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-M-Black"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Nadia Elements Shell-M-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-L-Black"
+ ],
+ [
+ "Nadia Elements Shell-L-Orange"
+ ],
+ [
+ "Nadia Elements Shell-L-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-XL-Black"
+ ],
+ [
+ "Nadia Elements Shell-XL-Orange"
+ ],
+ [
+ "Nadia Elements Shell-XL-Yellow"
+ ],
+ [
+ "Nadia Elements Shell"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Blue"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Blue"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Blue"
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-L-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-L-Blue"
+ ],
+ [
+ "Neve Studio Dance Jacket-L-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-XL-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-XL-Blue"
+ ],
+ [
+ "Neve Studio Dance Jacket-XL-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket"
+ ],
+ [
+ "Juno Jacket-XS-Blue"
+ ],
+ [
+ "Juno Jacket-XS-Green"
+ ],
+ [
+ "Juno Jacket-XS-Purple"
+ ],
+ [
+ "Juno Jacket-S-Blue"
+ ],
+ [
+ "Juno Jacket-S-Green"
+ ],
+ [
+ "Juno Jacket-S-Purple"
+ ],
+ [
+ "Juno Jacket-M-Blue"
+ ],
+ [
+ "Juno Jacket-M-Green"
+ ],
+ [
+ "Juno Jacket-M-Purple"
+ ],
+ [
+ "Juno Jacket-L-Blue"
+ ],
+ [
+ "Juno Jacket-L-Green"
+ ],
+ [
+ "Juno Jacket-L-Purple"
+ ],
+ [
+ "Juno Jacket-XL-Blue"
+ ],
+ [
+ "Juno Jacket-XL-Green"
+ ],
+ [
+ "Juno Jacket-XL-Purple"
+ ],
+ [
+ "Juno Jacket"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Black"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Purple"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Black"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Purple"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-M-Black"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-M-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-M-Purple"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-L-Black"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-L-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-L-Purple"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XL-Black"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XL-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XL-Purple"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XS-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XS-Green"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XS-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-S-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-S-Green"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-S-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-M-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-M-Green"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-M-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XL-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XL-Green"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XL-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top"
+ ],
+ [
+ "Iris Workout Top-XS-Blue"
+ ],
+ [
+ "Iris Workout Top-XS-Green"
+ ],
+ [
+ "Iris Workout Top-XS-Red"
+ ],
+ [
+ "Iris Workout Top-S-Blue"
+ ],
+ [
+ "Iris Workout Top-S-Green"
+ ],
+ [
+ "Iris Workout Top-S-Red"
+ ],
+ [
+ "Iris Workout Top-M-Blue"
+ ],
+ [
+ "Iris Workout Top-M-Green"
+ ],
+ [
+ "Iris Workout Top-M-Red"
+ ],
+ [
+ "Iris Workout Top-L-Blue"
+ ],
+ [
+ "Iris Workout Top-L-Green"
+ ],
+ [
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ "Iris Workout Top-XL-Blue"
+ ],
+ [
+ "Iris Workout Top-XL-Green"
+ ],
+ [
+ "Iris Workout Top-XL-Red"
+ ],
+ [
+ "Iris Workout Top"
+ ],
+ [
+ "Layla Tee-XS-Blue"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Layla Tee-XS-Red"
+ ],
+ [
+ "Layla Tee-S-Blue"
+ ],
+ [
+ "Layla Tee-S-Green"
+ ],
+ [
+ "Layla Tee-S-Red"
+ ],
+ [
+ "Layla Tee-M-Blue"
+ ],
+ [
+ "Layla Tee-M-Green"
+ ],
+ [
+ "Layla Tee-M-Red"
+ ],
+ [
+ "Layla Tee-L-Blue"
+ ],
+ [
+ "Layla Tee-L-Green"
+ ],
+ [
+ "Layla Tee-L-Red"
+ ],
+ [
+ "Layla Tee-XL-Blue"
+ ],
+ [
+ "Layla Tee-XL-Green"
+ ],
+ [
+ "Layla Tee-XL-Red"
+ ],
+ [
+ "Layla Tee"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Gray"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Purple"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Red"
+ ],
+ [
+ "Elisa EverCool™ Tee-S-Gray"
+ ],
+ [
+ "Elisa EverCool™ Tee-S-Purple"
+ ],
+ [
+ "Elisa EverCool™ Tee-S-Red"
+ ],
+ [
+ "Elisa EverCool™ Tee-M-Gray"
+ ],
+ [
+ "Elisa EverCool™ Tee-M-Purple"
+ ],
+ [
+ "Elisa EverCool™ Tee-M-Red"
+ ],
+ [
+ "Elisa EverCool™ Tee-L-Gray"
+ ],
+ [
+ "Elisa EverCool™ Tee-L-Purple"
+ ],
+ [
+ "Elisa EverCool™ Tee-L-Red"
+ ],
+ [
+ "Elisa EverCool™ Tee-XL-Gray"
+ ],
+ [
+ "Elisa EverCool™ Tee-XL-Purple"
+ ],
+ [
+ "Elisa EverCool™ Tee-XL-Red"
+ ],
+ [
+ "Elisa EverCool™ Tee"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XS-Black"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XS-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XS-Yellow"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-S-Black"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-S-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-S-Yellow"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-Black"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-Yellow"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-L-Black"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-L-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-L-Yellow"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Yellow"
+ ],
+ [
+ "Juliana Short-Sleeve Tee"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-L-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-L-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-L-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-White"
+ ],
+ [
+ "Tiffany Fitness Tee-S-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-S-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-S-White"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-M-White"
+ ],
+ [
+ "Tiffany Fitness Tee-L-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-L-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-L-White"
+ ],
+ [
+ "Tiffany Fitness Tee-XL-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-XL-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-XL-White"
+ ],
+ [
+ "Tiffany Fitness Tee"
+ ],
+ [
+ "Karissa V-Neck Tee-XS-Green"
+ ],
+ [
+ "Karissa V-Neck Tee-XS-Red"
+ ],
+ [
+ "Karissa V-Neck Tee-XS-Yellow"
+ ],
+ [
+ "Karissa V-Neck Tee-S-Green"
+ ],
+ [
+ "Karissa V-Neck Tee-S-Red"
+ ],
+ [
+ "Karissa V-Neck Tee-S-Yellow"
+ ],
+ [
+ "Karissa V-Neck Tee-M-Green"
+ ],
+ [
+ "Karissa V-Neck Tee-M-Red"
+ ],
+ [
+ "Karissa V-Neck Tee-M-Yellow"
+ ],
+ [
+ "Karissa V-Neck Tee-L-Green"
+ ],
+ [
+ "Karissa V-Neck Tee-L-Red"
+ ],
+ [
+ "Karissa V-Neck Tee-L-Yellow"
+ ],
+ [
+ "Karissa V-Neck Tee-XL-Green"
+ ],
+ [
+ "Karissa V-Neck Tee-XL-Red"
+ ],
+ [
+ "Karissa V-Neck Tee-XL-Yellow"
+ ],
+ [
+ "Karissa V-Neck Tee"
+ ],
+ [
+ "Diva Gym Tee-XS-Green"
+ ],
+ [
+ "Diva Gym Tee-XS-Orange"
+ ],
+ [
+ "Diva Gym Tee-XS-Yellow"
+ ],
+ [
+ "Diva Gym Tee-S-Green"
+ ],
+ [
+ "Diva Gym Tee-S-Orange"
+ ],
+ [
+ "Diva Gym Tee-S-Yellow"
+ ],
+ [
+ "Diva Gym Tee-M-Green"
+ ],
+ [
+ "Diva Gym Tee-M-Orange"
+ ],
+ [
+ "Diva Gym Tee-M-Yellow"
+ ],
+ [
+ "Diva Gym Tee-L-Green"
+ ],
+ [
+ "Diva Gym Tee-L-Orange"
+ ],
+ [
+ "Diva Gym Tee-L-Yellow"
+ ],
+ [
+ "Diva Gym Tee-XL-Green"
+ ],
+ [
+ "Diva Gym Tee-XL-Orange"
+ ],
+ [
+ "Diva Gym Tee-XL-Yellow"
+ ],
+ [
+ "Diva Gym Tee"
+ ],
+ [
+ "Radiant Tee-XS-Blue"
+ ],
+ [
+ "Radiant Tee-XS-Orange"
+ ],
+ [
+ "Radiant Tee-XS-Purple"
+ ],
+ [
+ "Radiant Tee-S-Blue"
+ ],
+ [
+ "Radiant Tee-S-Orange"
+ ],
+ [
+ "Radiant Tee-S-Purple"
+ ],
+ [
+ "Radiant Tee-M-Blue"
+ ],
+ [
+ "Radiant Tee-M-Orange"
+ ],
+ [
+ "Radiant Tee-M-Purple"
+ ],
+ [
+ "Radiant Tee-L-Blue"
+ ],
+ [
+ "Radiant Tee-L-Orange"
+ ],
+ [
+ "Radiant Tee-L-Purple"
+ ],
+ [
+ "Radiant Tee-XL-Blue"
+ ],
+ [
+ "Radiant Tee-XL-Orange"
+ ],
+ [
+ "Radiant Tee-XL-Purple"
+ ],
+ [
+ "Radiant Tee"
+ ],
+ [
+ "Gwyn Endurance Tee-XS-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-XS-Green"
+ ],
+ [
+ "Gwyn Endurance Tee-XS-Yellow"
+ ],
+ [
+ "Gwyn Endurance Tee-S-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-S-Green"
+ ],
+ [
+ "Gwyn Endurance Tee-S-Yellow"
+ ],
+ [
+ "Gwyn Endurance Tee-M-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-M-Green"
+ ],
+ [
+ "Gwyn Endurance Tee-M-Yellow"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Green"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Gwyn Endurance Tee-XL-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-XL-Green"
+ ],
+ [
+ "Gwyn Endurance Tee-XL-Yellow"
+ ],
+ [
+ "Gwyn Endurance Tee"
+ ],
+ [
+ "Desiree Fitness Tee-XS-Black"
+ ],
+ [
+ "Desiree Fitness Tee-XS-Orange"
+ ],
+ [
+ "Desiree Fitness Tee-XS-Yellow"
+ ],
+ [
+ "Desiree Fitness Tee-S-Black"
+ ],
+ [
+ "Desiree Fitness Tee-S-Orange"
+ ],
+ [
+ "Desiree Fitness Tee-S-Yellow"
+ ],
+ [
+ "Desiree Fitness Tee-M-Black"
+ ],
+ [
+ "Desiree Fitness Tee-M-Orange"
+ ],
+ [
+ "Desiree Fitness Tee-M-Yellow"
+ ],
+ [
+ "Desiree Fitness Tee-L-Black"
+ ],
+ [
+ "Desiree Fitness Tee-L-Orange"
+ ],
+ [
+ "Desiree Fitness Tee-L-Yellow"
+ ],
+ [
+ "Desiree Fitness Tee-XL-Black"
+ ],
+ [
+ "Desiree Fitness Tee-XL-Orange"
+ ],
+ [
+ "Desiree Fitness Tee-XL-Yellow"
+ ],
+ [
+ "Desiree Fitness Tee"
+ ],
+ [
+ "Electra Bra Top-XS-Black"
+ ],
+ [
+ "Electra Bra Top-XS-Gray"
+ ],
+ [
+ "Electra Bra Top-XS-Purple"
+ ],
+ [
+ "Electra Bra Top-S-Black"
+ ],
+ [
+ "Electra Bra Top-S-Gray"
+ ],
+ [
+ "Electra Bra Top-S-Purple"
+ ],
+ [
+ "Electra Bra Top-M-Black"
+ ],
+ [
+ "Electra Bra Top-M-Gray"
+ ],
+ [
+ "Electra Bra Top-M-Purple"
+ ],
+ [
+ "Electra Bra Top-L-Black"
+ ],
+ [
+ "Electra Bra Top-L-Gray"
+ ],
+ [
+ "Electra Bra Top-L-Purple"
+ ],
+ [
+ "Electra Bra Top-XL-Black"
+ ],
+ [
+ "Electra Bra Top-XL-Gray"
+ ],
+ [
+ "Electra Bra Top-XL-Purple"
+ ],
+ [
+ "Electra Bra Top"
+ ],
+ [
+ "Celeste Sports Bra-XS-Green"
+ ],
+ [
+ "Celeste Sports Bra-XS-Red"
+ ],
+ [
+ "Celeste Sports Bra-XS-Yellow"
+ ],
+ [
+ "Celeste Sports Bra-S-Green"
+ ],
+ [
+ "Celeste Sports Bra-S-Red"
+ ],
+ [
+ "Celeste Sports Bra-S-Yellow"
+ ],
+ [
+ "Celeste Sports Bra-M-Green"
+ ],
+ [
+ "Celeste Sports Bra-M-Red"
+ ],
+ [
+ "Celeste Sports Bra-M-Yellow"
+ ],
+ [
+ "Celeste Sports Bra-L-Green"
+ ],
+ [
+ "Celeste Sports Bra-L-Red"
+ ],
+ [
+ "Celeste Sports Bra-L-Yellow"
+ ],
+ [
+ "Celeste Sports Bra-XL-Green"
+ ],
+ [
+ "Celeste Sports Bra-XL-Red"
+ ],
+ [
+ "Celeste Sports Bra-XL-Yellow"
+ ],
+ [
+ "Celeste Sports Bra"
+ ],
+ [
+ "Bella Tank-XS-Black"
+ ],
+ [
+ "Bella Tank-XS-Blue"
+ ],
+ [
+ "Bella Tank-XS-Orange"
+ ],
+ [
+ "Bella Tank-S-Black"
+ ],
+ [
+ "Bella Tank-S-Blue"
+ ],
+ [
+ "Bella Tank-S-Orange"
+ ],
+ [
+ "Bella Tank-M-Black"
+ ],
+ [
+ "Bella Tank-M-Blue"
+ ],
+ [
+ "Bella Tank-M-Orange"
+ ],
+ [
+ "Bella Tank-L-Black"
+ ],
+ [
+ "Bella Tank-L-Blue"
+ ],
+ [
+ "Bella Tank-L-Orange"
+ ],
+ [
+ "Bella Tank-XL-Black"
+ ],
+ [
+ "Bella Tank-XL-Blue"
+ ],
+ [
+ "Bella Tank-XL-Orange"
+ ],
+ [
+ "Bella Tank"
+ ],
+ [
+ "Nora Practice Tank-XS-Orange"
+ ],
+ [
+ "Nora Practice Tank-XS-Purple"
+ ],
+ [
+ "Nora Practice Tank-XS-Red"
+ ],
+ [
+ "Nora Practice Tank-S-Orange"
+ ],
+ [
+ "Nora Practice Tank-S-Purple"
+ ],
+ [
+ "Nora Practice Tank-S-Red"
+ ],
+ [
+ "Nora Practice Tank-M-Orange"
+ ],
+ [
+ "Nora Practice Tank-M-Purple"
+ ],
+ [
+ "Nora Practice Tank-M-Red"
+ ],
+ [
+ "Nora Practice Tank-L-Orange"
+ ],
+ [
+ "Nora Practice Tank-L-Purple"
+ ],
+ [
+ "Nora Practice Tank-L-Red"
+ ],
+ [
+ "Nora Practice Tank-XL-Orange"
+ ],
+ [
+ "Nora Practice Tank-XL-Purple"
+ ],
+ [
+ "Nora Practice Tank-XL-Red"
+ ],
+ [
+ "Nora Practice Tank"
+ ],
+ [
+ "Nona Fitness Tank-XS-Blue"
+ ],
+ [
+ "Nona Fitness Tank-XS-Purple"
+ ],
+ [
+ "Nona Fitness Tank-XS-Red"
+ ],
+ [
+ "Nona Fitness Tank-S-Blue"
+ ],
+ [
+ "Nona Fitness Tank-S-Purple"
+ ],
+ [
+ "Nona Fitness Tank-S-Red"
+ ],
+ [
+ "Nona Fitness Tank-M-Blue"
+ ],
+ [
+ "Nona Fitness Tank-M-Purple"
+ ],
+ [
+ "Nona Fitness Tank-M-Red"
+ ],
+ [
+ "Nona Fitness Tank-L-Blue"
+ ],
+ [
+ "Nona Fitness Tank-L-Purple"
+ ],
+ [
+ "Nona Fitness Tank-L-Red"
+ ],
+ [
+ "Nona Fitness Tank-XL-Blue"
+ ],
+ [
+ "Nona Fitness Tank-XL-Purple"
+ ],
+ [
+ "Nona Fitness Tank-XL-Red"
+ ],
+ [
+ "Nona Fitness Tank"
+ ],
+ [
+ "Leah Yoga Top-XS-Orange"
+ ],
+ [
+ "Leah Yoga Top-XS-Purple"
+ ],
+ [
+ "Leah Yoga Top-XS-White"
+ ],
+ [
+ "Leah Yoga Top-S-Orange"
+ ],
+ [
+ "Leah Yoga Top-S-Purple"
+ ],
+ [
+ "Leah Yoga Top-S-White"
+ ],
+ [
+ "Leah Yoga Top-M-Orange"
+ ],
+ [
+ "Leah Yoga Top-M-Purple"
+ ],
+ [
+ "Leah Yoga Top-M-White"
+ ],
+ [
+ "Leah Yoga Top-L-Orange"
+ ],
+ [
+ "Leah Yoga Top-L-Purple"
+ ],
+ [
+ "Leah Yoga Top-L-White"
+ ],
+ [
+ "Leah Yoga Top-XL-Orange"
+ ],
+ [
+ "Leah Yoga Top-XL-Purple"
+ ],
+ [
+ "Leah Yoga Top-XL-White"
+ ],
+ [
+ "Leah Yoga Top"
+ ],
+ [
+ "Maya Tunic-XS-Green"
+ ],
+ [
+ "Maya Tunic-XS-White"
+ ],
+ [
+ "Maya Tunic-XS-Yellow"
+ ],
+ [
+ "Maya Tunic-S-Green"
+ ],
+ [
+ "Maya Tunic-S-White"
+ ],
+ [
+ "Maya Tunic-S-Yellow"
+ ],
+ [
+ "Maya Tunic-M-Green"
+ ],
+ [
+ "Maya Tunic-M-White"
+ ],
+ [
+ "Maya Tunic-M-Yellow"
+ ],
+ [
+ "Maya Tunic-L-Green"
+ ],
+ [
+ "Maya Tunic-L-White"
+ ],
+ [
+ "Maya Tunic-L-Yellow"
+ ],
+ [
+ "Maya Tunic-XL-Green"
+ ],
+ [
+ "Maya Tunic-XL-White"
+ ],
+ [
+ "Maya Tunic-XL-Yellow"
+ ],
+ [
+ "Maya Tunic"
+ ],
+ [
+ "Antonia Racer Tank-XS-Black"
+ ],
+ [
+ "Antonia Racer Tank-XS-Purple"
+ ],
+ [
+ "Antonia Racer Tank-XS-Yellow"
+ ],
+ [
+ "Antonia Racer Tank-S-Black"
+ ],
+ [
+ "Antonia Racer Tank-S-Purple"
+ ],
+ [
+ "Antonia Racer Tank-S-Yellow"
+ ],
+ [
+ "Antonia Racer Tank-M-Black"
+ ],
+ [
+ "Antonia Racer Tank-M-Purple"
+ ],
+ [
+ "Antonia Racer Tank-M-Yellow"
+ ],
+ [
+ "Antonia Racer Tank-L-Black"
+ ],
+ [
+ "Antonia Racer Tank-L-Purple"
+ ],
+ [
+ "Antonia Racer Tank-L-Yellow"
+ ],
+ [
+ "Antonia Racer Tank-XL-Black"
+ ],
+ [
+ "Antonia Racer Tank-XL-Purple"
+ ],
+ [
+ "Antonia Racer Tank-XL-Yellow"
+ ],
+ [
+ "Antonia Racer Tank"
+ ],
+ [
+ "Breathe-Easy Tank-XS-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-XS-White"
+ ],
+ [
+ "Breathe-Easy Tank-XS-Yellow"
+ ],
+ [
+ "Breathe-Easy Tank-S-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-S-White"
+ ],
+ [
+ "Breathe-Easy Tank-S-Yellow"
+ ],
+ [
+ "Breathe-Easy Tank-M-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-M-White"
+ ],
+ [
+ "Breathe-Easy Tank-M-Yellow"
+ ],
+ [
+ "Breathe-Easy Tank-L-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-L-White"
+ ],
+ [
+ "Breathe-Easy Tank-L-Yellow"
+ ],
+ [
+ "Breathe-Easy Tank-XL-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-XL-White"
+ ],
+ [
+ "Breathe-Easy Tank-XL-Yellow"
+ ],
+ [
+ "Breathe-Easy Tank"
+ ],
+ [
+ "Karmen Yoga Pant-28-Black"
+ ],
+ [
+ "Karmen Yoga Pant-28-Gray"
+ ],
+ [
+ "Karmen Yoga Pant-28-White"
+ ],
+ [
+ "Karmen Yoga Pant-29-Black"
+ ],
+ [
+ "Karmen Yoga Pant-29-Gray"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Karmen Yoga Pant"
+ ],
+ [
+ "Emma Leggings-28-Blue"
+ ],
+ [
+ "Emma Leggings-28-Purple"
+ ],
+ [
+ "Emma Leggings-28-Red"
+ ],
+ [
+ "Emma Leggings-29-Blue"
+ ],
+ [
+ "Emma Leggings-29-Purple"
+ ],
+ [
+ "Emma Leggings-29-Red"
+ ],
+ [
+ "Emma Leggings"
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Black"
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Blue"
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Purple"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Black"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Blue"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Ida Workout Parachute Pant"
+ ],
+ [
+ "Cora Parachute Pant-28-Black"
+ ],
+ [
+ "Cora Parachute Pant-28-Blue"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Cora Parachute Pant-29-Black"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue"
+ ],
+ [
+ "Cora Parachute Pant-29-White"
+ ],
+ [
+ "Cora Parachute Pant"
+ ],
+ [
+ "Sahara Leggings-28-Blue"
+ ],
+ [
+ "Sahara Leggings-28-Gray"
+ ],
+ [
+ "Sahara Leggings-28-Red"
+ ],
+ [
+ "Sahara Leggings-29-Blue"
+ ],
+ [
+ "Sahara Leggings-29-Gray"
+ ],
+ [
+ "Sahara Leggings-29-Red"
+ ],
+ [
+ "Sahara Leggings"
+ ],
+ [
+ "Diana Tights-28-Black"
+ ],
+ [
+ "Diana Tights-28-Blue"
+ ],
+ [
+ "Diana Tights-28-Orange"
+ ],
+ [
+ "Diana Tights-29-Black"
+ ],
+ [
+ "Diana Tights-29-Blue"
+ ],
+ [
+ "Diana Tights-29-Orange"
+ ],
+ [
+ "Diana Tights"
+ ],
+ [
+ "Aeon Capri-28-Black"
+ ],
+ [
+ "Aeon Capri-28-Blue"
+ ],
+ [
+ "Aeon Capri-28-Orange"
+ ],
+ [
+ "Aeon Capri-29-Black"
+ ],
+ [
+ "Aeon Capri-29-Blue"
+ ],
+ [
+ "Aeon Capri-29-Orange"
+ ],
+ [
+ "Aeon Capri"
+ ],
+ [
+ "Bardot Capri-28-Black"
+ ],
+ [
+ "Bardot Capri-28-Green"
+ ],
+ [
+ "Bardot Capri-28-Red"
+ ],
+ [
+ "Bardot Capri-29-Black"
+ ],
+ [
+ "Bardot Capri-29-Green"
+ ],
+ [
+ "Bardot Capri-29-Red"
+ ],
+ [
+ "Bardot Capri"
+ ],
+ [
+ "Carina Basic Capri-28-Black"
+ ],
+ [
+ "Carina Basic Capri-28-Blue"
+ ],
+ [
+ "Carina Basic Capri-28-Purple"
+ ],
+ [
+ "Carina Basic Capri-29-Black"
+ ],
+ [
+ "Carina Basic Capri-29-Blue"
+ ],
+ [
+ "Carina Basic Capri-29-Purple"
+ ],
+ [
+ "Carina Basic Capri"
+ ],
+ [
+ "Daria Bikram Pant-28-Black"
+ ],
+ [
+ "Daria Bikram Pant-28-Gray"
+ ],
+ [
+ "Daria Bikram Pant-28-White"
+ ],
+ [
+ "Daria Bikram Pant-29-Black"
+ ],
+ [
+ "Daria Bikram Pant-29-Gray"
+ ],
+ [
+ "Daria Bikram Pant-29-White"
+ ],
+ [
+ "Daria Bikram Pant"
+ ],
+ [
+ "Sylvia Capri-28-Blue"
+ ],
+ [
+ "Sylvia Capri-28-Green"
+ ],
+ [
+ "Sylvia Capri-28-Red"
+ ],
+ [
+ "Sylvia Capri-29-Blue"
+ ],
+ [
+ "Sylvia Capri-29-Green"
+ ],
+ [
+ "Sylvia Capri-29-Red"
+ ],
+ [
+ "Sylvia Capri"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Gray"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Green"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-29-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-29-Gray"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-29-Green"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri"
+ ],
+ [
+ "Portia Capri-28-Blue"
+ ],
+ [
+ "Portia Capri-28-Green"
+ ],
+ [
+ "Portia Capri-28-Orange"
+ ],
+ [
+ "Portia Capri-29-Blue"
+ ],
+ [
+ "Portia Capri-29-Green"
+ ],
+ [
+ "Portia Capri-29-Orange"
+ ],
+ [
+ "Portia Capri"
+ ],
+ [
+ "Fiona Fitness Short-28-Black"
+ ],
+ [
+ "Fiona Fitness Short-28-Green"
+ ],
+ [
+ "Fiona Fitness Short-28-Red"
+ ],
+ [
+ "Fiona Fitness Short-29-Black"
+ ],
+ [
+ "Fiona Fitness Short-29-Green"
+ ],
+ [
+ "Fiona Fitness Short-29-Red"
+ ],
+ [
+ "Fiona Fitness Short-30-Black"
+ ],
+ [
+ "Fiona Fitness Short-30-Green"
+ ],
+ [
+ "Fiona Fitness Short-30-Red"
+ ],
+ [
+ "Fiona Fitness Short-31-Black"
+ ],
+ [
+ "Fiona Fitness Short-31-Green"
+ ],
+ [
+ "Fiona Fitness Short-31-Red"
+ ],
+ [
+ "Fiona Fitness Short-32-Black"
+ ],
+ [
+ "Fiona Fitness Short-32-Green"
+ ],
+ [
+ "Fiona Fitness Short-32-Red"
+ ],
+ [
+ "Fiona Fitness Short"
+ ],
+ [
+ "Maxima Drawstring Short-28-Gray"
+ ],
+ [
+ "Maxima Drawstring Short-28-Orange"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short-29-Gray"
+ ],
+ [
+ "Maxima Drawstring Short-29-Orange"
+ ],
+ [
+ "Maxima Drawstring Short-29-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short-30-Gray"
+ ],
+ [
+ "Maxima Drawstring Short-30-Orange"
+ ],
+ [
+ "Maxima Drawstring Short-30-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short-31-Gray"
+ ],
+ [
+ "Maxima Drawstring Short-31-Orange"
+ ],
+ [
+ "Maxima Drawstring Short-31-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short-32-Gray"
+ ],
+ [
+ "Maxima Drawstring Short-32-Orange"
+ ],
+ [
+ "Maxima Drawstring Short-32-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short"
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Blue"
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Blue"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short-30-Blue"
+ ],
+ [
+ "Gwen Drawstring Bike Short-30-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-30-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short-31-Blue"
+ ],
+ [
+ "Gwen Drawstring Bike Short-31-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-31-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short-32-Blue"
+ ],
+ [
+ "Gwen Drawstring Bike Short-32-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-32-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short"
+ ],
+ [
+ "Bess Yoga Short-28-Blue"
+ ],
+ [
+ "Bess Yoga Short-28-Purple"
+ ],
+ [
+ "Bess Yoga Short-28-Yellow"
+ ],
+ [
+ "Bess Yoga Short-29-Blue"
+ ],
+ [
+ "Bess Yoga Short-29-Purple"
+ ],
+ [
+ "Bess Yoga Short-29-Yellow"
+ ],
+ [
+ "Bess Yoga Short-30-Blue"
+ ],
+ [
+ "Bess Yoga Short-30-Purple"
+ ],
+ [
+ "Bess Yoga Short-30-Yellow"
+ ],
+ [
+ "Bess Yoga Short-31-Blue"
+ ],
+ [
+ "Bess Yoga Short-31-Purple"
+ ],
+ [
+ "Bess Yoga Short-31-Yellow"
+ ],
+ [
+ "Bess Yoga Short-32-Blue"
+ ],
+ [
+ "Bess Yoga Short-32-Purple"
+ ],
+ [
+ "Bess Yoga Short-32-Yellow"
+ ],
+ [
+ "Bess Yoga Short"
+ ],
+ [
+ "Echo Fit Compression Short-28-Black"
+ ],
+ [
+ "Echo Fit Compression Short-28-Blue"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ [
+ "Echo Fit Compression Short-29-Black"
+ ],
+ [
+ "Echo Fit Compression Short-29-Blue"
+ ],
+ [
+ "Echo Fit Compression Short-29-Purple"
+ ],
+ [
+ "Echo Fit Compression Short"
+ ],
+ [
+ "Sybil Running Short-28-Purple"
+ ],
+ [
+ "Sybil Running Short-29-Purple"
+ ],
+ [
+ "Sybil Running Short-30-Purple"
+ ],
+ [
+ "Sybil Running Short-31-Purple"
+ ],
+ [
+ "Sybil Running Short-32-Purple"
+ ],
+ [
+ "Sybil Running Short"
+ ],
+ [
+ "Ana Running Short-28-Black"
+ ],
+ [
+ "Ana Running Short-28-Orange"
+ ],
+ [
+ "Ana Running Short-28-White"
+ ],
+ [
+ "Ana Running Short-29-Black"
+ ],
+ [
+ "Ana Running Short-29-Orange"
+ ],
+ [
+ "Ana Running Short-29-White"
+ ],
+ [
+ "Ana Running Short"
+ ],
+ [
+ "Ina Compression Short-28-Blue"
+ ],
+ [
+ "Ina Compression Short-28-Orange"
+ ],
+ [
+ "Ina Compression Short-28-Red"
+ ],
+ [
+ "Ina Compression Short-29-Blue"
+ ],
+ [
+ "Ina Compression Short-29-Orange"
+ ],
+ [
+ "Ina Compression Short-29-Red"
+ ],
+ [
+ "Ina Compression Short"
+ ],
+ [
+ "Erika Running Short-28-Green"
+ ],
+ [
+ "Erika Running Short-28-Purple"
+ ],
+ [
+ "Erika Running Short-28-Red"
+ ],
+ [
+ "Erika Running Short-29-Green"
+ ],
+ [
+ "Erika Running Short-29-Purple"
+ ],
+ [
+ "Erika Running Short-29-Red"
+ ],
+ [
+ "Erika Running Short-30-Green"
+ ],
+ [
+ "Erika Running Short-30-Purple"
+ ],
+ [
+ "Erika Running Short-30-Red"
+ ],
+ [
+ "Erika Running Short-31-Green"
+ ],
+ [
+ "Erika Running Short-31-Purple"
+ ],
+ [
+ "Erika Running Short-31-Red"
+ ],
+ [
+ "Erika Running Short-32-Green"
+ ],
+ [
+ "Erika Running Short-32-Purple"
+ ],
+ [
+ "Erika Running Short-32-Red"
+ ],
+ [
+ "Erika Running Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for all products in order_id 1?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE order_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email associated with order_id 2?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 17?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 17;",
+ "answer": [
+ "harrypotterfan1@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "harrypotterfan1@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the store with ID 1 and status 'complete'?",
+ "sql": "SELECT id, period, orders_count, total_qty_ordered, total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND order_status = 'complete';",
+ "answer": [
+ "128"
+ ],
+ "sql_execute_result": [
+ [
+ 814,
+ "2022-01-08",
+ 1,
+ "4.0000",
+ "219.0000"
+ ],
+ [
+ 815,
+ "2022-01-09",
+ 1,
+ "2.0000",
+ "77.4000"
+ ],
+ [
+ 817,
+ "2022-01-12",
+ 1,
+ "2.0000",
+ "136.9900"
+ ],
+ [
+ 818,
+ "2022-01-14",
+ 1,
+ "1.0000",
+ "60.0000"
+ ],
+ [
+ 819,
+ "2022-01-15",
+ 1,
+ "4.0000",
+ "156.0000"
+ ],
+ [
+ 821,
+ "2022-01-17",
+ 2,
+ "4.0000",
+ "171.9000"
+ ],
+ [
+ 823,
+ "2022-01-20",
+ 2,
+ "8.0000",
+ "301.6000"
+ ],
+ [
+ 825,
+ "2022-01-28",
+ 1,
+ "5.0000",
+ "292.4000"
+ ],
+ [
+ 827,
+ "2022-01-31",
+ 1,
+ "4.0000",
+ "176.6000"
+ ],
+ [
+ 830,
+ "2022-02-03",
+ 2,
+ "7.0000",
+ "333.2400"
+ ],
+ [
+ 831,
+ "2022-02-04",
+ 1,
+ "3.0000",
+ "120.2000"
+ ],
+ [
+ 832,
+ "2022-02-06",
+ 2,
+ "8.0000",
+ "298.6000"
+ ],
+ [
+ 833,
+ "2022-02-07",
+ 1,
+ "2.0000",
+ "132.0000"
+ ],
+ [
+ 834,
+ "2022-02-08",
+ 2,
+ "8.0000",
+ "389.4400"
+ ],
+ [
+ 835,
+ "2022-02-10",
+ 1,
+ "1.0000",
+ "34.0000"
+ ],
+ [
+ 838,
+ "2022-02-14",
+ 2,
+ "4.0000",
+ "240.0000"
+ ],
+ [
+ 840,
+ "2022-02-19",
+ 1,
+ "5.0000",
+ "183.2000"
+ ],
+ [
+ 841,
+ "2022-02-20",
+ 1,
+ "1.0000",
+ "28.0000"
+ ],
+ [
+ 842,
+ "2022-02-23",
+ 1,
+ "3.0000",
+ "132.0000"
+ ],
+ [
+ 844,
+ "2022-02-25",
+ 1,
+ "2.0000",
+ "127.0000"
+ ],
+ [
+ 845,
+ "2022-02-27",
+ 1,
+ "3.0000",
+ "108.0000"
+ ],
+ [
+ 846,
+ "2022-03-02",
+ 1,
+ "5.0000",
+ "215.0000"
+ ],
+ [
+ 847,
+ "2022-03-03",
+ 2,
+ "2.0000",
+ "116.0000"
+ ],
+ [
+ 849,
+ "2022-03-08",
+ 1,
+ "2.0000",
+ "108.0000"
+ ],
+ [
+ 850,
+ "2022-03-09",
+ 1,
+ "3.0000",
+ "143.8000"
+ ],
+ [
+ 853,
+ "2022-03-12",
+ 1,
+ "5.0000",
+ "162.0000"
+ ],
+ [
+ 854,
+ "2022-03-13",
+ 1,
+ "5.0000",
+ "192.7600"
+ ],
+ [
+ 855,
+ "2022-03-15",
+ 1,
+ "3.0000",
+ "156.0000"
+ ],
+ [
+ 856,
+ "2022-03-17",
+ 2,
+ "8.0000",
+ "310.4000"
+ ],
+ [
+ 859,
+ "2022-03-22",
+ 1,
+ "5.0000",
+ "229.8000"
+ ],
+ [
+ 862,
+ "2022-03-28",
+ 1,
+ "2.0000",
+ "56.0000"
+ ],
+ [
+ 864,
+ "2022-03-29",
+ 1,
+ "1.0000",
+ "37.0000"
+ ],
+ [
+ 866,
+ "2022-03-31",
+ 1,
+ "2.0000",
+ "115.0000"
+ ],
+ [
+ 869,
+ "2022-04-06",
+ 2,
+ "6.0000",
+ "261.0000"
+ ],
+ [
+ 871,
+ "2022-04-10",
+ 1,
+ "4.0000",
+ "152.0000"
+ ],
+ [
+ 872,
+ "2022-04-13",
+ 1,
+ "3.0000",
+ "153.0000"
+ ],
+ [
+ 874,
+ "2022-04-21",
+ 2,
+ "8.0000",
+ "343.1600"
+ ],
+ [
+ 876,
+ "2022-04-23",
+ 1,
+ "4.0000",
+ "180.8000"
+ ],
+ [
+ 881,
+ "2022-05-02",
+ 2,
+ "8.0000",
+ "375.0000"
+ ],
+ [
+ 883,
+ "2022-05-12",
+ 1,
+ "4.0000",
+ "177.0000"
+ ],
+ [
+ 885,
+ "2022-05-15",
+ 1,
+ "2.0000",
+ "67.0000"
+ ],
+ [
+ 886,
+ "2022-05-16",
+ 1,
+ "4.0000",
+ "188.0000"
+ ],
+ [
+ 887,
+ "2022-05-20",
+ 1,
+ "2.0000",
+ "133.0000"
+ ],
+ [
+ 890,
+ "2022-05-29",
+ 2,
+ "5.0000",
+ "253.6000"
+ ],
+ [
+ 893,
+ "2022-06-01",
+ 1,
+ "1.0000",
+ "60.0000"
+ ],
+ [
+ 895,
+ "2022-06-02",
+ 2,
+ "6.0000",
+ "185.4000"
+ ],
+ [
+ 897,
+ "2022-06-05",
+ 1,
+ "1.0000",
+ "38.6000"
+ ],
+ [
+ 899,
+ "2022-06-07",
+ 1,
+ "1.0000",
+ "65.0000"
+ ],
+ [
+ 900,
+ "2022-06-11",
+ 1,
+ "4.0000",
+ "163.0000"
+ ],
+ [
+ 903,
+ "2022-06-14",
+ 1,
+ "3.0000",
+ "90.0000"
+ ],
+ [
+ 904,
+ "2022-06-18",
+ 1,
+ "2.0000",
+ "82.6000"
+ ],
+ [
+ 905,
+ "2022-06-19",
+ 2,
+ "4.0000",
+ "129.8000"
+ ],
+ [
+ 907,
+ "2022-06-21",
+ 1,
+ "5.0000",
+ "232.8400"
+ ],
+ [
+ 909,
+ "2022-06-23",
+ 1,
+ "3.0000",
+ "131.1000"
+ ],
+ [
+ 912,
+ "2022-06-26",
+ 1,
+ "4.0000",
+ "212.4000"
+ ],
+ [
+ 915,
+ "2022-07-01",
+ 1,
+ "3.0000",
+ "168.8000"
+ ],
+ [
+ 917,
+ "2022-07-02",
+ 1,
+ "2.0000",
+ "101.2500"
+ ],
+ [
+ 918,
+ "2022-07-03",
+ 1,
+ "1.0000",
+ "25.0000"
+ ],
+ [
+ 920,
+ "2022-07-06",
+ 2,
+ "7.0000",
+ "291.7200"
+ ],
+ [
+ 921,
+ "2022-07-09",
+ 1,
+ "4.0000",
+ "155.0000"
+ ],
+ [
+ 922,
+ "2022-07-12",
+ 1,
+ "5.0000",
+ "206.1200"
+ ],
+ [
+ 924,
+ "2022-07-13",
+ 1,
+ "2.0000",
+ "158.2500"
+ ],
+ [
+ 926,
+ "2022-07-20",
+ 1,
+ "4.0000",
+ "172.0000"
+ ],
+ [
+ 931,
+ "2022-08-12",
+ 1,
+ "2.0000",
+ "145.0000"
+ ],
+ [
+ 933,
+ "2022-08-15",
+ 1,
+ "2.0000",
+ "127.0000"
+ ],
+ [
+ 934,
+ "2022-08-17",
+ 2,
+ "3.0000",
+ "150.0000"
+ ],
+ [
+ 935,
+ "2022-08-20",
+ 1,
+ "2.0000",
+ "97.0000"
+ ],
+ [
+ 938,
+ "2022-08-23",
+ 1,
+ "2.0000",
+ "76.4000"
+ ],
+ [
+ 942,
+ "2022-08-28",
+ 2,
+ "7.0000",
+ "359.0500"
+ ],
+ [
+ 945,
+ "2022-09-02",
+ 2,
+ "6.0000",
+ "294.2000"
+ ],
+ [
+ 946,
+ "2022-09-03",
+ 1,
+ "2.0000",
+ "109.0000"
+ ],
+ [
+ 949,
+ "2022-09-12",
+ 1,
+ "4.0000",
+ "191.5000"
+ ],
+ [
+ 951,
+ "2022-09-19",
+ 1,
+ "4.0000",
+ "124.0000"
+ ],
+ [
+ 954,
+ "2022-09-22",
+ 1,
+ "1.0000",
+ "47.0000"
+ ],
+ [
+ 955,
+ "2022-09-23",
+ 1,
+ "4.0000",
+ "210.0000"
+ ],
+ [
+ 956,
+ "2022-09-24",
+ 1,
+ "1.0000",
+ "34.0000"
+ ],
+ [
+ 957,
+ "2022-09-29",
+ 1,
+ "4.0000",
+ "153.0000"
+ ],
+ [
+ 958,
+ "2022-09-30",
+ 1,
+ "5.0000",
+ "199.0000"
+ ],
+ [
+ 959,
+ "2022-10-01",
+ 1,
+ "2.0000",
+ "87.0000"
+ ],
+ [
+ 963,
+ "2022-10-22",
+ 1,
+ "3.0000",
+ "123.8000"
+ ],
+ [
+ 964,
+ "2022-10-26",
+ 1,
+ "3.0000",
+ "112.0000"
+ ],
+ [
+ 967,
+ "2022-10-29",
+ 1,
+ "3.0000",
+ "122.0000"
+ ],
+ [
+ 968,
+ "2022-11-03",
+ 1,
+ "5.0000",
+ "198.6400"
+ ],
+ [
+ 970,
+ "2022-11-07",
+ 1,
+ "1.0000",
+ "21.0000"
+ ],
+ [
+ 973,
+ "2022-11-10",
+ 2,
+ "4.0000",
+ "155.0000"
+ ],
+ [
+ 976,
+ "2022-11-20",
+ 1,
+ "5.0000",
+ "176.1000"
+ ],
+ [
+ 982,
+ "2022-12-01",
+ 1,
+ "3.0000",
+ "121.0000"
+ ],
+ [
+ 983,
+ "2022-12-04",
+ 1,
+ "5.0000",
+ "191.0000"
+ ],
+ [
+ 985,
+ "2022-12-06",
+ 2,
+ "7.0000",
+ "333.0000"
+ ],
+ [
+ 986,
+ "2022-12-11",
+ 2,
+ "8.0000",
+ "392.8400"
+ ],
+ [
+ 988,
+ "2022-12-16",
+ 1,
+ "3.0000",
+ "125.0000"
+ ],
+ [
+ 989,
+ "2022-12-17",
+ 1,
+ "1.0000",
+ "32.0000"
+ ],
+ [
+ 990,
+ "2022-12-18",
+ 1,
+ "5.0000",
+ "187.4000"
+ ],
+ [
+ 991,
+ "2022-12-24",
+ 1,
+ "5.0000",
+ "230.1200"
+ ],
+ [
+ 995,
+ "2023-01-02",
+ 1,
+ "4.0000",
+ "196.2000"
+ ],
+ [
+ 996,
+ "2023-01-03",
+ 1,
+ "4.0000",
+ "202.3900"
+ ],
+ [
+ 998,
+ "2023-01-06",
+ 1,
+ "5.0000",
+ "215.0000"
+ ],
+ [
+ 1000,
+ "2023-01-09",
+ 2,
+ "7.0000",
+ "238.4000"
+ ],
+ [
+ 1002,
+ "2023-01-12",
+ 1,
+ "5.0000",
+ "226.6000"
+ ],
+ [
+ 1003,
+ "2023-01-13",
+ 1,
+ "5.0000",
+ "204.0400"
+ ],
+ [
+ 1004,
+ "2023-01-16",
+ 1,
+ "5.0000",
+ "209.4000"
+ ],
+ [
+ 1005,
+ "2023-01-17",
+ 1,
+ "4.0000",
+ "188.0000"
+ ],
+ [
+ 1007,
+ "2023-01-23",
+ 1,
+ "3.0000",
+ "121.0000"
+ ],
+ [
+ 1009,
+ "2023-01-24",
+ 1,
+ "1.0000",
+ "43.4000"
+ ],
+ [
+ 1012,
+ "2023-01-28",
+ 1,
+ "4.0000",
+ "215.8000"
+ ],
+ [
+ 1015,
+ "2023-02-01",
+ 1,
+ "1.0000",
+ "29.0000"
+ ],
+ [
+ 1018,
+ "2023-02-03",
+ 1,
+ "3.0000",
+ "106.0000"
+ ],
+ [
+ 1019,
+ "2023-02-07",
+ 1,
+ "1.0000",
+ "29.0000"
+ ],
+ [
+ 1021,
+ "2023-02-10",
+ 1,
+ "2.0000",
+ "107.0000"
+ ],
+ [
+ 1022,
+ "2023-02-11",
+ 1,
+ "3.0000",
+ "179.0000"
+ ],
+ [
+ 1025,
+ "2023-02-16",
+ 1,
+ "3.0000",
+ "181.0000"
+ ],
+ [
+ 1030,
+ "2023-02-25",
+ 1,
+ "3.0000",
+ "118.0000"
+ ],
+ [
+ 1034,
+ "2023-03-10",
+ 1,
+ "3.0000",
+ "106.0000"
+ ],
+ [
+ 1038,
+ "2023-03-20",
+ 1,
+ "4.0000",
+ "148.4000"
+ ],
+ [
+ 1040,
+ "2023-03-25",
+ 1,
+ "2.0000",
+ "57.0000"
+ ],
+ [
+ 1043,
+ "2023-03-31",
+ 2,
+ "6.0000",
+ "249.2000"
+ ],
+ [
+ 1045,
+ "2023-04-02",
+ 1,
+ "2.0000",
+ "109.0000"
+ ],
+ [
+ 1046,
+ "2023-04-03",
+ 1,
+ "3.0000",
+ "148.0000"
+ ],
+ [
+ 1048,
+ "2023-04-05",
+ 3,
+ "10.0000",
+ "474.4500"
+ ],
+ [
+ 1054,
+ "2023-04-17",
+ 1,
+ "3.0000",
+ "138.6000"
+ ],
+ [
+ 1057,
+ "2023-04-27",
+ 1,
+ "5.0000",
+ "202.6000"
+ ],
+ [
+ 1058,
+ "2023-04-28",
+ 1,
+ "2.0000",
+ "91.0000"
+ ],
+ [
+ 1059,
+ "2023-04-30",
+ 1,
+ "3.0000",
+ "101.0000"
+ ],
+ [
+ 1060,
+ "2023-05-04",
+ 1,
+ "3.0000",
+ "125.0000"
+ ],
+ [
+ 1061,
+ "2023-05-05",
+ 1,
+ "2.0000",
+ "88.4000"
+ ],
+ [
+ 1063,
+ "2023-05-07",
+ 1,
+ "4.0000",
+ "159.4000"
+ ],
+ [
+ 1065,
+ "2023-05-14",
+ 1,
+ "1.0000",
+ "89.0000"
+ ],
+ [
+ 1067,
+ "2023-05-19",
+ 1,
+ "2.0000",
+ "93.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the category name for category with entity ID 18.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 18 AND store_id = 0;",
+ "answer": [
+ "Pants",
+ "pants-men",
+ "men/bottoms-men/pants-men"
+ ],
+ "sql_execute_result": [
+ [
+ "Pants"
+ ],
+ [
+ "pants-men"
+ ],
+ [
+ "men/bottoms-men/pants-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the period '2022-11-22' with status 'canceled'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-11-22' AND order_status = 'canceled';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ],
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the email 'bob123@hotmail.com'.",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE email = 'bob123@hotmail.com';",
+ "answer": [
+ "Bob",
+ "Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob",
+ "Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of results for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region ID 13.",
+ "sql": "SELECT region FROM customer_address_entity WHERE region_id = 13 LIMIT 1;",
+ "answer": [
+ "Colorado"
+ ],
+ "sql_execute_result": [
+ [
+ "Colorado"
+ ]
+ ]
+ },
+ {
+ "question": "Get the total income amount for orders on '2022-02-19' with status 'complete'.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-02-19' AND order_status = 'complete';",
+ "answer": [
+ "183.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "183.2000"
+ ],
+ [
+ "183.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order with payment entity ID 100?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 100;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 22 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 22;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the credit memo with entity ID 1?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Find the frontend label for the attribute with ID 87.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 87;",
+ "answer": [
+ "Base"
+ ],
+ "sql_execute_result": [
+ [
+ "Base"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review percentage for the vote with ID 192?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 192;",
+ "answer": [
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ 60
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity ID 9?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 9;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the sales order payment with entity ID 272?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 272;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered amount for the order payment with entity ID 167?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 167;",
+ "answer": [
+ "38.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "38.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the backend type for the attribute with ID 131.",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_id = 131;",
+ "answer": [
+ "int"
+ ],
+ "sql_execute_result": [
+ [
+ "int"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping and handling amount for the credit memo with entity ID 1?",
+ "sql": "SELECT shipping_and_handling FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 176?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 176 AND attribute_id = 77;",
+ "answer": [
+ "69.00"
+ ],
+ "sql_execute_result": [
+ [
+ "69.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review rating for product with ID 1556.",
+ "sql": "SELECT value FROM rating_option_vote WHERE entity_pk_value = 1556 AND review_id = 281;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-12-17?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-12-17' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 38?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 139 AND store_id = 0;",
+ "answer": [
+ "Henley"
+ ],
+ "sql_execute_result": [
+ [
+ "Henley"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders on 2023-01-23.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-01-23';",
+ "answer": [
+ "139.0000",
+ "121.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "139.0000"
+ ],
+ [
+ "121.0000"
+ ],
+ [
+ "139.0000"
+ ],
+ [
+ "121.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percentage rating given in the review with ID 61?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 61;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2023-02-16?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-02-16' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 21?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 84 AND store_id = 0;",
+ "answer": [
+ "Unisex"
+ ],
+ "sql_execute_result": [
+ [
+ "Unisex"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for orders on 2022-11-07?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-11-07';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for orders on 2022-03-11.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-03-11';",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ],
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What are the product descriptions for products with entity IDs 1714 and 1057?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id IN (1714, 1057);",
+ "answer": [
+ "Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.
\n• Teal with purple stiching.
• Hoodie pullover.
• Snug fit.
",
+ "A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!
\n• Pink stripped tank with side rouching.
• Pre-shrunk.
• Garment dyed.
• 92% Organic Cotton/8% Lycra.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.
\n• Teal with purple stiching.
• Hoodie pullover.
• Snug fit.
"
+ ],
+ [
+ "A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!
\n• Pink stripped tank with side rouching.
• Pre-shrunk.
• Garment dyed.
• 92% Organic Cotton/8% Lycra.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for product with ID 16.",
+ "sql": "SELECT review_id, created_at, status_id FROM review WHERE entity_pk_value = 16;",
+ "answer": [
+ "Review ID: 155, Created At: 2023-04-19 16:15:14, Status ID: 1",
+ "Review ID: 156, Created At: 2023-04-19 16:15:14, Status ID: 1"
+ ],
+ "sql_execute_result": [
+ [
+ 155,
+ "2023-04-19 16:15:14",
+ 1
+ ],
+ [
+ 156,
+ "2023-04-19 16:15:14",
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for category ID 17?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 17 AND attribute_id = 45;",
+ "answer": [
+ "Tanks"
+ ],
+ "sql_execute_result": [
+ [
+ "Tanks"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with payment entity ID 244?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 244;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value description for option ID 144?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 144;",
+ "answer": [
+ "Fleece"
+ ],
+ "sql_execute_result": [
+ [
+ "Fleece"
+ ]
+ ]
+ },
+ {
+ "question": "How many unique entity IDs of products were reviewed on 2023-04-19?",
+ "sql": "SELECT entity_pk_value FROM review WHERE created_at = '2023-04-19 16:15:14';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 670
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 676
+ ],
+ [
+ 676
+ ],
+ [
+ 676
+ ],
+ [
+ 7
+ ],
+ [
+ 7
+ ],
+ [
+ 7
+ ],
+ [
+ 20
+ ],
+ [
+ 20
+ ],
+ [
+ 20
+ ],
+ [
+ 18
+ ],
+ [
+ 18
+ ],
+ [
+ 23
+ ],
+ [
+ 23
+ ],
+ [
+ 23
+ ],
+ [
+ 17
+ ],
+ [
+ 17
+ ],
+ [
+ 17
+ ],
+ [
+ 19
+ ],
+ [
+ 19
+ ],
+ [
+ 19
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 16
+ ],
+ [
+ 8
+ ],
+ [
+ 8
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 9
+ ],
+ [
+ 12
+ ],
+ [
+ 12
+ ],
+ [
+ 14
+ ],
+ [
+ 14
+ ],
+ [
+ 14
+ ],
+ [
+ 10
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 11
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "What are the shipping amounts for orders with payment IDs 208 and 205?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id IN (208, 205);",
+ "answer": [
+ "15.0000",
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ],
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value for attribute ID 75 for product with entity ID 1747.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1747 AND attribute_id = 75;",
+ "answer": [
+ "The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.
\n• Blue heather rouched tank top.
• Camisole tank top.
• Banding and shirring details.
• Body hugging fit.
• Contrast topstitch.
• Interior shelf bra with shapewear technology.
• 65% Polyester 35% Cotton.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.
\n• Blue heather rouched tank top.
• Camisole tank top.
• Banding and shirring details.
• Body hugging fit.
• Contrast topstitch.
• Interior shelf bra with shapewear technology.
• 65% Polyester 35% Cotton.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category path for category ID 34?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 34 AND attribute_id = 120;",
+ "answer": [
+ "collections/erin-recommends"
+ ],
+ "sql_execute_result": [
+ [
+ "collections/erin-recommends"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the product names for categories with entity IDs 3 and 25.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id IN (3, 25) AND attribute_id = 120;",
+ "answer": [
+ "gear",
+ "women/tops-women/tees-women"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ],
+ [
+ "women/tops-women/tees-women"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full address for the shipment with increment ID '000000001'?",
+ "sql": "SELECT street, city, region, postcode, country_id FROM sales_order_address WHERE entity_id = (SELECT shipping_address_id FROM sales_shipment WHERE increment_id = '000000001');",
+ "answer": [
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "Michigan",
+ "49628-7978",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "Michigan",
+ "49628-7978",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped in the shipment with ID 3?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the shipment with ID 3?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = (SELECT shipping_address_id FROM sales_shipment WHERE entity_id = 3);",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value of the attribute with ID 82 for the product with entity ID 862.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 82 AND entity_id = 862;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the option with ID 151?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 151;",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for the product with entity ID 341?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 341 AND attribute_id = 77;",
+ "answer": [
+ "65.00"
+ ],
+ "sql_execute_result": [
+ [
+ "65.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the sequence value for the latest invoice.",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the weight value of the product with entity ID 972?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 972 AND attribute_id = 77;",
+ "answer": [
+ "35.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "35.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions were found for the address with email 'michael.nguyen@yahoo.com'?",
+ "sql": "SELECT region FROM sales_order_address WHERE email = 'michael.nguyen@yahoo.com';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer ID for the shipment with increment ID '000000002'?",
+ "sql": "SELECT customer_id FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with SKU 'MSH01-32-Red'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MSH01-32-Red');",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who placed order with increment ID '000000187'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000187';",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 4?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 4;",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 14
+ ]
+ ]
+ },
+ {
+ "question": "How many products are within the category '28'?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 28;",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders created on '2023-04-19'?",
+ "sql": "SELECT SUM(orders_count) FROM sales_order_aggregated_created WHERE period = '2023-04-19';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 17?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 17;",
+ "answer": [
+ "harrypotterfan1@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "harrypotterfan1@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with SKU 'WS03-XS-Red' in the invoice.",
+ "sql": "SELECT qty FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-07-13?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-07-13' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on 2022-04-06?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-04-06' AND order_status = 'complete';",
+ "answer": [
+ "261.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "261.0000"
+ ],
+ [
+ "261.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with entity ID 2?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with email 'jane.doe@gmail.com'?",
+ "sql": "SELECT firstname FROM customer_entity WHERE email = 'jane.doe@gmail.com';",
+ "answer": [
+ "Jane"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the option with ID 20.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 20;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on 2022-02-23?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-02-23' AND order_status = 'complete';",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ],
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of search results for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "How many unique customer emails are associated with the billing address at '456 Michigan Ave, Chicago, Illinois'?",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '456 Michigan Ave' AND city = 'Chicago';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base grand total of the credit memo with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer name is associated with the email 'roni_cost@example.com' in the credit memo grid?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description text for the product ID 1015?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1015 AND attribute_id = 75;",
+ "answer": [
+ "The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.
\n• Royal blue cotton shorts.
• Built-in mesh brief.
• 87% Spandex 13% Lycra.
• Adjustable drawstring.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.
\n• Royal blue cotton shorts.
• Built-in mesh brief.
• 87% Spandex 13% Lycra.
• Adjustable drawstring.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many individuals have the shipping address '567 Ocean Drive, Miami, Florida'?",
+ "sql": "SELECT firstname FROM sales_order_address WHERE street = '567 Ocean Drive' AND city = 'Miami';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score for the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are used in product listings?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE used_in_product_listing = 1;",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ 73
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 97
+ ],
+ [
+ 107
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 121
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 144
+ ]
+ ]
+ },
+ {
+ "question": "How many product descriptions mention 'Chafe-resistant flatlock seams'?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE value LIKE '%Chafe-resistant flatlock seams%';",
+ "answer": [
+ "25"
+ ],
+ "sql_execute_result": [
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle
\n• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.
\n• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of search results for the query with text 'MT02-M-Gray'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with parent ID 255?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 255;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer group code for the group with ID 2.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "141"
+ ],
+ "sql_execute_result": [
+ [
+ "Crown Summit Backpack"
+ ],
+ [
+ "Impulse Duffle"
+ ],
+ [
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Dual Handle Cardio Ball"
+ ],
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit "
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Aim Analog Watch"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Bruno Compete Hoodie-L-Black"
+ ],
+ [
+ "Frankie Sweatshirt-XS-Green"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Black"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Blue"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Purple"
+ ],
+ [
+ "Stark Fundamental Hoodie-M-Blue"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue"
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Red"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-S-Green"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XL-Black"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Black"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Purple"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ "Aero Daily Fitness Tee-S-Black"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-L-Green"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black"
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red"
+ ],
+ [
+ "Primo Endurance Tank-M-Red"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Tiberius Gym Tank-M-Yellow"
+ ],
+ [
+ "Atlas Fitness Tank-L-Blue"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Gray"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Purple"
+ ],
+ [
+ "Geo Insulated Jogging Pant-34-Green"
+ ],
+ [
+ "Supernova Sport Pant-32-Black"
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange"
+ ],
+ [
+ "Thorpe Track Pant-32-Blue"
+ ],
+ [
+ "Thorpe Track Pant-32-Purple"
+ ],
+ [
+ "Zeppelin Yoga Pant-34-Red"
+ ],
+ [
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Aether Gym Pant -34-Green"
+ ],
+ [
+ "Aether Gym Pant -36-Brown"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray"
+ ],
+ [
+ "Lono Yoga Short-36-Gray"
+ ],
+ [
+ "Rapha Sports Short-36-Blue"
+ ],
+ [
+ "Troy Yoga Short-32-Black"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ "Arcadio Gym Short-36-Red"
+ ],
+ [
+ "Mona Pullover Hoodlie-S-Orange"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Purple"
+ ],
+ [
+ "Autumn Pullie-XS-Red"
+ ],
+ [
+ "Autumn Pullie-S-Green"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Ingrid Running Jacket-XS-White"
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Riona Full Zip Jacket-XL-Red"
+ ],
+ [
+ "Inez Full Zip Jacket-XL-Red"
+ ],
+ [
+ "Jade Yoga Jacket-XL-Blue"
+ ],
+ [
+ "Nadia Elements Shell-XS-Yellow"
+ ],
+ [
+ "Nadia Elements Shell-S-Black"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Black"
+ ],
+ [
+ "Juno Jacket-XS-Blue"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green"
+ ],
+ [
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Black"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-XL-Blue"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ "Celeste Sports Bra-L-Red"
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple"
+ ],
+ [
+ "Bella Tank-XL-Black"
+ ],
+ [
+ "Zoe Tank-XS-Green"
+ ],
+ [
+ "Zoe Tank-S-Yellow"
+ ],
+ [
+ "Zoe Tank-L-Orange"
+ ],
+ [
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Blue"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue"
+ ],
+ [
+ "Diana Tights-28-Blue"
+ ],
+ [
+ "Aeon Capri-28-Black"
+ ],
+ [
+ "Aeon Capri-29-Blue"
+ ],
+ [
+ "Sylvia Capri-28-Red"
+ ],
+ [
+ "Fiona Fitness Short-28-Green"
+ ],
+ [
+ "Fiona Fitness Short-28-Red"
+ ],
+ [
+ "Fiona Fitness Short-30-Black"
+ ],
+ [
+ "Fiona Fitness Short-31-Black"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow"
+ ],
+ [
+ "Maxima Drawstring Short-32-Gray"
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Orange"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ],
+ [
+ "Artemis Running Short-30-Black"
+ ],
+ [
+ "Angel Light Running Short-29-Orange"
+ ],
+ [
+ "Angel Light Running Short-29-Purple"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ [
+ "Echo Fit Compression Short-29-Blue"
+ ],
+ [
+ "Ina Compression Short-29-Orange"
+ ],
+ [
+ "Ina Compression Short-29-Red"
+ ],
+ [
+ "Erika Running Short-32-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with ID 908 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 908;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the sales order payment with entity ID 101?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 101;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in total for the bestseller 'Impulse Duffle'?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Impulse Duffle';",
+ "answer": [
+ "8.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the customer group labeled 'Retailer'?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipment creation date for the shipment with entity ID 2.",
+ "sql": "SELECT created_at FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order number 000000007?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000007';",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer 'Jane Doe'?",
+ "sql": "SELECT entity_id, increment_id FROM sales_order WHERE customer_firstname = 'Jane' AND customer_lastname = 'Doe';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 31,
+ "000000031"
+ ],
+ [
+ 47,
+ "000000047"
+ ],
+ [
+ 84,
+ "000000084"
+ ],
+ [
+ 116,
+ "000000116"
+ ],
+ [
+ 153,
+ "000000153"
+ ],
+ [
+ 190,
+ "000000190"
+ ],
+ [
+ 197,
+ "000000197"
+ ],
+ [
+ 220,
+ "000000220"
+ ],
+ [
+ 225,
+ "000000225"
+ ],
+ [
+ 245,
+ "000000245"
+ ],
+ [
+ 259,
+ "000000259"
+ ],
+ [
+ 302,
+ "000000302"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 455?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 455;",
+ "answer": [
+ "MS05-M-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "MS05-M-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items ordered in the order with increment ID '000000190'.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000190';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name associated with store group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the order placed by customer 'Sophie Taylor'.",
+ "sql": "SELECT status FROM sales_order WHERE customer_firstname = 'Sophie' AND customer_lastname = 'Taylor';",
+ "answer": [
+ "canceled",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount due for the order with increment ID '000000007'?",
+ "sql": "SELECT total_due FROM sales_order WHERE increment_id = '000000007';",
+ "answer": [
+ "108.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "108.2500"
+ ]
+ ]
+ },
+ {
+ "question": "Which shipping method was used for the order with entity ID 161?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 161;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for attribute ID 116?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 116;",
+ "answer": [
+ "custom_layout"
+ ],
+ "sql_execute_result": [
+ [
+ "custom_layout"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query for 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "List all search queries that have more than 20 results.",
+ "sql": "SELECT query_text FROM search_query WHERE num_results > 20;",
+ "answer": [
+ "MT02-M-Gray",
+ "Antonia Racer Tank",
+ "tanks"
+ ],
+ "sql_execute_result": [
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "Antonia Racer Tank"
+ ],
+ [
+ "tanks"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for the group with ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the category with entity ID 17.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 17 AND attribute_id = 119;",
+ "answer": [
+ "tanks-men"
+ ],
+ "sql_execute_result": [
+ [
+ "tanks-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent order sequence value?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Which search query has the highest popularity?",
+ "sql": "SELECT query_text FROM search_query ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are found for the search query 'nike'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Wholesale' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many categories are associated with the attribute ID 119?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 119;",
+ "answer": [
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ],
+ [
+ "bags"
+ ],
+ [
+ "fitness-equipment"
+ ],
+ [
+ "watches"
+ ],
+ [
+ "collections"
+ ],
+ [
+ "yoga-new"
+ ],
+ [
+ "training"
+ ],
+ [
+ "training-video"
+ ],
+ [
+ "men"
+ ],
+ [
+ "tops-men"
+ ],
+ [
+ "bottoms-men"
+ ],
+ [
+ "jackets-men"
+ ],
+ [
+ "hoodies-and-sweatshirts-men"
+ ],
+ [
+ "tees-men"
+ ],
+ [
+ "tanks-men"
+ ],
+ [
+ "pants-men"
+ ],
+ [
+ "shorts-men"
+ ],
+ [
+ "women"
+ ],
+ [
+ "tops-women"
+ ],
+ [
+ "bottoms-women"
+ ],
+ [
+ "jackets-women"
+ ],
+ [
+ "hoodies-and-sweatshirts-women"
+ ],
+ [
+ "tees-women"
+ ],
+ [
+ "tanks-women"
+ ],
+ [
+ "pants-women"
+ ],
+ [
+ "shorts-women"
+ ],
+ [
+ "promotions"
+ ],
+ [
+ "women-sale"
+ ],
+ [
+ "men-sale"
+ ],
+ [
+ "pants-all"
+ ],
+ [
+ "tees-all"
+ ],
+ [
+ "erin-recommends"
+ ],
+ [
+ "performance-fabrics"
+ ],
+ [
+ "eco-friendly"
+ ],
+ [
+ "sale"
+ ],
+ [
+ "what-is-new"
+ ],
+ [
+ "performance-new"
+ ],
+ [
+ "eco-new"
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of sequence values for invoices?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity_id 673?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 673 AND attribute_id = 75;",
+ "answer": [
+ "When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.
\n• Blue heather tank with gray pocket.
• Contrast sides and back inserts.
• Self-fabric binding at neck and armholes.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.
\n• Blue heather tank with gray pocket.
• Contrast sides and back inserts.
• Self-fabric binding at neck and armholes.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address details for the order with parent_id 128.",
+ "sql": "SELECT firstname, lastname, street, city, region, postcode, country_id, telephone FROM sales_order_address WHERE parent_id = 128 AND address_type = 'billing';",
+ "answer": [
+ "Ava",
+ "Brown",
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265",
+ "US",
+ "3105555555"
+ ],
+ "sql_execute_result": [
+ [
+ "Ava",
+ "Brown",
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265",
+ "US",
+ "3105555555"
+ ]
+ ]
+ },
+ {
+ "question": "Which rating codes are active for entity_id 1?",
+ "sql": "SELECT rating_code FROM rating WHERE entity_id = 1 AND is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group_id 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for invoices in store_id 0?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 0;",
+ "answer": [
+ "sequence_invoice_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_0"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing address with entity_id 236?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 236;",
+ "answer": [
+ "brian.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "brian.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region associated with region_id 18?",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 18 LIMIT 1;",
+ "answer": [
+ "Florida"
+ ],
+ "sql_execute_result": [
+ [
+ "Florida"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store code for group_id 0.",
+ "sql": "SELECT code FROM store_group WHERE group_id = 0;",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name for the address with entity_id 208?",
+ "sql": "SELECT firstname, lastname FROM sales_order_address WHERE entity_id = 208;",
+ "answer": [
+ "John Lee"
+ ],
+ "sql_execute_result": [
+ [
+ "John",
+ "Lee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 3?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 3;",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of products assigned to category ID 2.",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 1181
+ ]
+ ]
+ },
+ {
+ "question": "What is the group code for the customer group with ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the website with ID 1.",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does category ID 21 have?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_entity WHERE parent_id = 21;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the website code for the website with ID 0?",
+ "sql": "SELECT code FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for the customer named Jessica Nguyen.",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Jessica' AND lastname = 'Nguyen';",
+ "answer": [
+ "jessica.nguyen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.nguyen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product ID 998 in category ID 2?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 998 AND category_id = 2;",
+ "answer": [
+ "-364"
+ ],
+ "sql_execute_result": [
+ [
+ -364
+ ]
+ ]
+ },
+ {
+ "question": "Which category has the path '1/2/20/21/25'?",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE path = '1/2/20/21/25';",
+ "answer": [
+ "25"
+ ],
+ "sql_execute_result": [
+ [
+ 25
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 43?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 43;",
+ "answer": [
+ "anna.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "anna.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the best-selling product on January 8, 2022.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-01-08' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Ina Compression Short-29-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Ina Compression Short-29-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for Malaysia?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'MY';",
+ "answer": [
+ "MYS"
+ ],
+ "sql_execute_result": [
+ [
+ "MYS"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with code 'display_mode'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'display_mode';",
+ "answer": [
+ "Display Mode"
+ ],
+ "sql_execute_result": [
+ [
+ "Display Mode"
+ ]
+ ]
+ },
+ {
+ "question": "Which rating option has the highest value?",
+ "sql": "SELECT MAX(value) FROM rating_option;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of 'Neve Studio Dance Jacket-M-Black' on May 28, 2023?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Neve Studio Dance Jacket-M-Black' AND period = '2023-05-28';",
+ "answer": [
+ "69.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "69.0000"
+ ],
+ [
+ "69.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the rating code for the rating with ID 4.",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the attribute 'features_bags' is user-defined.",
+ "sql": "SELECT is_user_defined FROM eav_attribute WHERE attribute_code = 'features_bags';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with code '3'?",
+ "sql": "SELECT position FROM rating_option WHERE code = '3';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 3
+ ],
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Portia Capri-29-Green' on August 28, 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Portia Capri-29-Green' AND period = '2022-08-28';",
+ "answer": [
+ "2",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type of the attribute with code 'filter_price_range'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'filter_price_range';",
+ "answer": [
+ "decimal"
+ ],
+ "sql_execute_result": [
+ [
+ "decimal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups along with their codes.",
+ "sql": "SELECT customer_group_id, customer_group_code FROM customer_group;",
+ "answer": [
+ "0: NOT LOGGED IN",
+ "1: General",
+ "2: Wholesale",
+ "3: Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ 0,
+ "NOT LOGGED IN"
+ ],
+ [
+ 1,
+ "General"
+ ],
+ [
+ 2,
+ "Wholesale"
+ ],
+ [
+ 3,
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status and state of orders that are visible on the front.",
+ "sql": "SELECT status, state FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled - canceled",
+ "closed - closed",
+ "complete - complete",
+ "fraud - payment_review",
+ "fraud - processing",
+ "holded - holded",
+ "payment_review - payment_review",
+ "pending - new",
+ "processing - processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled",
+ "canceled"
+ ],
+ [
+ "closed",
+ "closed"
+ ],
+ [
+ "complete",
+ "complete"
+ ],
+ [
+ "fraud",
+ "payment_review"
+ ],
+ [
+ "fraud",
+ "processing"
+ ],
+ [
+ "holded",
+ "holded"
+ ],
+ [
+ "payment_review",
+ "payment_review"
+ ],
+ [
+ "pending",
+ "new"
+ ],
+ [
+ "processing",
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are visible, filterable, and used for promo rules?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE is_visible = 1 AND is_filterable = 1 AND is_used_for_promo_rules = 1;",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 93
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for option ID 137?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 137;",
+ "answer": [
+ "Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Find all order statuses that are default.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE is_default = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "holded",
+ "payment_review",
+ "pending",
+ "pending_payment",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "pending_payment"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute option corresponds to the option ID 191?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 191;",
+ "answer": [
+ "Square Neck"
+ ],
+ "sql_execute_result": [
+ [
+ "Square Neck"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the Wholesale customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many attributes are global but not visible?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE is_global = 1 AND is_visible = 0;",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 91
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 125
+ ],
+ [
+ 128
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of results for the search query 'Joust Bag'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with ID 153?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 153;",
+ "answer": [
+ "Organic Cotton"
+ ],
+ "sql_execute_result": [
+ [
+ "Organic Cotton"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for the attribute with ID 30?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 30;",
+ "answer": [
+ "country_id"
+ ],
+ "sql_execute_result": [
+ [
+ "country_id"
+ ]
+ ]
+ },
+ {
+ "question": "What was the order status for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the sales invoice item with entity ID 2?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many times has the search query 'hollister' been searched?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name of the sales invoice item with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price including tax for the sales invoice item with order item ID 2?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE order_item_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the search query 'nike'.",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email associated with the credit memo with billing name 'Veronica Costello'?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE billing_name = 'Veronica Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Josie Yoga Jacket-XS-Blue' in the bestsellers aggregated yearly report?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Josie Yoga Jacket-XS-Blue';",
+ "answer": [
+ "76",
+ "141"
+ ],
+ "sql_execute_result": [
+ [
+ 76
+ ],
+ [
+ 141
+ ]
+ ]
+ },
+ {
+ "question": "Find the approval status code of reviews.",
+ "sql": "SELECT status_code FROM review_status;",
+ "answer": [
+ "Approved",
+ "Pending",
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ],
+ [
+ "Pending"
+ ],
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for 'Layla Tee-M-Green' in the bestsellers aggregated yearly report?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Layla Tee-M-Green';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percent value of the vote for the product with ID 1060?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE entity_pk_value = 1060;",
+ "answer": [
+ "100",
+ "20",
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ],
+ [
+ 20
+ ],
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the order with the highest sequence in sequence_order_1?",
+ "sql": "SELECT MAX(sequence_value) AS sequence_value FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with ID 1436 in the bestsellers aggregated yearly data.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1436;",
+ "answer": [
+ "Layla Tee-M-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Layla Tee-M-Green"
+ ],
+ [
+ "Layla Tee-M-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 519?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 519;",
+ "answer": [
+ "The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.
\n• Crew neckline.
• Semi-fitted.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.
\n• Crew neckline.
• Semi-fitted.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Sylvia Capri-28-Red' in the bestsellers aggregated yearly report?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sylvia Capri-28-Red';",
+ "answer": [
+ "33.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "33.6000"
+ ],
+ [
+ "33.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the vote option value for the product with ID 590.",
+ "sql": "SELECT value FROM rating_option_vote WHERE entity_pk_value = 590;",
+ "answer": [
+ "5",
+ "1",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ],
+ [
+ 1
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 23?",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 23;",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with address entity ID 513.",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 513;",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with ISO2 code 'WS'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'WS';",
+ "answer": [
+ "WSM"
+ ],
+ "sql_execute_result": [
+ [
+ "WSM"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating with code 'Quality' active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the address type for the order with address entity ID 111.",
+ "sql": "SELECT address_type FROM sales_order_address WHERE entity_id = 111;",
+ "answer": [
+ "shipping"
+ ],
+ "sql_execute_result": [
+ [
+ "shipping"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the integer attribute with value ID 12636?",
+ "sql": "SELECT attribute_id FROM catalog_product_entity_int WHERE value_id = 12636;",
+ "answer": [
+ "145"
+ ],
+ "sql_execute_result": [
+ [
+ 145
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the sales sequence profile with meta ID 5.",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE meta_id = 5;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing address in entity ID 544?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 544;",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many street addresses were found for the customer named Grace Nguyen?",
+ "sql": "SELECT street FROM sales_order_address WHERE firstname = 'Grace' AND lastname = 'Nguyen';",
+ "answer": [
+ "30"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ],
+ [
+ "789 Harvard Square"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the product entity with ID 1179 and attribute ID 144?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1179 AND attribute_id = 144;",
+ "answer": [
+ "166"
+ ],
+ "sql_execute_result": [
+ [
+ 166
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the payment with entity ID 78?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 78;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product with entity ID 123 in the catalog product entity varchar table?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 123;",
+ "answer": [
+ "Hollister Backyard Sweatshirt-XL-Green",
+ "container2",
+ "hollister-backyard-sweatshirt-xl-green",
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "Hollister Backyard Sweatshirt-XL-Green"
+ ],
+ [
+ "container2"
+ ],
+ [
+ "hollister-backyard-sweatshirt-xl-green"
+ ],
+ [
+ "0"
+ ]
+ ]
+ },
+ {
+ "question": "Which category ID is associated with the product ID 1501 in the catalog category product table?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1501;",
+ "answer": [
+ "25",
+ "33",
+ "30",
+ "36",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 25
+ ],
+ [
+ 33
+ ],
+ [
+ 30
+ ],
+ [
+ 36
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with parent ID 230?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 230;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for reviews that are pending?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the root category ID for the store group with name 'Main Website Store'.",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the payment with entity ID 194?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 194;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are linked with the category ID 25 in the catalog category product table?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 25;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ]
+ ]
+ },
+ {
+ "question": "What is the additional information stored for the payment with entity ID 290?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 290;",
+ "answer": [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What product name is associated with the value ID 2250 in the catalog product entity varchar table?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE value_id = 2250;",
+ "answer": [
+ "zoltan-gym-tee-xs-yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "zoltan-gym-tee-xs-yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with entity ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with product ID 1605?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1605;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the 'complete' order status.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for the group with ID 2?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 85 used in grid?",
+ "sql": "SELECT is_used_in_grid FROM catalog_eav_attribute WHERE attribute_id = 85;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with item ID 130 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE item_id = 130;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price including tax for the invoice item with parent ID 2?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE parent_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Determine if the attribute with ID 154 is visible on the front.",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = 154;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax class ID for the 'Retailer' customer group.",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity_id 1?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1;",
+ "answer": [
+ "24-MB01"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU '24-WG081-pink'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = '24-WG081-pink';",
+ "answer": [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'WJ05-XL-Brown'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WJ05-XL-Brown';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price for the product with entity_id 1356.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1356 AND attribute_id = 77;",
+ "answer": [
+ "69.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "69.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the product type for product with product_id 828.",
+ "sql": "SELECT product_type FROM sales_order_item WHERE product_id = 1;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for order with entity_id 145?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 145;",
+ "answer": [
+ "230.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "230.1200"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer placed the order with order_id 238?",
+ "sql": "SELECT customer_id FROM sales_order WHERE entity_id = 238;",
+ "answer": [
+ "27"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ]
+ ]
+ },
+ {
+ "question": "Find the product options for the order item with item_id 283.",
+ "sql": "SELECT product_options FROM sales_order_item WHERE item_id = 283;",
+ "answer": [
+ "Color: Orange",
+ "Size: M"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"info_buyRequest\":{\"super_attribute\":{\"93\":\"56\",\"144\":\"168\"},\"qty\":\"1.0000\"},\"attributes_info\":[{\"label\":\"Color\",\"value\":\"Orange\",\"option_id\":93,\"option_value\":\"56\"},{\"label\":\"Size\",\"value\":\"M\",\"option_id\":144,\"option_value\":\"168\"}],\"simple_name\":\"Adrienne Trek Jacket-M-Orange\",\"simple_sku\":\"WJ08-M-Orange\",\"product_calculations\":1,\"shipment_type\":0}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the product with entity_id 1572?",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE entity_id = 1572;",
+ "answer": [
+ "2023-04-19 16:13:49"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:49"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with product ID 997?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 997;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'MT02-M-Gray'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'About us' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the parent category ID for the category with entity ID 25?",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 25;",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 25?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 25;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path of the category with entity ID 22?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 22;",
+ "answer": [
+ "1/2/20/22"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/20/22"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered with the search query 'nike'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Check if there are backorders allowed for the product with product ID 1748.",
+ "sql": "SELECT backorders FROM cataloginventory_stock_item WHERE product_id = 1748;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity ID 3?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 3 AND store_id = 0 AND attribute_id = 120;",
+ "answer": [
+ "gear"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 8?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 8;",
+ "answer": [
+ "marym@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "marym@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with code 'custom_layout'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'custom_layout';",
+ "answer": [
+ "New Layout"
+ ],
+ "sql_execute_result": [
+ [
+ "New Layout"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for customer with ID 33.",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type ID for the attribute code 'prefix'?",
+ "sql": "SELECT entity_type_id FROM eav_attribute WHERE attribute_code = 'prefix';",
+ "answer": [
+ "1",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for attribute ID 96?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 96;",
+ "answer": [
+ "gallery"
+ ],
+ "sql_execute_result": [
+ [
+ "gallery"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default value for the attribute with ID 133?",
+ "sql": "SELECT default_value FROM eav_attribute WHERE attribute_id = 133;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "0"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total sequence value for invoices.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the store view where Lisa Green was created?",
+ "sql": "SELECT created_in FROM customer_entity WHERE firstname = 'Lisa' AND lastname = 'Green';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of 'Celeste Sports Bra-L-Red' ordered in 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1631 AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the shipment with ID 3 has an email sent.",
+ "sql": "SELECT IF(email_sent IS NULL, false, true) AS email_sent FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "false"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method used for order with payment ID 227.",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 227;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the number of items shipped in shipment with increment ID '000000001'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check the rating position for 'Orestes Yoga Pant -34-Blue' in the year 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_id = 849 AND period = '2022-01-01';",
+ "answer": [
+ "105",
+ "95"
+ ],
+ "sql_execute_result": [
+ [
+ 105
+ ],
+ [
+ 95
+ ]
+ ]
+ },
+ {
+ "question": "Get the store ID for the shipment with ID 2.",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the date when the review for product with ID 1332 was created.",
+ "sql": "SELECT created_at FROM review WHERE entity_pk_value = 1332;",
+ "answer": [
+ "2023-04-19 16:15:16"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:16"
+ ],
+ [
+ "2023-04-19 16:15:16"
+ ],
+ [
+ "2023-04-19 16:15:16"
+ ]
+ ]
+ },
+ {
+ "question": "Verify the status of the shipment with ID 3.",
+ "sql": "SELECT IFNULL(shipment_status, 'null') AS shipment_status FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "null"
+ ],
+ "sql_execute_result": [
+ [
+ "null"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'home'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped in the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses were found for the customer with ID 18?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE customer_id = 18;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'no-route'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'no-route';",
+ "answer": [
+ "404 Not Found"
+ ],
+ "sql_execute_result": [
+ [
+ "404 Not Found"
+ ]
+ ]
+ },
+ {
+ "question": "Find the increment ID for the shipment with entity ID 1.",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "What shipping method was used for order with increment ID '000000218'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000218';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000225'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000225';",
+ "answer": [
+ "122.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "122.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time for the CMS page titled 'Customer Service'?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 839?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 839;",
+ "answer": [
+ "MP09-36-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MP09-36-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with entity ID 839 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 839;",
+ "answer": [
+ "-115",
+ "-63",
+ "-11",
+ "-223"
+ ],
+ "sql_execute_result": [
+ [
+ -115
+ ],
+ [
+ -115
+ ],
+ [
+ -63
+ ],
+ [
+ -11
+ ],
+ [
+ -223
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute with ID 10 in the eav_attribute table?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_id = 10;",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with ID 135?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 135;",
+ "answer": [
+ "Swatch"
+ ],
+ "sql_execute_result": [
+ [
+ "Swatch"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer with entity ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'abominable-hoodie-m-red' visible on the front end?",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = (SELECT attribute_id FROM catalog_product_entity_varchar WHERE value = 'abominable-hoodie-m-red');",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in the sales order with increment ID '000000139'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000139';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer who placed order number '000000182'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000182';",
+ "answer": [
+ "harrypotterfan1@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "harrypotterfan1@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type for the product with SKU 'MP06'?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'MP06';",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were returned for the query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for the review with ID 323?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 323;",
+ "answer": [
+ "I love this bra"
+ ],
+ "sql_execute_result": [
+ [
+ "I love this bra"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for the sales order with customer email 'johndoe123@gmail.com'.",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_email = 'johndoe123@gmail.com';",
+ "answer": [
+ "53.0000",
+ "204.2500",
+ "105.4000",
+ "71.0000",
+ "163.0000",
+ "136.9900",
+ "208.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "53.0000"
+ ],
+ [
+ "204.2500"
+ ],
+ [
+ "105.4000"
+ ],
+ [
+ "71.0000"
+ ],
+ [
+ "163.0000"
+ ],
+ [
+ "136.9900"
+ ],
+ [
+ "208.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for order ID 216?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 216;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the reviewer who wrote the review titled 'Fantastic shirt for the price!'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Fantastic shirt for the price!';",
+ "answer": [
+ "Jae"
+ ],
+ "sql_execute_result": [
+ [
+ "Jae"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value description for the attribute option with option ID 124?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 124;",
+ "answer": [
+ "Soft Shell"
+ ],
+ "sql_execute_result": [
+ [
+ "Soft Shell"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with the entity ID 401?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 401;",
+ "answer": [
+ "MJ03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status 'paypal_reversed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount ordered for the payment with ID 230.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 230;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID for the credit memo with entity ID 1?",
+ "sql": "SELECT increment_id FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping and handling amount for the order associated with credit memo ID 1.",
+ "sql": "SELECT shipping_and_handling FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order associated with credit memo ID 1?",
+ "sql": "SELECT payment_method FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the payment with ID 21?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 21;",
+ "answer": [
+ "210.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many payment IDs were found with the method 'checkmo'?",
+ "sql": "SELECT entity_id FROM sales_order_payment WHERE method = 'checkmo';",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped for the product named 'Troy Yoga Short'?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the created date for the credit memo with increment ID '000000001'.",
+ "sql": "SELECT created_at FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent search query for the product 'Antonia Racer Tank'?",
+ "sql": "SELECT query_id, num_results, popularity FROM search_query WHERE query_text = 'Antonia Racer Tank' ORDER BY updated_at DESC LIMIT 1;",
+ "answer": [
+ "13",
+ "23",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 13,
+ 23,
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Juliana Short-Sleeve Tee-M-White' in 2023.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Juliana Short-Sleeve Tee-M-White' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with ID 65?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 65;",
+ "answer": [
+ "pending"
+ ],
+ "sql_execute_result": [
+ [
+ "pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping description for order ID 294?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 294;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product 'Autumn Pullie-XS-Red'.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Autumn Pullie-XS-Red' LIMIT 1;",
+ "answer": [
+ "57.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "57.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order ID 102?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 102;",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the customer with email 'avidreader99@yahoo.com'?",
+ "sql": "SELECT entity_id AS order_id, status, grand_total FROM sales_order WHERE customer_email = 'avidreader99@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 5,
+ "canceled",
+ "137.0000"
+ ],
+ [
+ 11,
+ "complete",
+ "143.8000"
+ ],
+ [
+ 16,
+ "complete",
+ "215.0000"
+ ],
+ [
+ 32,
+ "complete",
+ "196.2000"
+ ],
+ [
+ 65,
+ "pending",
+ "210.0000"
+ ],
+ [
+ 80,
+ "canceled",
+ "37.5000"
+ ],
+ [
+ 85,
+ "canceled",
+ "203.0000"
+ ],
+ [
+ 114,
+ "complete",
+ "65.0000"
+ ],
+ [
+ 126,
+ "canceled",
+ "207.0000"
+ ],
+ [
+ 166,
+ "complete",
+ "198.6400"
+ ],
+ [
+ 183,
+ "canceled",
+ "201.6000"
+ ],
+ [
+ 189,
+ "complete",
+ "251.2400"
+ ],
+ [
+ 300,
+ "processing",
+ "88.0000"
+ ],
+ [
+ 307,
+ "pending",
+ "101.2000"
+ ],
+ [
+ 308,
+ "pending",
+ "175.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU value for the product with entity ID 1992?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1992 AND attribute_id = 106;",
+ "answer": [
+ "container2"
+ ],
+ "sql_execute_result": [
+ [
+ "container2"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'hollister'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'nike'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found as bestsellers for March 2023 in store 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-03-01' AND store_id = 0;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "Dual Handle Cardio Ball"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Blue"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Black"
+ ],
+ [
+ "Primo Endurance Tank-M-Red"
+ ],
+ [
+ "Tiberius Gym Tank-M-Yellow"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Gray"
+ ],
+ [
+ "Supernova Sport Pant-32-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Black"
+ ],
+ [
+ "Zoe Tank-XS-Green"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Fiona Fitness Short-31-Black"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews for the product with ID 478.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 478;",
+ "answer": [
+ "89",
+ "90",
+ "91"
+ ],
+ "sql_execute_result": [
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the vote with ID 210?",
+ "sql": "SELECT value FROM rating_option_vote WHERE vote_id = 210;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of search results for the query 'Antonia Racer Tank'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Autumn Pullie-S-Green' in April 2023 for store 1?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-04-01' AND store_id = 1 AND product_name = 'Autumn Pullie-S-Green';",
+ "answer": [
+ "32"
+ ],
+ "sql_execute_result": [
+ [
+ 32
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 152?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 152;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the number of results for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of 'Eos V-Neck Hoodie-XL-Orange' in March 2022 for store 1?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-03-01' AND store_id = 1 AND product_name = 'Eos V-Neck Hoodie-XL-Orange';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 32?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 32;",
+ "answer": [
+ "katie.wong@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "katie.wong@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount of order with increment ID '000000277'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000277';",
+ "answer": [
+ "148.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "148.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in store with ID 1?",
+ "sql": "SELECT SUM(total_qty_ordered) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "912.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "912.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 79 in the catalog_product_entity table?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 79;",
+ "answer": [
+ "MH03-XS-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MH03-XS-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 1454?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1454;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders placed by customer with email 'katie.wong@hotmail.com'.",
+ "sql": "SELECT entity_id, increment_id, grand_total FROM sales_order WHERE customer_email = 'katie.wong@hotmail.com';",
+ "answer": [
+ "Order ID: 000000036, Total: 162.00",
+ "Order ID: 000000139, Total: 194.60",
+ "Order ID: 000000175, Total: 205.64",
+ "Order ID: 000000198, Total: 96.00",
+ "Order ID: 000000277, Total: 148.00"
+ ],
+ "sql_execute_result": [
+ [
+ 36,
+ "000000036",
+ "162.0000"
+ ],
+ [
+ 139,
+ "000000139",
+ "194.6000"
+ ],
+ [
+ 175,
+ "000000175",
+ "205.6400"
+ ],
+ [
+ 198,
+ "000000198",
+ "96.0000"
+ ],
+ [
+ 277,
+ "000000277",
+ "148.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity in stock for the product with product ID 1441?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1441;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all orders by the customer with email 'daniel.jackson@hotmail.com'?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_email = 'daniel.jackson@hotmail.com';",
+ "answer": [
+ "653.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "653.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the email 'fitnessjunkie22@yahoo.com'?",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE email = 'fitnessjunkie22@yahoo.com';",
+ "answer": [
+ "Alex Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Alex",
+ "Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with increment ID '000000001'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the customer with the email 'daniel.jackson@hotmail.com'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'daniel.jackson@hotmail.com';",
+ "answer": [
+ "71",
+ "134",
+ "159",
+ "209",
+ "233",
+ "250",
+ "265",
+ "280",
+ "289"
+ ],
+ "sql_execute_result": [
+ [
+ 71
+ ],
+ [
+ 134
+ ],
+ [
+ 159
+ ],
+ [
+ 209
+ ],
+ [
+ 233
+ ],
+ [
+ 250
+ ],
+ [
+ 265
+ ],
+ [
+ 280
+ ],
+ [
+ 289
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 1354?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1354;",
+ "answer": [
+ "WJ11-S-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ11-S-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of product with SKU 'MS01-XL-Brown' are currently in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MS01-XL-Brown');",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for all closed orders.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'closed';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in store with store ID 1?",
+ "sql": "SELECT SUM(total_qty_ordered) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "912.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "912.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the email 'roni_cost@example.com'?",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE email = 'roni_cost@example.com';",
+ "answer": [
+ "Veronica",
+ "Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with entity ID 1354?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1354;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Eos V-Neck Hoodie'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1194;",
+ "answer": [
+ "WH11"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for customer named 'Olivia Jackson'.",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Olivia' AND lastname = 'Jackson';",
+ "answer": [
+ "olivia.jackson@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "olivia.jackson@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Minerva LumaTech\u2122 V-Tee' in the shipment?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE product_id = 1492;",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders shipped with the product named 'Iris Workout Top'.",
+ "sql": "SELECT DISTINCT parent_id FROM sales_shipment_item WHERE product_id = 1428;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 75?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 75;",
+ "answer": [
+ "Prince Edward Island"
+ ],
+ "sql_execute_result": [
+ [
+ "Prince Edward Island"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Sybil Running Short-30-Purple' in daily bestsellers.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_id = 2000;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the customer 'Jane Smith'?",
+ "sql": "SELECT created_at FROM customer_entity WHERE email = 'janesmith@gmail.com';",
+ "answer": [
+ "2023-04-19 21:45:24"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 21:45:24"
+ ]
+ ]
+ },
+ {
+ "question": "Which store ID is associated with 'Logan HeatTec\u00ae Tee-L-Red' in daily bestsellers?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_daily WHERE product_id = 586;",
+ "answer": [
+ "1",
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity ID of the product 'Troy Yoga Short' in the shipment items?",
+ "sql": "SELECT product_id FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "989"
+ ],
+ "sql_execute_result": [
+ [
+ 989
+ ]
+ ]
+ },
+ {
+ "question": "Find the website ID for customer 'Sophie Taylor'.",
+ "sql": "SELECT website_id FROM customer_entity WHERE email = 'fashionista88@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'alexander.thomas@hotmail.com'.",
+ "sql": "SELECT entity_id, increment_id FROM sales_order WHERE customer_email = 'alexander.thomas@hotmail.com';",
+ "answer": [
+ "000000049",
+ "000000069",
+ "000000122",
+ "000000206",
+ "000000219",
+ "000000248",
+ "000000251",
+ "000000275",
+ "000000294",
+ "000000304"
+ ],
+ "sql_execute_result": [
+ [
+ 49,
+ "000000049"
+ ],
+ [
+ 69,
+ "000000069"
+ ],
+ [
+ 122,
+ "000000122"
+ ],
+ [
+ 206,
+ "000000206"
+ ],
+ [
+ 219,
+ "000000219"
+ ],
+ [
+ 248,
+ "000000248"
+ ],
+ [
+ 251,
+ "000000251"
+ ],
+ [
+ 275,
+ "000000275"
+ ],
+ [
+ 294,
+ "000000294"
+ ],
+ [
+ 304,
+ "000000304"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of item 'WS03-XS-Red' in shipments.",
+ "sql": "SELECT SUM(qty) FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000122'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000122';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address ID for the order with increment ID '000000194'?",
+ "sql": "SELECT billing_address_id FROM sales_order WHERE increment_id = '000000194';",
+ "answer": [
+ "388"
+ ],
+ "sql_execute_result": [
+ [
+ 388
+ ]
+ ]
+ },
+ {
+ "question": "Find the email of the customer who placed order with increment ID '000000287'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000287';",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order with ID 204?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 204;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have canceled orders?",
+ "sql": "SELECT DISTINCT customer_email FROM sales_order WHERE state = 'canceled';",
+ "answer": [
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for product with ID 670.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 670;",
+ "answer": [
+ "130",
+ "131",
+ "132"
+ ],
+ "sql_execute_result": [
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and SKU of the product in shipment item with ID 2?",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE entity_id = 2;",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee",
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee",
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Get the highest rating given to product with ID 1840.",
+ "sql": "SELECT MAX(value) FROM rating_option_vote WHERE entity_pk_value = 1840;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Which store group has the name 'Main Website Store'?",
+ "sql": "SELECT group_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the sequence table name for invoices in the store with ID 0.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 0;",
+ "answer": [
+ "sequence_invoice_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_0"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and SKU for all shipment items related to order item ID 1577.",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE order_item_id = 1577;",
+ "answer": [
+ "Eos V-Neck Hoodie",
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie",
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many review IDs were found for reviews created on '2023-04-19'?",
+ "sql": "SELECT review_id FROM review WHERE created_at LIKE '2023-04-19%';",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "Find the percentage of the lowest rating given to the product with ID 510.",
+ "sql": "SELECT MIN(percent) FROM rating_option_vote WHERE entity_pk_value = 510;",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ 20
+ ]
+ ]
+ },
+ {
+ "question": "List the names and SKUs of products ordered in shipment ID 3.",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "Troy Yoga Short, MSH09-36-Black",
+ "Eos V-Neck Hoodie, WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short",
+ "MSH09-36-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie",
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname for the review titled 'Wear this on evening runs'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Wear this on evening runs';",
+ "answer": [
+ "Kasey"
+ ],
+ "sql_execute_result": [
+ [
+ "Kasey"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating code 'Quality'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many product attribute option values are available in the store?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE store_id = 0;",
+ "answer": [
+ "206"
+ ],
+ "sql_execute_result": [
+ [
+ "Male"
+ ],
+ [
+ "Female"
+ ],
+ [
+ "Not Specified"
+ ],
+ [
+ "Hike"
+ ],
+ [
+ "Outdoor"
+ ],
+ [
+ "Running"
+ ],
+ [
+ "Warmup"
+ ],
+ [
+ "Yoga"
+ ],
+ [
+ "Recreation"
+ ],
+ [
+ "Lounge"
+ ],
+ [
+ "Gym"
+ ],
+ [
+ "Climbing"
+ ],
+ [
+ "Crosstraining"
+ ],
+ [
+ "Post-workout"
+ ],
+ [
+ "Cycling"
+ ],
+ [
+ "Athletic"
+ ],
+ [
+ "Sports"
+ ],
+ [
+ "Hiking"
+ ],
+ [
+ "Overnight"
+ ],
+ [
+ "School"
+ ],
+ [
+ "Trail"
+ ],
+ [
+ "Travel"
+ ],
+ [
+ "Urban"
+ ],
+ [
+ "Backpack"
+ ],
+ [
+ "Luggage"
+ ],
+ [
+ "Duffel"
+ ],
+ [
+ "Messenger"
+ ],
+ [
+ "Laptop"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Tote"
+ ],
+ [
+ "Burlap"
+ ],
+ [
+ "Canvas"
+ ],
+ [
+ "Cotton"
+ ],
+ [
+ "Faux Leather"
+ ],
+ [
+ "Leather"
+ ],
+ [
+ "Mesh"
+ ],
+ [
+ "Nylon"
+ ],
+ [
+ "Polyester"
+ ],
+ [
+ "Rayon"
+ ],
+ [
+ "Ripstop"
+ ],
+ [
+ "Suede"
+ ],
+ [
+ "Foam"
+ ],
+ [
+ "Metal"
+ ],
+ [
+ "Plastic"
+ ],
+ [
+ "Rubber"
+ ],
+ [
+ "Synthetic"
+ ],
+ [
+ "Stainless Steel"
+ ],
+ [
+ "Silicone"
+ ],
+ [
+ "Adjustable"
+ ],
+ [
+ "Cross Body"
+ ],
+ [
+ "Detachable"
+ ],
+ [
+ "Double"
+ ],
+ [
+ "Padded"
+ ],
+ [
+ "Shoulder"
+ ],
+ [
+ "Single"
+ ],
+ [
+ "Telescoping"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Wheeled"
+ ],
+ [
+ "Hydration Pocket"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Flapover"
+ ],
+ [
+ "Waterproof"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "TSA Approved"
+ ],
+ [
+ "Reflective"
+ ],
+ [
+ "Laptop Sleeve"
+ ],
+ [
+ "Lockable"
+ ],
+ [
+ "Men"
+ ],
+ [
+ "Women"
+ ],
+ [
+ "Boys"
+ ],
+ [
+ "Girls"
+ ],
+ [
+ "Unisex"
+ ],
+ [
+ "Cardio"
+ ],
+ [
+ "Electronic"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Fashion"
+ ],
+ [
+ "Hydration"
+ ],
+ [
+ "Timepiece"
+ ],
+ [
+ "Download"
+ ],
+ [
+ "DVD"
+ ],
+ [
+ "Base Layer"
+ ],
+ [
+ "Basic"
+ ],
+ [
+ "Capri"
+ ],
+ [
+ "Compression"
+ ],
+ [
+ "Leggings"
+ ],
+ [
+ "Parachute"
+ ],
+ [
+ "Skort"
+ ],
+ [
+ "Snug"
+ ],
+ [
+ "Sweatpants"
+ ],
+ [
+ "Tights"
+ ],
+ [
+ "Track Pants"
+ ],
+ [
+ "Workout Pants"
+ ],
+ [
+ "Insulated"
+ ],
+ [
+ "Jacket"
+ ],
+ [
+ "Vest"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "Hooded"
+ ],
+ [
+ "Heavy Duty"
+ ],
+ [
+ "Rain Coat"
+ ],
+ [
+ "Hard Shell"
+ ],
+ [
+ "Soft Shell"
+ ],
+ [
+ "Windbreaker"
+ ],
+ [
+ "½ zip"
+ ],
+ [
+ "¼ zip"
+ ],
+ [
+ "Full Zip"
+ ],
+ [
+ "Reversible"
+ ],
+ [
+ "Bra"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Sweatshirt"
+ ],
+ [
+ "Polo"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Tee"
+ ],
+ [
+ "Pullover"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Cardigan"
+ ],
+ [
+ "Henley"
+ ],
+ [
+ "Tunic"
+ ],
+ [
+ "Camisole"
+ ],
+ [
+ "Cocona® performance fabric"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Fleece"
+ ],
+ [
+ "Hemp"
+ ],
+ [
+ "Jersey"
+ ],
+ [
+ "LumaTech™"
+ ],
+ [
+ "Lycra®"
+ ],
+ [
+ "Microfiber"
+ ],
+ [
+ "Spandex"
+ ],
+ [
+ "HeatTec®"
+ ],
+ [
+ "EverCool™"
+ ],
+ [
+ "Organic Cotton"
+ ],
+ [
+ "TENCEL"
+ ],
+ [
+ "CoolTech™"
+ ],
+ [
+ "Khaki"
+ ],
+ [
+ "Linen"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Terry"
+ ],
+ [
+ "Sleeve"
+ ],
+ [
+ "Long-Sleeve"
+ ],
+ [
+ "Short-Sleeve"
+ ],
+ [
+ "Sleeveless"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Strap"
+ ],
+ [
+ "N/A"
+ ],
+ [
+ "? zip"
+ ],
+ [
+ "Boat Neck"
+ ],
+ [
+ "Crew"
+ ],
+ [
+ "Full zip"
+ ],
+ [
+ "V-neck"
+ ],
+ [
+ "Ballet"
+ ],
+ [
+ "Scoop"
+ ],
+ [
+ "High Collar"
+ ],
+ [
+ "Stand Collar"
+ ],
+ [
+ "Roll Neck"
+ ],
+ [
+ "Square Neck"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Checked"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Graphic Print"
+ ],
+ [
+ "Solid"
+ ],
+ [
+ "Solid-Highlight"
+ ],
+ [
+ "Striped"
+ ],
+ [
+ "Camo"
+ ],
+ [
+ "Geometric"
+ ],
+ [
+ "All-Weather"
+ ],
+ [
+ "Cold"
+ ],
+ [
+ "Cool"
+ ],
+ [
+ "Indoor"
+ ],
+ [
+ "Mild"
+ ],
+ [
+ "Rainy"
+ ],
+ [
+ "Spring"
+ ],
+ [
+ "Warm"
+ ],
+ [
+ "Windy"
+ ],
+ [
+ "Wintry"
+ ],
+ [
+ "Hot"
+ ],
+ [
+ "Black"
+ ],
+ [
+ "Blue"
+ ],
+ [
+ "Brown"
+ ],
+ [
+ "Gray"
+ ],
+ [
+ "Green"
+ ],
+ [
+ "Lavender"
+ ],
+ [
+ "Multi"
+ ],
+ [
+ "Orange"
+ ],
+ [
+ "Purple"
+ ],
+ [
+ "Red"
+ ],
+ [
+ "White"
+ ],
+ [
+ "Yellow"
+ ],
+ [
+ "55 cm"
+ ],
+ [
+ "XS"
+ ],
+ [
+ "65 cm"
+ ],
+ [
+ "S"
+ ],
+ [
+ "75 cm"
+ ],
+ [
+ "M"
+ ],
+ [
+ "6 foot"
+ ],
+ [
+ "L"
+ ],
+ [
+ "8 foot"
+ ],
+ [
+ "XL"
+ ],
+ [
+ "10 foot"
+ ],
+ [
+ "28"
+ ],
+ [
+ "29"
+ ],
+ [
+ "30"
+ ],
+ [
+ "31"
+ ],
+ [
+ "32"
+ ],
+ [
+ "33"
+ ],
+ [
+ "34"
+ ],
+ [
+ "36"
+ ],
+ [
+ "38"
+ ]
+ ]
+ },
+ {
+ "question": "Which order status is visible on the front and has the state 'processing'?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'processing' AND visible_on_front = 1;",
+ "answer": [
+ "fraud",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "fraud"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product with entity ID 576 and attribute ID 77?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 576 AND attribute_id = 77;",
+ "answer": [
+ "24.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default state for the status 'holded'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'holded' AND is_default = 1;",
+ "answer": [
+ "holded"
+ ],
+ "sql_execute_result": [
+ [
+ "holded"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have an attribute value of '1.000000'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_decimal WHERE value = '1.000000';",
+ "answer": [
+ "1847"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 348
+ ],
+ [
+ 349
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ],
+ [
+ 354
+ ],
+ [
+ 355
+ ],
+ [
+ 356
+ ],
+ [
+ 357
+ ],
+ [
+ 358
+ ],
+ [
+ 359
+ ],
+ [
+ 360
+ ],
+ [
+ 361
+ ],
+ [
+ 362
+ ],
+ [
+ 363
+ ],
+ [
+ 364
+ ],
+ [
+ 365
+ ],
+ [
+ 367
+ ],
+ [
+ 368
+ ],
+ [
+ 369
+ ],
+ [
+ 370
+ ],
+ [
+ 371
+ ],
+ [
+ 372
+ ],
+ [
+ 373
+ ],
+ [
+ 374
+ ],
+ [
+ 375
+ ],
+ [
+ 376
+ ],
+ [
+ 377
+ ],
+ [
+ 378
+ ],
+ [
+ 379
+ ],
+ [
+ 380
+ ],
+ [
+ 381
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 399
+ ],
+ [
+ 400
+ ],
+ [
+ 401
+ ],
+ [
+ 402
+ ],
+ [
+ 403
+ ],
+ [
+ 404
+ ],
+ [
+ 405
+ ],
+ [
+ 406
+ ],
+ [
+ 407
+ ],
+ [
+ 408
+ ],
+ [
+ 409
+ ],
+ [
+ 410
+ ],
+ [
+ 411
+ ],
+ [
+ 412
+ ],
+ [
+ 413
+ ],
+ [
+ 415
+ ],
+ [
+ 416
+ ],
+ [
+ 417
+ ],
+ [
+ 418
+ ],
+ [
+ 419
+ ],
+ [
+ 420
+ ],
+ [
+ 421
+ ],
+ [
+ 422
+ ],
+ [
+ 423
+ ],
+ [
+ 424
+ ],
+ [
+ 425
+ ],
+ [
+ 426
+ ],
+ [
+ 427
+ ],
+ [
+ 428
+ ],
+ [
+ 429
+ ],
+ [
+ 431
+ ],
+ [
+ 432
+ ],
+ [
+ 433
+ ],
+ [
+ 434
+ ],
+ [
+ 435
+ ],
+ [
+ 436
+ ],
+ [
+ 437
+ ],
+ [
+ 438
+ ],
+ [
+ 439
+ ],
+ [
+ 440
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 443
+ ],
+ [
+ 444
+ ],
+ [
+ 445
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 463
+ ],
+ [
+ 464
+ ],
+ [
+ 465
+ ],
+ [
+ 466
+ ],
+ [
+ 467
+ ],
+ [
+ 468
+ ],
+ [
+ 469
+ ],
+ [
+ 470
+ ],
+ [
+ 471
+ ],
+ [
+ 472
+ ],
+ [
+ 473
+ ],
+ [
+ 474
+ ],
+ [
+ 475
+ ],
+ [
+ 476
+ ],
+ [
+ 477
+ ],
+ [
+ 479
+ ],
+ [
+ 480
+ ],
+ [
+ 481
+ ],
+ [
+ 482
+ ],
+ [
+ 483
+ ],
+ [
+ 484
+ ],
+ [
+ 485
+ ],
+ [
+ 486
+ ],
+ [
+ 487
+ ],
+ [
+ 488
+ ],
+ [
+ 489
+ ],
+ [
+ 490
+ ],
+ [
+ 491
+ ],
+ [
+ 492
+ ],
+ [
+ 493
+ ],
+ [
+ 495
+ ],
+ [
+ 496
+ ],
+ [
+ 497
+ ],
+ [
+ 498
+ ],
+ [
+ 499
+ ],
+ [
+ 500
+ ],
+ [
+ 501
+ ],
+ [
+ 502
+ ],
+ [
+ 503
+ ],
+ [
+ 504
+ ],
+ [
+ 505
+ ],
+ [
+ 506
+ ],
+ [
+ 507
+ ],
+ [
+ 508
+ ],
+ [
+ 509
+ ],
+ [
+ 511
+ ],
+ [
+ 512
+ ],
+ [
+ 513
+ ],
+ [
+ 514
+ ],
+ [
+ 515
+ ],
+ [
+ 516
+ ],
+ [
+ 517
+ ],
+ [
+ 518
+ ],
+ [
+ 519
+ ],
+ [
+ 520
+ ],
+ [
+ 521
+ ],
+ [
+ 522
+ ],
+ [
+ 523
+ ],
+ [
+ 524
+ ],
+ [
+ 525
+ ],
+ [
+ 527
+ ],
+ [
+ 528
+ ],
+ [
+ 529
+ ],
+ [
+ 530
+ ],
+ [
+ 531
+ ],
+ [
+ 532
+ ],
+ [
+ 533
+ ],
+ [
+ 534
+ ],
+ [
+ 535
+ ],
+ [
+ 536
+ ],
+ [
+ 537
+ ],
+ [
+ 538
+ ],
+ [
+ 539
+ ],
+ [
+ 540
+ ],
+ [
+ 541
+ ],
+ [
+ 543
+ ],
+ [
+ 544
+ ],
+ [
+ 545
+ ],
+ [
+ 546
+ ],
+ [
+ 547
+ ],
+ [
+ 548
+ ],
+ [
+ 549
+ ],
+ [
+ 550
+ ],
+ [
+ 551
+ ],
+ [
+ 552
+ ],
+ [
+ 553
+ ],
+ [
+ 554
+ ],
+ [
+ 555
+ ],
+ [
+ 556
+ ],
+ [
+ 557
+ ],
+ [
+ 559
+ ],
+ [
+ 560
+ ],
+ [
+ 561
+ ],
+ [
+ 562
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ],
+ [
+ 565
+ ],
+ [
+ 566
+ ],
+ [
+ 567
+ ],
+ [
+ 568
+ ],
+ [
+ 569
+ ],
+ [
+ 570
+ ],
+ [
+ 571
+ ],
+ [
+ 572
+ ],
+ [
+ 573
+ ],
+ [
+ 575
+ ],
+ [
+ 576
+ ],
+ [
+ 577
+ ],
+ [
+ 578
+ ],
+ [
+ 579
+ ],
+ [
+ 580
+ ],
+ [
+ 581
+ ],
+ [
+ 582
+ ],
+ [
+ 583
+ ],
+ [
+ 584
+ ],
+ [
+ 585
+ ],
+ [
+ 586
+ ],
+ [
+ 587
+ ],
+ [
+ 588
+ ],
+ [
+ 589
+ ],
+ [
+ 591
+ ],
+ [
+ 592
+ ],
+ [
+ 593
+ ],
+ [
+ 594
+ ],
+ [
+ 595
+ ],
+ [
+ 596
+ ],
+ [
+ 597
+ ],
+ [
+ 598
+ ],
+ [
+ 599
+ ],
+ [
+ 600
+ ],
+ [
+ 601
+ ],
+ [
+ 602
+ ],
+ [
+ 603
+ ],
+ [
+ 604
+ ],
+ [
+ 605
+ ],
+ [
+ 607
+ ],
+ [
+ 608
+ ],
+ [
+ 609
+ ],
+ [
+ 610
+ ],
+ [
+ 611
+ ],
+ [
+ 612
+ ],
+ [
+ 613
+ ],
+ [
+ 614
+ ],
+ [
+ 615
+ ],
+ [
+ 616
+ ],
+ [
+ 617
+ ],
+ [
+ 618
+ ],
+ [
+ 619
+ ],
+ [
+ 620
+ ],
+ [
+ 621
+ ],
+ [
+ 623
+ ],
+ [
+ 624
+ ],
+ [
+ 625
+ ],
+ [
+ 626
+ ],
+ [
+ 627
+ ],
+ [
+ 628
+ ],
+ [
+ 629
+ ],
+ [
+ 630
+ ],
+ [
+ 631
+ ],
+ [
+ 632
+ ],
+ [
+ 633
+ ],
+ [
+ 634
+ ],
+ [
+ 635
+ ],
+ [
+ 636
+ ],
+ [
+ 637
+ ],
+ [
+ 639
+ ],
+ [
+ 640
+ ],
+ [
+ 641
+ ],
+ [
+ 642
+ ],
+ [
+ 643
+ ],
+ [
+ 644
+ ],
+ [
+ 645
+ ],
+ [
+ 646
+ ],
+ [
+ 647
+ ],
+ [
+ 648
+ ],
+ [
+ 649
+ ],
+ [
+ 650
+ ],
+ [
+ 651
+ ],
+ [
+ 652
+ ],
+ [
+ 653
+ ],
+ [
+ 655
+ ],
+ [
+ 656
+ ],
+ [
+ 657
+ ],
+ [
+ 658
+ ],
+ [
+ 659
+ ],
+ [
+ 660
+ ],
+ [
+ 661
+ ],
+ [
+ 662
+ ],
+ [
+ 663
+ ],
+ [
+ 664
+ ],
+ [
+ 665
+ ],
+ [
+ 666
+ ],
+ [
+ 667
+ ],
+ [
+ 668
+ ],
+ [
+ 669
+ ],
+ [
+ 671
+ ],
+ [
+ 672
+ ],
+ [
+ 673
+ ],
+ [
+ 674
+ ],
+ [
+ 675
+ ],
+ [
+ 677
+ ],
+ [
+ 678
+ ],
+ [
+ 679
+ ],
+ [
+ 680
+ ],
+ [
+ 681
+ ],
+ [
+ 683
+ ],
+ [
+ 684
+ ],
+ [
+ 685
+ ],
+ [
+ 686
+ ],
+ [
+ 687
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 695
+ ],
+ [
+ 696
+ ],
+ [
+ 697
+ ],
+ [
+ 698
+ ],
+ [
+ 699
+ ],
+ [
+ 701
+ ],
+ [
+ 702
+ ],
+ [
+ 703
+ ],
+ [
+ 704
+ ],
+ [
+ 705
+ ],
+ [
+ 707
+ ],
+ [
+ 708
+ ],
+ [
+ 709
+ ],
+ [
+ 710
+ ],
+ [
+ 711
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 719
+ ],
+ [
+ 720
+ ],
+ [
+ 721
+ ],
+ [
+ 722
+ ],
+ [
+ 723
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1061
+ ],
+ [
+ 1062
+ ],
+ [
+ 1063
+ ],
+ [
+ 1064
+ ],
+ [
+ 1065
+ ],
+ [
+ 1066
+ ],
+ [
+ 1067
+ ],
+ [
+ 1068
+ ],
+ [
+ 1069
+ ],
+ [
+ 1070
+ ],
+ [
+ 1071
+ ],
+ [
+ 1072
+ ],
+ [
+ 1073
+ ],
+ [
+ 1074
+ ],
+ [
+ 1075
+ ],
+ [
+ 1077
+ ],
+ [
+ 1078
+ ],
+ [
+ 1079
+ ],
+ [
+ 1080
+ ],
+ [
+ 1081
+ ],
+ [
+ 1082
+ ],
+ [
+ 1083
+ ],
+ [
+ 1084
+ ],
+ [
+ 1085
+ ],
+ [
+ 1086
+ ],
+ [
+ 1087
+ ],
+ [
+ 1088
+ ],
+ [
+ 1089
+ ],
+ [
+ 1090
+ ],
+ [
+ 1091
+ ],
+ [
+ 1093
+ ],
+ [
+ 1094
+ ],
+ [
+ 1095
+ ],
+ [
+ 1096
+ ],
+ [
+ 1097
+ ],
+ [
+ 1098
+ ],
+ [
+ 1099
+ ],
+ [
+ 1100
+ ],
+ [
+ 1101
+ ],
+ [
+ 1102
+ ],
+ [
+ 1103
+ ],
+ [
+ 1104
+ ],
+ [
+ 1105
+ ],
+ [
+ 1106
+ ],
+ [
+ 1107
+ ],
+ [
+ 1109
+ ],
+ [
+ 1110
+ ],
+ [
+ 1111
+ ],
+ [
+ 1112
+ ],
+ [
+ 1113
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity with ID 7?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 7;",
+ "answer": [
+ "creditmemo"
+ ],
+ "sql_execute_result": [
+ [
+ "creditmemo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method for the order with payment ID 166.",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 166;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 115 for the product with entity ID 1919?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1919 AND attribute_id = 115;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product attribute value for option ID 73?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 73;",
+ "answer": [
+ "Flapover"
+ ],
+ "sql_execute_result": [
+ [
+ "Flapover"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base shipping amount for the order with payment ID 107.",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 107;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest invoice?",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity model for the entity type 'order'?",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'order';",
+ "answer": [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute option value for the store ID 0 and option ID 162.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE store_id = 0 AND option_id = 162;",
+ "answer": [
+ "Short-Sleeve"
+ ],
+ "sql_execute_result": [
+ [
+ "Short-Sleeve"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with entity ID 1717?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1717 AND attribute_id = 144;",
+ "answer": [
+ "166"
+ ],
+ "sql_execute_result": [
+ [
+ 166
+ ]
+ ]
+ },
+ {
+ "question": "How many entity IDs were found for the product with attribute ID 99 and value 4?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_int WHERE attribute_id = 99 AND value = 4;",
+ "answer": [
+ "193"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 62
+ ],
+ [
+ 78
+ ],
+ [
+ 94
+ ],
+ [
+ 110
+ ],
+ [
+ 126
+ ],
+ [
+ 142
+ ],
+ [
+ 158
+ ],
+ [
+ 174
+ ],
+ [
+ 190
+ ],
+ [
+ 206
+ ],
+ [
+ 222
+ ],
+ [
+ 238
+ ],
+ [
+ 254
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 318
+ ],
+ [
+ 334
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 382
+ ],
+ [
+ 398
+ ],
+ [
+ 414
+ ],
+ [
+ 430
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 478
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 526
+ ],
+ [
+ 542
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 590
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 682
+ ],
+ [
+ 688
+ ],
+ [
+ 694
+ ],
+ [
+ 700
+ ],
+ [
+ 706
+ ],
+ [
+ 712
+ ],
+ [
+ 718
+ ],
+ [
+ 724
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 802
+ ],
+ [
+ 815
+ ],
+ [
+ 828
+ ],
+ [
+ 841
+ ],
+ [
+ 854
+ ],
+ [
+ 867
+ ],
+ [
+ 880
+ ],
+ [
+ 893
+ ],
+ [
+ 898
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 937
+ ],
+ [
+ 950
+ ],
+ [
+ 963
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 1002
+ ],
+ [
+ 1015
+ ],
+ [
+ 1028
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1130
+ ],
+ [
+ 1146
+ ],
+ [
+ 1162
+ ],
+ [
+ 1178
+ ],
+ [
+ 1194
+ ],
+ [
+ 1210
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1380
+ ],
+ [
+ 1396
+ ],
+ [
+ 1412
+ ],
+ [
+ 1428
+ ],
+ [
+ 1444
+ ],
+ [
+ 1460
+ ],
+ [
+ 1476
+ ],
+ [
+ 1492
+ ],
+ [
+ 1508
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1572
+ ],
+ [
+ 1588
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1668
+ ],
+ [
+ 1684
+ ],
+ [
+ 1700
+ ],
+ [
+ 1716
+ ],
+ [
+ 1732
+ ],
+ [
+ 1748
+ ],
+ [
+ 1764
+ ],
+ [
+ 1780
+ ],
+ [
+ 1796
+ ],
+ [
+ 1812
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1847
+ ],
+ [
+ 1854
+ ],
+ [
+ 1861
+ ],
+ [
+ 1868
+ ],
+ [
+ 1875
+ ],
+ [
+ 1882
+ ],
+ [
+ 1889
+ ],
+ [
+ 1896
+ ],
+ [
+ 1903
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1967
+ ],
+ [
+ 1983
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1380
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000233'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000233';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the email address of the customer who placed the order with ID 300.",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 300;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'about-us'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total amount for the order with ID 214.",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 214;",
+ "answer": [
+ "21.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "21.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with option ID 165?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 165;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the order ID 287.",
+ "sql": "SELECT CONCAT(customer_firstname, ' ', customer_lastname) FROM sales_order WHERE entity_id = 287;",
+ "answer": [
+ "Alex Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Alex Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "Which CMS page has the content heading 'What are Cookies?'?",
+ "sql": "SELECT title FROM cms_page WHERE content_heading = 'What are Cookies?';",
+ "answer": [
+ "Enable Cookies"
+ ],
+ "sql_execute_result": [
+ [
+ "Enable Cookies"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total weight of the items for the order with increment ID '000000206'?",
+ "sql": "SELECT weight FROM sales_order WHERE increment_id = '000000206';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with the protect code 'faea9d83d4d5b5e6b10534c4dc06e020'?",
+ "sql": "SELECT status FROM sales_order WHERE protect_code = 'faea9d83d4d5b5e6b10534c4dc06e020';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price including tax for the invoice with ID 1?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the decimal attribute with ID 82 for the product with entity ID 483?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 82 AND entity_id = 483;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the bestseller product 'Prima Compete Bra Top-M-Yellow' in April 2023.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Prima Compete Bra Top-M-Yellow' AND period = '2022-09-01';",
+ "answer": [
+ "27",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the bestseller product 'Mithra Warmup Pant-34-Gray' in April 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Mithra Warmup Pant-34-Gray' AND period = '2023-04-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with increment ID '000000002'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the tax amount for the invoice item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for 'Iris Workout Top' in the invoice items?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Wholesale' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 315?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 315;",
+ "answer": [
+ "I'm a mom on the go and I love these sho"
+ ],
+ "sql_execute_result": [
+ [
+ "I'm a mom on the go and I love these sho"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the order item with SKU 'WJ12-XS-Blue'.",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WJ12-XS-Blue';",
+ "answer": [
+ "Olivia 1/4 Zip Light Jacket",
+ "Olivia 1/4 Zip Light Jacket-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia 1/4 Zip Light Jacket"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity of 'Olivia 1/4 Zip Light Jacket' ordered in order ID 50?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE order_id = 50 AND name = 'Olivia 1/4 Zip Light Jacket';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percent rating given in review ID 262?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 262;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "What is the detail description of the review with ID 315?",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 315;",
+ "answer": [
+ "I'm a mom on the go and I love these shoes! They're comfy, cute and easy to slip on. What more could you ask for?"
+ ],
+ "sql_execute_result": [
+ [
+ "I'm a mom on the go and I love these shoes! They're comfy, cute and easy to slip on. What more could you ask for?"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with ID 50?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 50;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score of the search term 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'WJ12-XS-Blue' currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WJ12-XS-Blue');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ID 'US'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'US';",
+ "answer": [
+ "USA"
+ ],
+ "sql_execute_result": [
+ [
+ "USA"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Overnight Duffle' in January 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_id = 13 AND period = '2023-01-01';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 604 in the locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 604 AND locale = 'en_US';",
+ "answer": [
+ "West Bengal"
+ ],
+ "sql_execute_result": [
+ [
+ "West Bengal"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for 'Gwen Drawstring Bike Short-29-Orange' in March 2023.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1941 AND period = '2023-03-01';",
+ "answer": [
+ "7",
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ],
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the default 'pending_payment' state?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'pending_payment' AND is_default = 1;",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values were found in the 'sequence_order_1' table?",
+ "sql": "SELECT sequence_value FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Josie Yoga Jacket-S-Blue' ordered in November 2022.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Josie Yoga Jacket-S-Blue' AND period = '2022-11-01';",
+ "answer": [
+ "56.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "56.2500"
+ ],
+ [
+ "56.2500"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO-2 code 'KH'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso2_code = 'KH';",
+ "answer": [
+ "KH"
+ ],
+ "sql_execute_result": [
+ [
+ "KH"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state for the 'fraud' status in the sales order status state table?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name with ID 1225 in the bestsellers aggregated monthly table?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1225;",
+ "answer": [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with increment ID '000000096'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000096';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping description for the shipment with increment ID '000000002'.",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = (SELECT order_id FROM sales_shipment WHERE increment_id = '000000002');",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who left the review titled 'Quite good'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Quite good';",
+ "answer": [
+ "Jane Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Smith"
+ ]
+ ]
+ },
+ {
+ "question": "Which region in Italy has the code 'NA'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'IT' AND code = 'NA';",
+ "answer": [
+ "Napoli"
+ ],
+ "sql_execute_result": [
+ [
+ "Napoli"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000266'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000266';",
+ "answer": [
+ "183.1900"
+ ],
+ "sql_execute_result": [
+ [
+ "183.1900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the title of the review written by 'Roseline'.",
+ "sql": "SELECT title FROM review_detail WHERE nickname = 'Roseline';",
+ "answer": [
+ "Have no idea what all the fuss is about"
+ ],
+ "sql_execute_result": [
+ [
+ "Have no idea what all the fuss is about "
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount amount for the order with increment ID '000000085'?",
+ "sql": "SELECT discount_amount FROM sales_order WHERE increment_id = '000000085';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with protect code 'bb3d153d3918a2416af6871ae49e8868'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE protect_code = 'bb3d153d3918a2416af6871ae49e8868';",
+ "answer": [
+ "lisa.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "lisa.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with increment ID '000000211'?",
+ "sql": "SELECT base_shipping_amount FROM sales_order WHERE increment_id = '000000211';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the sales order shipping address with entity ID 63?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 63;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the customer email 'brian.smith@yahoo.com'?",
+ "sql": "SELECT entity_id FROM sales_order_address WHERE email = 'brian.smith@yahoo.com';",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for the customer group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the sales credit memo with increment ID '000000001'.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are currently out of stock?",
+ "sql": "SELECT product_id FROM cataloginventory_stock_item WHERE qty = 0;",
+ "answer": [
+ "150"
+ ],
+ "sql_execute_result": [
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 62
+ ],
+ [
+ 78
+ ],
+ [
+ 94
+ ],
+ [
+ 110
+ ],
+ [
+ 126
+ ],
+ [
+ 142
+ ],
+ [
+ 158
+ ],
+ [
+ 174
+ ],
+ [
+ 190
+ ],
+ [
+ 206
+ ],
+ [
+ 222
+ ],
+ [
+ 238
+ ],
+ [
+ 254
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 318
+ ],
+ [
+ 334
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 382
+ ],
+ [
+ 398
+ ],
+ [
+ 414
+ ],
+ [
+ 430
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 478
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 526
+ ],
+ [
+ 542
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 590
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 682
+ ],
+ [
+ 688
+ ],
+ [
+ 694
+ ],
+ [
+ 700
+ ],
+ [
+ 706
+ ],
+ [
+ 712
+ ],
+ [
+ 718
+ ],
+ [
+ 724
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 802
+ ],
+ [
+ 815
+ ],
+ [
+ 828
+ ],
+ [
+ 841
+ ],
+ [
+ 854
+ ],
+ [
+ 867
+ ],
+ [
+ 872
+ ],
+ [
+ 880
+ ],
+ [
+ 893
+ ],
+ [
+ 898
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 937
+ ],
+ [
+ 950
+ ],
+ [
+ 963
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 1002
+ ],
+ [
+ 1015
+ ],
+ [
+ 1028
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1130
+ ],
+ [
+ 1146
+ ],
+ [
+ 1162
+ ],
+ [
+ 1178
+ ],
+ [
+ 1194
+ ],
+ [
+ 1210
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1380
+ ],
+ [
+ 1396
+ ],
+ [
+ 1412
+ ],
+ [
+ 1428
+ ],
+ [
+ 1444
+ ],
+ [
+ 1460
+ ],
+ [
+ 1476
+ ],
+ [
+ 1492
+ ],
+ [
+ 1508
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1572
+ ],
+ [
+ 1588
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1668
+ ],
+ [
+ 1684
+ ],
+ [
+ 1700
+ ],
+ [
+ 1716
+ ],
+ [
+ 1732
+ ],
+ [
+ 1748
+ ],
+ [
+ 1764
+ ],
+ [
+ 1780
+ ],
+ [
+ 1796
+ ],
+ [
+ 1812
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1847
+ ],
+ [
+ 1854
+ ],
+ [
+ 1861
+ ],
+ [
+ 1868
+ ],
+ [
+ 1875
+ ],
+ [
+ 1882
+ ],
+ [
+ 1889
+ ],
+ [
+ 1896
+ ],
+ [
+ 1903
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1967
+ ],
+ [
+ 1983
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the order with increment ID '000000002'.",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were shipped to Grace Nguyen in Massachusetts?",
+ "sql": "SELECT entity_id, parent_id FROM sales_order_address WHERE firstname = 'Grace' AND lastname = 'Nguyen' AND region = 'Massachusetts';",
+ "answer": [
+ "30"
+ ],
+ "sql_execute_result": [
+ [
+ 9,
+ 5
+ ],
+ [
+ 10,
+ 5
+ ],
+ [
+ 21,
+ 11
+ ],
+ [
+ 22,
+ 11
+ ],
+ [
+ 31,
+ 16
+ ],
+ [
+ 32,
+ 16
+ ],
+ [
+ 63,
+ 32
+ ],
+ [
+ 64,
+ 32
+ ],
+ [
+ 129,
+ 65
+ ],
+ [
+ 130,
+ 65
+ ],
+ [
+ 159,
+ 80
+ ],
+ [
+ 160,
+ 80
+ ],
+ [
+ 169,
+ 85
+ ],
+ [
+ 170,
+ 85
+ ],
+ [
+ 227,
+ 114
+ ],
+ [
+ 228,
+ 114
+ ],
+ [
+ 251,
+ 126
+ ],
+ [
+ 252,
+ 126
+ ],
+ [
+ 331,
+ 166
+ ],
+ [
+ 332,
+ 166
+ ],
+ [
+ 365,
+ 183
+ ],
+ [
+ 366,
+ 183
+ ],
+ [
+ 377,
+ 189
+ ],
+ [
+ 378,
+ 189
+ ],
+ [
+ 599,
+ 300
+ ],
+ [
+ 600,
+ 300
+ ],
+ [
+ 613,
+ 307
+ ],
+ [
+ 614,
+ 307
+ ],
+ [
+ 615,
+ 308
+ ],
+ [
+ 616,
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'VE-T'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'VE-T';",
+ "answer": [
+ "Trujillo"
+ ],
+ "sql_execute_result": [
+ [
+ "Trujillo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the order status 'fraud'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'fraud';",
+ "answer": [
+ "Suspected Fraud"
+ ],
+ "sql_execute_result": [
+ [
+ "Suspected Fraud"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city associated with customer address ID 22?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 22;",
+ "answer": [
+ "Miami"
+ ],
+ "sql_execute_result": [
+ [
+ "Miami"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name of the bestseller item with ID 803 for December 2022.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE id = 803 AND period = '2022-12-01';",
+ "answer": [
+ "Hawkeye Yoga Short-34-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Hawkeye Yoga Short-34-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for the customer address with entity ID 2?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 2;",
+ "answer": [
+ "2058812302"
+ ],
+ "sql_execute_result": [
+ [
+ "2058812302"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Oslo Trek Hoodie-S-Brown'.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Oslo Trek Hoodie-S-Brown';",
+ "answer": [
+ "42.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region code for 'Stockholms l\u00e4n' in Sweden?",
+ "sql": "SELECT code FROM directory_country_region WHERE default_name = 'Stockholms l\u00e4n' AND country_id = 'SE';",
+ "answer": [
+ "SE-AB"
+ ],
+ "sql_execute_result": [
+ [
+ "SE-AB"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer first name associated with address ID 42.",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE entity_id = 42;",
+ "answer": [
+ "Emily"
+ ],
+ "sql_execute_result": [
+ [
+ "Emily"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Aero Daily Fitness Tee-XL-Brown' in September 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Aero Daily Fitness Tee-XL-Brown' AND period = '2022-09-01';",
+ "answer": [
+ "24",
+ "28"
+ ],
+ "sql_execute_result": [
+ [
+ 24
+ ],
+ [
+ 28
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'about-us'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for the order with increment ID '000000027'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000027';",
+ "answer": [
+ "43.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "43.4000"
+ ]
+ ]
+ },
+ {
+ "question": "List all products ordered from store with ID 1 on the date 2022-12-04.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 AND period = '2022-12-04';",
+ "answer": [
+ "Oslo Trek Hoodie-S-Brown",
+ "Ryker LumaTech\u2122 Tee (V-neck)-M-Gray",
+ "Cassius Sparring Tank-M-Blue",
+ "Nora Practice Tank-S-Purple",
+ "Leah Yoga Top-S-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Oslo Trek Hoodie-S-Brown"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Gray"
+ ],
+ [
+ "Cassius Sparring Tank-M-Blue"
+ ],
+ [
+ "Nora Practice Tank-S-Purple"
+ ],
+ [
+ "Leah Yoga Top-S-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping description for the order associated with customer email 'daniel.jackson@hotmail.com'.",
+ "sql": "SELECT shipping_description FROM sales_order WHERE customer_email = 'daniel.jackson@hotmail.com';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ],
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page titled 'Customer Service'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with the highest rating position for store ID 1.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Ina Compression Short-29-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Ina Compression Short-29-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer 'janesmith@gmail.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'janesmith@gmail.com';",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "Find all active CMS pages.",
+ "sql": "SELECT title FROM cms_page WHERE is_active = 1;",
+ "answer": [
+ "404 Not Found",
+ "Home Page",
+ "Enable Cookies",
+ "About us",
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "404 Not Found"
+ ],
+ [
+ "Home Page"
+ ],
+ [
+ "Enable Cookies"
+ ],
+ [
+ "About us"
+ ],
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 13?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 13;",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000002'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have been ordered in order with entity_id 2?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for the rating ID 2.",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 2;",
+ "answer": [
+ "Value"
+ ],
+ "sql_execute_result": [
+ [
+ "Value"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 10?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 10;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Check if an email has been sent for shipment with increment ID '000000002'.",
+ "sql": "SELECT email_sent FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "No email has been sent"
+ ],
+ "sql_execute_result": [
+ [
+ null
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the sales order with entity ID 1?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were created in store with ID 1 in April 2023?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-04-01' AND store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 16?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 16;",
+ "answer": [
+ "coolcat321@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "coolcat321@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with SKU 'WSH02-29-Orange' in the order with ID 16.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WSH02-29-Orange' AND order_id = 16;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MH13-S-Green'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MH13-S-Green';",
+ "answer": [
+ "Marco Lightweight Active Hoodie",
+ "Marco Lightweight Active Hoodie-S-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Marco Lightweight Active Hoodie"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price for order with ID 84?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 84;",
+ "answer": [
+ "206.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "206.1200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'about-us'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "What is the weight of the product with product_id 950 in the sales order item table?",
+ "sql": "SELECT weight FROM sales_order_item WHERE product_id = 950;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "configurable",
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'MSH06-33-Gray' eligible for free shipping?",
+ "sql": "SELECT free_shipping FROM sales_order_item WHERE sku = 'MSH06-33-Gray';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for the order with increment_id '000000002'?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount percent applied to the order item with item_id 460?",
+ "sql": "SELECT discount_percent FROM sales_order_item WHERE item_id = 460;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with ID 950.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 950;",
+ "answer": [
+ "8.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "8.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are in the 'closed' status?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE status = 'closed';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of order with ID 1?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing city for invoice with ID 2.",
+ "sql": "SELECT city FROM sales_order_address WHERE entity_id = (SELECT billing_address_id FROM sales_invoice WHERE entity_id = 2);",
+ "answer": [
+ "Calder"
+ ],
+ "sql_execute_result": [
+ [
+ "Calder"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are associated with the email 'john.smith.xyz@gmail.com'?",
+ "sql": "SELECT parent_id FROM sales_order_address WHERE email = 'john.smith.xyz@gmail.com';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ],
+ [
+ 9
+ ],
+ [
+ 59
+ ],
+ [
+ 59
+ ],
+ [
+ 68
+ ],
+ [
+ 68
+ ],
+ [
+ 79
+ ],
+ [
+ 79
+ ],
+ [
+ 93
+ ],
+ [
+ 93
+ ],
+ [
+ 95
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 96
+ ],
+ [
+ 107
+ ],
+ [
+ 107
+ ],
+ [
+ 115
+ ],
+ [
+ 115
+ ],
+ [
+ 144
+ ],
+ [
+ 144
+ ],
+ [
+ 217
+ ],
+ [
+ 217
+ ],
+ [
+ 257
+ ],
+ [
+ 257
+ ],
+ [
+ 273
+ ],
+ [
+ 273
+ ]
+ ]
+ },
+ {
+ "question": "What is the region code for region ID 611?",
+ "sql": "SELECT code FROM directory_country_region WHERE region_id = 611;",
+ "answer": [
+ "WA"
+ ],
+ "sql_execute_result": [
+ [
+ "WA"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for attribute code 'prefix'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'prefix';",
+ "answer": [
+ "Name Prefix"
+ ],
+ "sql_execute_result": [
+ [
+ "Name Prefix"
+ ],
+ [
+ "Name Prefix"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping address street for order with ID 75.",
+ "sql": "SELECT street FROM sales_order_address WHERE parent_id = 75 AND address_type = 'shipping';",
+ "answer": [
+ "789 W Olympic Blvd"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Olympic Blvd"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address postcode for invoice with ID 1?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE entity_id = (SELECT billing_address_id FROM sales_invoice WHERE entity_id = 1);",
+ "answer": [
+ "49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for invoice ID 2?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many countries and their codes for regions are in the directory?",
+ "sql": "SELECT country_id, code FROM directory_country_region;",
+ "answer": [
+ "1121"
+ ],
+ "sql_execute_result": [
+ [
+ "US",
+ "AL"
+ ],
+ [
+ "US",
+ "AK"
+ ],
+ [
+ "US",
+ "AS"
+ ],
+ [
+ "US",
+ "AZ"
+ ],
+ [
+ "US",
+ "AR"
+ ],
+ [
+ "US",
+ "AE"
+ ],
+ [
+ "US",
+ "AA"
+ ],
+ [
+ "US",
+ "AE"
+ ],
+ [
+ "US",
+ "AE"
+ ],
+ [
+ "US",
+ "AE"
+ ],
+ [
+ "US",
+ "AP"
+ ],
+ [
+ "US",
+ "CA"
+ ],
+ [
+ "US",
+ "CO"
+ ],
+ [
+ "US",
+ "CT"
+ ],
+ [
+ "US",
+ "DE"
+ ],
+ [
+ "US",
+ "DC"
+ ],
+ [
+ "US",
+ "FM"
+ ],
+ [
+ "US",
+ "FL"
+ ],
+ [
+ "US",
+ "GA"
+ ],
+ [
+ "US",
+ "GU"
+ ],
+ [
+ "US",
+ "HI"
+ ],
+ [
+ "US",
+ "ID"
+ ],
+ [
+ "US",
+ "IL"
+ ],
+ [
+ "US",
+ "IN"
+ ],
+ [
+ "US",
+ "IA"
+ ],
+ [
+ "US",
+ "KS"
+ ],
+ [
+ "US",
+ "KY"
+ ],
+ [
+ "US",
+ "LA"
+ ],
+ [
+ "US",
+ "ME"
+ ],
+ [
+ "US",
+ "MH"
+ ],
+ [
+ "US",
+ "MD"
+ ],
+ [
+ "US",
+ "MA"
+ ],
+ [
+ "US",
+ "MI"
+ ],
+ [
+ "US",
+ "MN"
+ ],
+ [
+ "US",
+ "MS"
+ ],
+ [
+ "US",
+ "MO"
+ ],
+ [
+ "US",
+ "MT"
+ ],
+ [
+ "US",
+ "NE"
+ ],
+ [
+ "US",
+ "NV"
+ ],
+ [
+ "US",
+ "NH"
+ ],
+ [
+ "US",
+ "NJ"
+ ],
+ [
+ "US",
+ "NM"
+ ],
+ [
+ "US",
+ "NY"
+ ],
+ [
+ "US",
+ "NC"
+ ],
+ [
+ "US",
+ "ND"
+ ],
+ [
+ "US",
+ "MP"
+ ],
+ [
+ "US",
+ "OH"
+ ],
+ [
+ "US",
+ "OK"
+ ],
+ [
+ "US",
+ "OR"
+ ],
+ [
+ "US",
+ "PW"
+ ],
+ [
+ "US",
+ "PA"
+ ],
+ [
+ "US",
+ "PR"
+ ],
+ [
+ "US",
+ "RI"
+ ],
+ [
+ "US",
+ "SC"
+ ],
+ [
+ "US",
+ "SD"
+ ],
+ [
+ "US",
+ "TN"
+ ],
+ [
+ "US",
+ "TX"
+ ],
+ [
+ "US",
+ "UT"
+ ],
+ [
+ "US",
+ "VT"
+ ],
+ [
+ "US",
+ "VI"
+ ],
+ [
+ "US",
+ "VA"
+ ],
+ [
+ "US",
+ "WA"
+ ],
+ [
+ "US",
+ "WV"
+ ],
+ [
+ "US",
+ "WI"
+ ],
+ [
+ "US",
+ "WY"
+ ],
+ [
+ "CA",
+ "AB"
+ ],
+ [
+ "CA",
+ "BC"
+ ],
+ [
+ "CA",
+ "MB"
+ ],
+ [
+ "CA",
+ "NL"
+ ],
+ [
+ "CA",
+ "NB"
+ ],
+ [
+ "CA",
+ "NS"
+ ],
+ [
+ "CA",
+ "NT"
+ ],
+ [
+ "CA",
+ "NU"
+ ],
+ [
+ "CA",
+ "ON"
+ ],
+ [
+ "CA",
+ "PE"
+ ],
+ [
+ "CA",
+ "QC"
+ ],
+ [
+ "CA",
+ "SK"
+ ],
+ [
+ "CA",
+ "YT"
+ ],
+ [
+ "DE",
+ "NDS"
+ ],
+ [
+ "DE",
+ "BAW"
+ ],
+ [
+ "DE",
+ "BAY"
+ ],
+ [
+ "DE",
+ "BER"
+ ],
+ [
+ "DE",
+ "BRG"
+ ],
+ [
+ "DE",
+ "BRE"
+ ],
+ [
+ "DE",
+ "HAM"
+ ],
+ [
+ "DE",
+ "HES"
+ ],
+ [
+ "DE",
+ "MEC"
+ ],
+ [
+ "DE",
+ "NRW"
+ ],
+ [
+ "DE",
+ "RHE"
+ ],
+ [
+ "DE",
+ "SAR"
+ ],
+ [
+ "DE",
+ "SAS"
+ ],
+ [
+ "DE",
+ "SAC"
+ ],
+ [
+ "DE",
+ "SCN"
+ ],
+ [
+ "DE",
+ "THE"
+ ],
+ [
+ "AT",
+ "WI"
+ ],
+ [
+ "AT",
+ "NO"
+ ],
+ [
+ "AT",
+ "OO"
+ ],
+ [
+ "AT",
+ "SB"
+ ],
+ [
+ "AT",
+ "KN"
+ ],
+ [
+ "AT",
+ "ST"
+ ],
+ [
+ "AT",
+ "TI"
+ ],
+ [
+ "AT",
+ "BL"
+ ],
+ [
+ "AT",
+ "VB"
+ ],
+ [
+ "CH",
+ "AG"
+ ],
+ [
+ "CH",
+ "AI"
+ ],
+ [
+ "CH",
+ "AR"
+ ],
+ [
+ "CH",
+ "BE"
+ ],
+ [
+ "CH",
+ "BL"
+ ],
+ [
+ "CH",
+ "BS"
+ ],
+ [
+ "CH",
+ "FR"
+ ],
+ [
+ "CH",
+ "GE"
+ ],
+ [
+ "CH",
+ "GL"
+ ],
+ [
+ "CH",
+ "GR"
+ ],
+ [
+ "CH",
+ "JU"
+ ],
+ [
+ "CH",
+ "LU"
+ ],
+ [
+ "CH",
+ "NE"
+ ],
+ [
+ "CH",
+ "NW"
+ ],
+ [
+ "CH",
+ "OW"
+ ],
+ [
+ "CH",
+ "SG"
+ ],
+ [
+ "CH",
+ "SH"
+ ],
+ [
+ "CH",
+ "SO"
+ ],
+ [
+ "CH",
+ "SZ"
+ ],
+ [
+ "CH",
+ "TG"
+ ],
+ [
+ "CH",
+ "TI"
+ ],
+ [
+ "CH",
+ "UR"
+ ],
+ [
+ "CH",
+ "VD"
+ ],
+ [
+ "CH",
+ "VS"
+ ],
+ [
+ "CH",
+ "ZG"
+ ],
+ [
+ "CH",
+ "ZH"
+ ],
+ [
+ "ES",
+ "A Coru\u0441a"
+ ],
+ [
+ "ES",
+ "Alava"
+ ],
+ [
+ "ES",
+ "Albacete"
+ ],
+ [
+ "ES",
+ "Alicante"
+ ],
+ [
+ "ES",
+ "Almeria"
+ ],
+ [
+ "ES",
+ "Asturias"
+ ],
+ [
+ "ES",
+ "Avila"
+ ],
+ [
+ "ES",
+ "Badajoz"
+ ],
+ [
+ "ES",
+ "Baleares"
+ ],
+ [
+ "ES",
+ "Barcelona"
+ ],
+ [
+ "ES",
+ "Burgos"
+ ],
+ [
+ "ES",
+ "Caceres"
+ ],
+ [
+ "ES",
+ "Cadiz"
+ ],
+ [
+ "ES",
+ "Cantabria"
+ ],
+ [
+ "ES",
+ "Castellon"
+ ],
+ [
+ "ES",
+ "Ceuta"
+ ],
+ [
+ "ES",
+ "Ciudad Real"
+ ],
+ [
+ "ES",
+ "Cordoba"
+ ],
+ [
+ "ES",
+ "Cuenca"
+ ],
+ [
+ "ES",
+ "Girona"
+ ],
+ [
+ "ES",
+ "Granada"
+ ],
+ [
+ "ES",
+ "Guadalajara"
+ ],
+ [
+ "ES",
+ "Guipuzcoa"
+ ],
+ [
+ "ES",
+ "Huelva"
+ ],
+ [
+ "ES",
+ "Huesca"
+ ],
+ [
+ "ES",
+ "Jaen"
+ ],
+ [
+ "ES",
+ "La Rioja"
+ ],
+ [
+ "ES",
+ "Las Palmas"
+ ],
+ [
+ "ES",
+ "Leon"
+ ],
+ [
+ "ES",
+ "Lleida"
+ ],
+ [
+ "ES",
+ "Lugo"
+ ],
+ [
+ "ES",
+ "Madrid"
+ ],
+ [
+ "ES",
+ "Malaga"
+ ],
+ [
+ "ES",
+ "Melilla"
+ ],
+ [
+ "ES",
+ "Murcia"
+ ],
+ [
+ "ES",
+ "Navarra"
+ ],
+ [
+ "ES",
+ "Ourense"
+ ],
+ [
+ "ES",
+ "Palencia"
+ ],
+ [
+ "ES",
+ "Pontevedra"
+ ],
+ [
+ "ES",
+ "Salamanca"
+ ],
+ [
+ "ES",
+ "Santa Cruz de Tenerife"
+ ],
+ [
+ "ES",
+ "Segovia"
+ ],
+ [
+ "ES",
+ "Sevilla"
+ ],
+ [
+ "ES",
+ "Soria"
+ ],
+ [
+ "ES",
+ "Tarragona"
+ ],
+ [
+ "ES",
+ "Teruel"
+ ],
+ [
+ "ES",
+ "Toledo"
+ ],
+ [
+ "ES",
+ "Valencia"
+ ],
+ [
+ "ES",
+ "Valladolid"
+ ],
+ [
+ "ES",
+ "Vizcaya"
+ ],
+ [
+ "ES",
+ "Zamora"
+ ],
+ [
+ "ES",
+ "Zaragoza"
+ ],
+ [
+ "FR",
+ "1"
+ ],
+ [
+ "FR",
+ "2"
+ ],
+ [
+ "FR",
+ "3"
+ ],
+ [
+ "FR",
+ "4"
+ ],
+ [
+ "FR",
+ "5"
+ ],
+ [
+ "FR",
+ "6"
+ ],
+ [
+ "FR",
+ "7"
+ ],
+ [
+ "FR",
+ "8"
+ ],
+ [
+ "FR",
+ "9"
+ ],
+ [
+ "FR",
+ "10"
+ ],
+ [
+ "FR",
+ "11"
+ ],
+ [
+ "FR",
+ "12"
+ ],
+ [
+ "FR",
+ "13"
+ ],
+ [
+ "FR",
+ "14"
+ ],
+ [
+ "FR",
+ "15"
+ ],
+ [
+ "FR",
+ "16"
+ ],
+ [
+ "FR",
+ "17"
+ ],
+ [
+ "FR",
+ "18"
+ ],
+ [
+ "FR",
+ "19"
+ ],
+ [
+ "FR",
+ "2A"
+ ],
+ [
+ "FR",
+ "2B"
+ ],
+ [
+ "FR",
+ "21"
+ ],
+ [
+ "FR",
+ "22"
+ ],
+ [
+ "FR",
+ "23"
+ ],
+ [
+ "FR",
+ "24"
+ ],
+ [
+ "FR",
+ "25"
+ ],
+ [
+ "FR",
+ "26"
+ ],
+ [
+ "FR",
+ "27"
+ ],
+ [
+ "FR",
+ "28"
+ ],
+ [
+ "FR",
+ "29"
+ ],
+ [
+ "FR",
+ "30"
+ ],
+ [
+ "FR",
+ "31"
+ ],
+ [
+ "FR",
+ "32"
+ ],
+ [
+ "FR",
+ "33"
+ ],
+ [
+ "FR",
+ "34"
+ ],
+ [
+ "FR",
+ "35"
+ ],
+ [
+ "FR",
+ "36"
+ ],
+ [
+ "FR",
+ "37"
+ ],
+ [
+ "FR",
+ "38"
+ ],
+ [
+ "FR",
+ "39"
+ ],
+ [
+ "FR",
+ "40"
+ ],
+ [
+ "FR",
+ "41"
+ ],
+ [
+ "FR",
+ "42"
+ ],
+ [
+ "FR",
+ "43"
+ ],
+ [
+ "FR",
+ "44"
+ ],
+ [
+ "FR",
+ "45"
+ ],
+ [
+ "FR",
+ "46"
+ ],
+ [
+ "FR",
+ "47"
+ ],
+ [
+ "FR",
+ "48"
+ ],
+ [
+ "FR",
+ "49"
+ ],
+ [
+ "FR",
+ "50"
+ ],
+ [
+ "FR",
+ "51"
+ ],
+ [
+ "FR",
+ "52"
+ ],
+ [
+ "FR",
+ "53"
+ ],
+ [
+ "FR",
+ "54"
+ ],
+ [
+ "FR",
+ "55"
+ ],
+ [
+ "FR",
+ "56"
+ ],
+ [
+ "FR",
+ "57"
+ ],
+ [
+ "FR",
+ "58"
+ ],
+ [
+ "FR",
+ "59"
+ ],
+ [
+ "FR",
+ "60"
+ ],
+ [
+ "FR",
+ "61"
+ ],
+ [
+ "FR",
+ "62"
+ ],
+ [
+ "FR",
+ "63"
+ ],
+ [
+ "FR",
+ "64"
+ ],
+ [
+ "FR",
+ "65"
+ ],
+ [
+ "FR",
+ "66"
+ ],
+ [
+ "FR",
+ "67"
+ ],
+ [
+ "FR",
+ "68"
+ ],
+ [
+ "FR",
+ "69"
+ ],
+ [
+ "FR",
+ "70"
+ ],
+ [
+ "FR",
+ "71"
+ ],
+ [
+ "FR",
+ "72"
+ ],
+ [
+ "FR",
+ "73"
+ ],
+ [
+ "FR",
+ "74"
+ ],
+ [
+ "FR",
+ "75"
+ ],
+ [
+ "FR",
+ "76"
+ ],
+ [
+ "FR",
+ "77"
+ ],
+ [
+ "FR",
+ "78"
+ ],
+ [
+ "FR",
+ "79"
+ ],
+ [
+ "FR",
+ "80"
+ ],
+ [
+ "FR",
+ "81"
+ ],
+ [
+ "FR",
+ "82"
+ ],
+ [
+ "FR",
+ "83"
+ ],
+ [
+ "FR",
+ "84"
+ ],
+ [
+ "FR",
+ "85"
+ ],
+ [
+ "FR",
+ "86"
+ ],
+ [
+ "FR",
+ "87"
+ ],
+ [
+ "FR",
+ "88"
+ ],
+ [
+ "FR",
+ "89"
+ ],
+ [
+ "FR",
+ "90"
+ ],
+ [
+ "FR",
+ "91"
+ ],
+ [
+ "FR",
+ "92"
+ ],
+ [
+ "FR",
+ "93"
+ ],
+ [
+ "FR",
+ "94"
+ ],
+ [
+ "FR",
+ "95"
+ ],
+ [
+ "RO",
+ "AB"
+ ],
+ [
+ "RO",
+ "AR"
+ ],
+ [
+ "RO",
+ "AG"
+ ],
+ [
+ "RO",
+ "BC"
+ ],
+ [
+ "RO",
+ "BH"
+ ],
+ [
+ "RO",
+ "BN"
+ ],
+ [
+ "RO",
+ "BT"
+ ],
+ [
+ "RO",
+ "BV"
+ ],
+ [
+ "RO",
+ "BR"
+ ],
+ [
+ "RO",
+ "B"
+ ],
+ [
+ "RO",
+ "BZ"
+ ],
+ [
+ "RO",
+ "CS"
+ ],
+ [
+ "RO",
+ "CL"
+ ],
+ [
+ "RO",
+ "CJ"
+ ],
+ [
+ "RO",
+ "CT"
+ ],
+ [
+ "RO",
+ "CV"
+ ],
+ [
+ "RO",
+ "DB"
+ ],
+ [
+ "RO",
+ "DJ"
+ ],
+ [
+ "RO",
+ "GL"
+ ],
+ [
+ "RO",
+ "GR"
+ ],
+ [
+ "RO",
+ "GJ"
+ ],
+ [
+ "RO",
+ "HR"
+ ],
+ [
+ "RO",
+ "HD"
+ ],
+ [
+ "RO",
+ "IL"
+ ],
+ [
+ "RO",
+ "IS"
+ ],
+ [
+ "RO",
+ "IF"
+ ],
+ [
+ "RO",
+ "MM"
+ ],
+ [
+ "RO",
+ "MH"
+ ],
+ [
+ "RO",
+ "MS"
+ ],
+ [
+ "RO",
+ "NT"
+ ],
+ [
+ "RO",
+ "OT"
+ ],
+ [
+ "RO",
+ "PH"
+ ],
+ [
+ "RO",
+ "SM"
+ ],
+ [
+ "RO",
+ "SJ"
+ ],
+ [
+ "RO",
+ "SB"
+ ],
+ [
+ "RO",
+ "SV"
+ ],
+ [
+ "RO",
+ "TR"
+ ],
+ [
+ "RO",
+ "TM"
+ ],
+ [
+ "RO",
+ "TL"
+ ],
+ [
+ "RO",
+ "VS"
+ ],
+ [
+ "RO",
+ "VL"
+ ],
+ [
+ "RO",
+ "VN"
+ ],
+ [
+ "FI",
+ "Lappi"
+ ],
+ [
+ "FI",
+ "Pohjois-Pohjanmaa"
+ ],
+ [
+ "FI",
+ "Kainuu"
+ ],
+ [
+ "FI",
+ "Pohjois-Karjala"
+ ],
+ [
+ "FI",
+ "Pohjois-Savo"
+ ],
+ [
+ "FI",
+ "Etel\u00e4-Savo"
+ ],
+ [
+ "FI",
+ "Etel\u00e4-Pohjanmaa"
+ ],
+ [
+ "FI",
+ "Pohjanmaa"
+ ],
+ [
+ "FI",
+ "Pirkanmaa"
+ ],
+ [
+ "FI",
+ "Satakunta"
+ ],
+ [
+ "FI",
+ "Keski-Pohjanmaa"
+ ],
+ [
+ "FI",
+ "Keski-Suomi"
+ ],
+ [
+ "FI",
+ "Varsinais-Suomi"
+ ],
+ [
+ "FI",
+ "Etel\u00e4-Karjala"
+ ],
+ [
+ "FI",
+ "P\u00e4ij\u00e4t-H\u00e4me"
+ ],
+ [
+ "FI",
+ "Kanta-H\u00e4me"
+ ],
+ [
+ "FI",
+ "Uusimaa"
+ ],
+ [
+ "FI",
+ "It\u00e4-Uusimaa"
+ ],
+ [
+ "FI",
+ "Kymenlaakso"
+ ],
+ [
+ "FI",
+ "Ahvenanmaa"
+ ],
+ [
+ "EE",
+ "EE-37"
+ ],
+ [
+ "EE",
+ "EE-39"
+ ],
+ [
+ "EE",
+ "EE-44"
+ ],
+ [
+ "EE",
+ "EE-49"
+ ],
+ [
+ "EE",
+ "EE-51"
+ ],
+ [
+ "EE",
+ "EE-57"
+ ],
+ [
+ "EE",
+ "EE-59"
+ ],
+ [
+ "EE",
+ "EE-65"
+ ],
+ [
+ "EE",
+ "EE-67"
+ ],
+ [
+ "EE",
+ "EE-70"
+ ],
+ [
+ "EE",
+ "EE-74"
+ ],
+ [
+ "EE",
+ "EE-78"
+ ],
+ [
+ "EE",
+ "EE-82"
+ ],
+ [
+ "EE",
+ "EE-84"
+ ],
+ [
+ "EE",
+ "EE-86"
+ ],
+ [
+ "LV",
+ "LV-DGV"
+ ],
+ [
+ "LV",
+ "LV-JEL"
+ ],
+ [
+ "LV",
+ "J\u0113kabpils"
+ ],
+ [
+ "LV",
+ "LV-JUR"
+ ],
+ [
+ "LV",
+ "LV-LPX"
+ ],
+ [
+ "LV",
+ "LV-LE"
+ ],
+ [
+ "LV",
+ "LV-REZ"
+ ],
+ [
+ "LV",
+ "LV-RIX"
+ ],
+ [
+ "LV",
+ "LV-RI"
+ ],
+ [
+ "LV",
+ "Valmiera"
+ ],
+ [
+ "LV",
+ "LV-VEN"
+ ],
+ [
+ "LV",
+ "Aglonas novads"
+ ],
+ [
+ "LV",
+ "LV-AI"
+ ],
+ [
+ "LV",
+ "Aizputes novads"
+ ],
+ [
+ "LV",
+ "Akn\u012bstes novads"
+ ],
+ [
+ "LV",
+ "Alojas novads"
+ ],
+ [
+ "LV",
+ "Alsungas novads"
+ ],
+ [
+ "LV",
+ "LV-AL"
+ ],
+ [
+ "LV",
+ "Amatas novads"
+ ],
+ [
+ "LV",
+ "Apes novads"
+ ],
+ [
+ "LV",
+ "Auces novads"
+ ],
+ [
+ "LV",
+ "Bab\u012btes novads"
+ ],
+ [
+ "LV",
+ "Baldones novads"
+ ],
+ [
+ "LV",
+ "Baltinavas novads"
+ ],
+ [
+ "LV",
+ "LV-BL"
+ ],
+ [
+ "LV",
+ "LV-BU"
+ ],
+ [
+ "LV",
+ "Bever\u012bnas novads"
+ ],
+ [
+ "LV",
+ "Broc\u0113nu novads"
+ ],
+ [
+ "LV",
+ "Burtnieku novads"
+ ],
+ [
+ "LV",
+ "Carnikavas novads"
+ ],
+ [
+ "LV",
+ "Cesvaines novads"
+ ],
+ [
+ "LV",
+ "Ciblas novads"
+ ],
+ [
+ "LV",
+ "LV-CE"
+ ],
+ [
+ "LV",
+ "Dagdas novads"
+ ],
+ [
+ "LV",
+ "LV-DA"
+ ],
+ [
+ "LV",
+ "LV-DO"
+ ],
+ [
+ "LV",
+ "Dundagas novads"
+ ],
+ [
+ "LV",
+ "Durbes novads"
+ ],
+ [
+ "LV",
+ "Engures novads"
+ ],
+ [
+ "LV",
+ "Garkalnes novads"
+ ],
+ [
+ "LV",
+ "Grobi\u0146as novads"
+ ],
+ [
+ "LV",
+ "LV-GU"
+ ],
+ [
+ "LV",
+ "Iecavas novads"
+ ],
+ [
+ "LV",
+ "Ik\u0161\u0137iles novads"
+ ],
+ [
+ "LV",
+ "Il\u016bkstes novads"
+ ],
+ [
+ "LV",
+ "In\u010dukalna novads"
+ ],
+ [
+ "LV",
+ "Jaunjelgavas novads"
+ ],
+ [
+ "LV",
+ "Jaunpiebalgas novads"
+ ],
+ [
+ "LV",
+ "Jaunpils novads"
+ ],
+ [
+ "LV",
+ "LV-JL"
+ ],
+ [
+ "LV",
+ "LV-JK"
+ ],
+ [
+ "LV",
+ "Kandavas novads"
+ ],
+ [
+ "LV",
+ "Kokneses novads"
+ ],
+ [
+ "LV",
+ "Krimuldas novads"
+ ],
+ [
+ "LV",
+ "Krustpils novads"
+ ],
+ [
+ "LV",
+ "LV-KR"
+ ],
+ [
+ "LV",
+ "LV-KU"
+ ],
+ [
+ "LV",
+ "K\u0101rsavas novads"
+ ],
+ [
+ "LV",
+ "Lielv\u0101rdes novads"
+ ],
+ [
+ "LV",
+ "LV-LM"
+ ],
+ [
+ "LV",
+ "Lub\u0101nas novads"
+ ],
+ [
+ "LV",
+ "LV-LU"
+ ],
+ [
+ "LV",
+ "L\u012bgatnes novads"
+ ],
+ [
+ "LV",
+ "L\u012bv\u0101nu novads"
+ ],
+ [
+ "LV",
+ "LV-MA"
+ ],
+ [
+ "LV",
+ "Mazsalacas novads"
+ ],
+ [
+ "LV",
+ "M\u0101lpils novads"
+ ],
+ [
+ "LV",
+ "M\u0101rupes novads"
+ ],
+ [
+ "LV",
+ "Nauk\u0161\u0113nu novads"
+ ],
+ [
+ "LV",
+ "Neretas novads"
+ ],
+ [
+ "LV",
+ "N\u012bcas novads"
+ ],
+ [
+ "LV",
+ "LV-OG"
+ ],
+ [
+ "LV",
+ "Olaines novads"
+ ],
+ [
+ "LV",
+ "Ozolnieku novads"
+ ],
+ [
+ "LV",
+ "LV-PR"
+ ],
+ [
+ "LV",
+ "Priekules novads"
+ ],
+ [
+ "LV",
+ "Prieku\u013cu novads"
+ ],
+ [
+ "LV",
+ "P\u0101rgaujas novads"
+ ],
+ [
+ "LV",
+ "P\u0101vilostas novads"
+ ],
+ [
+ "LV",
+ "P\u013cavi\u0146u novads"
+ ],
+ [
+ "LV",
+ "Raunas novads"
+ ],
+ [
+ "LV",
+ "Riebi\u0146u novads"
+ ],
+ [
+ "LV",
+ "Rojas novads"
+ ],
+ [
+ "LV",
+ "Ropa\u017eu novads"
+ ],
+ [
+ "LV",
+ "Rucavas novads"
+ ],
+ [
+ "LV",
+ "Rug\u0101ju novads"
+ ],
+ [
+ "LV",
+ "Rund\u0101les novads"
+ ],
+ [
+ "LV",
+ "LV-RE"
+ ],
+ [
+ "LV",
+ "R\u016bjienas novads"
+ ],
+ [
+ "LV",
+ "Salacgr\u012bvas novads"
+ ],
+ [
+ "LV",
+ "Salas novads"
+ ],
+ [
+ "LV",
+ "Salaspils novads"
+ ],
+ [
+ "LV",
+ "LV-SA"
+ ],
+ [
+ "LV",
+ "Saulkrastu novads"
+ ],
+ [
+ "LV",
+ "Siguldas novads"
+ ],
+ [
+ "LV",
+ "Skrundas novads"
+ ],
+ [
+ "LV",
+ "Skr\u012bveru novads"
+ ],
+ [
+ "LV",
+ "Smiltenes novads"
+ ],
+ [
+ "LV",
+ "Stopi\u0146u novads"
+ ],
+ [
+ "LV",
+ "Stren\u010du novads"
+ ],
+ [
+ "LV",
+ "S\u0113jas novads"
+ ],
+ [
+ "LV",
+ "LV-TA"
+ ],
+ [
+ "LV",
+ "LV-TU"
+ ],
+ [
+ "LV",
+ "T\u0113rvetes novads"
+ ],
+ [
+ "LV",
+ "Vai\u0146odes novads"
+ ],
+ [
+ "LV",
+ "LV-VK"
+ ],
+ [
+ "LV",
+ "LV-VM"
+ ],
+ [
+ "LV",
+ "Varak\u013c\u0101nu novads"
+ ],
+ [
+ "LV",
+ "Vecpiebalgas novads"
+ ],
+ [
+ "LV",
+ "Vecumnieku novads"
+ ],
+ [
+ "LV",
+ "LV-VE"
+ ],
+ [
+ "LV",
+ "Vies\u012btes novads"
+ ],
+ [
+ "LV",
+ "Vi\u013cakas novads"
+ ],
+ [
+ "LV",
+ "Vi\u013c\u0101nu novads"
+ ],
+ [
+ "LV",
+ "V\u0101rkavas novads"
+ ],
+ [
+ "LV",
+ "Zilupes novads"
+ ],
+ [
+ "LV",
+ "\u0100da\u017eu novads"
+ ],
+ [
+ "LV",
+ "\u0112rg\u013cu novads"
+ ],
+ [
+ "LV",
+ "\u0136eguma novads"
+ ],
+ [
+ "LV",
+ "\u0136ekavas novads"
+ ],
+ [
+ "LT",
+ "LT-AL"
+ ],
+ [
+ "LT",
+ "LT-KU"
+ ],
+ [
+ "LT",
+ "LT-KL"
+ ],
+ [
+ "LT",
+ "LT-MR"
+ ],
+ [
+ "LT",
+ "LT-PN"
+ ],
+ [
+ "LT",
+ "LT-SA"
+ ],
+ [
+ "LT",
+ "LT-TA"
+ ],
+ [
+ "LT",
+ "LT-TE"
+ ],
+ [
+ "LT",
+ "LT-UT"
+ ],
+ [
+ "LT",
+ "LT-VL"
+ ],
+ [
+ "BR",
+ "AC"
+ ],
+ [
+ "BR",
+ "AL"
+ ],
+ [
+ "BR",
+ "AP"
+ ],
+ [
+ "BR",
+ "AM"
+ ],
+ [
+ "BR",
+ "BA"
+ ],
+ [
+ "BR",
+ "CE"
+ ],
+ [
+ "BR",
+ "ES"
+ ],
+ [
+ "BR",
+ "GO"
+ ],
+ [
+ "BR",
+ "MA"
+ ],
+ [
+ "BR",
+ "MT"
+ ],
+ [
+ "BR",
+ "MS"
+ ],
+ [
+ "BR",
+ "MG"
+ ],
+ [
+ "BR",
+ "PA"
+ ],
+ [
+ "BR",
+ "PB"
+ ],
+ [
+ "BR",
+ "PR"
+ ],
+ [
+ "BR",
+ "PE"
+ ],
+ [
+ "BR",
+ "PI"
+ ],
+ [
+ "BR",
+ "RJ"
+ ],
+ [
+ "BR",
+ "RN"
+ ],
+ [
+ "BR",
+ "RS"
+ ],
+ [
+ "BR",
+ "RO"
+ ],
+ [
+ "BR",
+ "RR"
+ ],
+ [
+ "BR",
+ "SC"
+ ],
+ [
+ "BR",
+ "SP"
+ ],
+ [
+ "BR",
+ "SE"
+ ],
+ [
+ "BR",
+ "TO"
+ ],
+ [
+ "BR",
+ "DF"
+ ],
+ [
+ "AL",
+ "AL-01"
+ ],
+ [
+ "AL",
+ "AL-09"
+ ],
+ [
+ "AL",
+ "AL-02"
+ ],
+ [
+ "AL",
+ "AL-03"
+ ],
+ [
+ "AL",
+ "AL-04"
+ ],
+ [
+ "AL",
+ "AL-05"
+ ],
+ [
+ "AL",
+ "AL-06"
+ ],
+ [
+ "AL",
+ "AL-07"
+ ],
+ [
+ "AL",
+ "AL-08"
+ ],
+ [
+ "AL",
+ "AL-10"
+ ],
+ [
+ "AL",
+ "AL-11"
+ ],
+ [
+ "AL",
+ "AL-12"
+ ],
+ [
+ "AR",
+ "AR-C"
+ ],
+ [
+ "AR",
+ "AR-B"
+ ],
+ [
+ "AR",
+ "AR-K"
+ ],
+ [
+ "AR",
+ "AR-H"
+ ],
+ [
+ "AR",
+ "AR-U"
+ ],
+ [
+ "AR",
+ "AR-X"
+ ],
+ [
+ "AR",
+ "AR-W"
+ ],
+ [
+ "AR",
+ "AR-E"
+ ],
+ [
+ "AR",
+ "AR-P"
+ ],
+ [
+ "AR",
+ "AR-Y"
+ ],
+ [
+ "AR",
+ "AR-L"
+ ],
+ [
+ "AR",
+ "AR-F"
+ ],
+ [
+ "AR",
+ "AR-M"
+ ],
+ [
+ "AR",
+ "AR-N"
+ ],
+ [
+ "AR",
+ "AR-Q"
+ ],
+ [
+ "AR",
+ "AR-R"
+ ],
+ [
+ "AR",
+ "AR-A"
+ ],
+ [
+ "AR",
+ "AR-J"
+ ],
+ [
+ "AR",
+ "AR-D"
+ ],
+ [
+ "AR",
+ "AR-Z"
+ ],
+ [
+ "AR",
+ "AR-S"
+ ],
+ [
+ "AR",
+ "AR-G"
+ ],
+ [
+ "AR",
+ "AR-V"
+ ],
+ [
+ "AR",
+ "AR-T"
+ ],
+ [
+ "HR",
+ "HR-01"
+ ],
+ [
+ "HR",
+ "HR-02"
+ ],
+ [
+ "HR",
+ "HR-03"
+ ],
+ [
+ "HR",
+ "HR-04"
+ ],
+ [
+ "HR",
+ "HR-05"
+ ],
+ [
+ "HR",
+ "HR-06"
+ ],
+ [
+ "HR",
+ "HR-07"
+ ],
+ [
+ "HR",
+ "HR-08"
+ ],
+ [
+ "HR",
+ "HR-09"
+ ],
+ [
+ "HR",
+ "HR-10"
+ ],
+ [
+ "HR",
+ "HR-11"
+ ],
+ [
+ "HR",
+ "HR-12"
+ ],
+ [
+ "HR",
+ "HR-13"
+ ],
+ [
+ "HR",
+ "HR-14"
+ ],
+ [
+ "HR",
+ "HR-15"
+ ],
+ [
+ "HR",
+ "HR-16"
+ ],
+ [
+ "HR",
+ "HR-17"
+ ],
+ [
+ "HR",
+ "HR-18"
+ ],
+ [
+ "HR",
+ "HR-19"
+ ],
+ [
+ "HR",
+ "HR-20"
+ ],
+ [
+ "HR",
+ "HR-21"
+ ],
+ [
+ "IN",
+ "AN"
+ ],
+ [
+ "IN",
+ "AP"
+ ],
+ [
+ "IN",
+ "AR"
+ ],
+ [
+ "IN",
+ "AS"
+ ],
+ [
+ "IN",
+ "BR"
+ ],
+ [
+ "IN",
+ "CH"
+ ],
+ [
+ "IN",
+ "CT"
+ ],
+ [
+ "IN",
+ "DN"
+ ],
+ [
+ "IN",
+ "DD"
+ ],
+ [
+ "IN",
+ "DL"
+ ],
+ [
+ "IN",
+ "GA"
+ ],
+ [
+ "IN",
+ "GJ"
+ ],
+ [
+ "IN",
+ "HR"
+ ],
+ [
+ "IN",
+ "HP"
+ ],
+ [
+ "IN",
+ "JK"
+ ],
+ [
+ "IN",
+ "JH"
+ ],
+ [
+ "IN",
+ "KA"
+ ],
+ [
+ "IN",
+ "KL"
+ ],
+ [
+ "IN",
+ "LD"
+ ],
+ [
+ "IN",
+ "MP"
+ ],
+ [
+ "IN",
+ "MH"
+ ],
+ [
+ "IN",
+ "MN"
+ ],
+ [
+ "IN",
+ "ML"
+ ],
+ [
+ "IN",
+ "MZ"
+ ],
+ [
+ "IN",
+ "NL"
+ ],
+ [
+ "IN",
+ "OR"
+ ],
+ [
+ "IN",
+ "PY"
+ ],
+ [
+ "IN",
+ "PB"
+ ],
+ [
+ "IN",
+ "RJ"
+ ],
+ [
+ "IN",
+ "SK"
+ ],
+ [
+ "IN",
+ "TN"
+ ],
+ [
+ "IN",
+ "TG"
+ ],
+ [
+ "IN",
+ "TR"
+ ],
+ [
+ "IN",
+ "UP"
+ ],
+ [
+ "IN",
+ "UT"
+ ],
+ [
+ "IN",
+ "WB"
+ ],
+ [
+ "AU",
+ "ACT"
+ ],
+ [
+ "AU",
+ "NSW"
+ ],
+ [
+ "AU",
+ "VIC"
+ ],
+ [
+ "AU",
+ "QLD"
+ ],
+ [
+ "AU",
+ "SA"
+ ],
+ [
+ "AU",
+ "TAS"
+ ],
+ [
+ "AU",
+ "WA"
+ ],
+ [
+ "AU",
+ "NT"
+ ],
+ [
+ "BY",
+ "BY-BR"
+ ],
+ [
+ "BY",
+ "BY-HO"
+ ],
+ [
+ "BY",
+ "BY-HM"
+ ],
+ [
+ "BY",
+ "BY-HR"
+ ],
+ [
+ "BY",
+ "BY-MA"
+ ],
+ [
+ "BY",
+ "BY-MI"
+ ],
+ [
+ "BY",
+ "BY-VI"
+ ],
+ [
+ "BE",
+ "VAN"
+ ],
+ [
+ "BE",
+ "WBR"
+ ],
+ [
+ "BE",
+ "BRU"
+ ],
+ [
+ "BE",
+ "WHT"
+ ],
+ [
+ "BE",
+ "VLI"
+ ],
+ [
+ "BE",
+ "WLG"
+ ],
+ [
+ "BE",
+ "WLX"
+ ],
+ [
+ "BE",
+ "WNA"
+ ],
+ [
+ "BE",
+ "VOV"
+ ],
+ [
+ "BE",
+ "VBR"
+ ],
+ [
+ "BE",
+ "VWV"
+ ],
+ [
+ "BO",
+ "BO-C"
+ ],
+ [
+ "BO",
+ "BO-H"
+ ],
+ [
+ "BO",
+ "BO-B"
+ ],
+ [
+ "BO",
+ "BO-L"
+ ],
+ [
+ "BO",
+ "BO-O"
+ ],
+ [
+ "BO",
+ "BO-N"
+ ],
+ [
+ "BO",
+ "BO-P"
+ ],
+ [
+ "BO",
+ "BO-S"
+ ],
+ [
+ "BO",
+ "BO-T"
+ ],
+ [
+ "BG",
+ "BG-01"
+ ],
+ [
+ "BG",
+ "BG-02"
+ ],
+ [
+ "BG",
+ "BG-03"
+ ],
+ [
+ "BG",
+ "BG-04"
+ ],
+ [
+ "BG",
+ "BG-05"
+ ],
+ [
+ "BG",
+ "BG-06"
+ ],
+ [
+ "BG",
+ "BG-07"
+ ],
+ [
+ "BG",
+ "BG-08"
+ ],
+ [
+ "BG",
+ "BG-09"
+ ],
+ [
+ "BG",
+ "BG-10"
+ ],
+ [
+ "BG",
+ "BG-11"
+ ],
+ [
+ "BG",
+ "BG-12"
+ ],
+ [
+ "BG",
+ "BG-13"
+ ],
+ [
+ "BG",
+ "BG-14"
+ ],
+ [
+ "BG",
+ "BG-15"
+ ],
+ [
+ "BG",
+ "BG-16"
+ ],
+ [
+ "BG",
+ "BG-17"
+ ],
+ [
+ "BG",
+ "BG-18"
+ ],
+ [
+ "BG",
+ "BG-19"
+ ],
+ [
+ "BG",
+ "BG-20"
+ ],
+ [
+ "BG",
+ "BG-21"
+ ],
+ [
+ "BG",
+ "BG-22"
+ ],
+ [
+ "BG",
+ "BG-23"
+ ],
+ [
+ "BG",
+ "BG-24"
+ ],
+ [
+ "BG",
+ "BG-25"
+ ],
+ [
+ "BG",
+ "BG-26"
+ ],
+ [
+ "BG",
+ "BG-27"
+ ],
+ [
+ "BG",
+ "BG-28"
+ ],
+ [
+ "CL",
+ "CL-AI"
+ ],
+ [
+ "CL",
+ "CL-AN"
+ ],
+ [
+ "CL",
+ "CL-AP"
+ ],
+ [
+ "CL",
+ "CL-AR"
+ ],
+ [
+ "CL",
+ "CL-AT"
+ ],
+ [
+ "CL",
+ "CL-BI"
+ ],
+ [
+ "CL",
+ "CL-CO"
+ ],
+ [
+ "CL",
+ "CL-LI"
+ ],
+ [
+ "CL",
+ "CL-LL"
+ ],
+ [
+ "CL",
+ "CL-LR"
+ ],
+ [
+ "CL",
+ "CL-MA"
+ ],
+ [
+ "CL",
+ "CL-ML"
+ ],
+ [
+ "CL",
+ "CL-NB"
+ ],
+ [
+ "CL",
+ "CL-RM"
+ ],
+ [
+ "CL",
+ "CL-TA"
+ ],
+ [
+ "CL",
+ "CL-VS"
+ ],
+ [
+ "CN",
+ "CN-AH"
+ ],
+ [
+ "CN",
+ "CN-BJ"
+ ],
+ [
+ "CN",
+ "CN-CQ"
+ ],
+ [
+ "CN",
+ "CN-FJ"
+ ],
+ [
+ "CN",
+ "CN-GS"
+ ],
+ [
+ "CN",
+ "CN-GD"
+ ],
+ [
+ "CN",
+ "CN-GX"
+ ],
+ [
+ "CN",
+ "CN-GZ"
+ ],
+ [
+ "CN",
+ "CN-HI"
+ ],
+ [
+ "CN",
+ "CN-HE"
+ ],
+ [
+ "CN",
+ "CN-HL"
+ ],
+ [
+ "CN",
+ "CN-HA"
+ ],
+ [
+ "CN",
+ "CN-HK"
+ ],
+ [
+ "CN",
+ "CN-HB"
+ ],
+ [
+ "CN",
+ "CN-HN"
+ ],
+ [
+ "CN",
+ "CN-JS"
+ ],
+ [
+ "CN",
+ "CN-JX"
+ ],
+ [
+ "CN",
+ "CN-JL"
+ ],
+ [
+ "CN",
+ "CN-LN"
+ ],
+ [
+ "CN",
+ "CN-MO"
+ ],
+ [
+ "CN",
+ "CN-NM"
+ ],
+ [
+ "CN",
+ "CN-NX"
+ ],
+ [
+ "CN",
+ "CN-QH"
+ ],
+ [
+ "CN",
+ "CN-SN"
+ ],
+ [
+ "CN",
+ "CN-SD"
+ ],
+ [
+ "CN",
+ "CN-SH"
+ ],
+ [
+ "CN",
+ "CN-SX"
+ ],
+ [
+ "CN",
+ "CN-SC"
+ ],
+ [
+ "CN",
+ "CN-TW"
+ ],
+ [
+ "CN",
+ "CN-TJ"
+ ],
+ [
+ "CN",
+ "CN-XJ"
+ ],
+ [
+ "CN",
+ "CN-XZ"
+ ],
+ [
+ "CN",
+ "CN-YN"
+ ],
+ [
+ "CN",
+ "CN-ZJ"
+ ],
+ [
+ "CO",
+ "CO-AMA"
+ ],
+ [
+ "CO",
+ "CO-ANT"
+ ],
+ [
+ "CO",
+ "CO-ARA"
+ ],
+ [
+ "CO",
+ "CO-ATL"
+ ],
+ [
+ "CO",
+ "CO-BOL"
+ ],
+ [
+ "CO",
+ "CO-BOY"
+ ],
+ [
+ "CO",
+ "CO-CAL"
+ ],
+ [
+ "CO",
+ "CO-CAQ"
+ ],
+ [
+ "CO",
+ "CO-CAS"
+ ],
+ [
+ "CO",
+ "CO-CAU"
+ ],
+ [
+ "CO",
+ "CO-CES"
+ ],
+ [
+ "CO",
+ "CO-CHO"
+ ],
+ [
+ "CO",
+ "CO-COR"
+ ],
+ [
+ "CO",
+ "CO-CUN"
+ ],
+ [
+ "CO",
+ "CO-GUA"
+ ],
+ [
+ "CO",
+ "CO-GUV"
+ ],
+ [
+ "CO",
+ "CO-HUL"
+ ],
+ [
+ "CO",
+ "CO-LAG"
+ ],
+ [
+ "CO",
+ "CO-MAG"
+ ],
+ [
+ "CO",
+ "CO-MET"
+ ],
+ [
+ "CO",
+ "CO-NAR"
+ ],
+ [
+ "CO",
+ "CO-NSA"
+ ],
+ [
+ "CO",
+ "CO-PUT"
+ ],
+ [
+ "CO",
+ "CO-QUI"
+ ],
+ [
+ "CO",
+ "CO-RIS"
+ ],
+ [
+ "CO",
+ "CO-SAP"
+ ],
+ [
+ "CO",
+ "CO-SAN"
+ ],
+ [
+ "CO",
+ "CO-SUC"
+ ],
+ [
+ "CO",
+ "CO-TOL"
+ ],
+ [
+ "CO",
+ "CO-VAC"
+ ],
+ [
+ "CO",
+ "CO-VAU"
+ ],
+ [
+ "CO",
+ "CO-VID"
+ ],
+ [
+ "CZ",
+ "CZ-10"
+ ],
+ [
+ "CZ",
+ "CZ-20"
+ ],
+ [
+ "CZ",
+ "CZ-31"
+ ],
+ [
+ "CZ",
+ "CZ-32"
+ ],
+ [
+ "CZ",
+ "CZ-41"
+ ],
+ [
+ "CZ",
+ "CZ-42"
+ ],
+ [
+ "CZ",
+ "CZ-51"
+ ],
+ [
+ "CZ",
+ "CZ-52"
+ ],
+ [
+ "CZ",
+ "CZ-53"
+ ],
+ [
+ "CZ",
+ "CZ-63"
+ ],
+ [
+ "CZ",
+ "CZ-64"
+ ],
+ [
+ "CZ",
+ "CZ-71"
+ ],
+ [
+ "CZ",
+ "CZ-72"
+ ],
+ [
+ "CZ",
+ "CZ-80"
+ ],
+ [
+ "DK",
+ "DK-84"
+ ],
+ [
+ "DK",
+ "DK-82"
+ ],
+ [
+ "DK",
+ "DK-81"
+ ],
+ [
+ "DK",
+ "DK-85"
+ ],
+ [
+ "DK",
+ "DK-83"
+ ],
+ [
+ "EC",
+ "EC-A"
+ ],
+ [
+ "EC",
+ "EC-B"
+ ],
+ [
+ "EC",
+ "EC-F"
+ ],
+ [
+ "EC",
+ "EC-C"
+ ],
+ [
+ "EC",
+ "EC-H"
+ ],
+ [
+ "EC",
+ "EC-X"
+ ],
+ [
+ "EC",
+ "EC-O"
+ ],
+ [
+ "EC",
+ "EC-E"
+ ],
+ [
+ "EC",
+ "EC-W"
+ ],
+ [
+ "EC",
+ "EC-G"
+ ],
+ [
+ "EC",
+ "EC-I"
+ ],
+ [
+ "EC",
+ "EC-L"
+ ],
+ [
+ "EC",
+ "EC-R"
+ ],
+ [
+ "EC",
+ "EC-M"
+ ],
+ [
+ "EC",
+ "EC-S"
+ ],
+ [
+ "EC",
+ "EC-N"
+ ],
+ [
+ "EC",
+ "EC-D"
+ ],
+ [
+ "EC",
+ "EC-Y"
+ ],
+ [
+ "EC",
+ "EC-P"
+ ],
+ [
+ "EC",
+ "EC-SE"
+ ],
+ [
+ "EC",
+ "EC-SD"
+ ],
+ [
+ "EC",
+ "EC-U"
+ ],
+ [
+ "EC",
+ "EC-T"
+ ],
+ [
+ "EC",
+ "EC-Z"
+ ],
+ [
+ "GR",
+ "GR-A"
+ ],
+ [
+ "GR",
+ "GR-I"
+ ],
+ [
+ "GR",
+ "GR-G"
+ ],
+ [
+ "GR",
+ "GR-C"
+ ],
+ [
+ "GR",
+ "GR-F"
+ ],
+ [
+ "GR",
+ "GR-D"
+ ],
+ [
+ "GR",
+ "GR-B"
+ ],
+ [
+ "GR",
+ "GR-M"
+ ],
+ [
+ "GR",
+ "GR-L"
+ ],
+ [
+ "GR",
+ "GR-J"
+ ],
+ [
+ "GR",
+ "GR-H"
+ ],
+ [
+ "GR",
+ "GR-E"
+ ],
+ [
+ "GR",
+ "GR-K"
+ ],
+ [
+ "GR",
+ "GR-69"
+ ],
+ [
+ "GY",
+ "GY-BA"
+ ],
+ [
+ "GY",
+ "GY-CU"
+ ],
+ [
+ "GY",
+ "GY-DE"
+ ],
+ [
+ "GY",
+ "GY-EB"
+ ],
+ [
+ "GY",
+ "GY-ES"
+ ],
+ [
+ "GY",
+ "GY-MA"
+ ],
+ [
+ "GY",
+ "GY-PM"
+ ],
+ [
+ "GY",
+ "GY-PT"
+ ],
+ [
+ "GY",
+ "GY-UD"
+ ],
+ [
+ "GY",
+ "GY-UT"
+ ],
+ [
+ "IS",
+ "IS-01"
+ ],
+ [
+ "IS",
+ "IS-02"
+ ],
+ [
+ "IS",
+ "IS-03"
+ ],
+ [
+ "IS",
+ "IS-04"
+ ],
+ [
+ "IS",
+ "IS-05"
+ ],
+ [
+ "IS",
+ "IS-06"
+ ],
+ [
+ "IS",
+ "IS-07"
+ ],
+ [
+ "IS",
+ "IS-08"
+ ],
+ [
+ "IT",
+ "AG"
+ ],
+ [
+ "IT",
+ "AL"
+ ],
+ [
+ "IT",
+ "AN"
+ ],
+ [
+ "IT",
+ "AO"
+ ],
+ [
+ "IT",
+ "AQ"
+ ],
+ [
+ "IT",
+ "AR"
+ ],
+ [
+ "IT",
+ "AP"
+ ],
+ [
+ "IT",
+ "AT"
+ ],
+ [
+ "IT",
+ "AV"
+ ],
+ [
+ "IT",
+ "BA"
+ ],
+ [
+ "IT",
+ "BT"
+ ],
+ [
+ "IT",
+ "BL"
+ ],
+ [
+ "IT",
+ "BN"
+ ],
+ [
+ "IT",
+ "BG"
+ ],
+ [
+ "IT",
+ "BI"
+ ],
+ [
+ "IT",
+ "BO"
+ ],
+ [
+ "IT",
+ "BZ"
+ ],
+ [
+ "IT",
+ "BS"
+ ],
+ [
+ "IT",
+ "BR"
+ ],
+ [
+ "IT",
+ "CA"
+ ],
+ [
+ "IT",
+ "CL"
+ ],
+ [
+ "IT",
+ "CB"
+ ],
+ [
+ "IT",
+ "CI"
+ ],
+ [
+ "IT",
+ "CE"
+ ],
+ [
+ "IT",
+ "CT"
+ ],
+ [
+ "IT",
+ "CZ"
+ ],
+ [
+ "IT",
+ "CH"
+ ],
+ [
+ "IT",
+ "CO"
+ ],
+ [
+ "IT",
+ "CS"
+ ],
+ [
+ "IT",
+ "CR"
+ ],
+ [
+ "IT",
+ "KR"
+ ],
+ [
+ "IT",
+ "CN"
+ ],
+ [
+ "IT",
+ "EN"
+ ],
+ [
+ "IT",
+ "FM"
+ ],
+ [
+ "IT",
+ "FE"
+ ],
+ [
+ "IT",
+ "FI"
+ ],
+ [
+ "IT",
+ "FG"
+ ],
+ [
+ "IT",
+ "FC"
+ ],
+ [
+ "IT",
+ "FR"
+ ],
+ [
+ "IT",
+ "GE"
+ ],
+ [
+ "IT",
+ "GO"
+ ],
+ [
+ "IT",
+ "GR"
+ ],
+ [
+ "IT",
+ "IM"
+ ],
+ [
+ "IT",
+ "IS"
+ ],
+ [
+ "IT",
+ "SP"
+ ],
+ [
+ "IT",
+ "LT"
+ ],
+ [
+ "IT",
+ "LE"
+ ],
+ [
+ "IT",
+ "LC"
+ ],
+ [
+ "IT",
+ "LI"
+ ],
+ [
+ "IT",
+ "LO"
+ ],
+ [
+ "IT",
+ "LU"
+ ],
+ [
+ "IT",
+ "MC"
+ ],
+ [
+ "IT",
+ "MN"
+ ],
+ [
+ "IT",
+ "MS"
+ ],
+ [
+ "IT",
+ "MT"
+ ],
+ [
+ "IT",
+ "VS"
+ ],
+ [
+ "IT",
+ "ME"
+ ],
+ [
+ "IT",
+ "MI"
+ ],
+ [
+ "IT",
+ "MO"
+ ],
+ [
+ "IT",
+ "MB"
+ ],
+ [
+ "IT",
+ "NA"
+ ],
+ [
+ "IT",
+ "NO"
+ ],
+ [
+ "IT",
+ "NU"
+ ],
+ [
+ "IT",
+ "OG"
+ ],
+ [
+ "IT",
+ "OT"
+ ],
+ [
+ "IT",
+ "OR"
+ ],
+ [
+ "IT",
+ "PD"
+ ],
+ [
+ "IT",
+ "PA"
+ ],
+ [
+ "IT",
+ "PR"
+ ],
+ [
+ "IT",
+ "PV"
+ ],
+ [
+ "IT",
+ "PG"
+ ],
+ [
+ "IT",
+ "PU"
+ ],
+ [
+ "IT",
+ "PE"
+ ],
+ [
+ "IT",
+ "PC"
+ ],
+ [
+ "IT",
+ "PI"
+ ],
+ [
+ "IT",
+ "PT"
+ ],
+ [
+ "IT",
+ "PN"
+ ],
+ [
+ "IT",
+ "PZ"
+ ],
+ [
+ "IT",
+ "PO"
+ ],
+ [
+ "IT",
+ "RG"
+ ],
+ [
+ "IT",
+ "RA"
+ ],
+ [
+ "IT",
+ "RC"
+ ],
+ [
+ "IT",
+ "RE"
+ ],
+ [
+ "IT",
+ "RI"
+ ],
+ [
+ "IT",
+ "RN"
+ ],
+ [
+ "IT",
+ "RM"
+ ],
+ [
+ "IT",
+ "RO"
+ ],
+ [
+ "IT",
+ "SA"
+ ],
+ [
+ "IT",
+ "SS"
+ ],
+ [
+ "IT",
+ "SV"
+ ],
+ [
+ "IT",
+ "SI"
+ ],
+ [
+ "IT",
+ "SR"
+ ],
+ [
+ "IT",
+ "SO"
+ ],
+ [
+ "IT",
+ "TA"
+ ],
+ [
+ "IT",
+ "TE"
+ ],
+ [
+ "IT",
+ "TR"
+ ],
+ [
+ "IT",
+ "TO"
+ ],
+ [
+ "IT",
+ "TP"
+ ],
+ [
+ "IT",
+ "TN"
+ ],
+ [
+ "IT",
+ "TV"
+ ],
+ [
+ "IT",
+ "TS"
+ ],
+ [
+ "IT",
+ "UD"
+ ],
+ [
+ "IT",
+ "VA"
+ ],
+ [
+ "IT",
+ "VE"
+ ],
+ [
+ "IT",
+ "VB"
+ ],
+ [
+ "IT",
+ "VC"
+ ],
+ [
+ "IT",
+ "VR"
+ ],
+ [
+ "IT",
+ "VV"
+ ],
+ [
+ "IT",
+ "VI"
+ ],
+ [
+ "IT",
+ "VT"
+ ],
+ [
+ "MX",
+ "AGU"
+ ],
+ [
+ "MX",
+ "BCN"
+ ],
+ [
+ "MX",
+ "BCS"
+ ],
+ [
+ "MX",
+ "CAM"
+ ],
+ [
+ "MX",
+ "CHP"
+ ],
+ [
+ "MX",
+ "CHH"
+ ],
+ [
+ "MX",
+ "CMX"
+ ],
+ [
+ "MX",
+ "COA"
+ ],
+ [
+ "MX",
+ "COL"
+ ],
+ [
+ "MX",
+ "DUR"
+ ],
+ [
+ "MX",
+ "MEX"
+ ],
+ [
+ "MX",
+ "GUA"
+ ],
+ [
+ "MX",
+ "GRO"
+ ],
+ [
+ "MX",
+ "HID"
+ ],
+ [
+ "MX",
+ "JAL"
+ ],
+ [
+ "MX",
+ "MIC"
+ ],
+ [
+ "MX",
+ "MOR"
+ ],
+ [
+ "MX",
+ "NAY"
+ ],
+ [
+ "MX",
+ "NLE"
+ ],
+ [
+ "MX",
+ "OAX"
+ ],
+ [
+ "MX",
+ "PUE"
+ ],
+ [
+ "MX",
+ "QUE"
+ ],
+ [
+ "MX",
+ "ROO"
+ ],
+ [
+ "MX",
+ "SLP"
+ ],
+ [
+ "MX",
+ "SIN"
+ ],
+ [
+ "MX",
+ "SON"
+ ],
+ [
+ "MX",
+ "TAB"
+ ],
+ [
+ "MX",
+ "TAM"
+ ],
+ [
+ "MX",
+ "TLA"
+ ],
+ [
+ "MX",
+ "VER"
+ ],
+ [
+ "MX",
+ "YUC"
+ ],
+ [
+ "MX",
+ "ZAC"
+ ],
+ [
+ "PY",
+ "PY-ASU"
+ ],
+ [
+ "PY",
+ "PY-16"
+ ],
+ [
+ "PY",
+ "PY-10"
+ ],
+ [
+ "PY",
+ "PY-13"
+ ],
+ [
+ "PY",
+ "PY-19"
+ ],
+ [
+ "PY",
+ "PY-5"
+ ],
+ [
+ "PY",
+ "PY-6"
+ ],
+ [
+ "PY",
+ "PY-14"
+ ],
+ [
+ "PY",
+ "PY-11"
+ ],
+ [
+ "PY",
+ "PY-1"
+ ],
+ [
+ "PY",
+ "PY-3"
+ ],
+ [
+ "PY",
+ "PY-4"
+ ],
+ [
+ "PY",
+ "PY-7"
+ ],
+ [
+ "PY",
+ "PY-8"
+ ],
+ [
+ "PY",
+ "PY-12"
+ ],
+ [
+ "PY",
+ "PY-9"
+ ],
+ [
+ "PY",
+ "PY-15"
+ ],
+ [
+ "PY",
+ "PY-2"
+ ],
+ [
+ "PE",
+ "PE-LMA"
+ ],
+ [
+ "PE",
+ "PE-AMA"
+ ],
+ [
+ "PE",
+ "PE-ANC"
+ ],
+ [
+ "PE",
+ "PE-APU"
+ ],
+ [
+ "PE",
+ "PE-ARE"
+ ],
+ [
+ "PE",
+ "PE-AYA"
+ ],
+ [
+ "PE",
+ "PE-CAJ"
+ ],
+ [
+ "PE",
+ "PE-CUS"
+ ],
+ [
+ "PE",
+ "PE-CAL"
+ ],
+ [
+ "PE",
+ "PE-HUV"
+ ],
+ [
+ "PE",
+ "PE-HUC"
+ ],
+ [
+ "PE",
+ "PE-ICA"
+ ],
+ [
+ "PE",
+ "PE-JUN"
+ ],
+ [
+ "PE",
+ "PE-LAL"
+ ],
+ [
+ "PE",
+ "PE-LAM"
+ ],
+ [
+ "PE",
+ "PE-LIM"
+ ],
+ [
+ "PE",
+ "PE-LOR"
+ ],
+ [
+ "PE",
+ "PE-MDD"
+ ],
+ [
+ "PE",
+ "PE-MOQ"
+ ],
+ [
+ "PE",
+ "PE-PAS"
+ ],
+ [
+ "PE",
+ "PE-PIU"
+ ],
+ [
+ "PE",
+ "PE-PUN"
+ ],
+ [
+ "PE",
+ "PE-SAM"
+ ],
+ [
+ "PE",
+ "PE-TAC"
+ ],
+ [
+ "PE",
+ "PE-TUM"
+ ],
+ [
+ "PE",
+ "PE-UCA"
+ ],
+ [
+ "PL",
+ "PL-02"
+ ],
+ [
+ "PL",
+ "PL-04"
+ ],
+ [
+ "PL",
+ "PL-06"
+ ],
+ [
+ "PL",
+ "PL-08"
+ ],
+ [
+ "PL",
+ "PL-10"
+ ],
+ [
+ "PL",
+ "PL-12"
+ ],
+ [
+ "PL",
+ "PL-14"
+ ],
+ [
+ "PL",
+ "PL-16"
+ ],
+ [
+ "PL",
+ "PL-18"
+ ],
+ [
+ "PL",
+ "PL-20"
+ ],
+ [
+ "PL",
+ "PL-22"
+ ],
+ [
+ "PL",
+ "PL-24"
+ ],
+ [
+ "PL",
+ "PL-26"
+ ],
+ [
+ "PL",
+ "PL-28"
+ ],
+ [
+ "PL",
+ "PL-30"
+ ],
+ [
+ "PL",
+ "PL-32"
+ ],
+ [
+ "PT",
+ "PT-01"
+ ],
+ [
+ "PT",
+ "PT-02"
+ ],
+ [
+ "PT",
+ "PT-03"
+ ],
+ [
+ "PT",
+ "PT-04"
+ ],
+ [
+ "PT",
+ "PT-05"
+ ],
+ [
+ "PT",
+ "PT-06"
+ ],
+ [
+ "PT",
+ "PT-07"
+ ],
+ [
+ "PT",
+ "PT-08"
+ ],
+ [
+ "PT",
+ "PT-09"
+ ],
+ [
+ "PT",
+ "PT-10"
+ ],
+ [
+ "PT",
+ "PT-11"
+ ],
+ [
+ "PT",
+ "PT-12"
+ ],
+ [
+ "PT",
+ "PT-13"
+ ],
+ [
+ "PT",
+ "PT-14"
+ ],
+ [
+ "PT",
+ "PT-15"
+ ],
+ [
+ "PT",
+ "PT-16"
+ ],
+ [
+ "PT",
+ "PT-17"
+ ],
+ [
+ "PT",
+ "PT-18"
+ ],
+ [
+ "PT",
+ "PT-20"
+ ],
+ [
+ "PT",
+ "PT-30"
+ ],
+ [
+ "SR",
+ "SR-BR"
+ ],
+ [
+ "SR",
+ "SR-CM"
+ ],
+ [
+ "SR",
+ "SR-CR"
+ ],
+ [
+ "SR",
+ "SR-MA"
+ ],
+ [
+ "SR",
+ "SR-NI"
+ ],
+ [
+ "SR",
+ "SR-PR"
+ ],
+ [
+ "SR",
+ "SR-PM"
+ ],
+ [
+ "SR",
+ "SR-SA"
+ ],
+ [
+ "SR",
+ "SR-SI"
+ ],
+ [
+ "SR",
+ "SR-WA"
+ ],
+ [
+ "SE",
+ "SE-K"
+ ],
+ [
+ "SE",
+ "SE-W"
+ ],
+ [
+ "SE",
+ "SE-I"
+ ],
+ [
+ "SE",
+ "SE-X"
+ ],
+ [
+ "SE",
+ "SE-N"
+ ],
+ [
+ "SE",
+ "SE-Z"
+ ],
+ [
+ "SE",
+ "SE-F"
+ ],
+ [
+ "SE",
+ "SE-H"
+ ],
+ [
+ "SE",
+ "SE-G"
+ ],
+ [
+ "SE",
+ "SE-BD"
+ ],
+ [
+ "SE",
+ "SE-M"
+ ],
+ [
+ "SE",
+ "SE-AB"
+ ],
+ [
+ "SE",
+ "SE-D"
+ ],
+ [
+ "SE",
+ "SE-C"
+ ],
+ [
+ "SE",
+ "SE-S"
+ ],
+ [
+ "SE",
+ "SE-AC"
+ ],
+ [
+ "SE",
+ "SE-Y"
+ ],
+ [
+ "SE",
+ "SE-U"
+ ],
+ [
+ "SE",
+ "SE-O"
+ ],
+ [
+ "SE",
+ "SE-T"
+ ],
+ [
+ "SE",
+ "SE-E"
+ ],
+ [
+ "UY",
+ "UY-AR"
+ ],
+ [
+ "UY",
+ "UY-CA"
+ ],
+ [
+ "UY",
+ "UY-CL"
+ ],
+ [
+ "UY",
+ "UY-CO"
+ ],
+ [
+ "UY",
+ "UY-DU"
+ ],
+ [
+ "UY",
+ "UY-FS"
+ ],
+ [
+ "UY",
+ "UY-FD"
+ ],
+ [
+ "UY",
+ "UY-LA"
+ ],
+ [
+ "UY",
+ "UY-MA"
+ ],
+ [
+ "UY",
+ "UY-MO"
+ ],
+ [
+ "UY",
+ "UY-PA"
+ ],
+ [
+ "UY",
+ "UY-RN"
+ ],
+ [
+ "UY",
+ "UY-RV"
+ ],
+ [
+ "UY",
+ "UY-RO"
+ ],
+ [
+ "UY",
+ "UY-SA"
+ ],
+ [
+ "UY",
+ "UY-SJ"
+ ],
+ [
+ "UY",
+ "UY-SO"
+ ],
+ [
+ "UY",
+ "UY-TA"
+ ],
+ [
+ "UY",
+ "UY-TT"
+ ],
+ [
+ "VE",
+ "VE-W"
+ ],
+ [
+ "VE",
+ "VE-A"
+ ],
+ [
+ "VE",
+ "VE-Z"
+ ],
+ [
+ "VE",
+ "VE-B"
+ ],
+ [
+ "VE",
+ "VE-C"
+ ],
+ [
+ "VE",
+ "VE-D"
+ ],
+ [
+ "VE",
+ "VE-E"
+ ],
+ [
+ "VE",
+ "VE-F"
+ ],
+ [
+ "VE",
+ "VE-G"
+ ],
+ [
+ "VE",
+ "VE-H"
+ ],
+ [
+ "VE",
+ "VE-Y"
+ ],
+ [
+ "VE",
+ "VE-I"
+ ],
+ [
+ "VE",
+ "VE-J"
+ ],
+ [
+ "VE",
+ "VE-K"
+ ],
+ [
+ "VE",
+ "VE-L"
+ ],
+ [
+ "VE",
+ "VE-M"
+ ],
+ [
+ "VE",
+ "VE-N"
+ ],
+ [
+ "VE",
+ "VE-O"
+ ],
+ [
+ "VE",
+ "VE-P"
+ ],
+ [
+ "VE",
+ "VE-R"
+ ],
+ [
+ "VE",
+ "VE-S"
+ ],
+ [
+ "VE",
+ "VE-T"
+ ],
+ [
+ "VE",
+ "VE-X"
+ ],
+ [
+ "VE",
+ "VE-U"
+ ],
+ [
+ "VE",
+ "VE-V"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for product ID 1492.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1492 AND attribute_id = 155 AND store_id = 0;",
+ "answer": [
+ "196"
+ ],
+ "sql_execute_result": [
+ [
+ "196"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the rating code for rating ID 4.",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Get the category path for category ID 13.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 13 AND attribute_id = 120 AND store_id = 0;",
+ "answer": [
+ "men/bottoms-men"
+ ],
+ "sql_execute_result": [
+ [
+ "men/bottoms-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the option value for the rating ID 3 with option ID 12?",
+ "sql": "SELECT value FROM rating_option WHERE rating_id = 3 AND option_id = 12;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Determine the value of the integer attribute for product ID 942.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 942 AND attribute_id = 97 AND store_id = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the text description for the product with entity ID 357?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 357 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.
\n• Red 1/4 zip pullover.
• Adjustable VELCRO® sleeve cuffs.
• Two hand pockets.
• Napoleon pocket.
• Machine wash/dry
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.
\n• Red 1/4 zip pullover.
• Adjustable VELCRO® sleeve cuffs.
• Two hand pockets.
• Napoleon pocket.
• Machine wash/dry
"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the rating with ID 2 is active.",
+ "sql": "SELECT is_active FROM rating WHERE rating_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the category value for category ID 37?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 37 AND attribute_id = 119 AND store_id = 0;",
+ "answer": [
+ "sale"
+ ],
+ "sql_execute_result": [
+ [
+ "sale"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have the attribute ID 155 with a value of '196'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_text WHERE attribute_id = 155 AND value = '196';",
+ "answer": [
+ "124"
+ ],
+ "sql_execute_result": [
+ [
+ 78
+ ],
+ [
+ 94
+ ],
+ [
+ 110
+ ],
+ [
+ 142
+ ],
+ [
+ 174
+ ],
+ [
+ 190
+ ],
+ [
+ 206
+ ],
+ [
+ 254
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 318
+ ],
+ [
+ 334
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 382
+ ],
+ [
+ 398
+ ],
+ [
+ 414
+ ],
+ [
+ 430
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 478
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 526
+ ],
+ [
+ 542
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 590
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 682
+ ],
+ [
+ 688
+ ],
+ [
+ 694
+ ],
+ [
+ 700
+ ],
+ [
+ 706
+ ],
+ [
+ 712
+ ],
+ [
+ 718
+ ],
+ [
+ 724
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 802
+ ],
+ [
+ 815
+ ],
+ [
+ 828
+ ],
+ [
+ 841
+ ],
+ [
+ 854
+ ],
+ [
+ 867
+ ],
+ [
+ 880
+ ],
+ [
+ 893
+ ],
+ [
+ 898
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 950
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 1002
+ ],
+ [
+ 1015
+ ],
+ [
+ 1028
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1130
+ ],
+ [
+ 1146
+ ],
+ [
+ 1178
+ ],
+ [
+ 1194
+ ],
+ [
+ 1210
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1380
+ ],
+ [
+ 1396
+ ],
+ [
+ 1412
+ ],
+ [
+ 1428
+ ],
+ [
+ 1444
+ ],
+ [
+ 1460
+ ],
+ [
+ 1476
+ ],
+ [
+ 1492
+ ],
+ [
+ 1508
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1572
+ ],
+ [
+ 1588
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1684
+ ],
+ [
+ 1700
+ ],
+ [
+ 1716
+ ],
+ [
+ 1748
+ ],
+ [
+ 1764
+ ],
+ [
+ 1780
+ ],
+ [
+ 1796
+ ],
+ [
+ 1812
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1840
+ ],
+ [
+ 1847
+ ],
+ [
+ 1854
+ ],
+ [
+ 1875
+ ],
+ [
+ 1903
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 2024
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the code for the rating option with option ID 1.",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ "1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity ID 15?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 15;",
+ "answer": [
+ "1/2/11/12/15"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/11/12/15"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with ISO2 code 'NL'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'NL';",
+ "answer": [
+ "NLD"
+ ],
+ "sql_execute_result": [
+ [
+ "NLD"
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer whose address entity ID is 64.",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE entity_id = 64;",
+ "answer": [
+ "Isabella"
+ ],
+ "sql_execute_result": [
+ [
+ "Isabella"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'pending_payment'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending_payment';",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 7 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 7;",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the full address for the customer address entity ID 1?",
+ "sql": "SELECT CONCAT(street, ', ', city, ', ', region, ', ', country_id, ', ', postcode) AS full_address FROM customer_address_entity WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, US, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway, Calder, Michigan, US, 49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating with ID 4 active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the region name for region ID 57.",
+ "sql": "SELECT region FROM customer_address_entity WHERE region_id = 57 LIMIT 1;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the parent ID for the category with entity ID 28?",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 28;",
+ "answer": [
+ "22"
+ ],
+ "sql_execute_result": [
+ [
+ 22
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for option ID 4?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 4;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 1631?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1631 AND attribute_id = 77;",
+ "answer": [
+ "39.00"
+ ],
+ "sql_execute_result": [
+ [
+ "39.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with meta ID 3 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE meta_id = 3;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 15?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 15 AND attribute_id = 45;",
+ "answer": [
+ "Hoodies & Sweatshirts"
+ ],
+ "sql_execute_result": [
+ [
+ "Hoodies & Sweatshirts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the text description for the product with entity ID 147?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 147 AND attribute_id = 75;",
+ "answer": [
+ "Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.
\n• Full-zip gray and black hoodie.
• Ribbed hem.
• Standard fit.
• Drawcord hood cinch.
• Water-resistant coating.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.
\n• Full-zip gray and black hoodie.
• Ribbed hem.
• Standard fit.
• Drawcord hood cinch.
• Water-resistant coating.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for option ID 5.",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ "5"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category identifier for entity ID 34?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 34 AND attribute_id = 119;",
+ "answer": [
+ "erin-recommends"
+ ],
+ "sql_execute_result": [
+ [
+ "erin-recommends"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum sequence value for profile ID 3?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 3;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for option ID 9?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 9;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity ID for the product described as 'Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_text WHERE value LIKE '%Sinbad Fitness Tank%' AND attribute_id = 75;",
+ "answer": [
+ "701",
+ "702",
+ "703",
+ "704",
+ "705",
+ "706"
+ ],
+ "sql_execute_result": [
+ [
+ 701
+ ],
+ [
+ 702
+ ],
+ [
+ 703
+ ],
+ [
+ 704
+ ],
+ [
+ 705
+ ],
+ [
+ 706
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 67?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 67;",
+ "answer": [
+ "isaac.rodriguez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "isaac.rodriguez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were returned for the search query 'tanks' in store with ID 1?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'tanks' AND store_id = 1;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page with title 'Privacy Policy' currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the order item with item ID 733.",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 733;",
+ "answer": [
+ "Ryker LumaTech\u2122 Tee (V-neck)"
+ ],
+ "sql_execute_result": [
+ [
+ "Ryker LumaTech™ Tee (V-neck)"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product ordered in order item with ID 841?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 841;",
+ "answer": [
+ "MJ04-S-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ04-S-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'MJ04-S-Purple' in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MJ04-S-Purple');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which customer ordered the product with SKU 'MJ04-S-Purple'?",
+ "sql": "SELECT ce.firstname FROM sales_order_item soi JOIN sales_order so ON so.entity_id = soi.order_id JOIN customer_entity ce ON so.customer_id = ce.entity_id WHERE soi.sku = 'MJ04-S-Purple';",
+ "answer": [
+ "Alex",
+ "Matt"
+ ],
+ "sql_execute_result": [
+ [
+ "Alex"
+ ],
+ [
+ "Alex"
+ ],
+ [
+ "Matt"
+ ],
+ [
+ "Matt"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for the SKU 'WS01-L-Yellow'?",
+ "sql": "SELECT price FROM sales_order_item WHERE sku = 'WS01-L-Yellow';",
+ "answer": [
+ "24.0000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the bestseller product with ID 1695 in April 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1695 AND period = '2023-04-01';",
+ "answer": [
+ "Zoe Tank-L-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Zoe Tank-L-Orange"
+ ],
+ [
+ "Zoe Tank-L-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group code has the ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "How much was the base amount ordered for the payment record with entity ID 238?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 238;",
+ "answer": [
+ "171.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "171.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 1020?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1020;",
+ "answer": [
+ "The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.
\n• Dark red cotton shorts.
• 87% Supplex, 13% Lycra.
• Adjustable drawstring waistband.
• Built-in mesh brief.
• Machine wash cold, tumble dry low.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.
\n• Dark red cotton shorts.
• 87% Supplex, 13% Lycra.
• Adjustable drawstring waistband.
• Built-in mesh brief.
• Machine wash cold, tumble dry low.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for the bestseller item 'Josie Yoga Jacket-L-Black' in July 2022.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Josie Yoga Jacket-L-Black' AND period = '2022-07-01';",
+ "answer": [
+ "56.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "56.2500"
+ ],
+ [
+ "56.2500"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the catalog category with entity ID 14?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 14;",
+ "answer": [
+ "1/2/11/12/14"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/11/12/14"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the bestseller product with the highest rating position in May 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-05-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Neve Studio Dance Jacket-M-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Neve Studio Dance Jacket-M-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the method title for the payment with entity ID 67?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 67;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a description mentioning 'Cocona\u00ae fabric'?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE value LIKE '%Cocona® fabric%';",
+ "answer": [
+ "64"
+ ],
+ "sql_execute_result": [
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.
\n• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.
\n• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ],
+ [
+ "The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.
\n• Machine wash/dry.
• Cocona® fabric.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Wholesale' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 45?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 45;",
+ "answer": [
+ "amanda.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "amanda.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Sprite Stasis Ball 75 cm' in the daily bestsellers.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 75 cm';",
+ "answer": [
+ "14.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "14.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the rating position of 'Ida Workout Parachute Pant-28-Blue' from the monthly bestsellers.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Ida Workout Parachute Pant-28-Blue';",
+ "answer": [
+ "15",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the category with ID 9?",
+ "sql": "SELECT created_at FROM catalog_category_entity WHERE entity_id = 9;",
+ "answer": [
+ "2023-04-19 16:13:15"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:15"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in the 'Default Store View'?",
+ "sql": "SELECT email FROM customer_entity WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of children categories under the category with ID 3.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price of 'Geo Insulated Jogging Pant-34-Green' in the daily bestsellers?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Geo Insulated Jogging Pant-34-Green';",
+ "answer": [
+ "40.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "40.8000"
+ ],
+ [
+ "40.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of active customers in website ID 1.",
+ "sql": "SELECT COUNT(entity_id) FROM customer_entity WHERE website_id = 1 AND is_active = 1;",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ 70
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with the product 'Iris Workout Top-L-Red' from the monthly bestsellers?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Iris Workout Top-L-Red';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity code for the 'customer' entity type.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 1;",
+ "answer": [
+ "customer"
+ ],
+ "sql_execute_result": [
+ [
+ "customer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 872?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 872;",
+ "answer": [
+ "MP12-33-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MP12-33-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity_id 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with increment ID '000000001'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the CMS page with ID 5?",
+ "sql": "SELECT creation_time FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total stock quantity for product ID 359?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 359;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular search query text in store with ID 1?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 322 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 322;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many units of product with SKU 'MT09-XL-Blue' are currently in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 705;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with ID 26?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 26;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1620
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1652
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1668
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1700
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1764
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who placed the order with ID 297?",
+ "sql": "SELECT email FROM customer_entity JOIN sales_order ON customer_entity.entity_id = sales_order.customer_id WHERE sales_order.entity_id = 297;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products belong to the category with ID 19?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 19;",
+ "answer": [
+ "148"
+ ],
+ "sql_execute_result": [
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 898
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 924
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1015
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with product ID 25?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 25;",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check the stock status for the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1492;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for the review ID 241?",
+ "sql": "SELECT title FROM review_detail WHERE detail_id = 241;",
+ "answer": [
+ "Seams separated righth away"
+ ],
+ "sql_execute_result": [
+ [
+ "Seams separated righth away"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with ID 260?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 260;",
+ "answer": [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Michigan Ave,Chicago,Illinois,60611"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of search results for the query 'Joust Bag'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order related to credit memo with increment ID '000000001'?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the product with SKU 'WS03-XS-Red' in the sales invoice?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with ID 336 in the monthly bestsellers.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 336;",
+ "answer": [
+ "Taurus Elements Shell-XS-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product associated with the SKU 'WS08-XS-Blue' in the sales invoice items?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score for the query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Lono Yoga Short-34-Gray' in the monthly bestsellers?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Lono Yoga Short-34-Gray';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the best-selling product 'Hyperion Elements Jacket-M-Orange' in February 2022.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Hyperion Elements Jacket-M-Orange' AND period = '2022-02-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with the search query 'MT02-M-Gray'?",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WP10' in the search queries?",
+ "sql": "SELECT query_text FROM search_query WHERE query_text = 'WP10';",
+ "answer": [
+ "WP10"
+ ],
+ "sql_execute_result": [
+ [
+ "WP10"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 14?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 14;",
+ "answer": [
+ "johndoe123@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "johndoe123@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Atomic Endurance Running Tee (Crew-Neck)-S-Blue' in store with ID 0?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 499 AND store_id = 0;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'catalog_product_entity' table?",
+ "sql": "SELECT entity_id, sku FROM catalog_product_entity;",
+ "answer": [
+ "2040"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "24-MB01"
+ ],
+ [
+ 6,
+ "24-MB02"
+ ],
+ [
+ 3,
+ "24-MB03"
+ ],
+ [
+ 2,
+ "24-MB04"
+ ],
+ [
+ 4,
+ "24-MB05"
+ ],
+ [
+ 5,
+ "24-MB06"
+ ],
+ [
+ 37,
+ "24-MG01"
+ ],
+ [
+ 40,
+ "24-MG02"
+ ],
+ [
+ 38,
+ "24-MG03"
+ ],
+ [
+ 36,
+ "24-MG04"
+ ],
+ [
+ 39,
+ "24-MG05"
+ ],
+ [
+ 7,
+ "24-UB02"
+ ],
+ [
+ 20,
+ "24-UG01"
+ ],
+ [
+ 18,
+ "24-UG02"
+ ],
+ [
+ 23,
+ "24-UG03"
+ ],
+ [
+ 17,
+ "24-UG04"
+ ],
+ [
+ 19,
+ "24-UG05"
+ ],
+ [
+ 15,
+ "24-UG06"
+ ],
+ [
+ 16,
+ "24-UG07"
+ ],
+ [
+ 8,
+ "24-WB01"
+ ],
+ [
+ 9,
+ "24-WB02"
+ ],
+ [
+ 12,
+ "24-WB03"
+ ],
+ [
+ 14,
+ "24-WB04"
+ ],
+ [
+ 10,
+ "24-WB05"
+ ],
+ [
+ 11,
+ "24-WB06"
+ ],
+ [
+ 13,
+ "24-WB07"
+ ],
+ [
+ 42,
+ "24-WG01"
+ ],
+ [
+ 44,
+ "24-WG02"
+ ],
+ [
+ 43,
+ "24-WG03"
+ ],
+ [
+ 45,
+ "24-WG080"
+ ],
+ [
+ 26,
+ "24-WG081-blue"
+ ],
+ [
+ 24,
+ "24-WG081-gray"
+ ],
+ [
+ 25,
+ "24-WG081-pink"
+ ],
+ [
+ 29,
+ "24-WG082-blue"
+ ],
+ [
+ 27,
+ "24-WG082-gray"
+ ],
+ [
+ 28,
+ "24-WG082-pink"
+ ],
+ [
+ 32,
+ "24-WG083-blue"
+ ],
+ [
+ 30,
+ "24-WG083-gray"
+ ],
+ [
+ 31,
+ "24-WG083-pink"
+ ],
+ [
+ 21,
+ "24-WG084"
+ ],
+ [
+ 33,
+ "24-WG085"
+ ],
+ [
+ 46,
+ "24-WG085_Group"
+ ],
+ [
+ 34,
+ "24-WG086"
+ ],
+ [
+ 35,
+ "24-WG087"
+ ],
+ [
+ 22,
+ "24-WG088"
+ ],
+ [
+ 41,
+ "24-WG09"
+ ],
+ [
+ 62,
+ "MH01"
+ ],
+ [
+ 56,
+ "MH01-L-Black"
+ ],
+ [
+ 57,
+ "MH01-L-Gray"
+ ],
+ [
+ 58,
+ "MH01-L-Orange"
+ ],
+ [
+ 53,
+ "MH01-M-Black"
+ ],
+ [
+ 54,
+ "MH01-M-Gray"
+ ],
+ [
+ 55,
+ "MH01-M-Orange"
+ ],
+ [
+ 50,
+ "MH01-S-Black"
+ ],
+ [
+ 51,
+ "MH01-S-Gray"
+ ],
+ [
+ 52,
+ "MH01-S-Orange"
+ ],
+ [
+ 59,
+ "MH01-XL-Black"
+ ],
+ [
+ 60,
+ "MH01-XL-Gray"
+ ],
+ [
+ 61,
+ "MH01-XL-Orange"
+ ],
+ [
+ 47,
+ "MH01-XS-Black"
+ ],
+ [
+ 48,
+ "MH01-XS-Gray"
+ ],
+ [
+ 49,
+ "MH01-XS-Orange"
+ ],
+ [
+ 78,
+ "MH02"
+ ],
+ [
+ 72,
+ "MH02-L-Black"
+ ],
+ [
+ 73,
+ "MH02-L-Purple"
+ ],
+ [
+ 74,
+ "MH02-L-Red"
+ ],
+ [
+ 69,
+ "MH02-M-Black"
+ ],
+ [
+ 70,
+ "MH02-M-Purple"
+ ],
+ [
+ 71,
+ "MH02-M-Red"
+ ],
+ [
+ 66,
+ "MH02-S-Black"
+ ],
+ [
+ 67,
+ "MH02-S-Purple"
+ ],
+ [
+ 68,
+ "MH02-S-Red"
+ ],
+ [
+ 75,
+ "MH02-XL-Black"
+ ],
+ [
+ 76,
+ "MH02-XL-Purple"
+ ],
+ [
+ 77,
+ "MH02-XL-Red"
+ ],
+ [
+ 63,
+ "MH02-XS-Black"
+ ],
+ [
+ 64,
+ "MH02-XS-Purple"
+ ],
+ [
+ 65,
+ "MH02-XS-Red"
+ ],
+ [
+ 94,
+ "MH03"
+ ],
+ [
+ 88,
+ "MH03-L-Black"
+ ],
+ [
+ 89,
+ "MH03-L-Blue"
+ ],
+ [
+ 90,
+ "MH03-L-Green"
+ ],
+ [
+ 85,
+ "MH03-M-Black"
+ ],
+ [
+ 86,
+ "MH03-M-Blue"
+ ],
+ [
+ 87,
+ "MH03-M-Green"
+ ],
+ [
+ 82,
+ "MH03-S-Black"
+ ],
+ [
+ 83,
+ "MH03-S-Blue"
+ ],
+ [
+ 84,
+ "MH03-S-Green"
+ ],
+ [
+ 91,
+ "MH03-XL-Black"
+ ],
+ [
+ 92,
+ "MH03-XL-Blue"
+ ],
+ [
+ 93,
+ "MH03-XL-Green"
+ ],
+ [
+ 79,
+ "MH03-XS-Black"
+ ],
+ [
+ 80,
+ "MH03-XS-Blue"
+ ],
+ [
+ 81,
+ "MH03-XS-Green"
+ ],
+ [
+ 110,
+ "MH04"
+ ],
+ [
+ 104,
+ "MH04-L-Green"
+ ],
+ [
+ 105,
+ "MH04-L-White"
+ ],
+ [
+ 106,
+ "MH04-L-Yellow"
+ ],
+ [
+ 101,
+ "MH04-M-Green"
+ ],
+ [
+ 102,
+ "MH04-M-White"
+ ],
+ [
+ 103,
+ "MH04-M-Yellow"
+ ],
+ [
+ 98,
+ "MH04-S-Green"
+ ],
+ [
+ 99,
+ "MH04-S-White"
+ ],
+ [
+ 100,
+ "MH04-S-Yellow"
+ ],
+ [
+ 107,
+ "MH04-XL-Green"
+ ],
+ [
+ 108,
+ "MH04-XL-White"
+ ],
+ [
+ 109,
+ "MH04-XL-Yellow"
+ ],
+ [
+ 95,
+ "MH04-XS-Green"
+ ],
+ [
+ 96,
+ "MH04-XS-White"
+ ],
+ [
+ 97,
+ "MH04-XS-Yellow"
+ ],
+ [
+ 126,
+ "MH05"
+ ],
+ [
+ 120,
+ "MH05-L-Green"
+ ],
+ [
+ 121,
+ "MH05-L-Red"
+ ],
+ [
+ 122,
+ "MH05-L-White"
+ ],
+ [
+ 117,
+ "MH05-M-Green"
+ ],
+ [
+ 118,
+ "MH05-M-Red"
+ ],
+ [
+ 119,
+ "MH05-M-White"
+ ],
+ [
+ 114,
+ "MH05-S-Green"
+ ],
+ [
+ 115,
+ "MH05-S-Red"
+ ],
+ [
+ 116,
+ "MH05-S-White"
+ ],
+ [
+ 123,
+ "MH05-XL-Green"
+ ],
+ [
+ 124,
+ "MH05-XL-Red"
+ ],
+ [
+ 125,
+ "MH05-XL-White"
+ ],
+ [
+ 111,
+ "MH05-XS-Green"
+ ],
+ [
+ 112,
+ "MH05-XS-Red"
+ ],
+ [
+ 113,
+ "MH05-XS-White"
+ ],
+ [
+ 142,
+ "MH06"
+ ],
+ [
+ 136,
+ "MH06-L-Black"
+ ],
+ [
+ 137,
+ "MH06-L-Blue"
+ ],
+ [
+ 138,
+ "MH06-L-Purple"
+ ],
+ [
+ 133,
+ "MH06-M-Black"
+ ],
+ [
+ 134,
+ "MH06-M-Blue"
+ ],
+ [
+ 135,
+ "MH06-M-Purple"
+ ],
+ [
+ 130,
+ "MH06-S-Black"
+ ],
+ [
+ 131,
+ "MH06-S-Blue"
+ ],
+ [
+ 132,
+ "MH06-S-Purple"
+ ],
+ [
+ 139,
+ "MH06-XL-Black"
+ ],
+ [
+ 140,
+ "MH06-XL-Blue"
+ ],
+ [
+ 141,
+ "MH06-XL-Purple"
+ ],
+ [
+ 127,
+ "MH06-XS-Black"
+ ],
+ [
+ 128,
+ "MH06-XS-Blue"
+ ],
+ [
+ 129,
+ "MH06-XS-Purple"
+ ],
+ [
+ 158,
+ "MH07"
+ ],
+ [
+ 152,
+ "MH07-L-Black"
+ ],
+ [
+ 153,
+ "MH07-L-Gray"
+ ],
+ [
+ 154,
+ "MH07-L-Green"
+ ],
+ [
+ 149,
+ "MH07-M-Black"
+ ],
+ [
+ 150,
+ "MH07-M-Gray"
+ ],
+ [
+ 151,
+ "MH07-M-Green"
+ ],
+ [
+ 146,
+ "MH07-S-Black"
+ ],
+ [
+ 147,
+ "MH07-S-Gray"
+ ],
+ [
+ 148,
+ "MH07-S-Green"
+ ],
+ [
+ 155,
+ "MH07-XL-Black"
+ ],
+ [
+ 156,
+ "MH07-XL-Gray"
+ ],
+ [
+ 157,
+ "MH07-XL-Green"
+ ],
+ [
+ 143,
+ "MH07-XS-Black"
+ ],
+ [
+ 144,
+ "MH07-XS-Gray"
+ ],
+ [
+ 145,
+ "MH07-XS-Green"
+ ],
+ [
+ 174,
+ "MH08"
+ ],
+ [
+ 168,
+ "MH08-L-Brown"
+ ],
+ [
+ 169,
+ "MH08-L-Purple"
+ ],
+ [
+ 170,
+ "MH08-L-Red"
+ ],
+ [
+ 165,
+ "MH08-M-Brown"
+ ],
+ [
+ 166,
+ "MH08-M-Purple"
+ ],
+ [
+ 167,
+ "MH08-M-Red"
+ ],
+ [
+ 162,
+ "MH08-S-Brown"
+ ],
+ [
+ 163,
+ "MH08-S-Purple"
+ ],
+ [
+ 164,
+ "MH08-S-Red"
+ ],
+ [
+ 171,
+ "MH08-XL-Brown"
+ ],
+ [
+ 172,
+ "MH08-XL-Purple"
+ ],
+ [
+ 173,
+ "MH08-XL-Red"
+ ],
+ [
+ 159,
+ "MH08-XS-Brown"
+ ],
+ [
+ 160,
+ "MH08-XS-Purple"
+ ],
+ [
+ 161,
+ "MH08-XS-Red"
+ ],
+ [
+ 190,
+ "MH09"
+ ],
+ [
+ 184,
+ "MH09-L-Blue"
+ ],
+ [
+ 185,
+ "MH09-L-Green"
+ ],
+ [
+ 186,
+ "MH09-L-Red"
+ ],
+ [
+ 181,
+ "MH09-M-Blue"
+ ],
+ [
+ 182,
+ "MH09-M-Green"
+ ],
+ [
+ 183,
+ "MH09-M-Red"
+ ],
+ [
+ 178,
+ "MH09-S-Blue"
+ ],
+ [
+ 179,
+ "MH09-S-Green"
+ ],
+ [
+ 180,
+ "MH09-S-Red"
+ ],
+ [
+ 187,
+ "MH09-XL-Blue"
+ ],
+ [
+ 188,
+ "MH09-XL-Green"
+ ],
+ [
+ 189,
+ "MH09-XL-Red"
+ ],
+ [
+ 175,
+ "MH09-XS-Blue"
+ ],
+ [
+ 176,
+ "MH09-XS-Green"
+ ],
+ [
+ 177,
+ "MH09-XS-Red"
+ ],
+ [
+ 206,
+ "MH10"
+ ],
+ [
+ 200,
+ "MH10-L-Black"
+ ],
+ [
+ 201,
+ "MH10-L-Blue"
+ ],
+ [
+ 202,
+ "MH10-L-Red"
+ ],
+ [
+ 197,
+ "MH10-M-Black"
+ ],
+ [
+ 198,
+ "MH10-M-Blue"
+ ],
+ [
+ 199,
+ "MH10-M-Red"
+ ],
+ [
+ 194,
+ "MH10-S-Black"
+ ],
+ [
+ 195,
+ "MH10-S-Blue"
+ ],
+ [
+ 196,
+ "MH10-S-Red"
+ ],
+ [
+ 203,
+ "MH10-XL-Black"
+ ],
+ [
+ 204,
+ "MH10-XL-Blue"
+ ],
+ [
+ 205,
+ "MH10-XL-Red"
+ ],
+ [
+ 191,
+ "MH10-XS-Black"
+ ],
+ [
+ 192,
+ "MH10-XS-Blue"
+ ],
+ [
+ 193,
+ "MH10-XS-Red"
+ ],
+ [
+ 222,
+ "MH11"
+ ],
+ [
+ 216,
+ "MH11-L-Orange"
+ ],
+ [
+ 217,
+ "MH11-L-Red"
+ ],
+ [
+ 218,
+ "MH11-L-White"
+ ],
+ [
+ 213,
+ "MH11-M-Orange"
+ ],
+ [
+ 214,
+ "MH11-M-Red"
+ ],
+ [
+ 215,
+ "MH11-M-White"
+ ],
+ [
+ 210,
+ "MH11-S-Orange"
+ ],
+ [
+ 211,
+ "MH11-S-Red"
+ ],
+ [
+ 212,
+ "MH11-S-White"
+ ],
+ [
+ 219,
+ "MH11-XL-Orange"
+ ],
+ [
+ 220,
+ "MH11-XL-Red"
+ ],
+ [
+ 221,
+ "MH11-XL-White"
+ ],
+ [
+ 207,
+ "MH11-XS-Orange"
+ ],
+ [
+ 208,
+ "MH11-XS-Red"
+ ],
+ [
+ 209,
+ "MH11-XS-White"
+ ],
+ [
+ 238,
+ "MH12"
+ ],
+ [
+ 232,
+ "MH12-L-Blue"
+ ],
+ [
+ 233,
+ "MH12-L-Green"
+ ],
+ [
+ 234,
+ "MH12-L-Red"
+ ],
+ [
+ 229,
+ "MH12-M-Blue"
+ ],
+ [
+ 230,
+ "MH12-M-Green"
+ ],
+ [
+ 231,
+ "MH12-M-Red"
+ ],
+ [
+ 226,
+ "MH12-S-Blue"
+ ],
+ [
+ 227,
+ "MH12-S-Green"
+ ],
+ [
+ 228,
+ "MH12-S-Red"
+ ],
+ [
+ 235,
+ "MH12-XL-Blue"
+ ],
+ [
+ 236,
+ "MH12-XL-Green"
+ ],
+ [
+ 237,
+ "MH12-XL-Red"
+ ],
+ [
+ 223,
+ "MH12-XS-Blue"
+ ],
+ [
+ 224,
+ "MH12-XS-Green"
+ ],
+ [
+ 225,
+ "MH12-XS-Red"
+ ],
+ [
+ 254,
+ "MH13"
+ ],
+ [
+ 248,
+ "MH13-L-Blue"
+ ],
+ [
+ 249,
+ "MH13-L-Green"
+ ],
+ [
+ 250,
+ "MH13-L-Lavender"
+ ],
+ [
+ 245,
+ "MH13-M-Blue"
+ ],
+ [
+ 246,
+ "MH13-M-Green"
+ ],
+ [
+ 247,
+ "MH13-M-Lavender"
+ ],
+ [
+ 242,
+ "MH13-S-Blue"
+ ],
+ [
+ 243,
+ "MH13-S-Green"
+ ],
+ [
+ 244,
+ "MH13-S-Lavender"
+ ],
+ [
+ 251,
+ "MH13-XL-Blue"
+ ],
+ [
+ 252,
+ "MH13-XL-Green"
+ ],
+ [
+ 253,
+ "MH13-XL-Lavender"
+ ],
+ [
+ 239,
+ "MH13-XS-Blue"
+ ],
+ [
+ 240,
+ "MH13-XS-Green"
+ ],
+ [
+ 241,
+ "MH13-XS-Lavender"
+ ],
+ [
+ 270,
+ "MJ01"
+ ],
+ [
+ 264,
+ "MJ01-L-Orange"
+ ],
+ [
+ 265,
+ "MJ01-L-Red"
+ ],
+ [
+ 266,
+ "MJ01-L-Yellow"
+ ],
+ [
+ 261,
+ "MJ01-M-Orange"
+ ],
+ [
+ 262,
+ "MJ01-M-Red"
+ ],
+ [
+ 263,
+ "MJ01-M-Yellow"
+ ],
+ [
+ 258,
+ "MJ01-S-Orange"
+ ],
+ [
+ 259,
+ "MJ01-S-Red"
+ ],
+ [
+ 260,
+ "MJ01-S-Yellow"
+ ],
+ [
+ 267,
+ "MJ01-XL-Orange"
+ ],
+ [
+ 268,
+ "MJ01-XL-Red"
+ ],
+ [
+ 269,
+ "MJ01-XL-Yellow"
+ ],
+ [
+ 255,
+ "MJ01-XS-Orange"
+ ],
+ [
+ 256,
+ "MJ01-XS-Red"
+ ],
+ [
+ 257,
+ "MJ01-XS-Yellow"
+ ],
+ [
+ 286,
+ "MJ02"
+ ],
+ [
+ 280,
+ "MJ02-L-Green"
+ ],
+ [
+ 281,
+ "MJ02-L-Orange"
+ ],
+ [
+ 282,
+ "MJ02-L-Red"
+ ],
+ [
+ 277,
+ "MJ02-M-Green"
+ ],
+ [
+ 278,
+ "MJ02-M-Orange"
+ ],
+ [
+ 279,
+ "MJ02-M-Red"
+ ],
+ [
+ 274,
+ "MJ02-S-Green"
+ ],
+ [
+ 275,
+ "MJ02-S-Orange"
+ ],
+ [
+ 276,
+ "MJ02-S-Red"
+ ],
+ [
+ 283,
+ "MJ02-XL-Green"
+ ],
+ [
+ 284,
+ "MJ02-XL-Orange"
+ ],
+ [
+ 285,
+ "MJ02-XL-Red"
+ ],
+ [
+ 271,
+ "MJ02-XS-Green"
+ ],
+ [
+ 272,
+ "MJ02-XS-Orange"
+ ],
+ [
+ 273,
+ "MJ02-XS-Red"
+ ],
+ [
+ 414,
+ "MJ03"
+ ],
+ [
+ 408,
+ "MJ03-L-Black"
+ ],
+ [
+ 409,
+ "MJ03-L-Green"
+ ],
+ [
+ 410,
+ "MJ03-L-Red"
+ ],
+ [
+ 405,
+ "MJ03-M-Black"
+ ],
+ [
+ 406,
+ "MJ03-M-Green"
+ ],
+ [
+ 407,
+ "MJ03-M-Red"
+ ],
+ [
+ 402,
+ "MJ03-S-Black"
+ ],
+ [
+ 403,
+ "MJ03-S-Green"
+ ],
+ [
+ 404,
+ "MJ03-S-Red"
+ ],
+ [
+ 411,
+ "MJ03-XL-Black"
+ ],
+ [
+ 412,
+ "MJ03-XL-Green"
+ ],
+ [
+ 413,
+ "MJ03-XL-Red"
+ ],
+ [
+ 399,
+ "MJ03-XS-Black"
+ ],
+ [
+ 400,
+ "MJ03-XS-Green"
+ ],
+ [
+ 401,
+ "MJ03-XS-Red"
+ ],
+ [
+ 302,
+ "MJ04"
+ ],
+ [
+ 296,
+ "MJ04-L-Black"
+ ],
+ [
+ 297,
+ "MJ04-L-Blue"
+ ],
+ [
+ 298,
+ "MJ04-L-Purple"
+ ],
+ [
+ 293,
+ "MJ04-M-Black"
+ ],
+ [
+ 294,
+ "MJ04-M-Blue"
+ ],
+ [
+ 295,
+ "MJ04-M-Purple"
+ ],
+ [
+ 290,
+ "MJ04-S-Black"
+ ],
+ [
+ 291,
+ "MJ04-S-Blue"
+ ],
+ [
+ 292,
+ "MJ04-S-Purple"
+ ],
+ [
+ 299,
+ "MJ04-XL-Black"
+ ],
+ [
+ 300,
+ "MJ04-XL-Blue"
+ ],
+ [
+ 301,
+ "MJ04-XL-Purple"
+ ],
+ [
+ 287,
+ "MJ04-XS-Black"
+ ],
+ [
+ 288,
+ "MJ04-XS-Blue"
+ ],
+ [
+ 289,
+ "MJ04-XS-Purple"
+ ],
+ [
+ 398,
+ "MJ06"
+ ],
+ [
+ 392,
+ "MJ06-L-Blue"
+ ],
+ [
+ 393,
+ "MJ06-L-Green"
+ ],
+ [
+ 394,
+ "MJ06-L-Purple"
+ ],
+ [
+ 389,
+ "MJ06-M-Blue"
+ ],
+ [
+ 390,
+ "MJ06-M-Green"
+ ],
+ [
+ 391,
+ "MJ06-M-Purple"
+ ],
+ [
+ 386,
+ "MJ06-S-Blue"
+ ],
+ [
+ 387,
+ "MJ06-S-Green"
+ ],
+ [
+ 388,
+ "MJ06-S-Purple"
+ ],
+ [
+ 395,
+ "MJ06-XL-Blue"
+ ],
+ [
+ 396,
+ "MJ06-XL-Green"
+ ],
+ [
+ 397,
+ "MJ06-XL-Purple"
+ ],
+ [
+ 383,
+ "MJ06-XS-Blue"
+ ],
+ [
+ 384,
+ "MJ06-XS-Green"
+ ],
+ [
+ 385,
+ "MJ06-XS-Purple"
+ ],
+ [
+ 318,
+ "MJ07"
+ ],
+ [
+ 312,
+ "MJ07-L-Black"
+ ],
+ [
+ 313,
+ "MJ07-L-Red"
+ ],
+ [
+ 314,
+ "MJ07-L-Yellow"
+ ],
+ [
+ 309,
+ "MJ07-M-Black"
+ ],
+ [
+ 310,
+ "MJ07-M-Red"
+ ],
+ [
+ 311,
+ "MJ07-M-Yellow"
+ ],
+ [
+ 306,
+ "MJ07-S-Black"
+ ],
+ [
+ 307,
+ "MJ07-S-Red"
+ ],
+ [
+ 308,
+ "MJ07-S-Yellow"
+ ],
+ [
+ 315,
+ "MJ07-XL-Black"
+ ],
+ [
+ 316,
+ "MJ07-XL-Red"
+ ],
+ [
+ 317,
+ "MJ07-XL-Yellow"
+ ],
+ [
+ 303,
+ "MJ07-XS-Black"
+ ],
+ [
+ 304,
+ "MJ07-XS-Red"
+ ],
+ [
+ 305,
+ "MJ07-XS-Yellow"
+ ],
+ [
+ 334,
+ "MJ08"
+ ],
+ [
+ 328,
+ "MJ08-L-Blue"
+ ],
+ [
+ 329,
+ "MJ08-L-Gray"
+ ],
+ [
+ 330,
+ "MJ08-L-Green"
+ ],
+ [
+ 325,
+ "MJ08-M-Blue"
+ ],
+ [
+ 326,
+ "MJ08-M-Gray"
+ ],
+ [
+ 327,
+ "MJ08-M-Green"
+ ],
+ [
+ 322,
+ "MJ08-S-Blue"
+ ],
+ [
+ 323,
+ "MJ08-S-Gray"
+ ],
+ [
+ 324,
+ "MJ08-S-Green"
+ ],
+ [
+ 331,
+ "MJ08-XL-Blue"
+ ],
+ [
+ 332,
+ "MJ08-XL-Gray"
+ ],
+ [
+ 333,
+ "MJ08-XL-Green"
+ ],
+ [
+ 319,
+ "MJ08-XS-Blue"
+ ],
+ [
+ 320,
+ "MJ08-XS-Gray"
+ ],
+ [
+ 321,
+ "MJ08-XS-Green"
+ ],
+ [
+ 350,
+ "MJ09"
+ ],
+ [
+ 344,
+ "MJ09-L-Blue"
+ ],
+ [
+ 345,
+ "MJ09-L-White"
+ ],
+ [
+ 346,
+ "MJ09-L-Yellow"
+ ],
+ [
+ 341,
+ "MJ09-M-Blue"
+ ],
+ [
+ 342,
+ "MJ09-M-White"
+ ],
+ [
+ 343,
+ "MJ09-M-Yellow"
+ ],
+ [
+ 338,
+ "MJ09-S-Blue"
+ ],
+ [
+ 339,
+ "MJ09-S-White"
+ ],
+ [
+ 340,
+ "MJ09-S-Yellow"
+ ],
+ [
+ 347,
+ "MJ09-XL-Blue"
+ ],
+ [
+ 348,
+ "MJ09-XL-White"
+ ],
+ [
+ 349,
+ "MJ09-XL-Yellow"
+ ],
+ [
+ 335,
+ "MJ09-XS-Blue"
+ ],
+ [
+ 336,
+ "MJ09-XS-White"
+ ],
+ [
+ 337,
+ "MJ09-XS-Yellow"
+ ],
+ [
+ 366,
+ "MJ10"
+ ],
+ [
+ 360,
+ "MJ10-L-Black"
+ ],
+ [
+ 361,
+ "MJ10-L-Orange"
+ ],
+ [
+ 362,
+ "MJ10-L-Red"
+ ],
+ [
+ 357,
+ "MJ10-M-Black"
+ ],
+ [
+ 358,
+ "MJ10-M-Orange"
+ ],
+ [
+ 359,
+ "MJ10-M-Red"
+ ],
+ [
+ 354,
+ "MJ10-S-Black"
+ ],
+ [
+ 355,
+ "MJ10-S-Orange"
+ ],
+ [
+ 356,
+ "MJ10-S-Red"
+ ],
+ [
+ 363,
+ "MJ10-XL-Black"
+ ],
+ [
+ 364,
+ "MJ10-XL-Orange"
+ ],
+ [
+ 365,
+ "MJ10-XL-Red"
+ ],
+ [
+ 351,
+ "MJ10-XS-Black"
+ ],
+ [
+ 352,
+ "MJ10-XS-Orange"
+ ],
+ [
+ 353,
+ "MJ10-XS-Red"
+ ],
+ [
+ 382,
+ "MJ11"
+ ],
+ [
+ 376,
+ "MJ11-L-Black"
+ ],
+ [
+ 377,
+ "MJ11-L-Green"
+ ],
+ [
+ 378,
+ "MJ11-L-Red"
+ ],
+ [
+ 373,
+ "MJ11-M-Black"
+ ],
+ [
+ 374,
+ "MJ11-M-Green"
+ ],
+ [
+ 375,
+ "MJ11-M-Red"
+ ],
+ [
+ 370,
+ "MJ11-S-Black"
+ ],
+ [
+ 371,
+ "MJ11-S-Green"
+ ],
+ [
+ 372,
+ "MJ11-S-Red"
+ ],
+ [
+ 379,
+ "MJ11-XL-Black"
+ ],
+ [
+ 380,
+ "MJ11-XL-Green"
+ ],
+ [
+ 381,
+ "MJ11-XL-Red"
+ ],
+ [
+ 367,
+ "MJ11-XS-Black"
+ ],
+ [
+ 368,
+ "MJ11-XS-Green"
+ ],
+ [
+ 369,
+ "MJ11-XS-Red"
+ ],
+ [
+ 430,
+ "MJ12"
+ ],
+ [
+ 424,
+ "MJ12-L-Black"
+ ],
+ [
+ 425,
+ "MJ12-L-Blue"
+ ],
+ [
+ 426,
+ "MJ12-L-Orange"
+ ],
+ [
+ 421,
+ "MJ12-M-Black"
+ ],
+ [
+ 422,
+ "MJ12-M-Blue"
+ ],
+ [
+ 423,
+ "MJ12-M-Orange"
+ ],
+ [
+ 418,
+ "MJ12-S-Black"
+ ],
+ [
+ 419,
+ "MJ12-S-Blue"
+ ],
+ [
+ 420,
+ "MJ12-S-Orange"
+ ],
+ [
+ 427,
+ "MJ12-XL-Black"
+ ],
+ [
+ 428,
+ "MJ12-XL-Blue"
+ ],
+ [
+ 429,
+ "MJ12-XL-Orange"
+ ],
+ [
+ 415,
+ "MJ12-XS-Black"
+ ],
+ [
+ 416,
+ "MJ12-XS-Blue"
+ ],
+ [
+ 417,
+ "MJ12-XS-Orange"
+ ],
+ [
+ 737,
+ "MP01"
+ ],
+ [
+ 725,
+ "MP01-32-Black"
+ ],
+ [
+ 726,
+ "MP01-32-Gray"
+ ],
+ [
+ 727,
+ "MP01-32-Purple"
+ ],
+ [
+ 728,
+ "MP01-33-Black"
+ ],
+ [
+ 729,
+ "MP01-33-Gray"
+ ],
+ [
+ 730,
+ "MP01-33-Purple"
+ ],
+ [
+ 731,
+ "MP01-34-Black"
+ ],
+ [
+ 732,
+ "MP01-34-Gray"
+ ],
+ [
+ 733,
+ "MP01-34-Purple"
+ ],
+ [
+ 734,
+ "MP01-36-Black"
+ ],
+ [
+ 735,
+ "MP01-36-Gray"
+ ],
+ [
+ 736,
+ "MP01-36-Purple"
+ ],
+ [
+ 750,
+ "MP02"
+ ],
+ [
+ 738,
+ "MP02-32-Blue"
+ ],
+ [
+ 739,
+ "MP02-32-Gray"
+ ],
+ [
+ 740,
+ "MP02-32-Red"
+ ],
+ [
+ 741,
+ "MP02-33-Blue"
+ ],
+ [
+ 742,
+ "MP02-33-Gray"
+ ],
+ [
+ 743,
+ "MP02-33-Red"
+ ],
+ [
+ 744,
+ "MP02-34-Blue"
+ ],
+ [
+ 745,
+ "MP02-34-Gray"
+ ],
+ [
+ 746,
+ "MP02-34-Red"
+ ],
+ [
+ 747,
+ "MP02-36-Blue"
+ ],
+ [
+ 748,
+ "MP02-36-Gray"
+ ],
+ [
+ 749,
+ "MP02-36-Red"
+ ],
+ [
+ 763,
+ "MP03"
+ ],
+ [
+ 751,
+ "MP03-32-Blue"
+ ],
+ [
+ 752,
+ "MP03-32-Green"
+ ],
+ [
+ 753,
+ "MP03-32-Red"
+ ],
+ [
+ 754,
+ "MP03-33-Blue"
+ ],
+ [
+ 755,
+ "MP03-33-Green"
+ ],
+ [
+ 756,
+ "MP03-33-Red"
+ ],
+ [
+ 757,
+ "MP03-34-Blue"
+ ],
+ [
+ 758,
+ "MP03-34-Green"
+ ],
+ [
+ 759,
+ "MP03-34-Red"
+ ],
+ [
+ 760,
+ "MP03-36-Blue"
+ ],
+ [
+ 761,
+ "MP03-36-Green"
+ ],
+ [
+ 762,
+ "MP03-36-Red"
+ ],
+ [
+ 776,
+ "MP04"
+ ],
+ [
+ 764,
+ "MP04-32-Black"
+ ],
+ [
+ 765,
+ "MP04-32-Gray"
+ ],
+ [
+ 766,
+ "MP04-32-Green"
+ ],
+ [
+ 767,
+ "MP04-33-Black"
+ ],
+ [
+ 768,
+ "MP04-33-Gray"
+ ],
+ [
+ 769,
+ "MP04-33-Green"
+ ],
+ [
+ 770,
+ "MP04-34-Black"
+ ],
+ [
+ 771,
+ "MP04-34-Gray"
+ ],
+ [
+ 772,
+ "MP04-34-Green"
+ ],
+ [
+ 773,
+ "MP04-36-Black"
+ ],
+ [
+ 774,
+ "MP04-36-Gray"
+ ],
+ [
+ 775,
+ "MP04-36-Green"
+ ],
+ [
+ 789,
+ "MP05"
+ ],
+ [
+ 777,
+ "MP05-32-Black"
+ ],
+ [
+ 778,
+ "MP05-32-Blue"
+ ],
+ [
+ 779,
+ "MP05-32-Green"
+ ],
+ [
+ 780,
+ "MP05-33-Black"
+ ],
+ [
+ 781,
+ "MP05-33-Blue"
+ ],
+ [
+ 782,
+ "MP05-33-Green"
+ ],
+ [
+ 783,
+ "MP05-34-Black"
+ ],
+ [
+ 784,
+ "MP05-34-Blue"
+ ],
+ [
+ 785,
+ "MP05-34-Green"
+ ],
+ [
+ 786,
+ "MP05-36-Black"
+ ],
+ [
+ 787,
+ "MP05-36-Blue"
+ ],
+ [
+ 788,
+ "MP05-36-Green"
+ ],
+ [
+ 802,
+ "MP06"
+ ],
+ [
+ 790,
+ "MP06-32-Gray"
+ ],
+ [
+ 791,
+ "MP06-32-Green"
+ ],
+ [
+ 792,
+ "MP06-32-Orange"
+ ],
+ [
+ 793,
+ "MP06-33-Gray"
+ ],
+ [
+ 794,
+ "MP06-33-Green"
+ ],
+ [
+ 795,
+ "MP06-33-Orange"
+ ],
+ [
+ 796,
+ "MP06-34-Gray"
+ ],
+ [
+ 797,
+ "MP06-34-Green"
+ ],
+ [
+ 798,
+ "MP06-34-Orange"
+ ],
+ [
+ 799,
+ "MP06-36-Gray"
+ ],
+ [
+ 800,
+ "MP06-36-Green"
+ ],
+ [
+ 801,
+ "MP06-36-Orange"
+ ],
+ [
+ 815,
+ "MP07"
+ ],
+ [
+ 803,
+ "MP07-32-Black"
+ ],
+ [
+ 804,
+ "MP07-32-Blue"
+ ],
+ [
+ 805,
+ "MP07-32-Purple"
+ ],
+ [
+ 806,
+ "MP07-33-Black"
+ ],
+ [
+ 807,
+ "MP07-33-Blue"
+ ],
+ [
+ 808,
+ "MP07-33-Purple"
+ ],
+ [
+ 809,
+ "MP07-34-Black"
+ ],
+ [
+ 810,
+ "MP07-34-Blue"
+ ],
+ [
+ 811,
+ "MP07-34-Purple"
+ ],
+ [
+ 812,
+ "MP07-36-Black"
+ ],
+ [
+ 813,
+ "MP07-36-Blue"
+ ],
+ [
+ 814,
+ "MP07-36-Purple"
+ ],
+ [
+ 828,
+ "MP08"
+ ],
+ [
+ 816,
+ "MP08-32-Blue"
+ ],
+ [
+ 817,
+ "MP08-32-Green"
+ ],
+ [
+ 818,
+ "MP08-32-Red"
+ ],
+ [
+ 819,
+ "MP08-33-Blue"
+ ],
+ [
+ 820,
+ "MP08-33-Green"
+ ],
+ [
+ 821,
+ "MP08-33-Red"
+ ],
+ [
+ 822,
+ "MP08-34-Blue"
+ ],
+ [
+ 823,
+ "MP08-34-Green"
+ ],
+ [
+ 824,
+ "MP08-34-Red"
+ ],
+ [
+ 825,
+ "MP08-36-Blue"
+ ],
+ [
+ 826,
+ "MP08-36-Green"
+ ],
+ [
+ 827,
+ "MP08-36-Red"
+ ],
+ [
+ 841,
+ "MP09"
+ ],
+ [
+ 829,
+ "MP09-32-Black"
+ ],
+ [
+ 830,
+ "MP09-32-Blue"
+ ],
+ [
+ 831,
+ "MP09-32-Red"
+ ],
+ [
+ 832,
+ "MP09-33-Black"
+ ],
+ [
+ 833,
+ "MP09-33-Blue"
+ ],
+ [
+ 834,
+ "MP09-33-Red"
+ ],
+ [
+ 835,
+ "MP09-34-Black"
+ ],
+ [
+ 836,
+ "MP09-34-Blue"
+ ],
+ [
+ 837,
+ "MP09-34-Red"
+ ],
+ [
+ 838,
+ "MP09-36-Black"
+ ],
+ [
+ 839,
+ "MP09-36-Blue"
+ ],
+ [
+ 840,
+ "MP09-36-Red"
+ ],
+ [
+ 854,
+ "MP10"
+ ],
+ [
+ 842,
+ "MP10-32-Black"
+ ],
+ [
+ 843,
+ "MP10-32-Blue"
+ ],
+ [
+ 844,
+ "MP10-32-Green"
+ ],
+ [
+ 845,
+ "MP10-33-Black"
+ ],
+ [
+ 846,
+ "MP10-33-Blue"
+ ],
+ [
+ 847,
+ "MP10-33-Green"
+ ],
+ [
+ 848,
+ "MP10-34-Black"
+ ],
+ [
+ 849,
+ "MP10-34-Blue"
+ ],
+ [
+ 850,
+ "MP10-34-Green"
+ ],
+ [
+ 851,
+ "MP10-36-Black"
+ ],
+ [
+ 852,
+ "MP10-36-Blue"
+ ],
+ [
+ 853,
+ "MP10-36-Green"
+ ],
+ [
+ 867,
+ "MP11"
+ ],
+ [
+ 855,
+ "MP11-32-Blue"
+ ],
+ [
+ 856,
+ "MP11-32-Brown"
+ ],
+ [
+ 857,
+ "MP11-32-Green"
+ ],
+ [
+ 858,
+ "MP11-33-Blue"
+ ],
+ [
+ 859,
+ "MP11-33-Brown"
+ ],
+ [
+ 860,
+ "MP11-33-Green"
+ ],
+ [
+ 861,
+ "MP11-34-Blue"
+ ],
+ [
+ 862,
+ "MP11-34-Brown"
+ ],
+ [
+ 863,
+ "MP11-34-Green"
+ ],
+ [
+ 864,
+ "MP11-36-Blue"
+ ],
+ [
+ 865,
+ "MP11-36-Brown"
+ ],
+ [
+ 866,
+ "MP11-36-Green"
+ ],
+ [
+ 880,
+ "MP12"
+ ],
+ [
+ 868,
+ "MP12-32-Black"
+ ],
+ [
+ 869,
+ "MP12-32-Blue"
+ ],
+ [
+ 870,
+ "MP12-32-Red"
+ ],
+ [
+ 871,
+ "MP12-33-Black"
+ ],
+ [
+ 872,
+ "MP12-33-Blue"
+ ],
+ [
+ 873,
+ "MP12-33-Red"
+ ],
+ [
+ 874,
+ "MP12-34-Black"
+ ],
+ [
+ 875,
+ "MP12-34-Blue"
+ ],
+ [
+ 876,
+ "MP12-34-Red"
+ ],
+ [
+ 877,
+ "MP12-36-Black"
+ ],
+ [
+ 878,
+ "MP12-36-Blue"
+ ],
+ [
+ 879,
+ "MP12-36-Red"
+ ],
+ [
+ 558,
+ "MS01"
+ ],
+ [
+ 552,
+ "MS01-L-Black"
+ ],
+ [
+ 553,
+ "MS01-L-Brown"
+ ],
+ [
+ 554,
+ "MS01-L-Yellow"
+ ],
+ [
+ 549,
+ "MS01-M-Black"
+ ],
+ [
+ 550,
+ "MS01-M-Brown"
+ ],
+ [
+ 551,
+ "MS01-M-Yellow"
+ ],
+ [
+ 546,
+ "MS01-S-Black"
+ ],
+ [
+ 547,
+ "MS01-S-Brown"
+ ],
+ [
+ 548,
+ "MS01-S-Yellow"
+ ],
+ [
+ 555,
+ "MS01-XL-Black"
+ ],
+ [
+ 556,
+ "MS01-XL-Brown"
+ ],
+ [
+ 557,
+ "MS01-XL-Yellow"
+ ],
+ [
+ 543,
+ "MS01-XS-Black"
+ ],
+ [
+ 544,
+ "MS01-XS-Brown"
+ ],
+ [
+ 545,
+ "MS01-XS-Yellow"
+ ],
+ [
+ 574,
+ "MS02"
+ ],
+ [
+ 568,
+ "MS02-L-Black"
+ ],
+ [
+ 569,
+ "MS02-L-Blue"
+ ],
+ [
+ 570,
+ "MS02-L-Gray"
+ ],
+ [
+ 565,
+ "MS02-M-Black"
+ ],
+ [
+ 566,
+ "MS02-M-Blue"
+ ],
+ [
+ 567,
+ "MS02-M-Gray"
+ ],
+ [
+ 562,
+ "MS02-S-Black"
+ ],
+ [
+ 563,
+ "MS02-S-Blue"
+ ],
+ [
+ 564,
+ "MS02-S-Gray"
+ ],
+ [
+ 571,
+ "MS02-XL-Black"
+ ],
+ [
+ 572,
+ "MS02-XL-Blue"
+ ],
+ [
+ 573,
+ "MS02-XL-Gray"
+ ],
+ [
+ 559,
+ "MS02-XS-Black"
+ ],
+ [
+ 560,
+ "MS02-XS-Blue"
+ ],
+ [
+ 561,
+ "MS02-XS-Gray"
+ ],
+ [
+ 526,
+ "MS03"
+ ],
+ [
+ 520,
+ "MS03-L-Gray"
+ ],
+ [
+ 521,
+ "MS03-L-Green"
+ ],
+ [
+ 522,
+ "MS03-L-Orange"
+ ],
+ [
+ 517,
+ "MS03-M-Gray"
+ ],
+ [
+ 518,
+ "MS03-M-Green"
+ ],
+ [
+ 519,
+ "MS03-M-Orange"
+ ],
+ [
+ 514,
+ "MS03-S-Gray"
+ ],
+ [
+ 515,
+ "MS03-S-Green"
+ ],
+ [
+ 516,
+ "MS03-S-Orange"
+ ],
+ [
+ 523,
+ "MS03-XL-Gray"
+ ],
+ [
+ 524,
+ "MS03-XL-Green"
+ ],
+ [
+ 525,
+ "MS03-XL-Orange"
+ ],
+ [
+ 511,
+ "MS03-XS-Gray"
+ ],
+ [
+ 512,
+ "MS03-XS-Green"
+ ],
+ [
+ 513,
+ "MS03-XS-Orange"
+ ],
+ [
+ 446,
+ "MS04"
+ ],
+ [
+ 440,
+ "MS04-L-Black"
+ ],
+ [
+ 441,
+ "MS04-L-Orange"
+ ],
+ [
+ 442,
+ "MS04-L-Red"
+ ],
+ [
+ 437,
+ "MS04-M-Black"
+ ],
+ [
+ 438,
+ "MS04-M-Orange"
+ ],
+ [
+ 439,
+ "MS04-M-Red"
+ ],
+ [
+ 434,
+ "MS04-S-Black"
+ ],
+ [
+ 435,
+ "MS04-S-Orange"
+ ],
+ [
+ 436,
+ "MS04-S-Red"
+ ],
+ [
+ 443,
+ "MS04-XL-Black"
+ ],
+ [
+ 444,
+ "MS04-XL-Orange"
+ ],
+ [
+ 445,
+ "MS04-XL-Red"
+ ],
+ [
+ 431,
+ "MS04-XS-Black"
+ ],
+ [
+ 432,
+ "MS04-XS-Orange"
+ ],
+ [
+ 433,
+ "MS04-XS-Red"
+ ],
+ [
+ 462,
+ "MS05"
+ ],
+ [
+ 456,
+ "MS05-L-Black"
+ ],
+ [
+ 457,
+ "MS05-L-Blue"
+ ],
+ [
+ 458,
+ "MS05-L-Purple"
+ ],
+ [
+ 453,
+ "MS05-M-Black"
+ ],
+ [
+ 454,
+ "MS05-M-Blue"
+ ],
+ [
+ 455,
+ "MS05-M-Purple"
+ ],
+ [
+ 450,
+ "MS05-S-Black"
+ ],
+ [
+ 451,
+ "MS05-S-Blue"
+ ],
+ [
+ 452,
+ "MS05-S-Purple"
+ ],
+ [
+ 459,
+ "MS05-XL-Black"
+ ],
+ [
+ 460,
+ "MS05-XL-Blue"
+ ],
+ [
+ 461,
+ "MS05-XL-Purple"
+ ],
+ [
+ 447,
+ "MS05-XS-Black"
+ ],
+ [
+ 448,
+ "MS05-XS-Blue"
+ ],
+ [
+ 449,
+ "MS05-XS-Purple"
+ ],
+ [
+ 542,
+ "MS06"
+ ],
+ [
+ 536,
+ "MS06-L-Blue"
+ ],
+ [
+ 537,
+ "MS06-L-Green"
+ ],
+ [
+ 538,
+ "MS06-L-Yellow"
+ ],
+ [
+ 533,
+ "MS06-M-Blue"
+ ],
+ [
+ 534,
+ "MS06-M-Green"
+ ],
+ [
+ 535,
+ "MS06-M-Yellow"
+ ],
+ [
+ 530,
+ "MS06-S-Blue"
+ ],
+ [
+ 531,
+ "MS06-S-Green"
+ ],
+ [
+ 532,
+ "MS06-S-Yellow"
+ ],
+ [
+ 539,
+ "MS06-XL-Blue"
+ ],
+ [
+ 540,
+ "MS06-XL-Green"
+ ],
+ [
+ 541,
+ "MS06-XL-Yellow"
+ ],
+ [
+ 527,
+ "MS06-XS-Blue"
+ ],
+ [
+ 528,
+ "MS06-XS-Green"
+ ],
+ [
+ 529,
+ "MS06-XS-Yellow"
+ ],
+ [
+ 606,
+ "MS07"
+ ],
+ [
+ 600,
+ "MS07-L-Black"
+ ],
+ [
+ 601,
+ "MS07-L-Green"
+ ],
+ [
+ 602,
+ "MS07-L-White"
+ ],
+ [
+ 597,
+ "MS07-M-Black"
+ ],
+ [
+ 598,
+ "MS07-M-Green"
+ ],
+ [
+ 599,
+ "MS07-M-White"
+ ],
+ [
+ 594,
+ "MS07-S-Black"
+ ],
+ [
+ 595,
+ "MS07-S-Green"
+ ],
+ [
+ 596,
+ "MS07-S-White"
+ ],
+ [
+ 603,
+ "MS07-XL-Black"
+ ],
+ [
+ 604,
+ "MS07-XL-Green"
+ ],
+ [
+ 605,
+ "MS07-XL-White"
+ ],
+ [
+ 591,
+ "MS07-XS-Black"
+ ],
+ [
+ 592,
+ "MS07-XS-Green"
+ ],
+ [
+ 593,
+ "MS07-XS-White"
+ ],
+ [
+ 622,
+ "MS08"
+ ],
+ [
+ 616,
+ "MS08-L-Black"
+ ],
+ [
+ 617,
+ "MS08-L-Blue"
+ ],
+ [
+ 618,
+ "MS08-L-Red"
+ ],
+ [
+ 613,
+ "MS08-M-Black"
+ ],
+ [
+ 614,
+ "MS08-M-Blue"
+ ],
+ [
+ 615,
+ "MS08-M-Red"
+ ],
+ [
+ 610,
+ "MS08-S-Black"
+ ],
+ [
+ 611,
+ "MS08-S-Blue"
+ ],
+ [
+ 612,
+ "MS08-S-Red"
+ ],
+ [
+ 619,
+ "MS08-XL-Black"
+ ],
+ [
+ 620,
+ "MS08-XL-Blue"
+ ],
+ [
+ 621,
+ "MS08-XL-Red"
+ ],
+ [
+ 607,
+ "MS08-XS-Black"
+ ],
+ [
+ 608,
+ "MS08-XS-Blue"
+ ],
+ [
+ 609,
+ "MS08-XS-Red"
+ ],
+ [
+ 478,
+ "MS09"
+ ],
+ [
+ 472,
+ "MS09-L-Black"
+ ],
+ [
+ 473,
+ "MS09-L-Blue"
+ ],
+ [
+ 474,
+ "MS09-L-Red"
+ ],
+ [
+ 469,
+ "MS09-M-Black"
+ ],
+ [
+ 470,
+ "MS09-M-Blue"
+ ],
+ [
+ 471,
+ "MS09-M-Red"
+ ],
+ [
+ 466,
+ "MS09-S-Black"
+ ],
+ [
+ 467,
+ "MS09-S-Blue"
+ ],
+ [
+ 468,
+ "MS09-S-Red"
+ ],
+ [
+ 475,
+ "MS09-XL-Black"
+ ],
+ [
+ 476,
+ "MS09-XL-Blue"
+ ],
+ [
+ 477,
+ "MS09-XL-Red"
+ ],
+ [
+ 463,
+ "MS09-XS-Black"
+ ],
+ [
+ 464,
+ "MS09-XS-Blue"
+ ],
+ [
+ 465,
+ "MS09-XS-Red"
+ ],
+ [
+ 590,
+ "MS10"
+ ],
+ [
+ 584,
+ "MS10-L-Black"
+ ],
+ [
+ 585,
+ "MS10-L-Blue"
+ ],
+ [
+ 586,
+ "MS10-L-Red"
+ ],
+ [
+ 581,
+ "MS10-M-Black"
+ ],
+ [
+ 582,
+ "MS10-M-Blue"
+ ],
+ [
+ 583,
+ "MS10-M-Red"
+ ],
+ [
+ 578,
+ "MS10-S-Black"
+ ],
+ [
+ 579,
+ "MS10-S-Blue"
+ ],
+ [
+ 580,
+ "MS10-S-Red"
+ ],
+ [
+ 587,
+ "MS10-XL-Black"
+ ],
+ [
+ 588,
+ "MS10-XL-Blue"
+ ],
+ [
+ 589,
+ "MS10-XL-Red"
+ ],
+ [
+ 575,
+ "MS10-XS-Black"
+ ],
+ [
+ 576,
+ "MS10-XS-Blue"
+ ],
+ [
+ 577,
+ "MS10-XS-Red"
+ ],
+ [
+ 494,
+ "MS11"
+ ],
+ [
+ 488,
+ "MS11-L-Blue"
+ ],
+ [
+ 489,
+ "MS11-L-Green"
+ ],
+ [
+ 490,
+ "MS11-L-Yellow"
+ ],
+ [
+ 485,
+ "MS11-M-Blue"
+ ],
+ [
+ 486,
+ "MS11-M-Green"
+ ],
+ [
+ 487,
+ "MS11-M-Yellow"
+ ],
+ [
+ 482,
+ "MS11-S-Blue"
+ ],
+ [
+ 483,
+ "MS11-S-Green"
+ ],
+ [
+ 484,
+ "MS11-S-Yellow"
+ ],
+ [
+ 491,
+ "MS11-XL-Blue"
+ ],
+ [
+ 492,
+ "MS11-XL-Green"
+ ],
+ [
+ 493,
+ "MS11-XL-Yellow"
+ ],
+ [
+ 479,
+ "MS11-XS-Blue"
+ ],
+ [
+ 480,
+ "MS11-XS-Green"
+ ],
+ [
+ 481,
+ "MS11-XS-Yellow"
+ ],
+ [
+ 510,
+ "MS12"
+ ],
+ [
+ 504,
+ "MS12-L-Black"
+ ],
+ [
+ 505,
+ "MS12-L-Blue"
+ ],
+ [
+ 506,
+ "MS12-L-Red"
+ ],
+ [
+ 501,
+ "MS12-M-Black"
+ ],
+ [
+ 502,
+ "MS12-M-Blue"
+ ],
+ [
+ 503,
+ "MS12-M-Red"
+ ],
+ [
+ 498,
+ "MS12-S-Black"
+ ],
+ [
+ 499,
+ "MS12-S-Blue"
+ ],
+ [
+ 500,
+ "MS12-S-Red"
+ ],
+ [
+ 507,
+ "MS12-XL-Black"
+ ],
+ [
+ 508,
+ "MS12-XL-Blue"
+ ],
+ [
+ 509,
+ "MS12-XL-Red"
+ ],
+ [
+ 495,
+ "MS12-XS-Black"
+ ],
+ [
+ 496,
+ "MS12-XS-Blue"
+ ],
+ [
+ 497,
+ "MS12-XS-Red"
+ ],
+ [
+ 893,
+ "MSH01"
+ ],
+ [
+ 881,
+ "MSH01-32-Black"
+ ],
+ [
+ 882,
+ "MSH01-32-Blue"
+ ],
+ [
+ 883,
+ "MSH01-32-Red"
+ ],
+ [
+ 884,
+ "MSH01-33-Black"
+ ],
+ [
+ 885,
+ "MSH01-33-Blue"
+ ],
+ [
+ 886,
+ "MSH01-33-Red"
+ ],
+ [
+ 887,
+ "MSH01-34-Black"
+ ],
+ [
+ 888,
+ "MSH01-34-Blue"
+ ],
+ [
+ 889,
+ "MSH01-34-Red"
+ ],
+ [
+ 890,
+ "MSH01-36-Black"
+ ],
+ [
+ 891,
+ "MSH01-36-Blue"
+ ],
+ [
+ 892,
+ "MSH01-36-Red"
+ ],
+ [
+ 898,
+ "MSH02"
+ ],
+ [
+ 894,
+ "MSH02-32-Black"
+ ],
+ [
+ 895,
+ "MSH02-33-Black"
+ ],
+ [
+ 896,
+ "MSH02-34-Black"
+ ],
+ [
+ 897,
+ "MSH02-36-Black"
+ ],
+ [
+ 911,
+ "MSH03"
+ ],
+ [
+ 899,
+ "MSH03-32-Black"
+ ],
+ [
+ 900,
+ "MSH03-32-Blue"
+ ],
+ [
+ 901,
+ "MSH03-32-Green"
+ ],
+ [
+ 902,
+ "MSH03-33-Black"
+ ],
+ [
+ 903,
+ "MSH03-33-Blue"
+ ],
+ [
+ 904,
+ "MSH03-33-Green"
+ ],
+ [
+ 905,
+ "MSH03-34-Black"
+ ],
+ [
+ 906,
+ "MSH03-34-Blue"
+ ],
+ [
+ 907,
+ "MSH03-34-Green"
+ ],
+ [
+ 908,
+ "MSH03-36-Black"
+ ],
+ [
+ 909,
+ "MSH03-36-Blue"
+ ],
+ [
+ 910,
+ "MSH03-36-Green"
+ ],
+ [
+ 924,
+ "MSH04"
+ ],
+ [
+ 912,
+ "MSH04-32-Gray"
+ ],
+ [
+ 913,
+ "MSH04-32-Purple"
+ ],
+ [
+ 914,
+ "MSH04-32-Yellow"
+ ],
+ [
+ 915,
+ "MSH04-33-Gray"
+ ],
+ [
+ 916,
+ "MSH04-33-Purple"
+ ],
+ [
+ 917,
+ "MSH04-33-Yellow"
+ ],
+ [
+ 918,
+ "MSH04-34-Gray"
+ ],
+ [
+ 919,
+ "MSH04-34-Purple"
+ ],
+ [
+ 920,
+ "MSH04-34-Yellow"
+ ],
+ [
+ 921,
+ "MSH04-36-Gray"
+ ],
+ [
+ 922,
+ "MSH04-36-Purple"
+ ],
+ [
+ 923,
+ "MSH04-36-Yellow"
+ ],
+ [
+ 937,
+ "MSH05"
+ ],
+ [
+ 925,
+ "MSH05-32-Black"
+ ],
+ [
+ 926,
+ "MSH05-32-Blue"
+ ],
+ [
+ 927,
+ "MSH05-32-Gray"
+ ],
+ [
+ 928,
+ "MSH05-33-Black"
+ ],
+ [
+ 929,
+ "MSH05-33-Blue"
+ ],
+ [
+ 930,
+ "MSH05-33-Gray"
+ ],
+ [
+ 931,
+ "MSH05-34-Black"
+ ],
+ [
+ 932,
+ "MSH05-34-Blue"
+ ],
+ [
+ 933,
+ "MSH05-34-Gray"
+ ],
+ [
+ 934,
+ "MSH05-36-Black"
+ ],
+ [
+ 935,
+ "MSH05-36-Blue"
+ ],
+ [
+ 936,
+ "MSH05-36-Gray"
+ ],
+ [
+ 950,
+ "MSH06"
+ ],
+ [
+ 938,
+ "MSH06-32-Blue"
+ ],
+ [
+ 939,
+ "MSH06-32-Gray"
+ ],
+ [
+ 940,
+ "MSH06-32-Red"
+ ],
+ [
+ 941,
+ "MSH06-33-Blue"
+ ],
+ [
+ 942,
+ "MSH06-33-Gray"
+ ],
+ [
+ 943,
+ "MSH06-33-Red"
+ ],
+ [
+ 944,
+ "MSH06-34-Blue"
+ ],
+ [
+ 945,
+ "MSH06-34-Gray"
+ ],
+ [
+ 946,
+ "MSH06-34-Red"
+ ],
+ [
+ 947,
+ "MSH06-36-Blue"
+ ],
+ [
+ 948,
+ "MSH06-36-Gray"
+ ],
+ [
+ 949,
+ "MSH06-36-Red"
+ ],
+ [
+ 963,
+ "MSH07"
+ ],
+ [
+ 951,
+ "MSH07-32-Black"
+ ],
+ [
+ 952,
+ "MSH07-32-Blue"
+ ],
+ [
+ 953,
+ "MSH07-32-Purple"
+ ],
+ [
+ 954,
+ "MSH07-33-Black"
+ ],
+ [
+ 955,
+ "MSH07-33-Blue"
+ ],
+ [
+ 956,
+ "MSH07-33-Purple"
+ ],
+ [
+ 957,
+ "MSH07-34-Black"
+ ],
+ [
+ 958,
+ "MSH07-34-Blue"
+ ],
+ [
+ 959,
+ "MSH07-34-Purple"
+ ],
+ [
+ 960,
+ "MSH07-36-Black"
+ ],
+ [
+ 961,
+ "MSH07-36-Blue"
+ ],
+ [
+ 962,
+ "MSH07-36-Purple"
+ ],
+ [
+ 976,
+ "MSH08"
+ ],
+ [
+ 964,
+ "MSH08-32-Black"
+ ],
+ [
+ 965,
+ "MSH08-32-Blue"
+ ],
+ [
+ 966,
+ "MSH08-32-Green"
+ ],
+ [
+ 967,
+ "MSH08-33-Black"
+ ],
+ [
+ 968,
+ "MSH08-33-Blue"
+ ],
+ [
+ 969,
+ "MSH08-33-Green"
+ ],
+ [
+ 970,
+ "MSH08-34-Black"
+ ],
+ [
+ 971,
+ "MSH08-34-Blue"
+ ],
+ [
+ 972,
+ "MSH08-34-Green"
+ ],
+ [
+ 973,
+ "MSH08-36-Black"
+ ],
+ [
+ 974,
+ "MSH08-36-Blue"
+ ],
+ [
+ 975,
+ "MSH08-36-Green"
+ ],
+ [
+ 989,
+ "MSH09"
+ ],
+ [
+ 977,
+ "MSH09-32-Black"
+ ],
+ [
+ 978,
+ "MSH09-32-Blue"
+ ],
+ [
+ 979,
+ "MSH09-32-Green"
+ ],
+ [
+ 980,
+ "MSH09-33-Black"
+ ],
+ [
+ 981,
+ "MSH09-33-Blue"
+ ],
+ [
+ 982,
+ "MSH09-33-Green"
+ ],
+ [
+ 983,
+ "MSH09-34-Black"
+ ],
+ [
+ 984,
+ "MSH09-34-Blue"
+ ],
+ [
+ 985,
+ "MSH09-34-Green"
+ ],
+ [
+ 986,
+ "MSH09-36-Black"
+ ],
+ [
+ 987,
+ "MSH09-36-Blue"
+ ],
+ [
+ 988,
+ "MSH09-36-Green"
+ ],
+ [
+ 1002,
+ "MSH10"
+ ],
+ [
+ 990,
+ "MSH10-32-Blue"
+ ],
+ [
+ 991,
+ "MSH10-32-Green"
+ ],
+ [
+ 992,
+ "MSH10-32-Purple"
+ ],
+ [
+ 993,
+ "MSH10-33-Blue"
+ ],
+ [
+ 994,
+ "MSH10-33-Green"
+ ],
+ [
+ 995,
+ "MSH10-33-Purple"
+ ],
+ [
+ 996,
+ "MSH10-34-Blue"
+ ],
+ [
+ 997,
+ "MSH10-34-Green"
+ ],
+ [
+ 998,
+ "MSH10-34-Purple"
+ ],
+ [
+ 999,
+ "MSH10-36-Blue"
+ ],
+ [
+ 1000,
+ "MSH10-36-Green"
+ ],
+ [
+ 1001,
+ "MSH10-36-Purple"
+ ],
+ [
+ 1015,
+ "MSH11"
+ ],
+ [
+ 1003,
+ "MSH11-32-Black"
+ ],
+ [
+ 1004,
+ "MSH11-32-Blue"
+ ],
+ [
+ 1005,
+ "MSH11-32-Red"
+ ],
+ [
+ 1006,
+ "MSH11-33-Black"
+ ],
+ [
+ 1007,
+ "MSH11-33-Blue"
+ ],
+ [
+ 1008,
+ "MSH11-33-Red"
+ ],
+ [
+ 1009,
+ "MSH11-34-Black"
+ ],
+ [
+ 1010,
+ "MSH11-34-Blue"
+ ],
+ [
+ 1011,
+ "MSH11-34-Red"
+ ],
+ [
+ 1012,
+ "MSH11-36-Black"
+ ],
+ [
+ 1013,
+ "MSH11-36-Blue"
+ ],
+ [
+ 1014,
+ "MSH11-36-Red"
+ ],
+ [
+ 1028,
+ "MSH12"
+ ],
+ [
+ 1016,
+ "MSH12-32-Black"
+ ],
+ [
+ 1017,
+ "MSH12-32-Gray"
+ ],
+ [
+ 1018,
+ "MSH12-32-Red"
+ ],
+ [
+ 1019,
+ "MSH12-33-Black"
+ ],
+ [
+ 1020,
+ "MSH12-33-Gray"
+ ],
+ [
+ 1021,
+ "MSH12-33-Red"
+ ],
+ [
+ 1022,
+ "MSH12-34-Black"
+ ],
+ [
+ 1023,
+ "MSH12-34-Gray"
+ ],
+ [
+ 1024,
+ "MSH12-34-Red"
+ ],
+ [
+ 1025,
+ "MSH12-36-Black"
+ ],
+ [
+ 1026,
+ "MSH12-36-Gray"
+ ],
+ [
+ 1027,
+ "MSH12-36-Red"
+ ],
+ [
+ 638,
+ "MT01"
+ ],
+ [
+ 632,
+ "MT01-L-Gray"
+ ],
+ [
+ 633,
+ "MT01-L-Orange"
+ ],
+ [
+ 634,
+ "MT01-L-Red"
+ ],
+ [
+ 629,
+ "MT01-M-Gray"
+ ],
+ [
+ 630,
+ "MT01-M-Orange"
+ ],
+ [
+ 631,
+ "MT01-M-Red"
+ ],
+ [
+ 626,
+ "MT01-S-Gray"
+ ],
+ [
+ 627,
+ "MT01-S-Orange"
+ ],
+ [
+ 628,
+ "MT01-S-Red"
+ ],
+ [
+ 635,
+ "MT01-XL-Gray"
+ ],
+ [
+ 636,
+ "MT01-XL-Orange"
+ ],
+ [
+ 637,
+ "MT01-XL-Red"
+ ],
+ [
+ 623,
+ "MT01-XS-Gray"
+ ],
+ [
+ 624,
+ "MT01-XS-Orange"
+ ],
+ [
+ 625,
+ "MT01-XS-Red"
+ ],
+ [
+ 654,
+ "MT02"
+ ],
+ [
+ 648,
+ "MT02-L-Gray"
+ ],
+ [
+ 649,
+ "MT02-L-Red"
+ ],
+ [
+ 650,
+ "MT02-L-White"
+ ],
+ [
+ 645,
+ "MT02-M-Gray"
+ ],
+ [
+ 646,
+ "MT02-M-Red"
+ ],
+ [
+ 647,
+ "MT02-M-White"
+ ],
+ [
+ 642,
+ "MT02-S-Gray"
+ ],
+ [
+ 643,
+ "MT02-S-Red"
+ ],
+ [
+ 644,
+ "MT02-S-White"
+ ],
+ [
+ 651,
+ "MT02-XL-Gray"
+ ],
+ [
+ 652,
+ "MT02-XL-Red"
+ ],
+ [
+ 653,
+ "MT02-XL-White"
+ ],
+ [
+ 639,
+ "MT02-XS-Gray"
+ ],
+ [
+ 640,
+ "MT02-XS-Red"
+ ],
+ [
+ 641,
+ "MT02-XS-White"
+ ],
+ [
+ 670,
+ "MT03"
+ ],
+ [
+ 664,
+ "MT03-L-Blue"
+ ],
+ [
+ 665,
+ "MT03-L-Red"
+ ],
+ [
+ 666,
+ "MT03-L-Yellow"
+ ],
+ [
+ 661,
+ "MT03-M-Blue"
+ ],
+ [
+ 662,
+ "MT03-M-Red"
+ ],
+ [
+ 663,
+ "MT03-M-Yellow"
+ ],
+ [
+ 658,
+ "MT03-S-Blue"
+ ],
+ [
+ 659,
+ "MT03-S-Red"
+ ],
+ [
+ 660,
+ "MT03-S-Yellow"
+ ],
+ [
+ 667,
+ "MT03-XL-Blue"
+ ],
+ [
+ 668,
+ "MT03-XL-Red"
+ ],
+ [
+ 669,
+ "MT03-XL-Yellow"
+ ],
+ [
+ 655,
+ "MT03-XS-Blue"
+ ],
+ [
+ 656,
+ "MT03-XS-Red"
+ ],
+ [
+ 657,
+ "MT03-XS-Yellow"
+ ],
+ [
+ 676,
+ "MT04"
+ ],
+ [
+ 674,
+ "MT04-L-Blue"
+ ],
+ [
+ 673,
+ "MT04-M-Blue"
+ ],
+ [
+ 672,
+ "MT04-S-Blue"
+ ],
+ [
+ 675,
+ "MT04-XL-Blue"
+ ],
+ [
+ 671,
+ "MT04-XS-Blue"
+ ],
+ [
+ 682,
+ "MT05"
+ ],
+ [
+ 680,
+ "MT05-L-Blue"
+ ],
+ [
+ 679,
+ "MT05-M-Blue"
+ ],
+ [
+ 678,
+ "MT05-S-Blue"
+ ],
+ [
+ 681,
+ "MT05-XL-Blue"
+ ],
+ [
+ 677,
+ "MT05-XS-Blue"
+ ],
+ [
+ 688,
+ "MT06"
+ ],
+ [
+ 686,
+ "MT06-L-Black"
+ ],
+ [
+ 685,
+ "MT06-M-Black"
+ ],
+ [
+ 684,
+ "MT06-S-Black"
+ ],
+ [
+ 687,
+ "MT06-XL-Black"
+ ],
+ [
+ 683,
+ "MT06-XS-Black"
+ ],
+ [
+ 694,
+ "MT07"
+ ],
+ [
+ 692,
+ "MT07-L-Gray"
+ ],
+ [
+ 691,
+ "MT07-M-Gray"
+ ],
+ [
+ 690,
+ "MT07-S-Gray"
+ ],
+ [
+ 693,
+ "MT07-XL-Gray"
+ ],
+ [
+ 689,
+ "MT07-XS-Gray"
+ ],
+ [
+ 700,
+ "MT08"
+ ],
+ [
+ 698,
+ "MT08-L-Green"
+ ],
+ [
+ 697,
+ "MT08-M-Green"
+ ],
+ [
+ 696,
+ "MT08-S-Green"
+ ],
+ [
+ 699,
+ "MT08-XL-Green"
+ ],
+ [
+ 695,
+ "MT08-XS-Green"
+ ],
+ [
+ 706,
+ "MT09"
+ ],
+ [
+ 704,
+ "MT09-L-Blue"
+ ],
+ [
+ 703,
+ "MT09-M-Blue"
+ ],
+ [
+ 702,
+ "MT09-S-Blue"
+ ],
+ [
+ 705,
+ "MT09-XL-Blue"
+ ],
+ [
+ 701,
+ "MT09-XS-Blue"
+ ],
+ [
+ 712,
+ "MT10"
+ ],
+ [
+ 710,
+ "MT10-L-Yellow"
+ ],
+ [
+ 709,
+ "MT10-M-Yellow"
+ ],
+ [
+ 708,
+ "MT10-S-Yellow"
+ ],
+ [
+ 711,
+ "MT10-XL-Yellow"
+ ],
+ [
+ 707,
+ "MT10-XS-Yellow"
+ ],
+ [
+ 718,
+ "MT11"
+ ],
+ [
+ 716,
+ "MT11-L-Blue"
+ ],
+ [
+ 715,
+ "MT11-M-Blue"
+ ],
+ [
+ 714,
+ "MT11-S-Blue"
+ ],
+ [
+ 717,
+ "MT11-XL-Blue"
+ ],
+ [
+ 713,
+ "MT11-XS-Blue"
+ ],
+ [
+ 724,
+ "MT12"
+ ],
+ [
+ 722,
+ "MT12-L-Blue"
+ ],
+ [
+ 721,
+ "MT12-M-Blue"
+ ],
+ [
+ 720,
+ "MT12-S-Blue"
+ ],
+ [
+ 723,
+ "MT12-XL-Blue"
+ ],
+ [
+ 719,
+ "MT12-XS-Blue"
+ ],
+ [
+ 1604,
+ "WB01"
+ ],
+ [
+ 1598,
+ "WB01-L-Black"
+ ],
+ [
+ 1599,
+ "WB01-L-Gray"
+ ],
+ [
+ 1600,
+ "WB01-L-Purple"
+ ],
+ [
+ 1595,
+ "WB01-M-Black"
+ ],
+ [
+ 1596,
+ "WB01-M-Gray"
+ ],
+ [
+ 1597,
+ "WB01-M-Purple"
+ ],
+ [
+ 1592,
+ "WB01-S-Black"
+ ],
+ [
+ 1593,
+ "WB01-S-Gray"
+ ],
+ [
+ 1594,
+ "WB01-S-Purple"
+ ],
+ [
+ 1601,
+ "WB01-XL-Black"
+ ],
+ [
+ 1602,
+ "WB01-XL-Gray"
+ ],
+ [
+ 1603,
+ "WB01-XL-Purple"
+ ],
+ [
+ 1589,
+ "WB01-XS-Black"
+ ],
+ [
+ 1590,
+ "WB01-XS-Gray"
+ ],
+ [
+ 1591,
+ "WB01-XS-Purple"
+ ],
+ [
+ 1620,
+ "WB02"
+ ],
+ [
+ 1614,
+ "WB02-L-Blue"
+ ],
+ [
+ 1615,
+ "WB02-L-Orange"
+ ],
+ [
+ 1616,
+ "WB02-L-Yellow"
+ ],
+ [
+ 1611,
+ "WB02-M-Blue"
+ ],
+ [
+ 1612,
+ "WB02-M-Orange"
+ ],
+ [
+ 1613,
+ "WB02-M-Yellow"
+ ],
+ [
+ 1608,
+ "WB02-S-Blue"
+ ],
+ [
+ 1609,
+ "WB02-S-Orange"
+ ],
+ [
+ 1610,
+ "WB02-S-Yellow"
+ ],
+ [
+ 1617,
+ "WB02-XL-Blue"
+ ],
+ [
+ 1618,
+ "WB02-XL-Orange"
+ ],
+ [
+ 1619,
+ "WB02-XL-Yellow"
+ ],
+ [
+ 1605,
+ "WB02-XS-Blue"
+ ],
+ [
+ 1606,
+ "WB02-XS-Orange"
+ ],
+ [
+ 1607,
+ "WB02-XS-Yellow"
+ ],
+ [
+ 1636,
+ "WB03"
+ ],
+ [
+ 1630,
+ "WB03-L-Green"
+ ],
+ [
+ 1631,
+ "WB03-L-Red"
+ ],
+ [
+ 1632,
+ "WB03-L-Yellow"
+ ],
+ [
+ 1627,
+ "WB03-M-Green"
+ ],
+ [
+ 1628,
+ "WB03-M-Red"
+ ],
+ [
+ 1629,
+ "WB03-M-Yellow"
+ ],
+ [
+ 1624,
+ "WB03-S-Green"
+ ],
+ [
+ 1625,
+ "WB03-S-Red"
+ ],
+ [
+ 1626,
+ "WB03-S-Yellow"
+ ],
+ [
+ 1633,
+ "WB03-XL-Green"
+ ],
+ [
+ 1634,
+ "WB03-XL-Red"
+ ],
+ [
+ 1635,
+ "WB03-XL-Yellow"
+ ],
+ [
+ 1621,
+ "WB03-XS-Green"
+ ],
+ [
+ 1622,
+ "WB03-XS-Red"
+ ],
+ [
+ 1623,
+ "WB03-XS-Yellow"
+ ],
+ [
+ 1652,
+ "WB04"
+ ],
+ [
+ 1646,
+ "WB04-L-Blue"
+ ],
+ [
+ 1647,
+ "WB04-L-Purple"
+ ],
+ [
+ 1648,
+ "WB04-L-Yellow"
+ ],
+ [
+ 1643,
+ "WB04-M-Blue"
+ ],
+ [
+ 1644,
+ "WB04-M-Purple"
+ ],
+ [
+ 1645,
+ "WB04-M-Yellow"
+ ],
+ [
+ 1640,
+ "WB04-S-Blue"
+ ],
+ [
+ 1641,
+ "WB04-S-Purple"
+ ],
+ [
+ 1642,
+ "WB04-S-Yellow"
+ ],
+ [
+ 1649,
+ "WB04-XL-Blue"
+ ],
+ [
+ 1650,
+ "WB04-XL-Purple"
+ ],
+ [
+ 1651,
+ "WB04-XL-Yellow"
+ ],
+ [
+ 1637,
+ "WB04-XS-Blue"
+ ],
+ [
+ 1638,
+ "WB04-XS-Purple"
+ ],
+ [
+ 1639,
+ "WB04-XS-Yellow"
+ ],
+ [
+ 1668,
+ "WB05"
+ ],
+ [
+ 1662,
+ "WB05-L-Black"
+ ],
+ [
+ 1663,
+ "WB05-L-Orange"
+ ],
+ [
+ 1664,
+ "WB05-L-Purple"
+ ],
+ [
+ 1659,
+ "WB05-M-Black"
+ ],
+ [
+ 1660,
+ "WB05-M-Orange"
+ ],
+ [
+ 1661,
+ "WB05-M-Purple"
+ ],
+ [
+ 1656,
+ "WB05-S-Black"
+ ],
+ [
+ 1657,
+ "WB05-S-Orange"
+ ],
+ [
+ 1658,
+ "WB05-S-Purple"
+ ],
+ [
+ 1665,
+ "WB05-XL-Black"
+ ],
+ [
+ 1666,
+ "WB05-XL-Orange"
+ ],
+ [
+ 1667,
+ "WB05-XL-Purple"
+ ],
+ [
+ 1653,
+ "WB05-XS-Black"
+ ],
+ [
+ 1654,
+ "WB05-XS-Orange"
+ ],
+ [
+ 1655,
+ "WB05-XS-Purple"
+ ],
+ [
+ 1044,
+ "WH01"
+ ],
+ [
+ 1038,
+ "WH01-L-Green"
+ ],
+ [
+ 1039,
+ "WH01-L-Orange"
+ ],
+ [
+ 1040,
+ "WH01-L-Purple"
+ ],
+ [
+ 1035,
+ "WH01-M-Green"
+ ],
+ [
+ 1036,
+ "WH01-M-Orange"
+ ],
+ [
+ 1037,
+ "WH01-M-Purple"
+ ],
+ [
+ 1032,
+ "WH01-S-Green"
+ ],
+ [
+ 1033,
+ "WH01-S-Orange"
+ ],
+ [
+ 1034,
+ "WH01-S-Purple"
+ ],
+ [
+ 1041,
+ "WH01-XL-Green"
+ ],
+ [
+ 1042,
+ "WH01-XL-Orange"
+ ],
+ [
+ 1043,
+ "WH01-XL-Purple"
+ ],
+ [
+ 1029,
+ "WH01-XS-Green"
+ ],
+ [
+ 1030,
+ "WH01-XS-Orange"
+ ],
+ [
+ 1031,
+ "WH01-XS-Purple"
+ ],
+ [
+ 1060,
+ "WH02"
+ ],
+ [
+ 1054,
+ "WH02-L-Blue"
+ ],
+ [
+ 1055,
+ "WH02-L-Green"
+ ],
+ [
+ 1056,
+ "WH02-L-Orange"
+ ],
+ [
+ 1051,
+ "WH02-M-Blue"
+ ],
+ [
+ 1052,
+ "WH02-M-Green"
+ ],
+ [
+ 1053,
+ "WH02-M-Orange"
+ ],
+ [
+ 1048,
+ "WH02-S-Blue"
+ ],
+ [
+ 1049,
+ "WH02-S-Green"
+ ],
+ [
+ 1050,
+ "WH02-S-Orange"
+ ],
+ [
+ 1057,
+ "WH02-XL-Blue"
+ ],
+ [
+ 1058,
+ "WH02-XL-Green"
+ ],
+ [
+ 1059,
+ "WH02-XL-Orange"
+ ],
+ [
+ 1045,
+ "WH02-XS-Blue"
+ ],
+ [
+ 1046,
+ "WH02-XS-Green"
+ ],
+ [
+ 1047,
+ "WH02-XS-Orange"
+ ],
+ [
+ 1076,
+ "WH03"
+ ],
+ [
+ 1070,
+ "WH03-L-Green"
+ ],
+ [
+ 1071,
+ "WH03-L-Purple"
+ ],
+ [
+ 1072,
+ "WH03-L-Red"
+ ],
+ [
+ 1067,
+ "WH03-M-Green"
+ ],
+ [
+ 1068,
+ "WH03-M-Purple"
+ ],
+ [
+ 1069,
+ "WH03-M-Red"
+ ],
+ [
+ 1064,
+ "WH03-S-Green"
+ ],
+ [
+ 1065,
+ "WH03-S-Purple"
+ ],
+ [
+ 1066,
+ "WH03-S-Red"
+ ],
+ [
+ 1073,
+ "WH03-XL-Green"
+ ],
+ [
+ 1074,
+ "WH03-XL-Purple"
+ ],
+ [
+ 1075,
+ "WH03-XL-Red"
+ ],
+ [
+ 1061,
+ "WH03-XS-Green"
+ ],
+ [
+ 1062,
+ "WH03-XS-Purple"
+ ],
+ [
+ 1063,
+ "WH03-XS-Red"
+ ],
+ [
+ 1092,
+ "WH04"
+ ],
+ [
+ 1086,
+ "WH04-L-Blue"
+ ],
+ [
+ 1087,
+ "WH04-L-Orange"
+ ],
+ [
+ 1088,
+ "WH04-L-Purple"
+ ],
+ [
+ 1083,
+ "WH04-M-Blue"
+ ],
+ [
+ 1084,
+ "WH04-M-Orange"
+ ],
+ [
+ 1085,
+ "WH04-M-Purple"
+ ],
+ [
+ 1080,
+ "WH04-S-Blue"
+ ],
+ [
+ 1081,
+ "WH04-S-Orange"
+ ],
+ [
+ 1082,
+ "WH04-S-Purple"
+ ],
+ [
+ 1089,
+ "WH04-XL-Blue"
+ ],
+ [
+ 1090,
+ "WH04-XL-Orange"
+ ],
+ [
+ 1091,
+ "WH04-XL-Purple"
+ ],
+ [
+ 1077,
+ "WH04-XS-Blue"
+ ],
+ [
+ 1078,
+ "WH04-XS-Orange"
+ ],
+ [
+ 1079,
+ "WH04-XS-Purple"
+ ],
+ [
+ 1108,
+ "WH05"
+ ],
+ [
+ 1102,
+ "WH05-L-Orange"
+ ],
+ [
+ 1103,
+ "WH05-L-Purple"
+ ],
+ [
+ 1104,
+ "WH05-L-White"
+ ],
+ [
+ 1099,
+ "WH05-M-Orange"
+ ],
+ [
+ 1100,
+ "WH05-M-Purple"
+ ],
+ [
+ 1101,
+ "WH05-M-White"
+ ],
+ [
+ 1096,
+ "WH05-S-Orange"
+ ],
+ [
+ 1097,
+ "WH05-S-Purple"
+ ],
+ [
+ 1098,
+ "WH05-S-White"
+ ],
+ [
+ 1105,
+ "WH05-XL-Orange"
+ ],
+ [
+ 1106,
+ "WH05-XL-Purple"
+ ],
+ [
+ 1107,
+ "WH05-XL-White"
+ ],
+ [
+ 1093,
+ "WH05-XS-Orange"
+ ],
+ [
+ 1094,
+ "WH05-XS-Purple"
+ ],
+ [
+ 1095,
+ "WH05-XS-White"
+ ],
+ [
+ 1114,
+ "WH06"
+ ],
+ [
+ 1112,
+ "WH06-L-Purple"
+ ],
+ [
+ 1111,
+ "WH06-M-Purple"
+ ],
+ [
+ 1110,
+ "WH06-S-Purple"
+ ],
+ [
+ 1113,
+ "WH06-XL-Purple"
+ ],
+ [
+ 1109,
+ "WH06-XS-Purple"
+ ],
+ [
+ 1130,
+ "WH07"
+ ],
+ [
+ 1124,
+ "WH07-L-Gray"
+ ],
+ [
+ 1125,
+ "WH07-L-Purple"
+ ],
+ [
+ 1126,
+ "WH07-L-White"
+ ],
+ [
+ 1121,
+ "WH07-M-Gray"
+ ],
+ [
+ 1122,
+ "WH07-M-Purple"
+ ],
+ [
+ 1123,
+ "WH07-M-White"
+ ],
+ [
+ 1118,
+ "WH07-S-Gray"
+ ],
+ [
+ 1119,
+ "WH07-S-Purple"
+ ],
+ [
+ 1120,
+ "WH07-S-White"
+ ],
+ [
+ 1127,
+ "WH07-XL-Gray"
+ ],
+ [
+ 1128,
+ "WH07-XL-Purple"
+ ],
+ [
+ 1129,
+ "WH07-XL-White"
+ ],
+ [
+ 1115,
+ "WH07-XS-Gray"
+ ],
+ [
+ 1116,
+ "WH07-XS-Purple"
+ ],
+ [
+ 1117,
+ "WH07-XS-White"
+ ],
+ [
+ 1146,
+ "WH08"
+ ],
+ [
+ 1140,
+ "WH08-L-Orange"
+ ],
+ [
+ 1141,
+ "WH08-L-Purple"
+ ],
+ [
+ 1142,
+ "WH08-L-White"
+ ],
+ [
+ 1137,
+ "WH08-M-Orange"
+ ],
+ [
+ 1138,
+ "WH08-M-Purple"
+ ],
+ [
+ 1139,
+ "WH08-M-White"
+ ],
+ [
+ 1134,
+ "WH08-S-Orange"
+ ],
+ [
+ 1135,
+ "WH08-S-Purple"
+ ],
+ [
+ 1136,
+ "WH08-S-White"
+ ],
+ [
+ 1143,
+ "WH08-XL-Orange"
+ ],
+ [
+ 1144,
+ "WH08-XL-Purple"
+ ],
+ [
+ 1145,
+ "WH08-XL-White"
+ ],
+ [
+ 1131,
+ "WH08-XS-Orange"
+ ],
+ [
+ 1132,
+ "WH08-XS-Purple"
+ ],
+ [
+ 1133,
+ "WH08-XS-White"
+ ],
+ [
+ 1162,
+ "WH09"
+ ],
+ [
+ 1156,
+ "WH09-L-Green"
+ ],
+ [
+ 1157,
+ "WH09-L-Purple"
+ ],
+ [
+ 1158,
+ "WH09-L-Red"
+ ],
+ [
+ 1153,
+ "WH09-M-Green"
+ ],
+ [
+ 1154,
+ "WH09-M-Purple"
+ ],
+ [
+ 1155,
+ "WH09-M-Red"
+ ],
+ [
+ 1150,
+ "WH09-S-Green"
+ ],
+ [
+ 1151,
+ "WH09-S-Purple"
+ ],
+ [
+ 1152,
+ "WH09-S-Red"
+ ],
+ [
+ 1159,
+ "WH09-XL-Green"
+ ],
+ [
+ 1160,
+ "WH09-XL-Purple"
+ ],
+ [
+ 1161,
+ "WH09-XL-Red"
+ ],
+ [
+ 1147,
+ "WH09-XS-Green"
+ ],
+ [
+ 1148,
+ "WH09-XS-Purple"
+ ],
+ [
+ 1149,
+ "WH09-XS-Red"
+ ],
+ [
+ 1178,
+ "WH10"
+ ],
+ [
+ 1172,
+ "WH10-L-Blue"
+ ],
+ [
+ 1173,
+ "WH10-L-Gray"
+ ],
+ [
+ 1174,
+ "WH10-L-Yellow"
+ ],
+ [
+ 1169,
+ "WH10-M-Blue"
+ ],
+ [
+ 1170,
+ "WH10-M-Gray"
+ ],
+ [
+ 1171,
+ "WH10-M-Yellow"
+ ],
+ [
+ 1166,
+ "WH10-S-Blue"
+ ],
+ [
+ 1167,
+ "WH10-S-Gray"
+ ],
+ [
+ 1168,
+ "WH10-S-Yellow"
+ ],
+ [
+ 1175,
+ "WH10-XL-Blue"
+ ],
+ [
+ 1176,
+ "WH10-XL-Gray"
+ ],
+ [
+ 1177,
+ "WH10-XL-Yellow"
+ ],
+ [
+ 1163,
+ "WH10-XS-Blue"
+ ],
+ [
+ 1164,
+ "WH10-XS-Gray"
+ ],
+ [
+ 1165,
+ "WH10-XS-Yellow"
+ ],
+ [
+ 1194,
+ "WH11"
+ ],
+ [
+ 1188,
+ "WH11-L-Blue"
+ ],
+ [
+ 1189,
+ "WH11-L-Green"
+ ],
+ [
+ 1190,
+ "WH11-L-Orange"
+ ],
+ [
+ 1185,
+ "WH11-M-Blue"
+ ],
+ [
+ 1186,
+ "WH11-M-Green"
+ ],
+ [
+ 1187,
+ "WH11-M-Orange"
+ ],
+ [
+ 1182,
+ "WH11-S-Blue"
+ ],
+ [
+ 1183,
+ "WH11-S-Green"
+ ],
+ [
+ 1184,
+ "WH11-S-Orange"
+ ],
+ [
+ 1191,
+ "WH11-XL-Blue"
+ ],
+ [
+ 1192,
+ "WH11-XL-Green"
+ ],
+ [
+ 1193,
+ "WH11-XL-Orange"
+ ],
+ [
+ 1179,
+ "WH11-XS-Blue"
+ ],
+ [
+ 1180,
+ "WH11-XS-Green"
+ ],
+ [
+ 1181,
+ "WH11-XS-Orange"
+ ],
+ [
+ 1210,
+ "WH12"
+ ],
+ [
+ 1204,
+ "WH12-L-Gray"
+ ],
+ [
+ 1205,
+ "WH12-L-Green"
+ ],
+ [
+ 1206,
+ "WH12-L-Purple"
+ ],
+ [
+ 1201,
+ "WH12-M-Gray"
+ ],
+ [
+ 1202,
+ "WH12-M-Green"
+ ],
+ [
+ 1203,
+ "WH12-M-Purple"
+ ],
+ [
+ 1198,
+ "WH12-S-Gray"
+ ],
+ [
+ 1199,
+ "WH12-S-Green"
+ ],
+ [
+ 1200,
+ "WH12-S-Purple"
+ ],
+ [
+ 1207,
+ "WH12-XL-Gray"
+ ],
+ [
+ 1208,
+ "WH12-XL-Green"
+ ],
+ [
+ 1209,
+ "WH12-XL-Purple"
+ ],
+ [
+ 1195,
+ "WH12-XS-Gray"
+ ],
+ [
+ 1196,
+ "WH12-XS-Green"
+ ],
+ [
+ 1197,
+ "WH12-XS-Purple"
+ ],
+ [
+ 1220,
+ "WJ01"
+ ],
+ [
+ 1217,
+ "WJ01-L-Blue"
+ ],
+ [
+ 1218,
+ "WJ01-L-Red"
+ ],
+ [
+ 1219,
+ "WJ01-L-Yellow"
+ ],
+ [
+ 1214,
+ "WJ01-M-Blue"
+ ],
+ [
+ 1215,
+ "WJ01-M-Red"
+ ],
+ [
+ 1216,
+ "WJ01-M-Yellow"
+ ],
+ [
+ 1211,
+ "WJ01-S-Blue"
+ ],
+ [
+ 1212,
+ "WJ01-S-Red"
+ ],
+ [
+ 1213,
+ "WJ01-S-Yellow"
+ ],
+ [
+ 1236,
+ "WJ02"
+ ],
+ [
+ 1230,
+ "WJ02-L-Black"
+ ],
+ [
+ 1231,
+ "WJ02-L-Blue"
+ ],
+ [
+ 1232,
+ "WJ02-L-Gray"
+ ],
+ [
+ 1227,
+ "WJ02-M-Black"
+ ],
+ [
+ 1228,
+ "WJ02-M-Blue"
+ ],
+ [
+ 1229,
+ "WJ02-M-Gray"
+ ],
+ [
+ 1224,
+ "WJ02-S-Black"
+ ],
+ [
+ 1225,
+ "WJ02-S-Blue"
+ ],
+ [
+ 1226,
+ "WJ02-S-Gray"
+ ],
+ [
+ 1233,
+ "WJ02-XL-Black"
+ ],
+ [
+ 1234,
+ "WJ02-XL-Blue"
+ ],
+ [
+ 1235,
+ "WJ02-XL-Gray"
+ ],
+ [
+ 1221,
+ "WJ02-XS-Black"
+ ],
+ [
+ 1222,
+ "WJ02-XS-Blue"
+ ],
+ [
+ 1223,
+ "WJ02-XS-Gray"
+ ],
+ [
+ 1252,
+ "WJ03"
+ ],
+ [
+ 1246,
+ "WJ03-L-Blue"
+ ],
+ [
+ 1247,
+ "WJ03-L-Orange"
+ ],
+ [
+ 1248,
+ "WJ03-L-Red"
+ ],
+ [
+ 1243,
+ "WJ03-M-Blue"
+ ],
+ [
+ 1244,
+ "WJ03-M-Orange"
+ ],
+ [
+ 1245,
+ "WJ03-M-Red"
+ ],
+ [
+ 1240,
+ "WJ03-S-Blue"
+ ],
+ [
+ 1241,
+ "WJ03-S-Orange"
+ ],
+ [
+ 1242,
+ "WJ03-S-Red"
+ ],
+ [
+ 1249,
+ "WJ03-XL-Blue"
+ ],
+ [
+ 1250,
+ "WJ03-XL-Orange"
+ ],
+ [
+ 1251,
+ "WJ03-XL-Red"
+ ],
+ [
+ 1237,
+ "WJ03-XS-Blue"
+ ],
+ [
+ 1238,
+ "WJ03-XS-Orange"
+ ],
+ [
+ 1239,
+ "WJ03-XS-Red"
+ ],
+ [
+ 1268,
+ "WJ04"
+ ],
+ [
+ 1262,
+ "WJ04-L-Orange"
+ ],
+ [
+ 1263,
+ "WJ04-L-Red"
+ ],
+ [
+ 1264,
+ "WJ04-L-White"
+ ],
+ [
+ 1259,
+ "WJ04-M-Orange"
+ ],
+ [
+ 1260,
+ "WJ04-M-Red"
+ ],
+ [
+ 1261,
+ "WJ04-M-White"
+ ],
+ [
+ 1256,
+ "WJ04-S-Orange"
+ ],
+ [
+ 1257,
+ "WJ04-S-Red"
+ ],
+ [
+ 1258,
+ "WJ04-S-White"
+ ],
+ [
+ 1265,
+ "WJ04-XL-Orange"
+ ],
+ [
+ 1266,
+ "WJ04-XL-Red"
+ ],
+ [
+ 1267,
+ "WJ04-XL-White"
+ ],
+ [
+ 1253,
+ "WJ04-XS-Orange"
+ ],
+ [
+ 1254,
+ "WJ04-XS-Red"
+ ],
+ [
+ 1255,
+ "WJ04-XS-White"
+ ],
+ [
+ 1284,
+ "WJ05"
+ ],
+ [
+ 1278,
+ "WJ05-L-Brown"
+ ],
+ [
+ 1279,
+ "WJ05-L-Green"
+ ],
+ [
+ 1280,
+ "WJ05-L-Red"
+ ],
+ [
+ 1275,
+ "WJ05-M-Brown"
+ ],
+ [
+ 1276,
+ "WJ05-M-Green"
+ ],
+ [
+ 1277,
+ "WJ05-M-Red"
+ ],
+ [
+ 1272,
+ "WJ05-S-Brown"
+ ],
+ [
+ 1273,
+ "WJ05-S-Green"
+ ],
+ [
+ 1274,
+ "WJ05-S-Red"
+ ],
+ [
+ 1281,
+ "WJ05-XL-Brown"
+ ],
+ [
+ 1282,
+ "WJ05-XL-Green"
+ ],
+ [
+ 1283,
+ "WJ05-XL-Red"
+ ],
+ [
+ 1269,
+ "WJ05-XS-Brown"
+ ],
+ [
+ 1270,
+ "WJ05-XS-Green"
+ ],
+ [
+ 1271,
+ "WJ05-XS-Red"
+ ],
+ [
+ 1380,
+ "WJ06"
+ ],
+ [
+ 1374,
+ "WJ06-L-Blue"
+ ],
+ [
+ 1375,
+ "WJ06-L-Green"
+ ],
+ [
+ 1376,
+ "WJ06-L-Purple"
+ ],
+ [
+ 1371,
+ "WJ06-M-Blue"
+ ],
+ [
+ 1372,
+ "WJ06-M-Green"
+ ],
+ [
+ 1373,
+ "WJ06-M-Purple"
+ ],
+ [
+ 1368,
+ "WJ06-S-Blue"
+ ],
+ [
+ 1369,
+ "WJ06-S-Green"
+ ],
+ [
+ 1370,
+ "WJ06-S-Purple"
+ ],
+ [
+ 1377,
+ "WJ06-XL-Blue"
+ ],
+ [
+ 1378,
+ "WJ06-XL-Green"
+ ],
+ [
+ 1379,
+ "WJ06-XL-Purple"
+ ],
+ [
+ 1365,
+ "WJ06-XS-Blue"
+ ],
+ [
+ 1366,
+ "WJ06-XS-Green"
+ ],
+ [
+ 1367,
+ "WJ06-XS-Purple"
+ ],
+ [
+ 1300,
+ "WJ07"
+ ],
+ [
+ 1294,
+ "WJ07-L-Orange"
+ ],
+ [
+ 1295,
+ "WJ07-L-Purple"
+ ],
+ [
+ 1296,
+ "WJ07-L-Red"
+ ],
+ [
+ 1291,
+ "WJ07-M-Orange"
+ ],
+ [
+ 1292,
+ "WJ07-M-Purple"
+ ],
+ [
+ 1293,
+ "WJ07-M-Red"
+ ],
+ [
+ 1288,
+ "WJ07-S-Orange"
+ ],
+ [
+ 1289,
+ "WJ07-S-Purple"
+ ],
+ [
+ 1290,
+ "WJ07-S-Red"
+ ],
+ [
+ 1297,
+ "WJ07-XL-Orange"
+ ],
+ [
+ 1298,
+ "WJ07-XL-Purple"
+ ],
+ [
+ 1299,
+ "WJ07-XL-Red"
+ ],
+ [
+ 1285,
+ "WJ07-XS-Orange"
+ ],
+ [
+ 1286,
+ "WJ07-XS-Purple"
+ ],
+ [
+ 1287,
+ "WJ07-XS-Red"
+ ],
+ [
+ 1316,
+ "WJ08"
+ ],
+ [
+ 1310,
+ "WJ08-L-Gray"
+ ],
+ [
+ 1311,
+ "WJ08-L-Orange"
+ ],
+ [
+ 1312,
+ "WJ08-L-Purple"
+ ],
+ [
+ 1307,
+ "WJ08-M-Gray"
+ ],
+ [
+ 1308,
+ "WJ08-M-Orange"
+ ],
+ [
+ 1309,
+ "WJ08-M-Purple"
+ ],
+ [
+ 1304,
+ "WJ08-S-Gray"
+ ],
+ [
+ 1305,
+ "WJ08-S-Orange"
+ ],
+ [
+ 1306,
+ "WJ08-S-Purple"
+ ],
+ [
+ 1313,
+ "WJ08-XL-Gray"
+ ],
+ [
+ 1314,
+ "WJ08-XL-Orange"
+ ],
+ [
+ 1315,
+ "WJ08-XL-Purple"
+ ],
+ [
+ 1301,
+ "WJ08-XS-Gray"
+ ],
+ [
+ 1302,
+ "WJ08-XS-Orange"
+ ],
+ [
+ 1303,
+ "WJ08-XS-Purple"
+ ],
+ [
+ 1332,
+ "WJ09"
+ ],
+ [
+ 1326,
+ "WJ09-L-Blue"
+ ],
+ [
+ 1327,
+ "WJ09-L-Gray"
+ ],
+ [
+ 1328,
+ "WJ09-L-Green"
+ ],
+ [
+ 1323,
+ "WJ09-M-Blue"
+ ],
+ [
+ 1324,
+ "WJ09-M-Gray"
+ ],
+ [
+ 1325,
+ "WJ09-M-Green"
+ ],
+ [
+ 1320,
+ "WJ09-S-Blue"
+ ],
+ [
+ 1321,
+ "WJ09-S-Gray"
+ ],
+ [
+ 1322,
+ "WJ09-S-Green"
+ ],
+ [
+ 1329,
+ "WJ09-XL-Blue"
+ ],
+ [
+ 1330,
+ "WJ09-XL-Gray"
+ ],
+ [
+ 1331,
+ "WJ09-XL-Green"
+ ],
+ [
+ 1317,
+ "WJ09-XS-Blue"
+ ],
+ [
+ 1318,
+ "WJ09-XS-Gray"
+ ],
+ [
+ 1319,
+ "WJ09-XS-Green"
+ ],
+ [
+ 1348,
+ "WJ10"
+ ],
+ [
+ 1342,
+ "WJ10-L-Black"
+ ],
+ [
+ 1343,
+ "WJ10-L-Orange"
+ ],
+ [
+ 1344,
+ "WJ10-L-Yellow"
+ ],
+ [
+ 1339,
+ "WJ10-M-Black"
+ ],
+ [
+ 1340,
+ "WJ10-M-Orange"
+ ],
+ [
+ 1341,
+ "WJ10-M-Yellow"
+ ],
+ [
+ 1336,
+ "WJ10-S-Black"
+ ],
+ [
+ 1337,
+ "WJ10-S-Orange"
+ ],
+ [
+ 1338,
+ "WJ10-S-Yellow"
+ ],
+ [
+ 1345,
+ "WJ10-XL-Black"
+ ],
+ [
+ 1346,
+ "WJ10-XL-Orange"
+ ],
+ [
+ 1347,
+ "WJ10-XL-Yellow"
+ ],
+ [
+ 1333,
+ "WJ10-XS-Black"
+ ],
+ [
+ 1334,
+ "WJ10-XS-Orange"
+ ],
+ [
+ 1335,
+ "WJ10-XS-Yellow"
+ ],
+ [
+ 1364,
+ "WJ11"
+ ],
+ [
+ 1358,
+ "WJ11-L-Black"
+ ],
+ [
+ 1359,
+ "WJ11-L-Blue"
+ ],
+ [
+ 1360,
+ "WJ11-L-Orange"
+ ],
+ [
+ 1355,
+ "WJ11-M-Black"
+ ],
+ [
+ 1356,
+ "WJ11-M-Blue"
+ ],
+ [
+ 1357,
+ "WJ11-M-Orange"
+ ],
+ [
+ 1352,
+ "WJ11-S-Black"
+ ],
+ [
+ 1353,
+ "WJ11-S-Blue"
+ ],
+ [
+ 1354,
+ "WJ11-S-Orange"
+ ],
+ [
+ 1361,
+ "WJ11-XL-Black"
+ ],
+ [
+ 1362,
+ "WJ11-XL-Blue"
+ ],
+ [
+ 1363,
+ "WJ11-XL-Orange"
+ ],
+ [
+ 1349,
+ "WJ11-XS-Black"
+ ],
+ [
+ 1350,
+ "WJ11-XS-Blue"
+ ],
+ [
+ 1351,
+ "WJ11-XS-Orange"
+ ],
+ [
+ 1396,
+ "WJ12"
+ ],
+ [
+ 1390,
+ "WJ12-L-Black"
+ ],
+ [
+ 1391,
+ "WJ12-L-Blue"
+ ],
+ [
+ 1392,
+ "WJ12-L-Purple"
+ ],
+ [
+ 1387,
+ "WJ12-M-Black"
+ ],
+ [
+ 1388,
+ "WJ12-M-Blue"
+ ],
+ [
+ 1389,
+ "WJ12-M-Purple"
+ ],
+ [
+ 1384,
+ "WJ12-S-Black"
+ ],
+ [
+ 1385,
+ "WJ12-S-Blue"
+ ],
+ [
+ 1386,
+ "WJ12-S-Purple"
+ ],
+ [
+ 1393,
+ "WJ12-XL-Black"
+ ],
+ [
+ 1394,
+ "WJ12-XL-Blue"
+ ],
+ [
+ 1395,
+ "WJ12-XL-Purple"
+ ],
+ [
+ 1381,
+ "WJ12-XS-Black"
+ ],
+ [
+ 1382,
+ "WJ12-XS-Blue"
+ ],
+ [
+ 1383,
+ "WJ12-XS-Purple"
+ ],
+ [
+ 1819,
+ "WP01"
+ ],
+ [
+ 1813,
+ "WP01-28-Black"
+ ],
+ [
+ 1814,
+ "WP01-28-Gray"
+ ],
+ [
+ 1815,
+ "WP01-28-White"
+ ],
+ [
+ 1816,
+ "WP01-29-Black"
+ ],
+ [
+ 1817,
+ "WP01-29-Gray"
+ ],
+ [
+ 1818,
+ "WP01-29-White"
+ ],
+ [
+ 1826,
+ "WP02"
+ ],
+ [
+ 1820,
+ "WP02-28-Blue"
+ ],
+ [
+ 1821,
+ "WP02-28-Purple"
+ ],
+ [
+ 1822,
+ "WP02-28-Red"
+ ],
+ [
+ 1823,
+ "WP02-29-Blue"
+ ],
+ [
+ 1824,
+ "WP02-29-Purple"
+ ],
+ [
+ 1825,
+ "WP02-29-Red"
+ ],
+ [
+ 1833,
+ "WP03"
+ ],
+ [
+ 1827,
+ "WP03-28-Black"
+ ],
+ [
+ 1828,
+ "WP03-28-Blue"
+ ],
+ [
+ 1829,
+ "WP03-28-Purple"
+ ],
+ [
+ 1830,
+ "WP03-29-Black"
+ ],
+ [
+ 1831,
+ "WP03-29-Blue"
+ ],
+ [
+ 1832,
+ "WP03-29-Purple"
+ ],
+ [
+ 1840,
+ "WP04"
+ ],
+ [
+ 1834,
+ "WP04-28-Black"
+ ],
+ [
+ 1835,
+ "WP04-28-Blue"
+ ],
+ [
+ 1836,
+ "WP04-28-White"
+ ],
+ [
+ 1837,
+ "WP04-29-Black"
+ ],
+ [
+ 1838,
+ "WP04-29-Blue"
+ ],
+ [
+ 1839,
+ "WP04-29-White"
+ ],
+ [
+ 1847,
+ "WP05"
+ ],
+ [
+ 1841,
+ "WP05-28-Blue"
+ ],
+ [
+ 1842,
+ "WP05-28-Gray"
+ ],
+ [
+ 1843,
+ "WP05-28-Red"
+ ],
+ [
+ 1844,
+ "WP05-29-Blue"
+ ],
+ [
+ 1845,
+ "WP05-29-Gray"
+ ],
+ [
+ 1846,
+ "WP05-29-Red"
+ ],
+ [
+ 1854,
+ "WP06"
+ ],
+ [
+ 1848,
+ "WP06-28-Black"
+ ],
+ [
+ 1849,
+ "WP06-28-Blue"
+ ],
+ [
+ 1850,
+ "WP06-28-Orange"
+ ],
+ [
+ 1851,
+ "WP06-29-Black"
+ ],
+ [
+ 1852,
+ "WP06-29-Blue"
+ ],
+ [
+ 1853,
+ "WP06-29-Orange"
+ ],
+ [
+ 1861,
+ "WP07"
+ ],
+ [
+ 1855,
+ "WP07-28-Black"
+ ],
+ [
+ 1856,
+ "WP07-28-Blue"
+ ],
+ [
+ 1857,
+ "WP07-28-Orange"
+ ],
+ [
+ 1858,
+ "WP07-29-Black"
+ ],
+ [
+ 1859,
+ "WP07-29-Blue"
+ ],
+ [
+ 1860,
+ "WP07-29-Orange"
+ ],
+ [
+ 1868,
+ "WP08"
+ ],
+ [
+ 1862,
+ "WP08-28-Black"
+ ],
+ [
+ 1863,
+ "WP08-28-Green"
+ ],
+ [
+ 1864,
+ "WP08-28-Red"
+ ],
+ [
+ 1865,
+ "WP08-29-Black"
+ ],
+ [
+ 1866,
+ "WP08-29-Green"
+ ],
+ [
+ 1867,
+ "WP08-29-Red"
+ ],
+ [
+ 1875,
+ "WP09"
+ ],
+ [
+ 1869,
+ "WP09-28-Black"
+ ],
+ [
+ 1870,
+ "WP09-28-Blue"
+ ],
+ [
+ 1871,
+ "WP09-28-Purple"
+ ],
+ [
+ 1872,
+ "WP09-29-Black"
+ ],
+ [
+ 1873,
+ "WP09-29-Blue"
+ ],
+ [
+ 1874,
+ "WP09-29-Purple"
+ ],
+ [
+ 1882,
+ "WP10"
+ ],
+ [
+ 1876,
+ "WP10-28-Black"
+ ],
+ [
+ 1877,
+ "WP10-28-Gray"
+ ],
+ [
+ 1878,
+ "WP10-28-White"
+ ],
+ [
+ 1879,
+ "WP10-29-Black"
+ ],
+ [
+ 1880,
+ "WP10-29-Gray"
+ ],
+ [
+ 1881,
+ "WP10-29-White"
+ ],
+ [
+ 1889,
+ "WP11"
+ ],
+ [
+ 1883,
+ "WP11-28-Blue"
+ ],
+ [
+ 1884,
+ "WP11-28-Green"
+ ],
+ [
+ 1885,
+ "WP11-28-Red"
+ ],
+ [
+ 1886,
+ "WP11-29-Blue"
+ ],
+ [
+ 1887,
+ "WP11-29-Green"
+ ],
+ [
+ 1888,
+ "WP11-29-Red"
+ ],
+ [
+ 1896,
+ "WP12"
+ ],
+ [
+ 1890,
+ "WP12-28-Blue"
+ ],
+ [
+ 1891,
+ "WP12-28-Gray"
+ ],
+ [
+ 1892,
+ "WP12-28-Green"
+ ],
+ [
+ 1893,
+ "WP12-29-Blue"
+ ],
+ [
+ 1894,
+ "WP12-29-Gray"
+ ],
+ [
+ 1895,
+ "WP12-29-Green"
+ ],
+ [
+ 1903,
+ "WP13"
+ ],
+ [
+ 1897,
+ "WP13-28-Blue"
+ ],
+ [
+ 1898,
+ "WP13-28-Green"
+ ],
+ [
+ 1899,
+ "WP13-28-Orange"
+ ],
+ [
+ 1900,
+ "WP13-29-Blue"
+ ],
+ [
+ 1901,
+ "WP13-29-Green"
+ ],
+ [
+ 1902,
+ "WP13-29-Orange"
+ ],
+ [
+ 1572,
+ "WS01"
+ ],
+ [
+ 1566,
+ "WS01-L-Black"
+ ],
+ [
+ 1567,
+ "WS01-L-Green"
+ ],
+ [
+ 1568,
+ "WS01-L-Yellow"
+ ],
+ [
+ 1563,
+ "WS01-M-Black"
+ ],
+ [
+ 1564,
+ "WS01-M-Green"
+ ],
+ [
+ 1565,
+ "WS01-M-Yellow"
+ ],
+ [
+ 1560,
+ "WS01-S-Black"
+ ],
+ [
+ 1561,
+ "WS01-S-Green"
+ ],
+ [
+ 1562,
+ "WS01-S-Yellow"
+ ],
+ [
+ 1569,
+ "WS01-XL-Black"
+ ],
+ [
+ 1570,
+ "WS01-XL-Green"
+ ],
+ [
+ 1571,
+ "WS01-XL-Yellow"
+ ],
+ [
+ 1557,
+ "WS01-XS-Black"
+ ],
+ [
+ 1558,
+ "WS01-XS-Green"
+ ],
+ [
+ 1559,
+ "WS01-XS-Yellow"
+ ],
+ [
+ 1412,
+ "WS02"
+ ],
+ [
+ 1406,
+ "WS02-L-Blue"
+ ],
+ [
+ 1407,
+ "WS02-L-Green"
+ ],
+ [
+ 1408,
+ "WS02-L-Red"
+ ],
+ [
+ 1403,
+ "WS02-M-Blue"
+ ],
+ [
+ 1404,
+ "WS02-M-Green"
+ ],
+ [
+ 1405,
+ "WS02-M-Red"
+ ],
+ [
+ 1400,
+ "WS02-S-Blue"
+ ],
+ [
+ 1401,
+ "WS02-S-Green"
+ ],
+ [
+ 1402,
+ "WS02-S-Red"
+ ],
+ [
+ 1409,
+ "WS02-XL-Blue"
+ ],
+ [
+ 1410,
+ "WS02-XL-Green"
+ ],
+ [
+ 1411,
+ "WS02-XL-Red"
+ ],
+ [
+ 1397,
+ "WS02-XS-Blue"
+ ],
+ [
+ 1398,
+ "WS02-XS-Green"
+ ],
+ [
+ 1399,
+ "WS02-XS-Red"
+ ],
+ [
+ 1428,
+ "WS03"
+ ],
+ [
+ 1422,
+ "WS03-L-Blue"
+ ],
+ [
+ 1423,
+ "WS03-L-Green"
+ ],
+ [
+ 1424,
+ "WS03-L-Red"
+ ],
+ [
+ 1419,
+ "WS03-M-Blue"
+ ],
+ [
+ 1420,
+ "WS03-M-Green"
+ ],
+ [
+ 1421,
+ "WS03-M-Red"
+ ],
+ [
+ 1416,
+ "WS03-S-Blue"
+ ],
+ [
+ 1417,
+ "WS03-S-Green"
+ ],
+ [
+ 1418,
+ "WS03-S-Red"
+ ],
+ [
+ 1425,
+ "WS03-XL-Blue"
+ ],
+ [
+ 1426,
+ "WS03-XL-Green"
+ ],
+ [
+ 1427,
+ "WS03-XL-Red"
+ ],
+ [
+ 1413,
+ "WS03-XS-Blue"
+ ],
+ [
+ 1414,
+ "WS03-XS-Green"
+ ],
+ [
+ 1415,
+ "WS03-XS-Red"
+ ],
+ [
+ 1444,
+ "WS04"
+ ],
+ [
+ 1438,
+ "WS04-L-Blue"
+ ],
+ [
+ 1439,
+ "WS04-L-Green"
+ ],
+ [
+ 1440,
+ "WS04-L-Red"
+ ],
+ [
+ 1435,
+ "WS04-M-Blue"
+ ],
+ [
+ 1436,
+ "WS04-M-Green"
+ ],
+ [
+ 1437,
+ "WS04-M-Red"
+ ],
+ [
+ 1432,
+ "WS04-S-Blue"
+ ],
+ [
+ 1433,
+ "WS04-S-Green"
+ ],
+ [
+ 1434,
+ "WS04-S-Red"
+ ],
+ [
+ 1441,
+ "WS04-XL-Blue"
+ ],
+ [
+ 1442,
+ "WS04-XL-Green"
+ ],
+ [
+ 1443,
+ "WS04-XL-Red"
+ ],
+ [
+ 1429,
+ "WS04-XS-Blue"
+ ],
+ [
+ 1430,
+ "WS04-XS-Green"
+ ],
+ [
+ 1431,
+ "WS04-XS-Red"
+ ],
+ [
+ 1588,
+ "WS05"
+ ],
+ [
+ 1582,
+ "WS05-L-Black"
+ ],
+ [
+ 1583,
+ "WS05-L-Orange"
+ ],
+ [
+ 1584,
+ "WS05-L-Yellow"
+ ],
+ [
+ 1579,
+ "WS05-M-Black"
+ ],
+ [
+ 1580,
+ "WS05-M-Orange"
+ ],
+ [
+ 1581,
+ "WS05-M-Yellow"
+ ],
+ [
+ 1576,
+ "WS05-S-Black"
+ ],
+ [
+ 1577,
+ "WS05-S-Orange"
+ ],
+ [
+ 1578,
+ "WS05-S-Yellow"
+ ],
+ [
+ 1585,
+ "WS05-XL-Black"
+ ],
+ [
+ 1586,
+ "WS05-XL-Orange"
+ ],
+ [
+ 1587,
+ "WS05-XL-Yellow"
+ ],
+ [
+ 1573,
+ "WS05-XS-Black"
+ ],
+ [
+ 1574,
+ "WS05-XS-Orange"
+ ],
+ [
+ 1575,
+ "WS05-XS-Yellow"
+ ],
+ [
+ 1460,
+ "WS06"
+ ],
+ [
+ 1454,
+ "WS06-L-Gray"
+ ],
+ [
+ 1455,
+ "WS06-L-Purple"
+ ],
+ [
+ 1456,
+ "WS06-L-Red"
+ ],
+ [
+ 1451,
+ "WS06-M-Gray"
+ ],
+ [
+ 1452,
+ "WS06-M-Purple"
+ ],
+ [
+ 1453,
+ "WS06-M-Red"
+ ],
+ [
+ 1448,
+ "WS06-S-Gray"
+ ],
+ [
+ 1449,
+ "WS06-S-Purple"
+ ],
+ [
+ 1450,
+ "WS06-S-Red"
+ ],
+ [
+ 1457,
+ "WS06-XL-Gray"
+ ],
+ [
+ 1458,
+ "WS06-XL-Purple"
+ ],
+ [
+ 1459,
+ "WS06-XL-Red"
+ ],
+ [
+ 1445,
+ "WS06-XS-Gray"
+ ],
+ [
+ 1446,
+ "WS06-XS-Purple"
+ ],
+ [
+ 1447,
+ "WS06-XS-Red"
+ ],
+ [
+ 1476,
+ "WS07"
+ ],
+ [
+ 1470,
+ "WS07-L-Black"
+ ],
+ [
+ 1471,
+ "WS07-L-White"
+ ],
+ [
+ 1472,
+ "WS07-L-Yellow"
+ ],
+ [
+ 1467,
+ "WS07-M-Black"
+ ],
+ [
+ 1468,
+ "WS07-M-White"
+ ],
+ [
+ 1469,
+ "WS07-M-Yellow"
+ ],
+ [
+ 1464,
+ "WS07-S-Black"
+ ],
+ [
+ 1465,
+ "WS07-S-White"
+ ],
+ [
+ 1466,
+ "WS07-S-Yellow"
+ ],
+ [
+ 1473,
+ "WS07-XL-Black"
+ ],
+ [
+ 1474,
+ "WS07-XL-White"
+ ],
+ [
+ 1475,
+ "WS07-XL-Yellow"
+ ],
+ [
+ 1461,
+ "WS07-XS-Black"
+ ],
+ [
+ 1462,
+ "WS07-XS-White"
+ ],
+ [
+ 1463,
+ "WS07-XS-Yellow"
+ ],
+ [
+ 1492,
+ "WS08"
+ ],
+ [
+ 1486,
+ "WS08-L-Black"
+ ],
+ [
+ 1487,
+ "WS08-L-Blue"
+ ],
+ [
+ 1488,
+ "WS08-L-Red"
+ ],
+ [
+ 1483,
+ "WS08-M-Black"
+ ],
+ [
+ 1484,
+ "WS08-M-Blue"
+ ],
+ [
+ 1485,
+ "WS08-M-Red"
+ ],
+ [
+ 1480,
+ "WS08-S-Black"
+ ],
+ [
+ 1481,
+ "WS08-S-Blue"
+ ],
+ [
+ 1482,
+ "WS08-S-Red"
+ ],
+ [
+ 1489,
+ "WS08-XL-Black"
+ ],
+ [
+ 1490,
+ "WS08-XL-Blue"
+ ],
+ [
+ 1491,
+ "WS08-XL-Red"
+ ],
+ [
+ 1477,
+ "WS08-XS-Black"
+ ],
+ [
+ 1478,
+ "WS08-XS-Blue"
+ ],
+ [
+ 1479,
+ "WS08-XS-Red"
+ ],
+ [
+ 1508,
+ "WS09"
+ ],
+ [
+ 1502,
+ "WS09-L-Blue"
+ ],
+ [
+ 1503,
+ "WS09-L-Red"
+ ],
+ [
+ 1504,
+ "WS09-L-White"
+ ],
+ [
+ 1499,
+ "WS09-M-Blue"
+ ],
+ [
+ 1500,
+ "WS09-M-Red"
+ ],
+ [
+ 1501,
+ "WS09-M-White"
+ ],
+ [
+ 1496,
+ "WS09-S-Blue"
+ ],
+ [
+ 1497,
+ "WS09-S-Red"
+ ],
+ [
+ 1498,
+ "WS09-S-White"
+ ],
+ [
+ 1505,
+ "WS09-XL-Blue"
+ ],
+ [
+ 1506,
+ "WS09-XL-Red"
+ ],
+ [
+ 1507,
+ "WS09-XL-White"
+ ],
+ [
+ 1493,
+ "WS09-XS-Blue"
+ ],
+ [
+ 1494,
+ "WS09-XS-Red"
+ ],
+ [
+ 1495,
+ "WS09-XS-White"
+ ],
+ [
+ 1524,
+ "WS10"
+ ],
+ [
+ 1518,
+ "WS10-L-Green"
+ ],
+ [
+ 1519,
+ "WS10-L-Red"
+ ],
+ [
+ 1520,
+ "WS10-L-Yellow"
+ ],
+ [
+ 1515,
+ "WS10-M-Green"
+ ],
+ [
+ 1516,
+ "WS10-M-Red"
+ ],
+ [
+ 1517,
+ "WS10-M-Yellow"
+ ],
+ [
+ 1512,
+ "WS10-S-Green"
+ ],
+ [
+ 1513,
+ "WS10-S-Red"
+ ],
+ [
+ 1514,
+ "WS10-S-Yellow"
+ ],
+ [
+ 1521,
+ "WS10-XL-Green"
+ ],
+ [
+ 1522,
+ "WS10-XL-Red"
+ ],
+ [
+ 1523,
+ "WS10-XL-Yellow"
+ ],
+ [
+ 1509,
+ "WS10-XS-Green"
+ ],
+ [
+ 1510,
+ "WS10-XS-Red"
+ ],
+ [
+ 1511,
+ "WS10-XS-Yellow"
+ ],
+ [
+ 1540,
+ "WS11"
+ ],
+ [
+ 1534,
+ "WS11-L-Green"
+ ],
+ [
+ 1535,
+ "WS11-L-Orange"
+ ],
+ [
+ 1536,
+ "WS11-L-Yellow"
+ ],
+ [
+ 1531,
+ "WS11-M-Green"
+ ],
+ [
+ 1532,
+ "WS11-M-Orange"
+ ],
+ [
+ 1533,
+ "WS11-M-Yellow"
+ ],
+ [
+ 1528,
+ "WS11-S-Green"
+ ],
+ [
+ 1529,
+ "WS11-S-Orange"
+ ],
+ [
+ 1530,
+ "WS11-S-Yellow"
+ ],
+ [
+ 1537,
+ "WS11-XL-Green"
+ ],
+ [
+ 1538,
+ "WS11-XL-Orange"
+ ],
+ [
+ 1539,
+ "WS11-XL-Yellow"
+ ],
+ [
+ 1525,
+ "WS11-XS-Green"
+ ],
+ [
+ 1526,
+ "WS11-XS-Orange"
+ ],
+ [
+ 1527,
+ "WS11-XS-Yellow"
+ ],
+ [
+ 1556,
+ "WS12"
+ ],
+ [
+ 1550,
+ "WS12-L-Blue"
+ ],
+ [
+ 1551,
+ "WS12-L-Orange"
+ ],
+ [
+ 1552,
+ "WS12-L-Purple"
+ ],
+ [
+ 1547,
+ "WS12-M-Blue"
+ ],
+ [
+ 1548,
+ "WS12-M-Orange"
+ ],
+ [
+ 1549,
+ "WS12-M-Purple"
+ ],
+ [
+ 1544,
+ "WS12-S-Blue"
+ ],
+ [
+ 1545,
+ "WS12-S-Orange"
+ ],
+ [
+ 1546,
+ "WS12-S-Purple"
+ ],
+ [
+ 1553,
+ "WS12-XL-Blue"
+ ],
+ [
+ 1554,
+ "WS12-XL-Orange"
+ ],
+ [
+ 1555,
+ "WS12-XL-Purple"
+ ],
+ [
+ 1541,
+ "WS12-XS-Blue"
+ ],
+ [
+ 1542,
+ "WS12-XS-Orange"
+ ],
+ [
+ 1543,
+ "WS12-XS-Purple"
+ ],
+ [
+ 1919,
+ "WSH01"
+ ],
+ [
+ 1904,
+ "WSH01-28-Black"
+ ],
+ [
+ 1905,
+ "WSH01-28-Green"
+ ],
+ [
+ 1906,
+ "WSH01-28-Red"
+ ],
+ [
+ 1907,
+ "WSH01-29-Black"
+ ],
+ [
+ 1908,
+ "WSH01-29-Green"
+ ],
+ [
+ 1909,
+ "WSH01-29-Red"
+ ],
+ [
+ 1910,
+ "WSH01-30-Black"
+ ],
+ [
+ 1911,
+ "WSH01-30-Green"
+ ],
+ [
+ 1912,
+ "WSH01-30-Red"
+ ],
+ [
+ 1913,
+ "WSH01-31-Black"
+ ],
+ [
+ 1914,
+ "WSH01-31-Green"
+ ],
+ [
+ 1915,
+ "WSH01-31-Red"
+ ],
+ [
+ 1916,
+ "WSH01-32-Black"
+ ],
+ [
+ 1917,
+ "WSH01-32-Green"
+ ],
+ [
+ 1918,
+ "WSH01-32-Red"
+ ],
+ [
+ 1935,
+ "WSH02"
+ ],
+ [
+ 1920,
+ "WSH02-28-Gray"
+ ],
+ [
+ 1921,
+ "WSH02-28-Orange"
+ ],
+ [
+ 1922,
+ "WSH02-28-Yellow"
+ ],
+ [
+ 1923,
+ "WSH02-29-Gray"
+ ],
+ [
+ 1924,
+ "WSH02-29-Orange"
+ ],
+ [
+ 1925,
+ "WSH02-29-Yellow"
+ ],
+ [
+ 1926,
+ "WSH02-30-Gray"
+ ],
+ [
+ 1927,
+ "WSH02-30-Orange"
+ ],
+ [
+ 1928,
+ "WSH02-30-Yellow"
+ ],
+ [
+ 1929,
+ "WSH02-31-Gray"
+ ],
+ [
+ 1930,
+ "WSH02-31-Orange"
+ ],
+ [
+ 1931,
+ "WSH02-31-Yellow"
+ ],
+ [
+ 1932,
+ "WSH02-32-Gray"
+ ],
+ [
+ 1933,
+ "WSH02-32-Orange"
+ ],
+ [
+ 1934,
+ "WSH02-32-Yellow"
+ ],
+ [
+ 1951,
+ "WSH03"
+ ],
+ [
+ 1936,
+ "WSH03-28-Blue"
+ ],
+ [
+ 1937,
+ "WSH03-28-Gray"
+ ],
+ [
+ 1938,
+ "WSH03-28-Orange"
+ ],
+ [
+ 1939,
+ "WSH03-29-Blue"
+ ],
+ [
+ 1940,
+ "WSH03-29-Gray"
+ ],
+ [
+ 1941,
+ "WSH03-29-Orange"
+ ],
+ [
+ 1942,
+ "WSH03-30-Blue"
+ ],
+ [
+ 1943,
+ "WSH03-30-Gray"
+ ],
+ [
+ 1944,
+ "WSH03-30-Orange"
+ ],
+ [
+ 1945,
+ "WSH03-31-Blue"
+ ],
+ [
+ 1946,
+ "WSH03-31-Gray"
+ ],
+ [
+ 1947,
+ "WSH03-31-Orange"
+ ],
+ [
+ 1948,
+ "WSH03-32-Blue"
+ ],
+ [
+ 1949,
+ "WSH03-32-Gray"
+ ],
+ [
+ 1950,
+ "WSH03-32-Orange"
+ ],
+ [
+ 1967,
+ "WSH04"
+ ],
+ [
+ 1952,
+ "WSH04-28-Black"
+ ],
+ [
+ 1953,
+ "WSH04-28-Green"
+ ],
+ [
+ 1954,
+ "WSH04-28-Orange"
+ ],
+ [
+ 1955,
+ "WSH04-29-Black"
+ ],
+ [
+ 1956,
+ "WSH04-29-Green"
+ ],
+ [
+ 1957,
+ "WSH04-29-Orange"
+ ],
+ [
+ 1958,
+ "WSH04-30-Black"
+ ],
+ [
+ 1959,
+ "WSH04-30-Green"
+ ],
+ [
+ 1960,
+ "WSH04-30-Orange"
+ ],
+ [
+ 1961,
+ "WSH04-31-Black"
+ ],
+ [
+ 1962,
+ "WSH04-31-Green"
+ ],
+ [
+ 1963,
+ "WSH04-31-Orange"
+ ],
+ [
+ 1964,
+ "WSH04-32-Black"
+ ],
+ [
+ 1965,
+ "WSH04-32-Green"
+ ],
+ [
+ 1966,
+ "WSH04-32-Orange"
+ ],
+ [
+ 1983,
+ "WSH05"
+ ],
+ [
+ 1968,
+ "WSH05-28-Blue"
+ ],
+ [
+ 1969,
+ "WSH05-28-Purple"
+ ],
+ [
+ 1970,
+ "WSH05-28-Yellow"
+ ],
+ [
+ 1971,
+ "WSH05-29-Blue"
+ ],
+ [
+ 1972,
+ "WSH05-29-Purple"
+ ],
+ [
+ 1973,
+ "WSH05-29-Yellow"
+ ],
+ [
+ 1974,
+ "WSH05-30-Blue"
+ ],
+ [
+ 1975,
+ "WSH05-30-Purple"
+ ],
+ [
+ 1976,
+ "WSH05-30-Yellow"
+ ],
+ [
+ 1977,
+ "WSH05-31-Blue"
+ ],
+ [
+ 1978,
+ "WSH05-31-Purple"
+ ],
+ [
+ 1979,
+ "WSH05-31-Yellow"
+ ],
+ [
+ 1980,
+ "WSH05-32-Blue"
+ ],
+ [
+ 1981,
+ "WSH05-32-Purple"
+ ],
+ [
+ 1982,
+ "WSH05-32-Yellow"
+ ],
+ [
+ 1990,
+ "WSH06"
+ ],
+ [
+ 1984,
+ "WSH06-28-Gray"
+ ],
+ [
+ 1985,
+ "WSH06-28-Orange"
+ ],
+ [
+ 1986,
+ "WSH06-28-Purple"
+ ],
+ [
+ 1987,
+ "WSH06-29-Gray"
+ ],
+ [
+ 1988,
+ "WSH06-29-Orange"
+ ],
+ [
+ 1989,
+ "WSH06-29-Purple"
+ ],
+ [
+ 1997,
+ "WSH07"
+ ],
+ [
+ 1991,
+ "WSH07-28-Black"
+ ],
+ [
+ 1992,
+ "WSH07-28-Blue"
+ ],
+ [
+ 1993,
+ "WSH07-28-Purple"
+ ],
+ [
+ 1994,
+ "WSH07-29-Black"
+ ],
+ [
+ 1995,
+ "WSH07-29-Blue"
+ ],
+ [
+ 1996,
+ "WSH07-29-Purple"
+ ],
+ [
+ 2003,
+ "WSH08"
+ ],
+ [
+ 1998,
+ "WSH08-28-Purple"
+ ],
+ [
+ 1999,
+ "WSH08-29-Purple"
+ ],
+ [
+ 2000,
+ "WSH08-30-Purple"
+ ],
+ [
+ 2001,
+ "WSH08-31-Purple"
+ ],
+ [
+ 2002,
+ "WSH08-32-Purple"
+ ],
+ [
+ 2010,
+ "WSH09"
+ ],
+ [
+ 2004,
+ "WSH09-28-Gray"
+ ],
+ [
+ 2005,
+ "WSH09-28-Green"
+ ],
+ [
+ 2006,
+ "WSH09-28-White"
+ ],
+ [
+ 2007,
+ "WSH09-29-Gray"
+ ],
+ [
+ 2008,
+ "WSH09-29-Green"
+ ],
+ [
+ 2009,
+ "WSH09-29-White"
+ ],
+ [
+ 2017,
+ "WSH10"
+ ],
+ [
+ 2011,
+ "WSH10-28-Black"
+ ],
+ [
+ 2012,
+ "WSH10-28-Orange"
+ ],
+ [
+ 2013,
+ "WSH10-28-White"
+ ],
+ [
+ 2014,
+ "WSH10-29-Black"
+ ],
+ [
+ 2015,
+ "WSH10-29-Orange"
+ ],
+ [
+ 2016,
+ "WSH10-29-White"
+ ],
+ [
+ 2024,
+ "WSH11"
+ ],
+ [
+ 2018,
+ "WSH11-28-Blue"
+ ],
+ [
+ 2019,
+ "WSH11-28-Orange"
+ ],
+ [
+ 2020,
+ "WSH11-28-Red"
+ ],
+ [
+ 2021,
+ "WSH11-29-Blue"
+ ],
+ [
+ 2022,
+ "WSH11-29-Orange"
+ ],
+ [
+ 2023,
+ "WSH11-29-Red"
+ ],
+ [
+ 2040,
+ "WSH12"
+ ],
+ [
+ 2025,
+ "WSH12-28-Green"
+ ],
+ [
+ 2026,
+ "WSH12-28-Purple"
+ ],
+ [
+ 2027,
+ "WSH12-28-Red"
+ ],
+ [
+ 2028,
+ "WSH12-29-Green"
+ ],
+ [
+ 2029,
+ "WSH12-29-Purple"
+ ],
+ [
+ 2030,
+ "WSH12-29-Red"
+ ],
+ [
+ 2031,
+ "WSH12-30-Green"
+ ],
+ [
+ 2032,
+ "WSH12-30-Purple"
+ ],
+ [
+ 2033,
+ "WSH12-30-Red"
+ ],
+ [
+ 2034,
+ "WSH12-31-Green"
+ ],
+ [
+ 2035,
+ "WSH12-31-Purple"
+ ],
+ [
+ 2036,
+ "WSH12-31-Red"
+ ],
+ [
+ 2037,
+ "WSH12-32-Green"
+ ],
+ [
+ 2038,
+ "WSH12-32-Purple"
+ ],
+ [
+ 2039,
+ "WSH12-32-Red"
+ ],
+ [
+ 1684,
+ "WT01"
+ ],
+ [
+ 1678,
+ "WT01-L-Black"
+ ],
+ [
+ 1679,
+ "WT01-L-Blue"
+ ],
+ [
+ 1680,
+ "WT01-L-Orange"
+ ],
+ [
+ 1675,
+ "WT01-M-Black"
+ ],
+ [
+ 1676,
+ "WT01-M-Blue"
+ ],
+ [
+ 1677,
+ "WT01-M-Orange"
+ ],
+ [
+ 1672,
+ "WT01-S-Black"
+ ],
+ [
+ 1673,
+ "WT01-S-Blue"
+ ],
+ [
+ 1674,
+ "WT01-S-Orange"
+ ],
+ [
+ 1681,
+ "WT01-XL-Black"
+ ],
+ [
+ 1682,
+ "WT01-XL-Blue"
+ ],
+ [
+ 1683,
+ "WT01-XL-Orange"
+ ],
+ [
+ 1669,
+ "WT01-XS-Black"
+ ],
+ [
+ 1670,
+ "WT01-XS-Blue"
+ ],
+ [
+ 1671,
+ "WT01-XS-Orange"
+ ],
+ [
+ 1700,
+ "WT02"
+ ],
+ [
+ 1694,
+ "WT02-L-Green"
+ ],
+ [
+ 1695,
+ "WT02-L-Orange"
+ ],
+ [
+ 1696,
+ "WT02-L-Yellow"
+ ],
+ [
+ 1691,
+ "WT02-M-Green"
+ ],
+ [
+ 1692,
+ "WT02-M-Orange"
+ ],
+ [
+ 1693,
+ "WT02-M-Yellow"
+ ],
+ [
+ 1688,
+ "WT02-S-Green"
+ ],
+ [
+ 1689,
+ "WT02-S-Orange"
+ ],
+ [
+ 1690,
+ "WT02-S-Yellow"
+ ],
+ [
+ 1697,
+ "WT02-XL-Green"
+ ],
+ [
+ 1698,
+ "WT02-XL-Orange"
+ ],
+ [
+ 1699,
+ "WT02-XL-Yellow"
+ ],
+ [
+ 1685,
+ "WT02-XS-Green"
+ ],
+ [
+ 1686,
+ "WT02-XS-Orange"
+ ],
+ [
+ 1687,
+ "WT02-XS-Yellow"
+ ],
+ [
+ 1716,
+ "WT03"
+ ],
+ [
+ 1710,
+ "WT03-L-Orange"
+ ],
+ [
+ 1711,
+ "WT03-L-Purple"
+ ],
+ [
+ 1712,
+ "WT03-L-Red"
+ ],
+ [
+ 1707,
+ "WT03-M-Orange"
+ ],
+ [
+ 1708,
+ "WT03-M-Purple"
+ ],
+ [
+ 1709,
+ "WT03-M-Red"
+ ],
+ [
+ 1704,
+ "WT03-S-Orange"
+ ],
+ [
+ 1705,
+ "WT03-S-Purple"
+ ],
+ [
+ 1706,
+ "WT03-S-Red"
+ ],
+ [
+ 1713,
+ "WT03-XL-Orange"
+ ],
+ [
+ 1714,
+ "WT03-XL-Purple"
+ ],
+ [
+ 1715,
+ "WT03-XL-Red"
+ ],
+ [
+ 1701,
+ "WT03-XS-Orange"
+ ],
+ [
+ 1702,
+ "WT03-XS-Purple"
+ ],
+ [
+ 1703,
+ "WT03-XS-Red"
+ ],
+ [
+ 1732,
+ "WT04"
+ ],
+ [
+ 1726,
+ "WT04-L-Blue"
+ ],
+ [
+ 1727,
+ "WT04-L-Purple"
+ ],
+ [
+ 1728,
+ "WT04-L-Red"
+ ],
+ [
+ 1723,
+ "WT04-M-Blue"
+ ],
+ [
+ 1724,
+ "WT04-M-Purple"
+ ],
+ [
+ 1725,
+ "WT04-M-Red"
+ ],
+ [
+ 1720,
+ "WT04-S-Blue"
+ ],
+ [
+ 1721,
+ "WT04-S-Purple"
+ ],
+ [
+ 1722,
+ "WT04-S-Red"
+ ],
+ [
+ 1729,
+ "WT04-XL-Blue"
+ ],
+ [
+ 1730,
+ "WT04-XL-Purple"
+ ],
+ [
+ 1731,
+ "WT04-XL-Red"
+ ],
+ [
+ 1717,
+ "WT04-XS-Blue"
+ ],
+ [
+ 1718,
+ "WT04-XS-Purple"
+ ],
+ [
+ 1719,
+ "WT04-XS-Red"
+ ],
+ [
+ 1748,
+ "WT05"
+ ],
+ [
+ 1742,
+ "WT05-L-Orange"
+ ],
+ [
+ 1743,
+ "WT05-L-Purple"
+ ],
+ [
+ 1744,
+ "WT05-L-White"
+ ],
+ [
+ 1739,
+ "WT05-M-Orange"
+ ],
+ [
+ 1740,
+ "WT05-M-Purple"
+ ],
+ [
+ 1741,
+ "WT05-M-White"
+ ],
+ [
+ 1736,
+ "WT05-S-Orange"
+ ],
+ [
+ 1737,
+ "WT05-S-Purple"
+ ],
+ [
+ 1738,
+ "WT05-S-White"
+ ],
+ [
+ 1745,
+ "WT05-XL-Orange"
+ ],
+ [
+ 1746,
+ "WT05-XL-Purple"
+ ],
+ [
+ 1747,
+ "WT05-XL-White"
+ ],
+ [
+ 1733,
+ "WT05-XS-Orange"
+ ],
+ [
+ 1734,
+ "WT05-XS-Purple"
+ ],
+ [
+ 1735,
+ "WT05-XS-White"
+ ],
+ [
+ 1764,
+ "WT06"
+ ],
+ [
+ 1758,
+ "WT06-L-Blue"
+ ],
+ [
+ 1759,
+ "WT06-L-Red"
+ ],
+ [
+ 1760,
+ "WT06-L-Yellow"
+ ],
+ [
+ 1755,
+ "WT06-M-Blue"
+ ],
+ [
+ 1756,
+ "WT06-M-Red"
+ ],
+ [
+ 1757,
+ "WT06-M-Yellow"
+ ],
+ [
+ 1752,
+ "WT06-S-Blue"
+ ],
+ [
+ 1753,
+ "WT06-S-Red"
+ ],
+ [
+ 1754,
+ "WT06-S-Yellow"
+ ],
+ [
+ 1761,
+ "WT06-XL-Blue"
+ ],
+ [
+ 1762,
+ "WT06-XL-Red"
+ ],
+ [
+ 1763,
+ "WT06-XL-Yellow"
+ ],
+ [
+ 1749,
+ "WT06-XS-Blue"
+ ],
+ [
+ 1750,
+ "WT06-XS-Red"
+ ],
+ [
+ 1751,
+ "WT06-XS-Yellow"
+ ],
+ [
+ 1780,
+ "WT07"
+ ],
+ [
+ 1774,
+ "WT07-L-Green"
+ ],
+ [
+ 1775,
+ "WT07-L-White"
+ ],
+ [
+ 1776,
+ "WT07-L-Yellow"
+ ],
+ [
+ 1771,
+ "WT07-M-Green"
+ ],
+ [
+ 1772,
+ "WT07-M-White"
+ ],
+ [
+ 1773,
+ "WT07-M-Yellow"
+ ],
+ [
+ 1768,
+ "WT07-S-Green"
+ ],
+ [
+ 1769,
+ "WT07-S-White"
+ ],
+ [
+ 1770,
+ "WT07-S-Yellow"
+ ],
+ [
+ 1777,
+ "WT07-XL-Green"
+ ],
+ [
+ 1778,
+ "WT07-XL-White"
+ ],
+ [
+ 1779,
+ "WT07-XL-Yellow"
+ ],
+ [
+ 1765,
+ "WT07-XS-Green"
+ ],
+ [
+ 1766,
+ "WT07-XS-White"
+ ],
+ [
+ 1767,
+ "WT07-XS-Yellow"
+ ],
+ [
+ 1796,
+ "WT08"
+ ],
+ [
+ 1790,
+ "WT08-L-Black"
+ ],
+ [
+ 1791,
+ "WT08-L-Purple"
+ ],
+ [
+ 1792,
+ "WT08-L-Yellow"
+ ],
+ [
+ 1787,
+ "WT08-M-Black"
+ ],
+ [
+ 1788,
+ "WT08-M-Purple"
+ ],
+ [
+ 1789,
+ "WT08-M-Yellow"
+ ],
+ [
+ 1784,
+ "WT08-S-Black"
+ ],
+ [
+ 1785,
+ "WT08-S-Purple"
+ ],
+ [
+ 1786,
+ "WT08-S-Yellow"
+ ],
+ [
+ 1793,
+ "WT08-XL-Black"
+ ],
+ [
+ 1794,
+ "WT08-XL-Purple"
+ ],
+ [
+ 1795,
+ "WT08-XL-Yellow"
+ ],
+ [
+ 1781,
+ "WT08-XS-Black"
+ ],
+ [
+ 1782,
+ "WT08-XS-Purple"
+ ],
+ [
+ 1783,
+ "WT08-XS-Yellow"
+ ],
+ [
+ 1812,
+ "WT09"
+ ],
+ [
+ 1806,
+ "WT09-L-Purple"
+ ],
+ [
+ 1807,
+ "WT09-L-White"
+ ],
+ [
+ 1808,
+ "WT09-L-Yellow"
+ ],
+ [
+ 1803,
+ "WT09-M-Purple"
+ ],
+ [
+ 1804,
+ "WT09-M-White"
+ ],
+ [
+ 1805,
+ "WT09-M-Yellow"
+ ],
+ [
+ 1800,
+ "WT09-S-Purple"
+ ],
+ [
+ 1801,
+ "WT09-S-White"
+ ],
+ [
+ 1802,
+ "WT09-S-Yellow"
+ ],
+ [
+ 1809,
+ "WT09-XL-Purple"
+ ],
+ [
+ 1810,
+ "WT09-XL-White"
+ ],
+ [
+ 1811,
+ "WT09-XL-Yellow"
+ ],
+ [
+ 1797,
+ "WT09-XS-Purple"
+ ],
+ [
+ 1798,
+ "WT09-XS-White"
+ ],
+ [
+ 1799,
+ "WT09-XS-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with customer email 'beachlover99@yahoo.com'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_email = 'beachlover99@yahoo.com';",
+ "answer": [
+ "176.6000",
+ "133.0000",
+ "202.0000",
+ "212.2500",
+ "34.0000",
+ "191.5000",
+ "93.4000",
+ "65.0000",
+ "60.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "176.6000"
+ ],
+ [
+ "133.0000"
+ ],
+ [
+ "202.0000"
+ ],
+ [
+ "212.2500"
+ ],
+ [
+ "34.0000"
+ ],
+ [
+ "191.5000"
+ ],
+ [
+ "93.4000"
+ ],
+ [
+ "65.0000"
+ ],
+ [
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product had the highest quantity ordered in store_id 1 for the year 2023?",
+ "sql": "SELECT product_name, qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot",
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot",
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with increment ID '000000002'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000002';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have been ordered in store with ID 1?",
+ "sql": "SELECT DISTINCT product_id FROM sales_order_item WHERE store_id = 1;",
+ "answer": [
+ "791"
+ ],
+ "sql_execute_result": [
+ [
+ 1428
+ ],
+ [
+ 1492
+ ],
+ [
+ 1222
+ ],
+ [
+ 1943
+ ],
+ [
+ 1149
+ ],
+ [
+ 1007
+ ],
+ [
+ 645
+ ],
+ [
+ 1473
+ ],
+ [
+ 724
+ ],
+ [
+ 719
+ ],
+ [
+ 1332
+ ],
+ [
+ 1321
+ ],
+ [
+ 305
+ ],
+ [
+ 1136
+ ],
+ [
+ 173
+ ],
+ [
+ 643
+ ],
+ [
+ 84
+ ],
+ [
+ 1615
+ ],
+ [
+ 34
+ ],
+ [
+ 36
+ ],
+ [
+ 1764
+ ],
+ [
+ 1757
+ ],
+ [
+ 1833
+ ],
+ [
+ 1832
+ ],
+ [
+ 1830
+ ],
+ [
+ 867
+ ],
+ [
+ 863
+ ],
+ [
+ 366
+ ],
+ [
+ 352
+ ],
+ [
+ 1556
+ ],
+ [
+ 1545
+ ],
+ [
+ 1875
+ ],
+ [
+ 1870
+ ],
+ [
+ 854
+ ],
+ [
+ 853
+ ],
+ [
+ 2
+ ],
+ [
+ 33
+ ],
+ [
+ 19
+ ],
+ [
+ 2040
+ ],
+ [
+ 2034
+ ],
+ [
+ 828
+ ],
+ [
+ 821
+ ],
+ [
+ 1819
+ ],
+ [
+ 1816
+ ],
+ [
+ 2003
+ ],
+ [
+ 2002
+ ],
+ [
+ 25
+ ],
+ [
+ 574
+ ],
+ [
+ 563
+ ],
+ [
+ 1812
+ ],
+ [
+ 1807
+ ],
+ [
+ 1076
+ ],
+ [
+ 1071
+ ],
+ [
+ 622
+ ],
+ [
+ 617
+ ],
+ [
+ 676
+ ],
+ [
+ 673
+ ],
+ [
+ 1935
+ ],
+ [
+ 1924
+ ],
+ [
+ 18
+ ],
+ [
+ 2024
+ ],
+ [
+ 2021
+ ],
+ [
+ 32
+ ],
+ [
+ 1524
+ ],
+ [
+ 1523
+ ],
+ [
+ 510
+ ],
+ [
+ 503
+ ],
+ [
+ 1684
+ ],
+ [
+ 1671
+ ],
+ [
+ 963
+ ],
+ [
+ 962
+ ],
+ [
+ 1316
+ ],
+ [
+ 1313
+ ],
+ [
+ 606
+ ],
+ [
+ 596
+ ],
+ [
+ 937
+ ],
+ [
+ 929
+ ],
+ [
+ 1380
+ ],
+ [
+ 1373
+ ],
+ [
+ 849
+ ],
+ [
+ 318
+ ],
+ [
+ 313
+ ],
+ [
+ 28
+ ],
+ [
+ 1396
+ ],
+ [
+ 1389
+ ],
+ [
+ 158
+ ],
+ [
+ 156
+ ],
+ [
+ 1385
+ ],
+ [
+ 29
+ ],
+ [
+ 303
+ ],
+ [
+ 20
+ ],
+ [
+ 39
+ ],
+ [
+ 2017
+ ],
+ [
+ 2016
+ ],
+ [
+ 841
+ ],
+ [
+ 831
+ ],
+ [
+ 2014
+ ],
+ [
+ 357
+ ],
+ [
+ 1990
+ ],
+ [
+ 1987
+ ],
+ [
+ 1236
+ ],
+ [
+ 1229
+ ],
+ [
+ 1194
+ ],
+ [
+ 1187
+ ],
+ [
+ 1002
+ ],
+ [
+ 1001
+ ],
+ [
+ 30
+ ],
+ [
+ 6
+ ],
+ [
+ 126
+ ],
+ [
+ 123
+ ],
+ [
+ 1861
+ ],
+ [
+ 1859
+ ],
+ [
+ 1476
+ ],
+ [
+ 1468
+ ],
+ [
+ 1348
+ ],
+ [
+ 1340
+ ],
+ [
+ 1652
+ ],
+ [
+ 1644
+ ],
+ [
+ 142
+ ],
+ [
+ 127
+ ],
+ [
+ 1220
+ ],
+ [
+ 1219
+ ],
+ [
+ 638
+ ],
+ [
+ 627
+ ],
+ [
+ 1518
+ ],
+ [
+ 802
+ ],
+ [
+ 795
+ ],
+ [
+ 2025
+ ],
+ [
+ 16
+ ],
+ [
+ 1882
+ ],
+ [
+ 1881
+ ],
+ [
+ 1444
+ ],
+ [
+ 1438
+ ],
+ [
+ 1748
+ ],
+ [
+ 1741
+ ],
+ [
+ 1064
+ ],
+ [
+ 1854
+ ],
+ [
+ 1849
+ ],
+ [
+ 1818
+ ],
+ [
+ 763
+ ],
+ [
+ 758
+ ],
+ [
+ 672
+ ],
+ [
+ 862
+ ],
+ [
+ 855
+ ],
+ [
+ 1680
+ ],
+ [
+ 270
+ ],
+ [
+ 258
+ ],
+ [
+ 911
+ ],
+ [
+ 901
+ ],
+ [
+ 302
+ ],
+ [
+ 300
+ ],
+ [
+ 694
+ ],
+ [
+ 692
+ ],
+ [
+ 1
+ ],
+ [
+ 446
+ ],
+ [
+ 432
+ ],
+ [
+ 306
+ ],
+ [
+ 623
+ ],
+ [
+ 950
+ ],
+ [
+ 944
+ ],
+ [
+ 526
+ ],
+ [
+ 516
+ ],
+ [
+ 1983
+ ],
+ [
+ 1980
+ ],
+ [
+ 1416
+ ],
+ [
+ 602
+ ],
+ [
+ 691
+ ],
+ [
+ 1848
+ ],
+ [
+ 1234
+ ],
+ [
+ 946
+ ],
+ [
+ 789
+ ],
+ [
+ 780
+ ],
+ [
+ 1981
+ ],
+ [
+ 1092
+ ],
+ [
+ 1090
+ ],
+ [
+ 558
+ ],
+ [
+ 544
+ ],
+ [
+ 1780
+ ],
+ [
+ 1770
+ ],
+ [
+ 1230
+ ],
+ [
+ 1328
+ ],
+ [
+ 1186
+ ],
+ [
+ 784
+ ],
+ [
+ 1323
+ ],
+ [
+ 1847
+ ],
+ [
+ 1844
+ ],
+ [
+ 23
+ ],
+ [
+ 1796
+ ],
+ [
+ 1791
+ ],
+ [
+ 254
+ ],
+ [
+ 242
+ ],
+ [
+ 737
+ ],
+ [
+ 730
+ ],
+ [
+ 2032
+ ],
+ [
+ 286
+ ],
+ [
+ 278
+ ],
+ [
+ 1345
+ ],
+ [
+ 1284
+ ],
+ [
+ 1281
+ ],
+ [
+ 1826
+ ],
+ [
+ 1824
+ ],
+ [
+ 1817
+ ],
+ [
+ 1178
+ ],
+ [
+ 1175
+ ],
+ [
+ 800
+ ],
+ [
+ 1146
+ ],
+ [
+ 1140
+ ],
+ [
+ 260
+ ],
+ [
+ 272
+ ],
+ [
+ 706
+ ],
+ [
+ 702
+ ],
+ [
+ 930
+ ],
+ [
+ 700
+ ],
+ [
+ 696
+ ],
+ [
+ 1382
+ ],
+ [
+ 932
+ ],
+ [
+ 238
+ ],
+ [
+ 234
+ ],
+ [
+ 382
+ ],
+ [
+ 374
+ ],
+ [
+ 1932
+ ],
+ [
+ 1967
+ ],
+ [
+ 1958
+ ],
+ [
+ 11
+ ],
+ [
+ 41
+ ],
+ [
+ 1308
+ ],
+ [
+ 1843
+ ],
+ [
+ 1919
+ ],
+ [
+ 1906
+ ],
+ [
+ 1700
+ ],
+ [
+ 1695
+ ],
+ [
+ 824
+ ],
+ [
+ 431
+ ],
+ [
+ 1252
+ ],
+ [
+ 1247
+ ],
+ [
+ 1460
+ ],
+ [
+ 1456
+ ],
+ [
+ 1412
+ ],
+ [
+ 1410
+ ],
+ [
+ 7
+ ],
+ [
+ 629
+ ],
+ [
+ 2010
+ ],
+ [
+ 2009
+ ],
+ [
+ 1364
+ ],
+ [
+ 1349
+ ],
+ [
+ 560
+ ],
+ [
+ 688
+ ],
+ [
+ 683
+ ],
+ [
+ 1452
+ ],
+ [
+ 924
+ ],
+ [
+ 914
+ ],
+ [
+ 1732
+ ],
+ [
+ 1723
+ ],
+ [
+ 785
+ ],
+ [
+ 815
+ ],
+ [
+ 812
+ ],
+ [
+ 17
+ ],
+ [
+ 1876
+ ],
+ [
+ 438
+ ],
+ [
+ 718
+ ],
+ [
+ 716
+ ],
+ [
+ 865
+ ],
+ [
+ 1044
+ ],
+ [
+ 1040
+ ],
+ [
+ 129
+ ],
+ [
+ 670
+ ],
+ [
+ 660
+ ],
+ [
+ 1130
+ ],
+ [
+ 1118
+ ],
+ [
+ 1357
+ ],
+ [
+ 1691
+ ],
+ [
+ 1868
+ ],
+ [
+ 1865
+ ],
+ [
+ 1588
+ ],
+ [
+ 1583
+ ],
+ [
+ 1060
+ ],
+ [
+ 1054
+ ],
+ [
+ 1355
+ ],
+ [
+ 1479
+ ],
+ [
+ 110
+ ],
+ [
+ 95
+ ],
+ [
+ 699
+ ],
+ [
+ 1903
+ ],
+ [
+ 1898
+ ],
+ [
+ 1466
+ ],
+ [
+ 1330
+ ],
+ [
+ 1300
+ ],
+ [
+ 1297
+ ],
+ [
+ 1889
+ ],
+ [
+ 1887
+ ],
+ [
+ 1185
+ ],
+ [
+ 1282
+ ],
+ [
+ 1872
+ ],
+ [
+ 304
+ ],
+ [
+ 22
+ ],
+ [
+ 1434
+ ],
+ [
+ 478
+ ],
+ [
+ 471
+ ],
+ [
+ 945
+ ],
+ [
+ 174
+ ],
+ [
+ 160
+ ],
+ [
+ 1123
+ ],
+ [
+ 1179
+ ],
+ [
+ 1871
+ ],
+ [
+ 38
+ ],
+ [
+ 1216
+ ],
+ [
+ 947
+ ],
+ [
+ 31
+ ],
+ [
+ 1212
+ ],
+ [
+ 4
+ ],
+ [
+ 1015
+ ],
+ [
+ 1011
+ ],
+ [
+ 1923
+ ],
+ [
+ 1879
+ ],
+ [
+ 139
+ ],
+ [
+ 1540
+ ],
+ [
+ 1536
+ ],
+ [
+ 1268
+ ],
+ [
+ 1267
+ ],
+ [
+ 2005
+ ],
+ [
+ 714
+ ],
+ [
+ 1006
+ ],
+ [
+ 976
+ ],
+ [
+ 970
+ ],
+ [
+ 1811
+ ],
+ [
+ 1645
+ ],
+ [
+ 334
+ ],
+ [
+ 321
+ ],
+ [
+ 542
+ ],
+ [
+ 534
+ ],
+ [
+ 906
+ ],
+ [
+ 783
+ ],
+ [
+ 398
+ ],
+ [
+ 383
+ ],
+ [
+ 362
+ ],
+ [
+ 806
+ ],
+ [
+ 1490
+ ],
+ [
+ 2013
+ ],
+ [
+ 1896
+ ],
+ [
+ 1890
+ ],
+ [
+ 942
+ ],
+ [
+ 378
+ ],
+ [
+ 465
+ ],
+ [
+ 94
+ ],
+ [
+ 79
+ ],
+ [
+ 1508
+ ],
+ [
+ 1494
+ ],
+ [
+ 1029
+ ],
+ [
+ 1997
+ ],
+ [
+ 1993
+ ],
+ [
+ 1010
+ ],
+ [
+ 1874
+ ],
+ [
+ 1430
+ ],
+ [
+ 1840
+ ],
+ [
+ 1836
+ ],
+ [
+ 654
+ ],
+ [
+ 649
+ ],
+ [
+ 1720
+ ],
+ [
+ 1003
+ ],
+ [
+ 1421
+ ],
+ [
+ 106
+ ],
+ [
+ 37
+ ],
+ [
+ 1326
+ ],
+ [
+ 13
+ ],
+ [
+ 15
+ ],
+ [
+ 1047
+ ],
+ [
+ 1758
+ ],
+ [
+ 880
+ ],
+ [
+ 876
+ ],
+ [
+ 751
+ ],
+ [
+ 1285
+ ],
+ [
+ 169
+ ],
+ [
+ 1283
+ ],
+ [
+ 926
+ ],
+ [
+ 1905
+ ],
+ [
+ 850
+ ],
+ [
+ 1351
+ ],
+ [
+ 1424
+ ],
+ [
+ 893
+ ],
+ [
+ 883
+ ],
+ [
+ 1822
+ ],
+ [
+ 40
+ ],
+ [
+ 1675
+ ],
+ [
+ 1534
+ ],
+ [
+ 252
+ ],
+ [
+ 1273
+ ],
+ [
+ 1275
+ ],
+ [
+ 811
+ ],
+ [
+ 1813
+ ],
+ [
+ 836
+ ],
+ [
+ 712
+ ],
+ [
+ 711
+ ],
+ [
+ 1403
+ ],
+ [
+ 723
+ ],
+ [
+ 904
+ ],
+ [
+ 636
+ ],
+ [
+ 554
+ ],
+ [
+ 1716
+ ],
+ [
+ 1709
+ ],
+ [
+ 951
+ ],
+ [
+ 1572
+ ],
+ [
+ 1568
+ ],
+ [
+ 268
+ ],
+ [
+ 721
+ ],
+ [
+ 590
+ ],
+ [
+ 578
+ ],
+ [
+ 2011
+ ],
+ [
+ 78
+ ],
+ [
+ 69
+ ],
+ [
+ 1422
+ ],
+ [
+ 868
+ ],
+ [
+ 325
+ ],
+ [
+ 793
+ ],
+ [
+ 190
+ ],
+ [
+ 185
+ ],
+ [
+ 5
+ ],
+ [
+ 955
+ ],
+ [
+ 585
+ ],
+ [
+ 237
+ ],
+ [
+ 430
+ ],
+ [
+ 425
+ ],
+ [
+ 804
+ ],
+ [
+ 1995
+ ],
+ [
+ 26
+ ],
+ [
+ 474
+ ],
+ [
+ 875
+ ],
+ [
+ 616
+ ],
+ [
+ 1193
+ ],
+ [
+ 522
+ ],
+ [
+ 776
+ ],
+ [
+ 764
+ ],
+ [
+ 222
+ ],
+ [
+ 219
+ ],
+ [
+ 752
+ ],
+ [
+ 999
+ ],
+ [
+ 1878
+ ],
+ [
+ 1051
+ ],
+ [
+ 475
+ ],
+ [
+ 292
+ ],
+ [
+ 898
+ ],
+ [
+ 897
+ ],
+ [
+ 1952
+ ],
+ [
+ 1899
+ ],
+ [
+ 1566
+ ],
+ [
+ 1375
+ ],
+ [
+ 414
+ ],
+ [
+ 413
+ ],
+ [
+ 1991
+ ],
+ [
+ 1636
+ ],
+ [
+ 1628
+ ],
+ [
+ 1436
+ ],
+ [
+ 1260
+ ],
+ [
+ 1498
+ ],
+ [
+ 961
+ ],
+ [
+ 206
+ ],
+ [
+ 204
+ ],
+ [
+ 805
+ ],
+ [
+ 612
+ ],
+ [
+ 1795
+ ],
+ [
+ 1352
+ ],
+ [
+ 429
+ ],
+ [
+ 1483
+ ],
+ [
+ 1225
+ ],
+ [
+ 88
+ ],
+ [
+ 546
+ ],
+ [
+ 958
+ ],
+ [
+ 1374
+ ],
+ [
+ 244
+ ],
+ [
+ 248
+ ],
+ [
+ 283
+ ],
+ [
+ 21
+ ],
+ [
+ 27
+ ],
+ [
+ 1254
+ ],
+ [
+ 1291
+ ],
+ [
+ 379
+ ],
+ [
+ 561
+ ],
+ [
+ 1409
+ ],
+ [
+ 1493
+ ],
+ [
+ 825
+ ],
+ [
+ 437
+ ],
+ [
+ 823
+ ],
+ [
+ 1138
+ ],
+ [
+ 954
+ ],
+ [
+ 462
+ ],
+ [
+ 453
+ ],
+ [
+ 1698
+ ],
+ [
+ 1052
+ ],
+ [
+ 1081
+ ],
+ [
+ 1495
+ ],
+ [
+ 779
+ ],
+ [
+ 262
+ ],
+ [
+ 790
+ ],
+ [
+ 601
+ ],
+ [
+ 996
+ ],
+ [
+ 62
+ ],
+ [
+ 58
+ ],
+ [
+ 1009
+ ],
+ [
+ 1108
+ ],
+ [
+ 1102
+ ],
+ [
+ 575
+ ],
+ [
+ 624
+ ],
+ [
+ 572
+ ],
+ [
+ 1891
+ ],
+ [
+ 44
+ ],
+ [
+ 736
+ ],
+ [
+ 188
+ ],
+ [
+ 2023
+ ],
+ [
+ 1989
+ ],
+ [
+ 500
+ ],
+ [
+ 1885
+ ],
+ [
+ 989
+ ],
+ [
+ 986
+ ],
+ [
+ 715
+ ],
+ [
+ 1324
+ ],
+ [
+ 1435
+ ],
+ [
+ 1925
+ ],
+ [
+ 2015
+ ],
+ [
+ 1702
+ ],
+ [
+ 246
+ ],
+ [
+ 1033
+ ],
+ [
+ 134
+ ],
+ [
+ 567
+ ],
+ [
+ 1737
+ ],
+ [
+ 162
+ ],
+ [
+ 1705
+ ],
+ [
+ 2038
+ ],
+ [
+ 1063
+ ],
+ [
+ 1014
+ ],
+ [
+ 1365
+ ],
+ [
+ 620
+ ],
+ [
+ 50
+ ],
+ [
+ 388
+ ],
+ [
+ 549
+ ],
+ [
+ 663
+ ],
+ [
+ 1489
+ ],
+ [
+ 565
+ ],
+ [
+ 369
+ ],
+ [
+ 556
+ ],
+ [
+ 1585
+ ],
+ [
+ 1296
+ ],
+ [
+ 1682
+ ],
+ [
+ 540
+ ],
+ [
+ 91
+ ],
+ [
+ 420
+ ],
+ [
+ 1210
+ ],
+ [
+ 1203
+ ],
+ [
+ 1803
+ ],
+ [
+ 1992
+ ],
+ [
+ 1719
+ ],
+ [
+ 1869
+ ],
+ [
+ 1888
+ ],
+ [
+ 1114
+ ],
+ [
+ 1109
+ ],
+ [
+ 750
+ ],
+ [
+ 748
+ ],
+ [
+ 1443
+ ],
+ [
+ 112
+ ],
+ [
+ 548
+ ],
+ [
+ 43
+ ],
+ [
+ 1005
+ ],
+ [
+ 1120
+ ],
+ [
+ 226
+ ],
+ [
+ 742
+ ],
+ [
+ 773
+ ],
+ [
+ 1162
+ ],
+ [
+ 1157
+ ],
+ [
+ 1519
+ ],
+ [
+ 35
+ ],
+ [
+ 1553
+ ],
+ [
+ 1555
+ ],
+ [
+ 1135
+ ],
+ [
+ 1488
+ ],
+ [
+ 1681
+ ],
+ [
+ 47
+ ],
+ [
+ 1820
+ ],
+ [
+ 153
+ ],
+ [
+ 1633
+ ],
+ [
+ 1165
+ ],
+ [
+ 1620
+ ],
+ [
+ 1619
+ ],
+ [
+ 3
+ ],
+ [
+ 1516
+ ],
+ [
+ 1738
+ ],
+ [
+ 1318
+ ],
+ [
+ 728
+ ],
+ [
+ 1841
+ ],
+ [
+ 595
+ ],
+ [
+ 68
+ ],
+ [
+ 350
+ ],
+ [
+ 338
+ ],
+ [
+ 1038
+ ],
+ [
+ 1181
+ ],
+ [
+ 410
+ ],
+ [
+ 1530
+ ],
+ [
+ 550
+ ],
+ [
+ 1013
+ ],
+ [
+ 380
+ ],
+ [
+ 582
+ ],
+ [
+ 662
+ ],
+ [
+ 1951
+ ],
+ [
+ 1941
+ ],
+ [
+ 1315
+ ],
+ [
+ 1907
+ ],
+ [
+ 1985
+ ],
+ [
+ 685
+ ],
+ [
+ 839
+ ],
+ [
+ 276
+ ],
+ [
+ 895
+ ],
+ [
+ 1825
+ ],
+ [
+ 1982
+ ],
+ [
+ 686
+ ],
+ [
+ 896
+ ],
+ [
+ 1734
+ ],
+ [
+ 1046
+ ],
+ [
+ 365
+ ],
+ [
+ 1647
+ ],
+ [
+ 1668
+ ],
+ [
+ 1653
+ ],
+ [
+ 1028
+ ],
+ [
+ 1022
+ ],
+ [
+ 1788
+ ],
+ [
+ 1786
+ ],
+ [
+ 235
+ ],
+ [
+ 180
+ ],
+ [
+ 1286
+ ],
+ [
+ 637
+ ],
+ [
+ 296
+ ],
+ [
+ 777
+ ],
+ [
+ 1447
+ ],
+ [
+ 223
+ ],
+ [
+ 1043
+ ],
+ [
+ 998
+ ],
+ [
+ 477
+ ],
+ [
+ 1099
+ ],
+ [
+ 128
+ ],
+ [
+ 1685
+ ],
+ [
+ 726
+ ],
+ [
+ 351
+ ],
+ [
+ 1360
+ ],
+ [
+ 1152
+ ],
+ [
+ 442
+ ],
+ [
+ 515
+ ],
+ [
+ 708
+ ],
+ [
+ 722
+ ],
+ [
+ 974
+ ],
+ [
+ 120
+ ],
+ [
+ 674
+ ],
+ [
+ 695
+ ],
+ [
+ 682
+ ],
+ [
+ 679
+ ],
+ [
+ 698
+ ],
+ [
+ 409
+ ],
+ [
+ 703
+ ],
+ [
+ 148
+ ],
+ [
+ 1944
+ ],
+ [
+ 422
+ ],
+ [
+ 1828
+ ],
+ [
+ 1143
+ ],
+ [
+ 1842
+ ],
+ [
+ 1725
+ ],
+ [
+ 641
+ ],
+ [
+ 1916
+ ],
+ [
+ 879
+ ],
+ [
+ 2031
+ ],
+ [
+ 1886
+ ],
+ [
+ 1947
+ ],
+ [
+ 921
+ ],
+ [
+ 1202
+ ],
+ [
+ 1699
+ ],
+ [
+ 1467
+ ],
+ [
+ 830
+ ],
+ [
+ 1651
+ ],
+ [
+ 464
+ ],
+ [
+ 820
+ ],
+ [
+ 1913
+ ],
+ [
+ 709
+ ],
+ [
+ 1624
+ ],
+ [
+ 1704
+ ],
+ [
+ 1221
+ ],
+ [
+ 328
+ ],
+ [
+ 909
+ ],
+ [
+ 975
+ ],
+ [
+ 1032
+ ],
+ [
+ 589
+ ],
+ [
+ 137
+ ],
+ [
+ 690
+ ],
+ [
+ 215
+ ],
+ [
+ 1696
+ ],
+ [
+ 837
+ ],
+ [
+ 444
+ ],
+ [
+ 1417
+ ],
+ [
+ 1255
+ ],
+ [
+ 1901
+ ],
+ [
+ 1182
+ ],
+ [
+ 1690
+ ],
+ [
+ 2022
+ ],
+ [
+ 1500
+ ],
+ [
+ 603
+ ],
+ [
+ 770
+ ],
+ [
+ 210
+ ],
+ [
+ 499
+ ],
+ [
+ 42
+ ],
+ [
+ 1153
+ ],
+ [
+ 774
+ ],
+ [
+ 1482
+ ],
+ [
+ 1150
+ ],
+ [
+ 72
+ ],
+ [
+ 1895
+ ],
+ [
+ 1000
+ ],
+ [
+ 327
+ ],
+ [
+ 24
+ ],
+ [
+ 165
+ ],
+ [
+ 1661
+ ],
+ [
+ 1798
+ ],
+ [
+ 240
+ ],
+ [
+ 396
+ ],
+ [
+ 443
+ ],
+ [
+ 1271
+ ],
+ [
+ 1607
+ ],
+ [
+ 336
+ ],
+ [
+ 797
+ ],
+ [
+ 2000
+ ],
+ [
+ 1706
+ ],
+ [
+ 1504
+ ],
+ [
+ 1325
+ ],
+ [
+ 1954
+ ],
+ [
+ 1657
+ ],
+ [
+ 1231
+ ],
+ [
+ 1909
+ ],
+ [
+ 697
+ ],
+ [
+ 1205
+ ],
+ [
+ 1169
+ ],
+ [
+ 1999
+ ],
+ [
+ 848
+ ],
+ [
+ 1860
+ ],
+ [
+ 936
+ ],
+ [
+ 1299
+ ],
+ [
+ 1656
+ ],
+ [
+ 1554
+ ],
+ [
+ 372
+ ],
+ [
+ 1715
+ ],
+ [
+ 761
+ ],
+ [
+ 948
+ ],
+ [
+ 1329
+ ],
+ [
+ 1478
+ ],
+ [
+ 973
+ ],
+ [
+ 421
+ ],
+ [
+ 220
+ ],
+ [
+ 1910
+ ],
+ [
+ 315
+ ],
+ [
+ 982
+ ],
+ [
+ 189
+ ],
+ [
+ 913
+ ],
+ [
+ 1862
+ ],
+ [
+ 473
+ ],
+ [
+ 1420
+ ],
+ [
+ 265
+ ],
+ [
+ 772
+ ],
+ [
+ 416
+ ],
+ [
+ 494
+ ],
+ [
+ 490
+ ],
+ [
+ 1093
+ ],
+ [
+ 1287
+ ],
+ [
+ 794
+ ],
+ [
+ 1339
+ ],
+ [
+ 717
+ ],
+ [
+ 705
+ ],
+ [
+ 1604
+ ],
+ [
+ 1603
+ ],
+ [
+ 1012
+ ],
+ [
+ 1189
+ ],
+ [
+ 243
+ ],
+ [
+ 1505
+ ],
+ [
+ 1335
+ ],
+ [
+ 1938
+ ],
+ [
+ 1922
+ ],
+ [
+ 977
+ ],
+ [
+ 1407
+ ],
+ [
+ 1838
+ ],
+ [
+ 1855
+ ],
+ [
+ 1243
+ ],
+ [
+ 1354
+ ],
+ [
+ 652
+ ],
+ [
+ 1240
+ ],
+ [
+ 586
+ ],
+ [
+ 1336
+ ],
+ [
+ 796
+ ],
+ [
+ 1631
+ ],
+ [
+ 859
+ ],
+ [
+ 1988
+ ],
+ [
+ 801
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 790?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 790;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'beachlover99@yahoo.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'beachlover99@yahoo.com';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date and time of the order with increment ID '000000048'?",
+ "sql": "SELECT created_at FROM sales_order WHERE increment_id = '000000048';",
+ "answer": [
+ "2022-01-31 09:08:13"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-01-31 09:08:13"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 499 in store 0 for the year 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 499 AND store_id = 0 AND period = '2022-01-01';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Has an email been sent for the order with increment ID '000000002'?",
+ "sql": "SELECT email_sent FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "No email has been sent"
+ ],
+ "sql_execute_result": [
+ [
+ null
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with ID 2?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for order with increment ID '000000001'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'fraud'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'fraud';",
+ "answer": [
+ "Suspected Fraud"
+ ],
+ "sql_execute_result": [
+ [
+ "Suspected Fraud"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular search term in store 1?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'Antonia Racer Tank'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating 'Quality' active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the third shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1 OFFSET 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which search query has the least number of results?",
+ "sql": "SELECT query_text FROM search_query ORDER BY num_results ASC LIMIT 1;",
+ "answer": [
+ "nike"
+ ],
+ "sql_execute_result": [
+ [
+ "nike"
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the order status 'paypal_reversed'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are there for the search query 'nike'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for 'Price'.",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Price';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 10?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 10;",
+ "answer": [
+ "janesmith@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000187'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000187';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the sales order with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'jla_7781@gmail.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE customer_email = 'jla_7781@gmail.com';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest quantity ordered in September 2022 in store with ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-09-01' AND store_id = 0 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount paid for the sales order with entity ID 1?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 33?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 33;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1458?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1458;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 190?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 190 AND attribute_id = 73;",
+ "answer": [
+ "Abominable Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Abominable Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product 'Sprite Stasis Ball 65 cm' in the main store?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 28 AND stock_id = 1;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and SKU of the product with entity ID 243?",
+ "sql": "SELECT name, sku FROM sales_order_item WHERE product_id = 243;",
+ "answer": [
+ "Marco Lightweight Active Hoodie-S-Green",
+ "MH13-S-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Marco Lightweight Active Hoodie-S-Green",
+ "MH13-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular product based on quantity ordered in January 2023 in the main store?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 AND period >= '2023-01-01' AND period < '2023-02-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sylvia Capri-28-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Sylvia Capri-28-Red"
+ ]
+ ]
+ },
+ {
+ "question": "List the product IDs of products in the 'Main' store with a rating position of 1 for the year 2023.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND rating_pos = 1 AND period = '2023-01-01';",
+ "answer": [
+ "33"
+ ],
+ "sql_execute_result": [
+ [
+ 33
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 55?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 55;",
+ "answer": [
+ "ethan.garcia@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "ethan.garcia@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer named 'Julia Williams'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Julia Williams';",
+ "answer": [
+ "654 Park Avenue New York City New York 10065"
+ ],
+ "sql_execute_result": [
+ [
+ "654 Park Avenue New York City New York 10065"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product associated with the invoice item having entity ID 2?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many customer names are in the 'General' customer group?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE group_id = (SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'General');",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price including tax for the product named 'Iris Workout Top' in the sales invoice items?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the warning value for the sales sequence profile with profile ID 3.",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE profile_id = 3;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer ID for the email 'jla_7781@gmail.com'?",
+ "sql": "SELECT entity_id FROM customer_grid_flat WHERE email = 'jla_7781@gmail.com';",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product name for the SKU 'WS03-XS-Red' in the sales invoice items.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with option ID 168 in the EAV attribute option values?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 168;",
+ "answer": [
+ "M"
+ ],
+ "sql_execute_result": [
+ [
+ "M"
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for the customer named 'Katie Wong'.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Katie Wong';",
+ "answer": [
+ "2065551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2065551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 77 for the product with entity ID 953?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND entity_id = 953;",
+ "answer": [
+ "35.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "35.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which region in Venezuela has the region code 'VE-H'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'VE' AND code = 'VE-H';",
+ "answer": [
+ "Cojedes"
+ ],
+ "sql_execute_result": [
+ [
+ "Cojedes"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum value for the sequence profile with ID 5?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Which rating option has the code '5' and rating ID 2?",
+ "sql": "SELECT option_id FROM rating_option WHERE code = '5' AND rating_id = 2;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the step value for the sequence profile with meta ID 4?",
+ "sql": "SELECT step FROM sales_sequence_profile WHERE meta_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the value of the product attribute with ID 77 for the entity ID 1234.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND entity_id = 1234;",
+ "answer": [
+ "56.250000"
+ ],
+ "sql_execute_result": [
+ [
+ "56.250000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name for the region in Brazil with the code 'MA'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'BR' AND code = 'MA';",
+ "answer": [
+ "Maranh\u00e3o"
+ ],
+ "sql_execute_result": [
+ [
+ "Maranh\u00e3o"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the rating option with ID 18.",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 18;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have the status 'canceled'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 142
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in the complete order with ID 295?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 295 AND state = 'complete';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What rating value is associated with option ID 7?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 7;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with increment ID '000000176'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000176';",
+ "answer": [
+ "lisa.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "lisa.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the invoice sequence value for the highest sequence invoice?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "List all product attributes with the value 'Waterproof'.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value = 'Waterproof';",
+ "answer": [
+ "Waterproof"
+ ],
+ "sql_execute_result": [
+ [
+ "Waterproof"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with ID 68?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 68;",
+ "answer": [
+ "211.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "211.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the protect code for the order with customer ID 12?",
+ "sql": "SELECT protect_code FROM sales_order WHERE customer_id = 12;",
+ "answer": [
+ "967b1201bd96d963441e521afebfa388",
+ "0529a764c98776888eb90f96b40a5fa3",
+ "015e8d28add9b57be0f672fb5d12c956",
+ "75a795f50cf95e4ab83d716826680e1b",
+ "f77788dca52df98e8e0657cdd3d3b5a5",
+ "3f969a9b7a3264ae33b29945eab7cc4a",
+ "bb3d153d3918a2416af6871ae49e8868"
+ ],
+ "sql_execute_result": [
+ [
+ "967b1201bd96d963441e521afebfa388"
+ ],
+ [
+ "0529a764c98776888eb90f96b40a5fa3"
+ ],
+ [
+ "015e8d28add9b57be0f672fb5d12c956"
+ ],
+ [
+ "75a795f50cf95e4ab83d716826680e1b"
+ ],
+ [
+ "f77788dca52df98e8e0657cdd3d3b5a5"
+ ],
+ [
+ "3f969a9b7a3264ae33b29945eab7cc4a"
+ ],
+ [
+ "bb3d153d3918a2416af6871ae49e8868"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers ordered items with a total weight of 5.0000?",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE weight = 5.0000;",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace",
+ "Nguyen"
+ ],
+ [
+ "Julia",
+ "Williams"
+ ],
+ [
+ "Sarah",
+ "Miller"
+ ],
+ [
+ "Jane",
+ "Smith"
+ ],
+ [
+ "Alexander",
+ "Thomas"
+ ],
+ [
+ "John",
+ "Lee"
+ ],
+ [
+ "Lily",
+ "Potter"
+ ],
+ [
+ "Ava",
+ "Brown"
+ ],
+ [
+ "Matt",
+ "Baker"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Grace",
+ "Nguyen"
+ ],
+ [
+ "Matt",
+ "Baker"
+ ],
+ [
+ "Alex",
+ "Johnson"
+ ],
+ [
+ "Alexander",
+ "Thomas"
+ ],
+ [
+ "Lily",
+ "Potter"
+ ],
+ [
+ "Sarah",
+ "Miller"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 1593?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1593;",
+ "answer": [
+ "WB01-S-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "WB01-S-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category path for the category with entity ID 23.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 23 AND attribute_id = 120;",
+ "answer": [
+ "women/tops-women/jackets-women"
+ ],
+ "sql_execute_result": [
+ [
+ "women/tops-women/jackets-women"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'processing'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'processing';",
+ "answer": [
+ "Processing"
+ ],
+ "sql_execute_result": [
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "Get the description for the product with entity ID 1437.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1437 AND attribute_id = 75;",
+ "answer": [
+ "Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.
\n• Teal tee.
• Long back hem.
• Dropped shoulders.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.
\n• Teal tee.
• Long back hem.
• Dropped shoulders.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category ID for the product with product ID 970?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 970;",
+ "answer": [
+ "19",
+ "31",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ],
+ [
+ 31
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product type for the product with SKU 'WJ07-XS-Red'.",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'WJ07-XS-Red';",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity ID of the product located in category 30 with product ID 1301.",
+ "sql": "SELECT entity_id FROM catalog_category_product WHERE category_id = 30 AND product_id = 1301;",
+ "answer": [
+ "2688"
+ ],
+ "sql_execute_result": [
+ [
+ 2688
+ ]
+ ]
+ },
+ {
+ "question": "What is the value in the catalog_product_entity_text table for entity ID 706?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 706 AND attribute_id = 152;",
+ "answer": [
+ "134"
+ ],
+ "sql_execute_result": [
+ [
+ "134"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation timestamp for the product with SKU 'WP07-29-Black'?",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'WP07-29-Black';",
+ "answer": [
+ "2023-04-19 16:13:53"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:53"
+ ]
+ ]
+ },
+ {
+ "question": "How many values are there for the attribute ID 119 in the catalog_category_entity_varchar table?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 119;",
+ "answer": [
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ],
+ [
+ "bags"
+ ],
+ [
+ "fitness-equipment"
+ ],
+ [
+ "watches"
+ ],
+ [
+ "collections"
+ ],
+ [
+ "yoga-new"
+ ],
+ [
+ "training"
+ ],
+ [
+ "training-video"
+ ],
+ [
+ "men"
+ ],
+ [
+ "tops-men"
+ ],
+ [
+ "bottoms-men"
+ ],
+ [
+ "jackets-men"
+ ],
+ [
+ "hoodies-and-sweatshirts-men"
+ ],
+ [
+ "tees-men"
+ ],
+ [
+ "tanks-men"
+ ],
+ [
+ "pants-men"
+ ],
+ [
+ "shorts-men"
+ ],
+ [
+ "women"
+ ],
+ [
+ "tops-women"
+ ],
+ [
+ "bottoms-women"
+ ],
+ [
+ "jackets-women"
+ ],
+ [
+ "hoodies-and-sweatshirts-women"
+ ],
+ [
+ "tees-women"
+ ],
+ [
+ "tanks-women"
+ ],
+ [
+ "pants-women"
+ ],
+ [
+ "shorts-women"
+ ],
+ [
+ "promotions"
+ ],
+ [
+ "women-sale"
+ ],
+ [
+ "men-sale"
+ ],
+ [
+ "pants-all"
+ ],
+ [
+ "tees-all"
+ ],
+ [
+ "erin-recommends"
+ ],
+ [
+ "performance-fabrics"
+ ],
+ [
+ "eco-friendly"
+ ],
+ [
+ "sale"
+ ],
+ [
+ "what-is-new"
+ ],
+ [
+ "performance-new"
+ ],
+ [
+ "eco-new"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 29?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 29;",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with the email 'michael.nguyen@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'michael.nguyen@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of products in the 'Fashion' category.",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = (SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'Fashion');",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1428?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1428;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "Troy Yoga Short",
+ "Troy Yoga Short-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with order ID 3?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 3;",
+ "answer": [
+ "456 Las Vegas Blvd S,Las Vegas,Nevada,89109"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Las Vegas Blvd S,Las Vegas,Nevada,89109"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with ID 1194 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1194;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the street address for customer Jennifer White?",
+ "sql": "SELECT street FROM customer_address_entity WHERE firstname = 'Jennifer' AND lastname = 'White';",
+ "answer": [
+ "789 W Olympic Blvd"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Olympic Blvd"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating percent for the review with ID 342.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 342;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Which city does the billing address with email john.lee@yahoo.com belong to?",
+ "sql": "SELECT city FROM sales_order_address WHERE email = 'john.lee@yahoo.com' AND address_type = 'billing';",
+ "answer": [
+ "Chicago"
+ ],
+ "sql_execute_result": [
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Chicago"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer with the shipping address ID 581?",
+ "sql": "SELECT lastname FROM sales_order_address WHERE entity_id = 581;",
+ "answer": [
+ "Garcia"
+ ],
+ "sql_execute_result": [
+ [
+ "Garcia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 108?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 108;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with the billing address at 333 S Broad St.",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '333 S Broad St' AND address_type = 'billing';",
+ "answer": [
+ "daniel.jackson@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer associated with the shipping address in Hoboken?",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE city = 'Hoboken' AND street = '225 River St';",
+ "answer": [
+ "Natalie"
+ ],
+ "sql_execute_result": [
+ [
+ "Natalie"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews created on 2023-04-19 for the product with entity ID 2024.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 2024 AND created_at LIKE '2023-04-19%';",
+ "answer": [
+ "310",
+ "311",
+ "312"
+ ],
+ "sql_execute_result": [
+ [
+ 310,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 311,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 312,
+ "2023-04-19 16:15:19"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for the customer with the address ID 30?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 30;",
+ "answer": [
+ "6175551212"
+ ],
+ "sql_execute_result": [
+ [
+ "6175551212"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with ID 5?",
+ "sql": "SELECT * FROM sales_order WHERE customer_id = 5;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15,
+ "canceled",
+ "canceled",
+ null,
+ "21b76bf2b1ea0998a6c8a117298bfc72",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "61.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "51.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "61.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "51.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 30,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 16,
+ 29,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "51.0000",
+ "61.0000",
+ null,
+ "0.0000",
+ "51.0000",
+ "61.0000",
+ "1.0000",
+ null,
+ "000000015",
+ "1,2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-17 09:04:24",
+ "2023-04-23 23:36:01",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 28,
+ "complete",
+ "complete",
+ null,
+ "9943157db52cd2f41629925b2bb8b3a7",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "-50.4000",
+ null,
+ null,
+ null,
+ "226.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "252.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-50.4000",
+ null,
+ null,
+ null,
+ "226.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "252.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 56,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 29,
+ 55,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "252.0000",
+ "226.6000",
+ null,
+ "0.0000",
+ "252.0000",
+ "226.6000",
+ "5.0000",
+ null,
+ "000000028",
+ "1,2,3",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-12 11:53:26",
+ "2023-04-23 23:36:06",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 39,
+ "canceled",
+ "canceled",
+ null,
+ "5cb3c9b1ef1580ed83b2acc7a259f471",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "218.8500",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "193.8500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "218.8500",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "193.8500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 78,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 40,
+ 77,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "193.8500",
+ "218.8500",
+ null,
+ "0.0000",
+ "193.8500",
+ "218.8500",
+ "4.0000",
+ null,
+ "000000039",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-25 21:11:50",
+ "2023-04-23 23:36:11",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 62,
+ "complete",
+ "complete",
+ null,
+ "9a313982dc803624f6c1a044f8005836",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 124,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 63,
+ 123,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ "4.0000",
+ null,
+ "000000062",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-02 07:44:18",
+ "2023-04-23 23:36:20",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 101,
+ "canceled",
+ "canceled",
+ null,
+ "0caf8739ee300ac9975352e90df99b2a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "199.8000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "174.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "199.8000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "174.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 202,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 102,
+ 201,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "174.8000",
+ "199.8000",
+ null,
+ "0.0000",
+ "174.8000",
+ "199.8000",
+ "4.0000",
+ null,
+ "000000101",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-12 18:37:21",
+ "2023-04-23 23:36:37",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 156,
+ "complete",
+ "complete",
+ null,
+ "c726cb2cd1351201c318140706b28261",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "-44.4000",
+ null,
+ null,
+ null,
+ "202.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "222.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-44.4000",
+ null,
+ null,
+ null,
+ "202.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "222.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 312,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 157,
+ 311,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "222.0000",
+ "202.6000",
+ null,
+ "0.0000",
+ "222.0000",
+ "202.6000",
+ "4.0000",
+ null,
+ "000000156",
+ "2,3",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-28 01:26:41",
+ "2023-04-23 23:37:00",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 157,
+ "canceled",
+ "canceled",
+ null,
+ "31fb2afd4c3f5ef285141a9c5b39cadb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "44.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "39.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "44.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "39.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 314,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 158,
+ 313,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "39.0000",
+ "44.0000",
+ null,
+ "0.0000",
+ "39.0000",
+ "44.0000",
+ "1.0000",
+ null,
+ "000000157",
+ "1",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-06 05:26:31",
+ "2023-04-23 23:37:01",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 185,
+ "canceled",
+ "canceled",
+ null,
+ "8f5335c1528a427c0729dfeb8231e86a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 370,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 186,
+ 369,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ "1.0000",
+ null,
+ "000000185",
+ "1",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-10 21:41:09",
+ "2023-04-23 23:37:13",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 216,
+ "complete",
+ "complete",
+ null,
+ "40e72a6f88be56e384630587bb68d761",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "173.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "158.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "173.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "158.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 432,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 217,
+ 431,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "158.0000",
+ "173.0000",
+ null,
+ "0.0000",
+ "158.0000",
+ "173.0000",
+ "3.0000",
+ null,
+ "000000216",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-02 12:40:22",
+ "2023-04-23 23:37:25",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 229,
+ "canceled",
+ "canceled",
+ null,
+ "96af71c48cd7af40fa6f6082483122b2",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "55.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "50.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "55.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "50.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 458,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 230,
+ 457,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "50.0000",
+ "55.0000",
+ null,
+ "0.0000",
+ "50.0000",
+ "55.0000",
+ "1.0000",
+ null,
+ "000000229",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-22 08:40:32",
+ "2023-04-23 23:37:31",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 236,
+ "complete",
+ "complete",
+ null,
+ "afdc0d4e1f5a1adc49b2809631028a05",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "107.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "107.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 472,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 237,
+ 471,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "97.0000",
+ "107.0000",
+ null,
+ "0.0000",
+ "97.0000",
+ "107.0000",
+ "2.0000",
+ null,
+ "000000236",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-10 13:34:06",
+ "2023-04-23 23:37:34",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 253,
+ "complete",
+ "complete",
+ null,
+ "71ddeea75288f3abcb0134968029a25b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "32.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "27.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "32.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "27.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 506,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 254,
+ 505,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "27.0000",
+ "32.0000",
+ null,
+ "0.0000",
+ "27.0000",
+ "32.0000",
+ "0.0000",
+ null,
+ "000000253",
+ null,
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-17 20:16:03",
+ "2023-04-23 23:37:41",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 276,
+ "complete",
+ "complete",
+ null,
+ "8301960b548e9f51ec715ee3a7ce729c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "150.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "135.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "150.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "135.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 552,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 277,
+ 551,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "135.2000",
+ "150.2000",
+ null,
+ "0.0000",
+ "135.2000",
+ "150.2000",
+ "3.0000",
+ null,
+ "000000276",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-08 08:05:52",
+ "2023-04-23 23:37:50",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 297,
+ "complete",
+ "complete",
+ null,
+ "94d7873d82e704ee55d2f5c0382e8a8d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 594,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 298,
+ 593,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ "3.0000",
+ null,
+ "000000297",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-16 17:23:33",
+ "2023-04-23 23:37:59",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 299,
+ "pending",
+ "pending",
+ null,
+ "687a0d849c78d5fe3f76b0af508178e7",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "-48.6000",
+ null,
+ null,
+ null,
+ "219.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "243.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-48.6000",
+ null,
+ null,
+ null,
+ "219.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "243.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 598,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 300,
+ 597,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "243.0000",
+ "219.4000",
+ null,
+ "0.0000",
+ "243.0000",
+ "219.4000",
+ "5.0000",
+ null,
+ "000000299",
+ "1,2,3",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-31 06:55:09",
+ "2023-04-23 23:38:00",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order with ID 2?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 1194?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1194;",
+ "answer": [
+ "11.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "11.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the order with entity_id 3?",
+ "sql": "SELECT tax_amount FROM sales_order WHERE entity_id = 3;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer with the first name 'John'.",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'John';",
+ "answer": [
+ "john.smith.xyz@gmail.com",
+ "john.lee@yahoo.com",
+ "johndoe123@gmail.com",
+ "john.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with the category having entity_id 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the full billing address for customer 'Jessica Chang'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE entity_id = 48;",
+ "answer": [
+ "111 Pike St Seattle Washington 98101"
+ ],
+ "sql_execute_result": [
+ [
+ "111 Pike St Seattle Washington 98101"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region code 'SP' in Brazil.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'BR' AND code = 'SP';",
+ "answer": [
+ "S\u00e3o Paulo"
+ ],
+ "sql_execute_result": [
+ [
+ "S\u00e3o Paulo"
+ ]
+ ]
+ },
+ {
+ "question": "Check if product with ID 1140 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1140;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value given to product ID 574 in review ID 70?",
+ "sql": "SELECT value FROM rating_option_vote WHERE entity_pk_value = 574 AND review_id = 70;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the identifier for category with entity ID 31.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 31 AND attribute_id = 119;",
+ "answer": [
+ "men-sale"
+ ],
+ "sql_execute_result": [
+ [
+ "men-sale"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 43?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 43;",
+ "answer": [
+ "anna.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "anna.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in the 'Default Store View'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity in stock for product ID 220?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 220;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number for customer 'James Kim'.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE entity_id = 49;",
+ "answer": [
+ "3125551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3125551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 924?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 924;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percentage rating for the review with ID 317?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 317;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Check if product ID 1520 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1520;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the value for option ID 135.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 135;",
+ "answer": [
+ "Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with entity ID 2?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value associated with the option ID 180.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 180;",
+ "answer": [
+ "N/A"
+ ],
+ "sql_execute_result": [
+ [
+ "N/A"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price including tax for the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the review ID for the product with entity_pk_value 776.",
+ "sql": "SELECT review_id FROM rating_option_vote WHERE entity_pk_value = 776;",
+ "answer": [
+ "61",
+ "62",
+ "63"
+ ],
+ "sql_execute_result": [
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID for the value associated with value_id 186?",
+ "sql": "SELECT store_id FROM eav_attribute_option_value WHERE value_id = 186;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'WJ03-S-Blue'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WJ03-S-Blue';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 288?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 288 AND attribute_id = 77;",
+ "answer": [
+ "47.00"
+ ],
+ "sql_execute_result": [
+ [
+ "47.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the state associated with the 'fraud' status.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total row amount for the item with ID 1239?",
+ "sql": "SELECT row_total FROM sales_order_item WHERE item_id = 1239;",
+ "answer": [
+ "74.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "74.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine if the 'closed' status is visible on the front.",
+ "sql": "SELECT visible_on_front FROM sales_order_status_state WHERE status = 'closed';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest shipment?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the weight of the product with SKU 'MS01-M-Black'.",
+ "sql": "SELECT weight FROM sales_order_item WHERE sku = 'MS01-M-Black';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is the default for the 'Main Website Store' group?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type for the item ordered with ID 55?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE item_id = 55;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the names of all stores currently active.",
+ "sql": "SELECT name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ],
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 1983?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1983 AND attribute_id = 75;",
+ "answer": [
+ "Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.
\n• Navy cotton shorts with light bue waist detail.
• Front shirred waistband.
• Flat-lock, chafe-free side seams.
• Vented gusset.
• Hidden interior pocket.
• Sustainable and recycled fabric.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.
\n• Navy cotton shorts with light bue waist detail.
• Front shirred waistband.
• Flat-lock, chafe-free side seams.
• Vented gusset.
• Hidden interior pocket.
• Sustainable and recycled fabric.
"
+ ]
+ ]
+ },
+ {
+ "question": "List all shipments for customer with ID 1.",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ],
+ [
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating option with ID 10?",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 10;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ "5"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the code 'admin'?",
+ "sql": "SELECT name FROM store WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID associated with option ID 47.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 47;",
+ "answer": [
+ "139"
+ ],
+ "sql_execute_result": [
+ [
+ 139
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sort order for the attribute option with ID 9.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 9;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Which store has a store ID of 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the rating option with ID 20.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 20;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1227?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1227;",
+ "answer": [
+ "WJ02-M-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ02-M-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with ID 5?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE entity_id = 5;",
+ "answer": [
+ "Sarah Miller"
+ ],
+ "sql_execute_result": [
+ [
+ "Sarah Miller"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for order with ID 2?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is the bestseller for store ID 1 in the year 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 ORDER BY rating_pos LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 15?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 15;",
+ "answer": [
+ "208"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews in the 'Default Store View' mention the word 'hoodie'?",
+ "sql": "SELECT title, detail, nickname FROM review_detail WHERE store_id = 1 AND detail LIKE '%hoodie%';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ "Perfect layer for the game",
+ "Perfect layer for wearing to the game, it doesn't shed all over your clothes like a regular hoodie.",
+ "Mike"
+ ],
+ [
+ "The fabric is great",
+ "the fabric is great, it keeps me warm but it's not bulky like my other hoodies. Runs large, though.",
+ "Emory"
+ ],
+ [
+ "I can't get enough of this hoodie",
+ "I can't get enough of this hoodie. It's so comfortable, I hate taking it off! I'm buying it in more colors now so that I can wear it more without people realizing that I wear the same thing every day ;)",
+ "Olene"
+ ],
+ [
+ "Softest hoodie ever",
+ "This hoodie may be the softest thing I've ever touched! It's so perfect for curling up on a chilly day. I wore it hiking on a really cold day last November and it kept me really warm. My only issue is that it's kind of plain and unflattering. I would love to wear it all the time but it makes me look a little frumpy. Luma, I need this fabric with a more stylish design!",
+ "Martina"
+ ],
+ [
+ "Zipper is goofy",
+ "Honestly this hoodie is okay but I do not get thezipper. Why not just make a full length zipper? I would rather have no zipper.",
+ "Julieann"
+ ],
+ [
+ "My favorite hoodie",
+ "This is definitely my favorite hoodie in my closet. I wouldn't wear it if it was freezing out, but it's a great extra layer on normal mornings.",
+ "Joelle"
+ ],
+ [
+ "Great value",
+ "The sleeves are definitely thicker than you realize, which is a good thing! The photo is a little misleading because it makes the hoodie look thin but it's really quite substantial! Great value. ",
+ "Oma"
+ ],
+ [
+ "Best hoodies I've owned.",
+ "im planning on buying another one of these in another color. the best hoodie ive ever owned.",
+ "Beatris"
+ ],
+ [
+ "Love it!",
+ "Walking our St. Benard is pretty serious exercise - you WILL sweat trying to keep up with him. This hoodie keeps me just warm enough and doesn't get bogged down with sweat. Love it! ",
+ "Georgeann"
+ ],
+ [
+ "Fall weather jogs or walks",
+ "Perfect for fall weather jogs or walks on cool evenings. The sweat-wicking fabric works wonders, keeps the hoodie dry after you've cooled down so you're not cold and wet (which I can't stand).",
+ "Stefany"
+ ],
+ [
+ "Wish I'd bought the tshirt",
+ "Love the material, but the hood kind of flops around. I should have bought the t-shirt instead of the hoodie.",
+ "Juliette"
+ ],
+ [
+ "Fleece inside, sweater outside",
+ "I love wearing fleece, but I hate how it pills and picks up fluff and cat hair. This hoodie is perfect, because it's a fleece on the inside and a sweater on the outside. I wear it around the house all the time in the winter.",
+ "Anamaria"
+ ],
+ [
+ "Great for hiking and camping",
+ "Great hoodie for hiking and camping in the fall. I really wish the pockets were bigger, though, I can't get my hands in them when I'm wearing gloves.",
+ "Tiffiny"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer Olivia Lee?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Olivia' AND lastname = 'Lee';",
+ "answer": [
+ "soccerfanatic22@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "soccerfanatic22@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity of the search query 'Antonia Racer Tank'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Antonia Racer Tank' AND store_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings available in the system.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the search query 'hollister'?",
+ "sql": "SELECT store.name FROM search_query JOIN store ON search_query.store_id = store.store_id WHERE query_text = 'hollister';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Get the nickname of the customer who reviewed 'Doesn't fit me. Luma fail.'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Doesn\\'t fit me. Luma fail.';",
+ "answer": [
+ "Roxie"
+ ],
+ "sql_execute_result": [
+ [
+ "Roxie"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the review title and details for the review with ID 196.",
+ "sql": "SELECT title, detail FROM review_detail WHERE review_id = 196;",
+ "answer": [
+ "Not very stylish",
+ "It's kinda average and I don't know if I would get it again. With the right color combination, it might look ok, but the combo I have and the short sleeve style doesn't make it very stylish."
+ ],
+ "sql_execute_result": [
+ [
+ "Not very stylish",
+ "It's kinda average and I don't know if I would get it again. With the right color combination, it might look ok, but the combo I have and the short sleeve style doesn't make it very stylish."
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'tanks'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'tanks' AND store_id = 1;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the customer Sophia Young?",
+ "sql": "SELECT created_at FROM customer_entity WHERE firstname = 'Sophia' AND lastname = 'Young';",
+ "answer": [
+ "2023-04-23 04:14:05"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-23 04:14:05"
+ ]
+ ]
+ },
+ {
+ "question": "How many customer emails were found from the 'Default Store View'?",
+ "sql": "SELECT email FROM customer_entity WHERE store_id = 1;",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 4?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 4;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for orders in store with ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with credit memo ID 1.",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state of the order with status 'pending'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending';",
+ "answer": [
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "new"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are in category ID 30?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 30;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for completed orders on 2022-03-03?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-03-03' AND order_status = 'complete';",
+ "answer": [
+ "116.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "116.0000"
+ ],
+ [
+ "116.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for orders completed on 2022-04-21.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-04-21' AND order_status = 'complete';",
+ "answer": [
+ "8.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "8.0000"
+ ],
+ [
+ "8.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO3 code for the country with ISO2 code 'HR'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'HR';",
+ "answer": [
+ "HRV"
+ ],
+ "sql_execute_result": [
+ [
+ "HRV"
+ ]
+ ]
+ },
+ {
+ "question": "Verify if the store group 'Main Website Store' is part of website ID 1.",
+ "sql": "SELECT website_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "Yes, the store group 'Main Website Store' is part of website ID 1."
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Check if product with ID 853 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 853;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity model associated with the entity type code 'order'?",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'order';",
+ "answer": [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-07-13 in store ID 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-07-13' AND order_status = 'canceled' AND store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the total shipping amount for orders completed on 2023-02-11 in store ID 1.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-02-11' AND order_status = 'complete' AND store_id = 1;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the default store ID for the 'Main Website Store' group.",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of orders for customer John Smith?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 2;",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 13
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed order with increment ID '000000214'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000214';",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the customer with the address entity ID 59?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 59;",
+ "answer": [
+ "Honolulu"
+ ],
+ "sql_execute_result": [
+ [
+ "Honolulu"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the order with increment ID '000000276'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000276';",
+ "answer": [
+ "150.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "150.2000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the street address for customer address entity ID 64?",
+ "sql": "SELECT street FROM customer_address_entity WHERE entity_id = 64;",
+ "answer": [
+ "200 Biscayne Blvd Way"
+ ],
+ "sql_execute_result": [
+ [
+ "200 Biscayne Blvd Way"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with entity ID 220?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 220;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer who lives at '789 17th St'?",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE street = '789 17th St';",
+ "answer": [
+ "Jason"
+ ],
+ "sql_execute_result": [
+ [
+ "Jason"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand amount for all orders placed by customer with email 'jane.doe@hotmail.com'.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_email = 'jane.doe@hotmail.com';",
+ "answer": [
+ "1634.7200"
+ ],
+ "sql_execute_result": [
+ [
+ "1634.7200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 34?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 34;",
+ "answer": [
+ "brian.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "brian.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items ordered in order ID 69.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 69;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000052'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000052';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name associated with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'samantha.nguyen@gmail.com'.",
+ "sql": "SELECT entity_id AS order_id, status AS order_status FROM sales_order WHERE customer_email = 'samantha.nguyen@gmail.com';",
+ "answer": [
+ "Order ID: 145, Status: complete",
+ "Order ID: 171, Status: canceled",
+ "Order ID: 279, Status: canceled"
+ ],
+ "sql_execute_result": [
+ [
+ 145,
+ "complete"
+ ],
+ [
+ 171,
+ "canceled"
+ ],
+ [
+ 279,
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers with their first names have placed orders?",
+ "sql": "SELECT DISTINCT customer_id, customer_firstname AS firstname FROM sales_order WHERE customer_id IS NOT NULL;",
+ "answer": [
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "Veronica"
+ ],
+ [
+ 34,
+ "Brian"
+ ],
+ [
+ 15,
+ "Jane"
+ ],
+ [
+ 18,
+ "Grace"
+ ],
+ [
+ 14,
+ "John"
+ ],
+ [
+ 33,
+ "Adam"
+ ],
+ [
+ 7,
+ "Bob"
+ ],
+ [
+ 2,
+ "John"
+ ],
+ [
+ 13,
+ "Matt"
+ ],
+ [
+ 10,
+ "Jane"
+ ],
+ [
+ 31,
+ "Jason"
+ ],
+ [
+ 4,
+ "Bob"
+ ],
+ [
+ 5,
+ "Sarah"
+ ],
+ [
+ 22,
+ "Sophie"
+ ],
+ [
+ 6,
+ "Julia"
+ ],
+ [
+ 17,
+ "Lily"
+ ],
+ [
+ 27,
+ "Alex"
+ ],
+ [
+ 8,
+ "Mary"
+ ],
+ [
+ 19,
+ "Lucy"
+ ],
+ [
+ 3,
+ "Jane"
+ ],
+ [
+ 23,
+ "Alex"
+ ],
+ [
+ 32,
+ "Katie"
+ ],
+ [
+ 30,
+ "David"
+ ],
+ [
+ 12,
+ "Lisa"
+ ],
+ [
+ 29,
+ "Michael"
+ ],
+ [
+ 28,
+ "Lisa"
+ ],
+ [
+ 16,
+ "Samantha"
+ ],
+ [
+ 21,
+ "Ava"
+ ],
+ [
+ 36,
+ "Alexander"
+ ],
+ [
+ 9,
+ "John"
+ ],
+ [
+ 25,
+ "Adam"
+ ],
+ [
+ 26,
+ "Jennifer"
+ ],
+ [
+ 11,
+ "Daniel"
+ ],
+ [
+ 20,
+ "Olivia"
+ ],
+ [
+ 35,
+ "Samantha"
+ ],
+ [
+ 24,
+ "Emma"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for completed orders on 2023-05-14.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-05-14' AND order_status = 'complete';",
+ "answer": [
+ "89.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "89.0000"
+ ],
+ [
+ "89.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders placed in store ID 0 with status 'canceled'?",
+ "sql": "SELECT COUNT(*) FROM sales_order_aggregated_created WHERE store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "125"
+ ],
+ "sql_execute_result": [
+ [
+ 125
+ ]
+ ]
+ },
+ {
+ "question": "Check if customer entity type allows data sharing.",
+ "sql": "SELECT is_data_sharing FROM eav_entity_type WHERE entity_type_code = 'customer';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 22?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 22;",
+ "answer": [
+ "fashionista88@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fashionista88@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for item with SKU 'WP09-29-Black'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WP09-29-Black';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 343?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 343;",
+ "answer": [
+ "Good choice for working out"
+ ],
+ "sql_execute_result": [
+ [
+ "Good choice for working out"
+ ]
+ ]
+ },
+ {
+ "question": "Find the percentage rating for review ID 238.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 238;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "Check if the rating 'Quality' is active.",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product in order ID 49.",
+ "sql": "SELECT name FROM sales_order_item WHERE order_id = 49;",
+ "answer": [
+ "Beaumont Summit Kit",
+ "Beaumont Summit Kit-S-Yellow",
+ "Hyperion Elements Jacket",
+ "Hyperion Elements Jacket-XS-Orange",
+ "Sinbad Fitness Tank",
+ "Sinbad Fitness Tank-S-Blue",
+ "Hawkeye Yoga Short",
+ "Hawkeye Yoga Short-33-Gray",
+ "Sparta Gym Tank",
+ "Sparta Gym Tank-S-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Beaumont Summit Kit"
+ ],
+ [
+ "Beaumont Summit Kit-S-Yellow"
+ ],
+ [
+ "Hyperion Elements Jacket"
+ ],
+ [
+ "Hyperion Elements Jacket-XS-Orange"
+ ],
+ [
+ "Sinbad Fitness Tank"
+ ],
+ [
+ "Sinbad Fitness Tank-S-Blue"
+ ],
+ [
+ "Hawkeye Yoga Short"
+ ],
+ [
+ "Hawkeye Yoga Short-33-Gray"
+ ],
+ [
+ "Sparta Gym Tank"
+ ],
+ [
+ "Sparta Gym Tank-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer for review ID 125?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 125;",
+ "answer": [
+ "Trey"
+ ],
+ "sql_execute_result": [
+ [
+ "Trey"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product named 'Ariel Roll Sleeve Sweatshirt'?",
+ "sql": "SELECT base_price FROM sales_order_item WHERE name = 'Ariel Roll Sleeve Sweatshirt';",
+ "answer": [
+ "39.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "39.0000"
+ ],
+ [
+ "39.0000"
+ ],
+ [
+ "39.0000"
+ ],
+ [
+ "39.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many votes were cast for the rating ID 4?",
+ "sql": "SELECT COUNT(vote_id) FROM rating_option_vote WHERE rating_id = 4;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ 351
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with the highest rating position in April 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-04-01' ORDER BY rating_pos DESC LIMIT 1;",
+ "answer": [
+ "Augusta Pullover Jacket-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Augusta Pullover Jacket-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find all categories with parent ID 7.",
+ "sql": "SELECT entity_id, path FROM catalog_category_entity WHERE parent_id = 7;",
+ "answer": [
+ "8",
+ "34",
+ "35",
+ "36",
+ "39",
+ "40"
+ ],
+ "sql_execute_result": [
+ [
+ 8,
+ "1/2/7/8"
+ ],
+ [
+ 34,
+ "1/2/7/34"
+ ],
+ [
+ 35,
+ "1/2/7/35"
+ ],
+ [
+ 36,
+ "1/2/7/36"
+ ],
+ [
+ 39,
+ "1/2/7/39"
+ ],
+ [
+ 40,
+ "1/2/7/40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute option with option ID 117?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 117;",
+ "answer": [
+ "Jacket"
+ ],
+ "sql_execute_result": [
+ [
+ "Jacket"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered in September 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-09-01';",
+ "answer": [
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ "Strive Shoulder Pack"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Affirm Water Bottle "
+ ],
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Stark Fundamental Hoodie-XL-Black"
+ ],
+ [
+ "Hero Hoodie-XL-Gray"
+ ],
+ [
+ "Hyperion Elements Jacket-S-Red"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-XS-Red"
+ ],
+ [
+ "Aero Daily Fitness Tee-XL-Brown"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Black"
+ ],
+ [
+ "Primo Endurance Tank-M-Yellow"
+ ],
+ [
+ "Vulcan Weightlifting Tank-M-Black"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -34-Red"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-XL-White"
+ ],
+ [
+ "Jade Yoga Jacket-L-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Blue"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Diva Gym Tee-L-Yellow"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue"
+ ],
+ [
+ "Angel Light Running Short-28-Orange"
+ ],
+ [
+ "Erika Running Short-30-Purple"
+ ],
+ [
+ "Strive Shoulder Pack"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Affirm Water Bottle "
+ ],
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Stark Fundamental Hoodie-XL-Black"
+ ],
+ [
+ "Hero Hoodie-XL-Gray"
+ ],
+ [
+ "Hyperion Elements Jacket-S-Red"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-XS-Red"
+ ],
+ [
+ "Aero Daily Fitness Tee-XL-Brown"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Black"
+ ],
+ [
+ "Primo Endurance Tank-M-Yellow"
+ ],
+ [
+ "Vulcan Weightlifting Tank-M-Black"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Blue"
+ ],
+ [
+ "Cronus Yoga Pant -34-Red"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Orange"
+ ],
+ [
+ "Ingrid Running Jacket-XL-White"
+ ],
+ [
+ "Jade Yoga Jacket-L-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Blue"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Diva Gym Tee-L-Yellow"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue"
+ ],
+ [
+ "Angel Light Running Short-28-Orange"
+ ],
+ [
+ "Erika Running Short-30-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many options have a sort order of 4?",
+ "sql": "SELECT option_id, attribute_id FROM eav_attribute_option WHERE sort_order = 4;",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ 8,
+ 137
+ ],
+ [
+ 28,
+ 138
+ ],
+ [
+ 35,
+ 139
+ ],
+ [
+ 53,
+ 93
+ ],
+ [
+ 65,
+ 140
+ ],
+ [
+ 73,
+ 141
+ ],
+ [
+ 84,
+ 142
+ ],
+ [
+ 89,
+ 143
+ ],
+ [
+ 93,
+ 144
+ ],
+ [
+ 108,
+ 151
+ ],
+ [
+ 120,
+ 152
+ ],
+ [
+ 146,
+ 139
+ ],
+ [
+ 164,
+ 153
+ ],
+ [
+ 184,
+ 154
+ ],
+ [
+ 196,
+ 155
+ ],
+ [
+ 205,
+ 156
+ ]
+ ]
+ },
+ {
+ "question": "How many children does category entity ID 19 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 19;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the 'Marco Lightweight Active Hoodie-XL-Green' ordered in February 2022?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Marco Lightweight Active Hoodie-XL-Green' AND period = '2022-02-01';",
+ "answer": [
+ "74.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the 'Beaumont Summit Kit-M-Red' in January 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Beaumont Summit Kit-M-Red' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the attribute option value 'Skort'?",
+ "sql": "SELECT option_id FROM eav_attribute_option_value WHERE value = 'Skort';",
+ "answer": [
+ "110"
+ ],
+ "sql_execute_result": [
+ [
+ 110
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the total quantity for shipment with increment ID '000000003'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total paid amount for the order with increment ID '000000001'.",
+ "sql": "SELECT total_paid FROM sales_order_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with increment ID '000000088'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE increment_id = '000000088';",
+ "answer": [
+ "789 Ocean Drive,Miami,Florida,33139"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Ocean Drive,Miami,Florida,33139"
+ ]
+ ]
+ },
+ {
+ "question": "List all shipments associated with customer ID 1.",
+ "sql": "SELECT increment_id, total_qty FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001, 1.0000",
+ "000000002, 1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001",
+ "1.0000"
+ ],
+ [
+ "000000002",
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name of the region with region ID 255.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 255;",
+ "answer": [
+ "Savoie"
+ ],
+ "sql_execute_result": [
+ [
+ "Savoie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000273'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000273';",
+ "answer": [
+ "190.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "190.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store name for order with increment ID '000000007'.",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE increment_id = '000000007';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are assigned to category ID 23?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 23;",
+ "answer": [
+ "186"
+ ],
+ "sql_execute_result": [
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1252
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1284
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1300
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "Get the attribute value for attribute ID 144 of the product with entity ID 1362.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE attribute_id = 144 AND entity_id = 1362;",
+ "answer": [
+ "170"
+ ],
+ "sql_execute_result": [
+ [
+ 170
+ ]
+ ]
+ },
+ {
+ "question": "List all canceled orders for customer with ID 16.",
+ "sql": "SELECT increment_id, grand_total FROM sales_order_grid WHERE customer_id = 16 AND status = 'canceled';",
+ "answer": [
+ "000000046, 139.0000",
+ "000000066, 162.2000",
+ "000000081, 183.5900",
+ "000000088, 168.8000",
+ "000000132, 161.8000",
+ "000000180, 135.2000",
+ "000000232, 143.0000",
+ "000000249, 125.0000",
+ "000000266, 183.1900"
+ ],
+ "sql_execute_result": [
+ [
+ "000000046",
+ "139.0000"
+ ],
+ [
+ "000000066",
+ "162.2000"
+ ],
+ [
+ "000000081",
+ "183.5900"
+ ],
+ [
+ "000000088",
+ "168.8000"
+ ],
+ [
+ "000000132",
+ "161.8000"
+ ],
+ [
+ "000000180",
+ "135.2000"
+ ],
+ [
+ "000000232",
+ "143.0000"
+ ],
+ [
+ "000000249",
+ "125.0000"
+ ],
+ [
+ "000000266",
+ "183.1900"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews written by the user with the nickname 'Dorcas'.",
+ "sql": "SELECT title, detail FROM review_detail WHERE nickname = 'Dorcas';",
+ "answer": [
+ "So, so awesome. Great Support!",
+ "So, so awesome. Great Support! I just can't wait for the day that I'm comfortable enough with my midriff to wear this sans shirt, because the pattern is really cute!!"
+ ],
+ "sql_execute_result": [
+ [
+ "So, so awesome. Great Support!",
+ "So, so awesome. Great Support! I just can't wait for the day that I'm comfortable enough with my midriff to wear this sans shirt, because the pattern is really cute!!"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are there for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Find all regions in the country with ISO2 code 'PE'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id IN (1002, 995) AND locale = 'en_US';",
+ "answer": [
+ "Hu\u00e1nuco",
+ "Madre de Dios"
+ ],
+ "sql_execute_result": [
+ [
+ "Hu\u00e1nuco"
+ ],
+ [
+ "Madre de Dios"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "List all products shipped with the order item ID 1575.",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE order_item_id = 1575;",
+ "answer": [
+ "Troy Yoga Short",
+ "MSH09-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short",
+ "MSH09-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for the review ID 129?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 129;",
+ "answer": [
+ "I feel awesome when I wear this"
+ ],
+ "sql_execute_result": [
+ [
+ "I feel awesome when I wear this"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of the shipment with ID 2.",
+ "sql": "SELECT weight FROM sales_shipment_item WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the best-selling product in March 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-03-01' AND store_id = 0 LIMIT 1;",
+ "answer": [
+ "Impulse Duffle"
+ ],
+ "sql_execute_result": [
+ [
+ "Impulse Duffle"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were returned for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank' AND store_id = 1;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status ID 2 in the review status table?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been created for order ID 1?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE order_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status code 'pending_payment'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "Which product had the highest rating position in December 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-12-01' AND store_id = 0 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "Did the search query 'nike' return any results?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike' AND store_id = 1;",
+ "answer": [
+ "No, the search query 'nike' did not return any results."
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped in the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID of the best-selling product in April 2022.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-04-01' AND store_id = 1 LIMIT 1;",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ 20
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score of the search query 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag' AND store_id = 1;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 1903?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1903;",
+ "answer": [
+ "WP13"
+ ],
+ "sql_execute_result": [
+ [
+ "WP13"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer placed the order with ID 122?",
+ "sql": "SELECT customer_id FROM sales_order WHERE entity_id = 122;",
+ "answer": [
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ 36
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in order with ID 166?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE order_id = 166;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH03-L-Purple'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WH03-L-Purple';",
+ "answer": [
+ "Autumn Pullie",
+ "Autumn Pullie-L-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Autumn Pullie"
+ ],
+ [
+ "Autumn Pullie-L-Purple"
+ ],
+ [
+ "Autumn Pullie"
+ ],
+ [
+ "Autumn Pullie-L-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many items are in stock for product with ID 1903?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1903;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the discount percentage applied to the product 'Portia Capri'.",
+ "sql": "SELECT discount_percent FROM sales_order_item WHERE sku = 'WP13-28-Orange';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order ID 125?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 125;",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who placed the order with ID 122?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 122;",
+ "answer": [
+ "alexander.thomas@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products belong to category with ID 40?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 40;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What are the rating codes available in the system?",
+ "sql": "SELECT rating_code FROM rating;",
+ "answer": [
+ "Price",
+ "Quality",
+ "Rating",
+ "Value"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ],
+ [
+ "Quality"
+ ],
+ [
+ "Rating"
+ ],
+ [
+ "Value"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are pending approval?",
+ "sql": "SELECT COUNT(*) FROM review WHERE status_id = (SELECT status_id FROM review_status WHERE status_code = 'pending');",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 25?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 305 AND stock_id = 1;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the best-selling product in January 2022 in the main website store?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE period = '2022-01-01' AND store_id = 0 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with the email 'customer5@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer5@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were refunded in the main website store?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE store_id = 0 AND base_total_refunded > 0;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total revenue from orders placed in 2023 in all stores?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE created_at BETWEEN '2023-01-01' AND '2023-12-31';",
+ "answer": [
+ "12783.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "12783.4000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a rating value of 5 in their reviews?",
+ "sql": "SELECT DISTINCT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id IN (SELECT entity_pk_value FROM rating_option_vote WHERE value = 5);",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Didi Sport Watch"
+ ],
+ [
+ "Wayfarer Messenger Bag"
+ ],
+ [
+ "Go-Get'r Pushup Grips"
+ ],
+ [
+ "Impulse Duffle"
+ ],
+ [
+ "Zing Jump Rope"
+ ],
+ [
+ "Strive Shoulder Pack"
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit "
+ ],
+ [
+ "Rival Field Messenger"
+ ],
+ [
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Dual Handle Cardio Ball"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the decimal attribute value for product entity ID 159 with attribute ID 82.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 159 AND attribute_id = 82;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO 3 code for the country with ISO 2 code 'IE'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'IE';",
+ "answer": [
+ "IRL"
+ ],
+ "sql_execute_result": [
+ [
+ "IRL"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are in the locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE locale = 'en_US';",
+ "answer": [
+ "1121"
+ ],
+ "sql_execute_result": [
+ [
+ "Alabama"
+ ],
+ [
+ "Alaska"
+ ],
+ [
+ "American Samoa"
+ ],
+ [
+ "Arizona"
+ ],
+ [
+ "Arkansas"
+ ],
+ [
+ "Armed Forces Africa"
+ ],
+ [
+ "Armed Forces Americas"
+ ],
+ [
+ "Armed Forces Canada"
+ ],
+ [
+ "Armed Forces Europe"
+ ],
+ [
+ "Armed Forces Middle East"
+ ],
+ [
+ "Armed Forces Pacific"
+ ],
+ [
+ "California"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Connecticut"
+ ],
+ [
+ "Delaware"
+ ],
+ [
+ "District of Columbia"
+ ],
+ [
+ "Federated States Of Micronesia"
+ ],
+ [
+ "Florida"
+ ],
+ [
+ "Georgia"
+ ],
+ [
+ "Guam"
+ ],
+ [
+ "Hawaii"
+ ],
+ [
+ "Idaho"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Indiana"
+ ],
+ [
+ "Iowa"
+ ],
+ [
+ "Kansas"
+ ],
+ [
+ "Kentucky"
+ ],
+ [
+ "Louisiana"
+ ],
+ [
+ "Maine"
+ ],
+ [
+ "Marshall Islands"
+ ],
+ [
+ "Maryland"
+ ],
+ [
+ "Massachusetts"
+ ],
+ [
+ "Michigan"
+ ],
+ [
+ "Minnesota"
+ ],
+ [
+ "Mississippi"
+ ],
+ [
+ "Missouri"
+ ],
+ [
+ "Montana"
+ ],
+ [
+ "Nebraska"
+ ],
+ [
+ "Nevada"
+ ],
+ [
+ "New Hampshire"
+ ],
+ [
+ "New Jersey"
+ ],
+ [
+ "New Mexico"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "North Carolina"
+ ],
+ [
+ "North Dakota"
+ ],
+ [
+ "Northern Mariana Islands"
+ ],
+ [
+ "Ohio"
+ ],
+ [
+ "Oklahoma"
+ ],
+ [
+ "Oregon"
+ ],
+ [
+ "Palau"
+ ],
+ [
+ "Pennsylvania"
+ ],
+ [
+ "Puerto Rico"
+ ],
+ [
+ "Rhode Island"
+ ],
+ [
+ "South Carolina"
+ ],
+ [
+ "South Dakota"
+ ],
+ [
+ "Tennessee"
+ ],
+ [
+ "Texas"
+ ],
+ [
+ "Utah"
+ ],
+ [
+ "Vermont"
+ ],
+ [
+ "Virgin Islands"
+ ],
+ [
+ "Virginia"
+ ],
+ [
+ "Washington"
+ ],
+ [
+ "West Virginia"
+ ],
+ [
+ "Wisconsin"
+ ],
+ [
+ "Wyoming"
+ ],
+ [
+ "Alberta"
+ ],
+ [
+ "British Columbia"
+ ],
+ [
+ "Manitoba"
+ ],
+ [
+ "Newfoundland and Labrador"
+ ],
+ [
+ "New Brunswick"
+ ],
+ [
+ "Nova Scotia"
+ ],
+ [
+ "Northwest Territories"
+ ],
+ [
+ "Nunavut"
+ ],
+ [
+ "Ontario"
+ ],
+ [
+ "Prince Edward Island"
+ ],
+ [
+ "Quebec"
+ ],
+ [
+ "Saskatchewan"
+ ],
+ [
+ "Yukon Territory"
+ ],
+ [
+ "Niedersachsen"
+ ],
+ [
+ "Baden-W\u00fcrttemberg"
+ ],
+ [
+ "Bayern"
+ ],
+ [
+ "Berlin"
+ ],
+ [
+ "Brandenburg"
+ ],
+ [
+ "Bremen"
+ ],
+ [
+ "Hamburg"
+ ],
+ [
+ "Hessen"
+ ],
+ [
+ "Mecklenburg-Vorpommern"
+ ],
+ [
+ "Nordrhein-Westfalen"
+ ],
+ [
+ "Rheinland-Pfalz"
+ ],
+ [
+ "Saarland"
+ ],
+ [
+ "Sachsen"
+ ],
+ [
+ "Sachsen-Anhalt"
+ ],
+ [
+ "Schleswig-Holstein"
+ ],
+ [
+ "Th\u00fcringen"
+ ],
+ [
+ "Wien"
+ ],
+ [
+ "Nieder\u00f6sterreich"
+ ],
+ [
+ "Ober\u00f6sterreich"
+ ],
+ [
+ "Salzburg"
+ ],
+ [
+ "K\u00e4rnten"
+ ],
+ [
+ "Steiermark"
+ ],
+ [
+ "Tirol"
+ ],
+ [
+ "Burgenland"
+ ],
+ [
+ "Vorarlberg"
+ ],
+ [
+ "Aargau"
+ ],
+ [
+ "Appenzell Innerrhoden"
+ ],
+ [
+ "Appenzell Ausserrhoden"
+ ],
+ [
+ "Bern"
+ ],
+ [
+ "Basel-Landschaft"
+ ],
+ [
+ "Basel-Stadt"
+ ],
+ [
+ "Friburg"
+ ],
+ [
+ "Geneva"
+ ],
+ [
+ "Glarus"
+ ],
+ [
+ "Graub\u00fcnden"
+ ],
+ [
+ "Jura"
+ ],
+ [
+ "Lucerne"
+ ],
+ [
+ "Neuch\u00e2tel"
+ ],
+ [
+ "Nidwalden"
+ ],
+ [
+ "Obwalden"
+ ],
+ [
+ "St. Gallen"
+ ],
+ [
+ "Schaffhausen"
+ ],
+ [
+ "Solothurn"
+ ],
+ [
+ "Schwyz"
+ ],
+ [
+ "Thurgau"
+ ],
+ [
+ "Ticino"
+ ],
+ [
+ "Uri"
+ ],
+ [
+ "Vaud"
+ ],
+ [
+ "Wallis"
+ ],
+ [
+ "Zug"
+ ],
+ [
+ "Z\u00fcrich"
+ ],
+ [
+ "A Coru\u00f1a"
+ ],
+ [
+ "Alava"
+ ],
+ [
+ "Albacete"
+ ],
+ [
+ "Alicante"
+ ],
+ [
+ "Almeria"
+ ],
+ [
+ "Asturias"
+ ],
+ [
+ "Avila"
+ ],
+ [
+ "Badajoz"
+ ],
+ [
+ "Baleares"
+ ],
+ [
+ "Barcelona"
+ ],
+ [
+ "Burgos"
+ ],
+ [
+ "Caceres"
+ ],
+ [
+ "Cadiz"
+ ],
+ [
+ "Cantabria"
+ ],
+ [
+ "Castellon"
+ ],
+ [
+ "Ceuta"
+ ],
+ [
+ "Ciudad Real"
+ ],
+ [
+ "Cordoba"
+ ],
+ [
+ "Cuenca"
+ ],
+ [
+ "Girona"
+ ],
+ [
+ "Granada"
+ ],
+ [
+ "Guadalajara"
+ ],
+ [
+ "Guipuzcoa"
+ ],
+ [
+ "Huelva"
+ ],
+ [
+ "Huesca"
+ ],
+ [
+ "Jaen"
+ ],
+ [
+ "La Rioja"
+ ],
+ [
+ "Las Palmas"
+ ],
+ [
+ "Leon"
+ ],
+ [
+ "Lleida"
+ ],
+ [
+ "Lugo"
+ ],
+ [
+ "Madrid"
+ ],
+ [
+ "Malaga"
+ ],
+ [
+ "Melilla"
+ ],
+ [
+ "Murcia"
+ ],
+ [
+ "Navarra"
+ ],
+ [
+ "Ourense"
+ ],
+ [
+ "Palencia"
+ ],
+ [
+ "Pontevedra"
+ ],
+ [
+ "Salamanca"
+ ],
+ [
+ "Santa Cruz de Tenerife"
+ ],
+ [
+ "Segovia"
+ ],
+ [
+ "Sevilla"
+ ],
+ [
+ "Soria"
+ ],
+ [
+ "Tarragona"
+ ],
+ [
+ "Teruel"
+ ],
+ [
+ "Toledo"
+ ],
+ [
+ "Valencia"
+ ],
+ [
+ "Valladolid"
+ ],
+ [
+ "Vizcaya"
+ ],
+ [
+ "Zamora"
+ ],
+ [
+ "Zaragoza"
+ ],
+ [
+ "Ain"
+ ],
+ [
+ "Aisne"
+ ],
+ [
+ "Allier"
+ ],
+ [
+ "Alpes-de-Haute-Provence"
+ ],
+ [
+ "Hautes-Alpes"
+ ],
+ [
+ "Alpes-Maritimes"
+ ],
+ [
+ "Ard\u00e8che"
+ ],
+ [
+ "Ardennes"
+ ],
+ [
+ "Ari\u00e8ge"
+ ],
+ [
+ "Aube"
+ ],
+ [
+ "Aude"
+ ],
+ [
+ "Aveyron"
+ ],
+ [
+ "Bouches-du-Rh\u00f4ne"
+ ],
+ [
+ "Calvados"
+ ],
+ [
+ "Cantal"
+ ],
+ [
+ "Charente"
+ ],
+ [
+ "Charente-Maritime"
+ ],
+ [
+ "Cher"
+ ],
+ [
+ "Corr\u00e8ze"
+ ],
+ [
+ "Corse-du-Sud"
+ ],
+ [
+ "Haute-Corse"
+ ],
+ [
+ "C\u00f4te-d'Or"
+ ],
+ [
+ "C\u00f4tes-d'Armor"
+ ],
+ [
+ "Creuse"
+ ],
+ [
+ "Dordogne"
+ ],
+ [
+ "Doubs"
+ ],
+ [
+ "Dr\u00f4me"
+ ],
+ [
+ "Eure"
+ ],
+ [
+ "Eure-et-Loir"
+ ],
+ [
+ "Finist\u00e8re"
+ ],
+ [
+ "Gard"
+ ],
+ [
+ "Haute-Garonne"
+ ],
+ [
+ "Gers"
+ ],
+ [
+ "Gironde"
+ ],
+ [
+ "H\u00e9rault"
+ ],
+ [
+ "Ille-et-Vilaine"
+ ],
+ [
+ "Indre"
+ ],
+ [
+ "Indre-et-Loire"
+ ],
+ [
+ "Is\u00e8re"
+ ],
+ [
+ "Jura"
+ ],
+ [
+ "Landes"
+ ],
+ [
+ "Loir-et-Cher"
+ ],
+ [
+ "Loire"
+ ],
+ [
+ "Haute-Loire"
+ ],
+ [
+ "Loire-Atlantique"
+ ],
+ [
+ "Loiret"
+ ],
+ [
+ "Lot"
+ ],
+ [
+ "Lot-et-Garonne"
+ ],
+ [
+ "Loz\u00e8re"
+ ],
+ [
+ "Maine-et-Loire"
+ ],
+ [
+ "Manche"
+ ],
+ [
+ "Marne"
+ ],
+ [
+ "Haute-Marne"
+ ],
+ [
+ "Mayenne"
+ ],
+ [
+ "Meurthe-et-Moselle"
+ ],
+ [
+ "Meuse"
+ ],
+ [
+ "Morbihan"
+ ],
+ [
+ "Moselle"
+ ],
+ [
+ "Ni\u00e8vre"
+ ],
+ [
+ "Nord"
+ ],
+ [
+ "Oise"
+ ],
+ [
+ "Orne"
+ ],
+ [
+ "Pas-de-Calais"
+ ],
+ [
+ "Puy-de-D\u00f4me"
+ ],
+ [
+ "Pyr\u00e9n\u00e9es-Atlantiques"
+ ],
+ [
+ "Hautes-Pyr\u00e9n\u00e9es"
+ ],
+ [
+ "Pyr\u00e9n\u00e9es-Orientales"
+ ],
+ [
+ "Bas-Rhin"
+ ],
+ [
+ "Haut-Rhin"
+ ],
+ [
+ "Rh\u00f4ne"
+ ],
+ [
+ "Haute-Sa\u00f4ne"
+ ],
+ [
+ "Sa\u00f4ne-et-Loire"
+ ],
+ [
+ "Sarthe"
+ ],
+ [
+ "Savoie"
+ ],
+ [
+ "Haute-Savoie"
+ ],
+ [
+ "Paris"
+ ],
+ [
+ "Seine-Maritime"
+ ],
+ [
+ "Seine-et-Marne"
+ ],
+ [
+ "Yvelines"
+ ],
+ [
+ "Deux-S\u00e8vres"
+ ],
+ [
+ "Somme"
+ ],
+ [
+ "Tarn"
+ ],
+ [
+ "Tarn-et-Garonne"
+ ],
+ [
+ "Var"
+ ],
+ [
+ "Vaucluse"
+ ],
+ [
+ "Vend\u00e9e"
+ ],
+ [
+ "Vienne"
+ ],
+ [
+ "Haute-Vienne"
+ ],
+ [
+ "Vosges"
+ ],
+ [
+ "Yonne"
+ ],
+ [
+ "Territoire-de-Belfort"
+ ],
+ [
+ "Essonne"
+ ],
+ [
+ "Hauts-de-Seine"
+ ],
+ [
+ "Seine-Saint-Denis"
+ ],
+ [
+ "Val-de-Marne"
+ ],
+ [
+ "Val-d'Oise"
+ ],
+ [
+ "Alba"
+ ],
+ [
+ "Arad"
+ ],
+ [
+ "Arge\u015f"
+ ],
+ [
+ "Bac\u0103u"
+ ],
+ [
+ "Bihor"
+ ],
+ [
+ "Bistri\u0163a-N\u0103s\u0103ud"
+ ],
+ [
+ "Boto\u015fani"
+ ],
+ [
+ "Bra\u015fov"
+ ],
+ [
+ "Br\u0103ila"
+ ],
+ [
+ "Bucure\u015fti"
+ ],
+ [
+ "Buz\u0103u"
+ ],
+ [
+ "Cara\u015f-Severin"
+ ],
+ [
+ "C\u0103l\u0103ra\u015fi"
+ ],
+ [
+ "Cluj"
+ ],
+ [
+ "Constan\u0163a"
+ ],
+ [
+ "Covasna"
+ ],
+ [
+ "D\u00e2mbovi\u0163a"
+ ],
+ [
+ "Dolj"
+ ],
+ [
+ "Gala\u0163i"
+ ],
+ [
+ "Giurgiu"
+ ],
+ [
+ "Gorj"
+ ],
+ [
+ "Harghita"
+ ],
+ [
+ "Hunedoara"
+ ],
+ [
+ "Ialomi\u0163a"
+ ],
+ [
+ "Ia\u015fi"
+ ],
+ [
+ "Ilfov"
+ ],
+ [
+ "Maramure\u015f"
+ ],
+ [
+ "Mehedin\u0163i"
+ ],
+ [
+ "Mure\u015f"
+ ],
+ [
+ "Neam\u0163"
+ ],
+ [
+ "Olt"
+ ],
+ [
+ "Prahova"
+ ],
+ [
+ "Satu-Mare"
+ ],
+ [
+ "S\u0103laj"
+ ],
+ [
+ "Sibiu"
+ ],
+ [
+ "Suceava"
+ ],
+ [
+ "Teleorman"
+ ],
+ [
+ "Timi\u015f"
+ ],
+ [
+ "Tulcea"
+ ],
+ [
+ "Vaslui"
+ ],
+ [
+ "V\u00e2lcea"
+ ],
+ [
+ "Vrancea"
+ ],
+ [
+ "Lappi"
+ ],
+ [
+ "Pohjois-Pohjanmaa"
+ ],
+ [
+ "Kainuu"
+ ],
+ [
+ "Pohjois-Karjala"
+ ],
+ [
+ "Pohjois-Savo"
+ ],
+ [
+ "Etel\u00e4-Savo"
+ ],
+ [
+ "Etel\u00e4-Pohjanmaa"
+ ],
+ [
+ "Pohjanmaa"
+ ],
+ [
+ "Pirkanmaa"
+ ],
+ [
+ "Satakunta"
+ ],
+ [
+ "Keski-Pohjanmaa"
+ ],
+ [
+ "Keski-Suomi"
+ ],
+ [
+ "Varsinais-Suomi"
+ ],
+ [
+ "Etel\u00e4-Karjala"
+ ],
+ [
+ "P\u00e4ij\u00e4t-H\u00e4me"
+ ],
+ [
+ "Kanta-H\u00e4me"
+ ],
+ [
+ "Uusimaa"
+ ],
+ [
+ "It\u00e4-Uusimaa"
+ ],
+ [
+ "Kymenlaakso"
+ ],
+ [
+ "Ahvenanmaa"
+ ],
+ [
+ "Harjumaa"
+ ],
+ [
+ "Hiiumaa"
+ ],
+ [
+ "Ida-Virumaa"
+ ],
+ [
+ "J\u00f5gevamaa"
+ ],
+ [
+ "J\u00e4rvamaa"
+ ],
+ [
+ "L\u00e4\u00e4nemaa"
+ ],
+ [
+ "L\u00e4\u00e4ne-Virumaa"
+ ],
+ [
+ "P\u00f5lvamaa"
+ ],
+ [
+ "P\u00e4rnumaa"
+ ],
+ [
+ "Raplamaa"
+ ],
+ [
+ "Saaremaa"
+ ],
+ [
+ "Tartumaa"
+ ],
+ [
+ "Valgamaa"
+ ],
+ [
+ "Viljandimaa"
+ ],
+ [
+ "V\u00f5rumaa"
+ ],
+ [
+ "Daugavpils"
+ ],
+ [
+ "Jelgava"
+ ],
+ [
+ "J\u0113kabpils"
+ ],
+ [
+ "J\u016brmala"
+ ],
+ [
+ "Liep\u0101ja"
+ ],
+ [
+ "Liep\u0101jas novads"
+ ],
+ [
+ "R\u0113zekne"
+ ],
+ [
+ "R\u012bga"
+ ],
+ [
+ "R\u012bgas novads"
+ ],
+ [
+ "Valmiera"
+ ],
+ [
+ "Ventspils"
+ ],
+ [
+ "Aglonas novads"
+ ],
+ [
+ "Aizkraukles novads"
+ ],
+ [
+ "Aizputes novads"
+ ],
+ [
+ "Akn\u012bstes novads"
+ ],
+ [
+ "Alojas novads"
+ ],
+ [
+ "Alsungas novads"
+ ],
+ [
+ "Al\u016bksnes novads"
+ ],
+ [
+ "Amatas novads"
+ ],
+ [
+ "Apes novads"
+ ],
+ [
+ "Auces novads"
+ ],
+ [
+ "Bab\u012btes novads"
+ ],
+ [
+ "Baldones novads"
+ ],
+ [
+ "Baltinavas novads"
+ ],
+ [
+ "Balvu novads"
+ ],
+ [
+ "Bauskas novads"
+ ],
+ [
+ "Bever\u012bnas novads"
+ ],
+ [
+ "Broc\u0113nu novads"
+ ],
+ [
+ "Burtnieku novads"
+ ],
+ [
+ "Carnikavas novads"
+ ],
+ [
+ "Cesvaines novads"
+ ],
+ [
+ "Ciblas novads"
+ ],
+ [
+ "C\u0113su novads"
+ ],
+ [
+ "Dagdas novads"
+ ],
+ [
+ "Daugavpils novads"
+ ],
+ [
+ "Dobeles novads"
+ ],
+ [
+ "Dundagas novads"
+ ],
+ [
+ "Durbes novads"
+ ],
+ [
+ "Engures novads"
+ ],
+ [
+ "Garkalnes novads"
+ ],
+ [
+ "Grobi\u0146as novads"
+ ],
+ [
+ "Gulbenes novads"
+ ],
+ [
+ "Iecavas novads"
+ ],
+ [
+ "Ik\u0161\u0137iles novads"
+ ],
+ [
+ "Il\u016bkstes novads"
+ ],
+ [
+ "In\u010dukalna novads"
+ ],
+ [
+ "Jaunjelgavas novads"
+ ],
+ [
+ "Jaunpiebalgas novads"
+ ],
+ [
+ "Jaunpils novads"
+ ],
+ [
+ "Jelgavas novads"
+ ],
+ [
+ "J\u0113kabpils novads"
+ ],
+ [
+ "Kandavas novads"
+ ],
+ [
+ "Kokneses novads"
+ ],
+ [
+ "Krimuldas novads"
+ ],
+ [
+ "Krustpils novads"
+ ],
+ [
+ "Kr\u0101slavas novads"
+ ],
+ [
+ "Kuld\u012bgas novads"
+ ],
+ [
+ "K\u0101rsavas novads"
+ ],
+ [
+ "Lielv\u0101rdes novads"
+ ],
+ [
+ "Limba\u017eu novads"
+ ],
+ [
+ "Lub\u0101nas novads"
+ ],
+ [
+ "Ludzas novads"
+ ],
+ [
+ "L\u012bgatnes novads"
+ ],
+ [
+ "L\u012bv\u0101nu novads"
+ ],
+ [
+ "Madonas novads"
+ ],
+ [
+ "Mazsalacas novads"
+ ],
+ [
+ "M\u0101lpils novads"
+ ],
+ [
+ "M\u0101rupes novads"
+ ],
+ [
+ "Nauk\u0161\u0113nu novads"
+ ],
+ [
+ "Neretas novads"
+ ],
+ [
+ "N\u012bcas novads"
+ ],
+ [
+ "Ogres novads"
+ ],
+ [
+ "Olaines novads"
+ ],
+ [
+ "Ozolnieku novads"
+ ],
+ [
+ "Prei\u013cu novads"
+ ],
+ [
+ "Priekules novads"
+ ],
+ [
+ "Prieku\u013cu novads"
+ ],
+ [
+ "P\u0101rgaujas novads"
+ ],
+ [
+ "P\u0101vilostas novads"
+ ],
+ [
+ "P\u013cavi\u0146u novads"
+ ],
+ [
+ "Raunas novads"
+ ],
+ [
+ "Riebi\u0146u novads"
+ ],
+ [
+ "Rojas novads"
+ ],
+ [
+ "Ropa\u017eu novads"
+ ],
+ [
+ "Rucavas novads"
+ ],
+ [
+ "Rug\u0101ju novads"
+ ],
+ [
+ "Rund\u0101les novads"
+ ],
+ [
+ "R\u0113zeknes novads"
+ ],
+ [
+ "R\u016bjienas novads"
+ ],
+ [
+ "Salacgr\u012bvas novads"
+ ],
+ [
+ "Salas novads"
+ ],
+ [
+ "Salaspils novads"
+ ],
+ [
+ "Saldus novads"
+ ],
+ [
+ "Saulkrastu novads"
+ ],
+ [
+ "Siguldas novads"
+ ],
+ [
+ "Skrundas novads"
+ ],
+ [
+ "Skr\u012bveru novads"
+ ],
+ [
+ "Smiltenes novads"
+ ],
+ [
+ "Stopi\u0146u novads"
+ ],
+ [
+ "Stren\u010du novads"
+ ],
+ [
+ "S\u0113jas novads"
+ ],
+ [
+ "Talsu novads"
+ ],
+ [
+ "Tukuma novads"
+ ],
+ [
+ "T\u0113rvetes novads"
+ ],
+ [
+ "Vai\u0146odes novads"
+ ],
+ [
+ "Valkas novads"
+ ],
+ [
+ "Valmieras novads"
+ ],
+ [
+ "Varak\u013c\u0101nu novads"
+ ],
+ [
+ "Vecpiebalgas novads"
+ ],
+ [
+ "Vecumnieku novads"
+ ],
+ [
+ "Ventspils novads"
+ ],
+ [
+ "Vies\u012btes novads"
+ ],
+ [
+ "Vi\u013cakas novads"
+ ],
+ [
+ "Vi\u013c\u0101nu novads"
+ ],
+ [
+ "V\u0101rkavas novads"
+ ],
+ [
+ "Zilupes novads"
+ ],
+ [
+ "\u0100da\u017eu novads"
+ ],
+ [
+ "\u0112rg\u013cu novads"
+ ],
+ [
+ "\u0136eguma novads"
+ ],
+ [
+ "\u0136ekavas novads"
+ ],
+ [
+ "Alytaus Apskritis"
+ ],
+ [
+ "Kauno Apskritis"
+ ],
+ [
+ "Klaip\u0117dos Apskritis"
+ ],
+ [
+ "Marijampol\u0117s Apskritis"
+ ],
+ [
+ "Panev\u0117\u017eio Apskritis"
+ ],
+ [
+ "\u0160iauli\u0173 Apskritis"
+ ],
+ [
+ "Taurag\u0117s Apskritis"
+ ],
+ [
+ "Tel\u0161i\u0173 Apskritis"
+ ],
+ [
+ "Utenos Apskritis"
+ ],
+ [
+ "Vilniaus Apskritis"
+ ],
+ [
+ "Acre"
+ ],
+ [
+ "Alagoas"
+ ],
+ [
+ "Amap\u00e1"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Bahia"
+ ],
+ [
+ "Cear\u00e1"
+ ],
+ [
+ "Esp\u00edrito Santo"
+ ],
+ [
+ "Goi\u00e1s"
+ ],
+ [
+ "Maranh\u00e3o"
+ ],
+ [
+ "Mato Grosso"
+ ],
+ [
+ "Mato Grosso do Sul"
+ ],
+ [
+ "Minas Gerais"
+ ],
+ [
+ "Par\u00e1"
+ ],
+ [
+ "Para\u00edba"
+ ],
+ [
+ "Paran\u00e1"
+ ],
+ [
+ "Pernambuco"
+ ],
+ [
+ "Piau\u00ed"
+ ],
+ [
+ "Rio de Janeiro"
+ ],
+ [
+ "Rio Grande do Norte"
+ ],
+ [
+ "Rio Grande do Sul"
+ ],
+ [
+ "Rond\u00f4nia"
+ ],
+ [
+ "Roraima"
+ ],
+ [
+ "Santa Catarina"
+ ],
+ [
+ "S\u00e3o Paulo"
+ ],
+ [
+ "Sergipe"
+ ],
+ [
+ "Tocantins"
+ ],
+ [
+ "Distrito Federal"
+ ],
+ [
+ "Berat"
+ ],
+ [
+ "Dib\u00ebr"
+ ],
+ [
+ "Durr\u00ebs"
+ ],
+ [
+ "Elbasan"
+ ],
+ [
+ "Fier"
+ ],
+ [
+ "Gjirokast\u00ebr"
+ ],
+ [
+ "Kor\u00e7\u00eb"
+ ],
+ [
+ "Kuk\u00ebs"
+ ],
+ [
+ "Lezh\u00eb"
+ ],
+ [
+ "Shkod\u00ebr"
+ ],
+ [
+ "Tiran\u00eb"
+ ],
+ [
+ "Vlor\u00eb"
+ ],
+ [
+ "Ciudad Aut\u00f3noma de Buenos Aires"
+ ],
+ [
+ "Buenos Aires"
+ ],
+ [
+ "Catamarca"
+ ],
+ [
+ "Chaco"
+ ],
+ [
+ "Chubut"
+ ],
+ [
+ "C\u00f3rdoba"
+ ],
+ [
+ "Corrientes"
+ ],
+ [
+ "Entre R\u00edos"
+ ],
+ [
+ "Formosa"
+ ],
+ [
+ "Jujuy"
+ ],
+ [
+ "La Pampa"
+ ],
+ [
+ "La Rioja"
+ ],
+ [
+ "Mendoza"
+ ],
+ [
+ "Misiones"
+ ],
+ [
+ "Neuqu\u00e9n"
+ ],
+ [
+ "R\u00edo Negro"
+ ],
+ [
+ "Salta"
+ ],
+ [
+ "San Juan"
+ ],
+ [
+ "San Luis"
+ ],
+ [
+ "Santa Cruz"
+ ],
+ [
+ "Santa Fe"
+ ],
+ [
+ "Santiago del Estero"
+ ],
+ [
+ "Tierra del Fuego"
+ ],
+ [
+ "Tucum\u00e1n"
+ ],
+ [
+ "Zagreba\u010dka \u017eupanija"
+ ],
+ [
+ "Krapinsko-zagorska \u017eupanija"
+ ],
+ [
+ "Sisa\u010dko-moslava\u010dka \u017eupanija"
+ ],
+ [
+ "Karlova\u010dka \u017eupanija"
+ ],
+ [
+ "Vara\u017edinska \u017eupanija"
+ ],
+ [
+ "Koprivni\u010dko-kri\u017eeva\u010dka \u017eupanija"
+ ],
+ [
+ "Bjelovarsko-bilogorska \u017eupanija"
+ ],
+ [
+ "Primorsko-goranska \u017eupanija"
+ ],
+ [
+ "Li\u010dko-senjska \u017eupanija"
+ ],
+ [
+ "Viroviti\u010dko-podravska \u017eupanija"
+ ],
+ [
+ "Po\u017ee\u0161ko-slavonska \u017eupanija"
+ ],
+ [
+ "Brodsko-posavska \u017eupanija"
+ ],
+ [
+ "Zadarska \u017eupanija"
+ ],
+ [
+ "Osje\u010dko-baranjska \u017eupanija"
+ ],
+ [
+ "\u0160ibensko-kninska \u017eupanija"
+ ],
+ [
+ "Vukovarsko-srijemska \u017eupanija"
+ ],
+ [
+ "Splitsko-dalmatinska \u017eupanija"
+ ],
+ [
+ "Istarska \u017eupanija"
+ ],
+ [
+ "Dubrova\u010dko-neretvanska \u017eupanija"
+ ],
+ [
+ "Me\u0111imurska \u017eupanija"
+ ],
+ [
+ "Grad Zagreb"
+ ],
+ [
+ "Andaman and Nicobar Islands"
+ ],
+ [
+ "Andhra Pradesh"
+ ],
+ [
+ "Arunachal Pradesh"
+ ],
+ [
+ "Assam"
+ ],
+ [
+ "Bihar"
+ ],
+ [
+ "Chandigarh"
+ ],
+ [
+ "Chhattisgarh"
+ ],
+ [
+ "Dadra and Nagar Haveli"
+ ],
+ [
+ "Daman and Diu"
+ ],
+ [
+ "Delhi"
+ ],
+ [
+ "Goa"
+ ],
+ [
+ "Gujarat"
+ ],
+ [
+ "Haryana"
+ ],
+ [
+ "Himachal Pradesh"
+ ],
+ [
+ "Jammu and Kashmir"
+ ],
+ [
+ "Jharkhand"
+ ],
+ [
+ "Karnataka"
+ ],
+ [
+ "Kerala"
+ ],
+ [
+ "Lakshadweep"
+ ],
+ [
+ "Madhya Pradesh"
+ ],
+ [
+ "Maharashtra"
+ ],
+ [
+ "Manipur"
+ ],
+ [
+ "Meghalaya"
+ ],
+ [
+ "Mizoram"
+ ],
+ [
+ "Nagaland"
+ ],
+ [
+ "Odisha"
+ ],
+ [
+ "Puducherry"
+ ],
+ [
+ "Punjab"
+ ],
+ [
+ "Rajasthan"
+ ],
+ [
+ "Sikkim"
+ ],
+ [
+ "Tamil Nadu"
+ ],
+ [
+ "Telangana"
+ ],
+ [
+ "Tripura"
+ ],
+ [
+ "Uttar Pradesh"
+ ],
+ [
+ "Uttarakhand"
+ ],
+ [
+ "West Bengal"
+ ],
+ [
+ "Australian Capital Territory"
+ ],
+ [
+ "New South Wales"
+ ],
+ [
+ "Victoria"
+ ],
+ [
+ "Queensland"
+ ],
+ [
+ "South Australia"
+ ],
+ [
+ "Tasmania"
+ ],
+ [
+ "Western Australia"
+ ],
+ [
+ "Northern Territory"
+ ],
+ [
+ "Bresckaja voblas\u0107"
+ ],
+ [
+ "Homie\u013askaja voblas\u0107"
+ ],
+ [
+ "Horad Minsk"
+ ],
+ [
+ "Hrodzienskaja voblas\u0107"
+ ],
+ [
+ "Mahilio\u016dskaja voblas\u0107"
+ ],
+ [
+ "Minskaja voblas\u0107"
+ ],
+ [
+ "Viciebskaja voblas\u0107"
+ ],
+ [
+ "Antwerpen"
+ ],
+ [
+ "Brabant wallon"
+ ],
+ [
+ "Brussels-Capital Region"
+ ],
+ [
+ "Hainaut"
+ ],
+ [
+ "Limburg"
+ ],
+ [
+ "Li\u00e8ge"
+ ],
+ [
+ "Luxembourg"
+ ],
+ [
+ "Namur"
+ ],
+ [
+ "Oost-Vlaanderen"
+ ],
+ [
+ "Vlaams-Brabant"
+ ],
+ [
+ "West-Vlaanderen"
+ ],
+ [
+ "Cochabamba"
+ ],
+ [
+ "Chuquisaca"
+ ],
+ [
+ "El Beni"
+ ],
+ [
+ "La Paz"
+ ],
+ [
+ "Oruro"
+ ],
+ [
+ "Pando"
+ ],
+ [
+ "Potos\u00ed"
+ ],
+ [
+ "Santa Cruz"
+ ],
+ [
+ "Tarija"
+ ],
+ [
+ "Blagoevgrad"
+ ],
+ [
+ "Burgas"
+ ],
+ [
+ "Varna"
+ ],
+ [
+ "Veliko Tarnovo"
+ ],
+ [
+ "Vidin"
+ ],
+ [
+ "Vratsa"
+ ],
+ [
+ "Gabrovo"
+ ],
+ [
+ "Dobrich"
+ ],
+ [
+ "Kardzhali"
+ ],
+ [
+ "Kyustendil"
+ ],
+ [
+ "Lovech"
+ ],
+ [
+ "Montana"
+ ],
+ [
+ "Pazardzhik"
+ ],
+ [
+ "Pernik"
+ ],
+ [
+ "Pleven"
+ ],
+ [
+ "Plovdiv"
+ ],
+ [
+ "Razgrad"
+ ],
+ [
+ "Ruse"
+ ],
+ [
+ "Silistra"
+ ],
+ [
+ "Sliven"
+ ],
+ [
+ "Smolyan"
+ ],
+ [
+ "Sofia City"
+ ],
+ [
+ "Sofia Province"
+ ],
+ [
+ "Stara Zagora"
+ ],
+ [
+ "Targovishte"
+ ],
+ [
+ "Haskovo"
+ ],
+ [
+ "Shumen"
+ ],
+ [
+ "Yambol"
+ ],
+ [
+ "Ais\u00e9n del General Carlos Iba\u00f1ez del Campo"
+ ],
+ [
+ "Antofagasta"
+ ],
+ [
+ "Arica y Parinacota"
+ ],
+ [
+ "La Araucan\u00eda"
+ ],
+ [
+ "Atacama"
+ ],
+ [
+ "Biob\u00edo"
+ ],
+ [
+ "Coquimbo"
+ ],
+ [
+ "Libertador General Bernardo O'Higgins"
+ ],
+ [
+ "Los Lagos"
+ ],
+ [
+ "Los R\u00edos"
+ ],
+ [
+ "Magallanes"
+ ],
+ [
+ "Maule"
+ ],
+ [
+ "\u00d1uble"
+ ],
+ [
+ "Regi\u00f3n Metropolitana de Santiago"
+ ],
+ [
+ "Tarapac\u00e1"
+ ],
+ [
+ "Valpara\u00edso"
+ ],
+ [
+ "Anhui Sheng"
+ ],
+ [
+ "Beijing Shi"
+ ],
+ [
+ "Chongqing Shi"
+ ],
+ [
+ "Fujian Sheng"
+ ],
+ [
+ "Gansu Sheng"
+ ],
+ [
+ "Guangdong Sheng"
+ ],
+ [
+ "Guangxi Zhuangzu Zizhiqu"
+ ],
+ [
+ "Guizhou Sheng"
+ ],
+ [
+ "Hainan Sheng"
+ ],
+ [
+ "Hebei Sheng"
+ ],
+ [
+ "Heilongjiang Sheng"
+ ],
+ [
+ "Henan Sheng"
+ ],
+ [
+ "Hong Kong SAR"
+ ],
+ [
+ "Hubei Sheng"
+ ],
+ [
+ "Hunan Sheng"
+ ],
+ [
+ "Jiangsu Sheng"
+ ],
+ [
+ "Jiangxi Sheng"
+ ],
+ [
+ "Jilin Sheng"
+ ],
+ [
+ "Liaoning Sheng"
+ ],
+ [
+ "Macao SAR"
+ ],
+ [
+ "Nei Mongol Zizhiqu"
+ ],
+ [
+ "Ningxia Huizi Zizhiqu"
+ ],
+ [
+ "Qinghai Sheng"
+ ],
+ [
+ "Shaanxi Sheng"
+ ],
+ [
+ "Shandong Sheng"
+ ],
+ [
+ "Shanghai Shi"
+ ],
+ [
+ "Shanxi Sheng"
+ ],
+ [
+ "Sichuan Sheng"
+ ],
+ [
+ "Taiwan Sheng"
+ ],
+ [
+ "Tianjin Shi"
+ ],
+ [
+ "Xinjiang Uygur Zizhiqu"
+ ],
+ [
+ "Xizang Zizhiqu"
+ ],
+ [
+ "Yunnan Sheng"
+ ],
+ [
+ "Zhejiang Sheng"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Antioquia"
+ ],
+ [
+ "Arauca"
+ ],
+ [
+ "Atl\u00e1ntico"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Boyac\u00e1"
+ ],
+ [
+ "Caldas"
+ ],
+ [
+ "Caquet\u00e1"
+ ],
+ [
+ "Casanare"
+ ],
+ [
+ "Cauca"
+ ],
+ [
+ "Cesar"
+ ],
+ [
+ "Choc\u00f3"
+ ],
+ [
+ "C\u00f3rdoba"
+ ],
+ [
+ "Cundinamarca"
+ ],
+ [
+ "Guain\u00eda"
+ ],
+ [
+ "Guaviare"
+ ],
+ [
+ "Huila"
+ ],
+ [
+ "La Guajira"
+ ],
+ [
+ "Magdalena"
+ ],
+ [
+ "Meta"
+ ],
+ [
+ "Nari\u00f1o"
+ ],
+ [
+ "Norte de Santander"
+ ],
+ [
+ "Putumayo"
+ ],
+ [
+ "Quind\u00edo"
+ ],
+ [
+ "Risaralda"
+ ],
+ [
+ "San Andr\u00e9s y Providencia"
+ ],
+ [
+ "Santander"
+ ],
+ [
+ "Sucre"
+ ],
+ [
+ "Tolima"
+ ],
+ [
+ "Valle del Cauca"
+ ],
+ [
+ "Vaup\u00e9s"
+ ],
+ [
+ "Vichada"
+ ],
+ [
+ "Praha, Hlavn\u00ed m\u011bsto"
+ ],
+ [
+ "St\u0159edo\u010desk\u00fd kraj"
+ ],
+ [
+ "Jiho\u010desk\u00fd kraj"
+ ],
+ [
+ "Plze\u0148sk\u00fd kraj"
+ ],
+ [
+ "Karlovarsk\u00fd kraj"
+ ],
+ [
+ "\u00dasteck\u00fd kraj"
+ ],
+ [
+ "Libereck\u00fd kraj"
+ ],
+ [
+ "Kr\u00e1lov\u00e9hradeck\u00fd kraj"
+ ],
+ [
+ "Pardubick\u00fd kraj"
+ ],
+ [
+ "Kraj Vyso\u010dina"
+ ],
+ [
+ "Jihomoravsk\u00fd kraj"
+ ],
+ [
+ "Olomouck\u00fd kraj"
+ ],
+ [
+ "Zl\u00ednsk\u00fd kraj"
+ ],
+ [
+ "Moravskoslezsk\u00fd kraj"
+ ],
+ [
+ "Hovedstaden"
+ ],
+ [
+ "Midtjylland"
+ ],
+ [
+ "Nordjylland"
+ ],
+ [
+ "Sj\u00e6lland"
+ ],
+ [
+ "Syddanmark"
+ ],
+ [
+ "Azuay"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Ca\u00f1ar"
+ ],
+ [
+ "Carchi"
+ ],
+ [
+ "Chimborazo"
+ ],
+ [
+ "Cotopaxi"
+ ],
+ [
+ "El Oro"
+ ],
+ [
+ "Esmeraldas"
+ ],
+ [
+ "Gal\u00e1pagos"
+ ],
+ [
+ "Guayas"
+ ],
+ [
+ "Imbabura"
+ ],
+ [
+ "Loja"
+ ],
+ [
+ "Los R\u00edos"
+ ],
+ [
+ "Manab\u00ed"
+ ],
+ [
+ "Morona Santiago"
+ ],
+ [
+ "Napo"
+ ],
+ [
+ "Orellana"
+ ],
+ [
+ "Pastaza"
+ ],
+ [
+ "Pichincha"
+ ],
+ [
+ "Santa Elena"
+ ],
+ [
+ "Santo Domingo de los Ts\u00e1chilas"
+ ],
+ [
+ "Sucumb\u00edos"
+ ],
+ [
+ "Tungurahua"
+ ],
+ [
+ "Zamora Chinchipe"
+ ],
+ [
+ "Anatolik\u00ed Makedon\u00eda kai Thr\u00e1ki"
+ ],
+ [
+ "Attik\u00ed"
+ ],
+ [
+ "Dytik\u00ed Ell\u00e1da"
+ ],
+ [
+ "Dytik\u00ed Makedon\u00eda"
+ ],
+ [
+ "Ion\u00eda N\u00edsia"
+ ],
+ [
+ "\u00cdpeiros"
+ ],
+ [
+ "Kentrik\u00ed Makedon\u00eda"
+ ],
+ [
+ "Kr\u00edti"
+ ],
+ [
+ "N\u00f3tio Aiga\u00edo"
+ ],
+ [
+ "Pelop\u00f3nnisos"
+ ],
+ [
+ "Stere\u00e1 Ell\u00e1da"
+ ],
+ [
+ "Thessal\u00eda"
+ ],
+ [
+ "V\u00f3reio Aiga\u00edo"
+ ],
+ [
+ "\u00c1gion \u00d3ros"
+ ],
+ [
+ "Barima-Waini"
+ ],
+ [
+ "Cuyuni-Mazaruni"
+ ],
+ [
+ "Demerara-Mahaica"
+ ],
+ [
+ "East Berbice-Corentyne"
+ ],
+ [
+ "Essequibo Islands-West Demerara"
+ ],
+ [
+ "Mahaica-Berbice"
+ ],
+ [
+ "Pomeroon-Supenaam"
+ ],
+ [
+ "Potaro-Siparuni"
+ ],
+ [
+ "Upper Demerara-Berbice"
+ ],
+ [
+ "Upper Takutu-Upper Essequibo"
+ ],
+ [
+ "H\u00f6fu\u00f0borgarsv\u00e6\u00f0i"
+ ],
+ [
+ "Su\u00f0urnes"
+ ],
+ [
+ "Vesturland"
+ ],
+ [
+ "Vestfir\u00f0ir"
+ ],
+ [
+ "Nor\u00f0urland vestra"
+ ],
+ [
+ "Nor\u00f0urland eystra"
+ ],
+ [
+ "Austurland"
+ ],
+ [
+ "Su\u00f0urland"
+ ],
+ [
+ "Agrigento"
+ ],
+ [
+ "Alessandria"
+ ],
+ [
+ "Ancona"
+ ],
+ [
+ "Aosta"
+ ],
+ [
+ "L'Aquila"
+ ],
+ [
+ "Arezzo"
+ ],
+ [
+ "Ascoli-Piceno"
+ ],
+ [
+ "Asti"
+ ],
+ [
+ "Avellino"
+ ],
+ [
+ "Bari"
+ ],
+ [
+ "Barletta-Andria-Trani"
+ ],
+ [
+ "Belluno"
+ ],
+ [
+ "Benevento"
+ ],
+ [
+ "Bergamo"
+ ],
+ [
+ "Biella"
+ ],
+ [
+ "Bologna"
+ ],
+ [
+ "Bolzano"
+ ],
+ [
+ "Brescia"
+ ],
+ [
+ "Brindisi"
+ ],
+ [
+ "Cagliari"
+ ],
+ [
+ "Caltanissetta"
+ ],
+ [
+ "Campobasso"
+ ],
+ [
+ "Carbonia Iglesias"
+ ],
+ [
+ "Caserta"
+ ],
+ [
+ "Catania"
+ ],
+ [
+ "Catanzaro"
+ ],
+ [
+ "Chieti"
+ ],
+ [
+ "Como"
+ ],
+ [
+ "Cosenza"
+ ],
+ [
+ "Cremona"
+ ],
+ [
+ "Crotone"
+ ],
+ [
+ "Cuneo"
+ ],
+ [
+ "Enna"
+ ],
+ [
+ "Fermo"
+ ],
+ [
+ "Ferrara"
+ ],
+ [
+ "Firenze"
+ ],
+ [
+ "Foggia"
+ ],
+ [
+ "Forli-Cesena"
+ ],
+ [
+ "Frosinone"
+ ],
+ [
+ "Genova"
+ ],
+ [
+ "Gorizia"
+ ],
+ [
+ "Grosseto"
+ ],
+ [
+ "Imperia"
+ ],
+ [
+ "Isernia"
+ ],
+ [
+ "La-Spezia"
+ ],
+ [
+ "Latina"
+ ],
+ [
+ "Lecce"
+ ],
+ [
+ "Lecco"
+ ],
+ [
+ "Livorno"
+ ],
+ [
+ "Lodi"
+ ],
+ [
+ "Lucca"
+ ],
+ [
+ "Macerata"
+ ],
+ [
+ "Mantova"
+ ],
+ [
+ "Massa-Carrara"
+ ],
+ [
+ "Matera"
+ ],
+ [
+ "Medio Campidano"
+ ],
+ [
+ "Messina"
+ ],
+ [
+ "Milano"
+ ],
+ [
+ "Modena"
+ ],
+ [
+ "Monza-Brianza"
+ ],
+ [
+ "Napoli"
+ ],
+ [
+ "Novara"
+ ],
+ [
+ "Nuoro"
+ ],
+ [
+ "Ogliastra"
+ ],
+ [
+ "Olbia Tempio"
+ ],
+ [
+ "Oristano"
+ ],
+ [
+ "Padova"
+ ],
+ [
+ "Palermo"
+ ],
+ [
+ "Parma"
+ ],
+ [
+ "Pavia"
+ ],
+ [
+ "Perugia"
+ ],
+ [
+ "Pesaro-Urbino"
+ ],
+ [
+ "Pescara"
+ ],
+ [
+ "Piacenza"
+ ],
+ [
+ "Pisa"
+ ],
+ [
+ "Pistoia"
+ ],
+ [
+ "Pordenone"
+ ],
+ [
+ "Potenza"
+ ],
+ [
+ "Prato"
+ ],
+ [
+ "Ragusa"
+ ],
+ [
+ "Ravenna"
+ ],
+ [
+ "Reggio-Calabria"
+ ],
+ [
+ "Reggio-Emilia"
+ ],
+ [
+ "Rieti"
+ ],
+ [
+ "Rimini"
+ ],
+ [
+ "Roma"
+ ],
+ [
+ "Rovigo"
+ ],
+ [
+ "Salerno"
+ ],
+ [
+ "Sassari"
+ ],
+ [
+ "Savona"
+ ],
+ [
+ "Siena"
+ ],
+ [
+ "Siracusa"
+ ],
+ [
+ "Sondrio"
+ ],
+ [
+ "Taranto"
+ ],
+ [
+ "Teramo"
+ ],
+ [
+ "Terni"
+ ],
+ [
+ "Torino"
+ ],
+ [
+ "Trapani"
+ ],
+ [
+ "Trento"
+ ],
+ [
+ "Treviso"
+ ],
+ [
+ "Trieste"
+ ],
+ [
+ "Udine"
+ ],
+ [
+ "Varese"
+ ],
+ [
+ "Venezia"
+ ],
+ [
+ "Verbania"
+ ],
+ [
+ "Vercelli"
+ ],
+ [
+ "Verona"
+ ],
+ [
+ "Vibo-Valentia"
+ ],
+ [
+ "Vicenza"
+ ],
+ [
+ "Viterbo"
+ ],
+ [
+ "Aguascalientes"
+ ],
+ [
+ "Baja California"
+ ],
+ [
+ "Baja California Sur"
+ ],
+ [
+ "Campeche"
+ ],
+ [
+ "Chiapas"
+ ],
+ [
+ "Chihuahua"
+ ],
+ [
+ "Ciudad de M\u00e9xico"
+ ],
+ [
+ "Coahuila"
+ ],
+ [
+ "Colima"
+ ],
+ [
+ "Durango"
+ ],
+ [
+ "Estado de M\u00e9xico"
+ ],
+ [
+ "Guanajuato"
+ ],
+ [
+ "Guerrero"
+ ],
+ [
+ "Hidalgo"
+ ],
+ [
+ "Jalisco"
+ ],
+ [
+ "Michoac\u00e1n"
+ ],
+ [
+ "Morelos"
+ ],
+ [
+ "Nayarit"
+ ],
+ [
+ "Nuevo Le\u00f3n"
+ ],
+ [
+ "Oaxaca"
+ ],
+ [
+ "Puebla"
+ ],
+ [
+ "Quer\u00e9taro"
+ ],
+ [
+ "Quintana Roo"
+ ],
+ [
+ "San Luis Potos\u00ed"
+ ],
+ [
+ "Sinaloa"
+ ],
+ [
+ "Sonora"
+ ],
+ [
+ "Tabasco"
+ ],
+ [
+ "Tamaulipas"
+ ],
+ [
+ "Tlaxcala"
+ ],
+ [
+ "Veracruz"
+ ],
+ [
+ "Yucat\u00e1n"
+ ],
+ [
+ "Zacatecas"
+ ],
+ [
+ "Asunci\u00f3n"
+ ],
+ [
+ "Alto Paraguay"
+ ],
+ [
+ "Alto Paran\u00e1"
+ ],
+ [
+ "Amambay"
+ ],
+ [
+ "Boquer\u00f3n"
+ ],
+ [
+ "Caaguaz\u00fa"
+ ],
+ [
+ "Caazap\u00e1"
+ ],
+ [
+ "Canindey\u00fa"
+ ],
+ [
+ "Central"
+ ],
+ [
+ "Concepci\u00f3n"
+ ],
+ [
+ "Cordillera"
+ ],
+ [
+ "Guair\u00e1"
+ ],
+ [
+ "Itap\u00faa"
+ ],
+ [
+ "Misiones"
+ ],
+ [
+ "\u00d1eembuc\u00fa"
+ ],
+ [
+ "Paraguar\u00ed"
+ ],
+ [
+ "Presidente Hayes"
+ ],
+ [
+ "San Pedro"
+ ],
+ [
+ "Municipalidad Metropolitana de Lima"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Ancash"
+ ],
+ [
+ "Apur\u00edmac"
+ ],
+ [
+ "Arequipa"
+ ],
+ [
+ "Ayacucho"
+ ],
+ [
+ "Cajamarca"
+ ],
+ [
+ "Cusco"
+ ],
+ [
+ "El Callao"
+ ],
+ [
+ "Huancavelica"
+ ],
+ [
+ "Hu\u00e1nuco"
+ ],
+ [
+ "Ica"
+ ],
+ [
+ "Jun\u00edn"
+ ],
+ [
+ "La Libertad"
+ ],
+ [
+ "Lambayeque"
+ ],
+ [
+ "Lima"
+ ],
+ [
+ "Loreto"
+ ],
+ [
+ "Madre de Dios"
+ ],
+ [
+ "Moquegua"
+ ],
+ [
+ "Pasco"
+ ],
+ [
+ "Piura"
+ ],
+ [
+ "Puno"
+ ],
+ [
+ "San Mart\u00edn"
+ ],
+ [
+ "Tacna"
+ ],
+ [
+ "Tumbes"
+ ],
+ [
+ "Ucayali"
+ ],
+ [
+ "dolno\u015bl\u0105skie"
+ ],
+ [
+ "kujawsko-pomorskie"
+ ],
+ [
+ "lubelskie"
+ ],
+ [
+ "lubuskie"
+ ],
+ [
+ "\u0142\u00f3dzkie"
+ ],
+ [
+ "ma\u0142opolskie"
+ ],
+ [
+ "mazowieckie"
+ ],
+ [
+ "opolskie"
+ ],
+ [
+ "podkarpackie"
+ ],
+ [
+ "podlaskie"
+ ],
+ [
+ "pomorskie"
+ ],
+ [
+ "\u015bl\u0105skie"
+ ],
+ [
+ "\u015bwi\u0119tokrzyskie"
+ ],
+ [
+ "warmi\u0144sko-mazurskie"
+ ],
+ [
+ "wielkopolskie"
+ ],
+ [
+ "zachodniopomorskie"
+ ],
+ [
+ "Aveiro"
+ ],
+ [
+ "Beja"
+ ],
+ [
+ "Braga"
+ ],
+ [
+ "Bragan\u00e7a"
+ ],
+ [
+ "Castelo Branco"
+ ],
+ [
+ "Coimbra"
+ ],
+ [
+ "\u00c9vora"
+ ],
+ [
+ "Faro"
+ ],
+ [
+ "Guarda"
+ ],
+ [
+ "Leiria"
+ ],
+ [
+ "Lisboa"
+ ],
+ [
+ "Portalegre"
+ ],
+ [
+ "Porto"
+ ],
+ [
+ "Santar\u00e9m"
+ ],
+ [
+ "Set\u00fabal"
+ ],
+ [
+ "Viana do Castelo"
+ ],
+ [
+ "Vila Real"
+ ],
+ [
+ "Viseu"
+ ],
+ [
+ "Regi\u00e3o Aut\u00f3noma dos A\u00e7ores"
+ ],
+ [
+ "Regi\u00e3o Aut\u00f3noma da Madeira"
+ ],
+ [
+ "Brokopondo"
+ ],
+ [
+ "Commewijne"
+ ],
+ [
+ "Coronie"
+ ],
+ [
+ "Marowijne"
+ ],
+ [
+ "Nickerie"
+ ],
+ [
+ "Para"
+ ],
+ [
+ "Paramaribo"
+ ],
+ [
+ "Saramacca"
+ ],
+ [
+ "Sipaliwini"
+ ],
+ [
+ "Wanica"
+ ],
+ [
+ "Blekinge l\u00e4n"
+ ],
+ [
+ "Dalarnas l\u00e4n"
+ ],
+ [
+ "Gotlands l\u00e4n"
+ ],
+ [
+ "G\u00e4vleborgs l\u00e4n"
+ ],
+ [
+ "Hallands l\u00e4n"
+ ],
+ [
+ "J\u00e4mtlands l\u00e4n"
+ ],
+ [
+ "J\u00f6nk\u00f6pings l\u00e4n"
+ ],
+ [
+ "Kalmar l\u00e4n"
+ ],
+ [
+ "Kronobergs l\u00e4n"
+ ],
+ [
+ "Norrbottens l\u00e4n"
+ ],
+ [
+ "Sk\u00e5ne l\u00e4n"
+ ],
+ [
+ "Stockholms l\u00e4n"
+ ],
+ [
+ "S\u00f6dermanlands l\u00e4n"
+ ],
+ [
+ "Uppsala l\u00e4n"
+ ],
+ [
+ "V\u00e4rmlands l\u00e4n"
+ ],
+ [
+ "V\u00e4sterbottens l\u00e4n"
+ ],
+ [
+ "V\u00e4sternorrlands l\u00e4n"
+ ],
+ [
+ "V\u00e4stmanlands l\u00e4n"
+ ],
+ [
+ "V\u00e4stra G\u00f6talands l\u00e4n"
+ ],
+ [
+ "\u00d6rebro l\u00e4n"
+ ],
+ [
+ "\u00d6sterg\u00f6tlands l\u00e4n"
+ ],
+ [
+ "Artigas"
+ ],
+ [
+ "Canelones"
+ ],
+ [
+ "Cerro Largo"
+ ],
+ [
+ "Colonia"
+ ],
+ [
+ "Durazno"
+ ],
+ [
+ "Flores"
+ ],
+ [
+ "Florida"
+ ],
+ [
+ "Lavalleja"
+ ],
+ [
+ "Maldonado"
+ ],
+ [
+ "Montevideo"
+ ],
+ [
+ "Paysandu"
+ ],
+ [
+ "R\u00edo Negro"
+ ],
+ [
+ "Rivera"
+ ],
+ [
+ "Rocha"
+ ],
+ [
+ "Salto"
+ ],
+ [
+ "San Jos\u00e9"
+ ],
+ [
+ "Soriano"
+ ],
+ [
+ "Tacuaremb\u00f3"
+ ],
+ [
+ "Treinta y Tres"
+ ],
+ [
+ "Dependencias Federales"
+ ],
+ [
+ "Distrito Capital"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Anzo\u00e1tegui"
+ ],
+ [
+ "Apure"
+ ],
+ [
+ "Aragua"
+ ],
+ [
+ "Barinas"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Carabobo"
+ ],
+ [
+ "Cojedes"
+ ],
+ [
+ "Delta Amacuro"
+ ],
+ [
+ "Falc\u00f3n"
+ ],
+ [
+ "Gu\u00e1rico"
+ ],
+ [
+ "Lara"
+ ],
+ [
+ "M\u00e9rida"
+ ],
+ [
+ "Miranda"
+ ],
+ [
+ "Monagas"
+ ],
+ [
+ "Nueva Esparta"
+ ],
+ [
+ "Portuguesa"
+ ],
+ [
+ "Sucre"
+ ],
+ [
+ "T\u00e1chira"
+ ],
+ [
+ "Trujillo"
+ ],
+ [
+ "Vargas"
+ ],
+ [
+ "Yaracuy"
+ ],
+ [
+ "Zulia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the option ID 87?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 87;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the decimal value for the product entity ID 699 with attribute ID 77.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 699 AND attribute_id = 77;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region ID 166 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 166 AND locale = 'en_US';",
+ "answer": [
+ "Ourense"
+ ],
+ "sql_execute_result": [
+ [
+ "Ourense"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region ID 331 in the 'en_US' locale.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 331 AND locale = 'en_US';",
+ "answer": [
+ "Keski-Suomi"
+ ],
+ "sql_execute_result": [
+ [
+ "Keski-Suomi"
+ ]
+ ]
+ },
+ {
+ "question": "Get the ISO 3 code for the country with country ID 'CF'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'CF';",
+ "answer": [
+ "CAF"
+ ],
+ "sql_execute_result": [
+ [
+ "CAF"
+ ]
+ ]
+ },
+ {
+ "question": "What is the decimal value for the product entity ID 1762 with attribute ID 77?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1762 AND attribute_id = 77;",
+ "answer": [
+ "39.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "39.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'paypal_reversed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled in store 1 on 2023-01-06?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2023-01-06' AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the catalog product entity with ID 1196 and attribute ID 93?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1196 AND attribute_id = 93;",
+ "answer": [
+ "53"
+ ],
+ "sql_execute_result": [
+ [
+ 53
+ ]
+ ]
+ },
+ {
+ "question": "Find the option value for the option ID 104 in the store 0.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 104 AND store_id = 0;",
+ "answer": [
+ "Base Layer"
+ ],
+ "sql_execute_result": [
+ [
+ "Base Layer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status with the label 'On Hold'?",
+ "sql": "SELECT status FROM sales_order_status WHERE label = 'On Hold';",
+ "answer": [
+ "holded"
+ ],
+ "sql_execute_result": [
+ [
+ "holded"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with ID 7 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 7;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on 2023-04-27 in store 0?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE store_id = 0 AND period = '2023-04-27' AND order_status = 'complete';",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many product entity IDs were found for the attribute value 1 with attribute ID 115?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_int WHERE value = 1 AND attribute_id = 115;",
+ "answer": [
+ "1994"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 348
+ ],
+ [
+ 349
+ ],
+ [
+ 350
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ],
+ [
+ 354
+ ],
+ [
+ 355
+ ],
+ [
+ 356
+ ],
+ [
+ 357
+ ],
+ [
+ 358
+ ],
+ [
+ 359
+ ],
+ [
+ 360
+ ],
+ [
+ 361
+ ],
+ [
+ 362
+ ],
+ [
+ 363
+ ],
+ [
+ 364
+ ],
+ [
+ 365
+ ],
+ [
+ 366
+ ],
+ [
+ 367
+ ],
+ [
+ 368
+ ],
+ [
+ 369
+ ],
+ [
+ 370
+ ],
+ [
+ 371
+ ],
+ [
+ 372
+ ],
+ [
+ 373
+ ],
+ [
+ 374
+ ],
+ [
+ 375
+ ],
+ [
+ 376
+ ],
+ [
+ 377
+ ],
+ [
+ 378
+ ],
+ [
+ 379
+ ],
+ [
+ 380
+ ],
+ [
+ 381
+ ],
+ [
+ 382
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 399
+ ],
+ [
+ 400
+ ],
+ [
+ 401
+ ],
+ [
+ 402
+ ],
+ [
+ 403
+ ],
+ [
+ 404
+ ],
+ [
+ 405
+ ],
+ [
+ 406
+ ],
+ [
+ 407
+ ],
+ [
+ 408
+ ],
+ [
+ 409
+ ],
+ [
+ 410
+ ],
+ [
+ 411
+ ],
+ [
+ 412
+ ],
+ [
+ 413
+ ],
+ [
+ 414
+ ],
+ [
+ 415
+ ],
+ [
+ 416
+ ],
+ [
+ 417
+ ],
+ [
+ 418
+ ],
+ [
+ 419
+ ],
+ [
+ 420
+ ],
+ [
+ 421
+ ],
+ [
+ 422
+ ],
+ [
+ 423
+ ],
+ [
+ 424
+ ],
+ [
+ 425
+ ],
+ [
+ 426
+ ],
+ [
+ 427
+ ],
+ [
+ 428
+ ],
+ [
+ 429
+ ],
+ [
+ 430
+ ],
+ [
+ 431
+ ],
+ [
+ 432
+ ],
+ [
+ 433
+ ],
+ [
+ 434
+ ],
+ [
+ 435
+ ],
+ [
+ 436
+ ],
+ [
+ 437
+ ],
+ [
+ 438
+ ],
+ [
+ 439
+ ],
+ [
+ 440
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 443
+ ],
+ [
+ 444
+ ],
+ [
+ 445
+ ],
+ [
+ 446
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 463
+ ],
+ [
+ 464
+ ],
+ [
+ 465
+ ],
+ [
+ 466
+ ],
+ [
+ 467
+ ],
+ [
+ 468
+ ],
+ [
+ 469
+ ],
+ [
+ 470
+ ],
+ [
+ 471
+ ],
+ [
+ 472
+ ],
+ [
+ 473
+ ],
+ [
+ 474
+ ],
+ [
+ 475
+ ],
+ [
+ 476
+ ],
+ [
+ 477
+ ],
+ [
+ 478
+ ],
+ [
+ 479
+ ],
+ [
+ 480
+ ],
+ [
+ 481
+ ],
+ [
+ 482
+ ],
+ [
+ 483
+ ],
+ [
+ 484
+ ],
+ [
+ 485
+ ],
+ [
+ 486
+ ],
+ [
+ 487
+ ],
+ [
+ 488
+ ],
+ [
+ 489
+ ],
+ [
+ 490
+ ],
+ [
+ 491
+ ],
+ [
+ 492
+ ],
+ [
+ 493
+ ],
+ [
+ 494
+ ],
+ [
+ 495
+ ],
+ [
+ 496
+ ],
+ [
+ 497
+ ],
+ [
+ 498
+ ],
+ [
+ 499
+ ],
+ [
+ 500
+ ],
+ [
+ 501
+ ],
+ [
+ 502
+ ],
+ [
+ 503
+ ],
+ [
+ 504
+ ],
+ [
+ 505
+ ],
+ [
+ 506
+ ],
+ [
+ 507
+ ],
+ [
+ 508
+ ],
+ [
+ 509
+ ],
+ [
+ 510
+ ],
+ [
+ 511
+ ],
+ [
+ 512
+ ],
+ [
+ 513
+ ],
+ [
+ 514
+ ],
+ [
+ 515
+ ],
+ [
+ 516
+ ],
+ [
+ 517
+ ],
+ [
+ 518
+ ],
+ [
+ 519
+ ],
+ [
+ 520
+ ],
+ [
+ 521
+ ],
+ [
+ 522
+ ],
+ [
+ 523
+ ],
+ [
+ 524
+ ],
+ [
+ 525
+ ],
+ [
+ 526
+ ],
+ [
+ 527
+ ],
+ [
+ 528
+ ],
+ [
+ 529
+ ],
+ [
+ 530
+ ],
+ [
+ 531
+ ],
+ [
+ 532
+ ],
+ [
+ 533
+ ],
+ [
+ 534
+ ],
+ [
+ 535
+ ],
+ [
+ 536
+ ],
+ [
+ 537
+ ],
+ [
+ 538
+ ],
+ [
+ 539
+ ],
+ [
+ 540
+ ],
+ [
+ 541
+ ],
+ [
+ 542
+ ],
+ [
+ 543
+ ],
+ [
+ 544
+ ],
+ [
+ 545
+ ],
+ [
+ 546
+ ],
+ [
+ 547
+ ],
+ [
+ 548
+ ],
+ [
+ 549
+ ],
+ [
+ 550
+ ],
+ [
+ 551
+ ],
+ [
+ 552
+ ],
+ [
+ 553
+ ],
+ [
+ 554
+ ],
+ [
+ 555
+ ],
+ [
+ 556
+ ],
+ [
+ 557
+ ],
+ [
+ 558
+ ],
+ [
+ 559
+ ],
+ [
+ 560
+ ],
+ [
+ 561
+ ],
+ [
+ 562
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ],
+ [
+ 565
+ ],
+ [
+ 566
+ ],
+ [
+ 567
+ ],
+ [
+ 568
+ ],
+ [
+ 569
+ ],
+ [
+ 570
+ ],
+ [
+ 571
+ ],
+ [
+ 572
+ ],
+ [
+ 573
+ ],
+ [
+ 574
+ ],
+ [
+ 575
+ ],
+ [
+ 576
+ ],
+ [
+ 577
+ ],
+ [
+ 578
+ ],
+ [
+ 579
+ ],
+ [
+ 580
+ ],
+ [
+ 581
+ ],
+ [
+ 582
+ ],
+ [
+ 583
+ ],
+ [
+ 584
+ ],
+ [
+ 585
+ ],
+ [
+ 586
+ ],
+ [
+ 587
+ ],
+ [
+ 588
+ ],
+ [
+ 589
+ ],
+ [
+ 590
+ ],
+ [
+ 591
+ ],
+ [
+ 592
+ ],
+ [
+ 593
+ ],
+ [
+ 594
+ ],
+ [
+ 595
+ ],
+ [
+ 596
+ ],
+ [
+ 597
+ ],
+ [
+ 598
+ ],
+ [
+ 599
+ ],
+ [
+ 600
+ ],
+ [
+ 601
+ ],
+ [
+ 602
+ ],
+ [
+ 603
+ ],
+ [
+ 604
+ ],
+ [
+ 605
+ ],
+ [
+ 606
+ ],
+ [
+ 607
+ ],
+ [
+ 608
+ ],
+ [
+ 609
+ ],
+ [
+ 610
+ ],
+ [
+ 611
+ ],
+ [
+ 612
+ ],
+ [
+ 613
+ ],
+ [
+ 614
+ ],
+ [
+ 615
+ ],
+ [
+ 616
+ ],
+ [
+ 617
+ ],
+ [
+ 618
+ ],
+ [
+ 619
+ ],
+ [
+ 620
+ ],
+ [
+ 621
+ ],
+ [
+ 622
+ ],
+ [
+ 623
+ ],
+ [
+ 624
+ ],
+ [
+ 625
+ ],
+ [
+ 626
+ ],
+ [
+ 627
+ ],
+ [
+ 628
+ ],
+ [
+ 629
+ ],
+ [
+ 630
+ ],
+ [
+ 631
+ ],
+ [
+ 632
+ ],
+ [
+ 633
+ ],
+ [
+ 634
+ ],
+ [
+ 635
+ ],
+ [
+ 636
+ ],
+ [
+ 637
+ ],
+ [
+ 638
+ ],
+ [
+ 639
+ ],
+ [
+ 640
+ ],
+ [
+ 641
+ ],
+ [
+ 642
+ ],
+ [
+ 643
+ ],
+ [
+ 644
+ ],
+ [
+ 645
+ ],
+ [
+ 646
+ ],
+ [
+ 647
+ ],
+ [
+ 648
+ ],
+ [
+ 649
+ ],
+ [
+ 650
+ ],
+ [
+ 651
+ ],
+ [
+ 652
+ ],
+ [
+ 653
+ ],
+ [
+ 654
+ ],
+ [
+ 655
+ ],
+ [
+ 656
+ ],
+ [
+ 657
+ ],
+ [
+ 658
+ ],
+ [
+ 659
+ ],
+ [
+ 660
+ ],
+ [
+ 661
+ ],
+ [
+ 662
+ ],
+ [
+ 663
+ ],
+ [
+ 664
+ ],
+ [
+ 665
+ ],
+ [
+ 666
+ ],
+ [
+ 667
+ ],
+ [
+ 668
+ ],
+ [
+ 669
+ ],
+ [
+ 670
+ ],
+ [
+ 671
+ ],
+ [
+ 672
+ ],
+ [
+ 673
+ ],
+ [
+ 674
+ ],
+ [
+ 675
+ ],
+ [
+ 676
+ ],
+ [
+ 677
+ ],
+ [
+ 678
+ ],
+ [
+ 679
+ ],
+ [
+ 680
+ ],
+ [
+ 681
+ ],
+ [
+ 682
+ ],
+ [
+ 683
+ ],
+ [
+ 684
+ ],
+ [
+ 685
+ ],
+ [
+ 686
+ ],
+ [
+ 687
+ ],
+ [
+ 688
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 695
+ ],
+ [
+ 696
+ ],
+ [
+ 697
+ ],
+ [
+ 698
+ ],
+ [
+ 699
+ ],
+ [
+ 700
+ ],
+ [
+ 701
+ ],
+ [
+ 702
+ ],
+ [
+ 703
+ ],
+ [
+ 704
+ ],
+ [
+ 705
+ ],
+ [
+ 706
+ ],
+ [
+ 707
+ ],
+ [
+ 708
+ ],
+ [
+ 709
+ ],
+ [
+ 710
+ ],
+ [
+ 711
+ ],
+ [
+ 712
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 719
+ ],
+ [
+ 720
+ ],
+ [
+ 721
+ ],
+ [
+ 722
+ ],
+ [
+ 723
+ ],
+ [
+ 724
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 898
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 924
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1015
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1061
+ ],
+ [
+ 1062
+ ],
+ [
+ 1063
+ ],
+ [
+ 1064
+ ],
+ [
+ 1065
+ ],
+ [
+ 1066
+ ],
+ [
+ 1067
+ ],
+ [
+ 1068
+ ],
+ [
+ 1069
+ ],
+ [
+ 1070
+ ],
+ [
+ 1071
+ ],
+ [
+ 1072
+ ],
+ [
+ 1073
+ ],
+ [
+ 1074
+ ],
+ [
+ 1075
+ ],
+ [
+ 1076
+ ],
+ [
+ 1077
+ ],
+ [
+ 1078
+ ],
+ [
+ 1079
+ ],
+ [
+ 1080
+ ],
+ [
+ 1081
+ ],
+ [
+ 1082
+ ],
+ [
+ 1083
+ ],
+ [
+ 1084
+ ],
+ [
+ 1085
+ ],
+ [
+ 1086
+ ],
+ [
+ 1087
+ ],
+ [
+ 1088
+ ],
+ [
+ 1089
+ ],
+ [
+ 1090
+ ],
+ [
+ 1091
+ ],
+ [
+ 1092
+ ],
+ [
+ 1093
+ ],
+ [
+ 1094
+ ],
+ [
+ 1095
+ ],
+ [
+ 1096
+ ],
+ [
+ 1097
+ ],
+ [
+ 1098
+ ],
+ [
+ 1099
+ ],
+ [
+ 1100
+ ],
+ [
+ 1101
+ ],
+ [
+ 1102
+ ],
+ [
+ 1103
+ ],
+ [
+ 1104
+ ],
+ [
+ 1105
+ ],
+ [
+ 1106
+ ],
+ [
+ 1107
+ ],
+ [
+ 1108
+ ],
+ [
+ 1109
+ ],
+ [
+ 1110
+ ],
+ [
+ 1111
+ ],
+ [
+ 1112
+ ],
+ [
+ 1113
+ ],
+ [
+ 1114
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1252
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1284
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1300
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1620
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1652
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1668
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1700
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1764
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the option value for the option ID 152 in store 0?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 152 AND store_id = 0;",
+ "answer": [
+ "EverCool\u2122"
+ ],
+ "sql_execute_result": [
+ [
+ "EverCool™"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders canceled on 2022-11-30 in store 1.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-11-30' AND order_status = 'canceled';",
+ "answer": [
+ "192.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "192.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with ID 308?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 308;",
+ "answer": [
+ "pending"
+ ],
+ "sql_execute_result": [
+ [
+ "pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 0?",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of product with ID 1780 currently in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1780;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with entity ID 542.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 542;",
+ "answer": [
+ "80",
+ "81"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ],
+ [
+ 81
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the category with ID 29?",
+ "sql": "SELECT created_at FROM catalog_category_entity WHERE entity_id = 29;",
+ "answer": [
+ "2023-04-19 16:13:19"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:19"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a rating of 5?",
+ "sql": "SELECT DISTINCT entity_pk_value FROM rating_option_vote WHERE value = 5;",
+ "answer": [
+ "67"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ],
+ [
+ 2
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 37
+ ],
+ [
+ 39
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 398
+ ],
+ [
+ 776
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 526
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 622
+ ],
+ [
+ 478
+ ],
+ [
+ 590
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 937
+ ],
+ [
+ 963
+ ],
+ [
+ 654
+ ],
+ [
+ 676
+ ],
+ [
+ 7
+ ],
+ [
+ 20
+ ],
+ [
+ 23
+ ],
+ [
+ 17
+ ],
+ [
+ 19
+ ],
+ [
+ 16
+ ],
+ [
+ 12
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 44
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1380
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1364
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1854
+ ],
+ [
+ 1572
+ ],
+ [
+ 1428
+ ],
+ [
+ 1588
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1983
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ],
+ [
+ 1620
+ ],
+ [
+ 1764
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 314?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 314;",
+ "answer": [
+ "MJ07-L-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ07-L-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with parent ID 206.",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 206;",
+ "answer": [
+ "alexander.thomas@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the status 'processing' in sales orders?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'processing';",
+ "answer": [
+ "Processing"
+ ],
+ "sql_execute_result": [
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have SKUs containing 'Yellow'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE sku LIKE '%Yellow%';",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for the sales order address with entity ID 14?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 14;",
+ "answer": [
+ "Arizona"
+ ],
+ "sql_execute_result": [
+ [
+ "Arizona"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the attribute option ID 96?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 96;",
+ "answer": [
+ "10 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "10 foot"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value of the latest order.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the address type for the sales order address with quote address ID 619?",
+ "sql": "SELECT address_type FROM sales_order_address WHERE quote_address_id = 619;",
+ "answer": [
+ "shipping"
+ ],
+ "sql_execute_result": [
+ [
+ "shipping"
+ ]
+ ]
+ },
+ {
+ "question": "How many order statuses are available?",
+ "sql": "SELECT status FROM sales_order_status;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "paypal_canceled_reversal"
+ ],
+ [
+ "paypal_reversed"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "pending_payment"
+ ],
+ [
+ "pending_paypal"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the value ID 220 in attribute options.",
+ "sql": "SELECT store_id FROM eav_attribute_option_value WHERE value_id = 220;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Nadia Elements Shell-M-Black' on 2022-06-26?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Nadia Elements Shell-M-Black' AND period = '2022-06-26';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'About us' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the product with SKU 'WS08-XS-Blue' in the sales invoice item?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code of review status with ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Which store group has the name 'Main Website Store'?",
+ "sql": "SELECT code FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "main_website_store"
+ ],
+ "sql_execute_result": [
+ [
+ "main_website_store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the period when 'Gwyn Endurance Tee-L-Yellow' was the bestseller in store 0.",
+ "sql": "SELECT period FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Gwyn Endurance Tee-L-Yellow' AND store_id = 0;",
+ "answer": [
+ "2023-02-07"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-02-07"
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout for the '404 Not Found' CMS page?",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = '404 Not Found';",
+ "answer": [
+ "2columns-right"
+ ],
+ "sql_execute_result": [
+ [
+ "2columns-right"
+ ]
+ ]
+ },
+ {
+ "question": "How much tax amount is applied to the sales invoice item with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the 'Privacy Policy' CMS page?",
+ "sql": "SELECT sort_order FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID for 'Karmen Yoga Pant-28-Black' in the bestsellers aggregated daily data.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Karmen Yoga Pant-28-Black';",
+ "answer": [
+ "1813"
+ ],
+ "sql_execute_result": [
+ [
+ 1813
+ ],
+ [
+ 1813
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating_id 4?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in total for the order with increment ID '000000001'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'customer5@example.com'?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_order WHERE customer_id = (SELECT entity_id FROM customer_entity WHERE email = 'customer5@example.com');",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the full address for customer Veronica Costello?",
+ "sql": "SELECT CONCAT(street, ', ', city, ', ', region, ', ', postcode, ', ', country_id) AS full_address FROM customer_address_entity WHERE firstname = 'Veronica' AND lastname = 'Costello';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978, US"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978, US"
+ ]
+ ]
+ },
+ {
+ "question": "How many products belong to category ID 23?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 23;",
+ "answer": [
+ "186"
+ ],
+ "sql_execute_result": [
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1252
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1284
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1300
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "Find the total base amount ordered for order payment with ID 223.",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 223;",
+ "answer": [
+ "37.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "37.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the description of the product with entity ID 849.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 849 AND attribute_id = 75;",
+ "answer": [
+ "The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.
\n• A yoga essential.
• Breathable stretch organic cotton/spandex.
• Standard Fit.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.
\n• A yoga essential.
• Breathable stretch organic cotton/spandex.
• Standard Fit.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find all addresses associated with customer ID 68.",
+ "sql": "SELECT CONCAT(street, ', ', city, ', ', region, ', ', postcode, ', ', country_id) AS full_address FROM customer_address_entity WHERE parent_id = 68;",
+ "answer": [
+ "225 River St, Hoboken, New Jersey, 07030, US"
+ ],
+ "sql_execute_result": [
+ [
+ "225 River St, Hoboken, New Jersey, 07030, US"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for order ID 118?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 118;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What are the ISO codes for country ID 'BG'?",
+ "sql": "SELECT iso2_code, iso3_code FROM directory_country WHERE country_id = 'BG';",
+ "answer": [
+ "BG",
+ "BGR"
+ ],
+ "sql_execute_result": [
+ [
+ "BG",
+ "BGR"
+ ]
+ ]
+ },
+ {
+ "question": "How many sales orders were paid by 'Check / Money order' method?",
+ "sql": "SELECT entity_id FROM sales_order_payment WHERE method = 'checkmo';",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are linked to category ID 27?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 27;",
+ "answer": [
+ "91"
+ ],
+ "sql_execute_result": [
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for payment ID 190?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 190;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 630?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 630;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer placed the order with increment ID '000000242'?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE increment_id = '000000242';",
+ "answer": [
+ "Olivia Lee"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia Lee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with ID 15?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 15;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the review with ID 331.",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 331;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 1194 visible in the store?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1194 AND attribute_id = 147;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000190'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000190';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the order placed by customer with email 'soccerfanatic22@gmail.com'?",
+ "sql": "SELECT billing_name FROM sales_order_grid WHERE customer_email = 'soccerfanatic22@gmail.com';",
+ "answer": [
+ "Olivia Lee"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Olivia Lee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the order with ID 202?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE entity_id = 202;",
+ "answer": [
+ "180.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "180.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the used product attribute listing for attribute ID 128?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 128;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the percent rating for the review with ID 45?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 45;",
+ "answer": [
+ "60"
+ ],
+ "sql_execute_result": [
+ [
+ 60
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for order status 'complete'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the invoice item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the website code for the default website?",
+ "sql": "SELECT code FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "base"
+ ],
+ "sql_execute_result": [
+ [
+ "base"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the base price including tax for the product 'Iris Workout Top'.",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for review with ID 141?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 141;",
+ "answer": [
+ "2023-04-19 16:15:14"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:14"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the invoice item associated with order item ID 2.",
+ "sql": "SELECT qty FROM sales_invoice_item WHERE order_item_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the product ID for the invoice item with base price '32.0000'.",
+ "sql": "SELECT product_id FROM sales_invoice_item WHERE base_price = '32.0000';",
+ "answer": [
+ "1492"
+ ],
+ "sql_execute_result": [
+ [
+ 1492
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product named 'Iris Workout Top'?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with entity ID 2.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for the website with code 'admin'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with ID 547?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 547 AND attribute_id = 75;",
+ "answer": [
+ "Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.
\nRelaxed fit.
Short-Sleeve.
Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.
\nRelaxed fit.
Short-Sleeve.
Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer living in Chicago.",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE city = 'Chicago';",
+ "answer": [
+ "John",
+ "Lily",
+ "Michael",
+ "Maxwell",
+ "James",
+ "Jessica",
+ "Emily"
+ ],
+ "sql_execute_result": [
+ [
+ "John"
+ ],
+ [
+ "Lily"
+ ],
+ [
+ "Michael"
+ ],
+ [
+ "Maxwell"
+ ],
+ [
+ "James"
+ ],
+ [
+ "Jessica"
+ ],
+ [
+ "Emily"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered in order ID 303?",
+ "sql": "SELECT sku FROM sales_order_item WHERE order_id = 303;",
+ "answer": [
+ "MT08-XL-Green",
+ "WP07-28-Black",
+ "MSH05-36-Gray",
+ "24-WG085",
+ "WJ03-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "240"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the customer with address ID 1?",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 1;",
+ "answer": [
+ "Michigan"
+ ],
+ "sql_execute_result": [
+ [
+ "Michigan"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with SKU 'MP03-32-Green'?",
+ "sql": "SELECT base_price FROM sales_order_item WHERE sku = 'MP03-32-Green';",
+ "answer": [
+ "40.8000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "40.8000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 42?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 42;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ]
+ ]
+ },
+ {
+ "question": "Find all order items for order ID 117.",
+ "sql": "SELECT name FROM sales_order_item WHERE order_id = 117;",
+ "answer": [
+ "Cruise Dual Analog Watch",
+ "Grayson Crewneck Sweatshirt",
+ "Grayson Crewneck Sweatshirt -XL-Orange",
+ "Sprite Yoga Strap 8 foot",
+ "Geo Insulated Jogging Pant",
+ "Geo Insulated Jogging Pant-32-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Grayson Crewneck Sweatshirt "
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Orange"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Geo Insulated Jogging Pant"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total row amount for the item with ID 641?",
+ "sql": "SELECT row_total FROM sales_order_item WHERE item_id = 641;",
+ "answer": [
+ "40.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "40.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the country ID for the customer living in Dallas.",
+ "sql": "SELECT country_id FROM customer_address_entity WHERE city = 'Dallas';",
+ "answer": [
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "US"
+ ],
+ [
+ "US"
+ ],
+ [
+ "US"
+ ],
+ [
+ "US"
+ ],
+ [
+ "US"
+ ],
+ [
+ "US"
+ ],
+ [
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 1935.",
+ "sql": "SELECT review_id, created_at, status_id FROM review WHERE entity_pk_value = 1935;",
+ "answer": [
+ "Review ID: 286, Created At: 2023-04-19 16:15:18, Status ID: 1",
+ "Review ID: 287, Created At: 2023-04-19 16:15:18, Status ID: 1",
+ "Review ID: 288, Created At: 2023-04-19 16:15:18, Status ID: 1"
+ ],
+ "sql_execute_result": [
+ [
+ 286,
+ "2023-04-19 16:15:18",
+ 1
+ ],
+ [
+ 287,
+ "2023-04-19 16:15:18",
+ 1
+ ],
+ [
+ 288,
+ "2023-04-19 16:15:18",
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating option with ID 3?",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ "3"
+ ]
+ ]
+ },
+ {
+ "question": "List the names of products ordered in order ID 91.",
+ "sql": "SELECT name FROM sales_order_item WHERE order_id = 91;",
+ "answer": [
+ "Endurance Watch",
+ "Jade Yoga Jacket",
+ "Jade Yoga Jacket-L-Blue",
+ "Overnight Duffle",
+ "Affirm Water Bottle"
+ ],
+ "sql_execute_result": [
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Jade Yoga Jacket"
+ ],
+ [
+ "Jade Yoga Jacket-L-Blue"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Affirm Water Bottle "
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product 'Daria Bikram Pant-28-White' in the daily bestsellers list.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Daria Bikram Pant-28-White';",
+ "answer": [
+ "40.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "40.8000"
+ ],
+ [
+ "40.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the discount amount for the item with SKU 'MH03-XS-Black'.",
+ "sql": "SELECT discount_amount FROM sales_order_item WHERE sku = 'MH03-XS-Black';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all rating options for the rating ID 4.",
+ "sql": "SELECT option_id, code, value, position FROM rating_option WHERE rating_id = 4;",
+ "answer": [
+ "Option ID: 16, Code: 1, Value: 1, Position: 1",
+ "Option ID: 17, Code: 2, Value: 2, Position: 2",
+ "Option ID: 18, Code: 3, Value: 3, Position: 3",
+ "Option ID: 19, Code: 4, Value: 4, Position: 4",
+ "Option ID: 20, Code: 5, Value: 5, Position: 5"
+ ],
+ "sql_execute_result": [
+ [
+ 16,
+ "1",
+ 1,
+ 1
+ ],
+ [
+ 17,
+ "2",
+ 2,
+ 2
+ ],
+ [
+ 18,
+ "3",
+ 3,
+ 3
+ ],
+ [
+ 19,
+ "4",
+ 4,
+ 4
+ ],
+ [
+ 20,
+ "5",
+ 5,
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the quantity ordered for 'Dash Digital Watch' in the daily bestsellers list.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Dash Digital Watch';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the price of 'Sprite Foam Roller' in the sales order items.",
+ "sql": "SELECT price FROM sales_order_item WHERE name = 'Sprite Foam Roller';",
+ "answer": [
+ "19.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "19.0000"
+ ],
+ [
+ "19.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all products in the sales order with ID 119.",
+ "sql": "SELECT name FROM sales_order_item WHERE order_id = 119;",
+ "answer": [
+ "Sol Active Short",
+ "Sol Active Short-36-Blue",
+ "Daria Bikram Pant",
+ "Daria Bikram Pant-28-White",
+ "Hera Pullover Hoodie",
+ "Hera Pullover Hoodie-M-Blue",
+ "Dash Digital Watch",
+ "Ryker LumaTech™ Tee (Crew-neck)",
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Sol Active Short-36-Blue"
+ ],
+ [
+ "Daria Bikram Pant"
+ ],
+ [
+ "Daria Bikram Pant-28-White"
+ ],
+ [
+ "Hera Pullover Hoodie"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Blue"
+ ],
+ [
+ "Dash Digital Watch"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH11-M-Orange'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WH11-M-Orange';",
+ "answer": [
+ "Eos V-Neck Hoodie",
+ "Eos V-Neck Hoodie-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ],
+ [
+ "Eos V-Neck Hoodie-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 1997.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 1997;",
+ "answer": [
+ "298",
+ "299",
+ "300"
+ ],
+ "sql_execute_result": [
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the review with ID 136?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 136;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which store does the sequence table 'sequence_shipment_1' belong to?",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WS08-XS-Blue' in the shipment item?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name associated with the credit memo increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the item with SKU '24-WG083-pink'.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = '24-WG083-pink';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer associated with the order ID 2 in the credit memo grid?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE order_id = 2;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the order with ID 139.",
+ "sql": "SELECT store_id FROM sales_order_item WHERE order_id = 139;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the order item with ID 115?",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 115;",
+ "answer": [
+ "Eos V-Neck Hoodie-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with ID 4?",
+ "sql": "SELECT title FROM cms_page WHERE page_id = 4;",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'Privacy Policy' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 30?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 30;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input renderer for the attribute with ID 123?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 123;",
+ "answer": [
+ "Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 149 used in product listings?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 149;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the CMS page titled 'About us'?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'About Us';",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 1272 in category ID 23?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1272 AND category_id = 23;",
+ "answer": [
+ "-62"
+ ],
+ "sql_execute_result": [
+ [
+ -62
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with option ID 3?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of product with ID 1 available in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have the status 'complete'?",
+ "sql": "SELECT * FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "complete",
+ "complete",
+ null,
+ "193721b51b6bd9cbbad80daeb9c2c0b9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "106.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "91.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "106.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "91.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 8,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 5,
+ 7,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "91.0000",
+ "106.0000",
+ null,
+ "0.0000",
+ "91.0000",
+ "106.0000",
+ "3.0000",
+ null,
+ "000000004",
+ "1,2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-03 23:08:03",
+ "2023-04-23 23:35:56",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 9,
+ "complete",
+ "complete",
+ null,
+ "7e94625d4ce65adeeef14fa7d03b1b52",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "159.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "139.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "159.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "139.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 18,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 10,
+ 17,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "139.4000",
+ "159.4000",
+ null,
+ "0.0000",
+ "139.4000",
+ "159.4000",
+ "2.0000",
+ null,
+ "000000009",
+ "2",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-07 22:41:05",
+ "2023-04-23 23:35:58",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 11,
+ "complete",
+ "complete",
+ null,
+ "657d901f0331ba8ab531d099341163c3",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "0.0000",
+ null,
+ null,
+ null,
+ "143.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "128.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "143.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "128.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 22,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 12,
+ 21,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "128.8000",
+ "143.8000",
+ null,
+ "0.0000",
+ "128.8000",
+ "143.8000",
+ "3.0000",
+ null,
+ "000000011",
+ "1,2",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-09 23:53:33",
+ "2023-04-23 23:35:59",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 13,
+ "complete",
+ "complete",
+ null,
+ "091c0893773a893631dbd851fd75ee76",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 31,
+ "0.0000",
+ null,
+ null,
+ null,
+ "171.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "151.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "171.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "151.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 26,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 14,
+ 25,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "151.6000",
+ "171.6000",
+ null,
+ "0.0000",
+ "151.6000",
+ "171.6000",
+ "3.0000",
+ null,
+ "000000013",
+ "1,2",
+ "USD",
+ "jason.miller@yahoo.com",
+ "Jason",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-06 13:35:51",
+ "2023-04-23 23:36:00",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 16,
+ "complete",
+ "complete",
+ null,
+ "b6f99a1ed657f8194a01de5a4966f8a2",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 32,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 17,
+ 31,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "190.0000",
+ "215.0000",
+ null,
+ "0.0000",
+ "190.0000",
+ "215.0000",
+ "5.0000",
+ null,
+ "000000016",
+ "1,2",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-03 02:07:09",
+ "2023-04-23 23:36:01",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 17,
+ "complete",
+ "complete",
+ null,
+ "faf872ef5bff1e6a093a78dc42645e47",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 33,
+ "0.0000",
+ null,
+ null,
+ null,
+ "112.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "112.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 34,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 18,
+ 33,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "97.0000",
+ "112.0000",
+ null,
+ "0.0000",
+ "97.0000",
+ "112.0000",
+ "1.0000",
+ null,
+ "000000017",
+ "2",
+ "USD",
+ "adam.garcia@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-10-27 01:11:16",
+ "2023-04-23 23:36:01",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 20,
+ "complete",
+ "complete",
+ null,
+ "c53798f3ff9d3cd3a0a098e8917b90bf",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 31,
+ "-45.7600",
+ null,
+ null,
+ null,
+ "203.0400",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "228.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-45.7600",
+ null,
+ null,
+ null,
+ "203.0400",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "228.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 40,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 21,
+ 39,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "228.8000",
+ "203.0400",
+ null,
+ "0.0000",
+ "228.8000",
+ "203.0400",
+ "3.0000",
+ null,
+ "000000020",
+ "2,3",
+ "USD",
+ "jason.miller@yahoo.com",
+ "Jason",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-11 19:37:11",
+ "2023-04-23 23:36:03",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 21,
+ "complete",
+ "complete",
+ null,
+ "70571b41c62e5d9221331e3734e3dae1",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 17,
+ "0.0000",
+ null,
+ null,
+ null,
+ "210.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "210.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 42,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 22,
+ 41,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "190.0000",
+ "210.0000",
+ null,
+ "0.0000",
+ "190.0000",
+ "210.0000",
+ "2.0000",
+ null,
+ "000000021",
+ "2",
+ "USD",
+ "harrypotterfan1@gmail.com",
+ "Lily",
+ "Potter",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-23 20:45:57",
+ "2023-04-23 23:36:03",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 22,
+ "complete",
+ "complete",
+ null,
+ "919ff774716f5fabec72486d9b0ed9bd",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 17,
+ "-26.2000",
+ null,
+ null,
+ null,
+ "229.8000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "231.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-26.2000",
+ null,
+ null,
+ null,
+ "229.8000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "231.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 44,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 23,
+ 43,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "231.0000",
+ "229.8000",
+ null,
+ "0.0000",
+ "231.0000",
+ "229.8000",
+ "2.0000",
+ null,
+ "000000022",
+ "2,3",
+ "USD",
+ "harrypotterfan1@gmail.com",
+ "Lily",
+ "Potter",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-22 04:29:13",
+ "2023-04-23 23:36:03",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 23,
+ "complete",
+ "complete",
+ null,
+ "d3c822bd4452ca7ffaff37040b01dcef",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "65.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "60.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "65.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "60.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 46,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 24,
+ 45,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "60.0000",
+ "65.0000",
+ null,
+ "0.0000",
+ "60.0000",
+ "65.0000",
+ "1.0000",
+ null,
+ "000000023",
+ "2",
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-07 21:19:20",
+ "2023-04-23 23:36:04",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 24,
+ "complete",
+ "complete",
+ null,
+ "66712850d01eeaf240b4f49db3851595",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 8,
+ "0.0000",
+ null,
+ null,
+ null,
+ "116.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "116.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 48,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 25,
+ 47,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "106.0000",
+ "116.0000",
+ null,
+ "0.0000",
+ "106.0000",
+ "116.0000",
+ "2.0000",
+ null,
+ "000000024",
+ "2",
+ "USD",
+ "marym@gmail.com",
+ "Mary",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-17 09:49:51",
+ "2023-04-23 23:36:04",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 27,
+ "complete",
+ "complete",
+ null,
+ "7f97f88dc1a55a78f25d067f89efc3eb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "43.4000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "38.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "43.4000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "38.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 54,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 28,
+ 53,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "38.4000",
+ "43.4000",
+ null,
+ "0.0000",
+ "38.4000",
+ "43.4000",
+ "1.0000",
+ null,
+ "000000027",
+ null,
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-24 15:57:01",
+ "2023-04-23 23:36:06",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 28,
+ "complete",
+ "complete",
+ null,
+ "9943157db52cd2f41629925b2bb8b3a7",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "-50.4000",
+ null,
+ null,
+ null,
+ "226.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "252.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-50.4000",
+ null,
+ null,
+ null,
+ "226.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "252.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 56,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 29,
+ 55,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "252.0000",
+ "226.6000",
+ null,
+ "0.0000",
+ "252.0000",
+ "226.6000",
+ "5.0000",
+ null,
+ "000000028",
+ "1,2,3",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-12 11:53:26",
+ "2023-04-23 23:36:06",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 31,
+ "complete",
+ "complete",
+ null,
+ "18a9a961f42be1839c5c3550b100f876",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "123.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "108.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "123.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "108.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 62,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 32,
+ 61,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "108.8000",
+ "123.8000",
+ null,
+ "0.0000",
+ "108.8000",
+ "123.8000",
+ "3.0000",
+ null,
+ "000000031",
+ "1,2",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-10-22 11:37:01",
+ "2023-04-23 23:36:07",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 32,
+ "complete",
+ "complete",
+ null,
+ "5f79610a0401b1223d1236903577a055",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 64,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 33,
+ 63,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ "4.0000",
+ null,
+ "000000032",
+ "2",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-06 03:57:51",
+ "2023-04-23 23:36:08",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 33,
+ "complete",
+ "complete",
+ null,
+ "72088e4b22942b15ce5e789a9489f183",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "0.0000",
+ null,
+ null,
+ null,
+ "120.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "105.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "120.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "105.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 66,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 34,
+ 65,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "105.2000",
+ "120.2000",
+ null,
+ "0.0000",
+ "105.2000",
+ "120.2000",
+ "2.0000",
+ null,
+ "000000033",
+ "2",
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-04 19:53:04",
+ "2023-04-23 23:36:08",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 34,
+ "complete",
+ "complete",
+ null,
+ "6921dcccc1df377d50c1de9dec490c0d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 10,
+ "-41.9400",
+ null,
+ null,
+ null,
+ "192.7600",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "209.7000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-41.9400",
+ null,
+ null,
+ null,
+ "192.7600",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "209.7000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 68,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 35,
+ 67,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "209.7000",
+ "192.7600",
+ null,
+ "0.0000",
+ "209.7000",
+ "192.7600",
+ "5.0000",
+ null,
+ "000000034",
+ "2,3",
+ "USD",
+ "janesmith@gmail.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-13 09:49:00",
+ "2023-04-23 23:36:08",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 35,
+ "complete",
+ "complete",
+ null,
+ "f4db205fb571ac72c987e618a64facf9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "177.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "157.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "177.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "157.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 70,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 36,
+ 69,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "157.0000",
+ "177.0000",
+ null,
+ "0.0000",
+ "157.0000",
+ "177.0000",
+ "3.0000",
+ null,
+ "000000035",
+ "1,2",
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-13 01:39:10",
+ "2023-04-23 23:36:09",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 36,
+ "complete",
+ "complete",
+ null,
+ "55e02f5d6f0c9fbff95cfc6c5e3150f6",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 32,
+ "0.0000",
+ null,
+ null,
+ null,
+ "162.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "137.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "162.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "137.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 72,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 37,
+ 71,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "137.0000",
+ "162.0000",
+ null,
+ "0.0000",
+ "137.0000",
+ "162.0000",
+ "4.0000",
+ null,
+ "000000036",
+ "1,2",
+ "USD",
+ "katie.wong@hotmail.com",
+ "Katie",
+ "Wong",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-12 12:42:00",
+ "2023-04-23 23:36:09",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 37,
+ "complete",
+ "complete",
+ null,
+ "c28920fc7aa0e4540684e7a24c166dd9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 30,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "107.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "107.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 74,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 38,
+ 73,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "107.0000",
+ "127.0000",
+ null,
+ "0.0000",
+ "107.0000",
+ "127.0000",
+ "3.0000",
+ null,
+ "000000037",
+ "1,2",
+ "USD",
+ "david.lee@gmail.com",
+ "David",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-06 21:24:41",
+ "2023-04-23 23:36:10",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 43,
+ "complete",
+ "complete",
+ null,
+ "693d4e7723c138f3119e687ab605759d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "90.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "75.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "90.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "75.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 86,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 44,
+ 85,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "75.0000",
+ "90.0000",
+ null,
+ "0.0000",
+ "75.0000",
+ "90.0000",
+ "1.0000",
+ null,
+ "000000043",
+ "2",
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-14 07:52:28",
+ "2023-04-23 23:36:12",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 45,
+ "complete",
+ "complete",
+ null,
+ "411508072428c0268afe6b9772e756c5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "0.0000",
+ null,
+ null,
+ null,
+ "183.2000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "158.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "183.2000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "158.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 90,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 46,
+ 89,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "158.2000",
+ "183.2000",
+ null,
+ "0.0000",
+ "158.2000",
+ "183.2000",
+ "3.0000",
+ null,
+ "000000045",
+ "2",
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-19 21:32:34",
+ "2023-04-23 23:36:13",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 47,
+ "complete",
+ "complete",
+ null,
+ "3581e275a7e81cf110bce4d175a0996f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "38.6000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "33.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "38.6000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "33.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 94,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 48,
+ 93,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "33.6000",
+ "38.6000",
+ null,
+ "0.0000",
+ "33.6000",
+ "38.6000",
+ "1.0000",
+ null,
+ "000000047",
+ null,
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-05 07:26:09",
+ "2023-04-23 23:36:14",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 48,
+ "complete",
+ "complete",
+ null,
+ "c78941345e5e64aa1a3a8a5e9413b405",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "176.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "156.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "176.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "156.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 96,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 49,
+ 95,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "156.6000",
+ "176.6000",
+ null,
+ "0.0000",
+ "156.6000",
+ "176.6000",
+ "4.0000",
+ null,
+ "000000048",
+ "2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-31 09:08:13",
+ "2023-04-23 23:36:14",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 50,
+ "complete",
+ "complete",
+ null,
+ "f7127fbc1a4977e2635806b692d34227",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "-47.0000",
+ null,
+ null,
+ null,
+ "268.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "290.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-47.0000",
+ null,
+ null,
+ null,
+ "268.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "290.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 100,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 51,
+ 99,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "290.0000",
+ "268.0000",
+ null,
+ "0.0000",
+ "290.0000",
+ "268.0000",
+ "4.0000",
+ null,
+ "000000050",
+ "2,3",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-06 17:10:59",
+ "2023-04-23 23:36:15",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 51,
+ "complete",
+ "complete",
+ null,
+ "e67fa0a93147a32757a27a22579a2d0b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 9,
+ "0.0000",
+ null,
+ null,
+ null,
+ "121.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "121.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 102,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 52,
+ 101,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "106.0000",
+ "121.0000",
+ null,
+ "0.0000",
+ "106.0000",
+ "121.0000",
+ "2.0000",
+ null,
+ "000000051",
+ "2",
+ "USD",
+ "john.lee@yahoo.com",
+ "John",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-23 10:47:14",
+ "2023-04-23 23:36:16",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 53,
+ "complete",
+ "complete",
+ null,
+ "315806690fd505588f45594b3ec45ad5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 6,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 106,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 54,
+ 105,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "117.0000",
+ "127.0000",
+ null,
+ "0.0000",
+ "117.0000",
+ "127.0000",
+ "2.0000",
+ null,
+ "000000053",
+ "2",
+ "USD",
+ "jla_7781@gmail.com",
+ "Julia",
+ "Williams",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-15 09:44:50",
+ "2023-04-23 23:36:17",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 54,
+ "complete",
+ "complete",
+ null,
+ "4fa420c309d23e3bab51c8351fea9677",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 6,
+ "0.0000",
+ null,
+ null,
+ null,
+ "138.6000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "123.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "138.6000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "123.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 108,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 55,
+ 107,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "123.6000",
+ "138.6000",
+ null,
+ "0.0000",
+ "123.6000",
+ "138.6000",
+ "3.0000",
+ null,
+ "000000054",
+ "2",
+ "USD",
+ "jla_7781@gmail.com",
+ "Julia",
+ "Williams",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-17 15:06:29",
+ "2023-04-23 23:36:17",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 55,
+ "complete",
+ "complete",
+ null,
+ "73822296360c043fe397440bbf27176a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 110,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 56,
+ 109,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ "1.0000",
+ null,
+ "000000055",
+ "1",
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-10 22:52:43",
+ "2023-04-23 23:36:17",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 57,
+ "complete",
+ "complete",
+ null,
+ "4f20962ad1b5dc54e3c84e9570e6bd69",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 33,
+ "-40.0400",
+ null,
+ null,
+ null,
+ "180.1600",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "200.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-40.0400",
+ null,
+ null,
+ null,
+ "180.1600",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "200.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 114,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 58,
+ 113,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "200.2000",
+ "180.1600",
+ null,
+ "0.0000",
+ "200.2000",
+ "180.1600",
+ "4.0000",
+ null,
+ "000000057",
+ "1,2,3",
+ "USD",
+ "adam.garcia@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-21 13:15:05",
+ "2023-04-23 23:36:18",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 61,
+ "complete",
+ "complete",
+ null,
+ "9380e693bbcc5eabd322e4cdd1825622",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 10,
+ "0.0000",
+ null,
+ null,
+ null,
+ "100.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "85.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "100.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "85.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 122,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 62,
+ 121,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "85.8000",
+ "100.8000",
+ null,
+ "0.0000",
+ "85.8000",
+ "100.8000",
+ "2.0000",
+ null,
+ "000000061",
+ "1,2",
+ "USD",
+ "janesmith@gmail.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-19 05:32:22",
+ "2023-04-23 23:36:20",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 62,
+ "complete",
+ "complete",
+ null,
+ "9a313982dc803624f6c1a044f8005836",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "196.2000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "176.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 124,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 63,
+ 123,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ null,
+ "0.0000",
+ "176.2000",
+ "196.2000",
+ "4.0000",
+ null,
+ "000000062",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-02 07:44:18",
+ "2023-04-23 23:36:20",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 64,
+ "complete",
+ "complete",
+ null,
+ "501cb2fef4bd9d3c4d7ae50e1eb80e74",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 8,
+ "0.0000",
+ null,
+ null,
+ null,
+ "187.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "162.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "187.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "162.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 128,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 65,
+ 127,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "162.4000",
+ "187.4000",
+ null,
+ "0.0000",
+ "162.4000",
+ "187.4000",
+ "4.0000",
+ null,
+ "000000064",
+ "1,2",
+ "USD",
+ "marym@gmail.com",
+ "Mary",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-18 22:02:25",
+ "2023-04-23 23:36:21",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 69,
+ "complete",
+ "complete",
+ null,
+ "53bed42d7630b6d825b7eb966a0445fe",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 36,
+ "0.0000",
+ null,
+ null,
+ null,
+ "155.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "135.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "155.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "135.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 138,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 70,
+ 137,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "135.0000",
+ "155.0000",
+ null,
+ "0.0000",
+ "135.0000",
+ "155.0000",
+ "4.0000",
+ null,
+ "000000069",
+ "1,2",
+ "USD",
+ "alexander.thomas@hotmail.com",
+ "Alexander",
+ "Thomas",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-09 18:04:57",
+ "2023-04-23 23:36:23",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 70,
+ "complete",
+ "complete",
+ null,
+ "708958e0b9b99338861c2d25758d3ced",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "168.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "153.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "168.8000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "153.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 140,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 71,
+ 139,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "153.8000",
+ "168.8000",
+ null,
+ "0.0000",
+ "153.8000",
+ "168.8000",
+ "3.0000",
+ null,
+ "000000070",
+ "2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-01 15:03:36",
+ "2023-04-23 23:36:24",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 71,
+ "complete",
+ "complete",
+ null,
+ "ebe9552eeec5f685a7c95853aa1f4c2f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 11,
+ "0.0000",
+ null,
+ null,
+ null,
+ "59.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "54.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "59.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "54.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 142,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 72,
+ 141,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "54.0000",
+ "59.0000",
+ null,
+ "0.0000",
+ "54.0000",
+ "59.0000",
+ "0.0000",
+ null,
+ "000000071",
+ "2",
+ "USD",
+ "daniel.jackson@hotmail.com",
+ "Daniel",
+ "Jackson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-07 02:08:46",
+ "2023-04-23 23:36:24",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 73,
+ "complete",
+ "complete",
+ null,
+ "30269460e2543a6e7a8e4a9e389243be",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "0.0000",
+ null,
+ null,
+ null,
+ "188.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "168.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "188.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "168.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 146,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 74,
+ 145,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "168.0000",
+ "188.0000",
+ null,
+ "0.0000",
+ "168.0000",
+ "188.0000",
+ "3.0000",
+ null,
+ "000000073",
+ "2",
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-16 09:14:20",
+ "2023-04-23 23:36:25",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 75,
+ "complete",
+ "complete",
+ null,
+ "17a0a23fca40d08f16b1b565aa123471",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 26,
+ "0.0000",
+ null,
+ null,
+ null,
+ "205.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "185.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "205.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "185.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 150,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 76,
+ 149,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "185.0000",
+ "205.0000",
+ null,
+ "0.0000",
+ "185.0000",
+ "205.0000",
+ "3.0000",
+ null,
+ "000000075",
+ "1,2",
+ "USD",
+ "jennifer.white@yahoo.com",
+ "Jennifer",
+ "White",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-02 10:31:31",
+ "2023-04-23 23:36:26",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 78,
+ "complete",
+ "complete",
+ null,
+ "2a0f76135af21c631272080ba939e4ef",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "133.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "123.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "133.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "123.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 156,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 79,
+ 155,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "123.0000",
+ "133.0000",
+ null,
+ "0.0000",
+ "123.0000",
+ "133.0000",
+ "2.0000",
+ null,
+ "000000078",
+ "2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-20 13:27:33",
+ "2023-04-23 23:36:27",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 79,
+ "complete",
+ "complete",
+ null,
+ "434d01e940a3b9fb841806293e4a80ca",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 158,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 80,
+ 157,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ "1.0000",
+ null,
+ "000000079",
+ "1",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-17 13:27:44",
+ "2023-04-23 23:36:28",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 82,
+ "complete",
+ "complete",
+ null,
+ "77b31427abe552e1b97509bc3374c100",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 25,
+ "0.0000",
+ null,
+ null,
+ null,
+ "96.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "86.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "96.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "86.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 164,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 83,
+ 163,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "86.4000",
+ "96.4000",
+ null,
+ "0.0000",
+ "86.4000",
+ "96.4000",
+ "2.0000",
+ null,
+ "000000082",
+ "1,2",
+ "USD",
+ "gamingpro456@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-17 16:48:24",
+ "2023-04-23 23:36:29",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 83,
+ "complete",
+ "complete",
+ null,
+ "aeedc802734de63bcdc1986c543ba248",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "28.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "23.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "28.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "23.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 166,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 84,
+ 165,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "23.0000",
+ "28.0000",
+ null,
+ "0.0000",
+ "23.0000",
+ "28.0000",
+ "0.0000",
+ null,
+ "000000083",
+ null,
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-20 06:00:27",
+ "2023-04-23 23:36:29",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 84,
+ "complete",
+ "complete",
+ null,
+ "0aee01a56d46b71e019609e723bef830",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "-45.2800",
+ null,
+ null,
+ null,
+ "206.1200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "226.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-45.2800",
+ null,
+ null,
+ null,
+ "206.1200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "226.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 168,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 85,
+ 167,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "226.4000",
+ "206.1200",
+ null,
+ "0.0000",
+ "226.4000",
+ "206.1200",
+ "4.0000",
+ null,
+ "000000084",
+ "2,3",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-13 00:52:54",
+ "2023-04-23 23:36:30",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 87,
+ "complete",
+ "complete",
+ null,
+ "0ebdd8cf0019ba4e8d76d724cd7dff91",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 174,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 88,
+ 173,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ "1.0000",
+ null,
+ "000000087",
+ null,
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-01 09:14:36",
+ "2023-04-23 23:36:31",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 89,
+ "complete",
+ "complete",
+ null,
+ "b84442accbf3c60445c01f0304df851e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "118.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "103.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "118.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "103.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 178,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 90,
+ 177,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "103.0000",
+ "118.0000",
+ null,
+ "0.0000",
+ "103.0000",
+ "118.0000",
+ "2.0000",
+ null,
+ "000000089",
+ "1,2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-26 00:35:11",
+ "2023-04-23 23:36:32",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 90,
+ "complete",
+ "complete",
+ null,
+ "5d6e98f547b5e3d7d7bdc4b955f8c150",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "202.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "177.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "202.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "177.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 180,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 91,
+ 179,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "177.0000",
+ "202.0000",
+ null,
+ "0.0000",
+ "177.0000",
+ "202.0000",
+ "5.0000",
+ null,
+ "000000090",
+ "1,2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-02 18:59:47",
+ "2023-04-23 23:36:32",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 91,
+ "complete",
+ "complete",
+ null,
+ "dee566d5ea1e536b8a7060f6678e024b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "153.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "133.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "153.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "133.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 182,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 92,
+ 181,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "133.0000",
+ "153.0000",
+ null,
+ "0.0000",
+ "133.0000",
+ "153.0000",
+ "1.0000",
+ null,
+ "000000091",
+ "2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-29 22:04:05",
+ "2023-04-23 23:36:33",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 92,
+ "complete",
+ "complete",
+ null,
+ "b09e2c5b3b0ce50d2dd8c98a706efbc9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 31,
+ "0.0000",
+ null,
+ null,
+ null,
+ "97.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "87.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "97.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "87.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 184,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 93,
+ 183,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "87.0000",
+ "97.0000",
+ null,
+ "0.0000",
+ "87.0000",
+ "97.0000",
+ "2.0000",
+ null,
+ "000000092",
+ "2",
+ "USD",
+ "jason.miller@yahoo.com",
+ "Jason",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-20 11:30:12",
+ "2023-04-23 23:36:33",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 93,
+ "complete",
+ "complete",
+ null,
+ "cfbdfe32cb0010ea05f2475d67769513",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "89.2000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "79.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "89.2000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "79.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 186,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 94,
+ 185,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "79.2000",
+ "89.2000",
+ null,
+ "0.0000",
+ "79.2000",
+ "89.2000",
+ "2.0000",
+ null,
+ "000000093",
+ "2",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-02 13:20:58",
+ "2023-04-23 23:36:33",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 96,
+ "complete",
+ "complete",
+ null,
+ "35bed0372cbcc2f3872209425e8e38c5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "-34.8500",
+ null,
+ null,
+ null,
+ "209.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "219.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-34.8500",
+ null,
+ null,
+ null,
+ "209.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "219.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 192,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 97,
+ 191,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "219.2500",
+ "209.4000",
+ null,
+ "0.0000",
+ "219.2500",
+ "209.4000",
+ "4.0000",
+ null,
+ "000000096",
+ "2,3",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-16 08:54:14",
+ "2023-04-23 23:36:35",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 97,
+ "complete",
+ "complete",
+ null,
+ "20c3f2dd79641aa9743bd81ac008c36c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "-44.7600",
+ null,
+ null,
+ null,
+ "204.0400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "223.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-44.7600",
+ null,
+ null,
+ null,
+ "204.0400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "223.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 194,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 98,
+ 193,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "223.8000",
+ "204.0400",
+ null,
+ "0.0000",
+ "223.8000",
+ "204.0400",
+ "5.0000",
+ null,
+ "000000097",
+ "1,2,3",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-13 18:22:13",
+ "2023-04-23 23:36:35",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 99,
+ "complete",
+ "complete",
+ null,
+ "46d8e97553105ee394a1d4014f4dc894",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "181.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "181.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 198,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 100,
+ 197,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "166.0000",
+ "181.0000",
+ null,
+ "0.0000",
+ "166.0000",
+ "181.0000",
+ "3.0000",
+ null,
+ "000000099",
+ "1,2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-14 22:50:03",
+ "2023-04-23 23:36:36",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 100,
+ "complete",
+ "complete",
+ null,
+ "d2c89115c87f12c14d212d3fa69704cb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 26,
+ "0.0000",
+ null,
+ null,
+ null,
+ "209.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "189.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "209.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "189.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 200,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 101,
+ 199,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "189.6000",
+ "209.6000",
+ null,
+ "0.0000",
+ "189.6000",
+ "209.6000",
+ "4.0000",
+ null,
+ "000000100",
+ "2",
+ "USD",
+ "jennifer.white@yahoo.com",
+ "Jennifer",
+ "White",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-29 14:39:28",
+ "2023-04-23 23:36:36",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 102,
+ "complete",
+ "complete",
+ null,
+ "2379d833f81ad0ac7c89472ee78b84b9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "56.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "46.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "56.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "46.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 204,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 103,
+ 203,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "46.0000",
+ "56.0000",
+ null,
+ "0.0000",
+ "46.0000",
+ "56.0000",
+ "2.0000",
+ null,
+ "000000102",
+ "1",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-28 12:38:16",
+ "2023-04-23 23:36:37",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 104,
+ "complete",
+ "complete",
+ null,
+ "ac3135487ac8324c7b999bd0ee6c4095",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 9,
+ "0.0000",
+ null,
+ null,
+ null,
+ "130.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "130.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 208,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 105,
+ 207,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "110.0000",
+ "130.0000",
+ null,
+ "0.0000",
+ "110.0000",
+ "130.0000",
+ "3.0000",
+ null,
+ "000000104",
+ "1,2",
+ "USD",
+ "john.lee@yahoo.com",
+ "John",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-17 12:35:24",
+ "2023-04-23 23:36:38",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 105,
+ "complete",
+ "complete",
+ null,
+ "2b37bef7c116a3f68b57ea46f7a80c0d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 210,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 106,
+ 209,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ "1.0000",
+ null,
+ "000000105",
+ "1",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-07 06:07:31",
+ "2023-04-23 23:36:39",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 112,
+ "complete",
+ "complete",
+ null,
+ "4865babcadae896ac81c45470de85e0b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "0.0000",
+ null,
+ null,
+ null,
+ "153.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "138.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "153.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "138.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 224,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 113,
+ 223,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "138.0000",
+ "153.0000",
+ null,
+ "0.0000",
+ "138.0000",
+ "153.0000",
+ "3.0000",
+ null,
+ "000000112",
+ "1,2",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-13 15:27:30",
+ "2023-04-23 23:36:41",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 113,
+ "complete",
+ "complete",
+ null,
+ "e21dfa31ca5ec8d3de4f87f5cab56398",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "0.0000",
+ null,
+ null,
+ null,
+ "88.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "78.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "88.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "78.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 226,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 114,
+ 225,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "78.4000",
+ "88.4000",
+ null,
+ "0.0000",
+ "78.4000",
+ "88.4000",
+ "2.0000",
+ null,
+ "000000113",
+ "2",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-05 04:28:44",
+ "2023-04-23 23:36:42",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 114,
+ "complete",
+ "complete",
+ null,
+ "9703a0514a1888b158c44f523aa0ebea",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "0.0000",
+ null,
+ null,
+ null,
+ "65.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "65.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 228,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 115,
+ 227,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "55.0000",
+ "65.0000",
+ null,
+ "0.0000",
+ "55.0000",
+ "65.0000",
+ "1.0000",
+ null,
+ "000000114",
+ "1,2",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-06 20:59:26",
+ "2023-04-23 23:36:42",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 115,
+ "complete",
+ "complete",
+ null,
+ "d0d0298ea8a186cba3f4b70d24c6b3cd",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "180.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "160.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "180.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "160.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 230,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 116,
+ 229,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "160.4000",
+ "180.4000",
+ null,
+ "0.0000",
+ "160.4000",
+ "180.4000",
+ "4.0000",
+ null,
+ "000000115",
+ "1,2",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-17 14:26:26",
+ "2023-04-23 23:36:42",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 116,
+ "complete",
+ "complete",
+ null,
+ "c80c957b06a024f401ea09bd23984ac5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "148.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "128.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "148.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "128.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 232,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 117,
+ 231,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "128.4000",
+ "148.4000",
+ null,
+ "0.0000",
+ "128.4000",
+ "148.4000",
+ "2.0000",
+ null,
+ "000000116",
+ "2",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-21 01:21:02",
+ "2023-04-23 23:36:43",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 119,
+ "complete",
+ "complete",
+ null,
+ "efbcc6c2bbb60ff55ba0674cdc2718a0",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "-30.5600",
+ null,
+ null,
+ null,
+ "239.2400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "244.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-30.5600",
+ null,
+ null,
+ null,
+ "239.2400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "244.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 238,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 120,
+ 237,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "244.8000",
+ "239.2400",
+ null,
+ "0.0000",
+ "244.8000",
+ "239.2400",
+ "4.0000",
+ null,
+ "000000119",
+ "1,2,3",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-08 05:14:03",
+ "2023-04-23 23:36:44",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 121,
+ "complete",
+ "complete",
+ null,
+ "44ac8a58b0cc2a50b0d263c9900dda2e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 34,
+ "0.0000",
+ null,
+ null,
+ null,
+ "75.5000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "65.5000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "75.5000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "65.5000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 242,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 122,
+ 241,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "65.5000",
+ "75.5000",
+ null,
+ "0.0000",
+ "65.5000",
+ "75.5000",
+ "1.0000",
+ null,
+ "000000121",
+ "2",
+ "USD",
+ "brian.smith@yahoo.com",
+ "Brian",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-17 20:28:51",
+ "2023-04-23 23:36:45",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 127,
+ "complete",
+ "complete",
+ null,
+ "fd34956c7dca64adef7b5810773477fb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 254,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 128,
+ 253,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ "1.0000",
+ null,
+ "000000127",
+ "1",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-31 23:31:01",
+ "2023-04-23 23:36:48",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 128,
+ "complete",
+ "complete",
+ null,
+ "013303e83e1d3c72f3985cd417c29928",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "212.2500",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "192.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "212.2500",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "192.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 256,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 129,
+ 255,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "192.2500",
+ "212.2500",
+ null,
+ "0.0000",
+ "192.2500",
+ "212.2500",
+ "3.0000",
+ null,
+ "000000128",
+ "1,2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-05 13:50:20",
+ "2023-04-23 23:36:48",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 130,
+ "complete",
+ "complete",
+ null,
+ "4146ed38bc5834999826a0f435c6601b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 33,
+ "0.0000",
+ null,
+ null,
+ null,
+ "108.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "98.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "108.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "98.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 260,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 131,
+ 259,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "98.0000",
+ "108.0000",
+ null,
+ "0.0000",
+ "98.0000",
+ "108.0000",
+ "2.0000",
+ null,
+ "000000130",
+ "1,2",
+ "USD",
+ "adam.garcia@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-08 14:50:37",
+ "2023-04-23 23:36:49",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 131,
+ "complete",
+ "complete",
+ null,
+ "9de9851d8c6df6b93bfc7616aab7947b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "79.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "74.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "79.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "74.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 262,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 132,
+ 261,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "74.0000",
+ "79.0000",
+ null,
+ "0.0000",
+ "74.0000",
+ "79.0000",
+ "1.0000",
+ null,
+ "000000131",
+ "2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-03 13:41:40",
+ "2023-04-23 23:36:49",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 133,
+ "complete",
+ "complete",
+ null,
+ "7103024acf9c0e78099848e5faf3d382",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 31,
+ "0.0000",
+ null,
+ null,
+ null,
+ "181.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "181.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 266,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 134,
+ 265,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "166.0000",
+ "181.0000",
+ null,
+ "0.0000",
+ "166.0000",
+ "181.0000",
+ "2.0000",
+ null,
+ "000000133",
+ "2",
+ "USD",
+ "jason.miller@yahoo.com",
+ "Jason",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-16 21:12:53",
+ "2023-04-23 23:36:50",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 137,
+ "complete",
+ "complete",
+ null,
+ "2dd516632e97c4128037f24184d13c7b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "0.0000",
+ null,
+ null,
+ null,
+ "156.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "136.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "156.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "136.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 274,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 138,
+ 273,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "136.0000",
+ "156.0000",
+ null,
+ "0.0000",
+ "136.0000",
+ "156.0000",
+ "4.0000",
+ null,
+ "000000137",
+ "1,2",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-15 15:31:46",
+ "2023-04-23 23:36:52",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 138,
+ "complete",
+ "complete",
+ null,
+ "cf0f0169021dc4391aab03ac55da85f2",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "115.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "105.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "115.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "105.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 276,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 139,
+ 275,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "105.0000",
+ "115.0000",
+ null,
+ "0.0000",
+ "105.0000",
+ "115.0000",
+ "2.0000",
+ null,
+ "000000138",
+ "2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-31 05:17:09",
+ "2023-04-23 23:36:52",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 139,
+ "complete",
+ "complete",
+ null,
+ "410c607adb2302e5aa90cf91737e873e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 32,
+ "0.0000",
+ null,
+ null,
+ null,
+ "194.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "174.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "194.6000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "174.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 278,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 140,
+ 277,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "174.6000",
+ "194.6000",
+ null,
+ "0.0000",
+ "174.6000",
+ "194.6000",
+ "3.0000",
+ null,
+ "000000139",
+ "1,2",
+ "USD",
+ "katie.wong@hotmail.com",
+ "Katie",
+ "Wong",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-29 00:53:55",
+ "2023-04-23 23:36:53",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 140,
+ "complete",
+ "complete",
+ null,
+ "3e81f2cbbb3d7c57fef265b31cf7573f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 26,
+ "0.0000",
+ null,
+ null,
+ null,
+ "168.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "143.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "168.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "143.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 280,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 141,
+ 279,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "143.4000",
+ "168.4000",
+ null,
+ "0.0000",
+ "143.4000",
+ "168.4000",
+ "3.0000",
+ null,
+ "000000140",
+ "1,2",
+ "USD",
+ "jennifer.white@yahoo.com",
+ "Jennifer",
+ "White",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-09 07:01:25",
+ "2023-04-23 23:36:53",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 145,
+ "complete",
+ "complete",
+ null,
+ "8cd14985e1b50fc2e4e1122cd3925c6c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 35,
+ "-28.2800",
+ null,
+ null,
+ null,
+ "230.1200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "233.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-28.2800",
+ null,
+ null,
+ null,
+ "230.1200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "233.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 290,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 146,
+ 289,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "233.4000",
+ "230.1200",
+ null,
+ "0.0000",
+ "233.4000",
+ "230.1200",
+ "3.0000",
+ null,
+ "000000145",
+ "1,2,3",
+ "USD",
+ "samantha.nguyen@gmail.com",
+ "Samantha",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-25 04:19:55",
+ "2023-04-23 23:36:55",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 146,
+ "complete",
+ "complete",
+ null,
+ "b04d607d0d9b1e3a7a5f17f63e0d861c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "0.0000",
+ null,
+ null,
+ null,
+ "70.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "60.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "70.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "60.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 292,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 147,
+ 291,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "60.0000",
+ "70.0000",
+ null,
+ "0.0000",
+ "60.0000",
+ "70.0000",
+ "2.0000",
+ null,
+ "000000146",
+ "1,2",
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-10 03:17:18",
+ "2023-04-23 23:36:56",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 147,
+ "complete",
+ "complete",
+ null,
+ "19f5ef75144294884eda94079f6ffe70",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 26,
+ "0.0000",
+ null,
+ null,
+ null,
+ "172.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "152.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "172.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "152.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 294,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 148,
+ 293,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "152.0000",
+ "172.0000",
+ null,
+ "0.0000",
+ "152.0000",
+ "172.0000",
+ "2.0000",
+ null,
+ "000000147",
+ "2",
+ "USD",
+ "jennifer.white@yahoo.com",
+ "Jennifer",
+ "White",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-20 17:51:31",
+ "2023-04-23 23:36:56",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 148,
+ "complete",
+ "complete",
+ null,
+ "2e7412b7d611fec1d03f3a44057238bb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 296,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 149,
+ 295,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ "2.0000",
+ null,
+ "000000148",
+ "2",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-04 10:35:15",
+ "2023-04-23 23:36:57",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 150,
+ "complete",
+ "complete",
+ null,
+ "608eb79388b9c05f2039b2d4feff71c4",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "195.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "195.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 300,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 151,
+ 299,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "195.8000",
+ "215.8000",
+ null,
+ "0.0000",
+ "195.8000",
+ "215.8000",
+ "3.0000",
+ null,
+ "000000150",
+ "2",
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-29 01:34:05",
+ "2023-04-23 23:36:57",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 154,
+ "complete",
+ "complete",
+ null,
+ "30f5df847130a138b2c04d7809bb59e0",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "0.0000",
+ null,
+ null,
+ null,
+ "109.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "99.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "109.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "99.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 308,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 155,
+ 307,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "99.0000",
+ "109.0000",
+ null,
+ "0.0000",
+ "99.0000",
+ "109.0000",
+ "2.0000",
+ null,
+ "000000154",
+ "2",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-02 14:47:47",
+ "2023-04-23 23:36:59",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 155,
+ "complete",
+ "complete",
+ null,
+ "6158e632e90005785d4e85b00e586467",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 20,
+ "0.0000",
+ null,
+ null,
+ null,
+ "191.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "191.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "166.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 310,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 156,
+ 309,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "166.0000",
+ "191.0000",
+ null,
+ "0.0000",
+ "166.0000",
+ "191.0000",
+ "5.0000",
+ null,
+ "000000155",
+ "1,2",
+ "USD",
+ "soccerfanatic22@gmail.com",
+ "Olivia",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-04 16:30:48",
+ "2023-04-23 23:37:00",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 156,
+ "complete",
+ "complete",
+ null,
+ "c726cb2cd1351201c318140706b28261",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "-44.4000",
+ null,
+ null,
+ null,
+ "202.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "222.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-44.4000",
+ null,
+ null,
+ null,
+ "202.6000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "222.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 312,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 157,
+ 311,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "222.0000",
+ "202.6000",
+ null,
+ "0.0000",
+ "222.0000",
+ "202.6000",
+ "4.0000",
+ null,
+ "000000156",
+ "2,3",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-28 01:26:41",
+ "2023-04-23 23:37:00",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 158,
+ "complete",
+ "complete",
+ null,
+ "c1ee3f860a6d5de39a0aa16ba99c3fb9",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 28,
+ "-45.6000",
+ null,
+ null,
+ null,
+ "202.3900",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "227.9900",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-45.6000",
+ null,
+ null,
+ null,
+ "202.3900",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "227.9900",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 316,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 159,
+ 315,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "227.9900",
+ "202.3900",
+ null,
+ "0.0000",
+ "227.9900",
+ "202.3900",
+ "2.0000",
+ null,
+ "000000158",
+ "2,3",
+ "USD",
+ "lisa.green@hotmail.com",
+ "Lisa",
+ "Green",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-03 19:03:20",
+ "2023-04-23 23:37:01",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 160,
+ "complete",
+ "complete",
+ null,
+ "d2272c2da7e529f9c025085e35dfbdbc",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "124.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "104.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "124.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "104.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 320,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 161,
+ 319,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "104.0000",
+ "124.0000",
+ null,
+ "0.0000",
+ "104.0000",
+ "124.0000",
+ "3.0000",
+ null,
+ "000000160",
+ "1,2",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-19 05:04:25",
+ "2023-04-23 23:37:02",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 161,
+ "complete",
+ "complete",
+ null,
+ "90ade5ec63068096802a65c81660c362",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "0.0000",
+ null,
+ null,
+ null,
+ "199.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "174.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "199.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "174.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 322,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 162,
+ 321,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "174.0000",
+ "199.0000",
+ null,
+ "0.0000",
+ "174.0000",
+ "199.0000",
+ "4.0000",
+ null,
+ "000000161",
+ "1,2",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-30 09:45:39",
+ "2023-04-23 23:37:02",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 163,
+ "complete",
+ "complete",
+ null,
+ "1e598670f9c73204d91aa48ff010e3b0",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "87.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "77.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "87.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "77.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 326,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 164,
+ 325,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "77.0000",
+ "87.0000",
+ null,
+ "0.0000",
+ "77.0000",
+ "87.0000",
+ "2.0000",
+ null,
+ "000000163",
+ "2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-10-01 14:47:10",
+ "2023-04-23 23:37:04",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 164,
+ "complete",
+ "complete",
+ null,
+ "1df2132c94d297940a92de32c04f701e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "0.0000",
+ null,
+ null,
+ null,
+ "152.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "132.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "152.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "132.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 328,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 165,
+ 327,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "132.0000",
+ "152.0000",
+ null,
+ "0.0000",
+ "132.0000",
+ "152.0000",
+ "4.0000",
+ null,
+ "000000164",
+ "1,2",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-10 22:25:32",
+ "2023-04-23 23:37:04",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 166,
+ "complete",
+ "complete",
+ null,
+ "32d88d96fa3a3451fa4968fa935fd29f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "-43.4100",
+ null,
+ null,
+ null,
+ "198.6400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "217.0500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-43.4100",
+ null,
+ null,
+ null,
+ "198.6400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "217.0500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 332,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 167,
+ 331,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "217.0500",
+ "198.6400",
+ null,
+ "0.0000",
+ "217.0500",
+ "198.6400",
+ "5.0000",
+ null,
+ "000000166",
+ "2,3",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-11-03 08:56:22",
+ "2023-04-23 23:37:05",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 169,
+ "complete",
+ "complete",
+ null,
+ "fbab3d9857dae3e04047397cadc38134",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 26,
+ "-20.9600",
+ null,
+ null,
+ null,
+ "232.8400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "228.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-20.9600",
+ null,
+ null,
+ null,
+ "232.8400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "228.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 338,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 170,
+ 337,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "228.8000",
+ "232.8400",
+ null,
+ "0.0000",
+ "228.8000",
+ "232.8400",
+ "1.0000",
+ null,
+ "000000169",
+ "2,3",
+ "USD",
+ "jennifer.white@yahoo.com",
+ "Jennifer",
+ "White",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-21 15:46:04",
+ "2023-04-23 23:37:06",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 179,
+ "complete",
+ "complete",
+ null,
+ "32589b7838b749bc8696f12d6aceaf82",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "127.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 358,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 180,
+ 357,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "117.0000",
+ "127.0000",
+ null,
+ "0.0000",
+ "117.0000",
+ "127.0000",
+ "2.0000",
+ null,
+ "000000179",
+ "2",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-26 04:54:34",
+ "2023-04-23 23:37:10",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 181,
+ "complete",
+ "complete",
+ null,
+ "11a6dac0b8880259a8a2cff6a0a28e40",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 17,
+ "0.0000",
+ null,
+ null,
+ null,
+ "151.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "126.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "151.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "126.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 362,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 182,
+ 361,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "126.4000",
+ "151.4000",
+ null,
+ "0.0000",
+ "126.4000",
+ "151.4000",
+ "2.0000",
+ null,
+ "000000181",
+ "1,2",
+ "USD",
+ "harrypotterfan1@gmail.com",
+ "Lily",
+ "Potter",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-02 08:28:56",
+ "2023-04-23 23:37:11",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 182,
+ "complete",
+ "complete",
+ null,
+ "a67d393ee2115f585f01276cdc12556a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 17,
+ "0.0000",
+ null,
+ null,
+ null,
+ "91.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "81.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "91.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "81.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 364,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 183,
+ 363,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "81.0000",
+ "91.0000",
+ null,
+ "0.0000",
+ "81.0000",
+ "91.0000",
+ "2.0000",
+ null,
+ "000000182",
+ "2",
+ "USD",
+ "harrypotterfan1@gmail.com",
+ "Lily",
+ "Potter",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-28 22:47:27",
+ "2023-04-23 23:37:11",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 184,
+ "complete",
+ "complete",
+ null,
+ "fe047cd989089d585dedfc6e725c1b3b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 33,
+ "0.0000",
+ null,
+ null,
+ null,
+ "163.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "143.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "163.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "143.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 368,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 185,
+ 367,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "143.0000",
+ "163.0000",
+ null,
+ "0.0000",
+ "143.0000",
+ "163.0000",
+ "3.0000",
+ null,
+ "000000184",
+ "2",
+ "USD",
+ "adam.garcia@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-12 00:29:39",
+ "2023-04-23 23:37:12",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 186,
+ "complete",
+ "complete",
+ null,
+ "cd059753aeb8d70edc8c5a12b3fd1bdd",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 372,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 187,
+ 371,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ "1.0000",
+ null,
+ "000000186",
+ null,
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-03 16:32:37",
+ "2023-04-23 23:37:13",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 187,
+ "complete",
+ "complete",
+ null,
+ "7fb8f515bd810f718bacc34f05d54cce",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "88.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "78.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "88.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "78.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 374,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 188,
+ 373,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "78.0000",
+ "88.0000",
+ null,
+ "0.0000",
+ "78.0000",
+ "88.0000",
+ "2.0000",
+ null,
+ "000000187",
+ "2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-06 09:31:56",
+ "2023-04-23 23:37:14",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 188,
+ "complete",
+ "complete",
+ null,
+ "48429d8b60f0c0d2c9c68558947734d5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 14,
+ "0.0000",
+ null,
+ null,
+ null,
+ "71.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "61.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "71.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "61.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 376,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 189,
+ 375,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "61.0000",
+ "71.0000",
+ null,
+ "0.0000",
+ "61.0000",
+ "71.0000",
+ "2.0000",
+ null,
+ "000000188",
+ "1,2",
+ "USD",
+ "johndoe123@gmail.com",
+ "John",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-11-10 13:25:26",
+ "2023-04-23 23:37:14",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 189,
+ "complete",
+ "complete",
+ null,
+ "a30808634605eb4ba139de1dfb5ab75c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 18,
+ "-33.5600",
+ null,
+ null,
+ null,
+ "251.2400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "259.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-33.5600",
+ null,
+ null,
+ null,
+ "251.2400",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "259.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 378,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 190,
+ 377,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "259.8000",
+ "251.2400",
+ null,
+ "0.0000",
+ "259.8000",
+ "251.2400",
+ "4.0000",
+ null,
+ "000000189",
+ "1,2,3",
+ "USD",
+ "avidreader99@yahoo.com",
+ "Grace",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-03 05:43:14",
+ "2023-04-23 23:37:14",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 190,
+ "complete",
+ "complete",
+ null,
+ "680d22866c64de668f53067703ba30a4",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "145.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "135.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "145.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "135.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 380,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 191,
+ 379,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "135.0000",
+ "145.0000",
+ null,
+ "0.0000",
+ "135.0000",
+ "145.0000",
+ "2.0000",
+ null,
+ "000000190",
+ "2",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-12 14:28:46",
+ "2023-04-23 23:37:15",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 192,
+ "complete",
+ "complete",
+ null,
+ "5867923db18824275f949c98fd1e7c20",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 24,
+ "0.0000",
+ null,
+ null,
+ null,
+ "109.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "99.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "109.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "99.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 384,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 193,
+ 383,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "99.0000",
+ "109.0000",
+ null,
+ "0.0000",
+ "99.0000",
+ "109.0000",
+ "2.0000",
+ null,
+ "000000192",
+ "2",
+ "USD",
+ "musiclover99@hotmail.com",
+ "Emma",
+ "Davis",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-03 22:22:37",
+ "2023-04-23 23:37:16",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 196,
+ "complete",
+ "complete",
+ null,
+ "92c80b31a467087db0cd1addd134a97f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 31,
+ "0.0000",
+ null,
+ null,
+ null,
+ "189.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "169.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "189.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "169.8000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 392,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 197,
+ 391,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "169.8000",
+ "189.8000",
+ null,
+ "0.0000",
+ "169.8000",
+ "189.8000",
+ "3.0000",
+ null,
+ "000000196",
+ "1,2",
+ "USD",
+ "jason.miller@yahoo.com",
+ "Jason",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-11 14:38:15",
+ "2023-04-23 23:37:17",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 197,
+ "complete",
+ "complete",
+ null,
+ "0c928e11da72159c5b0b64496cbb23e2",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "106.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "91.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "106.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "91.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 394,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 198,
+ 393,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "91.0000",
+ "106.0000",
+ null,
+ "0.0000",
+ "91.0000",
+ "106.0000",
+ "2.0000",
+ null,
+ "000000197",
+ "2",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-10 18:40:01",
+ "2023-04-23 23:37:18",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 199,
+ "complete",
+ "complete",
+ null,
+ "36ac49e8c9af7938057c375ff51cb9c2",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "47.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "42.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "47.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "42.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 398,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 200,
+ 397,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "42.0000",
+ "47.0000",
+ null,
+ "0.0000",
+ "42.0000",
+ "47.0000",
+ "1.0000",
+ null,
+ "000000199",
+ null,
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-22 07:10:53",
+ "2023-04-23 23:37:19",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 200,
+ "complete",
+ "complete",
+ null,
+ "73135f9ed95adbf57a97dbe1bc85e6ca",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "191.5000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "171.5000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "191.5000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "171.5000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 400,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 201,
+ 399,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "171.5000",
+ "191.5000",
+ null,
+ "0.0000",
+ "171.5000",
+ "191.5000",
+ "4.0000",
+ null,
+ "000000200",
+ "2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-12 11:04:56",
+ "2023-04-23 23:37:19",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 201,
+ "complete",
+ "complete",
+ null,
+ "70427a331bc231a6c423c22f1804f73c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "176.1000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "151.1000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "176.1000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "151.1000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 402,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 202,
+ 401,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "151.1000",
+ "176.1000",
+ null,
+ "0.0000",
+ "151.1000",
+ "176.1000",
+ "5.0000",
+ null,
+ "000000201",
+ "2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-11-20 06:13:21",
+ "2023-04-23 23:37:19",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 202,
+ "complete",
+ "complete",
+ null,
+ "2561363573dfc300274184a52cb86694",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 8,
+ "-40.2000",
+ null,
+ null,
+ null,
+ "180.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "201.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-40.2000",
+ null,
+ null,
+ null,
+ "180.8000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "201.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 404,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 203,
+ 403,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "201.0000",
+ "180.8000",
+ null,
+ "0.0000",
+ "201.0000",
+ "180.8000",
+ "4.0000",
+ null,
+ "000000202",
+ "2,3",
+ "USD",
+ "marym@gmail.com",
+ "Mary",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-23 21:54:50",
+ "2023-04-23 23:37:20",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 203,
+ "complete",
+ "complete",
+ null,
+ "41d600a2ad2945063236e4a66192ba3e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "29.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "24.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 406,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 204,
+ 405,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ null,
+ "0.0000",
+ "24.0000",
+ "29.0000",
+ "1.0000",
+ null,
+ "000000203",
+ null,
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-19 12:41:31",
+ "2023-04-23 23:37:20",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 205,
+ "complete",
+ "complete",
+ null,
+ "eebc247d8c9fbcef1f91ed57ceac0cfb",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 9,
+ "0.0000",
+ null,
+ null,
+ null,
+ "108.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "93.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "108.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "93.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 410,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 206,
+ 409,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "93.0000",
+ "108.0000",
+ null,
+ "0.0000",
+ "93.0000",
+ "108.0000",
+ "2.0000",
+ null,
+ "000000205",
+ "2",
+ "USD",
+ "john.lee@yahoo.com",
+ "John",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-27 07:53:23",
+ "2023-04-23 23:37:21",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 207,
+ "complete",
+ "complete",
+ null,
+ "c3fe3205ca276bba9eb7b9e1a585763a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 28,
+ "0.0000",
+ null,
+ null,
+ null,
+ "67.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "57.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "67.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "57.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 414,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 208,
+ 413,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "57.0000",
+ "67.0000",
+ null,
+ "0.0000",
+ "57.0000",
+ "67.0000",
+ "2.0000",
+ null,
+ "000000207",
+ "2",
+ "USD",
+ "lisa.green@hotmail.com",
+ "Lisa",
+ "Green",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-15 20:36:18",
+ "2023-04-23 23:37:22",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 208,
+ "complete",
+ "complete",
+ null,
+ "fe5eb902be2344fa443c73b731961f99",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "66.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "56.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "66.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "56.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 416,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 209,
+ 415,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "56.0000",
+ "66.0000",
+ null,
+ "0.0000",
+ "56.0000",
+ "66.0000",
+ "1.0000",
+ null,
+ "000000208",
+ "2",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-05 12:45:31",
+ "2023-04-23 23:37:22",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 213,
+ "complete",
+ "complete",
+ null,
+ "de971b1d32c60f1b1d21a66f36caa99a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "130.6000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "115.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "130.6000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "115.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 426,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 214,
+ 425,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "115.6000",
+ "130.6000",
+ null,
+ "0.0000",
+ "115.6000",
+ "130.6000",
+ "2.0000",
+ null,
+ "000000213",
+ "2",
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-20 09:11:20",
+ "2023-04-23 23:37:24",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 214,
+ "complete",
+ "complete",
+ null,
+ "d73e369e8d7c2962750609aaf8aca3df",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 33,
+ "0.0000",
+ null,
+ null,
+ null,
+ "21.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "16.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "21.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "16.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 428,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 215,
+ 427,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "16.0000",
+ "21.0000",
+ null,
+ "0.0000",
+ "16.0000",
+ "21.0000",
+ "0.0000",
+ null,
+ "000000214",
+ null,
+ "USD",
+ "adam.garcia@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-11-07 18:55:03",
+ "2023-04-23 23:37:25",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 215,
+ "complete",
+ "complete",
+ null,
+ "7a3ea490840db7df0d032966673c228a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 430,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 216,
+ 429,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ "1.0000",
+ null,
+ "000000215",
+ "1",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-09-24 23:34:31",
+ "2023-04-23 23:37:25",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 216,
+ "complete",
+ "complete",
+ null,
+ "40e72a6f88be56e384630587bb68d761",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "173.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "158.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "173.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "158.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 432,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 217,
+ 431,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "158.0000",
+ "173.0000",
+ null,
+ "0.0000",
+ "158.0000",
+ "173.0000",
+ "3.0000",
+ null,
+ "000000216",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-02 12:40:22",
+ "2023-04-23 23:37:25",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 217,
+ "complete",
+ "complete",
+ null,
+ "6376c237406cb6657db3e2885a4ebf1d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "121.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "121.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "106.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 434,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 218,
+ 433,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "106.0000",
+ "121.0000",
+ null,
+ "0.0000",
+ "106.0000",
+ "121.0000",
+ "2.0000",
+ null,
+ "000000217",
+ "1,2",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-01 18:54:18",
+ "2023-04-23 23:37:26",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 218,
+ "complete",
+ "complete",
+ null,
+ "de6c1f7e5d971f6d403269d787fdf517",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "-46.8000",
+ null,
+ null,
+ null,
+ "212.2000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "234.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-46.8000",
+ null,
+ null,
+ null,
+ "212.2000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "234.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 436,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 219,
+ 435,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "234.0000",
+ "212.2000",
+ null,
+ "0.0000",
+ "234.0000",
+ "212.2000",
+ "5.0000",
+ null,
+ "000000218",
+ "2,3",
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-31 12:04:25",
+ "2023-04-23 23:37:26",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 223,
+ "complete",
+ "complete",
+ null,
+ "6442a28f9cabeefd115b7407273eee4e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "37.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "32.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 446,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 224,
+ 445,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ null,
+ "0.0000",
+ "32.0000",
+ "37.0000",
+ "1.0000",
+ null,
+ "000000223",
+ null,
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-29 08:37:54",
+ "2023-04-23 23:37:28",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 225,
+ "complete",
+ "complete",
+ null,
+ "06a8e6ff8a71e37adeeacb468f079e22",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 3,
+ "0.0000",
+ null,
+ null,
+ null,
+ "122.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "107.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "122.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "107.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 450,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 226,
+ 449,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "107.0000",
+ "122.0000",
+ null,
+ "0.0000",
+ "107.0000",
+ "122.0000",
+ "3.0000",
+ null,
+ "000000225",
+ "2",
+ "USD",
+ "jane.doe@hotmail.com",
+ "Jane",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-10-29 04:57:40",
+ "2023-04-23 23:37:29",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 228,
+ "complete",
+ "complete",
+ null,
+ "d356d207a002d835d7b691e9a14dd777",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "0.0000",
+ null,
+ null,
+ null,
+ "59.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "54.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "59.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "54.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 456,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 229,
+ 455,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "54.0000",
+ "59.0000",
+ null,
+ "0.0000",
+ "54.0000",
+ "59.0000",
+ "1.0000",
+ null,
+ "000000228",
+ "2",
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-14 20:53:37",
+ "2023-04-23 23:37:30",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 230,
+ "complete",
+ "complete",
+ null,
+ "09168764abd59384e2d0c8a416ef8189",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "93.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "83.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "93.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "83.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 460,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 231,
+ 459,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "83.4000",
+ "93.4000",
+ null,
+ "0.0000",
+ "83.4000",
+ "93.4000",
+ "2.0000",
+ null,
+ "000000230",
+ "2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-19 12:11:51",
+ "2023-04-23 23:37:31",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 231,
+ "complete",
+ "complete",
+ null,
+ "f77788dca52df98e8e0657cdd3d3b5a5",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 12,
+ "0.0000",
+ null,
+ null,
+ null,
+ "132.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "122.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "132.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "122.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 462,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 232,
+ 461,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "122.0000",
+ "132.0000",
+ null,
+ "0.0000",
+ "122.0000",
+ "132.0000",
+ "1.0000",
+ null,
+ "000000231",
+ "2",
+ "USD",
+ "lisa.kim@gmail.com",
+ "Lisa",
+ "Kim",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-07 07:02:46",
+ "2023-04-23 23:37:32",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 233,
+ "complete",
+ "complete",
+ null,
+ "2434448421208c3a36013300d7da98c8",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 11,
+ "0.0000",
+ null,
+ null,
+ null,
+ "77.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "67.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "77.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "67.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 466,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 234,
+ 465,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "67.4000",
+ "77.4000",
+ null,
+ "0.0000",
+ "67.4000",
+ "77.4000",
+ "2.0000",
+ null,
+ "000000233",
+ "2",
+ "USD",
+ "daniel.jackson@hotmail.com",
+ "Daniel",
+ "Jackson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-09 12:52:48",
+ "2023-04-23 23:37:32",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 235,
+ "complete",
+ "complete",
+ null,
+ "3f969a9b7a3264ae33b29945eab7cc4a",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 12,
+ "0.0000",
+ null,
+ null,
+ null,
+ "131.1000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "116.1000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "131.1000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "116.1000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 470,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 236,
+ 469,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "116.1000",
+ "131.1000",
+ null,
+ "0.0000",
+ "116.1000",
+ "131.1000",
+ "3.0000",
+ null,
+ "000000235",
+ "2",
+ "USD",
+ "lisa.kim@gmail.com",
+ "Lisa",
+ "Kim",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-23 12:42:48",
+ "2023-04-23 23:37:33",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 236,
+ "complete",
+ "complete",
+ null,
+ "afdc0d4e1f5a1adc49b2809631028a05",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "107.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "107.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "97.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 472,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 237,
+ 471,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "97.0000",
+ "107.0000",
+ null,
+ "0.0000",
+ "97.0000",
+ "107.0000",
+ "2.0000",
+ null,
+ "000000236",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-10 13:34:06",
+ "2023-04-23 23:37:34",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 237,
+ "complete",
+ "complete",
+ null,
+ "89be5fd710025d2281b0e94ba0b3bab7",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 7,
+ "0.0000",
+ null,
+ null,
+ null,
+ "202.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "177.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "202.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "177.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 474,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 238,
+ 473,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "177.0000",
+ "202.0000",
+ null,
+ "0.0000",
+ "177.0000",
+ "202.0000",
+ "4.0000",
+ null,
+ "000000237",
+ "1,2",
+ "USD",
+ "bob123@hotmail.com",
+ "Bob",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-06 10:38:18",
+ "2023-04-23 23:37:34",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 238,
+ "complete",
+ "complete",
+ null,
+ "3048e0adcd2d9a32b6cc7be6b49f93b6",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "171.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "146.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "171.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "146.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 476,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 239,
+ 475,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "146.0000",
+ "171.0000",
+ null,
+ "0.0000",
+ "146.0000",
+ "171.0000",
+ "2.0000",
+ null,
+ "000000238",
+ "1,2",
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-20 23:40:22",
+ "2023-04-23 23:37:35",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 239,
+ "complete",
+ "complete",
+ null,
+ "3b2e98caf76e8f83e4520457b31141b1",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "0.0000",
+ null,
+ null,
+ null,
+ "82.6000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "72.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "82.6000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "72.6000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 478,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 240,
+ 477,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "72.6000",
+ "82.6000",
+ null,
+ "0.0000",
+ "72.6000",
+ "82.6000",
+ "1.0000",
+ null,
+ "000000239",
+ "2",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-18 14:20:21",
+ "2023-04-23 23:37:35",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 240,
+ "complete",
+ "complete",
+ null,
+ "f01a4d4cd2de32f3b470ff204dba354e",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "57.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "47.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "57.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "47.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 480,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 241,
+ 479,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "47.0000",
+ "57.0000",
+ null,
+ "0.0000",
+ "47.0000",
+ "57.0000",
+ "2.0000",
+ null,
+ "000000240",
+ null,
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-03-25 15:53:22",
+ "2023-04-23 23:37:35",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 243,
+ "complete",
+ "complete",
+ null,
+ "cfda9229f3c3f50c1865fcdd3cd7a661",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 16,
+ "-43.8500",
+ null,
+ null,
+ null,
+ "292.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "311.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-43.8500",
+ null,
+ null,
+ null,
+ "292.4000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "311.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 486,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 244,
+ 485,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "311.2500",
+ "292.4000",
+ null,
+ "0.0000",
+ "311.2500",
+ "292.4000",
+ "3.0000",
+ null,
+ "000000243",
+ "2,3",
+ "USD",
+ "coolcat321@hotmail.com",
+ "Samantha",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-28 05:27:29",
+ "2023-04-23 23:37:37",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 247,
+ "complete",
+ "complete",
+ null,
+ "068afb0836b35b0639cafb1c18dcc0e3",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "60.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "60.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 494,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 248,
+ 493,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "55.0000",
+ "60.0000",
+ null,
+ "0.0000",
+ "55.0000",
+ "60.0000",
+ "0.0000",
+ null,
+ "000000247",
+ "2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-14 20:23:24",
+ "2023-04-23 23:37:38",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 250,
+ "complete",
+ "complete",
+ null,
+ "461f17639624933288874a5ba029a44c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 11,
+ "0.0000",
+ null,
+ null,
+ null,
+ "25.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "25.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 500,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 251,
+ 499,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "20.0000",
+ "25.0000",
+ null,
+ "0.0000",
+ "20.0000",
+ "25.0000",
+ "1.0000",
+ null,
+ "000000250",
+ null,
+ "USD",
+ "daniel.jackson@hotmail.com",
+ "Daniel",
+ "Jackson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-04 03:58:12",
+ "2023-04-23 23:37:39",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 251,
+ "complete",
+ "complete",
+ null,
+ "838b988698136344bdf82cdd0d4f1dcf",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 36,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "34.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "29.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 502,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 252,
+ 501,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ null,
+ "0.0000",
+ "29.0000",
+ "34.0000",
+ "1.0000",
+ null,
+ "000000251",
+ null,
+ "USD",
+ "alexander.thomas@hotmail.com",
+ "Alexander",
+ "Thomas",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-03 02:17:07",
+ "2023-04-23 23:37:40",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 253,
+ "complete",
+ "complete",
+ null,
+ "71ddeea75288f3abcb0134968029a25b",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "32.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "27.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "32.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "27.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 506,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 254,
+ 505,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "27.0000",
+ "32.0000",
+ null,
+ "0.0000",
+ "27.0000",
+ "32.0000",
+ "0.0000",
+ null,
+ "000000253",
+ null,
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-17 20:16:03",
+ "2023-04-23 23:37:41",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 256,
+ "complete",
+ "complete",
+ null,
+ "7b257b4f5856d33d5f3499c7efa566f0",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 25,
+ "0.0000",
+ null,
+ null,
+ null,
+ "89.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "84.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "89.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "84.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 512,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 257,
+ 511,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "84.0000",
+ "89.0000",
+ null,
+ "0.0000",
+ "84.0000",
+ "89.0000",
+ "1.0000",
+ null,
+ "000000256",
+ "2",
+ "USD",
+ "gamingpro456@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-14 05:22:46",
+ "2023-04-23 23:37:42",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 257,
+ "complete",
+ "complete",
+ null,
+ "6e5b92bb4285a327d4c089e20742b963",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 2,
+ "0.0000",
+ null,
+ null,
+ null,
+ "164.4500",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "149.4500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "164.4500",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "149.4500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 514,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 258,
+ 513,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "149.4500",
+ "164.4500",
+ null,
+ "0.0000",
+ "149.4500",
+ "164.4500",
+ "3.0000",
+ null,
+ "000000257",
+ "2",
+ "USD",
+ "john.smith.xyz@gmail.com",
+ "John",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-28 12:58:51",
+ "2023-04-23 23:37:42",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 258,
+ "complete",
+ "complete",
+ null,
+ "0008f6a7dae4942a73e3f6653573b2de",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 29,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "215.0000",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "190.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 516,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 259,
+ 515,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "190.0000",
+ "215.0000",
+ null,
+ "0.0000",
+ "190.0000",
+ "215.0000",
+ "4.0000",
+ null,
+ "000000258",
+ "1,2",
+ "USD",
+ "michael.nguyen@yahoo.com",
+ "Michael",
+ "Nguyen",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-06 05:33:13",
+ "2023-04-23 23:37:43",
+ 5,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 260,
+ "complete",
+ "complete",
+ null,
+ "f21d559c5c09a6dfbb932cbbe52778a4",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 9,
+ "0.0000",
+ null,
+ null,
+ null,
+ "219.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "199.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "219.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "199.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 520,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 261,
+ 519,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "199.0000",
+ "219.0000",
+ null,
+ "0.0000",
+ "199.0000",
+ "219.0000",
+ "3.0000",
+ null,
+ "000000260",
+ "1,2",
+ "USD",
+ "john.lee@yahoo.com",
+ "John",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-08 07:26:01",
+ "2023-04-23 23:37:44",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 262,
+ "complete",
+ "complete",
+ null,
+ "c8e3a991553de4d87291e8a53597c729",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 14,
+ "0.0000",
+ null,
+ null,
+ null,
+ "163.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "143.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "163.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "143.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 524,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 263,
+ 523,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "143.0000",
+ "163.0000",
+ null,
+ "0.0000",
+ "143.0000",
+ "163.0000",
+ "4.0000",
+ null,
+ "000000262",
+ "1,2",
+ "USD",
+ "johndoe123@gmail.com",
+ "John",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-04-22 03:17:11",
+ "2023-04-23 23:37:44",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 263,
+ "complete",
+ "complete",
+ null,
+ "4c137a50739b9c526f0c8571d4a041b6",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 14,
+ "0.0000",
+ null,
+ null,
+ null,
+ "136.9900",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "126.9900",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "136.9900",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "126.9900",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 526,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 264,
+ 525,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "126.9900",
+ "136.9900",
+ null,
+ "0.0000",
+ "126.9900",
+ "136.9900",
+ "2.0000",
+ null,
+ "000000263",
+ "2",
+ "USD",
+ "johndoe123@gmail.com",
+ "John",
+ "Doe",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-01-12 05:28:28",
+ "2023-04-23 23:37:45",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 264,
+ "complete",
+ "complete",
+ null,
+ "5e1bd4707d06560d0e12f22f55914034",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 19,
+ "-44.6800",
+ null,
+ null,
+ null,
+ "203.7200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "223.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-44.6800",
+ null,
+ null,
+ null,
+ "203.7200",
+ "25.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "223.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 528,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 265,
+ 527,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "223.4000",
+ "203.7200",
+ null,
+ "0.0000",
+ "223.4000",
+ "203.7200",
+ "3.0000",
+ null,
+ "000000264",
+ "2,3",
+ "USD",
+ "artsygal123@hotmail.com",
+ "Lucy",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-06 18:46:31",
+ "2023-04-23 23:37:45",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "25.0000",
+ "25.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 268,
+ "complete",
+ "complete",
+ null,
+ "ddfe30f0a2a9193fd24d6abfd2e32a90",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "179.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "164.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "179.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "164.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 536,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 269,
+ 535,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "164.0000",
+ "179.0000",
+ null,
+ "0.0000",
+ "164.0000",
+ "179.0000",
+ "3.0000",
+ null,
+ "000000268",
+ "2",
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-02-11 13:49:26",
+ "2023-04-23 23:37:47",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 269,
+ "complete",
+ "complete",
+ null,
+ "45cbe3a63cfcd41e15f99a9cb3317c5f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 22,
+ "0.0000",
+ null,
+ null,
+ null,
+ "76.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "66.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "76.4000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "66.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 538,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 270,
+ 537,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "66.4000",
+ "76.4000",
+ null,
+ "0.0000",
+ "66.4000",
+ "76.4000",
+ "2.0000",
+ null,
+ "000000269",
+ "2",
+ "USD",
+ "fashionista88@gmail.com",
+ "Sophie",
+ "Taylor",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-08-24 03:13:41",
+ "2023-04-23 23:37:47",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 270,
+ "complete",
+ "complete",
+ null,
+ "cb346a45afca1f3bc1ec9f69e0c327c7",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 21,
+ "0.0000",
+ null,
+ null,
+ null,
+ "60.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "60.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "55.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 540,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 271,
+ 539,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "55.0000",
+ "60.0000",
+ null,
+ "0.0000",
+ "55.0000",
+ "60.0000",
+ "0.0000",
+ null,
+ "000000270",
+ "2",
+ "USD",
+ "beachlover99@yahoo.com",
+ "Ava",
+ "Brown",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-01 04:48:33",
+ "2023-04-23 23:37:48",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 274,
+ "complete",
+ "complete",
+ null,
+ "911fd19617422bf0d0e6a10667516199",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 15,
+ "0.0000",
+ null,
+ null,
+ null,
+ "158.2500",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "148.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "158.2500",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "148.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 548,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 275,
+ 547,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "148.2500",
+ "158.2500",
+ null,
+ "0.0000",
+ "148.2500",
+ "158.2500",
+ "1.0000",
+ null,
+ "000000274",
+ "2",
+ "USD",
+ "janesmith456@yahoo.com",
+ "Jane",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-13 10:45:46",
+ "2023-04-23 23:37:49",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 276,
+ "complete",
+ "complete",
+ null,
+ "8301960b548e9f51ec715ee3a7ce729c",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "150.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "135.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "150.2000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "135.2000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 552,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 277,
+ 551,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "135.2000",
+ "150.2000",
+ null,
+ "0.0000",
+ "135.2000",
+ "150.2000",
+ "3.0000",
+ null,
+ "000000276",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-08 08:05:52",
+ "2023-04-23 23:37:50",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 277,
+ "complete",
+ "complete",
+ null,
+ "7901b4d912f1b9683da157474c3465a3",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 32,
+ "0.0000",
+ null,
+ null,
+ null,
+ "148.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "133.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "148.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "133.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 554,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 278,
+ 553,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "133.0000",
+ "148.0000",
+ null,
+ "0.0000",
+ "133.0000",
+ "148.0000",
+ "2.0000",
+ null,
+ "000000277",
+ "2",
+ "USD",
+ "katie.wong@hotmail.com",
+ "Katie",
+ "Wong",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-04-03 17:11:25",
+ "2023-04-23 23:37:51",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 281,
+ "complete",
+ "complete",
+ null,
+ "8b274c9a40d2591dcc8bd570c21b9903",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 8,
+ "0.0000",
+ null,
+ null,
+ null,
+ "132.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "132.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "117.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 562,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 282,
+ 561,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "117.0000",
+ "132.0000",
+ null,
+ "0.0000",
+ "117.0000",
+ "132.0000",
+ "3.0000",
+ null,
+ "000000281",
+ "1,2",
+ "USD",
+ "marym@gmail.com",
+ "Mary",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-23 09:48:44",
+ "2023-04-23 23:37:52",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 282,
+ "complete",
+ "complete",
+ null,
+ "fb0c94b50f0c4aa0e90692c93847688f",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 34,
+ "0.0000",
+ null,
+ null,
+ null,
+ "156.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "141.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "156.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "141.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 564,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 283,
+ 563,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "141.0000",
+ "156.0000",
+ null,
+ "0.0000",
+ "141.0000",
+ "156.0000",
+ "1.0000",
+ null,
+ "000000282",
+ "1,2",
+ "USD",
+ "brian.smith@yahoo.com",
+ "Brian",
+ "Smith",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-03-15 10:02:48",
+ "2023-04-23 23:37:53",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 284,
+ "complete",
+ "complete",
+ null,
+ "e3279bb2e15fe3194fb09d97a98ab5e4",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 25,
+ "0.0000",
+ null,
+ null,
+ null,
+ "101.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "86.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "101.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "86.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 568,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 285,
+ 567,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "86.0000",
+ "101.0000",
+ null,
+ "0.0000",
+ "86.0000",
+ "101.0000",
+ "2.0000",
+ null,
+ "000000284",
+ "2",
+ "USD",
+ "gamingpro456@gmail.com",
+ "Adam",
+ "Garcia",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-05-01 00:42:12",
+ "2023-04-23 23:37:54",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 285,
+ "complete",
+ "complete",
+ null,
+ "df89f7c47c2dc90da4bdc4c994edb463",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 20,
+ "0.0000",
+ null,
+ null,
+ null,
+ "82.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "72.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "82.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "72.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 570,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 286,
+ 569,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "72.0000",
+ "82.0000",
+ null,
+ "0.0000",
+ "72.0000",
+ "82.0000",
+ "2.0000",
+ null,
+ "000000285",
+ "1,2",
+ "USD",
+ "soccerfanatic22@gmail.com",
+ "Olivia",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-02-03 06:27:36",
+ "2023-04-23 23:37:54",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 286,
+ "complete",
+ "complete",
+ null,
+ "a8bb4a4b327cbec5d44e63e499167234",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 20,
+ "0.0000",
+ null,
+ null,
+ null,
+ "101.2500",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "91.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "101.2500",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "91.2500",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 572,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 287,
+ 571,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "91.2500",
+ "101.2500",
+ null,
+ "0.0000",
+ "91.2500",
+ "101.2500",
+ "2.0000",
+ null,
+ "000000286",
+ "2",
+ "USD",
+ "soccerfanatic22@gmail.com",
+ "Olivia",
+ "Lee",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-07-03 03:10:23",
+ "2023-04-23 23:37:55",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 287,
+ "complete",
+ "complete",
+ null,
+ "faea9d83d4d5b5e6b10534c4dc06e020",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 23,
+ "0.0000",
+ null,
+ null,
+ null,
+ "44.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "39.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "44.0000",
+ "5.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "39.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "1.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 574,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 288,
+ 573,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "39.0000",
+ "44.0000",
+ null,
+ "0.0000",
+ "39.0000",
+ "44.0000",
+ "1.0000",
+ null,
+ "000000287",
+ null,
+ "USD",
+ "fitnessjunkie22@yahoo.com",
+ "Alex",
+ "Johnson",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-05-29 13:53:37",
+ "2023-04-23 23:37:55",
+ 1,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "5.0000",
+ "5.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 288,
+ "complete",
+ "complete",
+ null,
+ "1506d0137373223afaeca84c69da26e6",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 4,
+ "-42.0000",
+ null,
+ null,
+ null,
+ "188.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "210.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "-42.0000",
+ null,
+ null,
+ null,
+ "188.0000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "210.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 576,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 289,
+ 575,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "210.0000",
+ "188.0000",
+ null,
+ "0.0000",
+ "210.0000",
+ "188.0000",
+ "4.0000",
+ null,
+ "000000288",
+ "2,3",
+ "USD",
+ "bbjones@gmail.com",
+ "Bob",
+ "Jones",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2023-01-17 11:52:11",
+ "2023-04-23 23:37:55",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 295,
+ "complete",
+ "complete",
+ null,
+ "a8727d40ee15879c05bb23d74a80f740",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 13,
+ "0.0000",
+ null,
+ null,
+ null,
+ "212.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "192.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "212.4000",
+ "20.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "192.4000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "4.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 590,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 296,
+ 589,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "192.4000",
+ "212.4000",
+ null,
+ "0.0000",
+ "192.4000",
+ "212.4000",
+ "4.0000",
+ null,
+ "000000295",
+ "1,2",
+ "USD",
+ "matt.baker@yahoo.com",
+ "Matt",
+ "Baker",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-06-26 15:40:50",
+ "2023-04-23 23:37:58",
+ 4,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "20.0000",
+ "20.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 297,
+ "complete",
+ "complete",
+ null,
+ "94d7873d82e704ee55d2f5c0382e8a8d",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 5,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "125.0000",
+ "15.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "110.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "3.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 594,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 298,
+ 593,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ null,
+ "0.0000",
+ "110.0000",
+ "125.0000",
+ "3.0000",
+ null,
+ "000000297",
+ "2",
+ "USD",
+ "helloworld@yahoo.com",
+ "Sarah",
+ "Miller",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-12-16 17:23:33",
+ "2023-04-23 23:37:59",
+ 3,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "15.0000",
+ "15.0000",
+ null,
+ null,
+ 0
+ ],
+ [
+ 298,
+ "complete",
+ "complete",
+ null,
+ "201d02fd9cff1f29971b4a894d7ec850",
+ "Flat Rate - Fixed",
+ 0,
+ 1,
+ 27,
+ "0.0000",
+ null,
+ null,
+ null,
+ "84.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "74.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "1.0000",
+ "1.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ "84.0000",
+ "10.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ "0.0000",
+ "0.0000",
+ "74.0000",
+ null,
+ null,
+ null,
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "2.0000",
+ null,
+ null,
+ null,
+ 0,
+ 1,
+ 596,
+ 1,
+ null,
+ 1,
+ 1,
+ null,
+ null,
+ null,
+ 299,
+ 595,
+ null,
+ null,
+ null,
+ null,
+ "0.0000",
+ "74.0000",
+ "84.0000",
+ null,
+ "0.0000",
+ "74.0000",
+ "84.0000",
+ "2.0000",
+ null,
+ "000000298",
+ "2",
+ "USD",
+ "alex.martin@gmail.com",
+ "Alex",
+ "Martin",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ "USD",
+ null,
+ null,
+ null,
+ null,
+ null,
+ "128.2.205.52",
+ "flatrate_flatrate",
+ "USD",
+ "Main Website\nMain Website Store\nDefault Store View",
+ null,
+ null,
+ "2022-11-10 21:16:57",
+ "2023-04-23 23:38:00",
+ 2,
+ null,
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ "0.0000",
+ null,
+ null,
+ null,
+ null,
+ "10.0000",
+ "10.0000",
+ null,
+ null,
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type for product ID 1?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 1;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are in group ID 0?",
+ "sql": "SELECT COUNT(*) FROM customer_entity WHERE group_id = 0;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the invoice with increment ID '000000001'?",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total tax amount for the invoice with entity ID 2.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating vote with vote ID 62?",
+ "sql": "SELECT value FROM rating_option_vote WHERE vote_id = 62;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with the credit memo with ID 1.",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for the sales order address with entity ID 532?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 532;",
+ "answer": [
+ "Florida"
+ ],
+ "sql_execute_result": [
+ [
+ "Florida"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping address ID for the invoice with increment ID '000000002'.",
+ "sql": "SELECT shipping_address_id FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the sales invoice with entity ID 1.",
+ "sql": "SELECT store_id FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the invoice with increment ID '000000001'?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name for the credit memo with increment ID '000000001'.",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 10?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 10;",
+ "answer": [
+ "janesmith@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with entity ID 231 in the catalog.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 231 AND attribute_id = 136 AND store_id = 0;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are available in the directory for locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE locale = 'en_US';",
+ "answer": [
+ "1121"
+ ],
+ "sql_execute_result": [
+ [
+ "Alabama"
+ ],
+ [
+ "Alaska"
+ ],
+ [
+ "American Samoa"
+ ],
+ [
+ "Arizona"
+ ],
+ [
+ "Arkansas"
+ ],
+ [
+ "Armed Forces Africa"
+ ],
+ [
+ "Armed Forces Americas"
+ ],
+ [
+ "Armed Forces Canada"
+ ],
+ [
+ "Armed Forces Europe"
+ ],
+ [
+ "Armed Forces Middle East"
+ ],
+ [
+ "Armed Forces Pacific"
+ ],
+ [
+ "California"
+ ],
+ [
+ "Colorado"
+ ],
+ [
+ "Connecticut"
+ ],
+ [
+ "Delaware"
+ ],
+ [
+ "District of Columbia"
+ ],
+ [
+ "Federated States Of Micronesia"
+ ],
+ [
+ "Florida"
+ ],
+ [
+ "Georgia"
+ ],
+ [
+ "Guam"
+ ],
+ [
+ "Hawaii"
+ ],
+ [
+ "Idaho"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Indiana"
+ ],
+ [
+ "Iowa"
+ ],
+ [
+ "Kansas"
+ ],
+ [
+ "Kentucky"
+ ],
+ [
+ "Louisiana"
+ ],
+ [
+ "Maine"
+ ],
+ [
+ "Marshall Islands"
+ ],
+ [
+ "Maryland"
+ ],
+ [
+ "Massachusetts"
+ ],
+ [
+ "Michigan"
+ ],
+ [
+ "Minnesota"
+ ],
+ [
+ "Mississippi"
+ ],
+ [
+ "Missouri"
+ ],
+ [
+ "Montana"
+ ],
+ [
+ "Nebraska"
+ ],
+ [
+ "Nevada"
+ ],
+ [
+ "New Hampshire"
+ ],
+ [
+ "New Jersey"
+ ],
+ [
+ "New Mexico"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "North Carolina"
+ ],
+ [
+ "North Dakota"
+ ],
+ [
+ "Northern Mariana Islands"
+ ],
+ [
+ "Ohio"
+ ],
+ [
+ "Oklahoma"
+ ],
+ [
+ "Oregon"
+ ],
+ [
+ "Palau"
+ ],
+ [
+ "Pennsylvania"
+ ],
+ [
+ "Puerto Rico"
+ ],
+ [
+ "Rhode Island"
+ ],
+ [
+ "South Carolina"
+ ],
+ [
+ "South Dakota"
+ ],
+ [
+ "Tennessee"
+ ],
+ [
+ "Texas"
+ ],
+ [
+ "Utah"
+ ],
+ [
+ "Vermont"
+ ],
+ [
+ "Virgin Islands"
+ ],
+ [
+ "Virginia"
+ ],
+ [
+ "Washington"
+ ],
+ [
+ "West Virginia"
+ ],
+ [
+ "Wisconsin"
+ ],
+ [
+ "Wyoming"
+ ],
+ [
+ "Alberta"
+ ],
+ [
+ "British Columbia"
+ ],
+ [
+ "Manitoba"
+ ],
+ [
+ "Newfoundland and Labrador"
+ ],
+ [
+ "New Brunswick"
+ ],
+ [
+ "Nova Scotia"
+ ],
+ [
+ "Northwest Territories"
+ ],
+ [
+ "Nunavut"
+ ],
+ [
+ "Ontario"
+ ],
+ [
+ "Prince Edward Island"
+ ],
+ [
+ "Quebec"
+ ],
+ [
+ "Saskatchewan"
+ ],
+ [
+ "Yukon Territory"
+ ],
+ [
+ "Niedersachsen"
+ ],
+ [
+ "Baden-W\u00fcrttemberg"
+ ],
+ [
+ "Bayern"
+ ],
+ [
+ "Berlin"
+ ],
+ [
+ "Brandenburg"
+ ],
+ [
+ "Bremen"
+ ],
+ [
+ "Hamburg"
+ ],
+ [
+ "Hessen"
+ ],
+ [
+ "Mecklenburg-Vorpommern"
+ ],
+ [
+ "Nordrhein-Westfalen"
+ ],
+ [
+ "Rheinland-Pfalz"
+ ],
+ [
+ "Saarland"
+ ],
+ [
+ "Sachsen"
+ ],
+ [
+ "Sachsen-Anhalt"
+ ],
+ [
+ "Schleswig-Holstein"
+ ],
+ [
+ "Th\u00fcringen"
+ ],
+ [
+ "Wien"
+ ],
+ [
+ "Nieder\u00f6sterreich"
+ ],
+ [
+ "Ober\u00f6sterreich"
+ ],
+ [
+ "Salzburg"
+ ],
+ [
+ "K\u00e4rnten"
+ ],
+ [
+ "Steiermark"
+ ],
+ [
+ "Tirol"
+ ],
+ [
+ "Burgenland"
+ ],
+ [
+ "Vorarlberg"
+ ],
+ [
+ "Aargau"
+ ],
+ [
+ "Appenzell Innerrhoden"
+ ],
+ [
+ "Appenzell Ausserrhoden"
+ ],
+ [
+ "Bern"
+ ],
+ [
+ "Basel-Landschaft"
+ ],
+ [
+ "Basel-Stadt"
+ ],
+ [
+ "Friburg"
+ ],
+ [
+ "Geneva"
+ ],
+ [
+ "Glarus"
+ ],
+ [
+ "Graub\u00fcnden"
+ ],
+ [
+ "Jura"
+ ],
+ [
+ "Lucerne"
+ ],
+ [
+ "Neuch\u00e2tel"
+ ],
+ [
+ "Nidwalden"
+ ],
+ [
+ "Obwalden"
+ ],
+ [
+ "St. Gallen"
+ ],
+ [
+ "Schaffhausen"
+ ],
+ [
+ "Solothurn"
+ ],
+ [
+ "Schwyz"
+ ],
+ [
+ "Thurgau"
+ ],
+ [
+ "Ticino"
+ ],
+ [
+ "Uri"
+ ],
+ [
+ "Vaud"
+ ],
+ [
+ "Wallis"
+ ],
+ [
+ "Zug"
+ ],
+ [
+ "Z\u00fcrich"
+ ],
+ [
+ "A Coru\u00f1a"
+ ],
+ [
+ "Alava"
+ ],
+ [
+ "Albacete"
+ ],
+ [
+ "Alicante"
+ ],
+ [
+ "Almeria"
+ ],
+ [
+ "Asturias"
+ ],
+ [
+ "Avila"
+ ],
+ [
+ "Badajoz"
+ ],
+ [
+ "Baleares"
+ ],
+ [
+ "Barcelona"
+ ],
+ [
+ "Burgos"
+ ],
+ [
+ "Caceres"
+ ],
+ [
+ "Cadiz"
+ ],
+ [
+ "Cantabria"
+ ],
+ [
+ "Castellon"
+ ],
+ [
+ "Ceuta"
+ ],
+ [
+ "Ciudad Real"
+ ],
+ [
+ "Cordoba"
+ ],
+ [
+ "Cuenca"
+ ],
+ [
+ "Girona"
+ ],
+ [
+ "Granada"
+ ],
+ [
+ "Guadalajara"
+ ],
+ [
+ "Guipuzcoa"
+ ],
+ [
+ "Huelva"
+ ],
+ [
+ "Huesca"
+ ],
+ [
+ "Jaen"
+ ],
+ [
+ "La Rioja"
+ ],
+ [
+ "Las Palmas"
+ ],
+ [
+ "Leon"
+ ],
+ [
+ "Lleida"
+ ],
+ [
+ "Lugo"
+ ],
+ [
+ "Madrid"
+ ],
+ [
+ "Malaga"
+ ],
+ [
+ "Melilla"
+ ],
+ [
+ "Murcia"
+ ],
+ [
+ "Navarra"
+ ],
+ [
+ "Ourense"
+ ],
+ [
+ "Palencia"
+ ],
+ [
+ "Pontevedra"
+ ],
+ [
+ "Salamanca"
+ ],
+ [
+ "Santa Cruz de Tenerife"
+ ],
+ [
+ "Segovia"
+ ],
+ [
+ "Sevilla"
+ ],
+ [
+ "Soria"
+ ],
+ [
+ "Tarragona"
+ ],
+ [
+ "Teruel"
+ ],
+ [
+ "Toledo"
+ ],
+ [
+ "Valencia"
+ ],
+ [
+ "Valladolid"
+ ],
+ [
+ "Vizcaya"
+ ],
+ [
+ "Zamora"
+ ],
+ [
+ "Zaragoza"
+ ],
+ [
+ "Ain"
+ ],
+ [
+ "Aisne"
+ ],
+ [
+ "Allier"
+ ],
+ [
+ "Alpes-de-Haute-Provence"
+ ],
+ [
+ "Hautes-Alpes"
+ ],
+ [
+ "Alpes-Maritimes"
+ ],
+ [
+ "Ard\u00e8che"
+ ],
+ [
+ "Ardennes"
+ ],
+ [
+ "Ari\u00e8ge"
+ ],
+ [
+ "Aube"
+ ],
+ [
+ "Aude"
+ ],
+ [
+ "Aveyron"
+ ],
+ [
+ "Bouches-du-Rh\u00f4ne"
+ ],
+ [
+ "Calvados"
+ ],
+ [
+ "Cantal"
+ ],
+ [
+ "Charente"
+ ],
+ [
+ "Charente-Maritime"
+ ],
+ [
+ "Cher"
+ ],
+ [
+ "Corr\u00e8ze"
+ ],
+ [
+ "Corse-du-Sud"
+ ],
+ [
+ "Haute-Corse"
+ ],
+ [
+ "C\u00f4te-d'Or"
+ ],
+ [
+ "C\u00f4tes-d'Armor"
+ ],
+ [
+ "Creuse"
+ ],
+ [
+ "Dordogne"
+ ],
+ [
+ "Doubs"
+ ],
+ [
+ "Dr\u00f4me"
+ ],
+ [
+ "Eure"
+ ],
+ [
+ "Eure-et-Loir"
+ ],
+ [
+ "Finist\u00e8re"
+ ],
+ [
+ "Gard"
+ ],
+ [
+ "Haute-Garonne"
+ ],
+ [
+ "Gers"
+ ],
+ [
+ "Gironde"
+ ],
+ [
+ "H\u00e9rault"
+ ],
+ [
+ "Ille-et-Vilaine"
+ ],
+ [
+ "Indre"
+ ],
+ [
+ "Indre-et-Loire"
+ ],
+ [
+ "Is\u00e8re"
+ ],
+ [
+ "Jura"
+ ],
+ [
+ "Landes"
+ ],
+ [
+ "Loir-et-Cher"
+ ],
+ [
+ "Loire"
+ ],
+ [
+ "Haute-Loire"
+ ],
+ [
+ "Loire-Atlantique"
+ ],
+ [
+ "Loiret"
+ ],
+ [
+ "Lot"
+ ],
+ [
+ "Lot-et-Garonne"
+ ],
+ [
+ "Loz\u00e8re"
+ ],
+ [
+ "Maine-et-Loire"
+ ],
+ [
+ "Manche"
+ ],
+ [
+ "Marne"
+ ],
+ [
+ "Haute-Marne"
+ ],
+ [
+ "Mayenne"
+ ],
+ [
+ "Meurthe-et-Moselle"
+ ],
+ [
+ "Meuse"
+ ],
+ [
+ "Morbihan"
+ ],
+ [
+ "Moselle"
+ ],
+ [
+ "Ni\u00e8vre"
+ ],
+ [
+ "Nord"
+ ],
+ [
+ "Oise"
+ ],
+ [
+ "Orne"
+ ],
+ [
+ "Pas-de-Calais"
+ ],
+ [
+ "Puy-de-D\u00f4me"
+ ],
+ [
+ "Pyr\u00e9n\u00e9es-Atlantiques"
+ ],
+ [
+ "Hautes-Pyr\u00e9n\u00e9es"
+ ],
+ [
+ "Pyr\u00e9n\u00e9es-Orientales"
+ ],
+ [
+ "Bas-Rhin"
+ ],
+ [
+ "Haut-Rhin"
+ ],
+ [
+ "Rh\u00f4ne"
+ ],
+ [
+ "Haute-Sa\u00f4ne"
+ ],
+ [
+ "Sa\u00f4ne-et-Loire"
+ ],
+ [
+ "Sarthe"
+ ],
+ [
+ "Savoie"
+ ],
+ [
+ "Haute-Savoie"
+ ],
+ [
+ "Paris"
+ ],
+ [
+ "Seine-Maritime"
+ ],
+ [
+ "Seine-et-Marne"
+ ],
+ [
+ "Yvelines"
+ ],
+ [
+ "Deux-S\u00e8vres"
+ ],
+ [
+ "Somme"
+ ],
+ [
+ "Tarn"
+ ],
+ [
+ "Tarn-et-Garonne"
+ ],
+ [
+ "Var"
+ ],
+ [
+ "Vaucluse"
+ ],
+ [
+ "Vend\u00e9e"
+ ],
+ [
+ "Vienne"
+ ],
+ [
+ "Haute-Vienne"
+ ],
+ [
+ "Vosges"
+ ],
+ [
+ "Yonne"
+ ],
+ [
+ "Territoire-de-Belfort"
+ ],
+ [
+ "Essonne"
+ ],
+ [
+ "Hauts-de-Seine"
+ ],
+ [
+ "Seine-Saint-Denis"
+ ],
+ [
+ "Val-de-Marne"
+ ],
+ [
+ "Val-d'Oise"
+ ],
+ [
+ "Alba"
+ ],
+ [
+ "Arad"
+ ],
+ [
+ "Arge\u015f"
+ ],
+ [
+ "Bac\u0103u"
+ ],
+ [
+ "Bihor"
+ ],
+ [
+ "Bistri\u0163a-N\u0103s\u0103ud"
+ ],
+ [
+ "Boto\u015fani"
+ ],
+ [
+ "Bra\u015fov"
+ ],
+ [
+ "Br\u0103ila"
+ ],
+ [
+ "Bucure\u015fti"
+ ],
+ [
+ "Buz\u0103u"
+ ],
+ [
+ "Cara\u015f-Severin"
+ ],
+ [
+ "C\u0103l\u0103ra\u015fi"
+ ],
+ [
+ "Cluj"
+ ],
+ [
+ "Constan\u0163a"
+ ],
+ [
+ "Covasna"
+ ],
+ [
+ "D\u00e2mbovi\u0163a"
+ ],
+ [
+ "Dolj"
+ ],
+ [
+ "Gala\u0163i"
+ ],
+ [
+ "Giurgiu"
+ ],
+ [
+ "Gorj"
+ ],
+ [
+ "Harghita"
+ ],
+ [
+ "Hunedoara"
+ ],
+ [
+ "Ialomi\u0163a"
+ ],
+ [
+ "Ia\u015fi"
+ ],
+ [
+ "Ilfov"
+ ],
+ [
+ "Maramure\u015f"
+ ],
+ [
+ "Mehedin\u0163i"
+ ],
+ [
+ "Mure\u015f"
+ ],
+ [
+ "Neam\u0163"
+ ],
+ [
+ "Olt"
+ ],
+ [
+ "Prahova"
+ ],
+ [
+ "Satu-Mare"
+ ],
+ [
+ "S\u0103laj"
+ ],
+ [
+ "Sibiu"
+ ],
+ [
+ "Suceava"
+ ],
+ [
+ "Teleorman"
+ ],
+ [
+ "Timi\u015f"
+ ],
+ [
+ "Tulcea"
+ ],
+ [
+ "Vaslui"
+ ],
+ [
+ "V\u00e2lcea"
+ ],
+ [
+ "Vrancea"
+ ],
+ [
+ "Lappi"
+ ],
+ [
+ "Pohjois-Pohjanmaa"
+ ],
+ [
+ "Kainuu"
+ ],
+ [
+ "Pohjois-Karjala"
+ ],
+ [
+ "Pohjois-Savo"
+ ],
+ [
+ "Etel\u00e4-Savo"
+ ],
+ [
+ "Etel\u00e4-Pohjanmaa"
+ ],
+ [
+ "Pohjanmaa"
+ ],
+ [
+ "Pirkanmaa"
+ ],
+ [
+ "Satakunta"
+ ],
+ [
+ "Keski-Pohjanmaa"
+ ],
+ [
+ "Keski-Suomi"
+ ],
+ [
+ "Varsinais-Suomi"
+ ],
+ [
+ "Etel\u00e4-Karjala"
+ ],
+ [
+ "P\u00e4ij\u00e4t-H\u00e4me"
+ ],
+ [
+ "Kanta-H\u00e4me"
+ ],
+ [
+ "Uusimaa"
+ ],
+ [
+ "It\u00e4-Uusimaa"
+ ],
+ [
+ "Kymenlaakso"
+ ],
+ [
+ "Ahvenanmaa"
+ ],
+ [
+ "Harjumaa"
+ ],
+ [
+ "Hiiumaa"
+ ],
+ [
+ "Ida-Virumaa"
+ ],
+ [
+ "J\u00f5gevamaa"
+ ],
+ [
+ "J\u00e4rvamaa"
+ ],
+ [
+ "L\u00e4\u00e4nemaa"
+ ],
+ [
+ "L\u00e4\u00e4ne-Virumaa"
+ ],
+ [
+ "P\u00f5lvamaa"
+ ],
+ [
+ "P\u00e4rnumaa"
+ ],
+ [
+ "Raplamaa"
+ ],
+ [
+ "Saaremaa"
+ ],
+ [
+ "Tartumaa"
+ ],
+ [
+ "Valgamaa"
+ ],
+ [
+ "Viljandimaa"
+ ],
+ [
+ "V\u00f5rumaa"
+ ],
+ [
+ "Daugavpils"
+ ],
+ [
+ "Jelgava"
+ ],
+ [
+ "J\u0113kabpils"
+ ],
+ [
+ "J\u016brmala"
+ ],
+ [
+ "Liep\u0101ja"
+ ],
+ [
+ "Liep\u0101jas novads"
+ ],
+ [
+ "R\u0113zekne"
+ ],
+ [
+ "R\u012bga"
+ ],
+ [
+ "R\u012bgas novads"
+ ],
+ [
+ "Valmiera"
+ ],
+ [
+ "Ventspils"
+ ],
+ [
+ "Aglonas novads"
+ ],
+ [
+ "Aizkraukles novads"
+ ],
+ [
+ "Aizputes novads"
+ ],
+ [
+ "Akn\u012bstes novads"
+ ],
+ [
+ "Alojas novads"
+ ],
+ [
+ "Alsungas novads"
+ ],
+ [
+ "Al\u016bksnes novads"
+ ],
+ [
+ "Amatas novads"
+ ],
+ [
+ "Apes novads"
+ ],
+ [
+ "Auces novads"
+ ],
+ [
+ "Bab\u012btes novads"
+ ],
+ [
+ "Baldones novads"
+ ],
+ [
+ "Baltinavas novads"
+ ],
+ [
+ "Balvu novads"
+ ],
+ [
+ "Bauskas novads"
+ ],
+ [
+ "Bever\u012bnas novads"
+ ],
+ [
+ "Broc\u0113nu novads"
+ ],
+ [
+ "Burtnieku novads"
+ ],
+ [
+ "Carnikavas novads"
+ ],
+ [
+ "Cesvaines novads"
+ ],
+ [
+ "Ciblas novads"
+ ],
+ [
+ "C\u0113su novads"
+ ],
+ [
+ "Dagdas novads"
+ ],
+ [
+ "Daugavpils novads"
+ ],
+ [
+ "Dobeles novads"
+ ],
+ [
+ "Dundagas novads"
+ ],
+ [
+ "Durbes novads"
+ ],
+ [
+ "Engures novads"
+ ],
+ [
+ "Garkalnes novads"
+ ],
+ [
+ "Grobi\u0146as novads"
+ ],
+ [
+ "Gulbenes novads"
+ ],
+ [
+ "Iecavas novads"
+ ],
+ [
+ "Ik\u0161\u0137iles novads"
+ ],
+ [
+ "Il\u016bkstes novads"
+ ],
+ [
+ "In\u010dukalna novads"
+ ],
+ [
+ "Jaunjelgavas novads"
+ ],
+ [
+ "Jaunpiebalgas novads"
+ ],
+ [
+ "Jaunpils novads"
+ ],
+ [
+ "Jelgavas novads"
+ ],
+ [
+ "J\u0113kabpils novads"
+ ],
+ [
+ "Kandavas novads"
+ ],
+ [
+ "Kokneses novads"
+ ],
+ [
+ "Krimuldas novads"
+ ],
+ [
+ "Krustpils novads"
+ ],
+ [
+ "Kr\u0101slavas novads"
+ ],
+ [
+ "Kuld\u012bgas novads"
+ ],
+ [
+ "K\u0101rsavas novads"
+ ],
+ [
+ "Lielv\u0101rdes novads"
+ ],
+ [
+ "Limba\u017eu novads"
+ ],
+ [
+ "Lub\u0101nas novads"
+ ],
+ [
+ "Ludzas novads"
+ ],
+ [
+ "L\u012bgatnes novads"
+ ],
+ [
+ "L\u012bv\u0101nu novads"
+ ],
+ [
+ "Madonas novads"
+ ],
+ [
+ "Mazsalacas novads"
+ ],
+ [
+ "M\u0101lpils novads"
+ ],
+ [
+ "M\u0101rupes novads"
+ ],
+ [
+ "Nauk\u0161\u0113nu novads"
+ ],
+ [
+ "Neretas novads"
+ ],
+ [
+ "N\u012bcas novads"
+ ],
+ [
+ "Ogres novads"
+ ],
+ [
+ "Olaines novads"
+ ],
+ [
+ "Ozolnieku novads"
+ ],
+ [
+ "Prei\u013cu novads"
+ ],
+ [
+ "Priekules novads"
+ ],
+ [
+ "Prieku\u013cu novads"
+ ],
+ [
+ "P\u0101rgaujas novads"
+ ],
+ [
+ "P\u0101vilostas novads"
+ ],
+ [
+ "P\u013cavi\u0146u novads"
+ ],
+ [
+ "Raunas novads"
+ ],
+ [
+ "Riebi\u0146u novads"
+ ],
+ [
+ "Rojas novads"
+ ],
+ [
+ "Ropa\u017eu novads"
+ ],
+ [
+ "Rucavas novads"
+ ],
+ [
+ "Rug\u0101ju novads"
+ ],
+ [
+ "Rund\u0101les novads"
+ ],
+ [
+ "R\u0113zeknes novads"
+ ],
+ [
+ "R\u016bjienas novads"
+ ],
+ [
+ "Salacgr\u012bvas novads"
+ ],
+ [
+ "Salas novads"
+ ],
+ [
+ "Salaspils novads"
+ ],
+ [
+ "Saldus novads"
+ ],
+ [
+ "Saulkrastu novads"
+ ],
+ [
+ "Siguldas novads"
+ ],
+ [
+ "Skrundas novads"
+ ],
+ [
+ "Skr\u012bveru novads"
+ ],
+ [
+ "Smiltenes novads"
+ ],
+ [
+ "Stopi\u0146u novads"
+ ],
+ [
+ "Stren\u010du novads"
+ ],
+ [
+ "S\u0113jas novads"
+ ],
+ [
+ "Talsu novads"
+ ],
+ [
+ "Tukuma novads"
+ ],
+ [
+ "T\u0113rvetes novads"
+ ],
+ [
+ "Vai\u0146odes novads"
+ ],
+ [
+ "Valkas novads"
+ ],
+ [
+ "Valmieras novads"
+ ],
+ [
+ "Varak\u013c\u0101nu novads"
+ ],
+ [
+ "Vecpiebalgas novads"
+ ],
+ [
+ "Vecumnieku novads"
+ ],
+ [
+ "Ventspils novads"
+ ],
+ [
+ "Vies\u012btes novads"
+ ],
+ [
+ "Vi\u013cakas novads"
+ ],
+ [
+ "Vi\u013c\u0101nu novads"
+ ],
+ [
+ "V\u0101rkavas novads"
+ ],
+ [
+ "Zilupes novads"
+ ],
+ [
+ "\u0100da\u017eu novads"
+ ],
+ [
+ "\u0112rg\u013cu novads"
+ ],
+ [
+ "\u0136eguma novads"
+ ],
+ [
+ "\u0136ekavas novads"
+ ],
+ [
+ "Alytaus Apskritis"
+ ],
+ [
+ "Kauno Apskritis"
+ ],
+ [
+ "Klaip\u0117dos Apskritis"
+ ],
+ [
+ "Marijampol\u0117s Apskritis"
+ ],
+ [
+ "Panev\u0117\u017eio Apskritis"
+ ],
+ [
+ "\u0160iauli\u0173 Apskritis"
+ ],
+ [
+ "Taurag\u0117s Apskritis"
+ ],
+ [
+ "Tel\u0161i\u0173 Apskritis"
+ ],
+ [
+ "Utenos Apskritis"
+ ],
+ [
+ "Vilniaus Apskritis"
+ ],
+ [
+ "Acre"
+ ],
+ [
+ "Alagoas"
+ ],
+ [
+ "Amap\u00e1"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Bahia"
+ ],
+ [
+ "Cear\u00e1"
+ ],
+ [
+ "Esp\u00edrito Santo"
+ ],
+ [
+ "Goi\u00e1s"
+ ],
+ [
+ "Maranh\u00e3o"
+ ],
+ [
+ "Mato Grosso"
+ ],
+ [
+ "Mato Grosso do Sul"
+ ],
+ [
+ "Minas Gerais"
+ ],
+ [
+ "Par\u00e1"
+ ],
+ [
+ "Para\u00edba"
+ ],
+ [
+ "Paran\u00e1"
+ ],
+ [
+ "Pernambuco"
+ ],
+ [
+ "Piau\u00ed"
+ ],
+ [
+ "Rio de Janeiro"
+ ],
+ [
+ "Rio Grande do Norte"
+ ],
+ [
+ "Rio Grande do Sul"
+ ],
+ [
+ "Rond\u00f4nia"
+ ],
+ [
+ "Roraima"
+ ],
+ [
+ "Santa Catarina"
+ ],
+ [
+ "S\u00e3o Paulo"
+ ],
+ [
+ "Sergipe"
+ ],
+ [
+ "Tocantins"
+ ],
+ [
+ "Distrito Federal"
+ ],
+ [
+ "Berat"
+ ],
+ [
+ "Dib\u00ebr"
+ ],
+ [
+ "Durr\u00ebs"
+ ],
+ [
+ "Elbasan"
+ ],
+ [
+ "Fier"
+ ],
+ [
+ "Gjirokast\u00ebr"
+ ],
+ [
+ "Kor\u00e7\u00eb"
+ ],
+ [
+ "Kuk\u00ebs"
+ ],
+ [
+ "Lezh\u00eb"
+ ],
+ [
+ "Shkod\u00ebr"
+ ],
+ [
+ "Tiran\u00eb"
+ ],
+ [
+ "Vlor\u00eb"
+ ],
+ [
+ "Ciudad Aut\u00f3noma de Buenos Aires"
+ ],
+ [
+ "Buenos Aires"
+ ],
+ [
+ "Catamarca"
+ ],
+ [
+ "Chaco"
+ ],
+ [
+ "Chubut"
+ ],
+ [
+ "C\u00f3rdoba"
+ ],
+ [
+ "Corrientes"
+ ],
+ [
+ "Entre R\u00edos"
+ ],
+ [
+ "Formosa"
+ ],
+ [
+ "Jujuy"
+ ],
+ [
+ "La Pampa"
+ ],
+ [
+ "La Rioja"
+ ],
+ [
+ "Mendoza"
+ ],
+ [
+ "Misiones"
+ ],
+ [
+ "Neuqu\u00e9n"
+ ],
+ [
+ "R\u00edo Negro"
+ ],
+ [
+ "Salta"
+ ],
+ [
+ "San Juan"
+ ],
+ [
+ "San Luis"
+ ],
+ [
+ "Santa Cruz"
+ ],
+ [
+ "Santa Fe"
+ ],
+ [
+ "Santiago del Estero"
+ ],
+ [
+ "Tierra del Fuego"
+ ],
+ [
+ "Tucum\u00e1n"
+ ],
+ [
+ "Zagreba\u010dka \u017eupanija"
+ ],
+ [
+ "Krapinsko-zagorska \u017eupanija"
+ ],
+ [
+ "Sisa\u010dko-moslava\u010dka \u017eupanija"
+ ],
+ [
+ "Karlova\u010dka \u017eupanija"
+ ],
+ [
+ "Vara\u017edinska \u017eupanija"
+ ],
+ [
+ "Koprivni\u010dko-kri\u017eeva\u010dka \u017eupanija"
+ ],
+ [
+ "Bjelovarsko-bilogorska \u017eupanija"
+ ],
+ [
+ "Primorsko-goranska \u017eupanija"
+ ],
+ [
+ "Li\u010dko-senjska \u017eupanija"
+ ],
+ [
+ "Viroviti\u010dko-podravska \u017eupanija"
+ ],
+ [
+ "Po\u017ee\u0161ko-slavonska \u017eupanija"
+ ],
+ [
+ "Brodsko-posavska \u017eupanija"
+ ],
+ [
+ "Zadarska \u017eupanija"
+ ],
+ [
+ "Osje\u010dko-baranjska \u017eupanija"
+ ],
+ [
+ "\u0160ibensko-kninska \u017eupanija"
+ ],
+ [
+ "Vukovarsko-srijemska \u017eupanija"
+ ],
+ [
+ "Splitsko-dalmatinska \u017eupanija"
+ ],
+ [
+ "Istarska \u017eupanija"
+ ],
+ [
+ "Dubrova\u010dko-neretvanska \u017eupanija"
+ ],
+ [
+ "Me\u0111imurska \u017eupanija"
+ ],
+ [
+ "Grad Zagreb"
+ ],
+ [
+ "Andaman and Nicobar Islands"
+ ],
+ [
+ "Andhra Pradesh"
+ ],
+ [
+ "Arunachal Pradesh"
+ ],
+ [
+ "Assam"
+ ],
+ [
+ "Bihar"
+ ],
+ [
+ "Chandigarh"
+ ],
+ [
+ "Chhattisgarh"
+ ],
+ [
+ "Dadra and Nagar Haveli"
+ ],
+ [
+ "Daman and Diu"
+ ],
+ [
+ "Delhi"
+ ],
+ [
+ "Goa"
+ ],
+ [
+ "Gujarat"
+ ],
+ [
+ "Haryana"
+ ],
+ [
+ "Himachal Pradesh"
+ ],
+ [
+ "Jammu and Kashmir"
+ ],
+ [
+ "Jharkhand"
+ ],
+ [
+ "Karnataka"
+ ],
+ [
+ "Kerala"
+ ],
+ [
+ "Lakshadweep"
+ ],
+ [
+ "Madhya Pradesh"
+ ],
+ [
+ "Maharashtra"
+ ],
+ [
+ "Manipur"
+ ],
+ [
+ "Meghalaya"
+ ],
+ [
+ "Mizoram"
+ ],
+ [
+ "Nagaland"
+ ],
+ [
+ "Odisha"
+ ],
+ [
+ "Puducherry"
+ ],
+ [
+ "Punjab"
+ ],
+ [
+ "Rajasthan"
+ ],
+ [
+ "Sikkim"
+ ],
+ [
+ "Tamil Nadu"
+ ],
+ [
+ "Telangana"
+ ],
+ [
+ "Tripura"
+ ],
+ [
+ "Uttar Pradesh"
+ ],
+ [
+ "Uttarakhand"
+ ],
+ [
+ "West Bengal"
+ ],
+ [
+ "Australian Capital Territory"
+ ],
+ [
+ "New South Wales"
+ ],
+ [
+ "Victoria"
+ ],
+ [
+ "Queensland"
+ ],
+ [
+ "South Australia"
+ ],
+ [
+ "Tasmania"
+ ],
+ [
+ "Western Australia"
+ ],
+ [
+ "Northern Territory"
+ ],
+ [
+ "Bresckaja voblas\u0107"
+ ],
+ [
+ "Homie\u013askaja voblas\u0107"
+ ],
+ [
+ "Horad Minsk"
+ ],
+ [
+ "Hrodzienskaja voblas\u0107"
+ ],
+ [
+ "Mahilio\u016dskaja voblas\u0107"
+ ],
+ [
+ "Minskaja voblas\u0107"
+ ],
+ [
+ "Viciebskaja voblas\u0107"
+ ],
+ [
+ "Antwerpen"
+ ],
+ [
+ "Brabant wallon"
+ ],
+ [
+ "Brussels-Capital Region"
+ ],
+ [
+ "Hainaut"
+ ],
+ [
+ "Limburg"
+ ],
+ [
+ "Li\u00e8ge"
+ ],
+ [
+ "Luxembourg"
+ ],
+ [
+ "Namur"
+ ],
+ [
+ "Oost-Vlaanderen"
+ ],
+ [
+ "Vlaams-Brabant"
+ ],
+ [
+ "West-Vlaanderen"
+ ],
+ [
+ "Cochabamba"
+ ],
+ [
+ "Chuquisaca"
+ ],
+ [
+ "El Beni"
+ ],
+ [
+ "La Paz"
+ ],
+ [
+ "Oruro"
+ ],
+ [
+ "Pando"
+ ],
+ [
+ "Potos\u00ed"
+ ],
+ [
+ "Santa Cruz"
+ ],
+ [
+ "Tarija"
+ ],
+ [
+ "Blagoevgrad"
+ ],
+ [
+ "Burgas"
+ ],
+ [
+ "Varna"
+ ],
+ [
+ "Veliko Tarnovo"
+ ],
+ [
+ "Vidin"
+ ],
+ [
+ "Vratsa"
+ ],
+ [
+ "Gabrovo"
+ ],
+ [
+ "Dobrich"
+ ],
+ [
+ "Kardzhali"
+ ],
+ [
+ "Kyustendil"
+ ],
+ [
+ "Lovech"
+ ],
+ [
+ "Montana"
+ ],
+ [
+ "Pazardzhik"
+ ],
+ [
+ "Pernik"
+ ],
+ [
+ "Pleven"
+ ],
+ [
+ "Plovdiv"
+ ],
+ [
+ "Razgrad"
+ ],
+ [
+ "Ruse"
+ ],
+ [
+ "Silistra"
+ ],
+ [
+ "Sliven"
+ ],
+ [
+ "Smolyan"
+ ],
+ [
+ "Sofia City"
+ ],
+ [
+ "Sofia Province"
+ ],
+ [
+ "Stara Zagora"
+ ],
+ [
+ "Targovishte"
+ ],
+ [
+ "Haskovo"
+ ],
+ [
+ "Shumen"
+ ],
+ [
+ "Yambol"
+ ],
+ [
+ "Ais\u00e9n del General Carlos Iba\u00f1ez del Campo"
+ ],
+ [
+ "Antofagasta"
+ ],
+ [
+ "Arica y Parinacota"
+ ],
+ [
+ "La Araucan\u00eda"
+ ],
+ [
+ "Atacama"
+ ],
+ [
+ "Biob\u00edo"
+ ],
+ [
+ "Coquimbo"
+ ],
+ [
+ "Libertador General Bernardo O'Higgins"
+ ],
+ [
+ "Los Lagos"
+ ],
+ [
+ "Los R\u00edos"
+ ],
+ [
+ "Magallanes"
+ ],
+ [
+ "Maule"
+ ],
+ [
+ "\u00d1uble"
+ ],
+ [
+ "Regi\u00f3n Metropolitana de Santiago"
+ ],
+ [
+ "Tarapac\u00e1"
+ ],
+ [
+ "Valpara\u00edso"
+ ],
+ [
+ "Anhui Sheng"
+ ],
+ [
+ "Beijing Shi"
+ ],
+ [
+ "Chongqing Shi"
+ ],
+ [
+ "Fujian Sheng"
+ ],
+ [
+ "Gansu Sheng"
+ ],
+ [
+ "Guangdong Sheng"
+ ],
+ [
+ "Guangxi Zhuangzu Zizhiqu"
+ ],
+ [
+ "Guizhou Sheng"
+ ],
+ [
+ "Hainan Sheng"
+ ],
+ [
+ "Hebei Sheng"
+ ],
+ [
+ "Heilongjiang Sheng"
+ ],
+ [
+ "Henan Sheng"
+ ],
+ [
+ "Hong Kong SAR"
+ ],
+ [
+ "Hubei Sheng"
+ ],
+ [
+ "Hunan Sheng"
+ ],
+ [
+ "Jiangsu Sheng"
+ ],
+ [
+ "Jiangxi Sheng"
+ ],
+ [
+ "Jilin Sheng"
+ ],
+ [
+ "Liaoning Sheng"
+ ],
+ [
+ "Macao SAR"
+ ],
+ [
+ "Nei Mongol Zizhiqu"
+ ],
+ [
+ "Ningxia Huizi Zizhiqu"
+ ],
+ [
+ "Qinghai Sheng"
+ ],
+ [
+ "Shaanxi Sheng"
+ ],
+ [
+ "Shandong Sheng"
+ ],
+ [
+ "Shanghai Shi"
+ ],
+ [
+ "Shanxi Sheng"
+ ],
+ [
+ "Sichuan Sheng"
+ ],
+ [
+ "Taiwan Sheng"
+ ],
+ [
+ "Tianjin Shi"
+ ],
+ [
+ "Xinjiang Uygur Zizhiqu"
+ ],
+ [
+ "Xizang Zizhiqu"
+ ],
+ [
+ "Yunnan Sheng"
+ ],
+ [
+ "Zhejiang Sheng"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Antioquia"
+ ],
+ [
+ "Arauca"
+ ],
+ [
+ "Atl\u00e1ntico"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Boyac\u00e1"
+ ],
+ [
+ "Caldas"
+ ],
+ [
+ "Caquet\u00e1"
+ ],
+ [
+ "Casanare"
+ ],
+ [
+ "Cauca"
+ ],
+ [
+ "Cesar"
+ ],
+ [
+ "Choc\u00f3"
+ ],
+ [
+ "C\u00f3rdoba"
+ ],
+ [
+ "Cundinamarca"
+ ],
+ [
+ "Guain\u00eda"
+ ],
+ [
+ "Guaviare"
+ ],
+ [
+ "Huila"
+ ],
+ [
+ "La Guajira"
+ ],
+ [
+ "Magdalena"
+ ],
+ [
+ "Meta"
+ ],
+ [
+ "Nari\u00f1o"
+ ],
+ [
+ "Norte de Santander"
+ ],
+ [
+ "Putumayo"
+ ],
+ [
+ "Quind\u00edo"
+ ],
+ [
+ "Risaralda"
+ ],
+ [
+ "San Andr\u00e9s y Providencia"
+ ],
+ [
+ "Santander"
+ ],
+ [
+ "Sucre"
+ ],
+ [
+ "Tolima"
+ ],
+ [
+ "Valle del Cauca"
+ ],
+ [
+ "Vaup\u00e9s"
+ ],
+ [
+ "Vichada"
+ ],
+ [
+ "Praha, Hlavn\u00ed m\u011bsto"
+ ],
+ [
+ "St\u0159edo\u010desk\u00fd kraj"
+ ],
+ [
+ "Jiho\u010desk\u00fd kraj"
+ ],
+ [
+ "Plze\u0148sk\u00fd kraj"
+ ],
+ [
+ "Karlovarsk\u00fd kraj"
+ ],
+ [
+ "\u00dasteck\u00fd kraj"
+ ],
+ [
+ "Libereck\u00fd kraj"
+ ],
+ [
+ "Kr\u00e1lov\u00e9hradeck\u00fd kraj"
+ ],
+ [
+ "Pardubick\u00fd kraj"
+ ],
+ [
+ "Kraj Vyso\u010dina"
+ ],
+ [
+ "Jihomoravsk\u00fd kraj"
+ ],
+ [
+ "Olomouck\u00fd kraj"
+ ],
+ [
+ "Zl\u00ednsk\u00fd kraj"
+ ],
+ [
+ "Moravskoslezsk\u00fd kraj"
+ ],
+ [
+ "Hovedstaden"
+ ],
+ [
+ "Midtjylland"
+ ],
+ [
+ "Nordjylland"
+ ],
+ [
+ "Sj\u00e6lland"
+ ],
+ [
+ "Syddanmark"
+ ],
+ [
+ "Azuay"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Ca\u00f1ar"
+ ],
+ [
+ "Carchi"
+ ],
+ [
+ "Chimborazo"
+ ],
+ [
+ "Cotopaxi"
+ ],
+ [
+ "El Oro"
+ ],
+ [
+ "Esmeraldas"
+ ],
+ [
+ "Gal\u00e1pagos"
+ ],
+ [
+ "Guayas"
+ ],
+ [
+ "Imbabura"
+ ],
+ [
+ "Loja"
+ ],
+ [
+ "Los R\u00edos"
+ ],
+ [
+ "Manab\u00ed"
+ ],
+ [
+ "Morona Santiago"
+ ],
+ [
+ "Napo"
+ ],
+ [
+ "Orellana"
+ ],
+ [
+ "Pastaza"
+ ],
+ [
+ "Pichincha"
+ ],
+ [
+ "Santa Elena"
+ ],
+ [
+ "Santo Domingo de los Ts\u00e1chilas"
+ ],
+ [
+ "Sucumb\u00edos"
+ ],
+ [
+ "Tungurahua"
+ ],
+ [
+ "Zamora Chinchipe"
+ ],
+ [
+ "Anatolik\u00ed Makedon\u00eda kai Thr\u00e1ki"
+ ],
+ [
+ "Attik\u00ed"
+ ],
+ [
+ "Dytik\u00ed Ell\u00e1da"
+ ],
+ [
+ "Dytik\u00ed Makedon\u00eda"
+ ],
+ [
+ "Ion\u00eda N\u00edsia"
+ ],
+ [
+ "\u00cdpeiros"
+ ],
+ [
+ "Kentrik\u00ed Makedon\u00eda"
+ ],
+ [
+ "Kr\u00edti"
+ ],
+ [
+ "N\u00f3tio Aiga\u00edo"
+ ],
+ [
+ "Pelop\u00f3nnisos"
+ ],
+ [
+ "Stere\u00e1 Ell\u00e1da"
+ ],
+ [
+ "Thessal\u00eda"
+ ],
+ [
+ "V\u00f3reio Aiga\u00edo"
+ ],
+ [
+ "\u00c1gion \u00d3ros"
+ ],
+ [
+ "Barima-Waini"
+ ],
+ [
+ "Cuyuni-Mazaruni"
+ ],
+ [
+ "Demerara-Mahaica"
+ ],
+ [
+ "East Berbice-Corentyne"
+ ],
+ [
+ "Essequibo Islands-West Demerara"
+ ],
+ [
+ "Mahaica-Berbice"
+ ],
+ [
+ "Pomeroon-Supenaam"
+ ],
+ [
+ "Potaro-Siparuni"
+ ],
+ [
+ "Upper Demerara-Berbice"
+ ],
+ [
+ "Upper Takutu-Upper Essequibo"
+ ],
+ [
+ "H\u00f6fu\u00f0borgarsv\u00e6\u00f0i"
+ ],
+ [
+ "Su\u00f0urnes"
+ ],
+ [
+ "Vesturland"
+ ],
+ [
+ "Vestfir\u00f0ir"
+ ],
+ [
+ "Nor\u00f0urland vestra"
+ ],
+ [
+ "Nor\u00f0urland eystra"
+ ],
+ [
+ "Austurland"
+ ],
+ [
+ "Su\u00f0urland"
+ ],
+ [
+ "Agrigento"
+ ],
+ [
+ "Alessandria"
+ ],
+ [
+ "Ancona"
+ ],
+ [
+ "Aosta"
+ ],
+ [
+ "L'Aquila"
+ ],
+ [
+ "Arezzo"
+ ],
+ [
+ "Ascoli-Piceno"
+ ],
+ [
+ "Asti"
+ ],
+ [
+ "Avellino"
+ ],
+ [
+ "Bari"
+ ],
+ [
+ "Barletta-Andria-Trani"
+ ],
+ [
+ "Belluno"
+ ],
+ [
+ "Benevento"
+ ],
+ [
+ "Bergamo"
+ ],
+ [
+ "Biella"
+ ],
+ [
+ "Bologna"
+ ],
+ [
+ "Bolzano"
+ ],
+ [
+ "Brescia"
+ ],
+ [
+ "Brindisi"
+ ],
+ [
+ "Cagliari"
+ ],
+ [
+ "Caltanissetta"
+ ],
+ [
+ "Campobasso"
+ ],
+ [
+ "Carbonia Iglesias"
+ ],
+ [
+ "Caserta"
+ ],
+ [
+ "Catania"
+ ],
+ [
+ "Catanzaro"
+ ],
+ [
+ "Chieti"
+ ],
+ [
+ "Como"
+ ],
+ [
+ "Cosenza"
+ ],
+ [
+ "Cremona"
+ ],
+ [
+ "Crotone"
+ ],
+ [
+ "Cuneo"
+ ],
+ [
+ "Enna"
+ ],
+ [
+ "Fermo"
+ ],
+ [
+ "Ferrara"
+ ],
+ [
+ "Firenze"
+ ],
+ [
+ "Foggia"
+ ],
+ [
+ "Forli-Cesena"
+ ],
+ [
+ "Frosinone"
+ ],
+ [
+ "Genova"
+ ],
+ [
+ "Gorizia"
+ ],
+ [
+ "Grosseto"
+ ],
+ [
+ "Imperia"
+ ],
+ [
+ "Isernia"
+ ],
+ [
+ "La-Spezia"
+ ],
+ [
+ "Latina"
+ ],
+ [
+ "Lecce"
+ ],
+ [
+ "Lecco"
+ ],
+ [
+ "Livorno"
+ ],
+ [
+ "Lodi"
+ ],
+ [
+ "Lucca"
+ ],
+ [
+ "Macerata"
+ ],
+ [
+ "Mantova"
+ ],
+ [
+ "Massa-Carrara"
+ ],
+ [
+ "Matera"
+ ],
+ [
+ "Medio Campidano"
+ ],
+ [
+ "Messina"
+ ],
+ [
+ "Milano"
+ ],
+ [
+ "Modena"
+ ],
+ [
+ "Monza-Brianza"
+ ],
+ [
+ "Napoli"
+ ],
+ [
+ "Novara"
+ ],
+ [
+ "Nuoro"
+ ],
+ [
+ "Ogliastra"
+ ],
+ [
+ "Olbia Tempio"
+ ],
+ [
+ "Oristano"
+ ],
+ [
+ "Padova"
+ ],
+ [
+ "Palermo"
+ ],
+ [
+ "Parma"
+ ],
+ [
+ "Pavia"
+ ],
+ [
+ "Perugia"
+ ],
+ [
+ "Pesaro-Urbino"
+ ],
+ [
+ "Pescara"
+ ],
+ [
+ "Piacenza"
+ ],
+ [
+ "Pisa"
+ ],
+ [
+ "Pistoia"
+ ],
+ [
+ "Pordenone"
+ ],
+ [
+ "Potenza"
+ ],
+ [
+ "Prato"
+ ],
+ [
+ "Ragusa"
+ ],
+ [
+ "Ravenna"
+ ],
+ [
+ "Reggio-Calabria"
+ ],
+ [
+ "Reggio-Emilia"
+ ],
+ [
+ "Rieti"
+ ],
+ [
+ "Rimini"
+ ],
+ [
+ "Roma"
+ ],
+ [
+ "Rovigo"
+ ],
+ [
+ "Salerno"
+ ],
+ [
+ "Sassari"
+ ],
+ [
+ "Savona"
+ ],
+ [
+ "Siena"
+ ],
+ [
+ "Siracusa"
+ ],
+ [
+ "Sondrio"
+ ],
+ [
+ "Taranto"
+ ],
+ [
+ "Teramo"
+ ],
+ [
+ "Terni"
+ ],
+ [
+ "Torino"
+ ],
+ [
+ "Trapani"
+ ],
+ [
+ "Trento"
+ ],
+ [
+ "Treviso"
+ ],
+ [
+ "Trieste"
+ ],
+ [
+ "Udine"
+ ],
+ [
+ "Varese"
+ ],
+ [
+ "Venezia"
+ ],
+ [
+ "Verbania"
+ ],
+ [
+ "Vercelli"
+ ],
+ [
+ "Verona"
+ ],
+ [
+ "Vibo-Valentia"
+ ],
+ [
+ "Vicenza"
+ ],
+ [
+ "Viterbo"
+ ],
+ [
+ "Aguascalientes"
+ ],
+ [
+ "Baja California"
+ ],
+ [
+ "Baja California Sur"
+ ],
+ [
+ "Campeche"
+ ],
+ [
+ "Chiapas"
+ ],
+ [
+ "Chihuahua"
+ ],
+ [
+ "Ciudad de M\u00e9xico"
+ ],
+ [
+ "Coahuila"
+ ],
+ [
+ "Colima"
+ ],
+ [
+ "Durango"
+ ],
+ [
+ "Estado de M\u00e9xico"
+ ],
+ [
+ "Guanajuato"
+ ],
+ [
+ "Guerrero"
+ ],
+ [
+ "Hidalgo"
+ ],
+ [
+ "Jalisco"
+ ],
+ [
+ "Michoac\u00e1n"
+ ],
+ [
+ "Morelos"
+ ],
+ [
+ "Nayarit"
+ ],
+ [
+ "Nuevo Le\u00f3n"
+ ],
+ [
+ "Oaxaca"
+ ],
+ [
+ "Puebla"
+ ],
+ [
+ "Quer\u00e9taro"
+ ],
+ [
+ "Quintana Roo"
+ ],
+ [
+ "San Luis Potos\u00ed"
+ ],
+ [
+ "Sinaloa"
+ ],
+ [
+ "Sonora"
+ ],
+ [
+ "Tabasco"
+ ],
+ [
+ "Tamaulipas"
+ ],
+ [
+ "Tlaxcala"
+ ],
+ [
+ "Veracruz"
+ ],
+ [
+ "Yucat\u00e1n"
+ ],
+ [
+ "Zacatecas"
+ ],
+ [
+ "Asunci\u00f3n"
+ ],
+ [
+ "Alto Paraguay"
+ ],
+ [
+ "Alto Paran\u00e1"
+ ],
+ [
+ "Amambay"
+ ],
+ [
+ "Boquer\u00f3n"
+ ],
+ [
+ "Caaguaz\u00fa"
+ ],
+ [
+ "Caazap\u00e1"
+ ],
+ [
+ "Canindey\u00fa"
+ ],
+ [
+ "Central"
+ ],
+ [
+ "Concepci\u00f3n"
+ ],
+ [
+ "Cordillera"
+ ],
+ [
+ "Guair\u00e1"
+ ],
+ [
+ "Itap\u00faa"
+ ],
+ [
+ "Misiones"
+ ],
+ [
+ "\u00d1eembuc\u00fa"
+ ],
+ [
+ "Paraguar\u00ed"
+ ],
+ [
+ "Presidente Hayes"
+ ],
+ [
+ "San Pedro"
+ ],
+ [
+ "Municipalidad Metropolitana de Lima"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Ancash"
+ ],
+ [
+ "Apur\u00edmac"
+ ],
+ [
+ "Arequipa"
+ ],
+ [
+ "Ayacucho"
+ ],
+ [
+ "Cajamarca"
+ ],
+ [
+ "Cusco"
+ ],
+ [
+ "El Callao"
+ ],
+ [
+ "Huancavelica"
+ ],
+ [
+ "Hu\u00e1nuco"
+ ],
+ [
+ "Ica"
+ ],
+ [
+ "Jun\u00edn"
+ ],
+ [
+ "La Libertad"
+ ],
+ [
+ "Lambayeque"
+ ],
+ [
+ "Lima"
+ ],
+ [
+ "Loreto"
+ ],
+ [
+ "Madre de Dios"
+ ],
+ [
+ "Moquegua"
+ ],
+ [
+ "Pasco"
+ ],
+ [
+ "Piura"
+ ],
+ [
+ "Puno"
+ ],
+ [
+ "San Mart\u00edn"
+ ],
+ [
+ "Tacna"
+ ],
+ [
+ "Tumbes"
+ ],
+ [
+ "Ucayali"
+ ],
+ [
+ "dolno\u015bl\u0105skie"
+ ],
+ [
+ "kujawsko-pomorskie"
+ ],
+ [
+ "lubelskie"
+ ],
+ [
+ "lubuskie"
+ ],
+ [
+ "\u0142\u00f3dzkie"
+ ],
+ [
+ "ma\u0142opolskie"
+ ],
+ [
+ "mazowieckie"
+ ],
+ [
+ "opolskie"
+ ],
+ [
+ "podkarpackie"
+ ],
+ [
+ "podlaskie"
+ ],
+ [
+ "pomorskie"
+ ],
+ [
+ "\u015bl\u0105skie"
+ ],
+ [
+ "\u015bwi\u0119tokrzyskie"
+ ],
+ [
+ "warmi\u0144sko-mazurskie"
+ ],
+ [
+ "wielkopolskie"
+ ],
+ [
+ "zachodniopomorskie"
+ ],
+ [
+ "Aveiro"
+ ],
+ [
+ "Beja"
+ ],
+ [
+ "Braga"
+ ],
+ [
+ "Bragan\u00e7a"
+ ],
+ [
+ "Castelo Branco"
+ ],
+ [
+ "Coimbra"
+ ],
+ [
+ "\u00c9vora"
+ ],
+ [
+ "Faro"
+ ],
+ [
+ "Guarda"
+ ],
+ [
+ "Leiria"
+ ],
+ [
+ "Lisboa"
+ ],
+ [
+ "Portalegre"
+ ],
+ [
+ "Porto"
+ ],
+ [
+ "Santar\u00e9m"
+ ],
+ [
+ "Set\u00fabal"
+ ],
+ [
+ "Viana do Castelo"
+ ],
+ [
+ "Vila Real"
+ ],
+ [
+ "Viseu"
+ ],
+ [
+ "Regi\u00e3o Aut\u00f3noma dos A\u00e7ores"
+ ],
+ [
+ "Regi\u00e3o Aut\u00f3noma da Madeira"
+ ],
+ [
+ "Brokopondo"
+ ],
+ [
+ "Commewijne"
+ ],
+ [
+ "Coronie"
+ ],
+ [
+ "Marowijne"
+ ],
+ [
+ "Nickerie"
+ ],
+ [
+ "Para"
+ ],
+ [
+ "Paramaribo"
+ ],
+ [
+ "Saramacca"
+ ],
+ [
+ "Sipaliwini"
+ ],
+ [
+ "Wanica"
+ ],
+ [
+ "Blekinge l\u00e4n"
+ ],
+ [
+ "Dalarnas l\u00e4n"
+ ],
+ [
+ "Gotlands l\u00e4n"
+ ],
+ [
+ "G\u00e4vleborgs l\u00e4n"
+ ],
+ [
+ "Hallands l\u00e4n"
+ ],
+ [
+ "J\u00e4mtlands l\u00e4n"
+ ],
+ [
+ "J\u00f6nk\u00f6pings l\u00e4n"
+ ],
+ [
+ "Kalmar l\u00e4n"
+ ],
+ [
+ "Kronobergs l\u00e4n"
+ ],
+ [
+ "Norrbottens l\u00e4n"
+ ],
+ [
+ "Sk\u00e5ne l\u00e4n"
+ ],
+ [
+ "Stockholms l\u00e4n"
+ ],
+ [
+ "S\u00f6dermanlands l\u00e4n"
+ ],
+ [
+ "Uppsala l\u00e4n"
+ ],
+ [
+ "V\u00e4rmlands l\u00e4n"
+ ],
+ [
+ "V\u00e4sterbottens l\u00e4n"
+ ],
+ [
+ "V\u00e4sternorrlands l\u00e4n"
+ ],
+ [
+ "V\u00e4stmanlands l\u00e4n"
+ ],
+ [
+ "V\u00e4stra G\u00f6talands l\u00e4n"
+ ],
+ [
+ "\u00d6rebro l\u00e4n"
+ ],
+ [
+ "\u00d6sterg\u00f6tlands l\u00e4n"
+ ],
+ [
+ "Artigas"
+ ],
+ [
+ "Canelones"
+ ],
+ [
+ "Cerro Largo"
+ ],
+ [
+ "Colonia"
+ ],
+ [
+ "Durazno"
+ ],
+ [
+ "Flores"
+ ],
+ [
+ "Florida"
+ ],
+ [
+ "Lavalleja"
+ ],
+ [
+ "Maldonado"
+ ],
+ [
+ "Montevideo"
+ ],
+ [
+ "Paysandu"
+ ],
+ [
+ "R\u00edo Negro"
+ ],
+ [
+ "Rivera"
+ ],
+ [
+ "Rocha"
+ ],
+ [
+ "Salto"
+ ],
+ [
+ "San Jos\u00e9"
+ ],
+ [
+ "Soriano"
+ ],
+ [
+ "Tacuaremb\u00f3"
+ ],
+ [
+ "Treinta y Tres"
+ ],
+ [
+ "Dependencias Federales"
+ ],
+ [
+ "Distrito Capital"
+ ],
+ [
+ "Amazonas"
+ ],
+ [
+ "Anzo\u00e1tegui"
+ ],
+ [
+ "Apure"
+ ],
+ [
+ "Aragua"
+ ],
+ [
+ "Barinas"
+ ],
+ [
+ "Bol\u00edvar"
+ ],
+ [
+ "Carabobo"
+ ],
+ [
+ "Cojedes"
+ ],
+ [
+ "Delta Amacuro"
+ ],
+ [
+ "Falc\u00f3n"
+ ],
+ [
+ "Gu\u00e1rico"
+ ],
+ [
+ "Lara"
+ ],
+ [
+ "M\u00e9rida"
+ ],
+ [
+ "Miranda"
+ ],
+ [
+ "Monagas"
+ ],
+ [
+ "Nueva Esparta"
+ ],
+ [
+ "Portuguesa"
+ ],
+ [
+ "Sucre"
+ ],
+ [
+ "T\u00e1chira"
+ ],
+ [
+ "Trujillo"
+ ],
+ [
+ "Vargas"
+ ],
+ [
+ "Yaracuy"
+ ],
+ [
+ "Zulia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation date for the order with increment ID '000000002'.",
+ "sql": "SELECT order_created_at FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "2023-04-19 16:15:46"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:46"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity type with ID 8?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 8;",
+ "answer": [
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for customer 'Lisa Kim'.",
+ "sql": "SELECT store_id FROM customer_entity WHERE firstname = 'Lisa' AND lastname = 'Kim';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the credit memo with entity ID 1.",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of customer with email 'alexander.thomas@hotmail.com'?",
+ "sql": "SELECT lastname FROM customer_entity WHERE email = 'alexander.thomas@hotmail.com';",
+ "answer": [
+ "Thomas"
+ ],
+ "sql_execute_result": [
+ [
+ "Thomas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the product with entity_id 937 in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 937;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "How many items of the product with entity ID 937 are in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 937;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with the identifier 'no-route'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'no-route';",
+ "answer": [
+ "Whoops, our bad..."
+ ],
+ "sql_execute_result": [
+ [
+ "Whoops, our bad..."
+ ]
+ ]
+ },
+ {
+ "question": "What is the content of the 'About us' CMS page?",
+ "sql": "SELECT content FROM cms_page WHERE page_id = 5;",
+ "answer": [
+ "\n
With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We\u2019re passionate about active lifestyles \u2013 and it goes way beyond apparel.
\n\n
At Luma, wellness is a way of life. We don\u2019t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.
\n\n
We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.
\n\n
\n
\n"
+ ],
+ "sql_execute_result": [
+ [
+ "\n
With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We\u2019re passionate about active lifestyles \u2013 and it goes way beyond apparel.
\n\n
At Luma, wellness is a way of life. We don\u2019t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.
\n\n
We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.
\n\n
\n
\n"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the 'Customer Service' CMS page is active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Customer Service';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of products in category 32?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = 32;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 247
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store name for the store group with ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have placed orders?",
+ "sql": "SELECT DISTINCT customer_email FROM sales_order WHERE customer_id IS NOT NULL;",
+ "answer": [
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 6?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 6;",
+ "answer": [
+ "jla_7781@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jla_7781@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity in stock for product with ID 1353.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1353;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "List the nickname of the reviewer who wrote the review titled 'Perfect layer for the game'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Perfect layer for the game';",
+ "answer": [
+ "Mike"
+ ],
+ "sql_execute_result": [
+ [
+ "Mike"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'General'?",
+ "sql": "SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'General';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer with billing street '654 Park Avenue'.",
+ "sql": "SELECT billing_firstname FROM customer_grid_flat WHERE billing_street = '654 Park Avenue';",
+ "answer": [
+ "Julia"
+ ],
+ "sql_execute_result": [
+ [
+ "Julia"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews have been written by the customer with nickname 'Tashina'?",
+ "sql": "SELECT COUNT(*) FROM review_detail WHERE nickname = 'Tashina';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer with email 'samantha.nguyen@gmail.com'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE email = 'samantha.nguyen@gmail.com';",
+ "answer": [
+ "2145551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2145551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock status for product with ID 1558?",
+ "sql": "SELECT CASE WHEN is_in_stock = 1 THEN 'In Stock' ELSE 'Out of Stock' END FROM cataloginventory_stock_item WHERE product_id = 1558;",
+ "answer": [
+ "In Stock"
+ ],
+ "sql_execute_result": [
+ [
+ "In Stock"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing city for customer with ID 38.",
+ "sql": "SELECT billing_city FROM customer_grid_flat WHERE entity_id = 38;",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many canceled orders were found from the store with Code 'default'?",
+ "sql": "SELECT period, orders_count, total_qty_ordered FROM sales_order_aggregated_created WHERE store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "125"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-01-11",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-01-17",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-01-19",
+ 2,
+ "6.0000"
+ ],
+ [
+ "2022-01-22",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-01-30",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-02-01",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-02-02",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-02-11",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-02-13",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-02-18",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-02-25",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-03-05",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-03-11",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-03-12",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-03-19",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-03-21",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-03-23",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-03-28",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-03-29",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-03-31",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-04-05",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-04-06",
+ 2,
+ "8.0000"
+ ],
+ [
+ "2022-04-07",
+ 2,
+ "4.0000"
+ ],
+ [
+ "2022-04-15",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-04-23",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-04-29",
+ 3,
+ "8.0000"
+ ],
+ [
+ "2022-04-30",
+ 2,
+ "4.0000"
+ ],
+ [
+ "2022-05-02",
+ 2,
+ "2.0000"
+ ],
+ [
+ "2022-05-03",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-05-13",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-05-22",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-05-26",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-05-30",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-06-01",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-06-02",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-06-05",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-06-06",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-06-13",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-06-14",
+ 2,
+ "5.0000"
+ ],
+ [
+ "2022-06-21",
+ 2,
+ "4.0000"
+ ],
+ [
+ "2022-06-23",
+ 2,
+ "5.0000"
+ ],
+ [
+ "2022-06-24",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-06-26",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-06-28",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-06-29",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-07-02",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-07-05",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-07-13",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-07-16",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-07-24",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-07-28",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-07-29",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-08-09",
+ 2,
+ "7.0000"
+ ],
+ [
+ "2022-08-15",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-08-21",
+ 2,
+ "6.0000"
+ ],
+ [
+ "2022-08-22",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-08-24",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-08-25",
+ 2,
+ "9.0000"
+ ],
+ [
+ "2022-08-26",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-08-30",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-09-01",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-09-07",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-09-11",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-09-15",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-09-20",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-09-21",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-10-03",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-10-06",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-10-11",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-10-27",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-10-28",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-11-05",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-11-08",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-11-09",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-11-17",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-11-18",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-11-22",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2022-11-28",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-11-29",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-11-30",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-12-01",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2022-12-05",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-12-14",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2022-12-25",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2022-12-27",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2022-12-30",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-01-06",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-01-07",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2023-01-10",
+ 2,
+ "6.0000"
+ ],
+ [
+ "2023-01-23",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2023-01-24",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-01-26",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2023-01-28",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-01-29",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2023-02-01",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-02-02",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-02-03",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-02-10",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-02-14",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2023-02-16",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-02-19",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-02-21",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-02-22",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2023-02-24",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2023-03-04",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-03-06",
+ 2,
+ "6.0000"
+ ],
+ [
+ "2023-03-08",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-03-14",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2023-03-15",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-03-19",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-03-25",
+ 1,
+ "5.0000"
+ ],
+ [
+ "2023-03-26",
+ 1,
+ "2.0000"
+ ],
+ [
+ "2023-03-27",
+ 2,
+ "4.0000"
+ ],
+ [
+ "2023-04-01",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-04-04",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2023-04-07",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-04-10",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-04-13",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-04-14",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2023-04-17",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-04-24",
+ 2,
+ "8.0000"
+ ],
+ [
+ "2023-05-06",
+ 1,
+ "1.0000"
+ ],
+ [
+ "2023-05-14",
+ 1,
+ "4.0000"
+ ],
+ [
+ "2023-05-15",
+ 1,
+ "3.0000"
+ ],
+ [
+ "2023-05-23",
+ 1,
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the billing address in Richardson, Texas?",
+ "sql": "SELECT email FROM sales_order_address WHERE city = 'Richardson' AND region = 'Texas' AND address_type = 'billing';",
+ "answer": [
+ "bob123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of 'Hawkeye Yoga Short-32-Blue' were ordered in store with ID 1 in 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Hawkeye Yoga Short-32-Blue' AND store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered in store with ID 1 on 2022-01-01?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2022-01-01';",
+ "answer": [
+ "283"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Affirm Water Bottle "
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Pursuit Lumaflex™ Tone Band"
+ ],
+ [
+ "Didi Sport Watch"
+ ],
+ [
+ "Dash Digital Watch"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Orange"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Green"
+ ],
+ [
+ "Abominable Hoodie-XL-Green"
+ ],
+ [
+ "Ana Running Short-29-White"
+ ],
+ [
+ "Joust Duffle Bag"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Jade Yoga Jacket-L-Blue"
+ ],
+ [
+ "Zing Jump Rope"
+ ],
+ [
+ "Lono Yoga Short-33-Gray"
+ ],
+ [
+ "Radiant Tee-S-Orange"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-XS-Red"
+ ],
+ [
+ "Cassius Sparring Tank-M-Blue"
+ ],
+ [
+ "Aether Gym Pant -34-Brown"
+ ],
+ [
+ "Bardot Capri-29-Black"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue"
+ ],
+ [
+ "Erika Running Short-30-Purple"
+ ],
+ [
+ "Josie Yoga Jacket-L-Black"
+ ],
+ [
+ "Ina Compression Short-29-Blue"
+ ],
+ [
+ "Arcadio Gym Short-32-Black"
+ ],
+ [
+ "Leah Yoga Top-M-White"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Autumn Pullie-L-Purple"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-Black"
+ ],
+ [
+ "Helios Endurance Tank-M-Blue"
+ ],
+ [
+ "Daria Bikram Pant-28-Black"
+ ],
+ [
+ "Harmony Lumaflex™ Strength Band Kit "
+ ],
+ [
+ "Cassia Funnel Sweatshirt-M-Purple"
+ ],
+ [
+ "Go-Get'r Pushup Grips"
+ ],
+ [
+ "Tristan Endurance Tank-S-Red"
+ ],
+ [
+ "Strive Shoulder Pack"
+ ],
+ [
+ "Wayfarer Messenger Bag"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Prima Compete Bra Top-M-Yellow"
+ ],
+ [
+ "Sinbad Fitness Tank-M-Blue"
+ ],
+ [
+ "Sprite Yoga Strap 10 foot"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ "Impulse Duffle"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Blue"
+ ],
+ [
+ "Hero Hoodie-S-Green"
+ ],
+ [
+ "Inez Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Hera Pullover Hoodie-L-Blue"
+ ],
+ [
+ "Meteor Workout Short-32-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Orange"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Black"
+ ],
+ [
+ "Maxima Drawstring Short-29-Gray"
+ ],
+ [
+ "Josie Yoga Jacket-S-Blue"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Orestes Fitness Short-36-Black"
+ ],
+ [
+ "Atomic Endurance Running Tee (Crew-Neck)-S-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Gray"
+ ],
+ [
+ "Aero Daily Fitness Tee-L-Yellow"
+ ],
+ [
+ "Miko Pullover Hoodie-S-Orange"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-S-Green"
+ ],
+ [
+ "Celeste Sports Bra-M-Red"
+ ],
+ [
+ "Eos V-Neck Hoodie-L-Green"
+ ],
+ [
+ "Sol Active Short-34-Purple"
+ ],
+ [
+ "Emma Leggings-29-Red"
+ ],
+ [
+ "Leah Yoga Top-S-White"
+ ],
+ [
+ "Jupiter All-Weather Trainer -XS-Blue"
+ ],
+ [
+ "Nora Practice Tank-M-Red"
+ ],
+ [
+ "Geo Insulated Jogging Pant-32-Blue"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Gray"
+ ],
+ [
+ "Strike Endurance Tee-L-Blue"
+ ],
+ [
+ "Lono Yoga Short-34-Gray"
+ ],
+ [
+ "Zoe Tank-XL-Orange"
+ ],
+ [
+ "Helios Endurance Tank-L-Blue"
+ ],
+ [
+ "Vulcan Weightlifting Tank-M-Black"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Red"
+ ],
+ [
+ "Vulcan Weightlifting Tank-XS-Black"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-L-Red"
+ ],
+ [
+ "Ana Running Short-28-White"
+ ],
+ [
+ "Angel Light Running Short-28-Orange"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Green"
+ ],
+ [
+ "Logan HeatTec® Tee-M-Blue"
+ ],
+ [
+ "Balboa Persistence Tee-S-Orange"
+ ],
+ [
+ "Teton Pullover Hoodie-S-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Aero Daily Fitness Tee-XL-Brown"
+ ],
+ [
+ "Orestes Yoga Pant -34-Black"
+ ],
+ [
+ "Rival Field Messenger"
+ ],
+ [
+ "Sybil Running Short-29-Purple"
+ ],
+ [
+ "Gwen Drawstring Bike Short-31-Orange"
+ ],
+ [
+ "Sinbad Fitness Tank-XL-Blue"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Blue"
+ ],
+ [
+ "Zoltan Gym Tee-M-Green"
+ ],
+ [
+ "Lando Gym Jacket-L-Blue"
+ ],
+ [
+ "Arcadio Gym Short-34-Red"
+ ],
+ [
+ "Montana Wind Jacket-L-Green"
+ ],
+ [
+ "Diva Gym Tee-L-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Blue"
+ ],
+ [
+ "Bolo Sport Watch"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XL-Blue"
+ ],
+ [
+ "Radiant Tee-XL-Orange"
+ ],
+ [
+ "Sybil Running Short-30-Purple"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Thorpe Track Pant-34-Purple"
+ ],
+ [
+ "Mimi All-Purpose Short-29-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Blue"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -XS-Blue"
+ ],
+ [
+ "Vulcan Weightlifting Tank-L-Black"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-XL-Blue"
+ ],
+ [
+ "Lando Gym Jacket-M-Green"
+ ],
+ [
+ "Fiona Fitness Short-32-Black"
+ ],
+ [
+ "Rapha Sports Short-32-Black"
+ ],
+ [
+ "Portia Capri-29-Green"
+ ],
+ [
+ "Sahara Leggings-28-Blue"
+ ],
+ [
+ "Iris Workout Top-M-Red"
+ ],
+ [
+ "Selene Yoga Hoodie-M-Orange"
+ ],
+ [
+ "Pierce Gym Short-34-Black"
+ ],
+ [
+ "Oslo Trek Hoodie-XS-Purple"
+ ],
+ [
+ "Rapha Sports Short-33-Black"
+ ],
+ [
+ "Cassius Sparring Tank-XL-Blue"
+ ],
+ [
+ "Diva Gym Tee-L-Yellow"
+ ],
+ [
+ "Argus All-Weather Tank-L-Gray"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ "Maxima Drawstring Short-29-Orange"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Red"
+ ],
+ [
+ "Apollo Running Short-36-Black"
+ ],
+ [
+ "Summit Watch"
+ ],
+ [
+ "Primo Endurance Tank-M-Yellow"
+ ],
+ [
+ "Zeppelin Yoga Pant-33-Red"
+ ],
+ [
+ "Erica Evercool Sports Bra-XL-Yellow"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-L-Red"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Orange"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Elisa EverCool™ Tee-XS-Red"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-XL-Orange"
+ ],
+ [
+ "Prima Compete Bra Top-L-Purple"
+ ],
+ [
+ "Daria Bikram Pant-29-Black"
+ ],
+ [
+ "Bess Yoga Short-32-Blue"
+ ],
+ [
+ "Sahara Leggings-28-Red"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Blue"
+ ],
+ [
+ "Layla Tee-L-Blue"
+ ],
+ [
+ "Aeon Capri-29-Orange"
+ ],
+ [
+ "Torque Power Short-36-Gray"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-XL-Green"
+ ],
+ [
+ "Nadia Elements Shell-M-Black"
+ ],
+ [
+ "Desiree Fitness Tee-L-Orange"
+ ],
+ [
+ "Bella Tank-L-Orange"
+ ],
+ [
+ "Mithra Warmup Pant-36-Green"
+ ],
+ [
+ "Lando Gym Jacket-XS-Green"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Black"
+ ],
+ [
+ "Nona Fitness Tank-XS-Red"
+ ],
+ [
+ "Strike Endurance Tee-L-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Caesar Warm-Up Pant-33-Black"
+ ],
+ [
+ "Karmen Yoga Pant-28-Black"
+ ],
+ [
+ "Leah Yoga Top-XS-Purple"
+ ],
+ [
+ "Jade Yoga Jacket-XS-Gray"
+ ],
+ [
+ "Bess Yoga Short-32-Yellow"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-S-Purple"
+ ],
+ [
+ "Aim Analog Watch"
+ ],
+ [
+ "Cronus Yoga Pant -34-Red"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-L-Red"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-S-Black"
+ ],
+ [
+ "Nora Practice Tank-S-Purple"
+ ],
+ [
+ "Layla Tee-S-Red"
+ ],
+ [
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ "Mona Pullover Hoodlie-XS-Green"
+ ],
+ [
+ "Livingston All-Purpose Tight-36-Blue"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-L-White"
+ ],
+ [
+ "Crown Summit Backpack"
+ ],
+ [
+ "Hawkeye Yoga Short-34-Blue"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-S-Lavender"
+ ],
+ [
+ "Josie Yoga Jacket-L-Blue"
+ ],
+ [
+ "Hero Hoodie-XL-Gray"
+ ],
+ [
+ "Erika Running Short-31-Green"
+ ],
+ [
+ "Orestes Yoga Pant -34-Blue"
+ ],
+ [
+ "Erikssen CoolTech™ Fitness Tank-XS-Gray"
+ ],
+ [
+ "Taurus Elements Shell-S-Blue"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XS-Blue"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -XL-Red"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Black"
+ ],
+ [
+ "Sol Active Short-36-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Black"
+ ],
+ [
+ "Mithra Warmup Pant-33-Green"
+ ],
+ [
+ "Electra Bra Top-XL-Purple"
+ ],
+ [
+ "Aether Gym Pant -32-Blue"
+ ],
+ [
+ "Ana Running Short-29-Black"
+ ],
+ [
+ "Stellar Solar Jacket-S-Red"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-S-Green"
+ ],
+ [
+ "Sparta Gym Tank-L-Green"
+ ],
+ [
+ "Hyperion Elements Jacket-M-Orange"
+ ],
+ [
+ "Carina Basic Capri-28-Purple"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Yellow"
+ ],
+ [
+ "Erikssen CoolTech™ Fitness Tank-XS-Orange"
+ ],
+ [
+ "Balboa Persistence Tee-L-Orange"
+ ],
+ [
+ "Kratos Gym Pant-32-Green"
+ ],
+ [
+ "Karmen Yoga Pant-29-Gray"
+ ],
+ [
+ "Riona Full Zip Jacket-M-Brown"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XL-Red"
+ ],
+ [
+ "Arcadio Gym Short-36-Black"
+ ],
+ [
+ "Tristan Endurance Tank-L-Red"
+ ],
+ [
+ "Apollo Running Short-34-Black"
+ ],
+ [
+ "Sahara Leggings-28-Gray"
+ ],
+ [
+ "Sol Active Short-36-Green"
+ ],
+ [
+ "Teton Pullover Hoodie-L-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-XL-Orange"
+ ],
+ [
+ "Stark Fundamental Hoodie-XL-Black"
+ ],
+ [
+ "Nona Fitness Tank-S-Blue"
+ ],
+ [
+ "Oslo Trek Hoodie-S-Brown"
+ ],
+ [
+ "Antonia Racer Tank-M-Purple"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-M-Red"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-M-Blue"
+ ],
+ [
+ "Hyperion Elements Jacket-S-Red"
+ ],
+ [
+ "Emma Leggings-29-Purple"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-M-Green"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-L-Blue"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-28-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Blue"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XL-Black"
+ ],
+ [
+ "Iris Workout Top-S-Blue"
+ ],
+ [
+ "Antonia Racer Tank-L-Purple"
+ ],
+ [
+ "Typhon Performance Fleece-lined Jacket-XL-Green"
+ ],
+ [
+ "Carina Basic Capri-28-Blue"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Kenobi Trail Jacket-L-Black"
+ ],
+ [
+ "Zoltan Gym Tee-XL-Green"
+ ],
+ [
+ "Endurance Watch"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Black"
+ ],
+ [
+ "Daria Bikram Pant-28-White"
+ ],
+ [
+ "Sylvia Capri-29-Blue"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red"
+ ],
+ [
+ "Beaumont Summit Kit-S-Orange"
+ ],
+ [
+ "Mars HeatTech™ Pullover-M-Black"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XS-Blue"
+ ],
+ [
+ "Daria Bikram Pant-29-White"
+ ],
+ [
+ "Riona Full Zip Jacket-S-Green"
+ ],
+ [
+ "Phoebe Zipper Sweatshirt-M-White"
+ ],
+ [
+ "Zoe Tank-M-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Green"
+ ],
+ [
+ "Cassia Funnel Sweatshirt-L-Orange"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Red"
+ ],
+ [
+ "Carina Basic Capri-28-Black"
+ ],
+ [
+ "Cronus Yoga Pant -36-Red"
+ ],
+ [
+ "Cronus Yoga Pant -34-Blue"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-White"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Blue"
+ ],
+ [
+ "Mimi All-Purpose Short-28-Green"
+ ],
+ [
+ "Frankie Sweatshirt-L-Yellow"
+ ],
+ [
+ "Layla Tee-M-Green"
+ ],
+ [
+ "Mona Pullover Hoodlie-XL-Purple"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-XL-Red"
+ ],
+ [
+ "Deirdre Relaxed-Fit Capri-29-Green"
+ ],
+ [
+ "Helios EverCool™ Tee-M-Black"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XS-Black"
+ ],
+ [
+ "Ingrid Running Jacket-XL-White"
+ ],
+ [
+ "Helios Endurance Tank-S-Blue"
+ ],
+ [
+ "Zoe Tank-L-Yellow"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ "Leah Yoga Top-S-Purple"
+ ],
+ [
+ "Breathe-Easy Tank-L-White"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Thorpe Track Pant-33-Black"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Green"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Atlas Fitness Tank-M-Blue"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-XS-Blue"
+ ],
+ [
+ "Aero Daily Fitness Tee-XS-Brown"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Prima Compete Bra Top-XL-Yellow"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-S-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-M-Orange"
+ ],
+ [
+ "Olivia 1/4 Zip Light Jacket-M-Purple"
+ ],
+ [
+ "Lono Yoga Short-34-Blue"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ [
+ "Kratos Gym Pant-32-Black"
+ ],
+ [
+ "Proteus Fitness Jackshirt-L-Blue"
+ ],
+ [
+ "Bella Tank-XL-Blue"
+ ],
+ [
+ "Viktor LumaTech™ Pant-36-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders with status 'complete' in store with ID 1 on 2022-02-08?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND order_status = 'complete' AND period = '2022-02-08';",
+ "answer": [
+ "389.4400"
+ ],
+ "sql_execute_result": [
+ [
+ "389.4400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red' in the invoice items?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Arcadio Gym Short-33-Blue' in store with ID 0 for the year 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Arcadio Gym Short-33-Blue' AND store_id = 0 AND period = '2023-01-01';",
+ "answer": [
+ "89"
+ ],
+ "sql_execute_result": [
+ [
+ 89
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with ID 0.",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for canceled orders in store with ID 0 on 2022-08-15?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE store_id = 0 AND order_status = 'canceled' AND period = '2022-08-15';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 23?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 23;",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all products with SKU 'WS11-XS-Orange'.",
+ "sql": "SELECT entity_id, type_id, sku FROM catalog_product_entity WHERE sku = 'WS11-XS-Orange';",
+ "answer": [
+ "1526",
+ "simple",
+ "WS11-XS-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ 1526,
+ "simple",
+ "WS11-XS-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status and state for 'pending_payment'?",
+ "sql": "SELECT status, state FROM sales_order_status_state WHERE status = 'pending_payment';",
+ "answer": [
+ "pending_payment",
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment",
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "List all products sold on 2022-08-20.",
+ "sql": "SELECT product_name, qty_ordered FROM sales_bestsellers_aggregated_daily WHERE period = '2022-08-20';",
+ "answer": [
+ "Hera Pullover Hoodie-XS-Orange",
+ "Chloe Compete Tank-L-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Hera Pullover Hoodie-XS-Orange",
+ "1.0000"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue",
+ "1.0000"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Orange",
+ "1.0000"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue",
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is the bestseller on 2023-03-10?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-03-10' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sequence table for invoices in store ID 1.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 1;",
+ "answer": [
+ "sequence_invoice_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing street address for customer 'Emma Lopez'?",
+ "sql": "SELECT billing_street FROM customer_grid_flat WHERE name = 'Emma Lopez';",
+ "answer": [
+ "101 S San Mateo Dr"
+ ],
+ "sql_execute_result": [
+ [
+ "101 S San Mateo Dr"
+ ]
+ ]
+ },
+ {
+ "question": "Get the product details for the configurable product with SKU 'WH10'.",
+ "sql": "SELECT entity_id, type_id, sku FROM catalog_product_entity WHERE sku = 'WH10';",
+ "answer": [
+ "1178",
+ "configurable",
+ "WH10"
+ ],
+ "sql_execute_result": [
+ [
+ 1178,
+ "configurable",
+ "WH10"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default status for a 'closed' order?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'closed';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the bestseller product 'Wayfarer Messenger Bag' on 2022-05-16.",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Wayfarer Messenger Bag' AND period = '2022-05-16';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 1477?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1477 AND attribute_id = 121;",
+ "answer": [
+ "minerva-lumatech-trade-v-tee-xs-black"
+ ],
+ "sql_execute_result": [
+ [
+ "minerva-lumatech-trade-v-tee-xs-black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the parent category ID for category with entity_id 28.",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 28;",
+ "answer": [
+ "22"
+ ],
+ "sql_execute_result": [
+ [
+ 22
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer living in Atlanta with the first name 'Matt'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_address_entity WHERE city = 'Atlanta' AND firstname = 'Matt';",
+ "answer": [
+ "Matt Baker"
+ ],
+ "sql_execute_result": [
+ [
+ "Matt Baker"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity_type of the sales sequence with meta_id 2?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 2;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the number of children for the category with entity_id 39.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 39;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of attribute_id 99 for product entity_id 1303?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1303 AND attribute_id = 99;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for the customer with the last name 'Nguyen' living in Seattle.",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE lastname = 'Nguyen' AND city = 'Seattle';",
+ "answer": [
+ "2065551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2065551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity_type associated with sequence_table 'sequence_order_0'?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE sequence_table = 'sequence_order_0';",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of category with entity_id 10 in its category tree.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 10;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the city associated with customer address entity_id 54?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 54;",
+ "answer": [
+ "Chicago"
+ ],
+ "sql_execute_result": [
+ [
+ "Chicago"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order with increment ID '000000156'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000156';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'lisa.kim@gmail.com'.",
+ "sql": "SELECT increment_id, grand_total, created_at FROM sales_order_grid WHERE customer_email = 'lisa.kim@gmail.com';",
+ "answer": [
+ "Order ID: 000000040, Total: 74.0000, Date: 2022-12-30 13:48:54",
+ "Order ID: 000000176, Total: 37.0000, Date: 2022-11-18 04:27:33",
+ "Order ID: 000000178, Total: 64.0000, Date: 2022-03-28 20:49:38",
+ "Order ID: 000000195, Total: 133.0000, Date: 2022-03-31 04:55:02",
+ "Order ID: 000000231, Total: 132.0000, Date: 2022-02-07 07:02:46",
+ "Order ID: 000000235, Total: 131.1000, Date: 2022-06-23 12:42:48",
+ "Order ID: 000000255, Total: 34.0000, Date: 2023-04-17 07:35:01"
+ ],
+ "sql_execute_result": [
+ [
+ "000000040",
+ "74.0000",
+ "2022-12-30 13:48:54"
+ ],
+ [
+ "000000176",
+ "37.0000",
+ "2022-11-18 04:27:33"
+ ],
+ [
+ "000000178",
+ "64.0000",
+ "2022-03-28 20:49:38"
+ ],
+ [
+ "000000195",
+ "133.0000",
+ "2022-03-31 04:55:02"
+ ],
+ [
+ "000000231",
+ "132.0000",
+ "2022-02-07 07:02:46"
+ ],
+ [
+ "000000235",
+ "131.1000",
+ "2022-06-23 12:42:48"
+ ],
+ [
+ "000000255",
+ "34.0000",
+ "2023-04-17 07:35:01"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 23?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 23 AND attribute_id = 120 AND store_id = 0;",
+ "answer": [
+ "women/tops-women/jackets-women"
+ ],
+ "sql_execute_result": [
+ [
+ "women/tops-women/jackets-women"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for product with ID 1730 in category ID 2.",
+ "sql": "SELECT SUM(position) FROM catalog_category_product WHERE product_id = 1730 AND category_id = 2;",
+ "answer": [
+ "-917"
+ ],
+ "sql_execute_result": [
+ [
+ "-917"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with increment ID '000000071'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000071';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with increment ID '000000108'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000108';",
+ "answer": [
+ "789 Rodeo Drive, Beverly Hills, California, 90212"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Rodeo Drive,Beverly Hills,California,90212"
+ ]
+ ]
+ },
+ {
+ "question": "List all categories that include product with ID 1377.",
+ "sql": "SELECT category_id, position FROM catalog_category_product WHERE product_id = 1377;",
+ "answer": [
+ "23",
+ "30",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 23,
+ -167
+ ],
+ [
+ 30,
+ -77
+ ],
+ [
+ 35,
+ -129
+ ],
+ [
+ 2,
+ -628
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with ID 28?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 28;",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 2039.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2039;",
+ "answer": [
+ "WSH12-32-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12-32-Red"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer with ID 70?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 70;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discount amount for order with entity_id 308?",
+ "sql": "SELECT discount_amount FROM sales_order WHERE entity_id = 308;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the product with product ID 24 that has been refunded?",
+ "sql": "SELECT SUM(qty_refunded) FROM sales_order_item WHERE product_id = 24;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many unique emails are there for the customer with the first name 'Jane' and last name 'Smith'?",
+ "sql": "SELECT email FROM sales_order_address WHERE firstname = 'Jane' AND lastname = 'Smith';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for order with entity ID 31?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 31;",
+ "answer": [
+ "123.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "123.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 24 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 24;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method name for the order with increment ID '000000002'? ",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000002';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with the highest rating position for the monthly bestsellers report?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Thorpe Track Pant-33-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Thorpe Track Pant-33-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are there in the 'jackets-women' category?",
+ "sql": "SELECT COUNT(*) FROM catalog_category_product WHERE category_id = (SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'jackets-women');",
+ "answer": [
+ "186"
+ ],
+ "sql_execute_result": [
+ [
+ 186
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the order with entity ID 31?",
+ "sql": "SELECT created_at FROM sales_order WHERE entity_id = 31;",
+ "answer": [
+ "2022-10-22 11:37:01"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-10-22 11:37:01"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of child categories under the category with entity ID 3?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the sales order with entity ID 31?",
+ "sql": "SELECT tax_amount FROM sales_order WHERE entity_id = 31;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 23?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 23;",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in the order with increment ID '000000150'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000150';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'harrypotterfan1@gmail.com'?",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'harrypotterfan1@gmail.com';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 67
+ ],
+ [
+ 111
+ ],
+ [
+ 136
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 234
+ ],
+ [
+ 261
+ ],
+ [
+ 296
+ ],
+ [
+ 303
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total amount for all orders placed by customer with ID 23?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_id = 23;",
+ "answer": [
+ "1520.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "1520.8000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock with a stock ID of 0?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE stock_id = 0 AND is_in_stock = 1;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many stores are associated with the email 'harrypotterfan1@gmail.com'?",
+ "sql": "SELECT store_name FROM sales_order WHERE customer_email = 'harrypotterfan1@gmail.com';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the order with ID 150?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 150;",
+ "answer": [
+ "215.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "215.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Which shipping method was used for the order with increment ID '000000147'?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE increment_id = '000000147';",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with ID 70?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 70;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for the order with increment ID '000000218'.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000218';",
+ "answer": [
+ "212.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "212.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 77 for the product with ID 1917?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND entity_id = 1917;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers with email 'avidreader99@yahoo.com' were found?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE customer_email = 'avidreader99@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Grace Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with ID 85.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 85;",
+ "answer": [
+ "789 Harvard Square,Cambridge,Massachusetts,02138"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Harvard Square,Cambridge,Massachusetts,02138"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is associated with the order item ID 1575?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE order_item_id = 1575;",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the shipment with parent ID 2?",
+ "sql": "SELECT SUM(qty) FROM sales_shipment_item WHERE parent_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order payment with ID 276?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 276;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many option values were found for the store ID 0?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE store_id = 0;",
+ "answer": [
+ "206"
+ ],
+ "sql_execute_result": [
+ [
+ "Male"
+ ],
+ [
+ "Female"
+ ],
+ [
+ "Not Specified"
+ ],
+ [
+ "Hike"
+ ],
+ [
+ "Outdoor"
+ ],
+ [
+ "Running"
+ ],
+ [
+ "Warmup"
+ ],
+ [
+ "Yoga"
+ ],
+ [
+ "Recreation"
+ ],
+ [
+ "Lounge"
+ ],
+ [
+ "Gym"
+ ],
+ [
+ "Climbing"
+ ],
+ [
+ "Crosstraining"
+ ],
+ [
+ "Post-workout"
+ ],
+ [
+ "Cycling"
+ ],
+ [
+ "Athletic"
+ ],
+ [
+ "Sports"
+ ],
+ [
+ "Hiking"
+ ],
+ [
+ "Overnight"
+ ],
+ [
+ "School"
+ ],
+ [
+ "Trail"
+ ],
+ [
+ "Travel"
+ ],
+ [
+ "Urban"
+ ],
+ [
+ "Backpack"
+ ],
+ [
+ "Luggage"
+ ],
+ [
+ "Duffel"
+ ],
+ [
+ "Messenger"
+ ],
+ [
+ "Laptop"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Tote"
+ ],
+ [
+ "Burlap"
+ ],
+ [
+ "Canvas"
+ ],
+ [
+ "Cotton"
+ ],
+ [
+ "Faux Leather"
+ ],
+ [
+ "Leather"
+ ],
+ [
+ "Mesh"
+ ],
+ [
+ "Nylon"
+ ],
+ [
+ "Polyester"
+ ],
+ [
+ "Rayon"
+ ],
+ [
+ "Ripstop"
+ ],
+ [
+ "Suede"
+ ],
+ [
+ "Foam"
+ ],
+ [
+ "Metal"
+ ],
+ [
+ "Plastic"
+ ],
+ [
+ "Rubber"
+ ],
+ [
+ "Synthetic"
+ ],
+ [
+ "Stainless Steel"
+ ],
+ [
+ "Silicone"
+ ],
+ [
+ "Adjustable"
+ ],
+ [
+ "Cross Body"
+ ],
+ [
+ "Detachable"
+ ],
+ [
+ "Double"
+ ],
+ [
+ "Padded"
+ ],
+ [
+ "Shoulder"
+ ],
+ [
+ "Single"
+ ],
+ [
+ "Telescoping"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Wheeled"
+ ],
+ [
+ "Hydration Pocket"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Flapover"
+ ],
+ [
+ "Waterproof"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "TSA Approved"
+ ],
+ [
+ "Reflective"
+ ],
+ [
+ "Laptop Sleeve"
+ ],
+ [
+ "Lockable"
+ ],
+ [
+ "Men"
+ ],
+ [
+ "Women"
+ ],
+ [
+ "Boys"
+ ],
+ [
+ "Girls"
+ ],
+ [
+ "Unisex"
+ ],
+ [
+ "Cardio"
+ ],
+ [
+ "Electronic"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Fashion"
+ ],
+ [
+ "Hydration"
+ ],
+ [
+ "Timepiece"
+ ],
+ [
+ "Download"
+ ],
+ [
+ "DVD"
+ ],
+ [
+ "Base Layer"
+ ],
+ [
+ "Basic"
+ ],
+ [
+ "Capri"
+ ],
+ [
+ "Compression"
+ ],
+ [
+ "Leggings"
+ ],
+ [
+ "Parachute"
+ ],
+ [
+ "Skort"
+ ],
+ [
+ "Snug"
+ ],
+ [
+ "Sweatpants"
+ ],
+ [
+ "Tights"
+ ],
+ [
+ "Track Pants"
+ ],
+ [
+ "Workout Pants"
+ ],
+ [
+ "Insulated"
+ ],
+ [
+ "Jacket"
+ ],
+ [
+ "Vest"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "Hooded"
+ ],
+ [
+ "Heavy Duty"
+ ],
+ [
+ "Rain Coat"
+ ],
+ [
+ "Hard Shell"
+ ],
+ [
+ "Soft Shell"
+ ],
+ [
+ "Windbreaker"
+ ],
+ [
+ "½ zip"
+ ],
+ [
+ "¼ zip"
+ ],
+ [
+ "Full Zip"
+ ],
+ [
+ "Reversible"
+ ],
+ [
+ "Bra"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Sweatshirt"
+ ],
+ [
+ "Polo"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Tee"
+ ],
+ [
+ "Pullover"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Cardigan"
+ ],
+ [
+ "Henley"
+ ],
+ [
+ "Tunic"
+ ],
+ [
+ "Camisole"
+ ],
+ [
+ "Cocona® performance fabric"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Fleece"
+ ],
+ [
+ "Hemp"
+ ],
+ [
+ "Jersey"
+ ],
+ [
+ "LumaTech™"
+ ],
+ [
+ "Lycra®"
+ ],
+ [
+ "Microfiber"
+ ],
+ [
+ "Spandex"
+ ],
+ [
+ "HeatTec®"
+ ],
+ [
+ "EverCool™"
+ ],
+ [
+ "Organic Cotton"
+ ],
+ [
+ "TENCEL"
+ ],
+ [
+ "CoolTech™"
+ ],
+ [
+ "Khaki"
+ ],
+ [
+ "Linen"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Terry"
+ ],
+ [
+ "Sleeve"
+ ],
+ [
+ "Long-Sleeve"
+ ],
+ [
+ "Short-Sleeve"
+ ],
+ [
+ "Sleeveless"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Strap"
+ ],
+ [
+ "N/A"
+ ],
+ [
+ "? zip"
+ ],
+ [
+ "Boat Neck"
+ ],
+ [
+ "Crew"
+ ],
+ [
+ "Full zip"
+ ],
+ [
+ "V-neck"
+ ],
+ [
+ "Ballet"
+ ],
+ [
+ "Scoop"
+ ],
+ [
+ "High Collar"
+ ],
+ [
+ "Stand Collar"
+ ],
+ [
+ "Roll Neck"
+ ],
+ [
+ "Square Neck"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Checked"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Graphic Print"
+ ],
+ [
+ "Solid"
+ ],
+ [
+ "Solid-Highlight"
+ ],
+ [
+ "Striped"
+ ],
+ [
+ "Camo"
+ ],
+ [
+ "Geometric"
+ ],
+ [
+ "All-Weather"
+ ],
+ [
+ "Cold"
+ ],
+ [
+ "Cool"
+ ],
+ [
+ "Indoor"
+ ],
+ [
+ "Mild"
+ ],
+ [
+ "Rainy"
+ ],
+ [
+ "Spring"
+ ],
+ [
+ "Warm"
+ ],
+ [
+ "Windy"
+ ],
+ [
+ "Wintry"
+ ],
+ [
+ "Hot"
+ ],
+ [
+ "Black"
+ ],
+ [
+ "Blue"
+ ],
+ [
+ "Brown"
+ ],
+ [
+ "Gray"
+ ],
+ [
+ "Green"
+ ],
+ [
+ "Lavender"
+ ],
+ [
+ "Multi"
+ ],
+ [
+ "Orange"
+ ],
+ [
+ "Purple"
+ ],
+ [
+ "Red"
+ ],
+ [
+ "White"
+ ],
+ [
+ "Yellow"
+ ],
+ [
+ "55 cm"
+ ],
+ [
+ "XS"
+ ],
+ [
+ "65 cm"
+ ],
+ [
+ "S"
+ ],
+ [
+ "75 cm"
+ ],
+ [
+ "M"
+ ],
+ [
+ "6 foot"
+ ],
+ [
+ "L"
+ ],
+ [
+ "8 foot"
+ ],
+ [
+ "XL"
+ ],
+ [
+ "10 foot"
+ ],
+ [
+ "28"
+ ],
+ [
+ "29"
+ ],
+ [
+ "30"
+ ],
+ [
+ "31"
+ ],
+ [
+ "32"
+ ],
+ [
+ "33"
+ ],
+ [
+ "34"
+ ],
+ [
+ "36"
+ ],
+ [
+ "38"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU and name of the product associated with sales invoice item ID 1?",
+ "sql": "SELECT sku, name FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "WS03-XS-Red",
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red",
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with SKU 'WS08-XS-Blue' in the sales invoice?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all review statuses available in the system.",
+ "sql": "SELECT status_code FROM review_status;",
+ "answer": [
+ "Approved",
+ "Pending",
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ],
+ [
+ "Pending"
+ ],
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with ID 123.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 123;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with ID 2 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the next sequence value for shipments?",
+ "sql": "SELECT MAX(sequence_value) + 1 AS next_sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Get the base row total including tax for the product 'Iris Workout Top'.",
+ "sql": "SELECT base_row_total_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the canceled orders in store ID 0?",
+ "sql": "SELECT SUM(total_qty_ordered) FROM sales_order_aggregated_created WHERE order_status = 'canceled' AND store_id = 0;",
+ "answer": [
+ "402.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "402.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Which region name corresponds to region ID 570 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 570 AND locale = 'en_US';",
+ "answer": [
+ "Andhra Pradesh"
+ ],
+ "sql_execute_result": [
+ [
+ "Andhra Pradesh"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for canceled orders in store ID 0 on 2022-05-02?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "83.3000"
+ ],
+ "sql_execute_result": [
+ [
+ "83.3000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 2040.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the option ID 17?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 17;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-08-25 in store ID 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-08-25' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the email 'bbjones@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'bbjones@gmail.com';",
+ "answer": [
+ "Bob Jones"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob Jones"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for store ID 0 on 2022-05-02 for canceled orders?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "83.3000"
+ ],
+ "sql_execute_result": [
+ [
+ "83.3000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders with status 'canceled' in store ID 0 on 2022-05-02?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 8?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 8 AND attribute_id = 45;",
+ "answer": [
+ "New Luma Yoga Collection"
+ ],
+ "sql_execute_result": [
+ [
+ "New Luma Yoga Collection"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the 'Harmony Lumaflex\u2122 Strength Band Kit'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_id = 23;",
+ "answer": [
+ "22.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "22.0000"
+ ],
+ [
+ "22.0000"
+ ],
+ [
+ "22.0000"
+ ],
+ [
+ "22.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all customer groups available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the main website?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Josie Yoga Jacket-S-Blue' in April 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1225 AND period = '2023-04-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Strike Endurance Tee-L-Black' for the year 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_id = 616 AND period = '2022-01-01';",
+ "answer": [
+ "198",
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ 198
+ ],
+ [
+ 70
+ ]
+ ]
+ },
+ {
+ "question": "List all the store codes available.",
+ "sql": "SELECT code FROM store_website;",
+ "answer": [
+ "admin",
+ "base"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ],
+ [
+ "base"
+ ]
+ ]
+ },
+ {
+ "question": "Which category is identified by the value 'Root Catalog'?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE value = 'Root Catalog';",
+ "answer": [
+ "Root Catalog"
+ ],
+ "sql_execute_result": [
+ [
+ "Root Catalog"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Retailer' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Identify the product with the highest rating position for the year 2022 from the sampled data.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE period = '2022-01-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current position of the 'Quality' rating?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'nike' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the customer address with ID 34.",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 34;",
+ "answer": [
+ "Las Vegas"
+ ],
+ "sql_execute_result": [
+ [
+ "Las Vegas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for the customer address with ID 46?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 46;",
+ "answer": [
+ "2125551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2125551212"
+ ]
+ ]
+ },
+ {
+ "question": "Which country does the customer address with ID 20 belong to?",
+ "sql": "SELECT country_id FROM customer_address_entity WHERE entity_id = 20;",
+ "answer": [
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity type with ID 2?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 2;",
+ "answer": [
+ "customer_address"
+ ],
+ "sql_execute_result": [
+ [
+ "customer_address"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity model for the entity type with code 'order'?",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'order';",
+ "answer": [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Sales\\Model\\ResourceModel\\Order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current sequence value for invoices?",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses were found for the customer whose order includes the shipping address '789 17th St, Denver, Colorado'?",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '789 17th St' AND city = 'Denver' AND region = 'Colorado';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have the billing address '789 Main Street, Houston, Texas'?",
+ "sql": "SELECT firstname, lastname FROM sales_order_address WHERE street = '789 Main Street' AND city = 'Houston' AND region = 'Texas';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ],
+ [
+ "Olivia",
+ "Lee"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group does Veronica Costello belong to?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = (SELECT customer_group_id FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello');",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of child categories under the category with ID 3.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount refunded for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have the shipping address '890 Elm Street, Dallas, Texas'?",
+ "sql": "SELECT firstname, lastname FROM sales_order_address WHERE street = '890 Elm Street' AND city = 'Dallas' AND region = 'Texas';",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ],
+ [
+ "Bob",
+ "Jones"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 1062 in the locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 1062 AND locale = 'en_US';",
+ "answer": [
+ "J\u00e4mtlands l\u00e4n"
+ ],
+ "sql_execute_result": [
+ [
+ "J\u00e4mtlands l\u00e4n"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with path '1/2/20/22' have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE path = '1/2/20/22';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the email 'roni_cost@example.com'?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for Alexander Thomas?",
+ "sql": "SELECT street, city, region, postcode FROM sales_order_address WHERE email = 'alexander.thomas@hotmail.com';",
+ "answer": [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ],
+ [
+ "456 Hollywood Blvd",
+ "Los Angeles",
+ "California",
+ "90028"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of orders placed by customer with email 'avidreader99@yahoo.com'.",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'avidreader99@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in order with increment ID '000000258'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000258';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position in store ID 1 for the year 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2022-01-01' ORDER BY rating_pos LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all orders placed in store with code 'default'?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE store_id IN (SELECT store_id FROM store WHERE code = 'default');",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 0?",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used in the order with ID 90?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 90;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of search queries with 'nike' that have zero results.",
+ "sql": "SELECT COUNT(*) FROM search_query WHERE query_text = 'nike' AND num_results = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What was the last updated date for the search query 'hollister'?",
+ "sql": "SELECT updated_at FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "2023-04-24 19:23:28"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-24 19:23:28"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Cassia Funnel Sweatshirt-M-Purple' in store ID 1.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Cassia Funnel Sweatshirt-M-Purple' AND store_id = 1;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity_id 1499?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1499;",
+ "answer": [
+ "WS09-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS09-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with website_id 0?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Check the stock quantity for product with ID 1577.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1577;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the product with ID 338 in its category.",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 338;",
+ "answer": [
+ "-84"
+ ],
+ "sql_execute_result": [
+ [
+ -84
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store name for website with ID 0?",
+ "sql": "SELECT name FROM store WHERE website_id = 0 AND store_id = (SELECT default_store_id FROM store_group WHERE website_id = 0);",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the customer email for customer with entity_id 1.",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Locate the region name with region_id 1013.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 1013;",
+ "answer": [
+ "lubelskie"
+ ],
+ "sql_execute_result": [
+ [
+ "lubelskie"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity_id 1577 currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1577;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with country_id 'LC'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'LC';",
+ "answer": [
+ "LCA"
+ ],
+ "sql_execute_result": [
+ [
+ "LCA"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name of the region with region_id 902.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 902;",
+ "answer": [
+ "Potenza"
+ ],
+ "sql_execute_result": [
+ [
+ "Potenza"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the sales order payment with entity_id 136?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 136;",
+ "answer": [
+ "208.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "208.2000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sequence table name for the sales sequence meta with meta_id 8.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE meta_id = 8;",
+ "answer": [
+ "sequence_shipment_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_shipment_1"
+ ]
+ ]
+ },
+ {
+ "question": "Which store group has the code 'main_website_store'?",
+ "sql": "SELECT name FROM store_group WHERE code = 'main_website_store';",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the sales order payment with parent_id 287?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 287;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity_type for the sales sequence meta with store_id 0.",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE store_id = 0;",
+ "answer": [
+ "creditmemo",
+ "invoice",
+ "order",
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "creditmemo"
+ ],
+ [
+ "invoice"
+ ],
+ [
+ "order"
+ ],
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "What is the country_id for the region with code 'HR-03'?",
+ "sql": "SELECT country_id FROM directory_country_region WHERE code = 'HR-03';",
+ "answer": [
+ "HR"
+ ],
+ "sql_execute_result": [
+ [
+ "HR"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method is used for the sales order payment with entity_id 38?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 38;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group_id 0?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 0;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 1 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 1;",
+ "answer": [
+ "39"
+ ],
+ "sql_execute_result": [
+ [
+ 39
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'IQ'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'IQ';",
+ "answer": [
+ "IRQ"
+ ],
+ "sql_execute_result": [
+ [
+ "IRQ"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with option ID 169 in store ID 0?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 169 AND store_id = 0;",
+ "answer": [
+ "L"
+ ],
+ "sql_execute_result": [
+ [
+ "L"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the category with entity ID 34.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 34;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sequence value of the most recent order.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity ID 38?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 38;",
+ "answer": [
+ "1/2/38"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/38"
+ ]
+ ]
+ },
+ {
+ "question": "How many entity IDs were found for the category created on '2023-04-19 16:13:19'?",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE created_at = '2023-04-19 16:13:19';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review status with ID 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value ID for the attribute option with value 'Foam'.",
+ "sql": "SELECT value_id FROM eav_attribute_option_value WHERE value = 'Foam';",
+ "answer": [
+ "42"
+ ],
+ "sql_execute_result": [
+ [
+ 42
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 1395?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1395 AND attribute_id = 75;",
+ "answer": [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the 'Minerva LumaTech\u2122 V-Tee' product?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were bestsellers in January 2023 in store ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-01-01' AND store_id = 0;",
+ "answer": [
+ "44"
+ ],
+ "sql_execute_result": [
+ [
+ "Impulse Duffle"
+ ],
+ [
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ "Overnight Duffle"
+ ],
+ [
+ "Sprite Stasis Ball 55 cm"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Aim Analog Watch"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Black"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Purple"
+ ],
+ [
+ "Grayson Crewneck Sweatshirt -XL-Red"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red"
+ ],
+ [
+ "Orion Two-Tone Fitted Jacket-XL-Black"
+ ],
+ [
+ "Jupiter All-Weather Trainer -S-Purple"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-L-Green"
+ ],
+ [
+ "Deion Long-Sleeve EverCool™ Tee-XL-Black"
+ ],
+ [
+ "Atlas Fitness Tank-L-Blue"
+ ],
+ [
+ "Caesar Warm-Up Pant-36-Purple"
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ [
+ "Orestes Yoga Pant -34-Green"
+ ],
+ [
+ "Aether Gym Pant -34-Green"
+ ],
+ [
+ "Aether Gym Pant -36-Brown"
+ ],
+ [
+ "Cobalt CoolTech™ Fitness Short-32-Red"
+ ],
+ [
+ "Hawkeye Yoga Short-32-Blue"
+ ],
+ [
+ "Mona Pullover Hoodlie-L-Purple"
+ ],
+ [
+ "Stellar Solar Jacket-L-Yellow"
+ ],
+ [
+ "Josie Yoga Jacket-XS-Blue"
+ ],
+ [
+ "Riona Full Zip Jacket-XL-Red"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Orange"
+ ],
+ [
+ "Iris Workout Top-L-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-White"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-M-Red"
+ ],
+ [
+ "Prima Compete Bra Top-M-Purple"
+ ],
+ [
+ "Zoe Tank-S-Yellow"
+ ],
+ [
+ "Aeon Capri-29-Blue"
+ ],
+ [
+ "Sylvia Capri-28-Red"
+ ],
+ [
+ "Fiona Fitness Short-28-Green"
+ ],
+ [
+ "Fiona Fitness Short-30-Black"
+ ],
+ [
+ "Maxima Drawstring Short-32-Gray"
+ ],
+ [
+ "Artemis Running Short-30-Black"
+ ],
+ [
+ "Ina Compression Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the 'Iris Workout Top' product?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the locale name for region ID 160.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 160 AND locale = 'en_US';",
+ "answer": [
+ "Lugo"
+ ],
+ "sql_execute_result": [
+ [
+ "Lugo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute code 'minimal_price'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'minimal_price';",
+ "answer": [
+ "Minimal Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Minimal Price"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position of the 'Sprite Yoga Strap 6 foot' product in February 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sprite Yoga Strap 6 foot' AND period = '2022-02-01';",
+ "answer": [
+ "3",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the 'Minerva LumaTech\u2122 V-Tee' product?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute code 'password_hash'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'password_hash';",
+ "answer": [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID for the bestseller 'Didi Sport Watch' in December 2022.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Didi Sport Watch' AND period = '2022-12-01';",
+ "answer": [
+ "44"
+ ],
+ "sql_execute_result": [
+ [
+ 44
+ ],
+ [
+ 44
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the default store view?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product with ID 1428.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1428;",
+ "answer": [
+ "WS03"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount including tax for the invoice item with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT row_total_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with code 'admin' active?",
+ "sql": "SELECT is_active FROM store WHERE code = 'admin';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the 'fraud' order status?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Which website does the 'Main Website Store' belong to?",
+ "sql": "SELECT website_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest order.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the row total for the invoice item with entity ID 1?",
+ "sql": "SELECT row_total FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the root category ID for the 'Main Website Store'.",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product with entity ID 485.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 485;",
+ "answer": [
+ "MS11-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MS11-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many stock quantities were found for products on stock ID 1?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE stock_id = 1;",
+ "answer": [
+ "2040"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "4.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "3.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "14.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "3.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "100.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many statuses are available in the sales order status table?",
+ "sql": "SELECT status FROM sales_order_status;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "paypal_canceled_reversal"
+ ],
+ [
+ "paypal_reversed"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "pending_payment"
+ ],
+ [
+ "pending_paypal"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the invoice associated with order ID 2?",
+ "sql": "SELECT shipping_amount FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were created on '2023-04-19 16:13:44'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE created_at = '2023-04-19 16:13:44';",
+ "answer": [
+ "64"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the currency code used for orders placed on store ID 1.",
+ "sql": "SELECT order_currency_code FROM sales_invoice WHERE store_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Check if product with SKU 'WJ09-L-Blue' is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WJ09-L-Blue');",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice with entity ID 2?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer Lucy Garcia?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Lucy Garcia';",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with ID 19.",
+ "sql": "SELECT increment_id, status, grand_total FROM sales_order_grid WHERE customer_id = 19;",
+ "answer": [
+ "Order ID: 000000026, Status: canceled, Total: 216.0000",
+ "Order ID: 000000029, Status: canceled, Total: 98.4000",
+ "Order ID: 000000050, Status: complete, Total: 268.0000",
+ "Order ID: 000000112, Status: complete, Total: 153.0000",
+ "Order ID: 000000113, Status: complete, Total: 88.4000",
+ "Order ID: 000000164, Status: complete, Total: 152.0000",
+ "Order ID: 000000204, Status: canceled, Total: 44.0000",
+ "Order ID: 000000215, Status: complete, Total: 34.0000",
+ "Order ID: 000000264, Status: complete, Total: 203.7200"
+ ],
+ "sql_execute_result": [
+ [
+ "000000026",
+ "canceled",
+ "216.0000"
+ ],
+ [
+ "000000029",
+ "canceled",
+ "98.4000"
+ ],
+ [
+ "000000050",
+ "complete",
+ "268.0000"
+ ],
+ [
+ "000000112",
+ "complete",
+ "153.0000"
+ ],
+ [
+ "000000113",
+ "complete",
+ "88.4000"
+ ],
+ [
+ "000000164",
+ "complete",
+ "152.0000"
+ ],
+ [
+ "000000204",
+ "canceled",
+ "44.0000"
+ ],
+ [
+ "000000215",
+ "complete",
+ "34.0000"
+ ],
+ [
+ "000000264",
+ "complete",
+ "203.7200"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items ordered in order with increment ID '000000113'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE order_id = (SELECT entity_id FROM sales_order WHERE increment_id = '000000113');",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer John Lee.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'John Lee';",
+ "answer": [
+ "456 Michigan Ave Chicago Illinois 60611"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Michigan Ave Chicago Illinois 60611"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the payment method for order 270 is 'checkmo'.",
+ "sql": "SELECT payment_method = 'checkmo' FROM sales_order_grid WHERE entity_id = 270;",
+ "answer": [
+ "true"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sort order for attribute option with ID 114.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 114;",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "Find all completed orders for customer Ava Brown.",
+ "sql": "SELECT increment_id, grand_total FROM sales_order_grid WHERE customer_name = 'Ava Brown' AND status = 'complete';",
+ "answer": [
+ "Order ID: 000000048, Total: 176.60",
+ "Order ID: 000000078, Total: 133.00",
+ "Order ID: 000000090, Total: 202.00",
+ "Order ID: 000000128, Total: 212.25",
+ "Order ID: 000000200, Total: 191.50",
+ "Order ID: 000000230, Total: 93.40",
+ "Order ID: 000000270, Total: 60.00"
+ ],
+ "sql_execute_result": [
+ [
+ "000000048",
+ "176.6000"
+ ],
+ [
+ "000000078",
+ "133.0000"
+ ],
+ [
+ "000000090",
+ "202.0000"
+ ],
+ [
+ "000000128",
+ "212.2500"
+ ],
+ [
+ "000000200",
+ "191.5000"
+ ],
+ [
+ "000000230",
+ "93.4000"
+ ],
+ [
+ "000000270",
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the warning value for the sales sequence profile with ID 8?",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE profile_id = 8;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who left the review titled 'The seams bother me'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'The seams bother me';",
+ "answer": [
+ "Carma"
+ ],
+ "sql_execute_result": [
+ [
+ "Carma"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for customer with entity_id 42.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 42;",
+ "answer": [
+ "emily.chen@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emily.chen@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity_id 15?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 15 AND attribute_id = 45;",
+ "answer": [
+ "Hoodies & Sweatshirts"
+ ],
+ "sql_execute_result": [
+ [
+ "Hoodies & Sweatshirts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name with store_id 0?",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipment sequences are there in the sequence_shipment_1 table?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with review_id 224?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 224;",
+ "answer": [
+ "Horrible unflatterung design"
+ ],
+ "sql_execute_result": [
+ [
+ "Horrible unflatterung design"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full billing address for customer named 'Sophia Kim'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Sophia Kim';",
+ "answer": [
+ "888 Charles St Baltimore Maryland 21201"
+ ],
+ "sql_execute_result": [
+ [
+ "888 Charles St Baltimore Maryland 21201"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code associated with attribute_id 119 in the catalog_category_entity_varchar table?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE attribute_id = 119 LIMIT 1;",
+ "answer": [
+ "gear"
+ ],
+ "sql_execute_result": [
+ [
+ "gear"
+ ]
+ ]
+ },
+ {
+ "question": "How many nicknames were found in the review_detail table with store_id 1?",
+ "sql": "SELECT nickname FROM review_detail WHERE store_id = 1;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ "Chi"
+ ],
+ [
+ "Filiberto"
+ ],
+ [
+ "Herb"
+ ],
+ [
+ "Craig"
+ ],
+ [
+ "Orville"
+ ],
+ [
+ "Marty"
+ ],
+ [
+ "Chase"
+ ],
+ [
+ "Kennith"
+ ],
+ [
+ "Gaston"
+ ],
+ [
+ "Issac"
+ ],
+ [
+ "Daren"
+ ],
+ [
+ "Garry"
+ ],
+ [
+ "Quinn"
+ ],
+ [
+ "Jame"
+ ],
+ [
+ "Adalberto"
+ ],
+ [
+ "Refugio"
+ ],
+ [
+ "Jewel"
+ ],
+ [
+ "Brice"
+ ],
+ [
+ "Billy"
+ ],
+ [
+ "Marc"
+ ],
+ [
+ "Luther"
+ ],
+ [
+ "Leon"
+ ],
+ [
+ "Max"
+ ],
+ [
+ "Chuck"
+ ],
+ [
+ "Robert"
+ ],
+ [
+ "Noe"
+ ],
+ [
+ "Frank"
+ ],
+ [
+ "Jamie"
+ ],
+ [
+ "Bobby"
+ ],
+ [
+ "Tommie"
+ ],
+ [
+ "Markus"
+ ],
+ [
+ "Xavier"
+ ],
+ [
+ "Mike"
+ ],
+ [
+ "Emory"
+ ],
+ [
+ "Jon"
+ ],
+ [
+ "Homer"
+ ],
+ [
+ "Wilbur"
+ ],
+ [
+ "Long"
+ ],
+ [
+ "Lindsay"
+ ],
+ [
+ "Randell"
+ ],
+ [
+ "Wyatt"
+ ],
+ [
+ "Glen"
+ ],
+ [
+ "Shon"
+ ],
+ [
+ "Neal"
+ ],
+ [
+ "Herschel"
+ ],
+ [
+ "Rudolf"
+ ],
+ [
+ "Emmett"
+ ],
+ [
+ "Burl"
+ ],
+ [
+ "Carol"
+ ],
+ [
+ "Ronald"
+ ],
+ [
+ "Arden"
+ ],
+ [
+ "Jessie"
+ ],
+ [
+ "Rashad"
+ ],
+ [
+ "Barrett"
+ ],
+ [
+ "Davis"
+ ],
+ [
+ "Donte"
+ ],
+ [
+ "Reyes"
+ ],
+ [
+ "Harold"
+ ],
+ [
+ "Darius"
+ ],
+ [
+ "Armando"
+ ],
+ [
+ "Hershel"
+ ],
+ [
+ "Hans"
+ ],
+ [
+ "Kenny"
+ ],
+ [
+ "Nicky"
+ ],
+ [
+ "Mark"
+ ],
+ [
+ "Margarito"
+ ],
+ [
+ "Tyree"
+ ],
+ [
+ "Weston"
+ ],
+ [
+ "Jude"
+ ],
+ [
+ "Leigh"
+ ],
+ [
+ "Roland"
+ ],
+ [
+ "Edison"
+ ],
+ [
+ "Hai"
+ ],
+ [
+ "Cletus"
+ ],
+ [
+ "Gustavo"
+ ],
+ [
+ "Filiberto"
+ ],
+ [
+ "Nathan"
+ ],
+ [
+ "Darwin"
+ ],
+ [
+ "Jonas"
+ ],
+ [
+ "Warren"
+ ],
+ [
+ "Jerome"
+ ],
+ [
+ "Alfonzo"
+ ],
+ [
+ "Sergio"
+ ],
+ [
+ "Donnell"
+ ],
+ [
+ "Erwin"
+ ],
+ [
+ "Don"
+ ],
+ [
+ "Maynard"
+ ],
+ [
+ "Hiram"
+ ],
+ [
+ "Darwin"
+ ],
+ [
+ "Chung"
+ ],
+ [
+ "Jae"
+ ],
+ [
+ "Alfred"
+ ],
+ [
+ "Carlo"
+ ],
+ [
+ "Gus"
+ ],
+ [
+ "Harry"
+ ],
+ [
+ "Damon"
+ ],
+ [
+ "Duncan"
+ ],
+ [
+ "Wendell"
+ ],
+ [
+ "Harold"
+ ],
+ [
+ "Kasey"
+ ],
+ [
+ "Manual"
+ ],
+ [
+ "Milton"
+ ],
+ [
+ "Antwan"
+ ],
+ [
+ "Lamont"
+ ],
+ [
+ "Gerald"
+ ],
+ [
+ "Ike"
+ ],
+ [
+ "Hugh"
+ ],
+ [
+ "Judson"
+ ],
+ [
+ "Carlo"
+ ],
+ [
+ "Jerold"
+ ],
+ [
+ "Ezra"
+ ],
+ [
+ "Simon"
+ ],
+ [
+ "Noah"
+ ],
+ [
+ "Joey"
+ ],
+ [
+ "King"
+ ],
+ [
+ "Irwin"
+ ],
+ [
+ "Monroe"
+ ],
+ [
+ "Josh"
+ ],
+ [
+ "Leslie"
+ ],
+ [
+ "Jody"
+ ],
+ [
+ "Chad"
+ ],
+ [
+ "Anibal"
+ ],
+ [
+ "Dominic"
+ ],
+ [
+ "Mervin"
+ ],
+ [
+ "Trey"
+ ],
+ [
+ "Edmund"
+ ],
+ [
+ "Tracey"
+ ],
+ [
+ "Archie"
+ ],
+ [
+ "Eldon"
+ ],
+ [
+ "Joey"
+ ],
+ [
+ "Matthew"
+ ],
+ [
+ "Monroe"
+ ],
+ [
+ "Scotty"
+ ],
+ [
+ "Alexander"
+ ],
+ [
+ "Graham"
+ ],
+ [
+ "Patrick"
+ ],
+ [
+ "Shella"
+ ],
+ [
+ "Crissy"
+ ],
+ [
+ "Alene"
+ ],
+ [
+ "Cliff"
+ ],
+ [
+ "Fiona"
+ ],
+ [
+ "Ardith"
+ ],
+ [
+ "Randy"
+ ],
+ [
+ "Keren"
+ ],
+ [
+ "Madeleine"
+ ],
+ [
+ "Ricky"
+ ],
+ [
+ "Krystle"
+ ],
+ [
+ "Lavonia"
+ ],
+ [
+ "Andy"
+ ],
+ [
+ "Orville"
+ ],
+ [
+ "Toya"
+ ],
+ [
+ "Johanne"
+ ],
+ [
+ "Ashlea"
+ ],
+ [
+ "Olimpia"
+ ],
+ [
+ "Danielle"
+ ],
+ [
+ "Keith"
+ ],
+ [
+ "Dodie"
+ ],
+ [
+ "Tara"
+ ],
+ [
+ "Chasidy"
+ ],
+ [
+ "Tamisha"
+ ],
+ [
+ "Lidia"
+ ],
+ [
+ "Elizabeth"
+ ],
+ [
+ "Sueann"
+ ],
+ [
+ "Sadye"
+ ],
+ [
+ "Adena"
+ ],
+ [
+ "Tracee"
+ ],
+ [
+ "Anglea"
+ ],
+ [
+ "Lasandra"
+ ],
+ [
+ "Francesca"
+ ],
+ [
+ "Susy"
+ ],
+ [
+ "Ingeborg"
+ ],
+ [
+ "Aiko"
+ ],
+ [
+ "Dollie"
+ ],
+ [
+ "Caroyln"
+ ],
+ [
+ "Desiree"
+ ],
+ [
+ "Cecelia"
+ ],
+ [
+ "Natosha"
+ ],
+ [
+ "Pok"
+ ],
+ [
+ "Grace"
+ ],
+ [
+ "Nadia"
+ ],
+ [
+ "Laronda"
+ ],
+ [
+ "Colleen"
+ ],
+ [
+ "Denese"
+ ],
+ [
+ "Joette"
+ ],
+ [
+ "Gala"
+ ],
+ [
+ "Shonta"
+ ],
+ [
+ "Kathrine"
+ ],
+ [
+ "Olene"
+ ],
+ [
+ "Scarlet"
+ ],
+ [
+ "Martina"
+ ],
+ [
+ "Elly"
+ ],
+ [
+ "Temeka"
+ ],
+ [
+ "Julieann"
+ ],
+ [
+ "Louisa"
+ ],
+ [
+ "Joelle"
+ ],
+ [
+ "Jonna"
+ ],
+ [
+ "Jeanelle"
+ ],
+ [
+ "Oma"
+ ],
+ [
+ "Beatris"
+ ],
+ [
+ "Georgeann"
+ ],
+ [
+ "Stefany"
+ ],
+ [
+ "Lilliam"
+ ],
+ [
+ "Sadye"
+ ],
+ [
+ "Rolande"
+ ],
+ [
+ "Elvina"
+ ],
+ [
+ "Alesha"
+ ],
+ [
+ "Tennille"
+ ],
+ [
+ "Lakeesha"
+ ],
+ [
+ "Charlyn"
+ ],
+ [
+ "Regenia"
+ ],
+ [
+ "Juliette"
+ ],
+ [
+ "Anamaria"
+ ],
+ [
+ "Tiffiny"
+ ],
+ [
+ "Cara"
+ ],
+ [
+ "Nadene"
+ ],
+ [
+ "Tawny"
+ ],
+ [
+ "Illa"
+ ],
+ [
+ "Ela"
+ ],
+ [
+ "Kecia"
+ ],
+ [
+ "Johna"
+ ],
+ [
+ "Jessi"
+ ],
+ [
+ "Kellye"
+ ],
+ [
+ "Marvella"
+ ],
+ [
+ "May"
+ ],
+ [
+ "Chasidy"
+ ],
+ [
+ "Wava"
+ ],
+ [
+ "Kristyn"
+ ],
+ [
+ "Janna"
+ ],
+ [
+ "Venetta"
+ ],
+ [
+ "Demetrice"
+ ],
+ [
+ "Mathilde"
+ ],
+ [
+ "Eda"
+ ],
+ [
+ "Denyse"
+ ],
+ [
+ "Ashlee"
+ ],
+ [
+ "Nyla"
+ ],
+ [
+ "Judith"
+ ],
+ [
+ "Isadora"
+ ],
+ [
+ "Isela"
+ ],
+ [
+ "Dannielle"
+ ],
+ [
+ "Deloise"
+ ],
+ [
+ "Rosann"
+ ],
+ [
+ "Lily"
+ ],
+ [
+ "Brittany"
+ ],
+ [
+ "Brittni"
+ ],
+ [
+ "Pamela"
+ ],
+ [
+ "Tarra"
+ ],
+ [
+ "Lue"
+ ],
+ [
+ "Mavis"
+ ],
+ [
+ "Kemberly"
+ ],
+ [
+ "Tashina"
+ ],
+ [
+ "Beverlee"
+ ],
+ [
+ "Latarsha"
+ ],
+ [
+ "Lorena"
+ ],
+ [
+ "Allyson"
+ ],
+ [
+ "Chloe"
+ ],
+ [
+ "Hsiu"
+ ],
+ [
+ "Annamaria"
+ ],
+ [
+ "Lang"
+ ],
+ [
+ "Becki"
+ ],
+ [
+ "Hellen"
+ ],
+ [
+ "Pearle"
+ ],
+ [
+ "Slyvia"
+ ],
+ [
+ "Nell"
+ ],
+ [
+ "Skye"
+ ],
+ [
+ "Amberly"
+ ],
+ [
+ "Ashli"
+ ],
+ [
+ "Ruth"
+ ],
+ [
+ "Sonja"
+ ],
+ [
+ "Candie"
+ ],
+ [
+ "Elmira"
+ ],
+ [
+ "Nyla"
+ ],
+ [
+ "Hollie"
+ ],
+ [
+ "Celestine"
+ ],
+ [
+ "Irma"
+ ],
+ [
+ "Gidget"
+ ],
+ [
+ "Tatiana"
+ ],
+ [
+ "Maisie"
+ ],
+ [
+ "Karine"
+ ],
+ [
+ "Bree"
+ ],
+ [
+ "Lakeisha"
+ ],
+ [
+ "Collette"
+ ],
+ [
+ "Adaline"
+ ],
+ [
+ "Karisa"
+ ],
+ [
+ "Evelyn"
+ ],
+ [
+ "Markita"
+ ],
+ [
+ "Manuela"
+ ],
+ [
+ "Gwen"
+ ],
+ [
+ "Jovan"
+ ],
+ [
+ "Shellie"
+ ],
+ [
+ "Dena"
+ ],
+ [
+ "Evalyn"
+ ],
+ [
+ "Adele"
+ ],
+ [
+ "Star"
+ ],
+ [
+ "Nikki"
+ ],
+ [
+ "Rosy"
+ ],
+ [
+ "Aleen"
+ ],
+ [
+ "Dannette"
+ ],
+ [
+ "Lita"
+ ],
+ [
+ "Joyce"
+ ],
+ [
+ "Gertrud"
+ ],
+ [
+ "Leonia"
+ ],
+ [
+ "Nadene"
+ ],
+ [
+ "Min"
+ ],
+ [
+ "Katy"
+ ],
+ [
+ "Laurice"
+ ],
+ [
+ "Kara"
+ ],
+ [
+ "Angeline"
+ ],
+ [
+ "Marita"
+ ],
+ [
+ "Pura"
+ ],
+ [
+ "Natashia"
+ ],
+ [
+ "Brigitte"
+ ],
+ [
+ "Roseline"
+ ],
+ [
+ "Garnett"
+ ],
+ [
+ "Eugena"
+ ],
+ [
+ "Elina"
+ ],
+ [
+ "Mistie"
+ ],
+ [
+ "Ming"
+ ],
+ [
+ "Mei"
+ ],
+ [
+ "Bernetta"
+ ],
+ [
+ "Roxie"
+ ],
+ [
+ "Ardelia"
+ ],
+ [
+ "Dorcas"
+ ],
+ [
+ "Cayla"
+ ],
+ [
+ "Tonya"
+ ],
+ [
+ "Eartha"
+ ],
+ [
+ "Jammie"
+ ],
+ [
+ "Lorena"
+ ],
+ [
+ "Modesta"
+ ],
+ [
+ "Ayanna"
+ ],
+ [
+ "Avelina"
+ ],
+ [
+ "Maribel"
+ ],
+ [
+ "Krystina"
+ ],
+ [
+ "Concepcion"
+ ],
+ [
+ "Emerald"
+ ],
+ [
+ "Teofila"
+ ],
+ [
+ "Elza"
+ ],
+ [
+ "Shaunte"
+ ],
+ [
+ "Merrie"
+ ],
+ [
+ "Pearl"
+ ],
+ [
+ "Thalia"
+ ],
+ [
+ "Carma"
+ ],
+ [
+ "Maryanna"
+ ],
+ [
+ "Elfriede"
+ ],
+ [
+ "Yan"
+ ],
+ [
+ "Valorie"
+ ],
+ [
+ "Mikkel"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "seam miller"
+ ],
+ [
+ "Emma"
+ ],
+ [
+ "customer"
+ ],
+ [
+ "Hannah Lim"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number for customer 'Katie Wong'.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Katie Wong';",
+ "answer": [
+ "2065551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2065551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with entity ID 186?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 186;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with entity ID 186?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 186;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order with entity ID 207?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 207;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'Mona Pullover Hoodlie'?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1036 AND attribute_id = 73 AND store_id = 0;",
+ "answer": [
+ "Mona Pullover Hoodlie-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Mona Pullover Hoodlie-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders on 2022-06-02?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-06-02' AND store_id = 0;",
+ "answer": [
+ "162.2000",
+ "185.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "162.2000"
+ ],
+ [
+ "185.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the sales order with parent ID 186?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE parent_id = 186;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are there with a stock quantity of 100?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE qty = 100.0000;",
+ "answer": [
+ "1886"
+ ],
+ "sql_execute_result": [
+ [
+ 1886
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order with entity ID 193?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 193;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discounted amount for orders on 2022-10-27?",
+ "sql": "SELECT total_discount_amount FROM sales_order_aggregated_created WHERE period = '2022-10-27' AND store_id = 0;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'complete'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total tax amount for the invoice containing the product 'Iris Workout Top'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with the highest price on the sales invoice items?",
+ "sql": "SELECT sku FROM sales_invoice_item ORDER BY price DESC LIMIT 1;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with ID 43.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 43;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 12
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings by their rating code.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence orders have been made with a sequence value greater than 100?",
+ "sql": "SELECT COUNT(*) FROM sequence_order_1 WHERE sequence_value > 100;",
+ "answer": [
+ "208"
+ ],
+ "sql_execute_result": [
+ [
+ 208
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute 'style_bottom'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'style_bottom';",
+ "answer": [
+ "Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product 'Minerva LumaTech\u2122 V-Tee' in the invoice items?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the attribute code for the attribute with ID 46.",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 46;",
+ "answer": [
+ "is_active"
+ ],
+ "sql_execute_result": [
+ [
+ "is_active"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS03-XS-Red' in the sales invoice items.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 630?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 630 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.
\n• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items in the shipment with increment ID '000000002'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Summit Watch'?",
+ "sql": "SELECT sku FROM sales_order_item WHERE name = 'Summit Watch';",
+ "answer": [
+ "24-MG03"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG03"
+ ]
+ ]
+ },
+ {
+ "question": "List the option codes for the rating ID 2.",
+ "sql": "SELECT code FROM rating_option WHERE rating_id = 2;",
+ "answer": [
+ "1",
+ "2",
+ "3",
+ "4",
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ "1"
+ ],
+ [
+ "2"
+ ],
+ [
+ "3"
+ ],
+ [
+ "4"
+ ],
+ [
+ "5"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with the shipment having order ID 300?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WJ11-S-Black'.",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WJ11-S-Black';",
+ "answer": [
+ "Neve Studio Dance Jacket",
+ "Neve Studio Dance Jacket-S-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Neve Studio Dance Jacket"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for creditmemo in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND store_id = 1;",
+ "answer": [
+ "sequence_creditmemo_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_creditmemo_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the original price of the 'Livingston All-Purpose Tight' in the order item table?",
+ "sql": "SELECT original_price FROM sales_order_item WHERE name = 'Livingston All-Purpose Tight';",
+ "answer": [
+ "75.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID of the shipment created on '2023-04-19 16:15:47'?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE created_at = '2023-04-19 16:15:47';",
+ "answer": [
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of the item with order ID 201?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE order_id = 201;",
+ "answer": [
+ "configurable",
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity_id 1740?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1740;",
+ "answer": [
+ "WT05-M-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "WT05-M-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category 2?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 1181
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the website with website_id 1.",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with entity_id 67?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 67;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with review_id 327?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 327;",
+ "answer": [
+ "Cute gym top"
+ ],
+ "sql_execute_result": [
+ [
+ "Cute gym top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with entity_id 1?",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with website_id 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with parent_id 62?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE parent_id = 62;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the billing address at '444 Beacon St'?",
+ "sql": "SELECT ce.email FROM customer_entity AS ce JOIN customer_address_entity AS cae ON ce.entity_id = cae.parent_id WHERE cae.street = '444 Beacon St' LIMIT 1;",
+ "answer": [
+ "robert.johnson@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "robert.johnson@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the sales order with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the surname of the customer with the first name 'Sophia'?",
+ "sql": "SELECT lastname FROM customer_entity WHERE firstname = 'Sophia';",
+ "answer": [
+ "Kim",
+ "Young"
+ ],
+ "sql_execute_result": [
+ [
+ "Kim"
+ ],
+ [
+ "Young"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is customer with ID 1 associated with?",
+ "sql": "SELECT s.name FROM customer_entity ce JOIN store s ON ce.store_id = s.store_id WHERE ce.entity_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Which product was the bestseller in March 2022 for the Default Store View?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-03-01' AND store_id = 1 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the store with ID 0?",
+ "sql": "SELECT code FROM store WHERE store_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status code for review status with ID 3.",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are in the 'pending_payment' state?",
+ "sql": "SELECT COUNT(*) FROM sales_order_status_state WHERE state = 'pending_payment';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List all stores that are currently active.",
+ "sql": "SELECT name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ],
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 1052?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1052;",
+ "answer": [
+ "Hera Pullover Hoodie-M-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Hera Pullover Hoodie-M-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-M-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for 'Juliana Short-Sleeve Tee-M-White' in January 2023.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Juliana Short-Sleeve Tee-M-White' AND period = '2023-01-01';",
+ "answer": [
+ "23",
+ "43"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ],
+ [
+ 43
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with ID 197?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 197;",
+ "answer": [
+ "Solid-Highlight"
+ ],
+ "sql_execute_result": [
+ [
+ "Solid-Highlight"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position in February 2022 for store ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-02-01' AND store_id = 0 ORDER BY rating_pos DESC LIMIT 1;",
+ "answer": [
+ "Abominable Hoodie-XL-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Abominable Hoodie-XL-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method is used for the order with payment entity ID 152?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 152;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code of the review with status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total amount ordered for the payment with entity ID 72.",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 72;",
+ "answer": [
+ "178.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "178.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sequence profile with ID 7 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 7;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with ID 99?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 99;",
+ "answer": [
+ "Visibility"
+ ],
+ "sql_execute_result": [
+ [
+ "Visibility"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base shipping amount for the order with payment entity ID 202.",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 202;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute with code 'format'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'format';",
+ "answer": [
+ "int"
+ ],
+ "sql_execute_result": [
+ [
+ "int"
+ ]
+ ]
+ },
+ {
+ "question": "Which entity type ID is associated with the attribute code 'old_id'?",
+ "sql": "SELECT entity_type_id FROM eav_attribute WHERE attribute_code = 'old_id';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 14?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 14;",
+ "answer": [
+ "johndoe123@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "johndoe123@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Echo Fit Compression Short-28-Purple' on 2023-02-01.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Echo Fit Compression Short-28-Purple' AND period = '2023-02-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 502 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 502 AND locale = 'en_US';",
+ "answer": [
+ "Rio de Janeiro"
+ ],
+ "sql_execute_result": [
+ [
+ "Rio de Janeiro"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the attribute option with option ID 164.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 164;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many invoice sequences have been created so far?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name of the customer with email 'jacob.rivera@hotmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) FROM customer_entity WHERE email = 'jacob.rivera@hotmail.com';",
+ "answer": [
+ "Jacob Rivera"
+ ],
+ "sql_execute_result": [
+ [
+ "Jacob Rivera"
+ ]
+ ]
+ },
+ {
+ "question": "Find all products ordered in store ID 1 on 2023-03-20.",
+ "sql": "SELECT product_name, qty_ordered FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 AND period = '2023-03-20';",
+ "answer": [
+ "Sprite Stasis Ball 65 cm",
+ "Supernova Sport Pant-32-Black",
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm",
+ "1.0000"
+ ],
+ [
+ "Supernova Sport Pant-32-Black",
+ "1.0000"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple",
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Atlas Fitness Tank-M-Blue'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Atlas Fitness Tank-M-Blue';",
+ "answer": [
+ "18.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "18.0000"
+ ],
+ [
+ "18.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default billing address ID for customer 'Mary Martin'.",
+ "sql": "SELECT default_billing FROM customer_entity WHERE firstname = 'Mary' AND lastname = 'Martin';",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has a reset password token created on '2023-04-19 21:44:57'?",
+ "sql": "SELECT email FROM customer_entity WHERE rp_token_created_at = '2023-04-19 21:44:57';",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses were found for customer with ID 16?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE customer_id = 16;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for order with increment ID '000000266'.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000266';",
+ "answer": [
+ "183.1900"
+ ],
+ "sql_execute_result": [
+ [
+ "183.1900"
+ ]
+ ]
+ },
+ {
+ "question": "Get the billing address for order with increment ID '000000275'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000275';",
+ "answer": [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with status 'canceled' were found?",
+ "sql": "SELECT entity_id, increment_id FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "000000001"
+ ],
+ [
+ 3,
+ "000000003"
+ ],
+ [
+ 5,
+ "000000005"
+ ],
+ [
+ 6,
+ "000000006"
+ ],
+ [
+ 7,
+ "000000007"
+ ],
+ [
+ 8,
+ "000000008"
+ ],
+ [
+ 10,
+ "000000010"
+ ],
+ [
+ 12,
+ "000000012"
+ ],
+ [
+ 14,
+ "000000014"
+ ],
+ [
+ 15,
+ "000000015"
+ ],
+ [
+ 18,
+ "000000018"
+ ],
+ [
+ 19,
+ "000000019"
+ ],
+ [
+ 25,
+ "000000025"
+ ],
+ [
+ 26,
+ "000000026"
+ ],
+ [
+ 29,
+ "000000029"
+ ],
+ [
+ 30,
+ "000000030"
+ ],
+ [
+ 38,
+ "000000038"
+ ],
+ [
+ 39,
+ "000000039"
+ ],
+ [
+ 40,
+ "000000040"
+ ],
+ [
+ 41,
+ "000000041"
+ ],
+ [
+ 42,
+ "000000042"
+ ],
+ [
+ 44,
+ "000000044"
+ ],
+ [
+ 46,
+ "000000046"
+ ],
+ [
+ 49,
+ "000000049"
+ ],
+ [
+ 52,
+ "000000052"
+ ],
+ [
+ 56,
+ "000000056"
+ ],
+ [
+ 58,
+ "000000058"
+ ],
+ [
+ 59,
+ "000000059"
+ ],
+ [
+ 60,
+ "000000060"
+ ],
+ [
+ 63,
+ "000000063"
+ ],
+ [
+ 66,
+ "000000066"
+ ],
+ [
+ 67,
+ "000000067"
+ ],
+ [
+ 68,
+ "000000068"
+ ],
+ [
+ 72,
+ "000000072"
+ ],
+ [
+ 74,
+ "000000074"
+ ],
+ [
+ 76,
+ "000000076"
+ ],
+ [
+ 77,
+ "000000077"
+ ],
+ [
+ 80,
+ "000000080"
+ ],
+ [
+ 81,
+ "000000081"
+ ],
+ [
+ 85,
+ "000000085"
+ ],
+ [
+ 86,
+ "000000086"
+ ],
+ [
+ 88,
+ "000000088"
+ ],
+ [
+ 94,
+ "000000094"
+ ],
+ [
+ 95,
+ "000000095"
+ ],
+ [
+ 98,
+ "000000098"
+ ],
+ [
+ 101,
+ "000000101"
+ ],
+ [
+ 103,
+ "000000103"
+ ],
+ [
+ 106,
+ "000000106"
+ ],
+ [
+ 107,
+ "000000107"
+ ],
+ [
+ 108,
+ "000000108"
+ ],
+ [
+ 109,
+ "000000109"
+ ],
+ [
+ 110,
+ "000000110"
+ ],
+ [
+ 111,
+ "000000111"
+ ],
+ [
+ 117,
+ "000000117"
+ ],
+ [
+ 118,
+ "000000118"
+ ],
+ [
+ 120,
+ "000000120"
+ ],
+ [
+ 122,
+ "000000122"
+ ],
+ [
+ 123,
+ "000000123"
+ ],
+ [
+ 124,
+ "000000124"
+ ],
+ [
+ 126,
+ "000000126"
+ ],
+ [
+ 129,
+ "000000129"
+ ],
+ [
+ 132,
+ "000000132"
+ ],
+ [
+ 134,
+ "000000134"
+ ],
+ [
+ 135,
+ "000000135"
+ ],
+ [
+ 136,
+ "000000136"
+ ],
+ [
+ 141,
+ "000000141"
+ ],
+ [
+ 142,
+ "000000142"
+ ],
+ [
+ 143,
+ "000000143"
+ ],
+ [
+ 144,
+ "000000144"
+ ],
+ [
+ 149,
+ "000000149"
+ ],
+ [
+ 151,
+ "000000151"
+ ],
+ [
+ 152,
+ "000000152"
+ ],
+ [
+ 153,
+ "000000153"
+ ],
+ [
+ 157,
+ "000000157"
+ ],
+ [
+ 159,
+ "000000159"
+ ],
+ [
+ 162,
+ "000000162"
+ ],
+ [
+ 165,
+ "000000165"
+ ],
+ [
+ 167,
+ "000000167"
+ ],
+ [
+ 168,
+ "000000168"
+ ],
+ [
+ 170,
+ "000000170"
+ ],
+ [
+ 171,
+ "000000171"
+ ],
+ [
+ 172,
+ "000000172"
+ ],
+ [
+ 173,
+ "000000173"
+ ],
+ [
+ 174,
+ "000000174"
+ ],
+ [
+ 175,
+ "000000175"
+ ],
+ [
+ 176,
+ "000000176"
+ ],
+ [
+ 177,
+ "000000177"
+ ],
+ [
+ 178,
+ "000000178"
+ ],
+ [
+ 180,
+ "000000180"
+ ],
+ [
+ 183,
+ "000000183"
+ ],
+ [
+ 185,
+ "000000185"
+ ],
+ [
+ 191,
+ "000000191"
+ ],
+ [
+ 193,
+ "000000193"
+ ],
+ [
+ 194,
+ "000000194"
+ ],
+ [
+ 195,
+ "000000195"
+ ],
+ [
+ 198,
+ "000000198"
+ ],
+ [
+ 204,
+ "000000204"
+ ],
+ [
+ 206,
+ "000000206"
+ ],
+ [
+ 209,
+ "000000209"
+ ],
+ [
+ 210,
+ "000000210"
+ ],
+ [
+ 211,
+ "000000211"
+ ],
+ [
+ 212,
+ "000000212"
+ ],
+ [
+ 219,
+ "000000219"
+ ],
+ [
+ 220,
+ "000000220"
+ ],
+ [
+ 221,
+ "000000221"
+ ],
+ [
+ 222,
+ "000000222"
+ ],
+ [
+ 224,
+ "000000224"
+ ],
+ [
+ 226,
+ "000000226"
+ ],
+ [
+ 227,
+ "000000227"
+ ],
+ [
+ 229,
+ "000000229"
+ ],
+ [
+ 232,
+ "000000232"
+ ],
+ [
+ 234,
+ "000000234"
+ ],
+ [
+ 241,
+ "000000241"
+ ],
+ [
+ 242,
+ "000000242"
+ ],
+ [
+ 244,
+ "000000244"
+ ],
+ [
+ 245,
+ "000000245"
+ ],
+ [
+ 246,
+ "000000246"
+ ],
+ [
+ 248,
+ "000000248"
+ ],
+ [
+ 249,
+ "000000249"
+ ],
+ [
+ 252,
+ "000000252"
+ ],
+ [
+ 254,
+ "000000254"
+ ],
+ [
+ 255,
+ "000000255"
+ ],
+ [
+ 259,
+ "000000259"
+ ],
+ [
+ 261,
+ "000000261"
+ ],
+ [
+ 265,
+ "000000265"
+ ],
+ [
+ 266,
+ "000000266"
+ ],
+ [
+ 267,
+ "000000267"
+ ],
+ [
+ 271,
+ "000000271"
+ ],
+ [
+ 272,
+ "000000272"
+ ],
+ [
+ 273,
+ "000000273"
+ ],
+ [
+ 275,
+ "000000275"
+ ],
+ [
+ 278,
+ "000000278"
+ ],
+ [
+ 279,
+ "000000279"
+ ],
+ [
+ 280,
+ "000000280"
+ ],
+ [
+ 283,
+ "000000283"
+ ],
+ [
+ 289,
+ "000000289"
+ ],
+ [
+ 290,
+ "000000290"
+ ],
+ [
+ 291,
+ "000000291"
+ ],
+ [
+ 292,
+ "000000292"
+ ],
+ [
+ 293,
+ "000000293"
+ ],
+ [
+ 294,
+ "000000294"
+ ],
+ [
+ 296,
+ "000000296"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO-2 code for the country with country ID 'HT'.",
+ "sql": "SELECT iso2_code FROM directory_country WHERE country_id = 'HT';",
+ "answer": [
+ "HT"
+ ],
+ "sql_execute_result": [
+ [
+ "HT"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 174?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 174;",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 14
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values are in the order sequence table?",
+ "sql": "SELECT sequence_value FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What shipping method was used for the order with increment ID '000000073'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000073';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with order ID 209.",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE entity_id = 209;",
+ "answer": [
+ "Daniel Jackson"
+ ],
+ "sql_execute_result": [
+ [
+ "Daniel Jackson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence table name for the order entity type in store with ID 1.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with ID 77?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 77;",
+ "answer": [
+ "Reflective"
+ ],
+ "sql_execute_result": [
+ [
+ "Reflective"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ID 'FI'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'FI';",
+ "answer": [
+ "FIN"
+ ],
+ "sql_execute_result": [
+ [
+ "FIN"
+ ]
+ ]
+ },
+ {
+ "question": "How many countries with their ISO-2 codes were found?",
+ "sql": "SELECT iso2_code FROM directory_country;",
+ "answer": [
+ "249"
+ ],
+ "sql_execute_result": [
+ [
+ "AD"
+ ],
+ [
+ "AE"
+ ],
+ [
+ "AF"
+ ],
+ [
+ "AG"
+ ],
+ [
+ "AI"
+ ],
+ [
+ "AL"
+ ],
+ [
+ "AM"
+ ],
+ [
+ "AN"
+ ],
+ [
+ "AO"
+ ],
+ [
+ "AQ"
+ ],
+ [
+ "AR"
+ ],
+ [
+ "AS"
+ ],
+ [
+ "AT"
+ ],
+ [
+ "AU"
+ ],
+ [
+ "AW"
+ ],
+ [
+ "AX"
+ ],
+ [
+ "AZ"
+ ],
+ [
+ "BA"
+ ],
+ [
+ "BB"
+ ],
+ [
+ "BD"
+ ],
+ [
+ "BE"
+ ],
+ [
+ "BF"
+ ],
+ [
+ "BG"
+ ],
+ [
+ "BH"
+ ],
+ [
+ "BI"
+ ],
+ [
+ "BJ"
+ ],
+ [
+ "BL"
+ ],
+ [
+ "BM"
+ ],
+ [
+ "BN"
+ ],
+ [
+ "BO"
+ ],
+ [
+ "BQ"
+ ],
+ [
+ "BR"
+ ],
+ [
+ "BS"
+ ],
+ [
+ "BT"
+ ],
+ [
+ "BV"
+ ],
+ [
+ "BW"
+ ],
+ [
+ "BY"
+ ],
+ [
+ "BZ"
+ ],
+ [
+ "CA"
+ ],
+ [
+ "CC"
+ ],
+ [
+ "CD"
+ ],
+ [
+ "CF"
+ ],
+ [
+ "CG"
+ ],
+ [
+ "CH"
+ ],
+ [
+ "CI"
+ ],
+ [
+ "CK"
+ ],
+ [
+ "CL"
+ ],
+ [
+ "CM"
+ ],
+ [
+ "CN"
+ ],
+ [
+ "CO"
+ ],
+ [
+ "CR"
+ ],
+ [
+ "CU"
+ ],
+ [
+ "CV"
+ ],
+ [
+ "CW"
+ ],
+ [
+ "CX"
+ ],
+ [
+ "CY"
+ ],
+ [
+ "CZ"
+ ],
+ [
+ "DE"
+ ],
+ [
+ "DJ"
+ ],
+ [
+ "DK"
+ ],
+ [
+ "DM"
+ ],
+ [
+ "DO"
+ ],
+ [
+ "DZ"
+ ],
+ [
+ "EC"
+ ],
+ [
+ "EE"
+ ],
+ [
+ "EG"
+ ],
+ [
+ "EH"
+ ],
+ [
+ "ER"
+ ],
+ [
+ "ES"
+ ],
+ [
+ "ET"
+ ],
+ [
+ "FI"
+ ],
+ [
+ "FJ"
+ ],
+ [
+ "FK"
+ ],
+ [
+ "FM"
+ ],
+ [
+ "FO"
+ ],
+ [
+ "FR"
+ ],
+ [
+ "GA"
+ ],
+ [
+ "GB"
+ ],
+ [
+ "GD"
+ ],
+ [
+ "GE"
+ ],
+ [
+ "GF"
+ ],
+ [
+ "GG"
+ ],
+ [
+ "GH"
+ ],
+ [
+ "GI"
+ ],
+ [
+ "GL"
+ ],
+ [
+ "GM"
+ ],
+ [
+ "GN"
+ ],
+ [
+ "GP"
+ ],
+ [
+ "GQ"
+ ],
+ [
+ "GR"
+ ],
+ [
+ "GS"
+ ],
+ [
+ "GT"
+ ],
+ [
+ "GU"
+ ],
+ [
+ "GW"
+ ],
+ [
+ "GY"
+ ],
+ [
+ "HK"
+ ],
+ [
+ "HM"
+ ],
+ [
+ "HN"
+ ],
+ [
+ "HR"
+ ],
+ [
+ "HT"
+ ],
+ [
+ "HU"
+ ],
+ [
+ "ID"
+ ],
+ [
+ "IE"
+ ],
+ [
+ "IL"
+ ],
+ [
+ "IM"
+ ],
+ [
+ "IN"
+ ],
+ [
+ "IO"
+ ],
+ [
+ "IQ"
+ ],
+ [
+ "IR"
+ ],
+ [
+ "IS"
+ ],
+ [
+ "IT"
+ ],
+ [
+ "JE"
+ ],
+ [
+ "JM"
+ ],
+ [
+ "JO"
+ ],
+ [
+ "JP"
+ ],
+ [
+ "KE"
+ ],
+ [
+ "KG"
+ ],
+ [
+ "KH"
+ ],
+ [
+ "KI"
+ ],
+ [
+ "KM"
+ ],
+ [
+ "KN"
+ ],
+ [
+ "KP"
+ ],
+ [
+ "KR"
+ ],
+ [
+ "KW"
+ ],
+ [
+ "KY"
+ ],
+ [
+ "KZ"
+ ],
+ [
+ "LA"
+ ],
+ [
+ "LB"
+ ],
+ [
+ "LC"
+ ],
+ [
+ "LI"
+ ],
+ [
+ "LK"
+ ],
+ [
+ "LR"
+ ],
+ [
+ "LS"
+ ],
+ [
+ "LT"
+ ],
+ [
+ "LU"
+ ],
+ [
+ "LV"
+ ],
+ [
+ "LY"
+ ],
+ [
+ "MA"
+ ],
+ [
+ "MC"
+ ],
+ [
+ "MD"
+ ],
+ [
+ "ME"
+ ],
+ [
+ "MF"
+ ],
+ [
+ "MG"
+ ],
+ [
+ "MH"
+ ],
+ [
+ "MK"
+ ],
+ [
+ "ML"
+ ],
+ [
+ "MM"
+ ],
+ [
+ "MN"
+ ],
+ [
+ "MO"
+ ],
+ [
+ "MP"
+ ],
+ [
+ "MQ"
+ ],
+ [
+ "MR"
+ ],
+ [
+ "MS"
+ ],
+ [
+ "MT"
+ ],
+ [
+ "MU"
+ ],
+ [
+ "MV"
+ ],
+ [
+ "MW"
+ ],
+ [
+ "MX"
+ ],
+ [
+ "MY"
+ ],
+ [
+ "MZ"
+ ],
+ [
+ "NA"
+ ],
+ [
+ "NC"
+ ],
+ [
+ "NE"
+ ],
+ [
+ "NF"
+ ],
+ [
+ "NG"
+ ],
+ [
+ "NI"
+ ],
+ [
+ "NL"
+ ],
+ [
+ "NO"
+ ],
+ [
+ "NP"
+ ],
+ [
+ "NR"
+ ],
+ [
+ "NU"
+ ],
+ [
+ "NZ"
+ ],
+ [
+ "OM"
+ ],
+ [
+ "PA"
+ ],
+ [
+ "PE"
+ ],
+ [
+ "PF"
+ ],
+ [
+ "PG"
+ ],
+ [
+ "PH"
+ ],
+ [
+ "PK"
+ ],
+ [
+ "PL"
+ ],
+ [
+ "PM"
+ ],
+ [
+ "PN"
+ ],
+ [
+ "PS"
+ ],
+ [
+ "PT"
+ ],
+ [
+ "PW"
+ ],
+ [
+ "PY"
+ ],
+ [
+ "QA"
+ ],
+ [
+ "RE"
+ ],
+ [
+ "RO"
+ ],
+ [
+ "RS"
+ ],
+ [
+ "RU"
+ ],
+ [
+ "RW"
+ ],
+ [
+ "SA"
+ ],
+ [
+ "SB"
+ ],
+ [
+ "SC"
+ ],
+ [
+ "SD"
+ ],
+ [
+ "SE"
+ ],
+ [
+ "SG"
+ ],
+ [
+ "SH"
+ ],
+ [
+ "SI"
+ ],
+ [
+ "SJ"
+ ],
+ [
+ "SK"
+ ],
+ [
+ "SL"
+ ],
+ [
+ "SM"
+ ],
+ [
+ "SN"
+ ],
+ [
+ "SO"
+ ],
+ [
+ "SR"
+ ],
+ [
+ "ST"
+ ],
+ [
+ "SV"
+ ],
+ [
+ "SX"
+ ],
+ [
+ "SY"
+ ],
+ [
+ "SZ"
+ ],
+ [
+ "TC"
+ ],
+ [
+ "TD"
+ ],
+ [
+ "TF"
+ ],
+ [
+ "TG"
+ ],
+ [
+ "TH"
+ ],
+ [
+ "TJ"
+ ],
+ [
+ "TK"
+ ],
+ [
+ "TL"
+ ],
+ [
+ "TM"
+ ],
+ [
+ "TN"
+ ],
+ [
+ "TO"
+ ],
+ [
+ "TR"
+ ],
+ [
+ "TT"
+ ],
+ [
+ "TV"
+ ],
+ [
+ "TW"
+ ],
+ [
+ "TZ"
+ ],
+ [
+ "UA"
+ ],
+ [
+ "UG"
+ ],
+ [
+ "UM"
+ ],
+ [
+ "US"
+ ],
+ [
+ "UY"
+ ],
+ [
+ "UZ"
+ ],
+ [
+ "VA"
+ ],
+ [
+ "VC"
+ ],
+ [
+ "VE"
+ ],
+ [
+ "VG"
+ ],
+ [
+ "VI"
+ ],
+ [
+ "VN"
+ ],
+ [
+ "VU"
+ ],
+ [
+ "WF"
+ ],
+ [
+ "WS"
+ ],
+ [
+ "XK"
+ ],
+ [
+ "YE"
+ ],
+ [
+ "YT"
+ ],
+ [
+ "ZA"
+ ],
+ [
+ "ZM"
+ ],
+ [
+ "ZW"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 46?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 46;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the 'admin' code?",
+ "sql": "SELECT name FROM store WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID for option ID 43.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 43;",
+ "answer": [
+ "139"
+ ],
+ "sql_execute_result": [
+ [
+ 139
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the shipping address with entity ID 281?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 281 AND address_type = 'shipping';",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description of the product with entity ID 1962.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1962 AND attribute_id = 75;",
+ "answer": [
+ "Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and color theme features a stretchy drawstring waist.
\n• Black rouched shorts with mint waist.
• Soft, lightweight construction.
• LumaTech™ wicking technology.
• Semi-fitted.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.
\n• Black rouched shorts with mint waist.
• Soft, lightweight construction.
• LumaTech™ wicking technology.
• Semi-fitted.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review status for the review with ID 59?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 59;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Check if the website with ID 1 is the default website.",
+ "sql": "SELECT is_default FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for the billing address with entity ID 40.",
+ "sql": "SELECT telephone FROM sales_order_address WHERE entity_id = 40 AND address_type = 'billing';",
+ "answer": [
+ "3035551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3035551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of reviews for products with entity ID 1.",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_id = 1;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ 351
+ ]
+ ]
+ },
+ {
+ "question": "Get the region name for the shipping address with entity ID 541.",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 541 AND address_type = 'shipping';",
+ "answer": [
+ "Washington"
+ ],
+ "sql_execute_result": [
+ [
+ "Washington"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the name of the website with code 'base'.",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the detailed description of the product with entity ID 725?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 725 AND attribute_id = 75;",
+ "answer": [
+ "Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.
\n• Light gray heather knit straight leg pants.
• Relaxed fit.
• Inseam: 32\".
• Machine wash/dry.
• CoolTech™ wicking fabric.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.
\n• Light gray heather knit straight leg pants.
• Relaxed fit.
• Inseam: 32\".
• Machine wash/dry.
• CoolTech™ wicking fabric.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 863?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 863 AND attribute_id = 73;",
+ "answer": [
+ "Aether Gym Pant -34-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Aether Gym Pant -34-Green"
+ ]
+ ]
+ },
+ {
+ "question": "How many sales orders were canceled on 2023-02-19?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-02-19' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the rating option with code '3' in rating ID 3.",
+ "sql": "SELECT value FROM rating_option WHERE code = '3' AND rating_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer who left a review with ID 30?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 30;",
+ "answer": [
+ "Tommie"
+ ],
+ "sql_execute_result": [
+ [
+ "Tommie"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the total income amount from orders with status 'complete' on 2022-03-17.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-03-17' AND order_status = 'complete';",
+ "answer": [
+ "310.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "310.4000"
+ ],
+ [
+ "310.4000"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups available.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 129?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 129;",
+ "answer": [
+ "I feel awesome when I wear this"
+ ],
+ "sql_execute_result": [
+ [
+ "I feel awesome when I wear this"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the canceled orders on 2023-05-06.",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-05-06' AND order_status = 'canceled';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with option ID 5?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-05-02?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND order_status = 'canceled';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for order with increment ID '000000150'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE increment_id = '000000150';",
+ "answer": [
+ "789 Rodeo Drive, Beverly Hills, California, 90212"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Rodeo Drive,Beverly Hills,California,90212"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total base grand total of all orders for customer ID 23.",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order_grid WHERE customer_id = 23;",
+ "answer": [
+ "1520.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "1520.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the billing address for order ID 151?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 151 AND address_type = 'billing';",
+ "answer": [
+ "david.lee@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "david.lee@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are approved?",
+ "sql": "SELECT review_id FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "Get the product price for product with entity ID 58.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 58 AND attribute_id = 77;",
+ "answer": [
+ "52.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "52.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'harrypotterfan1@gmail.com'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE customer_email = 'harrypotterfan1@gmail.com';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ],
+ [
+ "229.8000"
+ ],
+ [
+ "194.7600"
+ ],
+ [
+ "217.1200"
+ ],
+ [
+ "208.2000"
+ ],
+ [
+ "151.4000"
+ ],
+ [
+ "91.0000"
+ ],
+ [
+ "50.0000"
+ ],
+ [
+ "192.0000"
+ ],
+ [
+ "23.0000"
+ ],
+ [
+ "192.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code of the shipping address for order with increment ID '000000304'?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE parent_id = (SELECT entity_id FROM sales_order WHERE increment_id = '000000304') AND address_type = 'shipping';",
+ "answer": [
+ "90028"
+ ],
+ "sql_execute_result": [
+ [
+ "90028"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been canceled?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 142
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the region ID 32?",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 32 LIMIT 1;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for review ID 218?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 218;",
+ "answer": [
+ "Nice for skiing"
+ ],
+ "sql_execute_result": [
+ [
+ "Nice for skiing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer with billing address ID 230.",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 230;",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status 'paypal_canceled_reversal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the person who wrote the review titled 'Great fit - love the v-neck design!'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Great fit - love the v-neck design! ';",
+ "answer": [
+ "Thalia"
+ ],
+ "sql_execute_result": [
+ [
+ "Thalia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total weight of the product 'Minerva LumaTech™ V-Tee' in the invoice?",
+ "sql": "SELECT row_total_incl_tax FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'pending'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending';",
+ "answer": [
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "new"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address postcode for Veronica Costello.",
+ "sql": "SELECT postcode FROM sales_order_address WHERE firstname = 'Veronica' AND lastname = 'Costello';",
+ "answer": [
+ "49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "49628-7978"
+ ],
+ [
+ "49628-7978"
+ ],
+ [
+ "49628-7978"
+ ],
+ [
+ "49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Get the product ID for the product named 'Iris Workout Top'.",
+ "sql": "SELECT product_id FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "1428"
+ ],
+ "sql_execute_result": [
+ [
+ 1428
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the address associated with the quote address ID 646?",
+ "sql": "SELECT region FROM sales_order_address WHERE quote_address_id = 646;",
+ "answer": [
+ "Colorado"
+ ],
+ "sql_execute_result": [
+ [
+ "Colorado"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 43?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 43;",
+ "answer": [
+ "anna.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "anna.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with entity ID 1406 in stock.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1406 AND attribute_id = 97;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with ID 1734?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1734 AND attribute_id = 77;",
+ "answer": [
+ "39.00"
+ ],
+ "sql_execute_result": [
+ [
+ "39.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the customer with the email 'julie.nguyen@gmail.com' active?",
+ "sql": "SELECT is_active FROM customer_entity WHERE email = 'julie.nguyen@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the customer with ID 34?",
+ "sql": "SELECT created_at FROM customer_entity WHERE entity_id = 34;",
+ "answer": [
+ "2023-04-19 21:46:44"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 21:46:44"
+ ]
+ ]
+ },
+ {
+ "question": "What is the warehouse code for store ID 0?",
+ "sql": "SELECT code FROM store WHERE store_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the group ID for the customer with the email 'william.chang@hotmail.com'.",
+ "sql": "SELECT group_id FROM customer_entity WHERE email = 'william.chang@hotmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the latest sequence value for invoices?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the default billing address ID for customer 'Sean Miller'?",
+ "sql": "SELECT default_billing FROM customer_entity WHERE firstname = 'Sean' AND lastname = 'Miller';",
+ "answer": [
+ "69"
+ ],
+ "sql_execute_result": [
+ [
+ 69
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who has the billing first name 'Katie'?",
+ "sql": "SELECT ce.email FROM customer_entity ce JOIN customer_address_entity cae ON ce.entity_id = cae.parent_id WHERE cae.firstname = 'Katie';",
+ "answer": [
+ "katie.wong@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "katie.wong@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders placed by the customer named 'Katie Wong'.",
+ "sql": "SELECT so.entity_id FROM sales_order so JOIN customer_entity ce ON so.customer_id = ce.entity_id WHERE ce.firstname = 'Katie' AND ce.lastname = 'Wong';",
+ "answer": [
+ "36",
+ "139",
+ "175",
+ "198",
+ "277"
+ ],
+ "sql_execute_result": [
+ [
+ 36
+ ],
+ [
+ 139
+ ],
+ [
+ 175
+ ],
+ [
+ 198
+ ],
+ [
+ 277
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews with the title 'I wore these until they finally gave out'.",
+ "sql": "SELECT review_id, nickname FROM review_detail WHERE title = 'I wore these until they finally gave out';",
+ "answer": [
+ "114",
+ "Joey"
+ ],
+ "sql_execute_result": [
+ [
+ 114,
+ "Joey"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who wrote the review with review_id 279?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 279;",
+ "answer": [
+ "Bree"
+ ],
+ "sql_execute_result": [
+ [
+ "Bree"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with group_id 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for orders with the status 'canceled' on store_id 1 for the period 2022-10-03?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-10-03' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with the billing address on '456 Elm Street'?",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE street = '456 Elm Street';",
+ "answer": [
+ "Lisa"
+ ],
+ "sql_execute_result": [
+ [
+ "Lisa"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with entity ID 2029?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2029;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with ID 23?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 23;",
+ "answer": [
+ "186"
+ ],
+ "sql_execute_result": [
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1252
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1284
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1300
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered amount for the sales order with entity ID 224?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE parent_id = 224;",
+ "answer": [
+ "73.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "73.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs were found for products in category with ID 2?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id IN (SELECT product_id FROM catalog_category_product WHERE category_id = 2);",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP01"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP03"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP04"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP05"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP06"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP07"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP08"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP09"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP10"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP11"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MP12"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH01"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH06"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH07"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH08"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH10"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "MSH12"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP03"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP04"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP05"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP06"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP08"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP09"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP10"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP11"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WP13"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH01"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ],
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the sales order with entity ID 224?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 224;",
+ "answer": [
+ "73.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "73.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the first name 'Grace' and last name 'Nguyen'?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Grace' AND lastname = 'Nguyen';",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'Daria Bikram Pant-28-Black' in June 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Daria Bikram Pant-28-Black' AND period = '2022-06-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all orders created in the store with ID 1 in December 2022?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE store_id = 1 AND created_at BETWEEN '2022-12-01' AND '2022-12-31';",
+ "answer": [
+ "2132.1200"
+ ],
+ "sql_execute_result": [
+ [
+ "2132.1200"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the order having the increment ID '000000308'.",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE increment_id = '000000308';",
+ "answer": [
+ "Grace Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace",
+ "Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "Get the last updated date for the product with ID 2040.",
+ "sql": "SELECT updated_at FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "2023-04-19 16:13:56"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:56"
+ ]
+ ]
+ },
+ {
+ "question": "How many children categories does the category with ID 3 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the front-end label for the attribute with code 'color'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'color';",
+ "answer": [
+ "Color"
+ ],
+ "sql_execute_result": [
+ [
+ "Color"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the invoice with increment ID '000000002'.",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input renderer for the attribute with ID 134?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 134;",
+ "answer": [
+ "Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing address ID associated with the invoice having increment ID '000000001'.",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings for entity ID 1.",
+ "sql": "SELECT rating_code FROM rating WHERE entity_id = 1 AND is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating 'Price' for entity ID 1?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Price' AND entity_id = 1;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for the entity with ID 14.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 14;",
+ "answer": [
+ "Jackets",
+ "jackets-men",
+ "men/tops-men/jackets-men"
+ ],
+ "sql_execute_result": [
+ [
+ "Jackets"
+ ],
+ [
+ "jackets-men"
+ ],
+ [
+ "men/tops-men/jackets-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with entity ID 1?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the invoice with increment ID '000000002'?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 85 visible in the grid?",
+ "sql": "SELECT is_visible_in_grid FROM catalog_eav_attribute WHERE attribute_id = 85;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity available in stock for product with product_id 1607?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1607;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is product with product_id 2024 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 2024;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many results were returned for the search query 'hollister' in store with store_id 1?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'hollister' AND store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'anna.nguyen@yahoo.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'anna.nguyen@yahoo.com';",
+ "answer": [
+ "Anna Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Anna Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing street address for customer with ID 56?",
+ "sql": "SELECT billing_street FROM customer_grid_flat WHERE entity_id = 56;",
+ "answer": [
+ "777 Lawrence St"
+ ],
+ "sql_execute_result": [
+ [
+ "777 Lawrence St"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status_id 3?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the entity_id of 61?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 61;",
+ "answer": [
+ "matthew.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matthew.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are in the 'Default Store View' group?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the name 'Veronica Costello'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Veronica Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items in the order with increment ID '000000227'.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000227';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered by the customer with email 'janesmith@gmail.com'?",
+ "sql": "SELECT soi.name FROM sales_order so JOIN sales_order_item soi ON so.entity_id = soi.order_id WHERE so.customer_email = 'janesmith@gmail.com';",
+ "answer": [
+ "42"
+ ],
+ "sql_execute_result": [
+ [
+ "Orestes Yoga Pant "
+ ],
+ [
+ "Orestes Yoga Pant -36-Green"
+ ],
+ [
+ "Strive Shoulder Pack"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Aether Gym Pant "
+ ],
+ [
+ "Aether Gym Pant -32-Blue"
+ ],
+ [
+ "Bella Tank"
+ ],
+ [
+ "Bella Tank-L-Orange"
+ ],
+ [
+ "Beaumont Summit Kit"
+ ],
+ [
+ "Beaumont Summit Kit-S-Orange"
+ ],
+ [
+ "Meteor Workout Short"
+ ],
+ [
+ "Meteor Workout Short-32-Green"
+ ],
+ [
+ "Kenobi Trail Jacket"
+ ],
+ [
+ "Kenobi Trail Jacket-XL-Blue"
+ ],
+ [
+ "Daria Bikram Pant"
+ ],
+ [
+ "Daria Bikram Pant-28-Black"
+ ],
+ [
+ "Pursuit Lumaflex™ Tone Band"
+ ],
+ [
+ "Gobi HeatTec® Tee"
+ ],
+ [
+ "Gobi HeatTec® Tee-M-Orange"
+ ],
+ [
+ "Mimi All-Purpose Short"
+ ],
+ [
+ "Mimi All-Purpose Short-28-Green"
+ ],
+ [
+ "Atlas Fitness Tank"
+ ],
+ [
+ "Atlas Fitness Tank-S-Blue"
+ ],
+ [
+ "Meteor Workout Short"
+ ],
+ [
+ "Meteor Workout Short-33-Green"
+ ],
+ [
+ "Erikssen CoolTech™ Fitness Tank"
+ ],
+ [
+ "Erikssen CoolTech™ Fitness Tank-XL-Orange"
+ ],
+ [
+ "Orestes Fitness Short"
+ ],
+ [
+ "Orestes Fitness Short-36-Blue"
+ ],
+ [
+ "Clamber Watch"
+ ],
+ [
+ "Aero Daily Fitness Tee"
+ ],
+ [
+ "Aero Daily Fitness Tee-M-Black"
+ ],
+ [
+ "Hollister Backyard Sweatshirt"
+ ],
+ [
+ "Hollister Backyard Sweatshirt-L-Green"
+ ],
+ [
+ "Orestes Fitness Short"
+ ],
+ [
+ "Orestes Fitness Short-36-Green"
+ ],
+ [
+ "Gobi HeatTec® Tee"
+ ],
+ [
+ "Gobi HeatTec® Tee-L-Red"
+ ],
+ [
+ "Nora Practice Tank"
+ ],
+ [
+ "Nora Practice Tank-S-Red"
+ ],
+ [
+ "Tiffany Fitness Tee"
+ ],
+ [
+ "Tiffany Fitness Tee-L-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for orders with status 'complete'?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "How many pending reviews were found?",
+ "sql": "SELECT * FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "2023-04-19 16:15:10",
+ 1,
+ 1,
+ 1
+ ],
+ [
+ 2,
+ "2023-04-19 16:15:11",
+ 1,
+ 1,
+ 1
+ ],
+ [
+ 3,
+ "2023-04-19 16:15:11",
+ 1,
+ 6,
+ 1
+ ],
+ [
+ 4,
+ "2023-04-19 16:15:11",
+ 1,
+ 6,
+ 1
+ ],
+ [
+ 5,
+ "2023-04-19 16:15:11",
+ 1,
+ 6,
+ 1
+ ],
+ [
+ 6,
+ "2023-04-19 16:15:11",
+ 1,
+ 3,
+ 1
+ ],
+ [
+ 7,
+ "2023-04-19 16:15:11",
+ 1,
+ 3,
+ 1
+ ],
+ [
+ 8,
+ "2023-04-19 16:15:11",
+ 1,
+ 3,
+ 1
+ ],
+ [
+ 9,
+ "2023-04-19 16:15:11",
+ 1,
+ 2,
+ 1
+ ],
+ [
+ 10,
+ "2023-04-19 16:15:11",
+ 1,
+ 2,
+ 1
+ ],
+ [
+ 11,
+ "2023-04-19 16:15:11",
+ 1,
+ 4,
+ 1
+ ],
+ [
+ 12,
+ "2023-04-19 16:15:11",
+ 1,
+ 4,
+ 1
+ ],
+ [
+ 13,
+ "2023-04-19 16:15:11",
+ 1,
+ 4,
+ 1
+ ],
+ [
+ 14,
+ "2023-04-19 16:15:11",
+ 1,
+ 5,
+ 1
+ ],
+ [
+ 15,
+ "2023-04-19 16:15:11",
+ 1,
+ 5,
+ 1
+ ],
+ [
+ 16,
+ "2023-04-19 16:15:11",
+ 1,
+ 37,
+ 1
+ ],
+ [
+ 17,
+ "2023-04-19 16:15:11",
+ 1,
+ 37,
+ 1
+ ],
+ [
+ 18,
+ "2023-04-19 16:15:11",
+ 1,
+ 37,
+ 1
+ ],
+ [
+ 19,
+ "2023-04-19 16:15:11",
+ 1,
+ 40,
+ 1
+ ],
+ [
+ 20,
+ "2023-04-19 16:15:11",
+ 1,
+ 40,
+ 1
+ ],
+ [
+ 21,
+ "2023-04-19 16:15:11",
+ 1,
+ 40,
+ 1
+ ],
+ [
+ 22,
+ "2023-04-19 16:15:11",
+ 1,
+ 38,
+ 1
+ ],
+ [
+ 23,
+ "2023-04-19 16:15:11",
+ 1,
+ 38,
+ 1
+ ],
+ [
+ 24,
+ "2023-04-19 16:15:11",
+ 1,
+ 38,
+ 1
+ ],
+ [
+ 25,
+ "2023-04-19 16:15:11",
+ 1,
+ 36,
+ 1
+ ],
+ [
+ 26,
+ "2023-04-19 16:15:11",
+ 1,
+ 36,
+ 1
+ ],
+ [
+ 27,
+ "2023-04-19 16:15:11",
+ 1,
+ 39,
+ 1
+ ],
+ [
+ 28,
+ "2023-04-19 16:15:11",
+ 1,
+ 39,
+ 1
+ ],
+ [
+ 29,
+ "2023-04-19 16:15:11",
+ 1,
+ 39,
+ 1
+ ],
+ [
+ 30,
+ "2023-04-19 16:15:11",
+ 1,
+ 39,
+ 1
+ ],
+ [
+ 31,
+ "2023-04-19 16:15:11",
+ 1,
+ 270,
+ 1
+ ],
+ [
+ 32,
+ "2023-04-19 16:15:11",
+ 1,
+ 270,
+ 1
+ ],
+ [
+ 33,
+ "2023-04-19 16:15:11",
+ 1,
+ 286,
+ 1
+ ],
+ [
+ 34,
+ "2023-04-19 16:15:11",
+ 1,
+ 286,
+ 1
+ ],
+ [
+ 35,
+ "2023-04-19 16:15:11",
+ 1,
+ 414,
+ 1
+ ],
+ [
+ 36,
+ "2023-04-19 16:15:11",
+ 1,
+ 414,
+ 1
+ ],
+ [
+ 37,
+ "2023-04-19 16:15:11",
+ 1,
+ 414,
+ 1
+ ],
+ [
+ 38,
+ "2023-04-19 16:15:11",
+ 1,
+ 302,
+ 1
+ ],
+ [
+ 39,
+ "2023-04-19 16:15:11",
+ 1,
+ 302,
+ 1
+ ],
+ [
+ 40,
+ "2023-04-19 16:15:11",
+ 1,
+ 302,
+ 1
+ ],
+ [
+ 41,
+ "2023-04-19 16:15:11",
+ 1,
+ 398,
+ 1
+ ],
+ [
+ 42,
+ "2023-04-19 16:15:11",
+ 1,
+ 398,
+ 1
+ ],
+ [
+ 43,
+ "2023-04-19 16:15:11",
+ 1,
+ 398,
+ 1
+ ],
+ [
+ 44,
+ "2023-04-19 16:15:11",
+ 1,
+ 318,
+ 1
+ ],
+ [
+ 45,
+ "2023-04-19 16:15:11",
+ 1,
+ 318,
+ 1
+ ],
+ [
+ 46,
+ "2023-04-19 16:15:11",
+ 1,
+ 334,
+ 1
+ ],
+ [
+ 47,
+ "2023-04-19 16:15:11",
+ 1,
+ 334,
+ 1
+ ],
+ [
+ 48,
+ "2023-04-19 16:15:11",
+ 1,
+ 334,
+ 1
+ ],
+ [
+ 49,
+ "2023-04-19 16:15:12",
+ 1,
+ 350,
+ 1
+ ],
+ [
+ 50,
+ "2023-04-19 16:15:12",
+ 1,
+ 350,
+ 1
+ ],
+ [
+ 51,
+ "2023-04-19 16:15:12",
+ 1,
+ 366,
+ 1
+ ],
+ [
+ 52,
+ "2023-04-19 16:15:12",
+ 1,
+ 366,
+ 1
+ ],
+ [
+ 53,
+ "2023-04-19 16:15:12",
+ 1,
+ 737,
+ 1
+ ],
+ [
+ 54,
+ "2023-04-19 16:15:12",
+ 1,
+ 737,
+ 1
+ ],
+ [
+ 55,
+ "2023-04-19 16:15:12",
+ 1,
+ 737,
+ 1
+ ],
+ [
+ 56,
+ "2023-04-19 16:15:12",
+ 1,
+ 750,
+ 1
+ ],
+ [
+ 57,
+ "2023-04-19 16:15:12",
+ 1,
+ 750,
+ 1
+ ],
+ [
+ 58,
+ "2023-04-19 16:15:12",
+ 1,
+ 750,
+ 1
+ ],
+ [
+ 59,
+ "2023-04-19 16:15:12",
+ 1,
+ 763,
+ 1
+ ],
+ [
+ 60,
+ "2023-04-19 16:15:12",
+ 1,
+ 763,
+ 1
+ ],
+ [
+ 61,
+ "2023-04-19 16:15:12",
+ 1,
+ 776,
+ 1
+ ],
+ [
+ 62,
+ "2023-04-19 16:15:12",
+ 1,
+ 776,
+ 1
+ ],
+ [
+ 63,
+ "2023-04-19 16:15:12",
+ 1,
+ 776,
+ 1
+ ],
+ [
+ 64,
+ "2023-04-19 16:15:12",
+ 1,
+ 789,
+ 1
+ ],
+ [
+ 65,
+ "2023-04-19 16:15:12",
+ 1,
+ 789,
+ 1
+ ],
+ [
+ 66,
+ "2023-04-19 16:15:12",
+ 1,
+ 789,
+ 1
+ ],
+ [
+ 67,
+ "2023-04-19 16:15:12",
+ 1,
+ 558,
+ 1
+ ],
+ [
+ 68,
+ "2023-04-19 16:15:12",
+ 1,
+ 558,
+ 1
+ ],
+ [
+ 69,
+ "2023-04-19 16:15:12",
+ 1,
+ 558,
+ 1
+ ],
+ [
+ 70,
+ "2023-04-19 16:15:12",
+ 1,
+ 574,
+ 1
+ ],
+ [
+ 71,
+ "2023-04-19 16:15:12",
+ 1,
+ 574,
+ 1
+ ],
+ [
+ 72,
+ "2023-04-19 16:15:12",
+ 1,
+ 526,
+ 1
+ ],
+ [
+ 73,
+ "2023-04-19 16:15:12",
+ 1,
+ 526,
+ 1
+ ],
+ [
+ 74,
+ "2023-04-19 16:15:12",
+ 1,
+ 446,
+ 1
+ ],
+ [
+ 75,
+ "2023-04-19 16:15:12",
+ 1,
+ 446,
+ 1
+ ],
+ [
+ 76,
+ "2023-04-19 16:15:12",
+ 1,
+ 446,
+ 1
+ ],
+ [
+ 77,
+ "2023-04-19 16:15:12",
+ 1,
+ 462,
+ 1
+ ],
+ [
+ 78,
+ "2023-04-19 16:15:12",
+ 1,
+ 462,
+ 1
+ ],
+ [
+ 79,
+ "2023-04-19 16:15:12",
+ 1,
+ 462,
+ 1
+ ],
+ [
+ 80,
+ "2023-04-19 16:15:12",
+ 1,
+ 542,
+ 1
+ ],
+ [
+ 81,
+ "2023-04-19 16:15:12",
+ 1,
+ 542,
+ 1
+ ],
+ [
+ 82,
+ "2023-04-19 16:15:12",
+ 1,
+ 606,
+ 1
+ ],
+ [
+ 83,
+ "2023-04-19 16:15:12",
+ 1,
+ 606,
+ 1
+ ],
+ [
+ 84,
+ "2023-04-19 16:15:12",
+ 1,
+ 606,
+ 1
+ ],
+ [
+ 85,
+ "2023-04-19 16:15:12",
+ 1,
+ 622,
+ 1
+ ],
+ [
+ 86,
+ "2023-04-19 16:15:12",
+ 1,
+ 622,
+ 1
+ ],
+ [
+ 87,
+ "2023-04-19 16:15:12",
+ 1,
+ 622,
+ 1
+ ],
+ [
+ 88,
+ "2023-04-19 16:15:12",
+ 1,
+ 622,
+ 1
+ ],
+ [
+ 89,
+ "2023-04-19 16:15:12",
+ 1,
+ 478,
+ 1
+ ],
+ [
+ 90,
+ "2023-04-19 16:15:12",
+ 1,
+ 478,
+ 1
+ ],
+ [
+ 91,
+ "2023-04-19 16:15:12",
+ 1,
+ 478,
+ 1
+ ],
+ [
+ 92,
+ "2023-04-19 16:15:13",
+ 1,
+ 590,
+ 1
+ ],
+ [
+ 93,
+ "2023-04-19 16:15:13",
+ 1,
+ 590,
+ 1
+ ],
+ [
+ 94,
+ "2023-04-19 16:15:13",
+ 1,
+ 590,
+ 1
+ ],
+ [
+ 95,
+ "2023-04-19 16:15:13",
+ 1,
+ 494,
+ 1
+ ],
+ [
+ 96,
+ "2023-04-19 16:15:13",
+ 1,
+ 494,
+ 1
+ ],
+ [
+ 97,
+ "2023-04-19 16:15:13",
+ 1,
+ 494,
+ 1
+ ],
+ [
+ 98,
+ "2023-04-19 16:15:13",
+ 1,
+ 510,
+ 1
+ ],
+ [
+ 99,
+ "2023-04-19 16:15:13",
+ 1,
+ 510,
+ 1
+ ],
+ [
+ 100,
+ "2023-04-19 16:15:13",
+ 1,
+ 510,
+ 1
+ ],
+ [
+ 101,
+ "2023-04-19 16:15:13",
+ 1,
+ 893,
+ 1
+ ],
+ [
+ 102,
+ "2023-04-19 16:15:13",
+ 1,
+ 893,
+ 1
+ ],
+ [
+ 103,
+ "2023-04-19 16:15:13",
+ 1,
+ 893,
+ 1
+ ],
+ [
+ 104,
+ "2023-04-19 16:15:13",
+ 1,
+ 911,
+ 1
+ ],
+ [
+ 105,
+ "2023-04-19 16:15:13",
+ 1,
+ 911,
+ 1
+ ],
+ [
+ 106,
+ "2023-04-19 16:15:13",
+ 1,
+ 911,
+ 1
+ ],
+ [
+ 107,
+ "2023-04-19 16:15:13",
+ 1,
+ 924,
+ 1
+ ],
+ [
+ 108,
+ "2023-04-19 16:15:13",
+ 1,
+ 924,
+ 1
+ ],
+ [
+ 109,
+ "2023-04-19 16:15:13",
+ 1,
+ 924,
+ 1
+ ],
+ [
+ 110,
+ "2023-04-19 16:15:13",
+ 1,
+ 937,
+ 1
+ ],
+ [
+ 111,
+ "2023-04-19 16:15:13",
+ 1,
+ 937,
+ 1
+ ],
+ [
+ 112,
+ "2023-04-19 16:15:13",
+ 1,
+ 937,
+ 1
+ ],
+ [
+ 113,
+ "2023-04-19 16:15:13",
+ 1,
+ 950,
+ 1
+ ],
+ [
+ 114,
+ "2023-04-19 16:15:13",
+ 1,
+ 950,
+ 1
+ ],
+ [
+ 115,
+ "2023-04-19 16:15:13",
+ 1,
+ 963,
+ 1
+ ],
+ [
+ 116,
+ "2023-04-19 16:15:13",
+ 1,
+ 963,
+ 1
+ ],
+ [
+ 117,
+ "2023-04-19 16:15:13",
+ 1,
+ 963,
+ 1
+ ],
+ [
+ 118,
+ "2023-04-19 16:15:13",
+ 1,
+ 976,
+ 1
+ ],
+ [
+ 119,
+ "2023-04-19 16:15:13",
+ 1,
+ 976,
+ 1
+ ],
+ [
+ 120,
+ "2023-04-19 16:15:13",
+ 1,
+ 989,
+ 1
+ ],
+ [
+ 121,
+ "2023-04-19 16:15:13",
+ 1,
+ 989,
+ 1
+ ],
+ [
+ 122,
+ "2023-04-19 16:15:13",
+ 1,
+ 989,
+ 1
+ ],
+ [
+ 123,
+ "2023-04-19 16:15:13",
+ 1,
+ 638,
+ 1
+ ],
+ [
+ 124,
+ "2023-04-19 16:15:13",
+ 1,
+ 638,
+ 1
+ ],
+ [
+ 125,
+ "2023-04-19 16:15:13",
+ 1,
+ 638,
+ 1
+ ],
+ [
+ 126,
+ "2023-04-19 16:15:13",
+ 1,
+ 638,
+ 1
+ ],
+ [
+ 127,
+ "2023-04-19 16:15:13",
+ 1,
+ 654,
+ 1
+ ],
+ [
+ 128,
+ "2023-04-19 16:15:13",
+ 1,
+ 654,
+ 1
+ ],
+ [
+ 129,
+ "2023-04-19 16:15:13",
+ 1,
+ 654,
+ 1
+ ],
+ [
+ 130,
+ "2023-04-19 16:15:13",
+ 1,
+ 670,
+ 1
+ ],
+ [
+ 131,
+ "2023-04-19 16:15:14",
+ 1,
+ 670,
+ 1
+ ],
+ [
+ 132,
+ "2023-04-19 16:15:14",
+ 1,
+ 670,
+ 1
+ ],
+ [
+ 133,
+ "2023-04-19 16:15:14",
+ 1,
+ 676,
+ 1
+ ],
+ [
+ 134,
+ "2023-04-19 16:15:14",
+ 1,
+ 676,
+ 1
+ ],
+ [
+ 135,
+ "2023-04-19 16:15:14",
+ 1,
+ 676,
+ 1
+ ],
+ [
+ 136,
+ "2023-04-19 16:15:14",
+ 1,
+ 676,
+ 1
+ ],
+ [
+ 137,
+ "2023-04-19 16:15:14",
+ 1,
+ 7,
+ 1
+ ],
+ [
+ 138,
+ "2023-04-19 16:15:14",
+ 1,
+ 7,
+ 1
+ ],
+ [
+ 139,
+ "2023-04-19 16:15:14",
+ 1,
+ 7,
+ 1
+ ],
+ [
+ 140,
+ "2023-04-19 16:15:14",
+ 1,
+ 20,
+ 1
+ ],
+ [
+ 141,
+ "2023-04-19 16:15:14",
+ 1,
+ 20,
+ 1
+ ],
+ [
+ 142,
+ "2023-04-19 16:15:14",
+ 1,
+ 20,
+ 1
+ ],
+ [
+ 143,
+ "2023-04-19 16:15:14",
+ 1,
+ 18,
+ 1
+ ],
+ [
+ 144,
+ "2023-04-19 16:15:14",
+ 1,
+ 18,
+ 1
+ ],
+ [
+ 145,
+ "2023-04-19 16:15:14",
+ 1,
+ 23,
+ 1
+ ],
+ [
+ 146,
+ "2023-04-19 16:15:14",
+ 1,
+ 23,
+ 1
+ ],
+ [
+ 147,
+ "2023-04-19 16:15:14",
+ 1,
+ 23,
+ 1
+ ],
+ [
+ 148,
+ "2023-04-19 16:15:14",
+ 1,
+ 17,
+ 1
+ ],
+ [
+ 149,
+ "2023-04-19 16:15:14",
+ 1,
+ 17,
+ 1
+ ],
+ [
+ 150,
+ "2023-04-19 16:15:14",
+ 1,
+ 17,
+ 1
+ ],
+ [
+ 151,
+ "2023-04-19 16:15:14",
+ 1,
+ 19,
+ 1
+ ],
+ [
+ 152,
+ "2023-04-19 16:15:14",
+ 1,
+ 19,
+ 1
+ ],
+ [
+ 153,
+ "2023-04-19 16:15:14",
+ 1,
+ 19,
+ 1
+ ],
+ [
+ 154,
+ "2023-04-19 16:15:14",
+ 1,
+ 15,
+ 1
+ ],
+ [
+ 155,
+ "2023-04-19 16:15:14",
+ 1,
+ 16,
+ 1
+ ],
+ [
+ 156,
+ "2023-04-19 16:15:14",
+ 1,
+ 16,
+ 1
+ ],
+ [
+ 157,
+ "2023-04-19 16:15:14",
+ 1,
+ 8,
+ 1
+ ],
+ [
+ 158,
+ "2023-04-19 16:15:14",
+ 1,
+ 8,
+ 1
+ ],
+ [
+ 159,
+ "2023-04-19 16:15:14",
+ 1,
+ 8,
+ 1
+ ],
+ [
+ 160,
+ "2023-04-19 16:15:14",
+ 1,
+ 9,
+ 1
+ ],
+ [
+ 161,
+ "2023-04-19 16:15:14",
+ 1,
+ 9,
+ 1
+ ],
+ [
+ 162,
+ "2023-04-19 16:15:14",
+ 1,
+ 12,
+ 1
+ ],
+ [
+ 163,
+ "2023-04-19 16:15:14",
+ 1,
+ 12,
+ 1
+ ],
+ [
+ 164,
+ "2023-04-19 16:15:14",
+ 1,
+ 14,
+ 1
+ ],
+ [
+ 165,
+ "2023-04-19 16:15:14",
+ 1,
+ 14,
+ 1
+ ],
+ [
+ 166,
+ "2023-04-19 16:15:14",
+ 1,
+ 14,
+ 1
+ ],
+ [
+ 167,
+ "2023-04-19 16:15:14",
+ 1,
+ 10,
+ 1
+ ],
+ [
+ 168,
+ "2023-04-19 16:15:14",
+ 1,
+ 10,
+ 1
+ ],
+ [
+ 169,
+ "2023-04-19 16:15:14",
+ 1,
+ 11,
+ 1
+ ],
+ [
+ 170,
+ "2023-04-19 16:15:14",
+ 1,
+ 11,
+ 1
+ ],
+ [
+ 171,
+ "2023-04-19 16:15:14",
+ 1,
+ 11,
+ 1
+ ],
+ [
+ 172,
+ "2023-04-19 16:15:14",
+ 1,
+ 13,
+ 1
+ ],
+ [
+ 173,
+ "2023-04-19 16:15:14",
+ 1,
+ 13,
+ 1
+ ],
+ [
+ 174,
+ "2023-04-19 16:15:15",
+ 1,
+ 13,
+ 1
+ ],
+ [
+ 175,
+ "2023-04-19 16:15:15",
+ 1,
+ 42,
+ 1
+ ],
+ [
+ 176,
+ "2023-04-19 16:15:15",
+ 1,
+ 42,
+ 1
+ ],
+ [
+ 177,
+ "2023-04-19 16:15:15",
+ 1,
+ 42,
+ 1
+ ],
+ [
+ 178,
+ "2023-04-19 16:15:15",
+ 1,
+ 44,
+ 1
+ ],
+ [
+ 179,
+ "2023-04-19 16:15:15",
+ 1,
+ 44,
+ 1
+ ],
+ [
+ 180,
+ "2023-04-19 16:15:15",
+ 1,
+ 43,
+ 1
+ ],
+ [
+ 181,
+ "2023-04-19 16:15:15",
+ 1,
+ 43,
+ 1
+ ],
+ [
+ 182,
+ "2023-04-19 16:15:15",
+ 1,
+ 43,
+ 1
+ ],
+ [
+ 183,
+ "2023-04-19 16:15:15",
+ 1,
+ 41,
+ 1
+ ],
+ [
+ 184,
+ "2023-04-19 16:15:15",
+ 1,
+ 41,
+ 1
+ ],
+ [
+ 185,
+ "2023-04-19 16:15:15",
+ 1,
+ 1044,
+ 1
+ ],
+ [
+ 186,
+ "2023-04-19 16:15:15",
+ 1,
+ 1044,
+ 1
+ ],
+ [
+ 187,
+ "2023-04-19 16:15:15",
+ 1,
+ 1044,
+ 1
+ ],
+ [
+ 188,
+ "2023-04-19 16:15:15",
+ 1,
+ 1060,
+ 1
+ ],
+ [
+ 189,
+ "2023-04-19 16:15:15",
+ 1,
+ 1060,
+ 1
+ ],
+ [
+ 190,
+ "2023-04-19 16:15:15",
+ 1,
+ 1060,
+ 1
+ ],
+ [
+ 191,
+ "2023-04-19 16:15:15",
+ 1,
+ 1076,
+ 1
+ ],
+ [
+ 192,
+ "2023-04-19 16:15:15",
+ 1,
+ 1076,
+ 1
+ ],
+ [
+ 193,
+ "2023-04-19 16:15:15",
+ 1,
+ 1076,
+ 1
+ ],
+ [
+ 194,
+ "2023-04-19 16:15:15",
+ 1,
+ 1092,
+ 1
+ ],
+ [
+ 195,
+ "2023-04-19 16:15:15",
+ 1,
+ 1092,
+ 1
+ ],
+ [
+ 196,
+ "2023-04-19 16:15:15",
+ 1,
+ 1092,
+ 1
+ ],
+ [
+ 197,
+ "2023-04-19 16:15:15",
+ 1,
+ 1108,
+ 1
+ ],
+ [
+ 198,
+ "2023-04-19 16:15:15",
+ 1,
+ 1108,
+ 1
+ ],
+ [
+ 199,
+ "2023-04-19 16:15:15",
+ 1,
+ 1108,
+ 1
+ ],
+ [
+ 200,
+ "2023-04-19 16:15:15",
+ 1,
+ 1114,
+ 1
+ ],
+ [
+ 201,
+ "2023-04-19 16:15:15",
+ 1,
+ 1114,
+ 1
+ ],
+ [
+ 202,
+ "2023-04-19 16:15:15",
+ 1,
+ 1220,
+ 1
+ ],
+ [
+ 203,
+ "2023-04-19 16:15:15",
+ 1,
+ 1220,
+ 1
+ ],
+ [
+ 204,
+ "2023-04-19 16:15:15",
+ 1,
+ 1220,
+ 1
+ ],
+ [
+ 205,
+ "2023-04-19 16:15:15",
+ 1,
+ 1236,
+ 1
+ ],
+ [
+ 206,
+ "2023-04-19 16:15:15",
+ 1,
+ 1236,
+ 1
+ ],
+ [
+ 207,
+ "2023-04-19 16:15:15",
+ 1,
+ 1236,
+ 1
+ ],
+ [
+ 208,
+ "2023-04-19 16:15:15",
+ 1,
+ 1236,
+ 1
+ ],
+ [
+ 209,
+ "2023-04-19 16:15:15",
+ 1,
+ 1252,
+ 1
+ ],
+ [
+ 210,
+ "2023-04-19 16:15:15",
+ 1,
+ 1252,
+ 1
+ ],
+ [
+ 211,
+ "2023-04-19 16:15:16",
+ 1,
+ 1252,
+ 1
+ ],
+ [
+ 212,
+ "2023-04-19 16:15:16",
+ 1,
+ 1268,
+ 1
+ ],
+ [
+ 213,
+ "2023-04-19 16:15:16",
+ 1,
+ 1268,
+ 1
+ ],
+ [
+ 214,
+ "2023-04-19 16:15:16",
+ 1,
+ 1284,
+ 1
+ ],
+ [
+ 215,
+ "2023-04-19 16:15:16",
+ 1,
+ 1284,
+ 1
+ ],
+ [
+ 216,
+ "2023-04-19 16:15:16",
+ 1,
+ 1284,
+ 1
+ ],
+ [
+ 217,
+ "2023-04-19 16:15:16",
+ 1,
+ 1380,
+ 1
+ ],
+ [
+ 218,
+ "2023-04-19 16:15:16",
+ 1,
+ 1380,
+ 1
+ ],
+ [
+ 219,
+ "2023-04-19 16:15:16",
+ 1,
+ 1380,
+ 1
+ ],
+ [
+ 220,
+ "2023-04-19 16:15:16",
+ 1,
+ 1300,
+ 1
+ ],
+ [
+ 221,
+ "2023-04-19 16:15:16",
+ 1,
+ 1300,
+ 1
+ ],
+ [
+ 222,
+ "2023-04-19 16:15:16",
+ 1,
+ 1300,
+ 1
+ ],
+ [
+ 223,
+ "2023-04-19 16:15:16",
+ 1,
+ 1316,
+ 1
+ ],
+ [
+ 224,
+ "2023-04-19 16:15:16",
+ 1,
+ 1316,
+ 1
+ ],
+ [
+ 225,
+ "2023-04-19 16:15:16",
+ 1,
+ 1332,
+ 1
+ ],
+ [
+ 226,
+ "2023-04-19 16:15:16",
+ 1,
+ 1332,
+ 1
+ ],
+ [
+ 227,
+ "2023-04-19 16:15:16",
+ 1,
+ 1332,
+ 1
+ ],
+ [
+ 228,
+ "2023-04-19 16:15:16",
+ 1,
+ 1348,
+ 1
+ ],
+ [
+ 229,
+ "2023-04-19 16:15:16",
+ 1,
+ 1348,
+ 1
+ ],
+ [
+ 230,
+ "2023-04-19 16:15:16",
+ 1,
+ 1348,
+ 1
+ ],
+ [
+ 231,
+ "2023-04-19 16:15:16",
+ 1,
+ 1364,
+ 1
+ ],
+ [
+ 232,
+ "2023-04-19 16:15:16",
+ 1,
+ 1364,
+ 1
+ ],
+ [
+ 233,
+ "2023-04-19 16:15:16",
+ 1,
+ 1364,
+ 1
+ ],
+ [
+ 234,
+ "2023-04-19 16:15:16",
+ 1,
+ 1819,
+ 1
+ ],
+ [
+ 235,
+ "2023-04-19 16:15:16",
+ 1,
+ 1819,
+ 1
+ ],
+ [
+ 236,
+ "2023-04-19 16:15:16",
+ 1,
+ 1826,
+ 1
+ ],
+ [
+ 237,
+ "2023-04-19 16:15:16",
+ 1,
+ 1826,
+ 1
+ ],
+ [
+ 238,
+ "2023-04-19 16:15:16",
+ 1,
+ 1826,
+ 1
+ ],
+ [
+ 239,
+ "2023-04-19 16:15:16",
+ 1,
+ 1833,
+ 1
+ ],
+ [
+ 240,
+ "2023-04-19 16:15:16",
+ 1,
+ 1833,
+ 1
+ ],
+ [
+ 241,
+ "2023-04-19 16:15:16",
+ 1,
+ 1833,
+ 1
+ ],
+ [
+ 242,
+ "2023-04-19 16:15:16",
+ 1,
+ 1840,
+ 1
+ ],
+ [
+ 243,
+ "2023-04-19 16:15:17",
+ 1,
+ 1840,
+ 1
+ ],
+ [
+ 244,
+ "2023-04-19 16:15:17",
+ 1,
+ 1840,
+ 1
+ ],
+ [
+ 245,
+ "2023-04-19 16:15:17",
+ 1,
+ 1840,
+ 1
+ ],
+ [
+ 246,
+ "2023-04-19 16:15:17",
+ 1,
+ 1847,
+ 1
+ ],
+ [
+ 247,
+ "2023-04-19 16:15:17",
+ 1,
+ 1847,
+ 1
+ ],
+ [
+ 248,
+ "2023-04-19 16:15:17",
+ 1,
+ 1854,
+ 1
+ ],
+ [
+ 249,
+ "2023-04-19 16:15:17",
+ 1,
+ 1854,
+ 1
+ ],
+ [
+ 250,
+ "2023-04-19 16:15:17",
+ 1,
+ 1854,
+ 1
+ ],
+ [
+ 251,
+ "2023-04-19 16:15:17",
+ 1,
+ 1572,
+ 1
+ ],
+ [
+ 252,
+ "2023-04-19 16:15:17",
+ 1,
+ 1572,
+ 1
+ ],
+ [
+ 253,
+ "2023-04-19 16:15:17",
+ 1,
+ 1572,
+ 1
+ ],
+ [
+ 254,
+ "2023-04-19 16:15:17",
+ 1,
+ 1412,
+ 1
+ ],
+ [
+ 255,
+ "2023-04-19 16:15:17",
+ 1,
+ 1412,
+ 1
+ ],
+ [
+ 256,
+ "2023-04-19 16:15:17",
+ 1,
+ 1412,
+ 1
+ ],
+ [
+ 257,
+ "2023-04-19 16:15:17",
+ 1,
+ 1428,
+ 1
+ ],
+ [
+ 258,
+ "2023-04-19 16:15:17",
+ 1,
+ 1428,
+ 1
+ ],
+ [
+ 259,
+ "2023-04-19 16:15:17",
+ 1,
+ 1428,
+ 1
+ ],
+ [
+ 260,
+ "2023-04-19 16:15:17",
+ 1,
+ 1428,
+ 1
+ ],
+ [
+ 261,
+ "2023-04-19 16:15:17",
+ 1,
+ 1444,
+ 1
+ ],
+ [
+ 262,
+ "2023-04-19 16:15:17",
+ 1,
+ 1444,
+ 1
+ ],
+ [
+ 263,
+ "2023-04-19 16:15:17",
+ 1,
+ 1588,
+ 1
+ ],
+ [
+ 264,
+ "2023-04-19 16:15:17",
+ 1,
+ 1588,
+ 1
+ ],
+ [
+ 265,
+ "2023-04-19 16:15:17",
+ 1,
+ 1588,
+ 1
+ ],
+ [
+ 266,
+ "2023-04-19 16:15:17",
+ 1,
+ 1476,
+ 1
+ ],
+ [
+ 267,
+ "2023-04-19 16:15:17",
+ 1,
+ 1476,
+ 1
+ ],
+ [
+ 268,
+ "2023-04-19 16:15:17",
+ 1,
+ 1492,
+ 1
+ ],
+ [
+ 269,
+ "2023-04-19 16:15:17",
+ 1,
+ 1492,
+ 1
+ ],
+ [
+ 270,
+ "2023-04-19 16:15:17",
+ 1,
+ 1492,
+ 1
+ ],
+ [
+ 271,
+ "2023-04-19 16:15:17",
+ 1,
+ 1508,
+ 1
+ ],
+ [
+ 272,
+ "2023-04-19 16:15:17",
+ 1,
+ 1508,
+ 1
+ ],
+ [
+ 273,
+ "2023-04-19 16:15:17",
+ 1,
+ 1508,
+ 1
+ ],
+ [
+ 274,
+ "2023-04-19 16:15:18",
+ 1,
+ 1524,
+ 1
+ ],
+ [
+ 275,
+ "2023-04-19 16:15:18",
+ 1,
+ 1524,
+ 1
+ ],
+ [
+ 276,
+ "2023-04-19 16:15:18",
+ 1,
+ 1524,
+ 1
+ ],
+ [
+ 277,
+ "2023-04-19 16:15:18",
+ 1,
+ 1540,
+ 1
+ ],
+ [
+ 278,
+ "2023-04-19 16:15:18",
+ 1,
+ 1540,
+ 1
+ ],
+ [
+ 279,
+ "2023-04-19 16:15:18",
+ 1,
+ 1540,
+ 1
+ ],
+ [
+ 280,
+ "2023-04-19 16:15:18",
+ 1,
+ 1556,
+ 1
+ ],
+ [
+ 281,
+ "2023-04-19 16:15:18",
+ 1,
+ 1556,
+ 1
+ ],
+ [
+ 282,
+ "2023-04-19 16:15:18",
+ 1,
+ 1556,
+ 1
+ ],
+ [
+ 283,
+ "2023-04-19 16:15:18",
+ 1,
+ 1919,
+ 1
+ ],
+ [
+ 284,
+ "2023-04-19 16:15:18",
+ 1,
+ 1919,
+ 1
+ ],
+ [
+ 285,
+ "2023-04-19 16:15:18",
+ 1,
+ 1919,
+ 1
+ ],
+ [
+ 286,
+ "2023-04-19 16:15:18",
+ 1,
+ 1935,
+ 1
+ ],
+ [
+ 287,
+ "2023-04-19 16:15:18",
+ 1,
+ 1935,
+ 1
+ ],
+ [
+ 288,
+ "2023-04-19 16:15:18",
+ 1,
+ 1935,
+ 1
+ ],
+ [
+ 289,
+ "2023-04-19 16:15:18",
+ 1,
+ 1951,
+ 1
+ ],
+ [
+ 290,
+ "2023-04-19 16:15:18",
+ 1,
+ 1951,
+ 1
+ ],
+ [
+ 291,
+ "2023-04-19 16:15:18",
+ 1,
+ 1967,
+ 1
+ ],
+ [
+ 292,
+ "2023-04-19 16:15:18",
+ 1,
+ 1967,
+ 1
+ ],
+ [
+ 293,
+ "2023-04-19 16:15:18",
+ 1,
+ 1983,
+ 1
+ ],
+ [
+ 294,
+ "2023-04-19 16:15:18",
+ 1,
+ 1983,
+ 1
+ ],
+ [
+ 295,
+ "2023-04-19 16:15:18",
+ 1,
+ 1983,
+ 1
+ ],
+ [
+ 296,
+ "2023-04-19 16:15:18",
+ 1,
+ 1990,
+ 1
+ ],
+ [
+ 297,
+ "2023-04-19 16:15:18",
+ 1,
+ 1990,
+ 1
+ ],
+ [
+ 298,
+ "2023-04-19 16:15:18",
+ 1,
+ 1997,
+ 1
+ ],
+ [
+ 299,
+ "2023-04-19 16:15:18",
+ 1,
+ 1997,
+ 1
+ ],
+ [
+ 300,
+ "2023-04-19 16:15:18",
+ 1,
+ 1997,
+ 1
+ ],
+ [
+ 301,
+ "2023-04-19 16:15:18",
+ 1,
+ 2003,
+ 1
+ ],
+ [
+ 302,
+ "2023-04-19 16:15:18",
+ 1,
+ 2003,
+ 1
+ ],
+ [
+ 303,
+ "2023-04-19 16:15:18",
+ 1,
+ 2003,
+ 1
+ ],
+ [
+ 304,
+ "2023-04-19 16:15:19",
+ 1,
+ 2010,
+ 1
+ ],
+ [
+ 305,
+ "2023-04-19 16:15:19",
+ 1,
+ 2010,
+ 1
+ ],
+ [
+ 306,
+ "2023-04-19 16:15:19",
+ 1,
+ 2010,
+ 1
+ ],
+ [
+ 307,
+ "2023-04-19 16:15:19",
+ 1,
+ 2017,
+ 1
+ ],
+ [
+ 308,
+ "2023-04-19 16:15:19",
+ 1,
+ 2017,
+ 1
+ ],
+ [
+ 309,
+ "2023-04-19 16:15:19",
+ 1,
+ 2017,
+ 1
+ ],
+ [
+ 310,
+ "2023-04-19 16:15:19",
+ 1,
+ 2024,
+ 1
+ ],
+ [
+ 311,
+ "2023-04-19 16:15:19",
+ 1,
+ 2024,
+ 1
+ ],
+ [
+ 312,
+ "2023-04-19 16:15:19",
+ 1,
+ 2024,
+ 1
+ ],
+ [
+ 313,
+ "2023-04-19 16:15:19",
+ 1,
+ 2040,
+ 1
+ ],
+ [
+ 314,
+ "2023-04-19 16:15:19",
+ 1,
+ 2040,
+ 1
+ ],
+ [
+ 315,
+ "2023-04-19 16:15:19",
+ 1,
+ 2040,
+ 1
+ ],
+ [
+ 316,
+ "2023-04-19 16:15:19",
+ 1,
+ 1604,
+ 1
+ ],
+ [
+ 317,
+ "2023-04-19 16:15:19",
+ 1,
+ 1604,
+ 1
+ ],
+ [
+ 318,
+ "2023-04-19 16:15:19",
+ 1,
+ 1604,
+ 1
+ ],
+ [
+ 319,
+ "2023-04-19 16:15:19",
+ 1,
+ 1604,
+ 1
+ ],
+ [
+ 320,
+ "2023-04-19 16:15:19",
+ 1,
+ 1620,
+ 1
+ ],
+ [
+ 321,
+ "2023-04-19 16:15:19",
+ 1,
+ 1620,
+ 1
+ ],
+ [
+ 322,
+ "2023-04-19 16:15:19",
+ 1,
+ 1620,
+ 1
+ ],
+ [
+ 323,
+ "2023-04-19 16:15:19",
+ 1,
+ 1620,
+ 1
+ ],
+ [
+ 324,
+ "2023-04-19 16:15:19",
+ 1,
+ 1636,
+ 1
+ ],
+ [
+ 325,
+ "2023-04-19 16:15:19",
+ 1,
+ 1636,
+ 1
+ ],
+ [
+ 326,
+ "2023-04-19 16:15:19",
+ 1,
+ 1636,
+ 1
+ ],
+ [
+ 327,
+ "2023-04-19 16:15:19",
+ 1,
+ 1652,
+ 1
+ ],
+ [
+ 328,
+ "2023-04-19 16:15:19",
+ 1,
+ 1652,
+ 1
+ ],
+ [
+ 329,
+ "2023-04-19 16:15:19",
+ 1,
+ 1652,
+ 1
+ ],
+ [
+ 330,
+ "2023-04-19 16:15:19",
+ 1,
+ 1668,
+ 1
+ ],
+ [
+ 331,
+ "2023-04-19 16:15:19",
+ 1,
+ 1668,
+ 1
+ ],
+ [
+ 332,
+ "2023-04-19 16:15:19",
+ 1,
+ 1668,
+ 1
+ ],
+ [
+ 333,
+ "2023-04-19 16:15:20",
+ 1,
+ 1764,
+ 1
+ ],
+ [
+ 334,
+ "2023-04-19 16:15:20",
+ 1,
+ 1764,
+ 1
+ ],
+ [
+ 335,
+ "2023-04-19 16:15:20",
+ 1,
+ 1764,
+ 1
+ ],
+ [
+ 336,
+ "2023-04-19 16:15:20",
+ 1,
+ 1780,
+ 1
+ ],
+ [
+ 337,
+ "2023-04-19 16:15:20",
+ 1,
+ 1796,
+ 1
+ ],
+ [
+ 338,
+ "2023-04-19 16:15:20",
+ 1,
+ 1796,
+ 1
+ ],
+ [
+ 339,
+ "2023-04-19 16:15:20",
+ 1,
+ 1796,
+ 1
+ ],
+ [
+ 340,
+ "2023-04-19 16:15:20",
+ 1,
+ 1812,
+ 1
+ ],
+ [
+ 341,
+ "2023-04-19 16:15:20",
+ 1,
+ 1812,
+ 1
+ ],
+ [
+ 342,
+ "2023-04-19 16:15:20",
+ 1,
+ 1684,
+ 1
+ ],
+ [
+ 343,
+ "2023-04-19 16:15:20",
+ 1,
+ 1684,
+ 1
+ ],
+ [
+ 344,
+ "2023-04-19 16:15:20",
+ 1,
+ 1700,
+ 1
+ ],
+ [
+ 345,
+ "2023-04-19 16:15:20",
+ 1,
+ 1700,
+ 1
+ ],
+ [
+ 346,
+ "2023-04-19 16:15:20",
+ 1,
+ 1700,
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many orders did customer with ID 33 place?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 33;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total of all canceled orders?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "17408.0700"
+ ],
+ "sql_execute_result": [
+ [
+ "17408.0700"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with product ID 430?",
+ "sql": "SELECT sku FROM sales_order_item WHERE product_id = 430;",
+ "answer": [
+ "MJ12-L-Blue",
+ "MJ12-XL-Orange",
+ "MJ12-S-Orange",
+ "MJ12-M-Blue",
+ "MJ12-M-Black",
+ "MJ12-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MT12-M-Blue'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = '24-WB06';",
+ "answer": [
+ "Endeavor Daytrip Backpack"
+ ],
+ "sql_execute_result": [
+ [
+ "Endeavor Daytrip Backpack"
+ ],
+ [
+ "Endeavor Daytrip Backpack"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest quantity ordered in March 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-03-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 1607?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1607;",
+ "answer": [
+ "WB02-XS-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "WB02-XS-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "How many items of 'Erica Evercool Sports Bra-XS-Yellow' were ordered?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1607;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with order ID 268?",
+ "sql": "SELECT status FROM sales_order_grid WHERE entity_id = 268;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email of the customer who made order ID 200.",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 200;",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders include the product with SKU 'WB02-XS-Yellow'?",
+ "sql": "SELECT COUNT(DISTINCT order_id) FROM sales_order_item WHERE sku = 'WB02-XS-Yellow';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 1607?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1607;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity ID 25?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 25;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Tees' category?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 25;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 192
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'MT02-S-Red' available for free shipping?",
+ "sql": "SELECT free_shipping FROM sales_order_item WHERE sku = 'MT02-S-Red';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ],
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1607?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1607;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products with the SKU 'WB02-XS-Yellow' have been ordered?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WB02-XS-Yellow';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 828?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 828;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity shipped for order ID 300?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for the website with code 'base'.",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 542?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 542 AND attribute_id = 77;",
+ "answer": [
+ "29.00"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing address for customer 'Jane Doe'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Jane Doe';",
+ "answer": [
+ "567 Ocean Drive Miami Florida 33139",
+ "456 Broadway New York City New York 10001"
+ ],
+ "sql_execute_result": [
+ [
+ "567 Ocean Drive Miami Florida 33139"
+ ],
+ [
+ "456 Broadway New York City New York 10001"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer with the billing postcode '60601'.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE billing_postcode = '60601';",
+ "answer": [
+ "maxwell.baker@yahoo.com",
+ "james.kim@gmail.com",
+ "jessica.wong@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses are associated with the order shipping to '456 Hollywood Blvd, Los Angeles'?",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '456 Hollywood Blvd' AND city = 'Los Angeles';",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been sent for store ID 1?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE store_id = 1 AND email_sent IS NOT NULL;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer with the shipping address on '789 Main Street, Houston'.",
+ "sql": "SELECT billing_firstname FROM customer_grid_flat WHERE shipping_full LIKE '%789 Main Street%Houston%';",
+ "answer": [
+ "Olivia"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer 'Jessica Nguyen'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Jessica Nguyen';",
+ "answer": [
+ "2065551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2065551212"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the increment ID for the shipment with entity ID 3.",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "000000003"
+ ],
+ "sql_execute_result": [
+ [
+ "000000003"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 214?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = (SELECT status_id FROM review WHERE review_id = 214);",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were found for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer for review ID 28?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 28;",
+ "answer": [
+ "Jamie"
+ ],
+ "sql_execute_result": [
+ [
+ "Jamie"
+ ]
+ ]
+ },
+ {
+ "question": "What is the average rating value for product with ID 1796?",
+ "sql": "SELECT AVG(value) FROM rating_option_vote WHERE entity_pk_value = 1796;",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Helios Endurance Tank-S-Blue' on 2022-02-04.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Helios Endurance Tank-S-Blue' AND period = '2022-02-04';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for review ID 246?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 246;",
+ "answer": [
+ "These are soft and stretchy"
+ ],
+ "sql_execute_result": [
+ [
+ "These are soft and stretchy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score of the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of 'Arcadio Gym Short-36-Red' on the bestsellers list for 2023-04-27?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Arcadio Gym Short-36-Red' AND period = '2023-04-27';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the review detail for review ID 53?",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 53;",
+ "answer": [
+ "They chafed me!"
+ ],
+ "sql_execute_result": [
+ [
+ "They chafed me!"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Orestes Yoga Pant -34-Blue' on 2022-12-11.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Orestes Yoga Pant -34-Blue' AND period = '2022-12-11';",
+ "answer": [
+ "52.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "52.8000"
+ ],
+ [
+ "52.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing address with ID 362?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 362 AND address_type = 'billing';",
+ "answer": [
+ "harrypotterfan1@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "harrypotterfan1@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all shipments for customer ID 1.",
+ "sql": "SELECT entity_id AS shipment_id, increment_id FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "000000001"
+ ],
+ [
+ 2,
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with state 'canceled'?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'canceled';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-07-13?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-07-13' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on 2022-05-16?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-05-16' AND order_status = 'complete';",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ],
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the next shipment sequence value?",
+ "sql": "SELECT MAX(sequence_value) + 1 AS next_sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Which email address is associated with the shipping address in California with ID 593?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 593 AND region = 'California';",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments were created on 2023-04-19?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_shipment WHERE created_at LIKE '2023-04-19%';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders with status 'pending' on 2023-05-31?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-05-31' AND order_status = 'pending';",
+ "answer": [
+ "219.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "219.4000"
+ ],
+ [
+ "219.4000"
+ ]
+ ]
+ },
+ {
+ "question": "List the regions for all sales order addresses with the postcode '60606'.",
+ "sql": "SELECT DISTINCT region FROM sales_order_address WHERE postcode = '60606';",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 65?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 65;",
+ "answer": [
+ "nathan.chen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "nathan.chen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Karmen Yoga Pant-29-White' on 2022-02-19.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Karmen Yoga Pant-29-White' AND period = '2022-02-19';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing city for customer 'Roberto Lopez'?",
+ "sql": "SELECT billing_city FROM customer_grid_flat WHERE name = 'Roberto Lopez';",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the order with payment ID 164?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 164;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many customer names belong to the 'General' group?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE group_id = (SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'General');",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Sprite Stasis Ball 75 cm' ordered on 2022-07-12?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 75 cm' AND period = '2022-07-12';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method for the order with payment ID 182.",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 182;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing street address for customer 'Samantha Wu'?",
+ "sql": "SELECT billing_street FROM customer_grid_flat WHERE name = 'Samantha Wu';",
+ "answer": [
+ "333 Collins Ave"
+ ],
+ "sql_execute_result": [
+ [
+ "333 Collins Ave"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the email 'james.baker@gmail.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'james.baker@gmail.com';",
+ "answer": [
+ "James Baker"
+ ],
+ "sql_execute_result": [
+ [
+ "James Baker"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name with ID 1818 in the bestsellers data?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 1818;",
+ "answer": [
+ "Karmen Yoga Pant-29-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ],
+ [
+ "Karmen Yoga Pant-29-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MS09-M-Red'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MS09-M-Red';",
+ "answer": [
+ "Ryker LumaTech\u2122 Tee (Crew-neck)",
+ "Ryker LumaTech\u2122 Tee (Crew-neck)-M-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)"
+ ],
+ [
+ "Ryker LumaTech™ Tee (Crew-neck)-M-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find all products purchased in order ID 117 and list their SKUs.",
+ "sql": "SELECT sku FROM sales_order_item WHERE order_id = 117;",
+ "answer": [
+ "24-MG05",
+ "MH11-XL-Orange",
+ "24-WG086",
+ "MP03-32-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MG05"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID for the 'Retailer' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "List all categories with parent ID 22.",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE parent_id = 22;",
+ "answer": [
+ "27",
+ "28"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 28
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with code '4' for rating ID 3?",
+ "sql": "SELECT position FROM rating_option WHERE code = '4' AND rating_id = 3;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sequence value for the fourth order in sequence_order_1.",
+ "sql": "SELECT sequence_value FROM sequence_order_1 LIMIT 3, 1;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the total row weight for the product 'Ingrid Running Jacket' in order 244?",
+ "sql": "SELECT row_weight FROM sales_order_item WHERE order_id = 244 AND name = 'Ingrid Running Jacket';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation time for category with entity ID 17.",
+ "sql": "SELECT created_at FROM catalog_category_entity WHERE entity_id = 17;",
+ "answer": [
+ "2023-04-19 16:13:18"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:18"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the option with ID 6?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 6;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List the customer group codes that have the tax class ID of 3.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE tax_class_id = 3;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 62?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 62;",
+ "answer": [
+ "Washington"
+ ],
+ "sql_execute_result": [
+ [
+ "Washington"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default group ID of the Main Website?",
+ "sql": "SELECT default_group_id FROM store_website WHERE name = 'Main Website';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 238?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 238;",
+ "answer": [
+ "Want more colors"
+ ],
+ "sql_execute_result": [
+ [
+ "Want more colors"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the rating option with code '3'.",
+ "sql": "SELECT position FROM rating_option WHERE code = '3';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 3
+ ],
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values are present in the sequence_shipment_1 table?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who reviewed 'Unflattering'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Unflattering';",
+ "answer": [
+ "Dominic"
+ ],
+ "sql_execute_result": [
+ [
+ "Dominic"
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the website with ID 0?",
+ "sql": "SELECT code FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Which review ID corresponds to the title 'VERY LIGHTWEIGHT COMFY-GOOD SHOES'?",
+ "sql": "SELECT review_id FROM review_detail WHERE title = 'VERY LIGHTWEIGHT COMFY-GOOD SHOES';",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the option with ID 5.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the locale for the region named 'Amambay'?",
+ "sql": "SELECT locale FROM directory_country_region_name WHERE name = 'Amambay';",
+ "answer": [
+ "en_US"
+ ],
+ "sql_execute_result": [
+ [
+ "en_US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 804?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 804;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 19?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 19;",
+ "answer": [
+ "148"
+ ],
+ "sql_execute_result": [
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 898
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 924
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1015
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the order with status 'processing'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'processing';",
+ "answer": [
+ "Processing"
+ ],
+ "sql_execute_result": [
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular product in store with ID 1 for the year 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the order ID 308.",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE entity_id = 308;",
+ "answer": [
+ "Grace Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace",
+ "Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-04-21?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-04-21' AND order_status = 'complete';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the customer with the address ID 45.",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 45;",
+ "answer": [
+ "Hoboken"
+ ],
+ "sql_execute_result": [
+ [
+ "Hoboken"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the product 'Iris Workout Top' shipped?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the detailed description for the product with ID 821.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 821 AND attribute_id = 75;",
+ "answer": [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.
\n• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many periods were found when orders with status 'canceled' occurred in April 2023?",
+ "sql": "SELECT period FROM sales_order_aggregated_created WHERE order_status = 'canceled' AND period LIKE '2023-04%';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-01"
+ ],
+ [
+ "2023-04-01"
+ ],
+ [
+ "2023-04-04"
+ ],
+ [
+ "2023-04-04"
+ ],
+ [
+ "2023-04-07"
+ ],
+ [
+ "2023-04-07"
+ ],
+ [
+ "2023-04-10"
+ ],
+ [
+ "2023-04-10"
+ ],
+ [
+ "2023-04-13"
+ ],
+ [
+ "2023-04-13"
+ ],
+ [
+ "2023-04-14"
+ ],
+ [
+ "2023-04-14"
+ ],
+ [
+ "2023-04-17"
+ ],
+ [
+ "2023-04-17"
+ ],
+ [
+ "2023-04-24"
+ ],
+ [
+ "2023-04-24"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have reviews created on 2023-04-19?",
+ "sql": "SELECT entity_pk_value FROM review WHERE created_at = '2023-04-19 16:15:12' OR created_at = '2023-04-19 16:15:15' OR created_at = '2023-04-19 16:15:16' OR created_at = '2023-04-19 16:15:18' OR created_at = '2023-04-19 16:15:19';",
+ "answer": [
+ "66"
+ ],
+ "sql_execute_result": [
+ [
+ 350
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 366
+ ],
+ [
+ 737
+ ],
+ [
+ 737
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 750
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 776
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 789
+ ],
+ [
+ 789
+ ],
+ [
+ 558
+ ],
+ [
+ 558
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 574
+ ],
+ [
+ 526
+ ],
+ [
+ 526
+ ],
+ [
+ 446
+ ],
+ [
+ 446
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 462
+ ],
+ [
+ 462
+ ],
+ [
+ 542
+ ],
+ [
+ 542
+ ],
+ [
+ 606
+ ],
+ [
+ 606
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 622
+ ],
+ [
+ 622
+ ],
+ [
+ 622
+ ],
+ [
+ 478
+ ],
+ [
+ 478
+ ],
+ [
+ 478
+ ],
+ [
+ 13
+ ],
+ [
+ 42
+ ],
+ [
+ 42
+ ],
+ [
+ 42
+ ],
+ [
+ 44
+ ],
+ [
+ 44
+ ],
+ [
+ 43
+ ],
+ [
+ 43
+ ],
+ [
+ 43
+ ],
+ [
+ 41
+ ],
+ [
+ 41
+ ],
+ [
+ 1044
+ ],
+ [
+ 1044
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1060
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1076
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1092
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1108
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1114
+ ],
+ [
+ 1220
+ ],
+ [
+ 1220
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1236
+ ],
+ [
+ 1236
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1252
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1284
+ ],
+ [
+ 1284
+ ],
+ [
+ 1380
+ ],
+ [
+ 1380
+ ],
+ [
+ 1380
+ ],
+ [
+ 1300
+ ],
+ [
+ 1300
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1332
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1348
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1364
+ ],
+ [
+ 1364
+ ],
+ [
+ 1819
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1826
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1833
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1524
+ ],
+ [
+ 1524
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1540
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1556
+ ],
+ [
+ 1556
+ ],
+ [
+ 1919
+ ],
+ [
+ 1919
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1935
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1951
+ ],
+ [
+ 1967
+ ],
+ [
+ 1967
+ ],
+ [
+ 1983
+ ],
+ [
+ 1983
+ ],
+ [
+ 1983
+ ],
+ [
+ 1990
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 1997
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2003
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2010
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2017
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2024
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ],
+ [
+ 2040
+ ],
+ [
+ 2040
+ ],
+ [
+ 1604
+ ],
+ [
+ 1604
+ ],
+ [
+ 1604
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1620
+ ],
+ [
+ 1620
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1636
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1652
+ ],
+ [
+ 1652
+ ],
+ [
+ 1668
+ ],
+ [
+ 1668
+ ],
+ [
+ 1668
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on 2022-02-10?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-02-10' AND order_status = 'complete';",
+ "answer": [
+ "34.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "34.0000"
+ ],
+ [
+ "34.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'MSH09-36-Black'.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with increment ID '000000001'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'customer5@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer5@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 20?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 20;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000002'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1691 currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1691;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who left a review with the title 'avid hiker/snowboarder'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'avid hiker/snowboarder';",
+ "answer": [
+ "Wilbur"
+ ],
+ "sql_execute_result": [
+ [
+ "Wilbur"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the billing address with ID 2?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 2;",
+ "answer": [
+ "Birmingham"
+ ],
+ "sql_execute_result": [
+ [
+ "Birmingham"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with region_id 695.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 695;",
+ "answer": [
+ "Henan Sheng"
+ ],
+ "sql_execute_result": [
+ [
+ "Henan Sheng"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type of the attribute with attribute_code 'dob'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'dob';",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were returned for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with order_id 91?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 91;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score of the search query 'nike'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the additional information for the payment entity_id 130?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 130;",
+ "answer": [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input type for the attribute with attribute_id 96?",
+ "sql": "SELECT frontend_input FROM eav_attribute WHERE attribute_id = 96;",
+ "answer": [
+ "gallery"
+ ],
+ "sql_execute_result": [
+ [
+ "gallery"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with product_id 1492?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE product_id = 1492;",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount ordered for the payment with entity_id 5?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 5;",
+ "answer": [
+ "137.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "137.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'TR'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'TR';",
+ "answer": [
+ "TUR"
+ ],
+ "sql_execute_result": [
+ [
+ "TUR"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with ID 2023 in the daily bestsellers table.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 2023;",
+ "answer": [
+ "Ina Compression Short-29-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Ina Compression Short-29-Red"
+ ],
+ [
+ "Ina Compression Short-29-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review title for review ID 5?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 5;",
+ "answer": [
+ "Screwed up my back"
+ ],
+ "sql_execute_result": [
+ [
+ "Screwed up my back"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile ID 1 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Impulse Duffle' in the daily bestsellers table.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Impulse Duffle';",
+ "answer": [
+ "74.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ],
+ [
+ "74.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the root category ID for the store group named 'Main Website Store'?",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the detail description for review ID 31?",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 31;",
+ "answer": [
+ "This is one of my favorite layers for running in the winter, it keeps me warm but it's not super bulky."
+ ],
+ "sql_execute_result": [
+ [
+ "This is one of my favorite layers for running in the winter, it keeps me warm but it's not super bulky."
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for 'Minerva LumaTech\u2122 V-Tee-XS-Blue' in the daily bestsellers table.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Minerva LumaTech™ V-Tee-XS-Blue';",
+ "answer": [
+ "3",
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname associated with review ID 346?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 346;",
+ "answer": [
+ "Mikkel"
+ ],
+ "sql_execute_result": [
+ [
+ "Mikkel"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 63?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 63;",
+ "answer": [
+ "james.baker@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "james.baker@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with ID 36.",
+ "sql": "SELECT entity_id, increment_id, status, created_at FROM sales_order_grid WHERE customer_id = 36;",
+ "answer": [
+ "Order ID: 49, Increment ID: 000000049, Status: canceled, Created At: 2022-10-11 18:36:12",
+ "Order ID: 69, Increment ID: 000000069, Status: complete, Created At: 2022-07-09 18:04:57",
+ "Order ID: 122, Increment ID: 000000122, Status: canceled, Created At: 2023-03-27 04:29:35",
+ "Order ID: 206, Increment ID: 000000206, Status: canceled, Created At: 2023-03-27 06:02:22",
+ "Order ID: 219, Increment ID: 000000219, Status: canceled, Created At: 2022-05-26 10:58:37",
+ "Order ID: 248, Increment ID: 000000248, Status: canceled, Created At: 2023-02-23 01:02:43",
+ "Order ID: 251, Increment ID: 000000251, Status: complete, Created At: 2022-06-03 02:17:07",
+ "Order ID: 275, Increment ID: 000000275, Status: canceled, Created At: 2022-08-22 18:26:05",
+ "Order ID: 294, Increment ID: 000000294, Status: canceled, Created At: 2022-09-20 05:53:28",
+ "Order ID: 304, Increment ID: 000000304, Status: pending, Created At: 2023-04-19 23:41:55"
+ ],
+ "sql_execute_result": [
+ [
+ 49,
+ "000000049",
+ "canceled",
+ "2022-10-11 18:36:12"
+ ],
+ [
+ 69,
+ "000000069",
+ "complete",
+ "2022-07-09 18:04:57"
+ ],
+ [
+ 122,
+ "000000122",
+ "canceled",
+ "2023-03-27 04:29:35"
+ ],
+ [
+ 206,
+ "000000206",
+ "canceled",
+ "2023-03-27 06:02:22"
+ ],
+ [
+ 219,
+ "000000219",
+ "canceled",
+ "2022-05-26 10:58:37"
+ ],
+ [
+ 248,
+ "000000248",
+ "canceled",
+ "2023-02-23 01:02:43"
+ ],
+ [
+ 251,
+ "000000251",
+ "complete",
+ "2022-06-03 02:17:07"
+ ],
+ [
+ 275,
+ "000000275",
+ "canceled",
+ "2022-08-22 18:26:05"
+ ],
+ [
+ 294,
+ "000000294",
+ "canceled",
+ "2022-09-20 05:53:28"
+ ],
+ [
+ 304,
+ "000000304",
+ "pending",
+ "2023-04-19 23:41:55"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status for order with increment ID '000000115'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000115';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders on 2023-01-24?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-01-24';",
+ "answer": [
+ "209.0000",
+ "43.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "209.0000"
+ ],
+ [
+ "43.4000"
+ ],
+ [
+ "209.0000"
+ ],
+ [
+ "43.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for order with ID 209.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE entity_id = 209;",
+ "answer": [
+ "333 S Broad St,Philadelphia,Pennsylvania,19102"
+ ],
+ "sql_execute_result": [
+ [
+ "333 S Broad St,Philadelphia,Pennsylvania,19102"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'natalie.kim@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'natalie.kim@gmail.com';",
+ "answer": [
+ "Natalie Kim"
+ ],
+ "sql_execute_result": [
+ [
+ "Natalie Kim"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the order with ID 70?",
+ "sql": "SELECT created_at FROM sales_order_grid WHERE entity_id = 70;",
+ "answer": [
+ "2022-07-01 15:03:36"
+ ],
+ "sql_execute_result": [
+ [
+ "2022-07-01 15:03:36"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 1144?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1144;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 1236.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 1236;",
+ "answer": [
+ "205",
+ "206",
+ "207",
+ "208"
+ ],
+ "sql_execute_result": [
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with ID 300?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = (SELECT status FROM sales_order WHERE entity_id = 300);",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Check if shipment with ID 1 has had its email sent.",
+ "sql": "SELECT email_sent FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "List the state of orders with status 'pending_payment'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending_payment';",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID for the integer value associated with product ID 1634.",
+ "sql": "SELECT attribute_id FROM catalog_product_entity_int WHERE entity_id = 1634;",
+ "answer": [
+ "93",
+ "97",
+ "99",
+ "115",
+ "136",
+ "144"
+ ],
+ "sql_execute_result": [
+ [
+ 93
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 115
+ ],
+ [
+ 136
+ ],
+ [
+ 144
+ ]
+ ]
+ },
+ {
+ "question": "Get the total quantity for the shipment with ID 2.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review creation date for review ID 255?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 255;",
+ "answer": [
+ "2023-04-19 16:15:17"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:17"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1478 active?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1478 AND attribute_id = 99;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the default state for status 'canceled'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'canceled';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description for the product with entity ID 1466.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1466 AND attribute_id = 75;",
+ "answer": [
+ "The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.
\n• Black scoop neck tee.
• Side rouching.
• Relaxed fit.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.
\n• Black scoop neck tee.
• Side rouching.
• Relaxed fit.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for order ID 147?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 147;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status label for the status 'pending_paypal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_paypal';",
+ "answer": [
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer ID 15?",
+ "sql": "SELECT customer_email FROM sales_order WHERE customer_id = 15;",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer Ava Brown.",
+ "sql": "SELECT increment_id, status FROM sales_order WHERE customer_firstname = 'Ava' AND customer_lastname = 'Brown';",
+ "answer": [
+ "000000048: complete",
+ "000000078: complete",
+ "000000090: complete",
+ "000000128: complete",
+ "000000149: canceled",
+ "000000200: complete",
+ "000000230: complete",
+ "000000252: canceled",
+ "000000270: complete"
+ ],
+ "sql_execute_result": [
+ [
+ "000000048",
+ "complete"
+ ],
+ [
+ "000000078",
+ "complete"
+ ],
+ [
+ "000000090",
+ "complete"
+ ],
+ [
+ "000000128",
+ "complete"
+ ],
+ [
+ "000000149",
+ "canceled"
+ ],
+ [
+ "000000200",
+ "complete"
+ ],
+ [
+ "000000230",
+ "complete"
+ ],
+ [
+ "000000252",
+ "canceled"
+ ],
+ [
+ "000000270",
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in order with increment ID '000000148'?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE increment_id = '000000148';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date of the credit memo with increment ID '000000001'?",
+ "sql": "SELECT created_at FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total for order with increment ID '000000128'.",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000128';",
+ "answer": [
+ "212.2500"
+ ],
+ "sql_execute_result": [
+ [
+ "212.2500"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for invoice with entity ID 1?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for product ID 161?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 161;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer named 'John Lee'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'John Lee';",
+ "answer": [
+ "john.lee@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.lee@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items in stock for product ID 706.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 706;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order currency code for invoice with entity ID 2?",
+ "sql": "SELECT order_currency_code FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing region for customer with entity ID 47.",
+ "sql": "SELECT billing_region FROM customer_grid_flat WHERE entity_id = 47;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for product with entity ID 227.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 227 AND attribute_id = 82;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for customer 'Samantha Wu'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Samantha Wu';",
+ "answer": [
+ "3055551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3055551212"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Bags' category?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 4;",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 787?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 787;",
+ "answer": [
+ "MP05-36-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MP05-36-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Get the latest shipment sequence value.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the category with entity_id 35.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 35 AND attribute_id = 119;",
+ "answer": [
+ "performance-fabrics"
+ ],
+ "sql_execute_result": [
+ [
+ "performance-fabrics"
+ ]
+ ]
+ },
+ {
+ "question": "How many votes did the review with ID 210 receive?",
+ "sql": "SELECT COUNT(vote_id) FROM rating_option_vote WHERE review_id = 210;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 139 visible on the front?",
+ "sql": "SELECT is_visible_on_front FROM catalog_eav_attribute WHERE attribute_id = 139;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many configurable products were found?",
+ "sql": "SELECT entity_id FROM catalog_product_entity WHERE type_id = 'configurable';",
+ "answer": [
+ "147"
+ ],
+ "sql_execute_result": [
+ [
+ 62
+ ],
+ [
+ 78
+ ],
+ [
+ 94
+ ],
+ [
+ 110
+ ],
+ [
+ 126
+ ],
+ [
+ 142
+ ],
+ [
+ 158
+ ],
+ [
+ 174
+ ],
+ [
+ 190
+ ],
+ [
+ 206
+ ],
+ [
+ 222
+ ],
+ [
+ 238
+ ],
+ [
+ 254
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 318
+ ],
+ [
+ 334
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 382
+ ],
+ [
+ 398
+ ],
+ [
+ 414
+ ],
+ [
+ 430
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 478
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 526
+ ],
+ [
+ 542
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 590
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 682
+ ],
+ [
+ 688
+ ],
+ [
+ 694
+ ],
+ [
+ 700
+ ],
+ [
+ 706
+ ],
+ [
+ 712
+ ],
+ [
+ 718
+ ],
+ [
+ 724
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 802
+ ],
+ [
+ 815
+ ],
+ [
+ 828
+ ],
+ [
+ 841
+ ],
+ [
+ 854
+ ],
+ [
+ 867
+ ],
+ [
+ 880
+ ],
+ [
+ 893
+ ],
+ [
+ 898
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 937
+ ],
+ [
+ 950
+ ],
+ [
+ 963
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 1002
+ ],
+ [
+ 1015
+ ],
+ [
+ 1028
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1130
+ ],
+ [
+ 1146
+ ],
+ [
+ 1162
+ ],
+ [
+ 1178
+ ],
+ [
+ 1194
+ ],
+ [
+ 1210
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1380
+ ],
+ [
+ 1396
+ ],
+ [
+ 1412
+ ],
+ [
+ 1428
+ ],
+ [
+ 1444
+ ],
+ [
+ 1460
+ ],
+ [
+ 1476
+ ],
+ [
+ 1492
+ ],
+ [
+ 1508
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1572
+ ],
+ [
+ 1588
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1668
+ ],
+ [
+ 1684
+ ],
+ [
+ 1700
+ ],
+ [
+ 1716
+ ],
+ [
+ 1732
+ ],
+ [
+ 1748
+ ],
+ [
+ 1764
+ ],
+ [
+ 1780
+ ],
+ [
+ 1796
+ ],
+ [
+ 1812
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1847
+ ],
+ [
+ 1854
+ ],
+ [
+ 1861
+ ],
+ [
+ 1868
+ ],
+ [
+ 1875
+ ],
+ [
+ 1882
+ ],
+ [
+ 1889
+ ],
+ [
+ 1896
+ ],
+ [
+ 1903
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1967
+ ],
+ [
+ 1983
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the percentage rating for the review with ID 184?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 184;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Get the creation timestamp of the product with SKU 'WS09-S-White'.",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE sku = 'WS09-S-White';",
+ "answer": [
+ "2023-04-19 16:13:48"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:48"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute with ID 72's frontend input renderer?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 72;",
+ "answer": [
+ "Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 6?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 6;",
+ "answer": [
+ "jla_7781@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jla_7781@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 2040.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 2040;",
+ "answer": [
+ "313",
+ "314",
+ "315"
+ ],
+ "sql_execute_result": [
+ [
+ 313,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 314,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 315,
+ "2023-04-19 16:15:19"
+ ]
+ ]
+ },
+ {
+ "question": "Get the full name of the region with ID 498 in locale 'en_US'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 498 AND locale = 'en_US';",
+ "answer": [
+ "Para\u00edba"
+ ],
+ "sql_execute_result": [
+ [
+ "Para\u00edba"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews with the title containing 'Not for high impact'.",
+ "sql": "SELECT review_id, title FROM review_detail WHERE title LIKE '%Not for high impact%';",
+ "answer": [
+ "338",
+ "Not for high impact"
+ ],
+ "sql_execute_result": [
+ [
+ 338,
+ "Not for high impact"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for order with ID 135?",
+ "sql": "SELECT firstname, lastname, street, city, postcode, region FROM sales_order_address WHERE parent_id = 135 AND address_type = 'billing';",
+ "answer": [
+ "Jennifer White",
+ "789 W Olympic Blvd",
+ "Los Angeles",
+ "90015",
+ "California"
+ ],
+ "sql_execute_result": [
+ [
+ "Jennifer",
+ "White",
+ "789 W Olympic Blvd",
+ "Los Angeles",
+ "90015",
+ "California"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the reviewer with ID 8.",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 8;",
+ "answer": [
+ "Kennith"
+ ],
+ "sql_execute_result": [
+ [
+ "Kennith"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default billing address ID for customer 'kate.jones@gmail.com'?",
+ "sql": "SELECT default_billing FROM customer_entity WHERE email = 'kate.jones@gmail.com';",
+ "answer": [
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ 38
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the telephone number for the shipping address of order ID 148.",
+ "sql": "SELECT telephone FROM sales_order_address WHERE parent_id = 148 AND address_type = 'shipping';",
+ "answer": [
+ "3055551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3055551212"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews exist for the product with ID 1919?",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = 1919;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many active customers were found?",
+ "sql": "SELECT entity_id, email FROM customer_entity WHERE is_active = 1;",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "roni_cost@example.com"
+ ],
+ [
+ 2,
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ 3,
+ "jane.doe@hotmail.com"
+ ],
+ [
+ 4,
+ "bbjones@gmail.com"
+ ],
+ [
+ 5,
+ "helloworld@yahoo.com"
+ ],
+ [
+ 6,
+ "jla_7781@gmail.com"
+ ],
+ [
+ 7,
+ "bob123@hotmail.com"
+ ],
+ [
+ 8,
+ "marym@gmail.com"
+ ],
+ [
+ 9,
+ "john.lee@yahoo.com"
+ ],
+ [
+ 10,
+ "janesmith@gmail.com"
+ ],
+ [
+ 11,
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ 12,
+ "lisa.kim@gmail.com"
+ ],
+ [
+ 13,
+ "matt.baker@yahoo.com"
+ ],
+ [
+ 14,
+ "johndoe123@gmail.com"
+ ],
+ [
+ 15,
+ "janesmith456@yahoo.com"
+ ],
+ [
+ 16,
+ "coolcat321@hotmail.com"
+ ],
+ [
+ 17,
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ 18,
+ "avidreader99@yahoo.com"
+ ],
+ [
+ 19,
+ "artsygal123@hotmail.com"
+ ],
+ [
+ 20,
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ 21,
+ "beachlover99@yahoo.com"
+ ],
+ [
+ 22,
+ "fashionista88@gmail.com"
+ ],
+ [
+ 23,
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ 24,
+ "musiclover99@hotmail.com"
+ ],
+ [
+ 25,
+ "gamingpro456@gmail.com"
+ ],
+ [
+ 26,
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ 27,
+ "alex.martin@gmail.com"
+ ],
+ [
+ 28,
+ "lisa.green@hotmail.com"
+ ],
+ [
+ 29,
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ 30,
+ "david.lee@gmail.com"
+ ],
+ [
+ 31,
+ "jason.miller@yahoo.com"
+ ],
+ [
+ 32,
+ "katie.wong@hotmail.com"
+ ],
+ [
+ 33,
+ "adam.garcia@gmail.com"
+ ],
+ [
+ 34,
+ "brian.smith@yahoo.com"
+ ],
+ [
+ 35,
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ 36,
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ 37,
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ 38,
+ "kate.jones@gmail.com"
+ ],
+ [
+ 39,
+ "david.smith@gmail.com"
+ ],
+ [
+ 40,
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ 41,
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ 42,
+ "emily.chen@hotmail.com"
+ ],
+ [
+ 43,
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ 44,
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ 45,
+ "amanda.kim@gmail.com"
+ ],
+ [
+ 46,
+ "jane.doe@gmail.com"
+ ],
+ [
+ 47,
+ "john.smith@yahoo.com"
+ ],
+ [
+ 48,
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ 49,
+ "james.kim@gmail.com"
+ ],
+ [
+ 50,
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ 51,
+ "robert.johnson@gmail.com"
+ ],
+ [
+ 52,
+ "sophia.kim@gmail.com"
+ ],
+ [
+ 53,
+ "william.chang@hotmail.com"
+ ],
+ [
+ 54,
+ "jessica.wong@gmail.com"
+ ],
+ [
+ 55,
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ 56,
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ 57,
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ 58,
+ "sophia.young@gmail.com"
+ ],
+ [
+ 59,
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ 60,
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ 61,
+ "matthew.kim@gmail.com"
+ ],
+ [
+ 62,
+ "emily.wilson@gmail.com"
+ ],
+ [
+ 63,
+ "james.baker@gmail.com"
+ ],
+ [
+ 64,
+ "isabella.santos@gmail.com"
+ ],
+ [
+ 65,
+ "nathan.chen@gmail.com"
+ ],
+ [
+ 66,
+ "hannah.lim@gmail.com"
+ ],
+ [
+ 67,
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ 68,
+ "natalie.kim@gmail.com"
+ ],
+ [
+ 69,
+ "sean.miller@gmail.com"
+ ],
+ [
+ 70,
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 362?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 362;",
+ "answer": [
+ "MJ10-L-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ10-L-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status and state for the order with status 'pending'.",
+ "sql": "SELECT status, state FROM sales_order_status_state WHERE status = 'pending';",
+ "answer": [
+ "pending",
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "pending",
+ "new"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 897?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 897 AND attribute_id = 77;",
+ "answer": [
+ "32.500000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.500000"
+ ]
+ ]
+ },
+ {
+ "question": "Which category has the path '1/2/20/22/28'?",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE path = '1/2/20/22/28';",
+ "answer": [
+ "28"
+ ],
+ "sql_execute_result": [
+ [
+ 28
+ ]
+ ]
+ },
+ {
+ "question": "What is the default state for the order status 'processing'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'processing';",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the meta ID associated with profile ID 7.",
+ "sql": "SELECT meta_id FROM sales_sequence_profile WHERE profile_id = 7;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "What is the parent ID of the category with entity ID 5?",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 5;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Is the sequence profile with ID 8 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 8;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the product with entity ID 1536 and attribute ID 77.",
+ "sql": "SELECT store_id FROM catalog_product_entity_decimal WHERE entity_id = 1536 AND attribute_id = 77;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity ID 37?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 37;",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of products ordered in store with ID 0 for the period '2022-06-23'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE store_id = 0 AND period = '2022-06-23';",
+ "answer": [
+ "5.0000",
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 603?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 603;",
+ "answer": [
+ "MS07-XL-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MS07-XL-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with region ID 42 in locale 'en_US'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 42 AND locale = 'en_US';",
+ "answer": [
+ "New Mexico"
+ ],
+ "sql_execute_result": [
+ [
+ "New Mexico"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1013 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1013;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed in store with ID 1 on '2022-09-24'?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-09-24' AND order_status = 'complete';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for store ID 0 for the period '2023-02-10' with status 'complete'?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE store_id = 0 AND period = '2023-02-10' AND order_status = 'complete';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for store ID 1 for the period '2023-05-14' with status 'complete'?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2023-05-14' AND order_status = 'complete';",
+ "answer": [
+ "89.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "89.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the product with ID 1445 in stock?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1445;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for order with payment entity ID 301?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 301;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total amount ordered for payment with entity ID 219.",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 219;",
+ "answer": [
+ "223.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "223.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with option ID 123 in the eav_attribute_option_value table?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 123;",
+ "answer": [
+ "Hard Shell"
+ ],
+ "sql_execute_result": [
+ [
+ "Hard Shell"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results were found for the query 'Joust Bag'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer group ID 2?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent sequence value in the sequence_shipment_1 table?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many payment entity IDs have a base shipping amount of 15.0000?",
+ "sql": "SELECT entity_id FROM sales_order_payment WHERE base_shipping_amount = '15.0000';",
+ "answer": [
+ "57"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 8
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 29
+ ],
+ [
+ 31
+ ],
+ [
+ 33
+ ],
+ [
+ 43
+ ],
+ [
+ 51
+ ],
+ [
+ 54
+ ],
+ [
+ 59
+ ],
+ [
+ 61
+ ],
+ [
+ 70
+ ],
+ [
+ 77
+ ],
+ [
+ 81
+ ],
+ [
+ 89
+ ],
+ [
+ 99
+ ],
+ [
+ 106
+ ],
+ [
+ 109
+ ],
+ [
+ 112
+ ],
+ [
+ 122
+ ],
+ [
+ 125
+ ],
+ [
+ 129
+ ],
+ [
+ 133
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 148
+ ],
+ [
+ 153
+ ],
+ [
+ 178
+ ],
+ [
+ 197
+ ],
+ [
+ 205
+ ],
+ [
+ 213
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 232
+ ],
+ [
+ 235
+ ],
+ [
+ 242
+ ],
+ [
+ 254
+ ],
+ [
+ 257
+ ],
+ [
+ 265
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 292
+ ],
+ [
+ 294
+ ],
+ [
+ 297
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the option ID 24 in the eav_attribute_option_value table?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 24;",
+ "answer": [
+ "Backpack"
+ ],
+ "sql_execute_result": [
+ [
+ "Backpack"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000267'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000267';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID '1826'?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1826 AND attribute_id = 73;",
+ "answer": [
+ "Emma Leggings"
+ ],
+ "sql_execute_result": [
+ [
+ "Emma Leggings"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'janesmith456@yahoo.com'.",
+ "sql": "SELECT increment_id, status, created_at FROM sales_order_grid WHERE customer_email = 'janesmith456@yahoo.com';",
+ "answer": [
+ "Order ID: 000000004, Status: complete, Date: 2023-02-03 23:08:03",
+ "Order ID: 000000070, Status: complete, Date: 2022-07-01 15:03:36",
+ "Order ID: 000000091, Status: complete, Date: 2022-09-29 22:04:05",
+ "Order ID: 000000099, Status: complete, Date: 2022-02-14 22:50:03",
+ "Order ID: 000000163, Status: complete, Date: 2022-10-01 14:47:10",
+ "Order ID: 000000186, Status: complete, Date: 2022-03-03 16:32:37",
+ "Order ID: 000000199, Status: complete, Date: 2022-09-22 07:10:53",
+ "Order ID: 000000226, Status: canceled, Date: 2022-10-04 02:28:47",
+ "Order ID: 000000247, Status: complete, Date: 2022-01-14 20:23:24",
+ "Order ID: 000000274, Status: complete, Date: 2022-07-13 10:45:46"
+ ],
+ "sql_execute_result": [
+ [
+ "000000004",
+ "complete",
+ "2023-02-03 23:08:03"
+ ],
+ [
+ "000000070",
+ "complete",
+ "2022-07-01 15:03:36"
+ ],
+ [
+ "000000091",
+ "complete",
+ "2022-09-29 22:04:05"
+ ],
+ [
+ "000000099",
+ "complete",
+ "2022-02-14 22:50:03"
+ ],
+ [
+ "000000163",
+ "complete",
+ "2022-10-01 14:47:10"
+ ],
+ [
+ "000000186",
+ "complete",
+ "2022-03-03 16:32:37"
+ ],
+ [
+ "000000199",
+ "complete",
+ "2022-09-22 07:10:53"
+ ],
+ [
+ "000000226",
+ "canceled",
+ "2022-10-04 02:28:47"
+ ],
+ [
+ "000000247",
+ "complete",
+ "2022-01-14 20:23:24"
+ ],
+ [
+ "000000274",
+ "complete",
+ "2022-07-13 10:45:46"
+ ]
+ ]
+ },
+ {
+ "question": "Get the ISO-3 code for the country ID 'ID'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'ID';",
+ "answer": [
+ "IDN"
+ ],
+ "sql_execute_result": [
+ [
+ "IDN"
+ ]
+ ]
+ },
+ {
+ "question": "List the stores that are active.",
+ "sql": "SELECT store_id, name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ 0,
+ "Admin"
+ ],
+ [
+ 1,
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order increment ID '000000241'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000241';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the state associated with the status 'complete'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'complete';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "List all order statuses that are visible on the front.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "fraud",
+ "holded",
+ "payment_review",
+ "pending",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000179'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000179';",
+ "answer": [
+ "127.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "127.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with increment ID '000000144'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000144';",
+ "answer": [
+ "123 Main Street, Birmingham, Alabama, 35213"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street,Birmingham,Alabama,35213"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with entity_id 7?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 7;",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 16
+ ],
+ [
+ 19
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 44
+ ]
+ ]
+ },
+ {
+ "question": "How many items are in the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total stock quantity for product with ID 2040.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for order with ID 300?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 3;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with ID 18?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE entity_id = 18;",
+ "answer": [
+ "Grace Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Grace Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered in order with ID 2?",
+ "sql": "SELECT sku FROM sales_order_item WHERE order_id = 2;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many children categories does the category with ID 21 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 21;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with entity ID 300?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 300;",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the Hawkeye Yoga Short.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'MSH05-32-Blue';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many sales order items have a discount percent of 20.0000?",
+ "sql": "SELECT item_id, name, sku FROM sales_order_item WHERE discount_percent = '20.0000';",
+ "answer": [
+ "140"
+ ],
+ "sql_execute_result": [
+ [
+ 74,
+ "Rapha Sports Short",
+ "MSH07-36-Purple"
+ ],
+ [
+ 76,
+ "Adrienne Trek Jacket",
+ "WJ08-XL-Gray"
+ ],
+ [
+ 78,
+ "Deion Long-Sleeve EverCool™ Tee",
+ "MS07-S-White"
+ ],
+ [
+ 80,
+ "Hawkeye Yoga Short",
+ "MSH05-33-Blue"
+ ],
+ [
+ 82,
+ "Juno Jacket",
+ "WJ06-M-Purple"
+ ],
+ [
+ 84,
+ "Orestes Yoga Pant ",
+ "MP10-34-Blue"
+ ],
+ [
+ 86,
+ "Orion Two-Tone Fitted Jacket",
+ "MJ07-L-Red"
+ ],
+ [
+ 88,
+ "Sprite Stasis Ball 65 cm",
+ "24-WG082-pink"
+ ],
+ [
+ 89,
+ "Olivia 1/4 Zip Light Jacket",
+ "WJ12-M-Purple"
+ ],
+ [
+ 98,
+ "Orion Two-Tone Fitted Jacket",
+ "MJ07-XS-Black"
+ ],
+ [
+ 100,
+ "Quest Lumaflex™ Band",
+ "24-UG01"
+ ],
+ [
+ 102,
+ "Ana Running Short",
+ "WSH10-29-White"
+ ],
+ [
+ 126,
+ "Juliana Short-Sleeve Tee",
+ "WS07-M-White"
+ ],
+ [
+ 128,
+ "Nadia Elements Shell",
+ "WJ10-M-Orange"
+ ],
+ [
+ 130,
+ "Prima Compete Bra Top",
+ "WB04-M-Purple"
+ ],
+ [
+ 132,
+ "Stark Fundamental Hoodie",
+ "MH06-XS-Black"
+ ],
+ [
+ 134,
+ "Stellar Solar Jacket",
+ "WJ01-L-Yellow"
+ ],
+ [
+ 164,
+ "Aether Gym Pant ",
+ "MP11-32-Blue"
+ ],
+ [
+ 166,
+ "Bella Tank",
+ "WT01-L-Orange"
+ ],
+ [
+ 168,
+ "Beaumont Summit Kit",
+ "MJ01-S-Orange"
+ ],
+ [
+ 170,
+ "Meteor Workout Short",
+ "MSH03-32-Green"
+ ],
+ [
+ 172,
+ "Kenobi Trail Jacket",
+ "MJ04-XL-Blue"
+ ],
+ [
+ 268,
+ "Olivia 1/4 Zip Light Jacket",
+ "WJ12-XS-Blue"
+ ],
+ [
+ 270,
+ "Hawkeye Yoga Short",
+ "MSH05-34-Blue"
+ ],
+ [
+ 272,
+ "Ajax Full-Zip Sweatshirt ",
+ "MH12-L-Red"
+ ],
+ [
+ 275,
+ "Typhon Performance Fleece-lined Jacket",
+ "MJ11-M-Green"
+ ],
+ [
+ 295,
+ "Augusta Pullover Jacket",
+ "WJ03-L-Orange"
+ ],
+ [
+ 297,
+ "Elisa EverCool™ Tee",
+ "WS06-L-Red"
+ ],
+ [
+ 299,
+ "Gabrielle Micro Sleeve Top",
+ "WS02-XL-Green"
+ ],
+ [
+ 301,
+ "Impulse Duffle",
+ "24-UB02"
+ ],
+ [
+ 302,
+ "Erikssen CoolTech™ Fitness Tank",
+ "MT01-M-Gray"
+ ],
+ [
+ 304,
+ "Mimi All-Purpose Short",
+ "WSH09-29-White"
+ ],
+ [
+ 306,
+ "Neve Studio Dance Jacket",
+ "WJ11-XS-Black"
+ ],
+ [
+ 308,
+ "Ryker LumaTech™ Tee (V-neck)",
+ "MS02-XS-Blue"
+ ],
+ [
+ 310,
+ "Aether Gym Pant ",
+ "MP11-34-Brown"
+ ],
+ [
+ 372,
+ "Inez Full Zip Jacket",
+ "WJ07-XL-Orange"
+ ],
+ [
+ 374,
+ "Sylvia Capri",
+ "WP11-29-Green"
+ ],
+ [
+ 376,
+ "Jade Yoga Jacket",
+ "WJ09-L-Green"
+ ],
+ [
+ 378,
+ "Eos V-Neck Hoodie",
+ "WH11-M-Blue"
+ ],
+ [
+ 454,
+ "Ana Running Short",
+ "WSH10-28-White"
+ ],
+ [
+ 456,
+ "Orion Two-Tone Fitted Jacket",
+ "MJ07-XS-Red"
+ ],
+ [
+ 458,
+ "Deirdre Relaxed-Fit Capri",
+ "WP12-28-Blue"
+ ],
+ [
+ 460,
+ "Lono Yoga Short",
+ "MSH06-33-Gray"
+ ],
+ [
+ 462,
+ "Sprite Stasis Ball 75 cm",
+ "24-WG083-gray"
+ ],
+ [
+ 519,
+ "Riona Full Zip Jacket",
+ "WJ05-XL-Red"
+ ],
+ [
+ 521,
+ "Hawkeye Yoga Short",
+ "MSH05-32-Blue"
+ ],
+ [
+ 523,
+ "Fiona Fitness Short",
+ "WSH01-28-Green"
+ ],
+ [
+ 525,
+ "Josie Yoga Jacket",
+ "WJ02-XS-Blue"
+ ],
+ [
+ 527,
+ "Orestes Yoga Pant ",
+ "MP10-34-Green"
+ ],
+ [
+ 529,
+ "Layla Tee",
+ "WS04-XS-Green"
+ ],
+ [
+ 531,
+ "Neve Studio Dance Jacket",
+ "WJ11-XS-Orange"
+ ],
+ [
+ 533,
+ "Iris Workout Top",
+ "WS03-L-Red"
+ ],
+ [
+ 535,
+ "Cobalt CoolTech™ Fitness Short",
+ "MSH01-32-Red"
+ ],
+ [
+ 603,
+ "Mithra Warmup Pant",
+ "MP06-33-Gray"
+ ],
+ [
+ 605,
+ "Abominable Hoodie",
+ "MH09-L-Green"
+ ],
+ [
+ 607,
+ "Rival Field Messenger",
+ "24-MB06"
+ ],
+ [
+ 608,
+ "Rapha Sports Short",
+ "MSH07-33-Blue"
+ ],
+ [
+ 645,
+ "Sol Active Short",
+ "MSH10-36-Blue"
+ ],
+ [
+ 647,
+ "Daria Bikram Pant",
+ "WP10-28-White"
+ ],
+ [
+ 649,
+ "Hera Pullover Hoodie",
+ "WH02-M-Blue"
+ ],
+ [
+ 652,
+ "Ryker LumaTech™ Tee (Crew-neck)",
+ "MS09-XL-Black"
+ ],
+ [
+ 674,
+ "Layla Tee",
+ "WS04-M-Green"
+ ],
+ [
+ 676,
+ "Ingrid Running Jacket",
+ "WJ04-M-Red"
+ ],
+ [
+ 678,
+ "Tiffany Fitness Tee",
+ "WS09-S-White"
+ ],
+ [
+ 680,
+ "Sprite Yoga Strap 8 foot",
+ "24-WG086"
+ ],
+ [
+ 681,
+ "Orestes Yoga Pant ",
+ "MP10-36-Green"
+ ],
+ [
+ 797,
+ "Erikssen CoolTech™ Fitness Tank",
+ "MT01-XS-Orange"
+ ],
+ [
+ 799,
+ "Joust Duffle Bag",
+ "24-MB01"
+ ],
+ [
+ 800,
+ "Ryker LumaTech™ Tee (V-neck)",
+ "MS02-XL-Blue"
+ ],
+ [
+ 802,
+ "Deirdre Relaxed-Fit Capri",
+ "WP12-28-Gray"
+ ],
+ [
+ 867,
+ "Erika Running Short",
+ "WSH12-32-Purple"
+ ],
+ [
+ 869,
+ "Autumn Pullie",
+ "WH03-XS-Red"
+ ],
+ [
+ 871,
+ "Sprite Stasis Ball 55 cm",
+ "24-WG081-pink"
+ ],
+ [
+ 872,
+ "Arcadio Gym Short",
+ "MSH11-36-Red"
+ ],
+ [
+ 874,
+ "Juno Jacket",
+ "WJ06-XS-Blue"
+ ],
+ [
+ 878,
+ "Overnight Duffle",
+ "24-WB07"
+ ],
+ [
+ 879,
+ "Chaz Kangeroo Hoodie",
+ "MH01-S-Black"
+ ],
+ [
+ 881,
+ "Impulse Duffle",
+ "24-UB02"
+ ],
+ [
+ 882,
+ "Jupiter All-Weather Trainer ",
+ "MJ06-S-Purple"
+ ],
+ [
+ 922,
+ "Bruno Compete Hoodie",
+ "MH03-XL-Black"
+ ],
+ [
+ 924,
+ "Proteus Fitness Jackshirt",
+ "MJ12-S-Orange"
+ ],
+ [
+ 926,
+ "Circe Hooded Ice Fleece",
+ "WH12-M-Purple"
+ ],
+ [
+ 928,
+ "Zing Jump Rope",
+ "24-UG04"
+ ],
+ [
+ 929,
+ "Breathe-Easy Tank",
+ "WT09-M-Purple"
+ ],
+ [
+ 931,
+ "Echo Fit Compression Short",
+ "WSH07-28-Blue"
+ ],
+ [
+ 933,
+ "Autumn Pullie",
+ "WH03-L-Purple"
+ ],
+ [
+ 935,
+ "Nona Fitness Tank",
+ "WT04-XS-Red"
+ ],
+ [
+ 937,
+ "Carina Basic Capri",
+ "WP09-28-Black"
+ ],
+ [
+ 939,
+ "Josie Yoga Jacket",
+ "WJ02-S-Blue"
+ ],
+ [
+ 948,
+ "Rival Field Messenger",
+ "24-MB06"
+ ],
+ [
+ 950,
+ "Sprite Stasis Ball 55 cm",
+ "24-WG081-blue"
+ ],
+ [
+ 951,
+ "Viktor LumaTech™ Pant",
+ "MP02-36-Gray"
+ ],
+ [
+ 971,
+ "Ajax Full-Zip Sweatshirt ",
+ "MH12-S-Blue"
+ ],
+ [
+ 973,
+ "Viktor LumaTech™ Pant",
+ "MP02-33-Gray"
+ ],
+ [
+ 975,
+ "Supernova Sport Pant",
+ "MP04-36-Black"
+ ],
+ [
+ 977,
+ "Ariel Roll Sleeve Sweatshirt",
+ "WH09-L-Purple"
+ ],
+ [
+ 979,
+ "Overnight Duffle",
+ "24-WB07"
+ ],
+ [
+ 1037,
+ "Daria Bikram Pant",
+ "WP10-28-Black"
+ ],
+ [
+ 1040,
+ "Caesar Warm-Up Pant",
+ "MP01-33-Black"
+ ],
+ [
+ 1042,
+ "Sahara Leggings",
+ "WP05-28-Blue"
+ ],
+ [
+ 1044,
+ "Deion Long-Sleeve EverCool™ Tee",
+ "MS07-S-Green"
+ ],
+ [
+ 1115,
+ "Leah Yoga Top",
+ "WT05-XS-Purple"
+ ],
+ [
+ 1117,
+ "Hera Pullover Hoodie",
+ "WH02-XS-Green"
+ ],
+ [
+ 1119,
+ "Mars HeatTech™ Pullover",
+ "MJ10-XL-Red"
+ ],
+ [
+ 1141,
+ "Ajax Full-Zip Sweatshirt ",
+ "MH12-XL-Blue"
+ ],
+ [
+ 1143,
+ "Hera Pullover Hoodie",
+ "WH02-M-Green"
+ ],
+ [
+ 1145,
+ "Jupiter All-Weather Trainer ",
+ "MJ06-XS-Blue"
+ ],
+ [
+ 1147,
+ "Zing Jump Rope",
+ "24-UG04"
+ ],
+ [
+ 1148,
+ "Abominable Hoodie",
+ "MH09-S-Red"
+ ],
+ [
+ 1177,
+ "Stark Fundamental Hoodie",
+ "MH06-XS-Blue"
+ ],
+ [
+ 1179,
+ "Zoe Tank",
+ "WT02-XS-Green"
+ ],
+ [
+ 1181,
+ "Caesar Warm-Up Pant",
+ "MP01-32-Gray"
+ ],
+ [
+ 1183,
+ "Mars HeatTech™ Pullover",
+ "MJ10-XS-Black"
+ ],
+ [
+ 1185,
+ "Ajax Full-Zip Sweatshirt ",
+ "MH12-L-Red"
+ ],
+ [
+ 1295,
+ "Josie Yoga Jacket",
+ "WJ02-XS-Black"
+ ],
+ [
+ 1297,
+ "Lando Gym Jacket",
+ "MJ08-L-Blue"
+ ],
+ [
+ 1299,
+ "Sprite Stasis Ball 75 cm",
+ "24-WG083-pink"
+ ],
+ [
+ 1300,
+ "Helios Endurance Tank",
+ "MT04-M-Blue"
+ ],
+ [
+ 1394,
+ "Sprite Yoga Strap 10 foot",
+ "24-WG087"
+ ],
+ [
+ 1395,
+ "Deirdre Relaxed-Fit Capri",
+ "WP12-29-Green"
+ ],
+ [
+ 1397,
+ "Sol Active Short",
+ "MSH10-36-Green"
+ ],
+ [
+ 1399,
+ "Lando Gym Jacket",
+ "MJ08-M-Green"
+ ],
+ [
+ 1405,
+ "Lucia Cross-Fit Bra ",
+ "WB05-M-Purple"
+ ],
+ [
+ 1407,
+ "Breathe-Easy Tank",
+ "WT09-XS-White"
+ ],
+ [
+ 1409,
+ "Marco Lightweight Active Hoodie",
+ "MH13-XS-Green"
+ ],
+ [
+ 1411,
+ "Jupiter All-Weather Trainer ",
+ "MJ06-XL-Green"
+ ],
+ [
+ 1447,
+ "Fiona Fitness Short",
+ "WSH01-29-Red"
+ ],
+ [
+ 1449,
+ "Sparta Gym Tank",
+ "MT08-M-Green"
+ ],
+ [
+ 1451,
+ "Circe Hooded Ice Fleece",
+ "WH12-L-Green"
+ ],
+ [
+ 1453,
+ "Sprite Stasis Ball 75 cm",
+ "24-WG083-pink"
+ ],
+ [
+ 1454,
+ "Helena Hooded Fleece",
+ "WH10-M-Blue"
+ ],
+ [
+ 1505,
+ "Proteus Fitness Jackshirt",
+ "MJ12-M-Black"
+ ],
+ [
+ 1507,
+ "Grayson Crewneck Sweatshirt ",
+ "MH11-XL-Red"
+ ],
+ [
+ 1509,
+ "Fiona Fitness Short",
+ "WSH01-30-Black"
+ ],
+ [
+ 1511,
+ "Orion Two-Tone Fitted Jacket",
+ "MJ07-XL-Black"
+ ],
+ [
+ 1565,
+ "Argus All-Weather Tank",
+ "MT07-M-Gray"
+ ],
+ [
+ 1567,
+ "Marco Lightweight Active Hoodie",
+ "MH13-S-Green"
+ ],
+ [
+ 1569,
+ "Tiffany Fitness Tee",
+ "WS09-XL-Blue"
+ ],
+ [
+ 1571,
+ "Nadia Elements Shell",
+ "WJ10-XS-Yellow"
+ ],
+ [
+ 1573,
+ "Gwen Drawstring Bike Short",
+ "WSH03-28-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute code 'vat_id'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'vat_id';",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders completed on 2023-01-09.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-01-09' AND order_status = 'complete';",
+ "answer": [
+ "238.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "238.4000"
+ ],
+ [
+ "238.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product options for the Arcadio Gym Short.",
+ "sql": "SELECT product_options FROM sales_order_item WHERE sku = 'MSH11-32-Red';",
+ "answer": [
+ "Color: Red",
+ "Size: 32"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"info_buyRequest\":{\"super_attribute\":{\"93\":\"58\",\"144\":\"175\"},\"qty\":\"1.0000\"},\"attributes_info\":[{\"label\":\"Color\",\"value\":\"Red\",\"option_id\":93,\"option_value\":\"58\"},{\"label\":\"Size\",\"value\":\"32\",\"option_id\":144,\"option_value\":\"175\"}],\"simple_name\":\"Arcadio Gym Short-32-Red\",\"simple_sku\":\"MSH11-32-Red\",\"product_calculations\":1,\"shipment_type\":0}"
+ ],
+ [
+ "{\"info_buyRequest\":{\"super_attribute\":{\"93\":\"58\",\"144\":\"175\"},\"qty\":1}}"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the store with code 'admin' is active.",
+ "sql": "SELECT is_active FROM store WHERE code = 'admin';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the attribute ID for 'thumbnail_label'.",
+ "sql": "SELECT attribute_id FROM eav_attribute WHERE attribute_code = 'thumbnail_label';",
+ "answer": [
+ "111"
+ ],
+ "sql_execute_result": [
+ [
+ 111
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the store with ID 1 on 2022-02-04.",
+ "sql": "SELECT id, order_status FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-02-04';",
+ "answer": [
+ "831",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ 831,
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the value for the option ID 178.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 178;",
+ "answer": [
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ "36"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000097'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000097';",
+ "answer": [
+ "204.0400"
+ ],
+ "sql_execute_result": [
+ [
+ "204.0400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'alex.martin@gmail.com'?",
+ "sql": "SELECT increment_id, status, grand_total FROM sales_order_grid WHERE customer_email = 'alex.martin@gmail.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "000000023",
+ "complete",
+ "65.0000"
+ ],
+ [
+ "000000030",
+ "canceled",
+ "67.0000"
+ ],
+ [
+ "000000035",
+ "complete",
+ "177.0000"
+ ],
+ [
+ "000000063",
+ "canceled",
+ "196.0000"
+ ],
+ [
+ "000000165",
+ "canceled",
+ "202.6000"
+ ],
+ [
+ "000000173",
+ "canceled",
+ "94.2000"
+ ],
+ [
+ "000000177",
+ "canceled",
+ "76.0000"
+ ],
+ [
+ "000000191",
+ "canceled",
+ "95.0000"
+ ],
+ [
+ "000000238",
+ "complete",
+ "171.0000"
+ ],
+ [
+ "000000240",
+ "complete",
+ "57.0000"
+ ],
+ [
+ "000000268",
+ "complete",
+ "179.0000"
+ ],
+ [
+ "000000298",
+ "complete",
+ "84.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price of the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity_id 1386?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1386 AND attribute_id = 75 AND store_id = 0;",
+ "answer": [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were included in the invoice with sequence value 1?",
+ "sql": "SELECT COUNT(*) FROM sales_invoice_item WHERE parent_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with increment ID '000000045'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000045';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with customer ID 13 and increment ID '000000010'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE customer_id = 13 AND increment_id = '000000010';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the order item with ID 1.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE item_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the base price included tax for the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for the order with ID 115?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 115;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the bestseller on 2022-09-02 with product ID 29.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-09-02' AND product_id = 29;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total amount for the invoice with ID 1?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000061'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000061';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with customer email 'roni_cost@example.com'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ],
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for order with customer name 'John Doe'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE customer_name = 'John Doe';",
+ "answer": [
+ "53.0000",
+ "204.2500",
+ "105.4000",
+ "71.0000",
+ "163.0000",
+ "136.9900",
+ "208.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "53.0000"
+ ],
+ [
+ "204.2500"
+ ],
+ [
+ "105.4000"
+ ],
+ [
+ "71.0000"
+ ],
+ [
+ "163.0000"
+ ],
+ [
+ "136.9900"
+ ],
+ [
+ "208.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the payment with entity ID 206?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 206;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Layla Tee-XS-Green' sold on 2023-01-13.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Layla Tee-XS-Green' AND period = '2023-01-13';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the invoice with increment ID '000000002'?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for customer 'Olivia Lee'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Olivia Lee';",
+ "answer": [
+ "789 Main Street Houston Texas 77002"
+ ],
+ "sql_execute_result": [
+ [
+ "789 Main Street Houston Texas 77002"
+ ]
+ ]
+ },
+ {
+ "question": "Find all customers located in Denver, Colorado.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_city = 'Denver' AND billing_region = 'Colorado';",
+ "answer": [
+ "Lucy Garcia",
+ "Jason Miller",
+ "Olivia Jackson",
+ "Nathan Chen"
+ ],
+ "sql_execute_result": [
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Nathan Chen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'paypal_canceled_reversal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 898?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 898 AND attribute_id = 77;",
+ "answer": [
+ "32.500000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.500000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for attribute option with ID 184?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 184;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many customer emails were created in 'Default Store View'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest shipment?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for customer 'Jennifer White'.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Jennifer White';",
+ "answer": [
+ "2137418080"
+ ],
+ "sql_execute_result": [
+ [
+ "2137418080"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 487?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 487 AND attribute_id = 77;",
+ "answer": [
+ "28.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "28.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of customers created on 2023-04-23.",
+ "sql": "SELECT COUNT(*) FROM customer_grid_flat WHERE DATE(created_at) = '2023-04-23';",
+ "answer": [
+ "34"
+ ],
+ "sql_execute_result": [
+ [
+ 34
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the 'Prima Compete Bra Top-XL-Yellow' product?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Prima Compete Bra Top-XL-Yellow';",
+ "answer": [
+ "24.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.0000"
+ ],
+ [
+ "24.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category ID for the product with ID 1712.",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1712;",
+ "answer": [
+ "26",
+ "8",
+ "34",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 26
+ ],
+ [
+ 8
+ ],
+ [
+ 34
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the 'Quality' rating in the storefront?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with ID 1 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 1;",
+ "answer": [
+ "39"
+ ],
+ "sql_execute_result": [
+ [
+ 39
+ ]
+ ]
+ },
+ {
+ "question": "Find all ratings that are active.",
+ "sql": "SELECT rating_id, rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "Quality"
+ ],
+ [
+ 2,
+ "Value"
+ ],
+ [
+ 3,
+ "Price"
+ ],
+ [
+ 4,
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name of the best-selling product with ID 134 for the year 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 134 AND period = '2023-01-01';",
+ "answer": [
+ "Stark Fundamental Hoodie-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Stark Fundamental Hoodie-M-Blue"
+ ],
+ [
+ "Stark Fundamental Hoodie-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Which store ID has the 'Atomic Endurance Running Tee (Crew-Neck)-S-Blue' product been ordered from?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Atomic Endurance Running Tee (Crew-Neck)-S-Blue';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the path of the category with ID 40?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 40;",
+ "answer": [
+ "1/2/7/40"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/7/40"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity ID of the category with path '1/2/7/35'.",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE path = '1/2/7/35';",
+ "answer": [
+ "35"
+ ],
+ "sql_execute_result": [
+ [
+ 35
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating with ID 4?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "Troy Yoga Short",
+ "Troy Yoga Short-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are under the category with ID 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "240"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been canceled?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 142
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Main Website Store' group?",
+ "sql": "SELECT COUNT(*) FROM catalog_product_entity WHERE attribute_set_id = (SELECT root_category_id FROM store_group WHERE name = 'Main Website Store');",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with entity ID 1492?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1492;",
+ "answer": [
+ "9.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "9.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are in the country with ID 'LV'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'LV';",
+ "answer": [
+ "120"
+ ],
+ "sql_execute_result": [
+ [
+ "Daugavpils"
+ ],
+ [
+ "Jelgava"
+ ],
+ [
+ "J\u0113kabpils"
+ ],
+ [
+ "J\u016brmala"
+ ],
+ [
+ "Liep\u0101ja"
+ ],
+ [
+ "Liep\u0101jas novads"
+ ],
+ [
+ "R\u0113zekne"
+ ],
+ [
+ "R\u012bga"
+ ],
+ [
+ "R\u012bgas novads"
+ ],
+ [
+ "Valmiera"
+ ],
+ [
+ "Ventspils"
+ ],
+ [
+ "Aglonas novads"
+ ],
+ [
+ "Aizkraukles novads"
+ ],
+ [
+ "Aizputes novads"
+ ],
+ [
+ "Akn\u012bstes novads"
+ ],
+ [
+ "Alojas novads"
+ ],
+ [
+ "Alsungas novads"
+ ],
+ [
+ "Al\u016bksnes novads"
+ ],
+ [
+ "Amatas novads"
+ ],
+ [
+ "Apes novads"
+ ],
+ [
+ "Auces novads"
+ ],
+ [
+ "Bab\u012btes novads"
+ ],
+ [
+ "Baldones novads"
+ ],
+ [
+ "Baltinavas novads"
+ ],
+ [
+ "Balvu novads"
+ ],
+ [
+ "Bauskas novads"
+ ],
+ [
+ "Bever\u012bnas novads"
+ ],
+ [
+ "Broc\u0113nu novads"
+ ],
+ [
+ "Burtnieku novads"
+ ],
+ [
+ "Carnikavas novads"
+ ],
+ [
+ "Cesvaines novads"
+ ],
+ [
+ "Ciblas novads"
+ ],
+ [
+ "C\u0113su novads"
+ ],
+ [
+ "Dagdas novads"
+ ],
+ [
+ "Daugavpils novads"
+ ],
+ [
+ "Dobeles novads"
+ ],
+ [
+ "Dundagas novads"
+ ],
+ [
+ "Durbes novads"
+ ],
+ [
+ "Engures novads"
+ ],
+ [
+ "Garkalnes novads"
+ ],
+ [
+ "Grobi\u0146as novads"
+ ],
+ [
+ "Gulbenes novads"
+ ],
+ [
+ "Iecavas novads"
+ ],
+ [
+ "Ik\u0161\u0137iles novads"
+ ],
+ [
+ "Il\u016bkstes novads"
+ ],
+ [
+ "In\u010dukalna novads"
+ ],
+ [
+ "Jaunjelgavas novads"
+ ],
+ [
+ "Jaunpiebalgas novads"
+ ],
+ [
+ "Jaunpils novads"
+ ],
+ [
+ "Jelgavas novads"
+ ],
+ [
+ "J\u0113kabpils novads"
+ ],
+ [
+ "Kandavas novads"
+ ],
+ [
+ "Kokneses novads"
+ ],
+ [
+ "Krimuldas novads"
+ ],
+ [
+ "Krustpils novads"
+ ],
+ [
+ "Kr\u0101slavas novads"
+ ],
+ [
+ "Kuld\u012bgas novads"
+ ],
+ [
+ "K\u0101rsavas novads"
+ ],
+ [
+ "Lielv\u0101rdes novads"
+ ],
+ [
+ "Limba\u017eu novads"
+ ],
+ [
+ "Lub\u0101nas novads"
+ ],
+ [
+ "Ludzas novads"
+ ],
+ [
+ "L\u012bgatnes novads"
+ ],
+ [
+ "L\u012bv\u0101nu novads"
+ ],
+ [
+ "Madonas novads"
+ ],
+ [
+ "Mazsalacas novads"
+ ],
+ [
+ "M\u0101lpils novads"
+ ],
+ [
+ "M\u0101rupes novads"
+ ],
+ [
+ "Nauk\u0161\u0113nu novads"
+ ],
+ [
+ "Neretas novads"
+ ],
+ [
+ "N\u012bcas novads"
+ ],
+ [
+ "Ogres novads"
+ ],
+ [
+ "Olaines novads"
+ ],
+ [
+ "Ozolnieku novads"
+ ],
+ [
+ "Prei\u013cu novads"
+ ],
+ [
+ "Priekules novads"
+ ],
+ [
+ "Prieku\u013cu novads"
+ ],
+ [
+ "P\u0101rgaujas novads"
+ ],
+ [
+ "P\u0101vilostas novads"
+ ],
+ [
+ "P\u013cavi\u0146u novads"
+ ],
+ [
+ "Raunas novads"
+ ],
+ [
+ "Riebi\u0146u novads"
+ ],
+ [
+ "Rojas novads"
+ ],
+ [
+ "Ropa\u017eu novads"
+ ],
+ [
+ "Rucavas novads"
+ ],
+ [
+ "Rug\u0101ju novads"
+ ],
+ [
+ "Rund\u0101les novads"
+ ],
+ [
+ "R\u0113zeknes novads"
+ ],
+ [
+ "R\u016bjienas novads"
+ ],
+ [
+ "Salacgr\u012bvas novads"
+ ],
+ [
+ "Salas novads"
+ ],
+ [
+ "Salaspils novads"
+ ],
+ [
+ "Saldus novads"
+ ],
+ [
+ "Saulkrastu novads"
+ ],
+ [
+ "Siguldas novads"
+ ],
+ [
+ "Skrundas novads"
+ ],
+ [
+ "Skr\u012bveru novads"
+ ],
+ [
+ "Smiltenes novads"
+ ],
+ [
+ "Stopi\u0146u novads"
+ ],
+ [
+ "Stren\u010du novads"
+ ],
+ [
+ "S\u0113jas novads"
+ ],
+ [
+ "Talsu novads"
+ ],
+ [
+ "Tukuma novads"
+ ],
+ [
+ "T\u0113rvetes novads"
+ ],
+ [
+ "Vai\u0146odes novads"
+ ],
+ [
+ "Valkas novads"
+ ],
+ [
+ "Valmieras novads"
+ ],
+ [
+ "Varak\u013c\u0101nu novads"
+ ],
+ [
+ "Vecpiebalgas novads"
+ ],
+ [
+ "Vecumnieku novads"
+ ],
+ [
+ "Ventspils novads"
+ ],
+ [
+ "Vies\u012btes novads"
+ ],
+ [
+ "Vi\u013cakas novads"
+ ],
+ [
+ "Vi\u013c\u0101nu novads"
+ ],
+ [
+ "V\u0101rkavas novads"
+ ],
+ [
+ "Zilupes novads"
+ ],
+ [
+ "\u0100da\u017eu novads"
+ ],
+ [
+ "\u0112rg\u013cu novads"
+ ],
+ [
+ "\u0136eguma novads"
+ ],
+ [
+ "\u0136ekavas novads"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for orders in store ID 1?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Nadia Elements Shell-M-Black'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WJ10-M-Black';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WB03-M-Red'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WB03-M-Red';",
+ "answer": [
+ "Celeste Sports Bra",
+ "Celeste Sports Bra-M-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Celeste Sports Bra"
+ ],
+ [
+ "Celeste Sports Bra-M-Red"
+ ],
+ [
+ "Celeste Sports Bra"
+ ],
+ [
+ "Celeste Sports Bra-M-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Which website has the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for entity ID 717 in the catalog?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 717 AND attribute_id = 73;",
+ "answer": [
+ "Atlas Fitness Tank-XL-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Atlas Fitness Tank-XL-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been created for order ID 300?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for item ID 45 in the sales order items?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 45;",
+ "answer": [
+ "MP08-33-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MP08-33-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for order ID 1.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for invoices in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 1;",
+ "answer": [
+ "sequence_invoice_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_1"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the description 'tristan-endurance-tank-l-gray'?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE value = 'tristan-endurance-tank-l-gray' AND attribute_id = 121;",
+ "answer": [
+ "tristan-endurance-tank-l-gray"
+ ],
+ "sql_execute_result": [
+ [
+ "tristan-endurance-tank-l-gray"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the ID 44?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 44;",
+ "answer": [
+ "roberto.lopez@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roberto.lopez@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with the email 'customer34@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = (SELECT entity_id FROM customer_entity WHERE email = 'brian@example.com');",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity ID 5?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 5;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total of all orders placed by the customer with the last name 'Doe'?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE customer_id IN (SELECT entity_id FROM customer_entity WHERE lastname = 'Doe');",
+ "answer": [
+ "2576.3600"
+ ],
+ "sql_execute_result": [
+ [
+ "2576.3600"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000123'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000123';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many items have been refunded for the order with entity ID 308?",
+ "sql": "SELECT SUM(qty_refunded) FROM sales_order_item WHERE order_id = 308;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the sales order with entity ID 308?",
+ "sql": "SELECT created_at FROM sales_order WHERE entity_id = 308;",
+ "answer": [
+ "2023-04-19 23:42:37"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 23:42:37"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total discount amount for sales order with increment ID '000000308'.",
+ "sql": "SELECT discount_amount FROM sales_order WHERE increment_id = '000000308';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1771?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1771;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews were found for store ID 1?",
+ "sql": "SELECT title, nickname FROM review_detail WHERE store_id = 1;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ "I prefer more compartments",
+ "Chi"
+ ],
+ [
+ "I use it a lot ",
+ "Filiberto"
+ ],
+ [
+ "I've had this thing for really long",
+ "Herb"
+ ],
+ [
+ "Decent bag",
+ "Craig"
+ ],
+ [
+ "Screwed up my back",
+ "Orville"
+ ],
+ [
+ "Awesome bag",
+ "Marty"
+ ],
+ [
+ "The back needs more padding",
+ "Chase"
+ ],
+ [
+ "I bought this backpack for my son",
+ "Kennith"
+ ],
+ [
+ "awesome for going back and forth",
+ "Gaston"
+ ],
+ [
+ "comfy and i don't feel like a loser",
+ "Issac"
+ ],
+ [
+ "The shoulder strap broke ",
+ "Daren"
+ ],
+ [
+ "Good for work. Holds everything ",
+ "Garry"
+ ],
+ [
+ "Great bag! I use it for everything! ",
+ "Quinn"
+ ],
+ [
+ "This bag is really cool",
+ "Jame"
+ ],
+ [
+ "Color is weird",
+ "Adalberto"
+ ],
+ [
+ "I am OBSESSED with these",
+ "Refugio"
+ ],
+ [
+ "This thing is awesome ",
+ "Jewel"
+ ],
+ [
+ "It slides around on my wrist",
+ "Brice"
+ ],
+ [
+ "Working flawlessly",
+ "Billy"
+ ],
+ [
+ "offers a lot of technology",
+ "Marc"
+ ],
+ [
+ "Hydration alarm",
+ "Luther"
+ ],
+ [
+ "It works ok but the ugliness is blinding",
+ "Leon"
+ ],
+ [
+ "Watch too tight",
+ "Max"
+ ],
+ [
+ "No ticktock",
+ "Chuck"
+ ],
+ [
+ "Not a bad watch for the price",
+ "Robert"
+ ],
+ [
+ "the only watch I wear",
+ "Noe"
+ ],
+ [
+ "Dual time zone settings",
+ "Frank"
+ ],
+ [
+ "Really perfect for travel ",
+ "Jamie"
+ ],
+ [
+ "I really like the modern look",
+ "Bobby"
+ ],
+ [
+ "This watch is so tight",
+ "Tommie"
+ ],
+ [
+ "My favorite layers",
+ "Markus"
+ ],
+ [
+ "Weird looking pocket",
+ "Xavier"
+ ],
+ [
+ "Perfect layer for the game",
+ "Mike"
+ ],
+ [
+ "The fabric is great",
+ "Emory"
+ ],
+ [
+ "This jacket isn't keeping me warm",
+ "Jon"
+ ],
+ [
+ "I don't feel protected",
+ "Homer"
+ ],
+ [
+ "avid hiker/snowboarder",
+ "Wilbur"
+ ],
+ [
+ "Has never let me down",
+ "Long"
+ ],
+ [
+ "Practically perferct",
+ "Lindsay"
+ ],
+ [
+ "Excellent quality. I actually love",
+ "Randell"
+ ],
+ [
+ "I just live for this track jacket",
+ "Wyatt"
+ ],
+ [
+ "Not 100% sure how I feel",
+ "Glen"
+ ],
+ [
+ "fleece lining",
+ "Shon"
+ ],
+ [
+ "I didn't think it was that warm",
+ "Neal"
+ ],
+ [
+ "for my son to wear to school ",
+ "Herschel"
+ ],
+ [
+ "Kinda bulky",
+ "Rudolf"
+ ],
+ [
+ "easy to take apart",
+ "Emmett"
+ ],
+ [
+ "does everything it's suppose",
+ "Burl"
+ ],
+ [
+ "Love it; don't have to take off gloves",
+ "Carol"
+ ],
+ [
+ "Wish buttons were on sleeve",
+ "Ronald"
+ ],
+ [
+ "Great on my evening ride",
+ "Arden"
+ ],
+ [
+ "Loop thing broke",
+ "Jessie"
+ ],
+ [
+ "They chafed me!",
+ "Rashad"
+ ],
+ [
+ "They are comfy",
+ "Barrett"
+ ],
+ [
+ "Saggy pants",
+ "Davis"
+ ],
+ [
+ "These are really bulky",
+ "Donte"
+ ],
+ [
+ "Inseam is WAY too long",
+ "Reyes"
+ ],
+ [
+ "Keeping me warm before games",
+ "Harold"
+ ],
+ [
+ "There's nothing to dislike",
+ "Darius"
+ ],
+ [
+ "The mesh lining sometimes snags",
+ "Armando"
+ ],
+ [
+ "These are great!",
+ "Hershel"
+ ],
+ [
+ "I bought these for my man.",
+ "Hans"
+ ],
+ [
+ "I like them",
+ "Kenny"
+ ],
+ [
+ "THESE PANTS KEEP ME WARM",
+ "Nicky"
+ ],
+ [
+ "Good dog walking pants",
+ "Mark"
+ ],
+ [
+ "The draw string is more like half a draw",
+ "Margarito"
+ ],
+ [
+ "I got this for running",
+ "Tyree"
+ ],
+ [
+ "Nice and light. ",
+ "Weston"
+ ],
+ [
+ "I bought 5 of the same color!",
+ "Jude"
+ ],
+ [
+ "my new favorite CrossFit shirt",
+ "Leigh"
+ ],
+ [
+ "Works for the gym",
+ "Roland"
+ ],
+ [
+ "I like the crew neck",
+ "Edison"
+ ],
+ [
+ "Hate the fabric",
+ "Hai"
+ ],
+ [
+ "Ready to hit the gym",
+ "Cletus"
+ ],
+ [
+ "Too small ",
+ "Gustavo"
+ ],
+ [
+ "it says moisturewicking?",
+ "Filiberto"
+ ],
+ [
+ "This shirt is a dream come true",
+ "Nathan"
+ ],
+ [
+ "Awesome tee! Not cheap.",
+ "Darwin"
+ ],
+ [
+ "Liked the way it fit mostly",
+ "Jonas"
+ ],
+ [
+ "Keeps me cool",
+ "Warren"
+ ],
+ [
+ "Gets the job done. Even when I'm pouring",
+ "Jerome"
+ ],
+ [
+ "I sweat SO much.",
+ "Alfonzo"
+ ],
+ [
+ "This shirt is too tight and too thin.",
+ "Sergio"
+ ],
+ [
+ "Great training top. ",
+ "Donnell"
+ ],
+ [
+ "I love this shirt. Perfect fit",
+ "Erwin"
+ ],
+ [
+ "Comfortable and soft",
+ "Don"
+ ],
+ [
+ "It's okay, a little boring. ",
+ "Maynard"
+ ],
+ [
+ "Very comfy but wears thin",
+ "Hiram"
+ ],
+ [
+ "I've lost 50 pounds in 5 months",
+ "Darwin"
+ ],
+ [
+ "Fell apart in wash",
+ "Chung"
+ ],
+ [
+ "Fantastic shirt for the price!",
+ "Jae"
+ ],
+ [
+ "Luma got it right with this one.",
+ "Alfred"
+ ],
+ [
+ "Ripped the FIRST TIME I wore ",
+ "Carlo"
+ ],
+ [
+ "Really comfy shirt",
+ "Gus"
+ ],
+ [
+ "I work out a lot",
+ "Harry"
+ ],
+ [
+ "Nice fit and fabric",
+ "Damon"
+ ],
+ [
+ "I purchased this tank top for my son",
+ "Duncan"
+ ],
+ [
+ "Yea. This pilled imeddiately",
+ "Wendell"
+ ],
+ [
+ "Why can't you make this in my size?",
+ "Harold"
+ ],
+ [
+ "Wear this on evening runs",
+ "Kasey"
+ ],
+ [
+ "Great for baoting ",
+ "Manual"
+ ],
+ [
+ "These do drain well",
+ "Milton"
+ ],
+ [
+ "They work great in water",
+ "Antwan"
+ ],
+ [
+ "The only things I care about when I'm ru",
+ "Lamont"
+ ],
+ [
+ "Great! I wear these almost every day-esp",
+ "Gerald"
+ ],
+ [
+ "These sit in my foyer waiting for my eve",
+ "Ike"
+ ],
+ [
+ "Running in these are imPOSSible!! I only",
+ "Hugh"
+ ],
+ [
+ "Pretty average cts. Their comfrtable whe",
+ "Judson"
+ ],
+ [
+ "I wear these to my gym daily. I go hard ",
+ "Carlo"
+ ],
+ [
+ "Love, love, love - did I say love? It wa",
+ "Jerold"
+ ],
+ [
+ "I slipped on a rock on these shoes and I",
+ "Ezra"
+ ],
+ [
+ "The only thing I don't like about these ",
+ "Simon"
+ ],
+ [
+ "These are really good to play tennis in ",
+ "Noah"
+ ],
+ [
+ "I wore these until they finally gave out",
+ "Joey"
+ ],
+ [
+ "How awesome is it to find a product that",
+ "King"
+ ],
+ [
+ "I wouldn't be a runner if it wasn't for ",
+ "Irwin"
+ ],
+ [
+ "I wear these for a variety of sports and",
+ "Monroe"
+ ],
+ [
+ "Awesome shoes!! I didn't realize how muc",
+ "Josh"
+ ],
+ [
+ "They ran too narrow for me and the mater",
+ "Leslie"
+ ],
+ [
+ "These are really REALLY LIGHT! Not much ",
+ "Jody"
+ ],
+ [
+ "Not great on slippery grass. I wear them",
+ "Chad"
+ ],
+ [
+ "I used these as racing flats and they we",
+ "Anibal"
+ ],
+ [
+ "Unflattering",
+ "Dominic"
+ ],
+ [
+ "Keeps me comfortable",
+ "Mervin"
+ ],
+ [
+ "Nothing to write home about",
+ "Trey"
+ ],
+ [
+ "Average tank",
+ "Edmund"
+ ],
+ [
+ "NOT for skinny dudes ",
+ "Tracey"
+ ],
+ [
+ "Keeps me feeling dry",
+ "Archie"
+ ],
+ [
+ "I feel awesome when I wear this",
+ "Eldon"
+ ],
+ [
+ "Comfortable",
+ "Joey"
+ ],
+ [
+ "I bought a few of these for my husband. ",
+ "Matthew"
+ ],
+ [
+ "TINY neck hole??",
+ "Monroe"
+ ],
+ [
+ "Shirt can stink after",
+ "Scotty"
+ ],
+ [
+ "Wish it was longer",
+ "Alexander"
+ ],
+ [
+ "Razorback version?",
+ "Graham"
+ ],
+ [
+ "Fits true to size, feels great.",
+ "Patrick"
+ ],
+ [
+ "I bought this bag for my daughter",
+ "Shella"
+ ],
+ [
+ "Goes everywhere with me",
+ "Crissy"
+ ],
+ [
+ "The material is a little thin",
+ "Alene"
+ ],
+ [
+ "OBSESSED with this!",
+ "Cliff"
+ ],
+ [
+ "Great but pricey",
+ "Fiona"
+ ],
+ [
+ "I hate working out...This does not help.",
+ "Ardith"
+ ],
+ [
+ "Want more resistance",
+ "Randy"
+ ],
+ [
+ "Agreed. More resistance",
+ "Keren"
+ ],
+ [
+ "Too lazy to go to gym",
+ "Madeleine"
+ ],
+ [
+ "Do not buy!",
+ "Ricky"
+ ],
+ [
+ "They work, nothing special. ",
+ "Krystle"
+ ],
+ [
+ "Good value for the price",
+ "Lavonia"
+ ],
+ [
+ "I BRING THIS TO ALL MY MEETS!",
+ "Andy"
+ ],
+ [
+ "perfect for when I'm too lazy",
+ "Orville"
+ ],
+ [
+ "PURPLES",
+ "Toya"
+ ],
+ [
+ "these are ok",
+ "Johanne"
+ ],
+ [
+ "Will whip you into shape!",
+ "Ashlea"
+ ],
+ [
+ "Easy to clean",
+ "Olimpia"
+ ],
+ [
+ "Perfect weight",
+ "Danielle"
+ ],
+ [
+ "should've got a while ago",
+ "Keith"
+ ],
+ [
+ "I love this bag! It's cute",
+ "Dodie"
+ ],
+ [
+ "I pack a TON of stuff",
+ "Tara"
+ ],
+ [
+ "Wish there were pockets ",
+ "Chasidy"
+ ],
+ [
+ "Motivated by this Bag!",
+ "Tamisha"
+ ],
+ [
+ "Wish it had more pocket",
+ "Lidia"
+ ],
+ [
+ "Fits tons of gear",
+ "Elizabeth"
+ ],
+ [
+ "ok bag for a day's hike",
+ "Sueann"
+ ],
+ [
+ "I bike four miles a day to work and back",
+ "Sadye"
+ ],
+ [
+ "I would love this bag EXCEPT . . .",
+ "Adena"
+ ],
+ [
+ "it's really ugly,",
+ "Tracee"
+ ],
+ [
+ "What's not to like about this bag?!!",
+ "Anglea"
+ ],
+ [
+ "Did I get floor model?",
+ "Lasandra"
+ ],
+ [
+ "I bought this backpack for my daughter",
+ "Francesca"
+ ],
+ [
+ "I heart this backpack so hard. ",
+ "Susy"
+ ],
+ [
+ "Can I give zero stars?",
+ "Ingeborg"
+ ],
+ [
+ "Um, not actually waterproof",
+ "Aiko"
+ ],
+ [
+ "A roomy duffle",
+ "Dollie"
+ ],
+ [
+ "doesn't hold that much",
+ "Caroyln"
+ ],
+ [
+ "Good bank for small hand",
+ "Desiree"
+ ],
+ [
+ "Super sleek, love it. ",
+ "Cecelia"
+ ],
+ [
+ "My mom loves it",
+ "Natosha"
+ ],
+ [
+ "Not classical but cool",
+ "Pok"
+ ],
+ [
+ "Buckle BROKE",
+ "Grace"
+ ],
+ [
+ "It died after a week",
+ "Nadia"
+ ],
+ [
+ "The strap broke",
+ "Laronda"
+ ],
+ [
+ "Pieces kept coming off",
+ "Colleen"
+ ],
+ [
+ "Keeps excellent time and is pretty tough",
+ "Denese"
+ ],
+ [
+ "Has been through quite a few adventures ",
+ "Joette"
+ ],
+ [
+ "Rides up during workouts",
+ "Gala"
+ ],
+ [
+ "Great for cooler runs. ",
+ "Shonta"
+ ],
+ [
+ "I literally wear this everywhere",
+ "Kathrine"
+ ],
+ [
+ "I can't get enough of this hoodie",
+ "Olene"
+ ],
+ [
+ "Not really flattering",
+ "Scarlet"
+ ],
+ [
+ "Softest hoodie ever",
+ "Martina"
+ ],
+ [
+ "The fabric stains easily",
+ "Elly"
+ ],
+ [
+ "I wear it to class",
+ "Temeka"
+ ],
+ [
+ "Zipper is goofy",
+ "Julieann"
+ ],
+ [
+ "Needs long sleeves please",
+ "Louisa"
+ ],
+ [
+ "My favorite hoodie",
+ "Joelle"
+ ],
+ [
+ "Not very stylish",
+ "Jonna"
+ ],
+ [
+ "Kept me warm",
+ "Jeanelle"
+ ],
+ [
+ "Great value",
+ "Oma"
+ ],
+ [
+ "Best hoodies I've owned.",
+ "Beatris"
+ ],
+ [
+ "Love it!",
+ "Georgeann"
+ ],
+ [
+ "Fall weather jogs or walks",
+ "Stefany"
+ ],
+ [
+ "Soft but not wrm",
+ "Lilliam"
+ ],
+ [
+ "Ultra comfy",
+ "Sadye"
+ ],
+ [
+ "Pocket too small for mp3",
+ "Rolande"
+ ],
+ [
+ "Fitted, awesome",
+ "Elvina"
+ ],
+ [
+ "Shrinks a lot",
+ "Alesha"
+ ],
+ [
+ "Shrunk right away!",
+ "Tennille"
+ ],
+ [
+ "my new fave zip up",
+ "Lakeesha"
+ ],
+ [
+ "Only shirt I wear anywmore",
+ "Charlyn"
+ ],
+ [
+ "it's so light and really long!",
+ "Regenia"
+ ],
+ [
+ "Wish I'd bought the tshirt",
+ "Juliette"
+ ],
+ [
+ "Fleece inside, sweater outside",
+ "Anamaria"
+ ],
+ [
+ "Great for hiking and camping",
+ "Tiffiny"
+ ],
+ [
+ "Super warm.",
+ "Cara"
+ ],
+ [
+ "This is REALLY comfortable!",
+ "Nadene"
+ ],
+ [
+ "Thumb holes rock!",
+ "Tawny"
+ ],
+ [
+ "REALLY lightweight.",
+ "Illa"
+ ],
+ [
+ "Nice for skiing",
+ "Ela"
+ ],
+ [
+ "Most comfortable jacket",
+ "Kecia"
+ ],
+ [
+ "a little short for me",
+ "Johna"
+ ],
+ [
+ "Square shape",
+ "Jessi"
+ ],
+ [
+ "This is my go-to jacket",
+ "Kellye"
+ ],
+ [
+ "I wear this pretty much every day!",
+ "Marvella"
+ ],
+ [
+ "Horrible unflatterung design",
+ "May"
+ ],
+ [
+ "The actual color is brighter",
+ "Chasidy"
+ ],
+ [
+ "Big back pocket",
+ "Wava"
+ ],
+ [
+ "Everyone loves this jacket on me",
+ "Kristyn"
+ ],
+ [
+ "Rain proof?",
+ "Janna"
+ ],
+ [
+ "Overheated",
+ "Venetta"
+ ],
+ [
+ "Great colors!",
+ "Demetrice"
+ ],
+ [
+ "This is the most dependable piece I own.",
+ "Mathilde"
+ ],
+ [
+ "Not for cold weather",
+ "Eda"
+ ],
+ [
+ "Perfect, perfect, perfect in every way. ",
+ "Denyse"
+ ],
+ [
+ "Awesome bottoms ",
+ "Ashlee"
+ ],
+ [
+ "Great for yoga",
+ "Nyla"
+ ],
+ [
+ "Yoga is for hippees",
+ "Judith"
+ ],
+ [
+ "I can't stop lookin in the mirror! ",
+ "Isadora"
+ ],
+ [
+ "Want more colors",
+ "Isela"
+ ],
+ [
+ "I have 5 pairs",
+ "Dannielle"
+ ],
+ [
+ "These pants move so well!",
+ "Deloise"
+ ],
+ [
+ "Seams separated righth away",
+ "Rosann"
+ ],
+ [
+ "high waistband, no muffin top!",
+ "Lily"
+ ],
+ [
+ "Relaxing",
+ "Brittany"
+ ],
+ [
+ "LOVE, LOVE, LOVE. ",
+ "Brittni"
+ ],
+ [
+ "NOT flattering.",
+ "Pamela"
+ ],
+ [
+ "These are soft and stretchy",
+ "Tarra"
+ ],
+ [
+ "I bought these for yoga",
+ "Lue"
+ ],
+ [
+ "These pants are so cute!",
+ "Mavis"
+ ],
+ [
+ "good for PJs but that's about it",
+ "Kemberly"
+ ],
+ [
+ "These are my favorite pants. ",
+ "Tashina"
+ ],
+ [
+ "Soooooooooooooo light!",
+ "Beverlee"
+ ],
+ [
+ "Cute.",
+ "Latarsha"
+ ],
+ [
+ "I really dig this shirt for races",
+ "Lorena"
+ ],
+ [
+ "This shirt is decent for running",
+ "Allyson"
+ ],
+ [
+ "Wish it was longer",
+ "Chloe"
+ ],
+ [
+ "Fits my large head TG",
+ "Hsiu"
+ ],
+ [
+ "Flatters my big build",
+ "Annamaria"
+ ],
+ [
+ "Fits my fiancee better",
+ "Lang"
+ ],
+ [
+ "Fabric is great for sport",
+ "Becki"
+ ],
+ [
+ "Doesn't help my figure one bit",
+ "Hellen"
+ ],
+ [
+ "What's with the sleeve cut?",
+ "Pearle"
+ ],
+ [
+ "Light, comfy",
+ "Slyvia"
+ ],
+ [
+ "Light but tight",
+ "Nell"
+ ],
+ [
+ "Looks and feels aweseom ",
+ "Skye"
+ ],
+ [
+ "Really close-fitting. Do not love.",
+ "Amberly"
+ ],
+ [
+ "Not at all soft",
+ "Ashli"
+ ],
+ [
+ "This T is a no brainer-solid color",
+ "Ruth"
+ ],
+ [
+ "Thank you! ",
+ "Sonja"
+ ],
+ [
+ "Um, NOT flattering at ALL.",
+ "Candie"
+ ],
+ [
+ "Like the color .sleeves were too tight. ",
+ "Elmira"
+ ],
+ [
+ "Sooooooooooo soft! ",
+ "Nyla"
+ ],
+ [
+ "Cute, comfy. ",
+ "Hollie"
+ ],
+ [
+ "I love that it's so lightweight. ",
+ "Celestine"
+ ],
+ [
+ "who doesn't love a racerback, amiright?!",
+ "Irma"
+ ],
+ [
+ "I where this AAALLLLL the time",
+ "Gidget"
+ ],
+ [
+ "soft but a little tight",
+ "Tatiana"
+ ],
+ [
+ "Love the fabric, but it's huge!",
+ "Maisie"
+ ],
+ [
+ "Soft",
+ "Karine"
+ ],
+ [
+ "omg I love this tank top, it's perfect",
+ "Bree"
+ ],
+ [
+ "cool and dry",
+ "Lakeisha"
+ ],
+ [
+ "Not great",
+ "Collette"
+ ],
+ [
+ "What a versatile shirt!",
+ "Adaline"
+ ],
+ [
+ "So comfortable I almost feel barefoot. T",
+ "Karisa"
+ ],
+ [
+ "On the plus side, the perforated cushion",
+ "Evelyn"
+ ],
+ [
+ "I threw them out when the mushy lining s",
+ "Markita"
+ ],
+ [
+ "Beyond perfection! I always get tons of ",
+ "Manuela"
+ ],
+ [
+ "These look awesome with EVERYTHING! Hone",
+ "Gwen"
+ ],
+ [
+ "The suede upper makes these pretty hard ",
+ "Jovan"
+ ],
+ [
+ "Love a preppy sneaker! These are still a",
+ "Shellie"
+ ],
+ [
+ "These are my favorite new pair of sneake",
+ "Dena"
+ ],
+ [
+ "Have had these for quite a while and the",
+ "Evalyn"
+ ],
+ [
+ "Really comfy and awesome for running or ",
+ "Adele"
+ ],
+ [
+ "Velcro straps?? Are you kidding me? Am I",
+ "Star"
+ ],
+ [
+ "Cool-looking kicks! I'd wear them anywhe",
+ "Nikki"
+ ],
+ [
+ "I absolutely love these trainers. I can ",
+ "Rosy"
+ ],
+ [
+ "Don't like the strap on top; gets too lo",
+ "Aleen"
+ ],
+ [
+ "Love the no laces and they feel really g",
+ "Dannette"
+ ],
+ [
+ "I love these for when I walk the boardwa",
+ "Lita"
+ ],
+ [
+ "These looked really ugly on my feet when",
+ "Joyce"
+ ],
+ [
+ "I can appreciate the concept, but I thin",
+ "Gertrud"
+ ],
+ [
+ "I couldn't live without these. I wear th",
+ "Leonia"
+ ],
+ [
+ "These are really well made and so lightw",
+ "Nadene"
+ ],
+ [
+ "Want these in every single color Luma ma",
+ "Min"
+ ],
+ [
+ "Ummm, fashion? If you say so. They're co",
+ "Katy"
+ ],
+ [
+ "Cute and comfortable definitely. The ela",
+ "Laurice"
+ ],
+ [
+ "Love love LOVE!!! I can't get enough of ",
+ "Kara"
+ ],
+ [
+ "It was really hard to find the right siz",
+ "Angeline"
+ ],
+ [
+ "VERY LIGHTWEIGHT COMFY-GOOD SHOES",
+ "Marita"
+ ],
+ [
+ "Wore these for a year and they started f",
+ "Pura"
+ ],
+ [
+ "I am in love with these shoes and will b",
+ "Natashia"
+ ],
+ [
+ "Design is adorable-when you have cute wo",
+ "Brigitte"
+ ],
+ [
+ "Have no idea what all the fuss is about ",
+ "Roseline"
+ ],
+ [
+ "Pic is WAY different then the real thing",
+ "Garnett"
+ ],
+ [
+ "Meh, I'm not hating them, but I'm not in",
+ "Eugena"
+ ],
+ [
+ "I'm a mom on the go and I love these sho",
+ "Elina"
+ ],
+ [
+ "Not exactly true to size",
+ "Mistie"
+ ],
+ [
+ "Snug fit without being too tight",
+ "Ming"
+ ],
+ [
+ "bra stays comfy and dry",
+ "Mei"
+ ],
+ [
+ "One of my favorites b/c no chafing!",
+ "Bernetta"
+ ],
+ [
+ "Doesn't fit me. Luma fail.",
+ "Roxie"
+ ],
+ [
+ "does not fit. worthless.",
+ "Ardelia"
+ ],
+ [
+ "So, so awesome. Great Support!",
+ "Dorcas"
+ ],
+ [
+ "I love this bra",
+ "Cayla"
+ ],
+ [
+ "So comfortable",
+ "Tonya"
+ ],
+ [
+ "It's an average bra",
+ "Eartha"
+ ],
+ [
+ "Make this with patterns",
+ "Jammie"
+ ],
+ [
+ "Cute gym top",
+ "Lorena"
+ ],
+ [
+ "Cute, stretchy top!",
+ "Modesta"
+ ],
+ [
+ "I got every color",
+ "Ayanna"
+ ],
+ [
+ "unflattering. Ugh.",
+ "Avelina"
+ ],
+ [
+ "Training bra?",
+ "Maribel"
+ ],
+ [
+ "Sizes are off",
+ "Krystina"
+ ],
+ [
+ "Makes me feel so snug! WHOO! ",
+ "Concepcion"
+ ],
+ [
+ "Could be flirtier.",
+ "Emerald"
+ ],
+ [
+ "Not for non-petite",
+ "Teofila"
+ ],
+ [
+ "one of my favorites",
+ "Elza"
+ ],
+ [
+ "Zero support/modesty",
+ "Shaunte"
+ ],
+ [
+ "Not for high impact",
+ "Merrie"
+ ],
+ [
+ "A regular or me",
+ "Pearl"
+ ],
+ [
+ "Great fit - love the v-neck design! ",
+ "Thalia"
+ ],
+ [
+ "The seams bother me",
+ "Carma"
+ ],
+ [
+ "A sweet n sporty look for the gym",
+ "Maryanna"
+ ],
+ [
+ "Good choice for working out",
+ "Elfriede"
+ ],
+ [
+ "I love the look",
+ "Yan"
+ ],
+ [
+ "Huge arm holes??",
+ "Valorie"
+ ],
+ [
+ "Super cute!!! I love it",
+ "Mikkel"
+ ],
+ [
+ "Quite good",
+ "Jane Smith"
+ ],
+ [
+ "OKish",
+ "seam miller"
+ ],
+ [
+ "won't recommand",
+ "Emma"
+ ],
+ [
+ "Good but not perfect",
+ "customer"
+ ],
+ [
+ "Bad!",
+ "Hannah Lim"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status 'paypal_reversed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_reversed';",
+ "answer": [
+ "PayPal Reversed"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Reversed"
+ ]
+ ]
+ },
+ {
+ "question": "List all shipments made for customer ID 1.",
+ "sql": "SELECT increment_id, created_at FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001, 2023-04-19 16:15:46",
+ "000000002, 2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001",
+ "2023-04-19 16:15:46"
+ ],
+ [
+ "000000002",
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 4?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of products shipped for order ID 300.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 2024 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 2024;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the reviewer for review ID 140.",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 140;",
+ "answer": [
+ "Cliff"
+ ],
+ "sql_execute_result": [
+ [
+ "Cliff"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status for product ID 916?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 916;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the rating 'Quality'.",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 930?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 930;",
+ "answer": [
+ "MSH05-33-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH05-33-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity in stock for product ID 914.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 914;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the frontend label for the attribute with ID 42.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 42;",
+ "answer": [
+ "Failures Number"
+ ],
+ "sql_execute_result": [
+ [
+ "Failures Number"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS12-XL-Purple'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WS12-XL-Purple';",
+ "answer": [
+ "Radiant Tee",
+ "Radiant Tee-XL-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Radiant Tee"
+ ],
+ [
+ "Radiant Tee-XL-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "How many sales order items are associated with order ID 178?",
+ "sql": "SELECT COUNT(*) FROM sales_order_item WHERE order_id = 178;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest invoice?",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'WT03-M-Red' available for free shipping?",
+ "sql": "SELECT free_shipping FROM sales_order_item WHERE sku = 'WT03-M-Red';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the type ID of the product with entity ID 1200.",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 1200;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered quantity for the product with SKU '24-MG01'?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = '24-MG01';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the item with order ID 128?",
+ "sql": "SELECT price FROM sales_order_item WHERE order_id = 128;",
+ "answer": [
+ "49.0000",
+ "56.2500",
+ "63.0000",
+ "24.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "49.0000"
+ ],
+ [
+ "56.2500"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "63.0000"
+ ],
+ [
+ "0.0000"
+ ],
+ [
+ "24.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 63?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 63;",
+ "answer": [
+ "james.baker@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "james.baker@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Which website is set as the default?",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 93 used in product listings?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 93;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many children does category ID 29 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 29;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the weight of the product with name 'Iris Workout Top'?",
+ "sql": "SELECT weight FROM sales_shipment_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is customer 'Hannah Lim' active?",
+ "sql": "SELECT is_active FROM customer_entity WHERE email = 'hannah.lim@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the category with ID 31?",
+ "sql": "SELECT created_at FROM catalog_category_entity WHERE entity_id = 31;",
+ "answer": [
+ "2023-04-19 16:13:19"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:19"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'MSH09-36-Black'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "24.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group does 'Alex Martin' belong to?",
+ "sql": "SELECT group_id FROM customer_entity WHERE email = 'alex.martin@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with identifier 'customer-service'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'customer-service';",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WH11-S-Blue' in the shipment items?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What label corresponds to the order status 'pending_payment'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with region ID 193 in the US locale.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 193 AND locale = 'en_US';",
+ "answer": [
+ "Aveyron"
+ ],
+ "sql_execute_result": [
+ [
+ "Aveyron"
+ ]
+ ]
+ },
+ {
+ "question": "What is the page layout of the 'About us' CMS page?",
+ "sql": "SELECT page_layout FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the product named 'Iris Workout Top' in the shipment items?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the review percent for the product with entity PK value 1284?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE entity_pk_value = 1284;",
+ "answer": [
+ "80",
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ],
+ [
+ 80
+ ],
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with the title 'Enable Cookies'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Enable Cookies';",
+ "answer": [
+ "What are Cookies?"
+ ],
+ "sql_execute_result": [
+ [
+ "What are Cookies?"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product with a price of 29.0 in the shipment items.",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE price = 29.0;",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the label 'On Hold'?",
+ "sql": "SELECT status FROM sales_order_status WHERE label = 'On Hold';",
+ "answer": [
+ "holded"
+ ],
+ "sql_execute_result": [
+ [
+ "holded"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email status of the shipment with increment ID '000000001'?",
+ "sql": "SELECT CASE WHEN email_sent = 1 THEN 'Sent' ELSE 'Not Sent' END AS email_status FROM sales_shipment WHERE increment_id = '000000001';",
+ "answer": [
+ "Sent"
+ ],
+ "sql_execute_result": [
+ [
+ "Sent"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the best-selling product with ID 1842 in 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1842 AND period = '2022-01-01';",
+ "answer": [
+ "Sahara Leggings-28-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Sahara Leggings-28-Gray"
+ ],
+ [
+ "Sahara Leggings-28-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code associated with the option ID 19.",
+ "sql": "SELECT r.rating_code FROM rating_option ro JOIN rating r ON ro.rating_id = r.rating_id WHERE ro.option_id = 19;",
+ "answer": [
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What quantity was ordered for the product 'Ina Compression Short-29-Blue' in 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ina Compression Short-29-Blue' AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What category does the product with ID 1675 belong to?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1675;",
+ "answer": [
+ "26",
+ "36",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 26
+ ],
+ [
+ 36
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the shipment with order ID 300?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 1044 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1044;",
+ "answer": [
+ "-16",
+ "-107",
+ "-81",
+ "-397"
+ ],
+ "sql_execute_result": [
+ [
+ -16
+ ],
+ [
+ -107
+ ],
+ [
+ -81
+ ],
+ [
+ -397
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for the product 'Orestes Yoga Pant -34-Green' in 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Orestes Yoga Pant -34-Green' AND period = '2023-01-01';",
+ "answer": [
+ "96",
+ "38"
+ ],
+ "sql_execute_result": [
+ [
+ 96
+ ],
+ [
+ 38
+ ]
+ ]
+ },
+ {
+ "question": "What is the position value for the rating option with ID 7?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 7;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the bestselling product in March 2022 for store ID 0?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-03-01' AND store_id = 0 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Quest Lumaflex\u2122 Band"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer 'Veronica Costello' with order status 'closed'.",
+ "sql": "SELECT order_id, order_increment_id FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello' AND order_status = 'closed';",
+ "answer": [
+ "2",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ 2,
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for the attribute with ID 88?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 88;",
+ "answer": [
+ "small_image"
+ ],
+ "sql_execute_result": [
+ [
+ "small_image"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'GT'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'GT';",
+ "answer": [
+ "GTM"
+ ],
+ "sql_execute_result": [
+ [
+ "GTM"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with ID 223?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 223;",
+ "answer": [
+ "75 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "75 cm"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Sprite Stasis Ball 75 cm' in December 2022.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sprite Stasis Ball 75 cm' AND period = '2022-12-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the frontend label for the attribute code 'url_key' with entity type ID 4.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'url_key' AND entity_type_id = 4;",
+ "answer": [
+ "URL Key"
+ ],
+ "sql_execute_result": [
+ [
+ "URL Key"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with the entity ID 28?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 28 AND attribute_id = 45;",
+ "answer": [
+ "Shorts"
+ ],
+ "sql_execute_result": [
+ [
+ "Shorts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product ID 1186?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1186;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address associated with the billing address for order ID 48.",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 48 AND address_type = 'billing';",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the address for the shipping address associated with the order with parent ID 21?",
+ "sql": "SELECT street FROM sales_order_address WHERE parent_id = 21 AND address_type = 'shipping';",
+ "answer": [
+ "123 Hogwarts Lane"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Hogwarts Lane"
+ ]
+ ]
+ },
+ {
+ "question": "What is the group name for the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity in stock for the product with item ID 1312?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE item_id = 1312;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the root category ID of the store group named 'Main Website Store'?",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for the sales order address with entity ID 446?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 446;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal for the credit memo with order_increment_id '000000002'?",
+ "sql": "SELECT subtotal FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with ID 702?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 702;",
+ "answer": [
+ "Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.",
+ "\u2022 Teal polyester tank.",
+ "\u2022 Premium fit tank top.",
+ "\u2022 Ultra lightweight.",
+ "\u2022 Naturally odor-resistant."
+ ],
+ "sql_execute_result": [
+ [
+ "Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.
\n• Teal polyester tank.
• Premium fit tank top.
• Ultra lightweight.
• Naturally odor-resistant.
"
+ ]
+ ]
+ },
+ {
+ "question": "Which status label corresponds to the status code 'pending_payment'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the item with SKU 'WP07-29-Blue'.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'WP07-29-Blue';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer for the review with ID 90?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 90;",
+ "answer": [
+ "Chung"
+ ],
+ "sql_execute_result": [
+ [
+ "Chung"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for order with increment ID '000000112'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE increment_id = '000000112';",
+ "answer": [
+ "456 Santa Fe Drive,Denver,Colorado,80202"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Santa Fe Drive,Denver,Colorado,80202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with entity ID 178?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE entity_id = 178;",
+ "answer": [
+ "64.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "64.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review detail for the review with title 'easy to take apart'.",
+ "sql": "SELECT detail FROM review_detail WHERE title = 'easy to take apart';",
+ "answer": [
+ "I like this one. It's easy to take apart when you want to wear the quilted part and zips back in no problem. If you're a big guy its fits a little tight under the arms though."
+ ],
+ "sql_execute_result": [
+ [
+ "I like this one. It's easy to take apart when you want to wear the quilted part and zips back in no problem. If you're a big guy its fits a little tight under the arms though."
+ ]
+ ]
+ },
+ {
+ "question": "How many payment methods were found for the order with customer email 'alex.martin@gmail.com'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE customer_email = 'alex.martin@gmail.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the attributes info from the product options for the sales order item with ID 340.",
+ "sql": "SELECT product_options FROM sales_order_item WHERE item_id = 340;",
+ "answer": [
+ "Color: Yellow",
+ "Size: S"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"info_buyRequest\":{\"super_attribute\":{\"93\":\"60\",\"144\":\"167\"},\"qty\":\"1.0000\"},\"attributes_info\":[{\"label\":\"Color\",\"value\":\"Yellow\",\"option_id\":93,\"option_value\":\"60\"},{\"label\":\"Size\",\"value\":\"S\",\"option_id\":144,\"option_value\":\"167\"}],\"simple_name\":\"Primo Endurance Tank-S-Yellow\",\"simple_sku\":\"MT03-S-Yellow\",\"product_calculations\":1,\"shipment_type\":0}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the review with title 'TINY neck hole??'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'TINY neck hole??';",
+ "answer": [
+ "Monroe"
+ ],
+ "sql_execute_result": [
+ [
+ "Monroe"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'EC'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'EC';",
+ "answer": [
+ "ECU"
+ ],
+ "sql_execute_result": [
+ [
+ "ECU"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for invoices in the admin store?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 0;",
+ "answer": [
+ "sequence_invoice_0"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_0"
+ ]
+ ]
+ },
+ {
+ "question": "List all store names that are active.",
+ "sql": "SELECT name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ],
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Which product option value corresponds to 'Hemp'?",
+ "sql": "SELECT option_id FROM eav_attribute_option_value WHERE value = 'Hemp';",
+ "answer": [
+ "145"
+ ],
+ "sql_execute_result": [
+ [
+ 145
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value description for the attribute option with ID 142.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 142;",
+ "answer": [
+ "Cocona\u00ae performance fabric"
+ ],
+ "sql_execute_result": [
+ [
+ "Cocona® performance fabric"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type for sequence meta ID 5?",
+ "sql": "SELECT entity_type FROM sales_sequence_meta WHERE meta_id = 5;",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the country name with country ID 'TT' in ISO-2 format?",
+ "sql": "SELECT iso2_code FROM directory_country WHERE country_id = 'TT';",
+ "answer": [
+ "TT"
+ ],
+ "sql_execute_result": [
+ [
+ "TT"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store code for the admin store.",
+ "sql": "SELECT code FROM store WHERE store_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest shipment?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the path for the category with ID 10.",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 10;",
+ "answer": [
+ "1/2/9/10"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/9/10"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the option with ID 103?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 103;",
+ "answer": [
+ "DVD"
+ ],
+ "sql_execute_result": [
+ [
+ "DVD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer for review ID 186?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 186;",
+ "answer": [
+ "Shonta"
+ ],
+ "sql_execute_result": [
+ [
+ "Shonta"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with ID 9 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 9;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the title for the review with ID 291.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 291;",
+ "answer": [
+ "Have had these for quite a while and the"
+ ],
+ "sql_execute_result": [
+ [
+ "Have had these for quite a while and the"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the option with ID 28?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 28;",
+ "answer": [
+ "Laptop"
+ ],
+ "sql_execute_result": [
+ [
+ "Laptop"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the position of the category with ID 13.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 13;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the detail description for the review titled 'Comfortable'?",
+ "sql": "SELECT detail FROM review_detail WHERE title = 'Comfortable';",
+ "answer": [
+ "Not as lightweight as it seems but it was ok. Comfortable."
+ ],
+ "sql_execute_result": [
+ [
+ "Not as lightweight as it seems but it was ok. Comfortable."
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values exist for invoices?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the address for the sales order associated with the email 'beachlover99@yahoo.com'?",
+ "sql": "SELECT street, city, region, postcode FROM sales_order_address WHERE email = 'beachlover99@yahoo.com';",
+ "answer": [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ],
+ [
+ "123 Malibu Beach Road",
+ "Malibu",
+ "California",
+ "90265"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is the product with entity ID 463 available in?",
+ "sql": "SELECT name FROM store WHERE store_id = (SELECT store_id FROM catalog_product_entity_text WHERE entity_id = 463);",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Get the next order sequence number.",
+ "sql": "SELECT AUTO_INCREMENT FROM information_schema.tables WHERE table_name = 'sequence_order_1' AND table_schema = DATABASE();",
+ "answer": [
+ "309"
+ ],
+ "sql_execute_result": [
+ [
+ 309
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 1537?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1537;",
+ "answer": [
+ "The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.
\n• Bright yellow v-neck tee.
• Moisture-wicking fabric.
• Long-Sleeves.
• Machine wash/line dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.
\n• Bright yellow v-neck tee.
• Moisture-wicking fabric.
• Long-Sleeves.
• Machine wash/line dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing address for John Smith in Birmingham.",
+ "sql": "SELECT street, city, region, postcode FROM sales_order_address WHERE firstname = 'John' AND lastname = 'Smith' AND city = 'Birmingham';",
+ "answer": [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ],
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213"
+ ]
+ ]
+ },
+ {
+ "question": "What is the website name for website ID 0?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for the Ryker LumaTech Tee.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 463;",
+ "answer": [
+ "The crew-neck Ryker LumaTech\u2122 Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.",
+ "\u2022 Royal polyester tee with black accents.",
+ "\u2022 Relaxed fit.",
+ "\u2022 Short-Sleeve.",
+ "\u2022 Machine wash/dry."
+ ],
+ "sql_execute_result": [
+ [
+ "The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.
\n• Royal polyester tee with black accents.
• Relaxed fit.
• Short-Sleeve.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the group ID of the store with the name 'Default Store View'?",
+ "sql": "SELECT group_id FROM store WHERE name = 'Default Store View';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email associated with the sales order address with entity ID 114?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 114;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who has the billing address in Malibu?",
+ "sql": "SELECT email FROM sales_order_address WHERE city = 'Malibu' AND address_type = 'billing';",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Iris Workout Top'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the product attribute with ID 77 for product entity ID 643?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND entity_id = 643;",
+ "answer": [
+ "29.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions were found for Alex Martin's billing address?",
+ "sql": "SELECT region FROM sales_order_address WHERE firstname = 'Alex' AND lastname = 'Martin' AND address_type = 'billing';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 119 searchable?",
+ "sql": "SELECT is_searchable FROM catalog_eav_attribute WHERE attribute_id = 119;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the email for the shipping address located in Las Vegas.",
+ "sql": "SELECT email FROM sales_order_address WHERE city = 'Las Vegas' AND address_type = 'shipping';",
+ "answer": [
+ "brian.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 989?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE product_id = 989;",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for entity ID 1521 in the catalog product entity varchar table?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1521 AND attribute_id = 73;",
+ "answer": [
+ "Karissa V-Neck Tee-XL-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Karissa V-Neck Tee-XL-Green"
+ ]
+ ]
+ },
+ {
+ "question": "How many billing address postcodes were found for Sarah Miller?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE firstname = 'Sarah' AND lastname = 'Miller' AND address_type = 'billing';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ],
+ [
+ "94602"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 24?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 24;",
+ "answer": [
+ "musiclover99@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "musiclover99@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full name of the customer with email 'gamingpro456@gmail.com'.",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name FROM customer_entity WHERE email = 'gamingpro456@gmail.com';",
+ "answer": [
+ "Adam Garcia"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam Garcia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city and state for the address with ID 40?",
+ "sql": "SELECT city, region FROM customer_address_entity WHERE entity_id = 40;",
+ "answer": [
+ "Seattle",
+ "Washington"
+ ],
+ "sql_execute_result": [
+ [
+ "Seattle",
+ "Washington"
+ ]
+ ]
+ },
+ {
+ "question": "List the names of all active stores.",
+ "sql": "SELECT name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ],
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for credit memo with ID 1.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the order associated with credit memo increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full name of the customer with ID 14.",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name FROM customer_entity WHERE entity_id = 14;",
+ "answer": [
+ "John Doe"
+ ],
+ "sql_execute_result": [
+ [
+ "John Doe"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state for customer address ID 29?",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 29;",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with locale 'en_US' and region ID 620.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE locale = 'en_US' AND region_id = 620;",
+ "answer": [
+ "Antwerpen"
+ ],
+ "sql_execute_result": [
+ [
+ "Antwerpen"
+ ]
+ ]
+ },
+ {
+ "question": "Find the subtotal for the credit memo with customer email 'roni_cost@example.com'.",
+ "sql": "SELECT subtotal FROM sales_creditmemo_grid WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status 'holded'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'holded';",
+ "answer": [
+ "On Hold"
+ ],
+ "sql_execute_result": [
+ [
+ "On Hold"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments were created for the store with ID 1 on April 23, 2023?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE store_id = 1 AND created_at LIKE '2023-04-23%';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO-3 code for the country with ISO-2 code 'SE'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'SE';",
+ "answer": [
+ "SWE"
+ ],
+ "sql_execute_result": [
+ [
+ "SWE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for the orders completed on January 23, 2023?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-01-23' AND order_status = 'complete';",
+ "answer": [
+ "121.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "121.0000"
+ ],
+ [
+ "121.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine if the attribute with ID 93 is filterable in grid.",
+ "sql": "SELECT is_filterable_in_grid FROM catalog_eav_attribute WHERE attribute_id = 93;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in the canceled orders on January 10, 2023?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-01-10' AND order_status = 'canceled';",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ],
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipment increment ID for the shipment with entity ID 2.",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on March 19, 2022?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-03-19' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 59?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 59;",
+ "answer": [
+ "ryan.tanaka@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "ryan.tanaka@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full billing address for customer with the email 'david.lee@gmail.com'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE email = 'david.lee@gmail.com';",
+ "answer": [
+ "456 Tremont St Boston Massachusetts 02108"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Tremont St Boston Massachusetts 02108"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the sequence profile with ID 5 is active.",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 1082?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 1082 AND locale = 'en_US';",
+ "answer": [
+ "Durazno"
+ ],
+ "sql_execute_result": [
+ [
+ "Durazno"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in the 'Default Store View'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for the stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number for customer with ID 28.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE entity_id = 28;",
+ "answer": [
+ "2145551212"
+ ],
+ "sql_execute_result": [
+ [
+ "2145551212"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the warning value for the sequence profile with meta ID 4.",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE meta_id = 4;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "Get the billing country ID for customer named 'Lisa Green'.",
+ "sql": "SELECT billing_country_id FROM customer_grid_flat WHERE name = 'Lisa Green';",
+ "answer": [
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date for the customer with email 'roni_cost@example.com'?",
+ "sql": "SELECT created_at FROM customer_grid_flat WHERE email = 'roni_cost@example.com';",
+ "answer": [
+ "2023-04-19 16:15:35"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:35"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many unique billing addresses are there for the customer with the last name 'Miller'?",
+ "sql": "SELECT street FROM sales_order_address WHERE lastname = 'Miller';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "789 17th St"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ],
+ [
+ "321 Maple Avenue"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews are pending approval?",
+ "sql": "SELECT review_id FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'robert.johnson@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'robert.johnson@gmail.com';",
+ "answer": [
+ "Robert Johnson"
+ ],
+ "sql_execute_result": [
+ [
+ "Robert Johnson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders for store ID 1 with the status 'processing'?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE store_id = 1 AND order_status = 'processing';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 1918?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1918 AND attribute_id = 77;",
+ "answer": [
+ "29.00"
+ ],
+ "sql_execute_result": [
+ [
+ "29.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer address details for the address ID 44.",
+ "sql": "SELECT firstname, lastname, city, telephone FROM customer_address_entity WHERE entity_id = 44;",
+ "answer": [
+ "Roberto",
+ "Lopez",
+ "New York",
+ "2125551212"
+ ],
+ "sql_execute_result": [
+ [
+ "Roberto",
+ "Lopez",
+ "New York",
+ "2125551212"
+ ]
+ ]
+ },
+ {
+ "question": "Which query text has the highest popularity in store ID 1?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute code 'style_bags'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'style_bags';",
+ "answer": [
+ "Style Bags"
+ ],
+ "sql_execute_result": [
+ [
+ "Style Bags"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 32?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 32;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum value for the sales sequence profile with profile ID 5?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 113 required?",
+ "sql": "SELECT is_required FROM eav_attribute WHERE attribute_id = 113;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which city is associated with the customer address ID 58?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 58;",
+ "answer": [
+ "Boston"
+ ],
+ "sql_execute_result": [
+ [
+ "Boston"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a decimal value of 63.000000 for attribute ID 77?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_decimal WHERE attribute_id = 77 AND value = '63.000000';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the 'holded' status in the sales order status table?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'holded';",
+ "answer": [
+ "On Hold"
+ ],
+ "sql_execute_result": [
+ [
+ "On Hold"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of shipments for the order with ID 2?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the email address of the customer named 'Katie Wong'.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Katie Wong';",
+ "answer": [
+ "katie.wong@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "katie.wong@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product with entity ID 1032.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1032 AND attribute_id = 77;",
+ "answer": [
+ "57.00"
+ ],
+ "sql_execute_result": [
+ [
+ "57.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been created for the customer with ID 18?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_shipment WHERE customer_id = 18;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the default group ID for the 'Admin' website.",
+ "sql": "SELECT default_group_id FROM store_website WHERE code = 'admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing postal code for the customer 'Lucy Garcia'.",
+ "sql": "SELECT billing_postcode FROM customer_grid_flat WHERE name = 'Lucy Garcia';",
+ "answer": [
+ "80202"
+ ],
+ "sql_execute_result": [
+ [
+ "80202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipment increment ID for the shipment created on '2023-04-19 16:15:46'?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE created_at = '2023-04-19 16:15:46';",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the shipment with increment ID '000000003'.",
+ "sql": "SELECT store_id FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the customer who wrote the review titled 'Saggy pants'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Saggy pants';",
+ "answer": [
+ "Davis"
+ ],
+ "sql_execute_result": [
+ [
+ "Davis"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the name of the region with ID 293 in the locale 'en_US'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 293 AND locale = 'en_US';",
+ "answer": [
+ "Covasna"
+ ],
+ "sql_execute_result": [
+ [
+ "Covasna"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the option value for the attribute option ID 141.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 141;",
+ "answer": [
+ "Camisole"
+ ],
+ "sql_execute_result": [
+ [
+ "Camisole"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for product ID 1620 that are approved.",
+ "sql": "SELECT review_id, created_at FROM review WHERE entity_pk_value = 1620 AND status_id = 1;",
+ "answer": [
+ "320",
+ "2023-04-19 16:15:19",
+ "321",
+ "2023-04-19 16:15:19",
+ "322",
+ "2023-04-19 16:15:19",
+ "323",
+ "2023-04-19 16:15:19"
+ ],
+ "sql_execute_result": [
+ [
+ 320,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 321,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 322,
+ "2023-04-19 16:15:19"
+ ],
+ [
+ 323,
+ "2023-04-19 16:15:19"
+ ]
+ ]
+ },
+ {
+ "question": "Get the status code for review status with ID 3.",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Get the detail description of the review with ID 275.",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 275;",
+ "answer": [
+ "I where this AAALLLLL the time to workout! Its so comfy and cute! I just wish it was a little longer."
+ ],
+ "sql_execute_result": [
+ [
+ "I where this AAALLLLL the time to workout! Its so comfy and cute! I just wish it was a little longer."
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 61?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 61;",
+ "answer": [
+ "matthew.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matthew.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all customers located in New Jersey.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_region = 'New Jersey';",
+ "answer": [
+ "Amanda Kim",
+ "Matthew Kim",
+ "Natalie Kim"
+ ],
+ "sql_execute_result": [
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Natalie Kim"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the product ID 1492?",
+ "sql": "SELECT value FROM rating_option_vote WHERE entity_pk_value = 1492;",
+ "answer": [
+ "4",
+ "1",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 1
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with attribute ID 97?",
+ "sql": "SELECT entity_id, value FROM catalog_product_entity_int WHERE attribute_id = 97;",
+ "answer": [
+ "2052"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ 1
+ ],
+ [
+ 2,
+ 1
+ ],
+ [
+ 3,
+ 1
+ ],
+ [
+ 4,
+ 1
+ ],
+ [
+ 5,
+ 1
+ ],
+ [
+ 6,
+ 1
+ ],
+ [
+ 7,
+ 1
+ ],
+ [
+ 8,
+ 1
+ ],
+ [
+ 9,
+ 1
+ ],
+ [
+ 10,
+ 1
+ ],
+ [
+ 11,
+ 1
+ ],
+ [
+ 12,
+ 1
+ ],
+ [
+ 13,
+ 1
+ ],
+ [
+ 14,
+ 1
+ ],
+ [
+ 15,
+ 1
+ ],
+ [
+ 16,
+ 1
+ ],
+ [
+ 17,
+ 1
+ ],
+ [
+ 18,
+ 1
+ ],
+ [
+ 19,
+ 1
+ ],
+ [
+ 20,
+ 1
+ ],
+ [
+ 21,
+ 1
+ ],
+ [
+ 22,
+ 1
+ ],
+ [
+ 23,
+ 1
+ ],
+ [
+ 24,
+ 1
+ ],
+ [
+ 25,
+ 1
+ ],
+ [
+ 26,
+ 1
+ ],
+ [
+ 27,
+ 1
+ ],
+ [
+ 28,
+ 1
+ ],
+ [
+ 29,
+ 1
+ ],
+ [
+ 30,
+ 1
+ ],
+ [
+ 31,
+ 1
+ ],
+ [
+ 32,
+ 1
+ ],
+ [
+ 33,
+ 1
+ ],
+ [
+ 34,
+ 1
+ ],
+ [
+ 35,
+ 1
+ ],
+ [
+ 36,
+ 1
+ ],
+ [
+ 37,
+ 1
+ ],
+ [
+ 38,
+ 1
+ ],
+ [
+ 39,
+ 1
+ ],
+ [
+ 40,
+ 1
+ ],
+ [
+ 41,
+ 1
+ ],
+ [
+ 42,
+ 1
+ ],
+ [
+ 43,
+ 1
+ ],
+ [
+ 44,
+ 1
+ ],
+ [
+ 45,
+ 1
+ ],
+ [
+ 46,
+ 1
+ ],
+ [
+ 47,
+ 1
+ ],
+ [
+ 48,
+ 1
+ ],
+ [
+ 49,
+ 1
+ ],
+ [
+ 50,
+ 1
+ ],
+ [
+ 51,
+ 1
+ ],
+ [
+ 52,
+ 1
+ ],
+ [
+ 53,
+ 1
+ ],
+ [
+ 54,
+ 1
+ ],
+ [
+ 55,
+ 1
+ ],
+ [
+ 56,
+ 1
+ ],
+ [
+ 57,
+ 1
+ ],
+ [
+ 58,
+ 1
+ ],
+ [
+ 59,
+ 1
+ ],
+ [
+ 60,
+ 1
+ ],
+ [
+ 61,
+ 1
+ ],
+ [
+ 62,
+ 1
+ ],
+ [
+ 63,
+ 1
+ ],
+ [
+ 64,
+ 1
+ ],
+ [
+ 65,
+ 1
+ ],
+ [
+ 66,
+ 1
+ ],
+ [
+ 67,
+ 1
+ ],
+ [
+ 68,
+ 1
+ ],
+ [
+ 69,
+ 1
+ ],
+ [
+ 70,
+ 1
+ ],
+ [
+ 71,
+ 1
+ ],
+ [
+ 72,
+ 1
+ ],
+ [
+ 73,
+ 1
+ ],
+ [
+ 74,
+ 1
+ ],
+ [
+ 75,
+ 1
+ ],
+ [
+ 76,
+ 1
+ ],
+ [
+ 77,
+ 1
+ ],
+ [
+ 78,
+ 1
+ ],
+ [
+ 79,
+ 1
+ ],
+ [
+ 80,
+ 1
+ ],
+ [
+ 81,
+ 1
+ ],
+ [
+ 82,
+ 1
+ ],
+ [
+ 83,
+ 1
+ ],
+ [
+ 84,
+ 1
+ ],
+ [
+ 85,
+ 1
+ ],
+ [
+ 86,
+ 1
+ ],
+ [
+ 87,
+ 1
+ ],
+ [
+ 88,
+ 1
+ ],
+ [
+ 89,
+ 1
+ ],
+ [
+ 90,
+ 1
+ ],
+ [
+ 91,
+ 1
+ ],
+ [
+ 92,
+ 1
+ ],
+ [
+ 93,
+ 1
+ ],
+ [
+ 94,
+ 1
+ ],
+ [
+ 95,
+ 1
+ ],
+ [
+ 96,
+ 1
+ ],
+ [
+ 97,
+ 1
+ ],
+ [
+ 98,
+ 1
+ ],
+ [
+ 99,
+ 1
+ ],
+ [
+ 100,
+ 1
+ ],
+ [
+ 101,
+ 1
+ ],
+ [
+ 102,
+ 1
+ ],
+ [
+ 103,
+ 1
+ ],
+ [
+ 104,
+ 1
+ ],
+ [
+ 105,
+ 1
+ ],
+ [
+ 106,
+ 1
+ ],
+ [
+ 107,
+ 1
+ ],
+ [
+ 108,
+ 1
+ ],
+ [
+ 109,
+ 1
+ ],
+ [
+ 110,
+ 1
+ ],
+ [
+ 111,
+ 1
+ ],
+ [
+ 112,
+ 1
+ ],
+ [
+ 113,
+ 1
+ ],
+ [
+ 114,
+ 1
+ ],
+ [
+ 115,
+ 1
+ ],
+ [
+ 116,
+ 1
+ ],
+ [
+ 117,
+ 1
+ ],
+ [
+ 118,
+ 1
+ ],
+ [
+ 119,
+ 1
+ ],
+ [
+ 120,
+ 1
+ ],
+ [
+ 121,
+ 1
+ ],
+ [
+ 122,
+ 1
+ ],
+ [
+ 123,
+ 1
+ ],
+ [
+ 124,
+ 1
+ ],
+ [
+ 125,
+ 1
+ ],
+ [
+ 126,
+ 1
+ ],
+ [
+ 127,
+ 1
+ ],
+ [
+ 128,
+ 1
+ ],
+ [
+ 129,
+ 1
+ ],
+ [
+ 130,
+ 1
+ ],
+ [
+ 131,
+ 1
+ ],
+ [
+ 132,
+ 1
+ ],
+ [
+ 133,
+ 1
+ ],
+ [
+ 134,
+ 1
+ ],
+ [
+ 135,
+ 1
+ ],
+ [
+ 136,
+ 1
+ ],
+ [
+ 137,
+ 1
+ ],
+ [
+ 138,
+ 1
+ ],
+ [
+ 139,
+ 1
+ ],
+ [
+ 140,
+ 1
+ ],
+ [
+ 141,
+ 1
+ ],
+ [
+ 142,
+ 1
+ ],
+ [
+ 143,
+ 1
+ ],
+ [
+ 144,
+ 1
+ ],
+ [
+ 145,
+ 1
+ ],
+ [
+ 146,
+ 1
+ ],
+ [
+ 147,
+ 1
+ ],
+ [
+ 148,
+ 1
+ ],
+ [
+ 149,
+ 1
+ ],
+ [
+ 150,
+ 1
+ ],
+ [
+ 151,
+ 1
+ ],
+ [
+ 152,
+ 1
+ ],
+ [
+ 153,
+ 1
+ ],
+ [
+ 154,
+ 1
+ ],
+ [
+ 155,
+ 1
+ ],
+ [
+ 156,
+ 1
+ ],
+ [
+ 157,
+ 1
+ ],
+ [
+ 158,
+ 1
+ ],
+ [
+ 159,
+ 1
+ ],
+ [
+ 160,
+ 1
+ ],
+ [
+ 161,
+ 1
+ ],
+ [
+ 162,
+ 1
+ ],
+ [
+ 163,
+ 1
+ ],
+ [
+ 164,
+ 1
+ ],
+ [
+ 165,
+ 1
+ ],
+ [
+ 166,
+ 1
+ ],
+ [
+ 167,
+ 1
+ ],
+ [
+ 168,
+ 1
+ ],
+ [
+ 169,
+ 1
+ ],
+ [
+ 170,
+ 1
+ ],
+ [
+ 171,
+ 1
+ ],
+ [
+ 172,
+ 1
+ ],
+ [
+ 173,
+ 1
+ ],
+ [
+ 174,
+ 1
+ ],
+ [
+ 175,
+ 1
+ ],
+ [
+ 176,
+ 1
+ ],
+ [
+ 177,
+ 1
+ ],
+ [
+ 178,
+ 1
+ ],
+ [
+ 179,
+ 1
+ ],
+ [
+ 180,
+ 1
+ ],
+ [
+ 181,
+ 1
+ ],
+ [
+ 182,
+ 1
+ ],
+ [
+ 183,
+ 1
+ ],
+ [
+ 184,
+ 1
+ ],
+ [
+ 185,
+ 1
+ ],
+ [
+ 186,
+ 1
+ ],
+ [
+ 187,
+ 1
+ ],
+ [
+ 188,
+ 1
+ ],
+ [
+ 189,
+ 1
+ ],
+ [
+ 190,
+ 1
+ ],
+ [
+ 191,
+ 1
+ ],
+ [
+ 192,
+ 1
+ ],
+ [
+ 193,
+ 1
+ ],
+ [
+ 194,
+ 1
+ ],
+ [
+ 195,
+ 1
+ ],
+ [
+ 196,
+ 1
+ ],
+ [
+ 197,
+ 1
+ ],
+ [
+ 198,
+ 1
+ ],
+ [
+ 199,
+ 1
+ ],
+ [
+ 200,
+ 1
+ ],
+ [
+ 201,
+ 1
+ ],
+ [
+ 202,
+ 1
+ ],
+ [
+ 203,
+ 1
+ ],
+ [
+ 204,
+ 1
+ ],
+ [
+ 205,
+ 1
+ ],
+ [
+ 206,
+ 1
+ ],
+ [
+ 207,
+ 1
+ ],
+ [
+ 208,
+ 1
+ ],
+ [
+ 209,
+ 1
+ ],
+ [
+ 210,
+ 1
+ ],
+ [
+ 211,
+ 1
+ ],
+ [
+ 212,
+ 1
+ ],
+ [
+ 213,
+ 1
+ ],
+ [
+ 214,
+ 1
+ ],
+ [
+ 215,
+ 1
+ ],
+ [
+ 216,
+ 1
+ ],
+ [
+ 217,
+ 1
+ ],
+ [
+ 218,
+ 1
+ ],
+ [
+ 219,
+ 1
+ ],
+ [
+ 220,
+ 1
+ ],
+ [
+ 221,
+ 1
+ ],
+ [
+ 222,
+ 1
+ ],
+ [
+ 223,
+ 1
+ ],
+ [
+ 224,
+ 1
+ ],
+ [
+ 225,
+ 1
+ ],
+ [
+ 226,
+ 1
+ ],
+ [
+ 227,
+ 1
+ ],
+ [
+ 228,
+ 1
+ ],
+ [
+ 229,
+ 1
+ ],
+ [
+ 230,
+ 1
+ ],
+ [
+ 231,
+ 1
+ ],
+ [
+ 232,
+ 1
+ ],
+ [
+ 233,
+ 1
+ ],
+ [
+ 234,
+ 1
+ ],
+ [
+ 235,
+ 1
+ ],
+ [
+ 236,
+ 1
+ ],
+ [
+ 237,
+ 1
+ ],
+ [
+ 238,
+ 1
+ ],
+ [
+ 239,
+ 1
+ ],
+ [
+ 240,
+ 1
+ ],
+ [
+ 241,
+ 1
+ ],
+ [
+ 242,
+ 1
+ ],
+ [
+ 243,
+ 1
+ ],
+ [
+ 244,
+ 1
+ ],
+ [
+ 245,
+ 1
+ ],
+ [
+ 246,
+ 1
+ ],
+ [
+ 247,
+ 1
+ ],
+ [
+ 248,
+ 1
+ ],
+ [
+ 249,
+ 1
+ ],
+ [
+ 250,
+ 1
+ ],
+ [
+ 251,
+ 1
+ ],
+ [
+ 252,
+ 1
+ ],
+ [
+ 253,
+ 1
+ ],
+ [
+ 254,
+ 1
+ ],
+ [
+ 255,
+ 1
+ ],
+ [
+ 256,
+ 1
+ ],
+ [
+ 257,
+ 1
+ ],
+ [
+ 258,
+ 1
+ ],
+ [
+ 259,
+ 1
+ ],
+ [
+ 260,
+ 1
+ ],
+ [
+ 261,
+ 1
+ ],
+ [
+ 262,
+ 1
+ ],
+ [
+ 263,
+ 1
+ ],
+ [
+ 264,
+ 1
+ ],
+ [
+ 265,
+ 1
+ ],
+ [
+ 266,
+ 1
+ ],
+ [
+ 267,
+ 1
+ ],
+ [
+ 268,
+ 1
+ ],
+ [
+ 269,
+ 1
+ ],
+ [
+ 270,
+ 1
+ ],
+ [
+ 271,
+ 1
+ ],
+ [
+ 272,
+ 1
+ ],
+ [
+ 273,
+ 1
+ ],
+ [
+ 274,
+ 1
+ ],
+ [
+ 275,
+ 1
+ ],
+ [
+ 276,
+ 1
+ ],
+ [
+ 277,
+ 1
+ ],
+ [
+ 278,
+ 1
+ ],
+ [
+ 279,
+ 1
+ ],
+ [
+ 280,
+ 1
+ ],
+ [
+ 281,
+ 1
+ ],
+ [
+ 282,
+ 1
+ ],
+ [
+ 283,
+ 1
+ ],
+ [
+ 284,
+ 1
+ ],
+ [
+ 285,
+ 1
+ ],
+ [
+ 286,
+ 1
+ ],
+ [
+ 287,
+ 1
+ ],
+ [
+ 288,
+ 1
+ ],
+ [
+ 289,
+ 1
+ ],
+ [
+ 290,
+ 1
+ ],
+ [
+ 291,
+ 1
+ ],
+ [
+ 292,
+ 1
+ ],
+ [
+ 293,
+ 1
+ ],
+ [
+ 294,
+ 1
+ ],
+ [
+ 295,
+ 1
+ ],
+ [
+ 296,
+ 1
+ ],
+ [
+ 297,
+ 1
+ ],
+ [
+ 298,
+ 1
+ ],
+ [
+ 299,
+ 1
+ ],
+ [
+ 300,
+ 1
+ ],
+ [
+ 301,
+ 1
+ ],
+ [
+ 302,
+ 1
+ ],
+ [
+ 303,
+ 1
+ ],
+ [
+ 304,
+ 1
+ ],
+ [
+ 305,
+ 1
+ ],
+ [
+ 306,
+ 1
+ ],
+ [
+ 307,
+ 1
+ ],
+ [
+ 308,
+ 1
+ ],
+ [
+ 309,
+ 1
+ ],
+ [
+ 310,
+ 1
+ ],
+ [
+ 311,
+ 1
+ ],
+ [
+ 312,
+ 1
+ ],
+ [
+ 313,
+ 1
+ ],
+ [
+ 314,
+ 1
+ ],
+ [
+ 315,
+ 1
+ ],
+ [
+ 316,
+ 1
+ ],
+ [
+ 317,
+ 1
+ ],
+ [
+ 318,
+ 1
+ ],
+ [
+ 319,
+ 1
+ ],
+ [
+ 320,
+ 1
+ ],
+ [
+ 321,
+ 1
+ ],
+ [
+ 322,
+ 1
+ ],
+ [
+ 323,
+ 1
+ ],
+ [
+ 324,
+ 1
+ ],
+ [
+ 325,
+ 1
+ ],
+ [
+ 326,
+ 1
+ ],
+ [
+ 327,
+ 1
+ ],
+ [
+ 328,
+ 1
+ ],
+ [
+ 329,
+ 1
+ ],
+ [
+ 330,
+ 1
+ ],
+ [
+ 331,
+ 1
+ ],
+ [
+ 332,
+ 1
+ ],
+ [
+ 333,
+ 1
+ ],
+ [
+ 334,
+ 1
+ ],
+ [
+ 335,
+ 1
+ ],
+ [
+ 336,
+ 1
+ ],
+ [
+ 337,
+ 1
+ ],
+ [
+ 338,
+ 1
+ ],
+ [
+ 339,
+ 1
+ ],
+ [
+ 340,
+ 1
+ ],
+ [
+ 341,
+ 1
+ ],
+ [
+ 342,
+ 1
+ ],
+ [
+ 343,
+ 1
+ ],
+ [
+ 344,
+ 1
+ ],
+ [
+ 345,
+ 1
+ ],
+ [
+ 346,
+ 1
+ ],
+ [
+ 347,
+ 1
+ ],
+ [
+ 348,
+ 1
+ ],
+ [
+ 349,
+ 1
+ ],
+ [
+ 350,
+ 1
+ ],
+ [
+ 351,
+ 1
+ ],
+ [
+ 352,
+ 1
+ ],
+ [
+ 353,
+ 1
+ ],
+ [
+ 354,
+ 1
+ ],
+ [
+ 355,
+ 1
+ ],
+ [
+ 356,
+ 1
+ ],
+ [
+ 357,
+ 1
+ ],
+ [
+ 358,
+ 1
+ ],
+ [
+ 359,
+ 1
+ ],
+ [
+ 360,
+ 1
+ ],
+ [
+ 361,
+ 1
+ ],
+ [
+ 362,
+ 1
+ ],
+ [
+ 363,
+ 1
+ ],
+ [
+ 364,
+ 1
+ ],
+ [
+ 365,
+ 1
+ ],
+ [
+ 366,
+ 1
+ ],
+ [
+ 367,
+ 1
+ ],
+ [
+ 368,
+ 1
+ ],
+ [
+ 369,
+ 1
+ ],
+ [
+ 370,
+ 1
+ ],
+ [
+ 371,
+ 1
+ ],
+ [
+ 372,
+ 1
+ ],
+ [
+ 373,
+ 1
+ ],
+ [
+ 374,
+ 1
+ ],
+ [
+ 375,
+ 1
+ ],
+ [
+ 376,
+ 1
+ ],
+ [
+ 377,
+ 1
+ ],
+ [
+ 378,
+ 1
+ ],
+ [
+ 379,
+ 1
+ ],
+ [
+ 380,
+ 1
+ ],
+ [
+ 381,
+ 1
+ ],
+ [
+ 382,
+ 1
+ ],
+ [
+ 383,
+ 1
+ ],
+ [
+ 384,
+ 1
+ ],
+ [
+ 385,
+ 1
+ ],
+ [
+ 386,
+ 1
+ ],
+ [
+ 387,
+ 1
+ ],
+ [
+ 388,
+ 1
+ ],
+ [
+ 389,
+ 1
+ ],
+ [
+ 390,
+ 1
+ ],
+ [
+ 391,
+ 1
+ ],
+ [
+ 392,
+ 1
+ ],
+ [
+ 393,
+ 1
+ ],
+ [
+ 394,
+ 1
+ ],
+ [
+ 395,
+ 1
+ ],
+ [
+ 396,
+ 1
+ ],
+ [
+ 397,
+ 1
+ ],
+ [
+ 398,
+ 1
+ ],
+ [
+ 399,
+ 1
+ ],
+ [
+ 400,
+ 1
+ ],
+ [
+ 401,
+ 1
+ ],
+ [
+ 402,
+ 1
+ ],
+ [
+ 403,
+ 1
+ ],
+ [
+ 404,
+ 1
+ ],
+ [
+ 405,
+ 1
+ ],
+ [
+ 406,
+ 1
+ ],
+ [
+ 407,
+ 1
+ ],
+ [
+ 408,
+ 1
+ ],
+ [
+ 409,
+ 1
+ ],
+ [
+ 410,
+ 1
+ ],
+ [
+ 411,
+ 1
+ ],
+ [
+ 412,
+ 1
+ ],
+ [
+ 413,
+ 1
+ ],
+ [
+ 414,
+ 1
+ ],
+ [
+ 415,
+ 1
+ ],
+ [
+ 416,
+ 1
+ ],
+ [
+ 417,
+ 1
+ ],
+ [
+ 418,
+ 1
+ ],
+ [
+ 419,
+ 1
+ ],
+ [
+ 420,
+ 1
+ ],
+ [
+ 421,
+ 1
+ ],
+ [
+ 422,
+ 1
+ ],
+ [
+ 423,
+ 1
+ ],
+ [
+ 424,
+ 1
+ ],
+ [
+ 425,
+ 1
+ ],
+ [
+ 426,
+ 1
+ ],
+ [
+ 427,
+ 1
+ ],
+ [
+ 428,
+ 1
+ ],
+ [
+ 429,
+ 1
+ ],
+ [
+ 430,
+ 1
+ ],
+ [
+ 431,
+ 1
+ ],
+ [
+ 432,
+ 1
+ ],
+ [
+ 433,
+ 1
+ ],
+ [
+ 434,
+ 1
+ ],
+ [
+ 435,
+ 1
+ ],
+ [
+ 436,
+ 1
+ ],
+ [
+ 437,
+ 1
+ ],
+ [
+ 438,
+ 1
+ ],
+ [
+ 439,
+ 1
+ ],
+ [
+ 440,
+ 1
+ ],
+ [
+ 441,
+ 1
+ ],
+ [
+ 442,
+ 1
+ ],
+ [
+ 443,
+ 1
+ ],
+ [
+ 444,
+ 1
+ ],
+ [
+ 445,
+ 1
+ ],
+ [
+ 446,
+ 1
+ ],
+ [
+ 447,
+ 1
+ ],
+ [
+ 448,
+ 1
+ ],
+ [
+ 449,
+ 1
+ ],
+ [
+ 450,
+ 1
+ ],
+ [
+ 451,
+ 1
+ ],
+ [
+ 452,
+ 1
+ ],
+ [
+ 453,
+ 1
+ ],
+ [
+ 454,
+ 1
+ ],
+ [
+ 455,
+ 1
+ ],
+ [
+ 456,
+ 1
+ ],
+ [
+ 457,
+ 1
+ ],
+ [
+ 458,
+ 1
+ ],
+ [
+ 459,
+ 1
+ ],
+ [
+ 460,
+ 1
+ ],
+ [
+ 461,
+ 1
+ ],
+ [
+ 462,
+ 1
+ ],
+ [
+ 463,
+ 1
+ ],
+ [
+ 464,
+ 1
+ ],
+ [
+ 465,
+ 1
+ ],
+ [
+ 466,
+ 1
+ ],
+ [
+ 467,
+ 1
+ ],
+ [
+ 468,
+ 1
+ ],
+ [
+ 469,
+ 1
+ ],
+ [
+ 470,
+ 1
+ ],
+ [
+ 471,
+ 1
+ ],
+ [
+ 472,
+ 1
+ ],
+ [
+ 473,
+ 1
+ ],
+ [
+ 474,
+ 1
+ ],
+ [
+ 475,
+ 1
+ ],
+ [
+ 476,
+ 1
+ ],
+ [
+ 477,
+ 1
+ ],
+ [
+ 478,
+ 1
+ ],
+ [
+ 479,
+ 1
+ ],
+ [
+ 480,
+ 1
+ ],
+ [
+ 481,
+ 1
+ ],
+ [
+ 482,
+ 1
+ ],
+ [
+ 483,
+ 1
+ ],
+ [
+ 484,
+ 1
+ ],
+ [
+ 485,
+ 1
+ ],
+ [
+ 486,
+ 1
+ ],
+ [
+ 487,
+ 1
+ ],
+ [
+ 488,
+ 1
+ ],
+ [
+ 489,
+ 1
+ ],
+ [
+ 490,
+ 1
+ ],
+ [
+ 491,
+ 1
+ ],
+ [
+ 492,
+ 1
+ ],
+ [
+ 493,
+ 1
+ ],
+ [
+ 494,
+ 1
+ ],
+ [
+ 495,
+ 1
+ ],
+ [
+ 496,
+ 1
+ ],
+ [
+ 497,
+ 1
+ ],
+ [
+ 498,
+ 1
+ ],
+ [
+ 499,
+ 1
+ ],
+ [
+ 500,
+ 1
+ ],
+ [
+ 501,
+ 1
+ ],
+ [
+ 502,
+ 1
+ ],
+ [
+ 503,
+ 1
+ ],
+ [
+ 504,
+ 1
+ ],
+ [
+ 505,
+ 1
+ ],
+ [
+ 506,
+ 1
+ ],
+ [
+ 507,
+ 1
+ ],
+ [
+ 508,
+ 1
+ ],
+ [
+ 509,
+ 1
+ ],
+ [
+ 510,
+ 1
+ ],
+ [
+ 511,
+ 1
+ ],
+ [
+ 512,
+ 1
+ ],
+ [
+ 513,
+ 1
+ ],
+ [
+ 514,
+ 1
+ ],
+ [
+ 515,
+ 1
+ ],
+ [
+ 516,
+ 1
+ ],
+ [
+ 517,
+ 1
+ ],
+ [
+ 518,
+ 1
+ ],
+ [
+ 519,
+ 1
+ ],
+ [
+ 520,
+ 1
+ ],
+ [
+ 521,
+ 1
+ ],
+ [
+ 522,
+ 1
+ ],
+ [
+ 523,
+ 1
+ ],
+ [
+ 524,
+ 1
+ ],
+ [
+ 525,
+ 1
+ ],
+ [
+ 526,
+ 1
+ ],
+ [
+ 527,
+ 1
+ ],
+ [
+ 528,
+ 1
+ ],
+ [
+ 529,
+ 1
+ ],
+ [
+ 530,
+ 1
+ ],
+ [
+ 531,
+ 1
+ ],
+ [
+ 532,
+ 1
+ ],
+ [
+ 533,
+ 1
+ ],
+ [
+ 534,
+ 1
+ ],
+ [
+ 535,
+ 1
+ ],
+ [
+ 536,
+ 1
+ ],
+ [
+ 537,
+ 1
+ ],
+ [
+ 538,
+ 1
+ ],
+ [
+ 539,
+ 1
+ ],
+ [
+ 540,
+ 1
+ ],
+ [
+ 541,
+ 1
+ ],
+ [
+ 542,
+ 1
+ ],
+ [
+ 543,
+ 1
+ ],
+ [
+ 544,
+ 1
+ ],
+ [
+ 545,
+ 1
+ ],
+ [
+ 546,
+ 1
+ ],
+ [
+ 547,
+ 1
+ ],
+ [
+ 548,
+ 1
+ ],
+ [
+ 549,
+ 1
+ ],
+ [
+ 550,
+ 1
+ ],
+ [
+ 551,
+ 1
+ ],
+ [
+ 552,
+ 1
+ ],
+ [
+ 553,
+ 1
+ ],
+ [
+ 554,
+ 1
+ ],
+ [
+ 555,
+ 1
+ ],
+ [
+ 556,
+ 1
+ ],
+ [
+ 557,
+ 1
+ ],
+ [
+ 558,
+ 1
+ ],
+ [
+ 559,
+ 1
+ ],
+ [
+ 560,
+ 1
+ ],
+ [
+ 561,
+ 1
+ ],
+ [
+ 562,
+ 1
+ ],
+ [
+ 563,
+ 1
+ ],
+ [
+ 564,
+ 1
+ ],
+ [
+ 565,
+ 1
+ ],
+ [
+ 566,
+ 1
+ ],
+ [
+ 567,
+ 1
+ ],
+ [
+ 568,
+ 1
+ ],
+ [
+ 569,
+ 1
+ ],
+ [
+ 570,
+ 1
+ ],
+ [
+ 571,
+ 1
+ ],
+ [
+ 572,
+ 1
+ ],
+ [
+ 573,
+ 1
+ ],
+ [
+ 574,
+ 1
+ ],
+ [
+ 575,
+ 1
+ ],
+ [
+ 576,
+ 1
+ ],
+ [
+ 577,
+ 1
+ ],
+ [
+ 578,
+ 1
+ ],
+ [
+ 579,
+ 1
+ ],
+ [
+ 580,
+ 1
+ ],
+ [
+ 581,
+ 1
+ ],
+ [
+ 582,
+ 1
+ ],
+ [
+ 583,
+ 1
+ ],
+ [
+ 584,
+ 1
+ ],
+ [
+ 585,
+ 1
+ ],
+ [
+ 586,
+ 1
+ ],
+ [
+ 587,
+ 1
+ ],
+ [
+ 588,
+ 1
+ ],
+ [
+ 589,
+ 1
+ ],
+ [
+ 590,
+ 1
+ ],
+ [
+ 591,
+ 1
+ ],
+ [
+ 592,
+ 1
+ ],
+ [
+ 593,
+ 1
+ ],
+ [
+ 594,
+ 1
+ ],
+ [
+ 595,
+ 1
+ ],
+ [
+ 596,
+ 1
+ ],
+ [
+ 597,
+ 1
+ ],
+ [
+ 598,
+ 1
+ ],
+ [
+ 599,
+ 1
+ ],
+ [
+ 600,
+ 1
+ ],
+ [
+ 601,
+ 1
+ ],
+ [
+ 602,
+ 1
+ ],
+ [
+ 603,
+ 1
+ ],
+ [
+ 604,
+ 1
+ ],
+ [
+ 605,
+ 1
+ ],
+ [
+ 606,
+ 1
+ ],
+ [
+ 607,
+ 1
+ ],
+ [
+ 608,
+ 1
+ ],
+ [
+ 609,
+ 1
+ ],
+ [
+ 610,
+ 1
+ ],
+ [
+ 611,
+ 1
+ ],
+ [
+ 612,
+ 1
+ ],
+ [
+ 613,
+ 1
+ ],
+ [
+ 614,
+ 1
+ ],
+ [
+ 615,
+ 1
+ ],
+ [
+ 616,
+ 1
+ ],
+ [
+ 617,
+ 1
+ ],
+ [
+ 618,
+ 1
+ ],
+ [
+ 619,
+ 1
+ ],
+ [
+ 620,
+ 1
+ ],
+ [
+ 621,
+ 1
+ ],
+ [
+ 622,
+ 1
+ ],
+ [
+ 623,
+ 1
+ ],
+ [
+ 624,
+ 1
+ ],
+ [
+ 625,
+ 1
+ ],
+ [
+ 626,
+ 1
+ ],
+ [
+ 627,
+ 1
+ ],
+ [
+ 628,
+ 1
+ ],
+ [
+ 629,
+ 1
+ ],
+ [
+ 630,
+ 1
+ ],
+ [
+ 631,
+ 1
+ ],
+ [
+ 632,
+ 1
+ ],
+ [
+ 633,
+ 1
+ ],
+ [
+ 634,
+ 1
+ ],
+ [
+ 635,
+ 1
+ ],
+ [
+ 636,
+ 1
+ ],
+ [
+ 637,
+ 1
+ ],
+ [
+ 638,
+ 1
+ ],
+ [
+ 639,
+ 1
+ ],
+ [
+ 640,
+ 1
+ ],
+ [
+ 641,
+ 1
+ ],
+ [
+ 642,
+ 1
+ ],
+ [
+ 643,
+ 1
+ ],
+ [
+ 644,
+ 1
+ ],
+ [
+ 645,
+ 1
+ ],
+ [
+ 646,
+ 1
+ ],
+ [
+ 647,
+ 1
+ ],
+ [
+ 648,
+ 1
+ ],
+ [
+ 649,
+ 1
+ ],
+ [
+ 650,
+ 1
+ ],
+ [
+ 651,
+ 1
+ ],
+ [
+ 652,
+ 1
+ ],
+ [
+ 653,
+ 1
+ ],
+ [
+ 654,
+ 1
+ ],
+ [
+ 655,
+ 1
+ ],
+ [
+ 656,
+ 1
+ ],
+ [
+ 657,
+ 1
+ ],
+ [
+ 658,
+ 1
+ ],
+ [
+ 659,
+ 1
+ ],
+ [
+ 660,
+ 1
+ ],
+ [
+ 661,
+ 1
+ ],
+ [
+ 662,
+ 1
+ ],
+ [
+ 663,
+ 1
+ ],
+ [
+ 664,
+ 1
+ ],
+ [
+ 665,
+ 1
+ ],
+ [
+ 666,
+ 1
+ ],
+ [
+ 667,
+ 1
+ ],
+ [
+ 668,
+ 1
+ ],
+ [
+ 669,
+ 1
+ ],
+ [
+ 670,
+ 1
+ ],
+ [
+ 671,
+ 1
+ ],
+ [
+ 672,
+ 1
+ ],
+ [
+ 673,
+ 1
+ ],
+ [
+ 674,
+ 1
+ ],
+ [
+ 675,
+ 1
+ ],
+ [
+ 676,
+ 1
+ ],
+ [
+ 677,
+ 1
+ ],
+ [
+ 678,
+ 1
+ ],
+ [
+ 679,
+ 1
+ ],
+ [
+ 680,
+ 1
+ ],
+ [
+ 681,
+ 1
+ ],
+ [
+ 682,
+ 1
+ ],
+ [
+ 683,
+ 1
+ ],
+ [
+ 684,
+ 1
+ ],
+ [
+ 685,
+ 1
+ ],
+ [
+ 686,
+ 1
+ ],
+ [
+ 687,
+ 1
+ ],
+ [
+ 688,
+ 1
+ ],
+ [
+ 689,
+ 1
+ ],
+ [
+ 690,
+ 1
+ ],
+ [
+ 691,
+ 1
+ ],
+ [
+ 692,
+ 1
+ ],
+ [
+ 693,
+ 1
+ ],
+ [
+ 694,
+ 1
+ ],
+ [
+ 695,
+ 1
+ ],
+ [
+ 696,
+ 1
+ ],
+ [
+ 697,
+ 1
+ ],
+ [
+ 698,
+ 1
+ ],
+ [
+ 699,
+ 1
+ ],
+ [
+ 700,
+ 1
+ ],
+ [
+ 701,
+ 1
+ ],
+ [
+ 702,
+ 1
+ ],
+ [
+ 703,
+ 1
+ ],
+ [
+ 704,
+ 1
+ ],
+ [
+ 705,
+ 1
+ ],
+ [
+ 706,
+ 1
+ ],
+ [
+ 707,
+ 1
+ ],
+ [
+ 708,
+ 1
+ ],
+ [
+ 709,
+ 1
+ ],
+ [
+ 710,
+ 1
+ ],
+ [
+ 711,
+ 1
+ ],
+ [
+ 712,
+ 1
+ ],
+ [
+ 713,
+ 1
+ ],
+ [
+ 714,
+ 1
+ ],
+ [
+ 715,
+ 1
+ ],
+ [
+ 716,
+ 1
+ ],
+ [
+ 717,
+ 1
+ ],
+ [
+ 718,
+ 1
+ ],
+ [
+ 719,
+ 1
+ ],
+ [
+ 720,
+ 1
+ ],
+ [
+ 721,
+ 1
+ ],
+ [
+ 722,
+ 1
+ ],
+ [
+ 723,
+ 1
+ ],
+ [
+ 724,
+ 1
+ ],
+ [
+ 725,
+ 1
+ ],
+ [
+ 726,
+ 1
+ ],
+ [
+ 727,
+ 1
+ ],
+ [
+ 728,
+ 1
+ ],
+ [
+ 729,
+ 1
+ ],
+ [
+ 730,
+ 1
+ ],
+ [
+ 731,
+ 1
+ ],
+ [
+ 732,
+ 1
+ ],
+ [
+ 733,
+ 1
+ ],
+ [
+ 734,
+ 1
+ ],
+ [
+ 735,
+ 1
+ ],
+ [
+ 736,
+ 1
+ ],
+ [
+ 737,
+ 1
+ ],
+ [
+ 738,
+ 1
+ ],
+ [
+ 739,
+ 1
+ ],
+ [
+ 740,
+ 1
+ ],
+ [
+ 741,
+ 1
+ ],
+ [
+ 742,
+ 1
+ ],
+ [
+ 743,
+ 1
+ ],
+ [
+ 744,
+ 1
+ ],
+ [
+ 745,
+ 1
+ ],
+ [
+ 746,
+ 1
+ ],
+ [
+ 747,
+ 1
+ ],
+ [
+ 748,
+ 1
+ ],
+ [
+ 749,
+ 1
+ ],
+ [
+ 750,
+ 1
+ ],
+ [
+ 751,
+ 1
+ ],
+ [
+ 752,
+ 1
+ ],
+ [
+ 753,
+ 1
+ ],
+ [
+ 754,
+ 1
+ ],
+ [
+ 755,
+ 1
+ ],
+ [
+ 756,
+ 1
+ ],
+ [
+ 757,
+ 1
+ ],
+ [
+ 758,
+ 1
+ ],
+ [
+ 759,
+ 1
+ ],
+ [
+ 760,
+ 1
+ ],
+ [
+ 761,
+ 1
+ ],
+ [
+ 762,
+ 1
+ ],
+ [
+ 763,
+ 1
+ ],
+ [
+ 764,
+ 1
+ ],
+ [
+ 765,
+ 1
+ ],
+ [
+ 766,
+ 1
+ ],
+ [
+ 767,
+ 1
+ ],
+ [
+ 768,
+ 1
+ ],
+ [
+ 769,
+ 1
+ ],
+ [
+ 770,
+ 1
+ ],
+ [
+ 771,
+ 1
+ ],
+ [
+ 772,
+ 1
+ ],
+ [
+ 773,
+ 1
+ ],
+ [
+ 774,
+ 1
+ ],
+ [
+ 775,
+ 1
+ ],
+ [
+ 776,
+ 1
+ ],
+ [
+ 777,
+ 1
+ ],
+ [
+ 778,
+ 1
+ ],
+ [
+ 779,
+ 1
+ ],
+ [
+ 780,
+ 1
+ ],
+ [
+ 781,
+ 1
+ ],
+ [
+ 782,
+ 1
+ ],
+ [
+ 783,
+ 1
+ ],
+ [
+ 784,
+ 1
+ ],
+ [
+ 785,
+ 1
+ ],
+ [
+ 786,
+ 1
+ ],
+ [
+ 787,
+ 1
+ ],
+ [
+ 788,
+ 1
+ ],
+ [
+ 789,
+ 1
+ ],
+ [
+ 790,
+ 1
+ ],
+ [
+ 791,
+ 1
+ ],
+ [
+ 792,
+ 1
+ ],
+ [
+ 793,
+ 1
+ ],
+ [
+ 794,
+ 1
+ ],
+ [
+ 795,
+ 1
+ ],
+ [
+ 796,
+ 1
+ ],
+ [
+ 797,
+ 1
+ ],
+ [
+ 798,
+ 1
+ ],
+ [
+ 799,
+ 1
+ ],
+ [
+ 800,
+ 1
+ ],
+ [
+ 801,
+ 1
+ ],
+ [
+ 802,
+ 1
+ ],
+ [
+ 803,
+ 1
+ ],
+ [
+ 804,
+ 1
+ ],
+ [
+ 805,
+ 1
+ ],
+ [
+ 806,
+ 1
+ ],
+ [
+ 807,
+ 1
+ ],
+ [
+ 808,
+ 1
+ ],
+ [
+ 809,
+ 1
+ ],
+ [
+ 810,
+ 1
+ ],
+ [
+ 811,
+ 1
+ ],
+ [
+ 812,
+ 1
+ ],
+ [
+ 813,
+ 1
+ ],
+ [
+ 814,
+ 1
+ ],
+ [
+ 815,
+ 1
+ ],
+ [
+ 816,
+ 1
+ ],
+ [
+ 817,
+ 1
+ ],
+ [
+ 818,
+ 1
+ ],
+ [
+ 819,
+ 1
+ ],
+ [
+ 820,
+ 1
+ ],
+ [
+ 821,
+ 1
+ ],
+ [
+ 822,
+ 1
+ ],
+ [
+ 823,
+ 1
+ ],
+ [
+ 824,
+ 1
+ ],
+ [
+ 825,
+ 1
+ ],
+ [
+ 826,
+ 1
+ ],
+ [
+ 827,
+ 1
+ ],
+ [
+ 828,
+ 1
+ ],
+ [
+ 829,
+ 1
+ ],
+ [
+ 830,
+ 1
+ ],
+ [
+ 831,
+ 1
+ ],
+ [
+ 832,
+ 1
+ ],
+ [
+ 833,
+ 1
+ ],
+ [
+ 834,
+ 1
+ ],
+ [
+ 835,
+ 1
+ ],
+ [
+ 836,
+ 1
+ ],
+ [
+ 837,
+ 1
+ ],
+ [
+ 838,
+ 1
+ ],
+ [
+ 839,
+ 1
+ ],
+ [
+ 840,
+ 1
+ ],
+ [
+ 841,
+ 1
+ ],
+ [
+ 842,
+ 1
+ ],
+ [
+ 843,
+ 1
+ ],
+ [
+ 844,
+ 1
+ ],
+ [
+ 845,
+ 1
+ ],
+ [
+ 846,
+ 1
+ ],
+ [
+ 847,
+ 1
+ ],
+ [
+ 848,
+ 1
+ ],
+ [
+ 849,
+ 1
+ ],
+ [
+ 850,
+ 1
+ ],
+ [
+ 851,
+ 1
+ ],
+ [
+ 852,
+ 1
+ ],
+ [
+ 853,
+ 1
+ ],
+ [
+ 854,
+ 1
+ ],
+ [
+ 855,
+ 1
+ ],
+ [
+ 856,
+ 1
+ ],
+ [
+ 857,
+ 1
+ ],
+ [
+ 858,
+ 1
+ ],
+ [
+ 859,
+ 1
+ ],
+ [
+ 860,
+ 1
+ ],
+ [
+ 861,
+ 1
+ ],
+ [
+ 862,
+ 1
+ ],
+ [
+ 863,
+ 1
+ ],
+ [
+ 864,
+ 1
+ ],
+ [
+ 865,
+ 1
+ ],
+ [
+ 866,
+ 1
+ ],
+ [
+ 867,
+ 1
+ ],
+ [
+ 868,
+ 1
+ ],
+ [
+ 869,
+ 1
+ ],
+ [
+ 870,
+ 1
+ ],
+ [
+ 871,
+ 1
+ ],
+ [
+ 872,
+ 1
+ ],
+ [
+ 873,
+ 1
+ ],
+ [
+ 874,
+ 1
+ ],
+ [
+ 875,
+ 1
+ ],
+ [
+ 876,
+ 1
+ ],
+ [
+ 877,
+ 1
+ ],
+ [
+ 878,
+ 1
+ ],
+ [
+ 879,
+ 1
+ ],
+ [
+ 880,
+ 1
+ ],
+ [
+ 881,
+ 1
+ ],
+ [
+ 882,
+ 1
+ ],
+ [
+ 883,
+ 1
+ ],
+ [
+ 884,
+ 1
+ ],
+ [
+ 885,
+ 1
+ ],
+ [
+ 886,
+ 1
+ ],
+ [
+ 887,
+ 1
+ ],
+ [
+ 888,
+ 1
+ ],
+ [
+ 889,
+ 1
+ ],
+ [
+ 890,
+ 1
+ ],
+ [
+ 891,
+ 1
+ ],
+ [
+ 892,
+ 1
+ ],
+ [
+ 893,
+ 1
+ ],
+ [
+ 894,
+ 1
+ ],
+ [
+ 895,
+ 1
+ ],
+ [
+ 896,
+ 1
+ ],
+ [
+ 897,
+ 1
+ ],
+ [
+ 898,
+ 1
+ ],
+ [
+ 899,
+ 1
+ ],
+ [
+ 900,
+ 1
+ ],
+ [
+ 901,
+ 1
+ ],
+ [
+ 902,
+ 1
+ ],
+ [
+ 903,
+ 1
+ ],
+ [
+ 904,
+ 1
+ ],
+ [
+ 905,
+ 1
+ ],
+ [
+ 906,
+ 1
+ ],
+ [
+ 907,
+ 1
+ ],
+ [
+ 908,
+ 1
+ ],
+ [
+ 909,
+ 1
+ ],
+ [
+ 910,
+ 1
+ ],
+ [
+ 911,
+ 1
+ ],
+ [
+ 912,
+ 1
+ ],
+ [
+ 913,
+ 1
+ ],
+ [
+ 914,
+ 1
+ ],
+ [
+ 915,
+ 1
+ ],
+ [
+ 916,
+ 1
+ ],
+ [
+ 917,
+ 1
+ ],
+ [
+ 918,
+ 1
+ ],
+ [
+ 919,
+ 1
+ ],
+ [
+ 920,
+ 1
+ ],
+ [
+ 921,
+ 1
+ ],
+ [
+ 922,
+ 1
+ ],
+ [
+ 923,
+ 1
+ ],
+ [
+ 924,
+ 1
+ ],
+ [
+ 925,
+ 1
+ ],
+ [
+ 926,
+ 1
+ ],
+ [
+ 927,
+ 1
+ ],
+ [
+ 928,
+ 1
+ ],
+ [
+ 929,
+ 1
+ ],
+ [
+ 930,
+ 1
+ ],
+ [
+ 931,
+ 1
+ ],
+ [
+ 932,
+ 1
+ ],
+ [
+ 933,
+ 1
+ ],
+ [
+ 934,
+ 1
+ ],
+ [
+ 935,
+ 1
+ ],
+ [
+ 936,
+ 1
+ ],
+ [
+ 937,
+ 1
+ ],
+ [
+ 938,
+ 1
+ ],
+ [
+ 939,
+ 1
+ ],
+ [
+ 940,
+ 1
+ ],
+ [
+ 941,
+ 1
+ ],
+ [
+ 942,
+ 1
+ ],
+ [
+ 943,
+ 1
+ ],
+ [
+ 944,
+ 1
+ ],
+ [
+ 945,
+ 1
+ ],
+ [
+ 946,
+ 1
+ ],
+ [
+ 947,
+ 1
+ ],
+ [
+ 948,
+ 1
+ ],
+ [
+ 949,
+ 1
+ ],
+ [
+ 950,
+ 1
+ ],
+ [
+ 951,
+ 1
+ ],
+ [
+ 952,
+ 1
+ ],
+ [
+ 953,
+ 1
+ ],
+ [
+ 954,
+ 1
+ ],
+ [
+ 955,
+ 1
+ ],
+ [
+ 956,
+ 1
+ ],
+ [
+ 957,
+ 1
+ ],
+ [
+ 958,
+ 1
+ ],
+ [
+ 959,
+ 1
+ ],
+ [
+ 960,
+ 1
+ ],
+ [
+ 961,
+ 1
+ ],
+ [
+ 962,
+ 1
+ ],
+ [
+ 963,
+ 1
+ ],
+ [
+ 964,
+ 1
+ ],
+ [
+ 965,
+ 1
+ ],
+ [
+ 966,
+ 1
+ ],
+ [
+ 967,
+ 1
+ ],
+ [
+ 968,
+ 1
+ ],
+ [
+ 969,
+ 1
+ ],
+ [
+ 970,
+ 1
+ ],
+ [
+ 971,
+ 1
+ ],
+ [
+ 972,
+ 1
+ ],
+ [
+ 973,
+ 1
+ ],
+ [
+ 974,
+ 1
+ ],
+ [
+ 975,
+ 1
+ ],
+ [
+ 976,
+ 1
+ ],
+ [
+ 977,
+ 1
+ ],
+ [
+ 978,
+ 1
+ ],
+ [
+ 979,
+ 1
+ ],
+ [
+ 980,
+ 1
+ ],
+ [
+ 981,
+ 1
+ ],
+ [
+ 982,
+ 1
+ ],
+ [
+ 983,
+ 1
+ ],
+ [
+ 984,
+ 1
+ ],
+ [
+ 985,
+ 1
+ ],
+ [
+ 986,
+ 1
+ ],
+ [
+ 987,
+ 1
+ ],
+ [
+ 988,
+ 1
+ ],
+ [
+ 989,
+ 1
+ ],
+ [
+ 990,
+ 1
+ ],
+ [
+ 991,
+ 1
+ ],
+ [
+ 992,
+ 1
+ ],
+ [
+ 993,
+ 1
+ ],
+ [
+ 994,
+ 1
+ ],
+ [
+ 995,
+ 1
+ ],
+ [
+ 996,
+ 1
+ ],
+ [
+ 997,
+ 1
+ ],
+ [
+ 998,
+ 1
+ ],
+ [
+ 999,
+ 1
+ ],
+ [
+ 1000,
+ 1
+ ],
+ [
+ 1001,
+ 1
+ ],
+ [
+ 1002,
+ 1
+ ],
+ [
+ 1003,
+ 1
+ ],
+ [
+ 1004,
+ 1
+ ],
+ [
+ 1005,
+ 1
+ ],
+ [
+ 1006,
+ 1
+ ],
+ [
+ 1007,
+ 1
+ ],
+ [
+ 1008,
+ 1
+ ],
+ [
+ 1009,
+ 1
+ ],
+ [
+ 1010,
+ 1
+ ],
+ [
+ 1011,
+ 1
+ ],
+ [
+ 1012,
+ 1
+ ],
+ [
+ 1013,
+ 1
+ ],
+ [
+ 1014,
+ 1
+ ],
+ [
+ 1015,
+ 1
+ ],
+ [
+ 1016,
+ 1
+ ],
+ [
+ 1017,
+ 1
+ ],
+ [
+ 1018,
+ 1
+ ],
+ [
+ 1019,
+ 1
+ ],
+ [
+ 1020,
+ 1
+ ],
+ [
+ 1021,
+ 1
+ ],
+ [
+ 1022,
+ 1
+ ],
+ [
+ 1023,
+ 1
+ ],
+ [
+ 1024,
+ 1
+ ],
+ [
+ 1025,
+ 1
+ ],
+ [
+ 1026,
+ 1
+ ],
+ [
+ 1027,
+ 1
+ ],
+ [
+ 1028,
+ 1
+ ],
+ [
+ 1029,
+ 1
+ ],
+ [
+ 1030,
+ 1
+ ],
+ [
+ 1031,
+ 1
+ ],
+ [
+ 1032,
+ 1
+ ],
+ [
+ 1033,
+ 1
+ ],
+ [
+ 1034,
+ 1
+ ],
+ [
+ 1035,
+ 1
+ ],
+ [
+ 1036,
+ 1
+ ],
+ [
+ 1037,
+ 1
+ ],
+ [
+ 1038,
+ 1
+ ],
+ [
+ 1039,
+ 1
+ ],
+ [
+ 1040,
+ 1
+ ],
+ [
+ 1041,
+ 1
+ ],
+ [
+ 1042,
+ 1
+ ],
+ [
+ 1043,
+ 1
+ ],
+ [
+ 1044,
+ 1
+ ],
+ [
+ 1045,
+ 1
+ ],
+ [
+ 1046,
+ 1
+ ],
+ [
+ 1047,
+ 1
+ ],
+ [
+ 1048,
+ 1
+ ],
+ [
+ 1049,
+ 1
+ ],
+ [
+ 1050,
+ 1
+ ],
+ [
+ 1051,
+ 1
+ ],
+ [
+ 1052,
+ 1
+ ],
+ [
+ 1053,
+ 1
+ ],
+ [
+ 1054,
+ 1
+ ],
+ [
+ 1055,
+ 1
+ ],
+ [
+ 1056,
+ 1
+ ],
+ [
+ 1057,
+ 1
+ ],
+ [
+ 1058,
+ 1
+ ],
+ [
+ 1059,
+ 1
+ ],
+ [
+ 1060,
+ 1
+ ],
+ [
+ 1061,
+ 1
+ ],
+ [
+ 1062,
+ 1
+ ],
+ [
+ 1063,
+ 1
+ ],
+ [
+ 1064,
+ 1
+ ],
+ [
+ 1065,
+ 1
+ ],
+ [
+ 1066,
+ 1
+ ],
+ [
+ 1067,
+ 1
+ ],
+ [
+ 1068,
+ 1
+ ],
+ [
+ 1069,
+ 1
+ ],
+ [
+ 1070,
+ 1
+ ],
+ [
+ 1071,
+ 1
+ ],
+ [
+ 1072,
+ 1
+ ],
+ [
+ 1073,
+ 1
+ ],
+ [
+ 1074,
+ 1
+ ],
+ [
+ 1075,
+ 1
+ ],
+ [
+ 1076,
+ 1
+ ],
+ [
+ 1077,
+ 1
+ ],
+ [
+ 1078,
+ 1
+ ],
+ [
+ 1079,
+ 1
+ ],
+ [
+ 1080,
+ 1
+ ],
+ [
+ 1081,
+ 1
+ ],
+ [
+ 1082,
+ 1
+ ],
+ [
+ 1083,
+ 1
+ ],
+ [
+ 1084,
+ 1
+ ],
+ [
+ 1085,
+ 1
+ ],
+ [
+ 1086,
+ 1
+ ],
+ [
+ 1087,
+ 1
+ ],
+ [
+ 1088,
+ 1
+ ],
+ [
+ 1089,
+ 1
+ ],
+ [
+ 1090,
+ 1
+ ],
+ [
+ 1091,
+ 1
+ ],
+ [
+ 1092,
+ 1
+ ],
+ [
+ 1093,
+ 1
+ ],
+ [
+ 1094,
+ 1
+ ],
+ [
+ 1095,
+ 1
+ ],
+ [
+ 1096,
+ 1
+ ],
+ [
+ 1097,
+ 1
+ ],
+ [
+ 1098,
+ 1
+ ],
+ [
+ 1099,
+ 1
+ ],
+ [
+ 1100,
+ 1
+ ],
+ [
+ 1101,
+ 1
+ ],
+ [
+ 1102,
+ 1
+ ],
+ [
+ 1103,
+ 1
+ ],
+ [
+ 1104,
+ 1
+ ],
+ [
+ 1105,
+ 1
+ ],
+ [
+ 1106,
+ 1
+ ],
+ [
+ 1107,
+ 1
+ ],
+ [
+ 1108,
+ 1
+ ],
+ [
+ 1109,
+ 1
+ ],
+ [
+ 1110,
+ 1
+ ],
+ [
+ 1111,
+ 1
+ ],
+ [
+ 1112,
+ 1
+ ],
+ [
+ 1113,
+ 1
+ ],
+ [
+ 1114,
+ 1
+ ],
+ [
+ 1115,
+ 1
+ ],
+ [
+ 1116,
+ 1
+ ],
+ [
+ 1117,
+ 1
+ ],
+ [
+ 1118,
+ 1
+ ],
+ [
+ 1119,
+ 1
+ ],
+ [
+ 1120,
+ 1
+ ],
+ [
+ 1121,
+ 1
+ ],
+ [
+ 1122,
+ 1
+ ],
+ [
+ 1123,
+ 1
+ ],
+ [
+ 1124,
+ 1
+ ],
+ [
+ 1125,
+ 1
+ ],
+ [
+ 1126,
+ 1
+ ],
+ [
+ 1127,
+ 1
+ ],
+ [
+ 1128,
+ 1
+ ],
+ [
+ 1129,
+ 1
+ ],
+ [
+ 1130,
+ 1
+ ],
+ [
+ 1131,
+ 1
+ ],
+ [
+ 1132,
+ 1
+ ],
+ [
+ 1133,
+ 1
+ ],
+ [
+ 1134,
+ 1
+ ],
+ [
+ 1135,
+ 1
+ ],
+ [
+ 1136,
+ 1
+ ],
+ [
+ 1137,
+ 1
+ ],
+ [
+ 1138,
+ 1
+ ],
+ [
+ 1139,
+ 1
+ ],
+ [
+ 1140,
+ 1
+ ],
+ [
+ 1141,
+ 1
+ ],
+ [
+ 1142,
+ 1
+ ],
+ [
+ 1143,
+ 1
+ ],
+ [
+ 1144,
+ 1
+ ],
+ [
+ 1145,
+ 1
+ ],
+ [
+ 1146,
+ 1
+ ],
+ [
+ 1147,
+ 1
+ ],
+ [
+ 1148,
+ 1
+ ],
+ [
+ 1149,
+ 1
+ ],
+ [
+ 1150,
+ 1
+ ],
+ [
+ 1151,
+ 1
+ ],
+ [
+ 1152,
+ 1
+ ],
+ [
+ 1153,
+ 1
+ ],
+ [
+ 1154,
+ 1
+ ],
+ [
+ 1155,
+ 1
+ ],
+ [
+ 1156,
+ 1
+ ],
+ [
+ 1157,
+ 1
+ ],
+ [
+ 1158,
+ 1
+ ],
+ [
+ 1159,
+ 1
+ ],
+ [
+ 1160,
+ 1
+ ],
+ [
+ 1161,
+ 1
+ ],
+ [
+ 1162,
+ 1
+ ],
+ [
+ 1163,
+ 1
+ ],
+ [
+ 1164,
+ 1
+ ],
+ [
+ 1165,
+ 1
+ ],
+ [
+ 1166,
+ 1
+ ],
+ [
+ 1167,
+ 1
+ ],
+ [
+ 1168,
+ 1
+ ],
+ [
+ 1169,
+ 1
+ ],
+ [
+ 1170,
+ 1
+ ],
+ [
+ 1171,
+ 1
+ ],
+ [
+ 1172,
+ 1
+ ],
+ [
+ 1173,
+ 1
+ ],
+ [
+ 1174,
+ 1
+ ],
+ [
+ 1175,
+ 1
+ ],
+ [
+ 1176,
+ 1
+ ],
+ [
+ 1177,
+ 1
+ ],
+ [
+ 1178,
+ 1
+ ],
+ [
+ 1179,
+ 1
+ ],
+ [
+ 1180,
+ 1
+ ],
+ [
+ 1181,
+ 1
+ ],
+ [
+ 1182,
+ 1
+ ],
+ [
+ 1183,
+ 1
+ ],
+ [
+ 1184,
+ 1
+ ],
+ [
+ 1185,
+ 1
+ ],
+ [
+ 1186,
+ 1
+ ],
+ [
+ 1187,
+ 1
+ ],
+ [
+ 1188,
+ 1
+ ],
+ [
+ 1189,
+ 1
+ ],
+ [
+ 1190,
+ 1
+ ],
+ [
+ 1191,
+ 1
+ ],
+ [
+ 1192,
+ 1
+ ],
+ [
+ 1193,
+ 1
+ ],
+ [
+ 1194,
+ 1
+ ],
+ [
+ 1195,
+ 1
+ ],
+ [
+ 1196,
+ 1
+ ],
+ [
+ 1197,
+ 1
+ ],
+ [
+ 1198,
+ 1
+ ],
+ [
+ 1199,
+ 1
+ ],
+ [
+ 1200,
+ 1
+ ],
+ [
+ 1201,
+ 1
+ ],
+ [
+ 1202,
+ 1
+ ],
+ [
+ 1203,
+ 1
+ ],
+ [
+ 1204,
+ 1
+ ],
+ [
+ 1205,
+ 1
+ ],
+ [
+ 1206,
+ 1
+ ],
+ [
+ 1207,
+ 1
+ ],
+ [
+ 1208,
+ 1
+ ],
+ [
+ 1209,
+ 1
+ ],
+ [
+ 1210,
+ 1
+ ],
+ [
+ 1211,
+ 1
+ ],
+ [
+ 1212,
+ 1
+ ],
+ [
+ 1213,
+ 1
+ ],
+ [
+ 1214,
+ 1
+ ],
+ [
+ 1215,
+ 1
+ ],
+ [
+ 1216,
+ 1
+ ],
+ [
+ 1217,
+ 1
+ ],
+ [
+ 1218,
+ 1
+ ],
+ [
+ 1219,
+ 1
+ ],
+ [
+ 1220,
+ 1
+ ],
+ [
+ 1221,
+ 1
+ ],
+ [
+ 1222,
+ 1
+ ],
+ [
+ 1223,
+ 1
+ ],
+ [
+ 1224,
+ 1
+ ],
+ [
+ 1225,
+ 1
+ ],
+ [
+ 1226,
+ 1
+ ],
+ [
+ 1227,
+ 1
+ ],
+ [
+ 1228,
+ 1
+ ],
+ [
+ 1229,
+ 1
+ ],
+ [
+ 1230,
+ 1
+ ],
+ [
+ 1231,
+ 1
+ ],
+ [
+ 1232,
+ 1
+ ],
+ [
+ 1233,
+ 1
+ ],
+ [
+ 1234,
+ 1
+ ],
+ [
+ 1235,
+ 1
+ ],
+ [
+ 1236,
+ 1
+ ],
+ [
+ 1237,
+ 1
+ ],
+ [
+ 1238,
+ 1
+ ],
+ [
+ 1239,
+ 1
+ ],
+ [
+ 1240,
+ 1
+ ],
+ [
+ 1241,
+ 1
+ ],
+ [
+ 1242,
+ 1
+ ],
+ [
+ 1243,
+ 1
+ ],
+ [
+ 1244,
+ 1
+ ],
+ [
+ 1245,
+ 1
+ ],
+ [
+ 1246,
+ 1
+ ],
+ [
+ 1247,
+ 1
+ ],
+ [
+ 1248,
+ 1
+ ],
+ [
+ 1249,
+ 1
+ ],
+ [
+ 1250,
+ 1
+ ],
+ [
+ 1251,
+ 1
+ ],
+ [
+ 1252,
+ 1
+ ],
+ [
+ 1253,
+ 1
+ ],
+ [
+ 1254,
+ 1
+ ],
+ [
+ 1255,
+ 1
+ ],
+ [
+ 1256,
+ 1
+ ],
+ [
+ 1257,
+ 1
+ ],
+ [
+ 1258,
+ 1
+ ],
+ [
+ 1259,
+ 1
+ ],
+ [
+ 1260,
+ 1
+ ],
+ [
+ 1261,
+ 1
+ ],
+ [
+ 1262,
+ 1
+ ],
+ [
+ 1263,
+ 1
+ ],
+ [
+ 1264,
+ 1
+ ],
+ [
+ 1265,
+ 1
+ ],
+ [
+ 1266,
+ 1
+ ],
+ [
+ 1267,
+ 1
+ ],
+ [
+ 1268,
+ 1
+ ],
+ [
+ 1269,
+ 1
+ ],
+ [
+ 1270,
+ 1
+ ],
+ [
+ 1271,
+ 1
+ ],
+ [
+ 1272,
+ 1
+ ],
+ [
+ 1273,
+ 1
+ ],
+ [
+ 1274,
+ 1
+ ],
+ [
+ 1275,
+ 1
+ ],
+ [
+ 1276,
+ 1
+ ],
+ [
+ 1277,
+ 1
+ ],
+ [
+ 1278,
+ 1
+ ],
+ [
+ 1279,
+ 1
+ ],
+ [
+ 1280,
+ 1
+ ],
+ [
+ 1281,
+ 1
+ ],
+ [
+ 1282,
+ 1
+ ],
+ [
+ 1283,
+ 1
+ ],
+ [
+ 1284,
+ 1
+ ],
+ [
+ 1285,
+ 1
+ ],
+ [
+ 1286,
+ 1
+ ],
+ [
+ 1287,
+ 1
+ ],
+ [
+ 1288,
+ 1
+ ],
+ [
+ 1289,
+ 1
+ ],
+ [
+ 1290,
+ 1
+ ],
+ [
+ 1291,
+ 1
+ ],
+ [
+ 1292,
+ 1
+ ],
+ [
+ 1293,
+ 1
+ ],
+ [
+ 1294,
+ 1
+ ],
+ [
+ 1295,
+ 1
+ ],
+ [
+ 1296,
+ 1
+ ],
+ [
+ 1297,
+ 1
+ ],
+ [
+ 1298,
+ 1
+ ],
+ [
+ 1299,
+ 1
+ ],
+ [
+ 1300,
+ 1
+ ],
+ [
+ 1301,
+ 1
+ ],
+ [
+ 1302,
+ 1
+ ],
+ [
+ 1303,
+ 1
+ ],
+ [
+ 1304,
+ 1
+ ],
+ [
+ 1305,
+ 1
+ ],
+ [
+ 1306,
+ 1
+ ],
+ [
+ 1307,
+ 1
+ ],
+ [
+ 1308,
+ 1
+ ],
+ [
+ 1309,
+ 1
+ ],
+ [
+ 1310,
+ 1
+ ],
+ [
+ 1311,
+ 1
+ ],
+ [
+ 1312,
+ 1
+ ],
+ [
+ 1313,
+ 1
+ ],
+ [
+ 1314,
+ 1
+ ],
+ [
+ 1315,
+ 1
+ ],
+ [
+ 1316,
+ 1
+ ],
+ [
+ 1317,
+ 1
+ ],
+ [
+ 1318,
+ 1
+ ],
+ [
+ 1319,
+ 1
+ ],
+ [
+ 1320,
+ 1
+ ],
+ [
+ 1321,
+ 1
+ ],
+ [
+ 1322,
+ 1
+ ],
+ [
+ 1323,
+ 1
+ ],
+ [
+ 1324,
+ 1
+ ],
+ [
+ 1325,
+ 1
+ ],
+ [
+ 1326,
+ 1
+ ],
+ [
+ 1327,
+ 1
+ ],
+ [
+ 1328,
+ 1
+ ],
+ [
+ 1329,
+ 1
+ ],
+ [
+ 1330,
+ 1
+ ],
+ [
+ 1331,
+ 1
+ ],
+ [
+ 1332,
+ 1
+ ],
+ [
+ 1333,
+ 1
+ ],
+ [
+ 1334,
+ 1
+ ],
+ [
+ 1335,
+ 1
+ ],
+ [
+ 1336,
+ 1
+ ],
+ [
+ 1337,
+ 1
+ ],
+ [
+ 1338,
+ 1
+ ],
+ [
+ 1339,
+ 1
+ ],
+ [
+ 1340,
+ 1
+ ],
+ [
+ 1341,
+ 1
+ ],
+ [
+ 1342,
+ 1
+ ],
+ [
+ 1343,
+ 1
+ ],
+ [
+ 1344,
+ 1
+ ],
+ [
+ 1345,
+ 1
+ ],
+ [
+ 1346,
+ 1
+ ],
+ [
+ 1347,
+ 1
+ ],
+ [
+ 1348,
+ 1
+ ],
+ [
+ 1349,
+ 1
+ ],
+ [
+ 1350,
+ 1
+ ],
+ [
+ 1351,
+ 1
+ ],
+ [
+ 1352,
+ 1
+ ],
+ [
+ 1353,
+ 1
+ ],
+ [
+ 1354,
+ 1
+ ],
+ [
+ 1355,
+ 1
+ ],
+ [
+ 1356,
+ 1
+ ],
+ [
+ 1357,
+ 1
+ ],
+ [
+ 1358,
+ 1
+ ],
+ [
+ 1359,
+ 1
+ ],
+ [
+ 1360,
+ 1
+ ],
+ [
+ 1361,
+ 1
+ ],
+ [
+ 1362,
+ 1
+ ],
+ [
+ 1363,
+ 1
+ ],
+ [
+ 1364,
+ 1
+ ],
+ [
+ 1365,
+ 1
+ ],
+ [
+ 1366,
+ 1
+ ],
+ [
+ 1367,
+ 1
+ ],
+ [
+ 1368,
+ 1
+ ],
+ [
+ 1369,
+ 1
+ ],
+ [
+ 1370,
+ 1
+ ],
+ [
+ 1371,
+ 1
+ ],
+ [
+ 1372,
+ 1
+ ],
+ [
+ 1373,
+ 1
+ ],
+ [
+ 1374,
+ 1
+ ],
+ [
+ 1375,
+ 1
+ ],
+ [
+ 1376,
+ 1
+ ],
+ [
+ 1377,
+ 1
+ ],
+ [
+ 1378,
+ 1
+ ],
+ [
+ 1379,
+ 1
+ ],
+ [
+ 1380,
+ 1
+ ],
+ [
+ 1381,
+ 1
+ ],
+ [
+ 1382,
+ 1
+ ],
+ [
+ 1383,
+ 1
+ ],
+ [
+ 1384,
+ 1
+ ],
+ [
+ 1385,
+ 1
+ ],
+ [
+ 1386,
+ 1
+ ],
+ [
+ 1387,
+ 1
+ ],
+ [
+ 1388,
+ 1
+ ],
+ [
+ 1389,
+ 1
+ ],
+ [
+ 1390,
+ 1
+ ],
+ [
+ 1391,
+ 1
+ ],
+ [
+ 1392,
+ 1
+ ],
+ [
+ 1393,
+ 1
+ ],
+ [
+ 1394,
+ 1
+ ],
+ [
+ 1395,
+ 1
+ ],
+ [
+ 1396,
+ 1
+ ],
+ [
+ 1397,
+ 1
+ ],
+ [
+ 1398,
+ 1
+ ],
+ [
+ 1399,
+ 1
+ ],
+ [
+ 1400,
+ 1
+ ],
+ [
+ 1401,
+ 1
+ ],
+ [
+ 1402,
+ 1
+ ],
+ [
+ 1403,
+ 1
+ ],
+ [
+ 1404,
+ 1
+ ],
+ [
+ 1405,
+ 1
+ ],
+ [
+ 1406,
+ 1
+ ],
+ [
+ 1407,
+ 1
+ ],
+ [
+ 1408,
+ 1
+ ],
+ [
+ 1409,
+ 1
+ ],
+ [
+ 1410,
+ 1
+ ],
+ [
+ 1411,
+ 1
+ ],
+ [
+ 1412,
+ 1
+ ],
+ [
+ 1413,
+ 1
+ ],
+ [
+ 1414,
+ 1
+ ],
+ [
+ 1415,
+ 1
+ ],
+ [
+ 1416,
+ 1
+ ],
+ [
+ 1417,
+ 1
+ ],
+ [
+ 1418,
+ 1
+ ],
+ [
+ 1419,
+ 1
+ ],
+ [
+ 1420,
+ 1
+ ],
+ [
+ 1421,
+ 1
+ ],
+ [
+ 1422,
+ 1
+ ],
+ [
+ 1423,
+ 1
+ ],
+ [
+ 1424,
+ 1
+ ],
+ [
+ 1425,
+ 1
+ ],
+ [
+ 1426,
+ 1
+ ],
+ [
+ 1427,
+ 1
+ ],
+ [
+ 1428,
+ 1
+ ],
+ [
+ 1429,
+ 1
+ ],
+ [
+ 1430,
+ 1
+ ],
+ [
+ 1431,
+ 1
+ ],
+ [
+ 1432,
+ 1
+ ],
+ [
+ 1433,
+ 1
+ ],
+ [
+ 1434,
+ 1
+ ],
+ [
+ 1435,
+ 1
+ ],
+ [
+ 1436,
+ 1
+ ],
+ [
+ 1437,
+ 1
+ ],
+ [
+ 1438,
+ 1
+ ],
+ [
+ 1439,
+ 1
+ ],
+ [
+ 1440,
+ 1
+ ],
+ [
+ 1441,
+ 1
+ ],
+ [
+ 1442,
+ 1
+ ],
+ [
+ 1443,
+ 1
+ ],
+ [
+ 1444,
+ 1
+ ],
+ [
+ 1445,
+ 1
+ ],
+ [
+ 1446,
+ 1
+ ],
+ [
+ 1447,
+ 1
+ ],
+ [
+ 1448,
+ 1
+ ],
+ [
+ 1449,
+ 1
+ ],
+ [
+ 1450,
+ 1
+ ],
+ [
+ 1451,
+ 1
+ ],
+ [
+ 1452,
+ 1
+ ],
+ [
+ 1453,
+ 1
+ ],
+ [
+ 1454,
+ 1
+ ],
+ [
+ 1455,
+ 1
+ ],
+ [
+ 1456,
+ 1
+ ],
+ [
+ 1457,
+ 1
+ ],
+ [
+ 1458,
+ 1
+ ],
+ [
+ 1459,
+ 1
+ ],
+ [
+ 1460,
+ 1
+ ],
+ [
+ 1461,
+ 1
+ ],
+ [
+ 1462,
+ 1
+ ],
+ [
+ 1463,
+ 1
+ ],
+ [
+ 1464,
+ 1
+ ],
+ [
+ 1465,
+ 1
+ ],
+ [
+ 1466,
+ 1
+ ],
+ [
+ 1467,
+ 1
+ ],
+ [
+ 1468,
+ 1
+ ],
+ [
+ 1469,
+ 1
+ ],
+ [
+ 1470,
+ 1
+ ],
+ [
+ 1471,
+ 1
+ ],
+ [
+ 1472,
+ 1
+ ],
+ [
+ 1473,
+ 1
+ ],
+ [
+ 1474,
+ 1
+ ],
+ [
+ 1475,
+ 1
+ ],
+ [
+ 1476,
+ 1
+ ],
+ [
+ 1477,
+ 1
+ ],
+ [
+ 1478,
+ 1
+ ],
+ [
+ 1479,
+ 1
+ ],
+ [
+ 1480,
+ 1
+ ],
+ [
+ 1481,
+ 1
+ ],
+ [
+ 1482,
+ 1
+ ],
+ [
+ 1483,
+ 1
+ ],
+ [
+ 1484,
+ 1
+ ],
+ [
+ 1485,
+ 1
+ ],
+ [
+ 1486,
+ 1
+ ],
+ [
+ 1487,
+ 1
+ ],
+ [
+ 1488,
+ 1
+ ],
+ [
+ 1489,
+ 1
+ ],
+ [
+ 1490,
+ 1
+ ],
+ [
+ 1491,
+ 1
+ ],
+ [
+ 1492,
+ 1
+ ],
+ [
+ 1493,
+ 1
+ ],
+ [
+ 1494,
+ 1
+ ],
+ [
+ 1495,
+ 1
+ ],
+ [
+ 1496,
+ 1
+ ],
+ [
+ 1497,
+ 1
+ ],
+ [
+ 1498,
+ 1
+ ],
+ [
+ 1499,
+ 1
+ ],
+ [
+ 1500,
+ 1
+ ],
+ [
+ 1501,
+ 1
+ ],
+ [
+ 1502,
+ 1
+ ],
+ [
+ 1503,
+ 1
+ ],
+ [
+ 1504,
+ 1
+ ],
+ [
+ 1505,
+ 1
+ ],
+ [
+ 1506,
+ 1
+ ],
+ [
+ 1507,
+ 1
+ ],
+ [
+ 1508,
+ 1
+ ],
+ [
+ 1509,
+ 1
+ ],
+ [
+ 1510,
+ 1
+ ],
+ [
+ 1511,
+ 1
+ ],
+ [
+ 1512,
+ 1
+ ],
+ [
+ 1513,
+ 1
+ ],
+ [
+ 1514,
+ 1
+ ],
+ [
+ 1515,
+ 1
+ ],
+ [
+ 1516,
+ 1
+ ],
+ [
+ 1517,
+ 1
+ ],
+ [
+ 1518,
+ 1
+ ],
+ [
+ 1519,
+ 1
+ ],
+ [
+ 1520,
+ 1
+ ],
+ [
+ 1521,
+ 1
+ ],
+ [
+ 1522,
+ 1
+ ],
+ [
+ 1523,
+ 1
+ ],
+ [
+ 1524,
+ 1
+ ],
+ [
+ 1525,
+ 1
+ ],
+ [
+ 1526,
+ 1
+ ],
+ [
+ 1527,
+ 1
+ ],
+ [
+ 1528,
+ 1
+ ],
+ [
+ 1529,
+ 1
+ ],
+ [
+ 1530,
+ 1
+ ],
+ [
+ 1531,
+ 1
+ ],
+ [
+ 1532,
+ 1
+ ],
+ [
+ 1533,
+ 1
+ ],
+ [
+ 1534,
+ 1
+ ],
+ [
+ 1535,
+ 1
+ ],
+ [
+ 1536,
+ 1
+ ],
+ [
+ 1537,
+ 1
+ ],
+ [
+ 1538,
+ 1
+ ],
+ [
+ 1539,
+ 1
+ ],
+ [
+ 1540,
+ 1
+ ],
+ [
+ 1541,
+ 1
+ ],
+ [
+ 1542,
+ 1
+ ],
+ [
+ 1543,
+ 1
+ ],
+ [
+ 1544,
+ 1
+ ],
+ [
+ 1545,
+ 1
+ ],
+ [
+ 1546,
+ 1
+ ],
+ [
+ 1547,
+ 1
+ ],
+ [
+ 1548,
+ 1
+ ],
+ [
+ 1549,
+ 1
+ ],
+ [
+ 1550,
+ 1
+ ],
+ [
+ 1551,
+ 1
+ ],
+ [
+ 1552,
+ 1
+ ],
+ [
+ 1553,
+ 1
+ ],
+ [
+ 1554,
+ 1
+ ],
+ [
+ 1555,
+ 1
+ ],
+ [
+ 1556,
+ 1
+ ],
+ [
+ 1557,
+ 1
+ ],
+ [
+ 1558,
+ 1
+ ],
+ [
+ 1559,
+ 1
+ ],
+ [
+ 1560,
+ 1
+ ],
+ [
+ 1561,
+ 1
+ ],
+ [
+ 1562,
+ 1
+ ],
+ [
+ 1563,
+ 1
+ ],
+ [
+ 1564,
+ 1
+ ],
+ [
+ 1565,
+ 1
+ ],
+ [
+ 1566,
+ 1
+ ],
+ [
+ 1567,
+ 1
+ ],
+ [
+ 1568,
+ 1
+ ],
+ [
+ 1569,
+ 1
+ ],
+ [
+ 1570,
+ 1
+ ],
+ [
+ 1571,
+ 1
+ ],
+ [
+ 1572,
+ 1
+ ],
+ [
+ 1573,
+ 1
+ ],
+ [
+ 1574,
+ 1
+ ],
+ [
+ 1575,
+ 1
+ ],
+ [
+ 1576,
+ 1
+ ],
+ [
+ 1577,
+ 1
+ ],
+ [
+ 1578,
+ 1
+ ],
+ [
+ 1579,
+ 1
+ ],
+ [
+ 1580,
+ 1
+ ],
+ [
+ 1581,
+ 1
+ ],
+ [
+ 1582,
+ 1
+ ],
+ [
+ 1583,
+ 1
+ ],
+ [
+ 1584,
+ 1
+ ],
+ [
+ 1585,
+ 1
+ ],
+ [
+ 1586,
+ 1
+ ],
+ [
+ 1587,
+ 1
+ ],
+ [
+ 1588,
+ 1
+ ],
+ [
+ 1589,
+ 1
+ ],
+ [
+ 1590,
+ 1
+ ],
+ [
+ 1591,
+ 1
+ ],
+ [
+ 1592,
+ 1
+ ],
+ [
+ 1593,
+ 1
+ ],
+ [
+ 1594,
+ 1
+ ],
+ [
+ 1595,
+ 1
+ ],
+ [
+ 1596,
+ 1
+ ],
+ [
+ 1597,
+ 1
+ ],
+ [
+ 1598,
+ 1
+ ],
+ [
+ 1599,
+ 1
+ ],
+ [
+ 1600,
+ 1
+ ],
+ [
+ 1601,
+ 1
+ ],
+ [
+ 1602,
+ 1
+ ],
+ [
+ 1603,
+ 1
+ ],
+ [
+ 1604,
+ 1
+ ],
+ [
+ 1605,
+ 1
+ ],
+ [
+ 1606,
+ 1
+ ],
+ [
+ 1607,
+ 1
+ ],
+ [
+ 1608,
+ 1
+ ],
+ [
+ 1609,
+ 1
+ ],
+ [
+ 1610,
+ 1
+ ],
+ [
+ 1611,
+ 1
+ ],
+ [
+ 1612,
+ 1
+ ],
+ [
+ 1613,
+ 1
+ ],
+ [
+ 1614,
+ 1
+ ],
+ [
+ 1615,
+ 1
+ ],
+ [
+ 1616,
+ 1
+ ],
+ [
+ 1617,
+ 1
+ ],
+ [
+ 1618,
+ 1
+ ],
+ [
+ 1619,
+ 1
+ ],
+ [
+ 1620,
+ 1
+ ],
+ [
+ 1621,
+ 1
+ ],
+ [
+ 1622,
+ 1
+ ],
+ [
+ 1623,
+ 1
+ ],
+ [
+ 1624,
+ 1
+ ],
+ [
+ 1625,
+ 1
+ ],
+ [
+ 1626,
+ 1
+ ],
+ [
+ 1627,
+ 1
+ ],
+ [
+ 1628,
+ 1
+ ],
+ [
+ 1629,
+ 1
+ ],
+ [
+ 1630,
+ 1
+ ],
+ [
+ 1631,
+ 1
+ ],
+ [
+ 1632,
+ 1
+ ],
+ [
+ 1633,
+ 1
+ ],
+ [
+ 1634,
+ 1
+ ],
+ [
+ 1635,
+ 1
+ ],
+ [
+ 1636,
+ 1
+ ],
+ [
+ 1637,
+ 1
+ ],
+ [
+ 1638,
+ 1
+ ],
+ [
+ 1639,
+ 1
+ ],
+ [
+ 1640,
+ 1
+ ],
+ [
+ 1641,
+ 1
+ ],
+ [
+ 1642,
+ 1
+ ],
+ [
+ 1643,
+ 1
+ ],
+ [
+ 1644,
+ 1
+ ],
+ [
+ 1645,
+ 1
+ ],
+ [
+ 1646,
+ 1
+ ],
+ [
+ 1647,
+ 1
+ ],
+ [
+ 1648,
+ 1
+ ],
+ [
+ 1649,
+ 1
+ ],
+ [
+ 1650,
+ 1
+ ],
+ [
+ 1651,
+ 1
+ ],
+ [
+ 1652,
+ 1
+ ],
+ [
+ 1653,
+ 1
+ ],
+ [
+ 1654,
+ 1
+ ],
+ [
+ 1655,
+ 1
+ ],
+ [
+ 1656,
+ 1
+ ],
+ [
+ 1657,
+ 1
+ ],
+ [
+ 1658,
+ 1
+ ],
+ [
+ 1659,
+ 1
+ ],
+ [
+ 1660,
+ 1
+ ],
+ [
+ 1661,
+ 1
+ ],
+ [
+ 1662,
+ 1
+ ],
+ [
+ 1663,
+ 1
+ ],
+ [
+ 1664,
+ 1
+ ],
+ [
+ 1665,
+ 1
+ ],
+ [
+ 1666,
+ 1
+ ],
+ [
+ 1667,
+ 1
+ ],
+ [
+ 1668,
+ 1
+ ],
+ [
+ 1669,
+ 1
+ ],
+ [
+ 1670,
+ 1
+ ],
+ [
+ 1671,
+ 1
+ ],
+ [
+ 1672,
+ 1
+ ],
+ [
+ 1673,
+ 1
+ ],
+ [
+ 1674,
+ 1
+ ],
+ [
+ 1675,
+ 1
+ ],
+ [
+ 1676,
+ 1
+ ],
+ [
+ 1677,
+ 1
+ ],
+ [
+ 1678,
+ 1
+ ],
+ [
+ 1679,
+ 1
+ ],
+ [
+ 1680,
+ 1
+ ],
+ [
+ 1681,
+ 1
+ ],
+ [
+ 1682,
+ 1
+ ],
+ [
+ 1683,
+ 1
+ ],
+ [
+ 1684,
+ 1
+ ],
+ [
+ 1685,
+ 1
+ ],
+ [
+ 1686,
+ 1
+ ],
+ [
+ 1687,
+ 1
+ ],
+ [
+ 1688,
+ 1
+ ],
+ [
+ 1689,
+ 1
+ ],
+ [
+ 1690,
+ 1
+ ],
+ [
+ 1691,
+ 1
+ ],
+ [
+ 1692,
+ 1
+ ],
+ [
+ 1693,
+ 1
+ ],
+ [
+ 1694,
+ 1
+ ],
+ [
+ 1695,
+ 1
+ ],
+ [
+ 1696,
+ 1
+ ],
+ [
+ 1697,
+ 1
+ ],
+ [
+ 1698,
+ 1
+ ],
+ [
+ 1699,
+ 1
+ ],
+ [
+ 1700,
+ 1
+ ],
+ [
+ 1701,
+ 1
+ ],
+ [
+ 1702,
+ 1
+ ],
+ [
+ 1703,
+ 1
+ ],
+ [
+ 1704,
+ 1
+ ],
+ [
+ 1705,
+ 1
+ ],
+ [
+ 1706,
+ 1
+ ],
+ [
+ 1707,
+ 1
+ ],
+ [
+ 1708,
+ 1
+ ],
+ [
+ 1709,
+ 1
+ ],
+ [
+ 1710,
+ 1
+ ],
+ [
+ 1711,
+ 1
+ ],
+ [
+ 1712,
+ 1
+ ],
+ [
+ 1713,
+ 1
+ ],
+ [
+ 1714,
+ 1
+ ],
+ [
+ 1715,
+ 1
+ ],
+ [
+ 1716,
+ 1
+ ],
+ [
+ 1717,
+ 1
+ ],
+ [
+ 1718,
+ 1
+ ],
+ [
+ 1719,
+ 1
+ ],
+ [
+ 1720,
+ 1
+ ],
+ [
+ 1721,
+ 1
+ ],
+ [
+ 1722,
+ 1
+ ],
+ [
+ 1723,
+ 1
+ ],
+ [
+ 1724,
+ 1
+ ],
+ [
+ 1725,
+ 1
+ ],
+ [
+ 1726,
+ 1
+ ],
+ [
+ 1727,
+ 1
+ ],
+ [
+ 1728,
+ 1
+ ],
+ [
+ 1729,
+ 1
+ ],
+ [
+ 1730,
+ 1
+ ],
+ [
+ 1731,
+ 1
+ ],
+ [
+ 1732,
+ 1
+ ],
+ [
+ 1733,
+ 1
+ ],
+ [
+ 1734,
+ 1
+ ],
+ [
+ 1735,
+ 1
+ ],
+ [
+ 1736,
+ 1
+ ],
+ [
+ 1737,
+ 1
+ ],
+ [
+ 1738,
+ 1
+ ],
+ [
+ 1739,
+ 1
+ ],
+ [
+ 1740,
+ 1
+ ],
+ [
+ 1741,
+ 1
+ ],
+ [
+ 1742,
+ 1
+ ],
+ [
+ 1743,
+ 1
+ ],
+ [
+ 1744,
+ 1
+ ],
+ [
+ 1745,
+ 1
+ ],
+ [
+ 1746,
+ 1
+ ],
+ [
+ 1747,
+ 1
+ ],
+ [
+ 1748,
+ 1
+ ],
+ [
+ 1749,
+ 1
+ ],
+ [
+ 1750,
+ 1
+ ],
+ [
+ 1751,
+ 1
+ ],
+ [
+ 1752,
+ 1
+ ],
+ [
+ 1753,
+ 1
+ ],
+ [
+ 1754,
+ 1
+ ],
+ [
+ 1755,
+ 1
+ ],
+ [
+ 1756,
+ 1
+ ],
+ [
+ 1757,
+ 1
+ ],
+ [
+ 1758,
+ 1
+ ],
+ [
+ 1759,
+ 1
+ ],
+ [
+ 1760,
+ 1
+ ],
+ [
+ 1761,
+ 1
+ ],
+ [
+ 1762,
+ 1
+ ],
+ [
+ 1763,
+ 1
+ ],
+ [
+ 1764,
+ 1
+ ],
+ [
+ 1765,
+ 1
+ ],
+ [
+ 1766,
+ 1
+ ],
+ [
+ 1767,
+ 1
+ ],
+ [
+ 1768,
+ 1
+ ],
+ [
+ 1769,
+ 1
+ ],
+ [
+ 1770,
+ 1
+ ],
+ [
+ 1771,
+ 1
+ ],
+ [
+ 1772,
+ 1
+ ],
+ [
+ 1773,
+ 1
+ ],
+ [
+ 1774,
+ 1
+ ],
+ [
+ 1775,
+ 1
+ ],
+ [
+ 1776,
+ 1
+ ],
+ [
+ 1777,
+ 1
+ ],
+ [
+ 1778,
+ 1
+ ],
+ [
+ 1779,
+ 1
+ ],
+ [
+ 1780,
+ 1
+ ],
+ [
+ 1781,
+ 1
+ ],
+ [
+ 1782,
+ 1
+ ],
+ [
+ 1783,
+ 1
+ ],
+ [
+ 1784,
+ 1
+ ],
+ [
+ 1785,
+ 1
+ ],
+ [
+ 1786,
+ 1
+ ],
+ [
+ 1787,
+ 1
+ ],
+ [
+ 1788,
+ 1
+ ],
+ [
+ 1789,
+ 1
+ ],
+ [
+ 1790,
+ 1
+ ],
+ [
+ 1791,
+ 1
+ ],
+ [
+ 1792,
+ 1
+ ],
+ [
+ 1793,
+ 1
+ ],
+ [
+ 1794,
+ 1
+ ],
+ [
+ 1795,
+ 1
+ ],
+ [
+ 1796,
+ 1
+ ],
+ [
+ 1797,
+ 1
+ ],
+ [
+ 1798,
+ 1
+ ],
+ [
+ 1799,
+ 1
+ ],
+ [
+ 1800,
+ 1
+ ],
+ [
+ 1801,
+ 1
+ ],
+ [
+ 1802,
+ 1
+ ],
+ [
+ 1803,
+ 1
+ ],
+ [
+ 1804,
+ 1
+ ],
+ [
+ 1805,
+ 1
+ ],
+ [
+ 1806,
+ 1
+ ],
+ [
+ 1807,
+ 1
+ ],
+ [
+ 1808,
+ 1
+ ],
+ [
+ 1809,
+ 1
+ ],
+ [
+ 1810,
+ 1
+ ],
+ [
+ 1811,
+ 1
+ ],
+ [
+ 1812,
+ 1
+ ],
+ [
+ 1813,
+ 1
+ ],
+ [
+ 1814,
+ 1
+ ],
+ [
+ 1815,
+ 1
+ ],
+ [
+ 1816,
+ 1
+ ],
+ [
+ 1817,
+ 1
+ ],
+ [
+ 1818,
+ 1
+ ],
+ [
+ 1819,
+ 1
+ ],
+ [
+ 1820,
+ 1
+ ],
+ [
+ 1821,
+ 1
+ ],
+ [
+ 1822,
+ 1
+ ],
+ [
+ 1823,
+ 1
+ ],
+ [
+ 1824,
+ 1
+ ],
+ [
+ 1825,
+ 1
+ ],
+ [
+ 1826,
+ 1
+ ],
+ [
+ 1827,
+ 1
+ ],
+ [
+ 1828,
+ 1
+ ],
+ [
+ 1829,
+ 1
+ ],
+ [
+ 1830,
+ 1
+ ],
+ [
+ 1831,
+ 1
+ ],
+ [
+ 1832,
+ 1
+ ],
+ [
+ 1833,
+ 1
+ ],
+ [
+ 1834,
+ 1
+ ],
+ [
+ 1835,
+ 1
+ ],
+ [
+ 1836,
+ 1
+ ],
+ [
+ 1837,
+ 1
+ ],
+ [
+ 1838,
+ 1
+ ],
+ [
+ 1839,
+ 1
+ ],
+ [
+ 1840,
+ 1
+ ],
+ [
+ 1841,
+ 1
+ ],
+ [
+ 1842,
+ 1
+ ],
+ [
+ 1843,
+ 1
+ ],
+ [
+ 1844,
+ 1
+ ],
+ [
+ 1845,
+ 1
+ ],
+ [
+ 1846,
+ 1
+ ],
+ [
+ 1847,
+ 1
+ ],
+ [
+ 1848,
+ 1
+ ],
+ [
+ 1849,
+ 1
+ ],
+ [
+ 1850,
+ 1
+ ],
+ [
+ 1851,
+ 1
+ ],
+ [
+ 1852,
+ 1
+ ],
+ [
+ 1853,
+ 1
+ ],
+ [
+ 1854,
+ 1
+ ],
+ [
+ 1855,
+ 1
+ ],
+ [
+ 1856,
+ 1
+ ],
+ [
+ 1857,
+ 1
+ ],
+ [
+ 1858,
+ 1
+ ],
+ [
+ 1859,
+ 1
+ ],
+ [
+ 1860,
+ 1
+ ],
+ [
+ 1861,
+ 1
+ ],
+ [
+ 1862,
+ 1
+ ],
+ [
+ 1863,
+ 1
+ ],
+ [
+ 1864,
+ 1
+ ],
+ [
+ 1865,
+ 1
+ ],
+ [
+ 1866,
+ 1
+ ],
+ [
+ 1867,
+ 1
+ ],
+ [
+ 1868,
+ 1
+ ],
+ [
+ 1869,
+ 1
+ ],
+ [
+ 1870,
+ 1
+ ],
+ [
+ 1871,
+ 1
+ ],
+ [
+ 1872,
+ 1
+ ],
+ [
+ 1873,
+ 1
+ ],
+ [
+ 1874,
+ 1
+ ],
+ [
+ 1875,
+ 1
+ ],
+ [
+ 1876,
+ 1
+ ],
+ [
+ 1877,
+ 1
+ ],
+ [
+ 1878,
+ 1
+ ],
+ [
+ 1879,
+ 1
+ ],
+ [
+ 1880,
+ 1
+ ],
+ [
+ 1881,
+ 1
+ ],
+ [
+ 1882,
+ 1
+ ],
+ [
+ 1883,
+ 1
+ ],
+ [
+ 1884,
+ 1
+ ],
+ [
+ 1885,
+ 1
+ ],
+ [
+ 1886,
+ 1
+ ],
+ [
+ 1887,
+ 1
+ ],
+ [
+ 1888,
+ 1
+ ],
+ [
+ 1889,
+ 1
+ ],
+ [
+ 1890,
+ 1
+ ],
+ [
+ 1891,
+ 1
+ ],
+ [
+ 1892,
+ 1
+ ],
+ [
+ 1893,
+ 1
+ ],
+ [
+ 1894,
+ 1
+ ],
+ [
+ 1895,
+ 1
+ ],
+ [
+ 1896,
+ 1
+ ],
+ [
+ 1897,
+ 1
+ ],
+ [
+ 1898,
+ 1
+ ],
+ [
+ 1899,
+ 1
+ ],
+ [
+ 1900,
+ 1
+ ],
+ [
+ 1901,
+ 1
+ ],
+ [
+ 1902,
+ 1
+ ],
+ [
+ 1903,
+ 1
+ ],
+ [
+ 1904,
+ 1
+ ],
+ [
+ 1905,
+ 1
+ ],
+ [
+ 1906,
+ 1
+ ],
+ [
+ 1907,
+ 1
+ ],
+ [
+ 1908,
+ 1
+ ],
+ [
+ 1909,
+ 1
+ ],
+ [
+ 1910,
+ 1
+ ],
+ [
+ 1911,
+ 1
+ ],
+ [
+ 1912,
+ 1
+ ],
+ [
+ 1913,
+ 1
+ ],
+ [
+ 1914,
+ 1
+ ],
+ [
+ 1915,
+ 1
+ ],
+ [
+ 1916,
+ 1
+ ],
+ [
+ 1917,
+ 1
+ ],
+ [
+ 1918,
+ 1
+ ],
+ [
+ 1919,
+ 1
+ ],
+ [
+ 1920,
+ 1
+ ],
+ [
+ 1921,
+ 1
+ ],
+ [
+ 1922,
+ 1
+ ],
+ [
+ 1923,
+ 1
+ ],
+ [
+ 1924,
+ 1
+ ],
+ [
+ 1925,
+ 1
+ ],
+ [
+ 1926,
+ 1
+ ],
+ [
+ 1927,
+ 1
+ ],
+ [
+ 1928,
+ 1
+ ],
+ [
+ 1929,
+ 1
+ ],
+ [
+ 1930,
+ 1
+ ],
+ [
+ 1931,
+ 1
+ ],
+ [
+ 1932,
+ 1
+ ],
+ [
+ 1933,
+ 1
+ ],
+ [
+ 1934,
+ 1
+ ],
+ [
+ 1935,
+ 1
+ ],
+ [
+ 1936,
+ 1
+ ],
+ [
+ 1937,
+ 1
+ ],
+ [
+ 1938,
+ 1
+ ],
+ [
+ 1939,
+ 1
+ ],
+ [
+ 1940,
+ 1
+ ],
+ [
+ 1941,
+ 1
+ ],
+ [
+ 1942,
+ 1
+ ],
+ [
+ 1943,
+ 1
+ ],
+ [
+ 1944,
+ 1
+ ],
+ [
+ 1945,
+ 1
+ ],
+ [
+ 1946,
+ 1
+ ],
+ [
+ 1947,
+ 1
+ ],
+ [
+ 1948,
+ 1
+ ],
+ [
+ 1949,
+ 1
+ ],
+ [
+ 1950,
+ 1
+ ],
+ [
+ 1951,
+ 1
+ ],
+ [
+ 1952,
+ 1
+ ],
+ [
+ 1953,
+ 1
+ ],
+ [
+ 1954,
+ 1
+ ],
+ [
+ 1955,
+ 1
+ ],
+ [
+ 1956,
+ 1
+ ],
+ [
+ 1957,
+ 1
+ ],
+ [
+ 1958,
+ 1
+ ],
+ [
+ 1959,
+ 1
+ ],
+ [
+ 1960,
+ 1
+ ],
+ [
+ 1961,
+ 1
+ ],
+ [
+ 1962,
+ 1
+ ],
+ [
+ 1963,
+ 1
+ ],
+ [
+ 1964,
+ 1
+ ],
+ [
+ 1965,
+ 1
+ ],
+ [
+ 1966,
+ 1
+ ],
+ [
+ 1967,
+ 1
+ ],
+ [
+ 1968,
+ 1
+ ],
+ [
+ 1969,
+ 1
+ ],
+ [
+ 1970,
+ 1
+ ],
+ [
+ 1971,
+ 1
+ ],
+ [
+ 1972,
+ 1
+ ],
+ [
+ 1973,
+ 1
+ ],
+ [
+ 1974,
+ 1
+ ],
+ [
+ 1975,
+ 1
+ ],
+ [
+ 1976,
+ 1
+ ],
+ [
+ 1977,
+ 1
+ ],
+ [
+ 1978,
+ 1
+ ],
+ [
+ 1979,
+ 1
+ ],
+ [
+ 1980,
+ 1
+ ],
+ [
+ 1981,
+ 1
+ ],
+ [
+ 1982,
+ 1
+ ],
+ [
+ 1983,
+ 1
+ ],
+ [
+ 1984,
+ 1
+ ],
+ [
+ 1985,
+ 1
+ ],
+ [
+ 1986,
+ 1
+ ],
+ [
+ 1987,
+ 1
+ ],
+ [
+ 1988,
+ 1
+ ],
+ [
+ 1989,
+ 1
+ ],
+ [
+ 1990,
+ 1
+ ],
+ [
+ 1991,
+ 1
+ ],
+ [
+ 1992,
+ 1
+ ],
+ [
+ 1993,
+ 1
+ ],
+ [
+ 1994,
+ 1
+ ],
+ [
+ 1995,
+ 1
+ ],
+ [
+ 1996,
+ 1
+ ],
+ [
+ 1997,
+ 1
+ ],
+ [
+ 1998,
+ 1
+ ],
+ [
+ 1999,
+ 1
+ ],
+ [
+ 2000,
+ 1
+ ],
+ [
+ 2001,
+ 1
+ ],
+ [
+ 2002,
+ 1
+ ],
+ [
+ 2003,
+ 1
+ ],
+ [
+ 2004,
+ 1
+ ],
+ [
+ 2005,
+ 1
+ ],
+ [
+ 2006,
+ 1
+ ],
+ [
+ 2007,
+ 1
+ ],
+ [
+ 2008,
+ 1
+ ],
+ [
+ 2009,
+ 1
+ ],
+ [
+ 2010,
+ 1
+ ],
+ [
+ 2011,
+ 1
+ ],
+ [
+ 2012,
+ 1
+ ],
+ [
+ 2013,
+ 1
+ ],
+ [
+ 2014,
+ 1
+ ],
+ [
+ 2015,
+ 1
+ ],
+ [
+ 2016,
+ 1
+ ],
+ [
+ 2017,
+ 1
+ ],
+ [
+ 2018,
+ 1
+ ],
+ [
+ 2019,
+ 1
+ ],
+ [
+ 2020,
+ 1
+ ],
+ [
+ 2021,
+ 1
+ ],
+ [
+ 2022,
+ 1
+ ],
+ [
+ 2023,
+ 1
+ ],
+ [
+ 2024,
+ 1
+ ],
+ [
+ 2025,
+ 1
+ ],
+ [
+ 2026,
+ 1
+ ],
+ [
+ 2027,
+ 1
+ ],
+ [
+ 2028,
+ 1
+ ],
+ [
+ 2029,
+ 1
+ ],
+ [
+ 2030,
+ 1
+ ],
+ [
+ 2031,
+ 1
+ ],
+ [
+ 2032,
+ 1
+ ],
+ [
+ 2033,
+ 1
+ ],
+ [
+ 2034,
+ 1
+ ],
+ [
+ 2035,
+ 1
+ ],
+ [
+ 2036,
+ 1
+ ],
+ [
+ 2037,
+ 1
+ ],
+ [
+ 2038,
+ 1
+ ],
+ [
+ 2039,
+ 1
+ ],
+ [
+ 2040,
+ 1
+ ],
+ [
+ 1220,
+ 1
+ ],
+ [
+ 1236,
+ 1
+ ],
+ [
+ 1252,
+ 1
+ ],
+ [
+ 1268,
+ 1
+ ],
+ [
+ 1284,
+ 1
+ ],
+ [
+ 1380,
+ 1
+ ],
+ [
+ 1300,
+ 1
+ ],
+ [
+ 1316,
+ 1
+ ],
+ [
+ 1332,
+ 1
+ ],
+ [
+ 1348,
+ 1
+ ],
+ [
+ 1364,
+ 1
+ ],
+ [
+ 1396,
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with the email 'roberto.lopez@hotmail.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'roberto.lopez@hotmail.com';",
+ "answer": [
+ "Roberto Lopez"
+ ],
+ "sql_execute_result": [
+ [
+ "Roberto Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews have a rating ID of 4?",
+ "sql": "SELECT review_id FROM rating_option_vote WHERE rating_id = 4;",
+ "answer": [
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 349
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing phone number for Grace Nguyen?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Grace Nguyen';",
+ "answer": [
+ "6175555555"
+ ],
+ "sql_execute_result": [
+ [
+ "6175555555"
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence invoices are there?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_invoice_1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the customer John Doe.",
+ "sql": "SELECT store_id FROM customer_entity WHERE email = 'johndoe123@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in the 'Default Store View'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the shipping address with parent ID 50?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 50 AND address_type = 'shipping';",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for the product with entity ID 853.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 853 AND attribute_id = 75;",
+ "answer": [
+ "The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.
\n• A yoga essential.
• Breathable stretch organic cotton/spandex.
• Standard Fit.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.
\n• A yoga essential.
• Breathable stretch organic cotton/spandex.
• Standard Fit.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on March 29, 2022?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-03-29' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for complete orders on November 20, 2022, in store ID 1?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-11-20' AND order_status = 'complete' AND store_id = 1;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region for the billing address with entity ID 380.",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 380 AND address_type = 'billing';",
+ "answer": [
+ "Florida"
+ ],
+ "sql_execute_result": [
+ [
+ "Florida"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity ID 7?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 7;",
+ "answer": [
+ "1/2/7"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/7"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name and email of the customer associated with the billing address with entity ID 448.",
+ "sql": "SELECT firstname, lastname, email FROM sales_order_address WHERE entity_id = 448 AND address_type = 'billing';",
+ "answer": [
+ "Matt Baker",
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "Matt",
+ "Baker",
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on August 12, 2022?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-08-12' AND order_status = 'complete';",
+ "answer": [
+ "145.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "145.0000"
+ ],
+ [
+ "145.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product text value with value ID 1373?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE value_id = 1373;",
+ "answer": [
+ "204,207,208"
+ ],
+ "sql_execute_result": [
+ [
+ "204,207,208"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with ID 16?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 16 AND attribute_id = 119;",
+ "answer": [
+ "tees-men"
+ ],
+ "sql_execute_result": [
+ [
+ "tees-men"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of 'Tristan Endurance Tank-L-Red' sold in store ID 1 in 2022.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Tristan Endurance Tank-L-Red' AND store_id = 1 AND period = '2022-01-01';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer living in Dallas?",
+ "sql": "SELECT firstname FROM customer_address_entity WHERE city = 'Dallas';",
+ "answer": [
+ "Bob",
+ "Lisa",
+ "Samantha",
+ "David",
+ "John",
+ "Ethan",
+ "James"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob"
+ ],
+ [
+ "Lisa"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "David"
+ ],
+ [
+ "John"
+ ],
+ [
+ "Ethan"
+ ],
+ [
+ "James"
+ ]
+ ]
+ },
+ {
+ "question": "List the SKUs of products with entity IDs 1663 and 1484.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id IN (1663, 1484);",
+ "answer": [
+ "WS08-M-Blue",
+ "WB05-L-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WB05-L-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered quantity for the product 'Overnight Duffle' from order ID 158?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE order_id = 158 AND name = 'Overnight Duffle';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for the address entity ID 55.",
+ "sql": "SELECT region FROM customer_address_entity WHERE entity_id = 55;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Prima Compete Bra Top-XL-Yellow' sold in 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Prima Compete Bra Top-XL-Yellow' AND period = '2022-01-01';",
+ "answer": [
+ "84",
+ "186"
+ ],
+ "sql_execute_result": [
+ [
+ 84
+ ],
+ [
+ 186
+ ]
+ ]
+ },
+ {
+ "question": "Which product ID corresponds to the SKU 'MJ02-XS-Red'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity WHERE sku = 'MJ02-XS-Red';",
+ "answer": [
+ "273"
+ ],
+ "sql_execute_result": [
+ [
+ 273
+ ]
+ ]
+ },
+ {
+ "question": "Find all active addresses for the customer named 'Katie Wong'.",
+ "sql": "SELECT city, street, region, telephone FROM customer_address_entity WHERE firstname = 'Katie' AND lastname = 'Wong' AND is_active = 1;",
+ "answer": [
+ "Seattle",
+ "123 Pike St",
+ "Washington",
+ "2065551212"
+ ],
+ "sql_execute_result": [
+ [
+ "Seattle",
+ "123 Pike St",
+ "Washington",
+ "2065551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total row amount for the 'Sinbad Fitness Tank' in order ID 281?",
+ "sql": "SELECT row_total FROM sales_order_item WHERE order_id = 281 AND name = 'Sinbad Fitness Tank';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 35?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with ID 2?",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_id = 5;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ],
+ [
+ 28
+ ],
+ [
+ 39
+ ],
+ [
+ 62
+ ],
+ [
+ 101
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 185
+ ],
+ [
+ 216
+ ],
+ [
+ 229
+ ],
+ [
+ 236
+ ],
+ [
+ 253
+ ],
+ [
+ 276
+ ],
+ [
+ 297
+ ],
+ [
+ 299
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU '24-UG01'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = '24-UG01';",
+ "answer": [
+ "7.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "7.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with SKU '24-UG01'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = '24-UG01');",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by the customer with email 'customer5@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer5@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for order with ID 160?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 160;",
+ "answer": [
+ "124.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "124.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many times has the product with ID 1889 been ordered in store with ID 1?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1889 AND store_id = 1;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the product with SKU 'WP11-29-Blue'.",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WP11-29-Blue';",
+ "answer": [
+ "Sylvia Capri",
+ "Sylvia Capri-29-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Sylvia Capri"
+ ],
+ [
+ "Sylvia Capri-29-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed on store with store_id 1?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product 'Quest Lumaflex\u2122 Band' has options.",
+ "sql": "SELECT has_options FROM catalog_product_entity WHERE sku = '24-UG01';",
+ "answer": [
+ "No, the product 'Quest Lumaflex\u2122 Band' does not have options."
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity ordered for the item with SKU '24-UG01' in order ID 160?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = '24-UG01' AND order_id = 160;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 4?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 4;",
+ "answer": [
+ "bbjones@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "bbjones@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 859 in store 0 during the year 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 859 AND period = '2023-01-01' AND store_id = 0;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for product with entity ID 1757?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1757;",
+ "answer": [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity_id 1845 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1845;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 606?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 606;",
+ "answer": [
+ "MS07"
+ ],
+ "sql_execute_result": [
+ [
+ "MS07"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'Aether Gym Pant -33-Brown' in the year 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Aether Gym Pant -33-Brown' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check if there are any pending reviews for product ID 859.",
+ "sql": "SELECT COUNT(*) > 0 FROM review WHERE entity_pk_value = 859 AND status_id = (SELECT status_id FROM review_status WHERE status_code = 'pending');",
+ "answer": [
+ "No pending reviews for product ID 859."
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with SKU 'MH09-XS-Blue'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MH01')",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity ID 554?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 554;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with product ID 1757?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1757;",
+ "answer": [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 859 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 859;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation timestamp for the catalog product entity with entity_id 1845?",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE entity_id = 1845;",
+ "answer": [
+ "2023-04-19 16:13:53"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:53"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name and email of the customer with Customer ID 25.",
+ "sql": "SELECT firstname, lastname, email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "Sarah Miller",
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "Sarah",
+ "Miller",
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity of the product with product ID 606?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 606;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders placed by the customer with email 'customer5@example.com'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'customer5@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO3 code for the country with country_id 'PS'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'PS';",
+ "answer": [
+ "PSE"
+ ],
+ "sql_execute_result": [
+ [
+ "PSE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value of the latest shipment?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with option_id 207?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 207;",
+ "answer": [
+ "Spring"
+ ],
+ "sql_execute_result": [
+ [
+ "Spring"
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings codes.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO2 code for the country with country_id 'BN'.",
+ "sql": "SELECT iso2_code FROM directory_country WHERE country_id = 'BN';",
+ "answer": [
+ "BN"
+ ],
+ "sql_execute_result": [
+ [
+ "BN"
+ ]
+ ]
+ },
+ {
+ "question": "Get the store code for the store with store_id 0.",
+ "sql": "SELECT code FROM store WHERE store_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity_id for the rating with rating_id 4?",
+ "sql": "SELECT entity_id FROM rating WHERE rating_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the name of the store with code 'admin'.",
+ "sql": "SELECT name FROM store WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with website_id 1.",
+ "sql": "SELECT name FROM store WHERE website_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for Canada?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'CA';",
+ "answer": [
+ "CAN"
+ ],
+ "sql_execute_result": [
+ [
+ "CAN"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered quantity for the product 'Sparta Gym Tank-L-Green' in the year 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sparta Gym Tank-L-Green' AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the status code for status ID 2.",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for 'Ingrid Running Jacket-XS-Red' in the year 2023.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ingrid Running Jacket-XS-Red' AND period = '2023-01-01';",
+ "answer": [
+ "99",
+ "36"
+ ],
+ "sql_execute_result": [
+ [
+ 99
+ ],
+ [
+ 36
+ ]
+ ]
+ },
+ {
+ "question": "What is the root category ID for the 'Main Website Store'?",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "How many countries with their ISO-2 codes were found?",
+ "sql": "SELECT country_id, iso2_code FROM directory_country;",
+ "answer": [
+ "249"
+ ],
+ "sql_execute_result": [
+ [
+ "AD",
+ "AD"
+ ],
+ [
+ "AE",
+ "AE"
+ ],
+ [
+ "AF",
+ "AF"
+ ],
+ [
+ "AG",
+ "AG"
+ ],
+ [
+ "AI",
+ "AI"
+ ],
+ [
+ "AL",
+ "AL"
+ ],
+ [
+ "AM",
+ "AM"
+ ],
+ [
+ "AN",
+ "AN"
+ ],
+ [
+ "AO",
+ "AO"
+ ],
+ [
+ "AQ",
+ "AQ"
+ ],
+ [
+ "AR",
+ "AR"
+ ],
+ [
+ "AS",
+ "AS"
+ ],
+ [
+ "AT",
+ "AT"
+ ],
+ [
+ "AU",
+ "AU"
+ ],
+ [
+ "AW",
+ "AW"
+ ],
+ [
+ "AX",
+ "AX"
+ ],
+ [
+ "AZ",
+ "AZ"
+ ],
+ [
+ "BA",
+ "BA"
+ ],
+ [
+ "BB",
+ "BB"
+ ],
+ [
+ "BD",
+ "BD"
+ ],
+ [
+ "BE",
+ "BE"
+ ],
+ [
+ "BF",
+ "BF"
+ ],
+ [
+ "BG",
+ "BG"
+ ],
+ [
+ "BH",
+ "BH"
+ ],
+ [
+ "BI",
+ "BI"
+ ],
+ [
+ "BJ",
+ "BJ"
+ ],
+ [
+ "BL",
+ "BL"
+ ],
+ [
+ "BM",
+ "BM"
+ ],
+ [
+ "BN",
+ "BN"
+ ],
+ [
+ "BO",
+ "BO"
+ ],
+ [
+ "BQ",
+ "BQ"
+ ],
+ [
+ "BR",
+ "BR"
+ ],
+ [
+ "BS",
+ "BS"
+ ],
+ [
+ "BT",
+ "BT"
+ ],
+ [
+ "BV",
+ "BV"
+ ],
+ [
+ "BW",
+ "BW"
+ ],
+ [
+ "BY",
+ "BY"
+ ],
+ [
+ "BZ",
+ "BZ"
+ ],
+ [
+ "CA",
+ "CA"
+ ],
+ [
+ "CC",
+ "CC"
+ ],
+ [
+ "CD",
+ "CD"
+ ],
+ [
+ "CF",
+ "CF"
+ ],
+ [
+ "CG",
+ "CG"
+ ],
+ [
+ "CH",
+ "CH"
+ ],
+ [
+ "CI",
+ "CI"
+ ],
+ [
+ "CK",
+ "CK"
+ ],
+ [
+ "CL",
+ "CL"
+ ],
+ [
+ "CM",
+ "CM"
+ ],
+ [
+ "CN",
+ "CN"
+ ],
+ [
+ "CO",
+ "CO"
+ ],
+ [
+ "CR",
+ "CR"
+ ],
+ [
+ "CU",
+ "CU"
+ ],
+ [
+ "CV",
+ "CV"
+ ],
+ [
+ "CW",
+ "CW"
+ ],
+ [
+ "CX",
+ "CX"
+ ],
+ [
+ "CY",
+ "CY"
+ ],
+ [
+ "CZ",
+ "CZ"
+ ],
+ [
+ "DE",
+ "DE"
+ ],
+ [
+ "DJ",
+ "DJ"
+ ],
+ [
+ "DK",
+ "DK"
+ ],
+ [
+ "DM",
+ "DM"
+ ],
+ [
+ "DO",
+ "DO"
+ ],
+ [
+ "DZ",
+ "DZ"
+ ],
+ [
+ "EC",
+ "EC"
+ ],
+ [
+ "EE",
+ "EE"
+ ],
+ [
+ "EG",
+ "EG"
+ ],
+ [
+ "EH",
+ "EH"
+ ],
+ [
+ "ER",
+ "ER"
+ ],
+ [
+ "ES",
+ "ES"
+ ],
+ [
+ "ET",
+ "ET"
+ ],
+ [
+ "FI",
+ "FI"
+ ],
+ [
+ "FJ",
+ "FJ"
+ ],
+ [
+ "FK",
+ "FK"
+ ],
+ [
+ "FM",
+ "FM"
+ ],
+ [
+ "FO",
+ "FO"
+ ],
+ [
+ "FR",
+ "FR"
+ ],
+ [
+ "GA",
+ "GA"
+ ],
+ [
+ "GB",
+ "GB"
+ ],
+ [
+ "GD",
+ "GD"
+ ],
+ [
+ "GE",
+ "GE"
+ ],
+ [
+ "GF",
+ "GF"
+ ],
+ [
+ "GG",
+ "GG"
+ ],
+ [
+ "GH",
+ "GH"
+ ],
+ [
+ "GI",
+ "GI"
+ ],
+ [
+ "GL",
+ "GL"
+ ],
+ [
+ "GM",
+ "GM"
+ ],
+ [
+ "GN",
+ "GN"
+ ],
+ [
+ "GP",
+ "GP"
+ ],
+ [
+ "GQ",
+ "GQ"
+ ],
+ [
+ "GR",
+ "GR"
+ ],
+ [
+ "GS",
+ "GS"
+ ],
+ [
+ "GT",
+ "GT"
+ ],
+ [
+ "GU",
+ "GU"
+ ],
+ [
+ "GW",
+ "GW"
+ ],
+ [
+ "GY",
+ "GY"
+ ],
+ [
+ "HK",
+ "HK"
+ ],
+ [
+ "HM",
+ "HM"
+ ],
+ [
+ "HN",
+ "HN"
+ ],
+ [
+ "HR",
+ "HR"
+ ],
+ [
+ "HT",
+ "HT"
+ ],
+ [
+ "HU",
+ "HU"
+ ],
+ [
+ "ID",
+ "ID"
+ ],
+ [
+ "IE",
+ "IE"
+ ],
+ [
+ "IL",
+ "IL"
+ ],
+ [
+ "IM",
+ "IM"
+ ],
+ [
+ "IN",
+ "IN"
+ ],
+ [
+ "IO",
+ "IO"
+ ],
+ [
+ "IQ",
+ "IQ"
+ ],
+ [
+ "IR",
+ "IR"
+ ],
+ [
+ "IS",
+ "IS"
+ ],
+ [
+ "IT",
+ "IT"
+ ],
+ [
+ "JE",
+ "JE"
+ ],
+ [
+ "JM",
+ "JM"
+ ],
+ [
+ "JO",
+ "JO"
+ ],
+ [
+ "JP",
+ "JP"
+ ],
+ [
+ "KE",
+ "KE"
+ ],
+ [
+ "KG",
+ "KG"
+ ],
+ [
+ "KH",
+ "KH"
+ ],
+ [
+ "KI",
+ "KI"
+ ],
+ [
+ "KM",
+ "KM"
+ ],
+ [
+ "KN",
+ "KN"
+ ],
+ [
+ "KP",
+ "KP"
+ ],
+ [
+ "KR",
+ "KR"
+ ],
+ [
+ "KW",
+ "KW"
+ ],
+ [
+ "KY",
+ "KY"
+ ],
+ [
+ "KZ",
+ "KZ"
+ ],
+ [
+ "LA",
+ "LA"
+ ],
+ [
+ "LB",
+ "LB"
+ ],
+ [
+ "LC",
+ "LC"
+ ],
+ [
+ "LI",
+ "LI"
+ ],
+ [
+ "LK",
+ "LK"
+ ],
+ [
+ "LR",
+ "LR"
+ ],
+ [
+ "LS",
+ "LS"
+ ],
+ [
+ "LT",
+ "LT"
+ ],
+ [
+ "LU",
+ "LU"
+ ],
+ [
+ "LV",
+ "LV"
+ ],
+ [
+ "LY",
+ "LY"
+ ],
+ [
+ "MA",
+ "MA"
+ ],
+ [
+ "MC",
+ "MC"
+ ],
+ [
+ "MD",
+ "MD"
+ ],
+ [
+ "ME",
+ "ME"
+ ],
+ [
+ "MF",
+ "MF"
+ ],
+ [
+ "MG",
+ "MG"
+ ],
+ [
+ "MH",
+ "MH"
+ ],
+ [
+ "MK",
+ "MK"
+ ],
+ [
+ "ML",
+ "ML"
+ ],
+ [
+ "MM",
+ "MM"
+ ],
+ [
+ "MN",
+ "MN"
+ ],
+ [
+ "MO",
+ "MO"
+ ],
+ [
+ "MP",
+ "MP"
+ ],
+ [
+ "MQ",
+ "MQ"
+ ],
+ [
+ "MR",
+ "MR"
+ ],
+ [
+ "MS",
+ "MS"
+ ],
+ [
+ "MT",
+ "MT"
+ ],
+ [
+ "MU",
+ "MU"
+ ],
+ [
+ "MV",
+ "MV"
+ ],
+ [
+ "MW",
+ "MW"
+ ],
+ [
+ "MX",
+ "MX"
+ ],
+ [
+ "MY",
+ "MY"
+ ],
+ [
+ "MZ",
+ "MZ"
+ ],
+ [
+ "NA",
+ "NA"
+ ],
+ [
+ "NC",
+ "NC"
+ ],
+ [
+ "NE",
+ "NE"
+ ],
+ [
+ "NF",
+ "NF"
+ ],
+ [
+ "NG",
+ "NG"
+ ],
+ [
+ "NI",
+ "NI"
+ ],
+ [
+ "NL",
+ "NL"
+ ],
+ [
+ "NO",
+ "NO"
+ ],
+ [
+ "NP",
+ "NP"
+ ],
+ [
+ "NR",
+ "NR"
+ ],
+ [
+ "NU",
+ "NU"
+ ],
+ [
+ "NZ",
+ "NZ"
+ ],
+ [
+ "OM",
+ "OM"
+ ],
+ [
+ "PA",
+ "PA"
+ ],
+ [
+ "PE",
+ "PE"
+ ],
+ [
+ "PF",
+ "PF"
+ ],
+ [
+ "PG",
+ "PG"
+ ],
+ [
+ "PH",
+ "PH"
+ ],
+ [
+ "PK",
+ "PK"
+ ],
+ [
+ "PL",
+ "PL"
+ ],
+ [
+ "PM",
+ "PM"
+ ],
+ [
+ "PN",
+ "PN"
+ ],
+ [
+ "PS",
+ "PS"
+ ],
+ [
+ "PT",
+ "PT"
+ ],
+ [
+ "PW",
+ "PW"
+ ],
+ [
+ "PY",
+ "PY"
+ ],
+ [
+ "QA",
+ "QA"
+ ],
+ [
+ "RE",
+ "RE"
+ ],
+ [
+ "RO",
+ "RO"
+ ],
+ [
+ "RS",
+ "RS"
+ ],
+ [
+ "RU",
+ "RU"
+ ],
+ [
+ "RW",
+ "RW"
+ ],
+ [
+ "SA",
+ "SA"
+ ],
+ [
+ "SB",
+ "SB"
+ ],
+ [
+ "SC",
+ "SC"
+ ],
+ [
+ "SD",
+ "SD"
+ ],
+ [
+ "SE",
+ "SE"
+ ],
+ [
+ "SG",
+ "SG"
+ ],
+ [
+ "SH",
+ "SH"
+ ],
+ [
+ "SI",
+ "SI"
+ ],
+ [
+ "SJ",
+ "SJ"
+ ],
+ [
+ "SK",
+ "SK"
+ ],
+ [
+ "SL",
+ "SL"
+ ],
+ [
+ "SM",
+ "SM"
+ ],
+ [
+ "SN",
+ "SN"
+ ],
+ [
+ "SO",
+ "SO"
+ ],
+ [
+ "SR",
+ "SR"
+ ],
+ [
+ "ST",
+ "ST"
+ ],
+ [
+ "SV",
+ "SV"
+ ],
+ [
+ "SX",
+ "SX"
+ ],
+ [
+ "SY",
+ "SY"
+ ],
+ [
+ "SZ",
+ "SZ"
+ ],
+ [
+ "TC",
+ "TC"
+ ],
+ [
+ "TD",
+ "TD"
+ ],
+ [
+ "TF",
+ "TF"
+ ],
+ [
+ "TG",
+ "TG"
+ ],
+ [
+ "TH",
+ "TH"
+ ],
+ [
+ "TJ",
+ "TJ"
+ ],
+ [
+ "TK",
+ "TK"
+ ],
+ [
+ "TL",
+ "TL"
+ ],
+ [
+ "TM",
+ "TM"
+ ],
+ [
+ "TN",
+ "TN"
+ ],
+ [
+ "TO",
+ "TO"
+ ],
+ [
+ "TR",
+ "TR"
+ ],
+ [
+ "TT",
+ "TT"
+ ],
+ [
+ "TV",
+ "TV"
+ ],
+ [
+ "TW",
+ "TW"
+ ],
+ [
+ "TZ",
+ "TZ"
+ ],
+ [
+ "UA",
+ "UA"
+ ],
+ [
+ "UG",
+ "UG"
+ ],
+ [
+ "UM",
+ "UM"
+ ],
+ [
+ "US",
+ "US"
+ ],
+ [
+ "UY",
+ "UY"
+ ],
+ [
+ "UZ",
+ "UZ"
+ ],
+ [
+ "VA",
+ "VA"
+ ],
+ [
+ "VC",
+ "VC"
+ ],
+ [
+ "VE",
+ "VE"
+ ],
+ [
+ "VG",
+ "VG"
+ ],
+ [
+ "VI",
+ "VI"
+ ],
+ [
+ "VN",
+ "VN"
+ ],
+ [
+ "VU",
+ "VU"
+ ],
+ [
+ "WF",
+ "WF"
+ ],
+ [
+ "WS",
+ "WS"
+ ],
+ [
+ "XK",
+ "XK"
+ ],
+ [
+ "YE",
+ "YE"
+ ],
+ [
+ "YT",
+ "YT"
+ ],
+ [
+ "ZA",
+ "ZA"
+ ],
+ [
+ "ZM",
+ "ZM"
+ ],
+ [
+ "ZW",
+ "ZW"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Juno Jacket-XS-Blue' in the year 2023.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Juno Jacket-XS-Blue' AND period = '2023-01-01';",
+ "answer": [
+ "77.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "77.0000"
+ ],
+ [
+ "77.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store ID for the 'Default' store group?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Default';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status ID 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for product ID 1943?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1943;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discounted amount for the order created on 2023-04-27?",
+ "sql": "SELECT total_discount_amount FROM sales_order_aggregated_created WHERE period = '2023-04-27';",
+ "answer": [
+ "44.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "44.4000"
+ ],
+ [
+ "44.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the address for the billing of the customer named Veronica Costello.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who made the credit memo with ID 1?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute code 'special_to_date'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'special_to_date';",
+ "answer": [
+ "Special Price To Date"
+ ],
+ "sql_execute_result": [
+ [
+ "Special Price To Date"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-01-08?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-01-08' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Is product ID 1523 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1523;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total paid amount for the order made on 2022-04-24?",
+ "sql": "SELECT total_paid_amount FROM sales_order_aggregated_created WHERE period = '2022-04-24';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ],
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute code 'custom_design_to'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'custom_design_to';",
+ "answer": [
+ "Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime"
+ ],
+ [
+ "Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders created on 2022-06-06?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-06-06';",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ],
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for region ID 353.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 353;",
+ "answer": [
+ "Viljandimaa"
+ ],
+ "sql_execute_result": [
+ [
+ "Viljandimaa"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs of products were created at '2023-04-19 16:13:49'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE created_at = '2023-04-19 16:13:49';",
+ "answer": [
+ "76"
+ ],
+ "sql_execute_result": [
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 513?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 513 AND attribute_id = 75;",
+ "answer": [
+ "The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.
\n• Crew neckline.
• Semi-fitted.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.
\n• Crew neckline.
• Semi-fitted.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many best-selling products were found for store ID 1 during August 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND period = '2022-08-01';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Teton Pullover Hoodie-S-Red"
+ ],
+ [
+ "Taurus Elements Shell-S-Blue"
+ ],
+ [
+ "Mars HeatTech™ Pullover-M-Black"
+ ],
+ [
+ "Zoltan Gym Tee-M-Green"
+ ],
+ [
+ "Kratos Gym Pant-32-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Green"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Orange"
+ ],
+ [
+ "Miko Pullover Hoodie-S-Orange"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Josie Yoga Jacket-L-Black"
+ ],
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-White"
+ ],
+ [
+ "Chloe Compete Tank-L-Blue"
+ ],
+ [
+ "Sahara Leggings-28-Red"
+ ],
+ [
+ "Portia Capri-29-Green"
+ ],
+ [
+ "Sybil Running Short-30-Purple"
+ ],
+ [
+ "Ana Running Short-29-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with ID 1355 sold in May 2023?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_id = 1355 AND period = '2023-05-01';",
+ "answer": [
+ "69.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "69.0000"
+ ],
+ [
+ "69.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position of the product 'Tiffany Fitness Tee-M-Red' in store ID 1 for January 2023.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Tiffany Fitness Tee-M-Red' AND store_id = 1 AND period = '2023-01-01';",
+ "answer": [
+ "31"
+ ],
+ "sql_execute_result": [
+ [
+ 31
+ ]
+ ]
+ },
+ {
+ "question": "Get the product ID for SKU 'WH08-XL-Purple'.",
+ "sql": "SELECT entity_id FROM catalog_product_entity WHERE sku = 'WH08-XL-Purple';",
+ "answer": [
+ "1144"
+ ],
+ "sql_execute_result": [
+ [
+ 1144
+ ]
+ ]
+ },
+ {
+ "question": "List all store codes for store groups with website ID 0.",
+ "sql": "SELECT code FROM store_group WHERE website_id = 0;",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "Get the store name for store ID 1.",
+ "sql": "SELECT name FROM store_group WHERE default_store_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the category with entity_id 36.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 36;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer_group_id 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the value of the rating option with option_id 5.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for attribute_id 44?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 44;",
+ "answer": [
+ "lock_expires"
+ ],
+ "sql_execute_result": [
+ [
+ "lock_expires"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity_id 19 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 19;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What type of frontend input is used for the attribute with attribute_id 8?",
+ "sql": "SELECT frontend_input FROM eav_attribute WHERE attribute_id = 8;",
+ "answer": [
+ "text"
+ ],
+ "sql_execute_result": [
+ [
+ "text"
+ ]
+ ]
+ },
+ {
+ "question": "Get the sequence value for the latest invoice.",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute with attribute_code 'meta_title'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'meta_title';",
+ "answer": [
+ "varchar"
+ ],
+ "sql_execute_result": [
+ [
+ "varchar"
+ ],
+ [
+ "varchar"
+ ]
+ ]
+ },
+ {
+ "question": "Find the parent_id of the category with entity_id 10.",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 10;",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with code '4' belonging to rating_id 4?",
+ "sql": "SELECT position FROM rating_option WHERE code = '4' AND rating_id = 4;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer Sarah Miller?",
+ "sql": "SELECT entity_id, status, grand_total FROM sales_order WHERE customer_email = 'helloworld@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15,
+ "canceled",
+ "61.0000"
+ ],
+ [
+ 28,
+ "complete",
+ "226.6000"
+ ],
+ [
+ 39,
+ "canceled",
+ "218.8500"
+ ],
+ [
+ 62,
+ "complete",
+ "196.2000"
+ ],
+ [
+ 101,
+ "canceled",
+ "199.8000"
+ ],
+ [
+ 156,
+ "complete",
+ "202.6000"
+ ],
+ [
+ 157,
+ "canceled",
+ "44.0000"
+ ],
+ [
+ 185,
+ "canceled",
+ "37.0000"
+ ],
+ [
+ 216,
+ "complete",
+ "173.0000"
+ ],
+ [
+ 229,
+ "canceled",
+ "55.0000"
+ ],
+ [
+ 236,
+ "complete",
+ "107.0000"
+ ],
+ [
+ 253,
+ "complete",
+ "32.0000"
+ ],
+ [
+ 276,
+ "complete",
+ "150.2000"
+ ],
+ [
+ 297,
+ "complete",
+ "125.0000"
+ ],
+ [
+ 299,
+ "pending",
+ "219.4000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 696?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 696 AND attribute_id = 75;",
+ "answer": [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.
\n• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the order with ID 268.",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 268;",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with ID 208?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 208;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the store is active.",
+ "sql": "SELECT is_active FROM store WHERE store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for order with ID 128?",
+ "sql": "SELECT shipping_and_handling FROM sales_order_grid WHERE entity_id = 128;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all complete orders for customer with ID 21.",
+ "sql": "SELECT entity_id, grand_total FROM sales_order_grid WHERE customer_id = 21 AND status = 'complete';",
+ "answer": [
+ "Order ID: 48, Total: 176.60",
+ "Order ID: 78, Total: 133.00",
+ "Order ID: 90, Total: 202.00",
+ "Order ID: 128, Total: 212.25",
+ "Order ID: 200, Total: 191.50",
+ "Order ID: 230, Total: 93.40",
+ "Order ID: 270, Total: 60.00"
+ ],
+ "sql_execute_result": [
+ [
+ 48,
+ "176.6000"
+ ],
+ [
+ 78,
+ "133.0000"
+ ],
+ [
+ 90,
+ "202.0000"
+ ],
+ [
+ 128,
+ "212.2500"
+ ],
+ [
+ 200,
+ "191.5000"
+ ],
+ [
+ 230,
+ "93.4000"
+ ],
+ [
+ 270,
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 1812?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1812;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 1432?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1432 AND attribute_id = 73;",
+ "answer": [
+ "Layla Tee-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Layla Tee-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for 'Angel Light Running Short-29-Orange' in 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Angel Light Running Short-29-Orange' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the email addresses of customers who ordered products shipped with shipment ID 1.",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id IN (SELECT order_id FROM sales_shipment WHERE entity_id = 1);",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipment increment ID for the shipment related to order ID 300?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE order_id = 300;",
+ "answer": [
+ "000000003"
+ ],
+ "sql_execute_result": [
+ [
+ "000000003"
+ ]
+ ]
+ },
+ {
+ "question": "What was the total base grand total for the order with increment ID '000000199'?",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000199';",
+ "answer": [
+ "47.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "47.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the customer with email 'david.lee@gmail.com'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE customer_email = 'david.lee@gmail.com';",
+ "answer": [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ],
+ [
+ "456 Tremont St,Boston,Massachusetts,02108"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Nora Practice Tank-M-Red' in 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Nora Practice Tank-M-Red' AND period = '2022-01-01';",
+ "answer": [
+ "109",
+ "216"
+ ],
+ "sql_execute_result": [
+ [
+ 109
+ ],
+ [
+ 216
+ ]
+ ]
+ },
+ {
+ "question": "Find all shipments with total quantity greater than 1.",
+ "sql": "SELECT entity_id, increment_id, total_qty FROM sales_shipment WHERE total_qty > 1;",
+ "answer": [
+ "3",
+ "000000003",
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ 3,
+ "000000003",
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount paid for the order with the parent ID 2?",
+ "sql": "SELECT amount_paid FROM sales_order_payment WHERE parent_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 26?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 26;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1620
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1652
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1668
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1700
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1764
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ]
+ ]
+ },
+ {
+ "question": "Check if the 'Privacy Policy' CMS page is currently active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the order with entity ID 43?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 43;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the sales order with increment ID '000000002'.",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the title of the CMS page with identifier 'home'.",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the order with entity ID 1?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name of the product with ID 692 in the bestsellers aggregated daily report?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 692;",
+ "answer": [
+ "Argus All-Weather Tank-L-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Argus All-Weather Tank-L-Gray"
+ ],
+ [
+ "Argus All-Weather Tank-L-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating value for the option with ID 20 in the rating option table.",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 20;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'fraud' in the sales order status state table?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the ISO-3 code for the country with ID 'IT' from the directory country table.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'IT';",
+ "answer": [
+ "ITA"
+ ],
+ "sql_execute_result": [
+ [
+ "ITA"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Sprite Yoga Strap 6 foot' on 2023-04-05 in the bestsellers aggregated daily report.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Yoga Strap 6 foot' AND period = '2023-04-05';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the percentage value for the vote with ID 308 in the rating option vote table?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 308;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the rating option with ID 10 in the rating option table.",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 10;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "List all countries with ISO-2 code 'WS' from the directory country table.",
+ "sql": "SELECT country_id FROM directory_country WHERE iso2_code = 'WS';",
+ "answer": [
+ "WS"
+ ],
+ "sql_execute_result": [
+ [
+ "WS"
+ ]
+ ]
+ },
+ {
+ "question": "What rating code corresponds to the rating option with value 4 in the rating option table?",
+ "sql": "SELECT code FROM rating_option WHERE value = 4;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ "4"
+ ],
+ [
+ "4"
+ ],
+ [
+ "4"
+ ],
+ [
+ "4"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the rating ID for the option with code '5' in the rating option table.",
+ "sql": "SELECT rating_id FROM rating_option WHERE code = '5';",
+ "answer": [
+ "1",
+ "2",
+ "3",
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on '2022-04-30'?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-04-30' AND order_status = 'canceled';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the review ID for the product with entity_pk_value 462.",
+ "sql": "SELECT review_id FROM rating_option_vote WHERE entity_pk_value = 462;",
+ "answer": [
+ "77",
+ "78",
+ "79"
+ ],
+ "sql_execute_result": [
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered on '2023-02-03' in store 1.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-02-03' AND store_id = 1;",
+ "answer": [
+ "4.0000",
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the rating option code '5'?",
+ "sql": "SELECT value FROM rating_option WHERE code = '5';",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ],
+ [
+ 5
+ ],
+ [
+ 5
+ ],
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders on '2022-12-06' in store 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-12-06' AND store_id = 1;",
+ "answer": [
+ "333.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "333.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating ID associated with the option ID 20?",
+ "sql": "SELECT rating_id FROM rating_option WHERE option_id = 20;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity type with ID 5?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 5;",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on '2023-04-03'?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2023-04-03' AND order_status = 'complete';",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ],
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with review_id 101?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 101;",
+ "answer": [
+ "Great for baoting"
+ ],
+ "sql_execute_result": [
+ [
+ "Great for baoting "
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock quantity for the product with product_id 167.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 167;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category name for entity_id 37 in the catalog_category_entity_varchar table?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 37 AND attribute_id = 120;",
+ "answer": [
+ "sale"
+ ],
+ "sql_execute_result": [
+ [
+ "sale"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the bestseller with id 703 in 2022?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE id = 703;",
+ "answer": [
+ "Adrienne Trek Jacket-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Adrienne Trek Jacket-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the category with entity_id 10.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 10;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer with review_id 338?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 338;",
+ "answer": [
+ "Merrie"
+ ],
+ "sql_execute_result": [
+ [
+ "Merrie"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity_id 9 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 9;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock status (is_in_stock) for the product with product_id 1199?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1199;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Helios Endurance Tank-M-Blue' in the bestsellers of 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Helios Endurance Tank-M-Blue';",
+ "answer": [
+ "45",
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 45
+ ],
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "What is the detail of the review with detail_id 233?",
+ "sql": "SELECT detail FROM review_detail WHERE detail_id = 233;",
+ "answer": [
+ "Perfect, perfect, perfect in every way. I love the quilting and it keeps me toasty warm."
+ ],
+ "sql_execute_result": [
+ [
+ "Perfect, perfect, perfect in every way. I love the quilting and it keeps me toasty warm."
+ ]
+ ]
+ },
+ {
+ "question": "Find all shipments for customer with ID 1.",
+ "sql": "SELECT entity_id, increment_id FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "000000001"
+ ],
+ [
+ 2,
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name with ID 0?",
+ "sql": "SELECT name FROM store WHERE store_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 243 on 2023-05-31?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_id = 243 AND period = '2023-05-31';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions in France (FR) are listed in the directory?",
+ "sql": "SELECT region_id, default_name FROM directory_country_region WHERE country_id = 'FR';",
+ "answer": [
+ "96"
+ ],
+ "sql_execute_result": [
+ [
+ 182,
+ "Ain"
+ ],
+ [
+ 183,
+ "Aisne"
+ ],
+ [
+ 184,
+ "Allier"
+ ],
+ [
+ 185,
+ "Alpes-de-Haute-Provence"
+ ],
+ [
+ 186,
+ "Hautes-Alpes"
+ ],
+ [
+ 187,
+ "Alpes-Maritimes"
+ ],
+ [
+ 188,
+ "Ard\u00e8che"
+ ],
+ [
+ 189,
+ "Ardennes"
+ ],
+ [
+ 190,
+ "Ari\u00e8ge"
+ ],
+ [
+ 191,
+ "Aube"
+ ],
+ [
+ 192,
+ "Aude"
+ ],
+ [
+ 193,
+ "Aveyron"
+ ],
+ [
+ 194,
+ "Bouches-du-Rh\u00f4ne"
+ ],
+ [
+ 195,
+ "Calvados"
+ ],
+ [
+ 196,
+ "Cantal"
+ ],
+ [
+ 197,
+ "Charente"
+ ],
+ [
+ 198,
+ "Charente-Maritime"
+ ],
+ [
+ 199,
+ "Cher"
+ ],
+ [
+ 200,
+ "Corr\u00e8ze"
+ ],
+ [
+ 201,
+ "Corse-du-Sud"
+ ],
+ [
+ 202,
+ "Haute-Corse"
+ ],
+ [
+ 203,
+ "C\u00f4te-d'Or"
+ ],
+ [
+ 204,
+ "C\u00f4tes-d'Armor"
+ ],
+ [
+ 205,
+ "Creuse"
+ ],
+ [
+ 206,
+ "Dordogne"
+ ],
+ [
+ 207,
+ "Doubs"
+ ],
+ [
+ 208,
+ "Dr\u00f4me"
+ ],
+ [
+ 209,
+ "Eure"
+ ],
+ [
+ 210,
+ "Eure-et-Loir"
+ ],
+ [
+ 211,
+ "Finist\u00e8re"
+ ],
+ [
+ 212,
+ "Gard"
+ ],
+ [
+ 213,
+ "Haute-Garonne"
+ ],
+ [
+ 214,
+ "Gers"
+ ],
+ [
+ 215,
+ "Gironde"
+ ],
+ [
+ 216,
+ "H\u00e9rault"
+ ],
+ [
+ 217,
+ "Ille-et-Vilaine"
+ ],
+ [
+ 218,
+ "Indre"
+ ],
+ [
+ 219,
+ "Indre-et-Loire"
+ ],
+ [
+ 220,
+ "Is\u00e8re"
+ ],
+ [
+ 221,
+ "Jura"
+ ],
+ [
+ 222,
+ "Landes"
+ ],
+ [
+ 223,
+ "Loir-et-Cher"
+ ],
+ [
+ 224,
+ "Loire"
+ ],
+ [
+ 225,
+ "Haute-Loire"
+ ],
+ [
+ 226,
+ "Loire-Atlantique"
+ ],
+ [
+ 227,
+ "Loiret"
+ ],
+ [
+ 228,
+ "Lot"
+ ],
+ [
+ 229,
+ "Lot-et-Garonne"
+ ],
+ [
+ 230,
+ "Loz\u00e8re"
+ ],
+ [
+ 231,
+ "Maine-et-Loire"
+ ],
+ [
+ 232,
+ "Manche"
+ ],
+ [
+ 233,
+ "Marne"
+ ],
+ [
+ 234,
+ "Haute-Marne"
+ ],
+ [
+ 235,
+ "Mayenne"
+ ],
+ [
+ 236,
+ "Meurthe-et-Moselle"
+ ],
+ [
+ 237,
+ "Meuse"
+ ],
+ [
+ 238,
+ "Morbihan"
+ ],
+ [
+ 239,
+ "Moselle"
+ ],
+ [
+ 240,
+ "Ni\u00e8vre"
+ ],
+ [
+ 241,
+ "Nord"
+ ],
+ [
+ 242,
+ "Oise"
+ ],
+ [
+ 243,
+ "Orne"
+ ],
+ [
+ 244,
+ "Pas-de-Calais"
+ ],
+ [
+ 245,
+ "Puy-de-D\u00f4me"
+ ],
+ [
+ 246,
+ "Pyr\u00e9n\u00e9es-Atlantiques"
+ ],
+ [
+ 247,
+ "Hautes-Pyr\u00e9n\u00e9es"
+ ],
+ [
+ 248,
+ "Pyr\u00e9n\u00e9es-Orientales"
+ ],
+ [
+ 249,
+ "Bas-Rhin"
+ ],
+ [
+ 250,
+ "Haut-Rhin"
+ ],
+ [
+ 251,
+ "Rh\u00f4ne"
+ ],
+ [
+ 252,
+ "Haute-Sa\u00f4ne"
+ ],
+ [
+ 253,
+ "Sa\u00f4ne-et-Loire"
+ ],
+ [
+ 254,
+ "Sarthe"
+ ],
+ [
+ 255,
+ "Savoie"
+ ],
+ [
+ 256,
+ "Haute-Savoie"
+ ],
+ [
+ 257,
+ "Paris"
+ ],
+ [
+ 258,
+ "Seine-Maritime"
+ ],
+ [
+ 259,
+ "Seine-et-Marne"
+ ],
+ [
+ 260,
+ "Yvelines"
+ ],
+ [
+ 261,
+ "Deux-S\u00e8vres"
+ ],
+ [
+ 262,
+ "Somme"
+ ],
+ [
+ 263,
+ "Tarn"
+ ],
+ [
+ 264,
+ "Tarn-et-Garonne"
+ ],
+ [
+ 265,
+ "Var"
+ ],
+ [
+ 266,
+ "Vaucluse"
+ ],
+ [
+ 267,
+ "Vend\u00e9e"
+ ],
+ [
+ 268,
+ "Vienne"
+ ],
+ [
+ 269,
+ "Haute-Vienne"
+ ],
+ [
+ 270,
+ "Vosges"
+ ],
+ [
+ 271,
+ "Yonne"
+ ],
+ [
+ 272,
+ "Territoire-de-Belfort"
+ ],
+ [
+ 273,
+ "Essonne"
+ ],
+ [
+ 274,
+ "Hauts-de-Seine"
+ ],
+ [
+ 275,
+ "Seine-Saint-Denis"
+ ],
+ [
+ 276,
+ "Val-de-Marne"
+ ],
+ [
+ 277,
+ "Val-d'Oise"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the store with ID 1 is active.",
+ "sql": "SELECT is_active FROM store WHERE store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipment increment ID for the shipment with entity ID 3.",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "000000003"
+ ],
+ "sql_execute_result": [
+ [
+ "000000003"
+ ]
+ ]
+ },
+ {
+ "question": "What is the period date for the bestseller product 'Marco Lightweight Active Hoodie-S-Green'?",
+ "sql": "SELECT period FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Marco Lightweight Active Hoodie-S-Green';",
+ "answer": [
+ "2023-05-31"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-05-31"
+ ],
+ [
+ "2023-05-31"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store code for the store with ID 1.",
+ "sql": "SELECT code FROM store WHERE store_id = 1;",
+ "answer": [
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with ID 567 that was ordered on 2022-12-04.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 567 AND period = '2022-12-04';",
+ "answer": [
+ "Ryker LumaTech\u2122 Tee (V-neck)-M-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Gray"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-M-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "How many email notifications were sent for the shipment with ID 1?",
+ "sql": "SELECT email_sent FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'jla_7781@gmail.com'.",
+ "sql": "SELECT entity_id AS order_id, grand_total AS order_total FROM sales_order WHERE customer_email = 'jla_7781@gmail.com';",
+ "answer": [
+ "Order ID: 19, Total: 214.6000",
+ "Order ID: 53, Total: 127.0000",
+ "Order ID: 54, Total: 138.6000",
+ "Order ID: 98, Total: 223.6000",
+ "Order ID: 110, Total: 104.0000",
+ "Order ID: 142, Total: 87.0000",
+ "Order ID: 167, Total: 38.6000",
+ "Order ID: 267, Total: 117.0000",
+ "Order ID: 290, Total: 53.0000"
+ ],
+ "sql_execute_result": [
+ [
+ 19,
+ "214.6000"
+ ],
+ [
+ 53,
+ "127.0000"
+ ],
+ [
+ 54,
+ "138.6000"
+ ],
+ [
+ 98,
+ "223.6000"
+ ],
+ [
+ 110,
+ "104.0000"
+ ],
+ [
+ 142,
+ "87.0000"
+ ],
+ [
+ 167,
+ "38.6000"
+ ],
+ [
+ 267,
+ "117.0000"
+ ],
+ [
+ 290,
+ "53.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 1?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "List all categories under parent category ID 20.",
+ "sql": "SELECT entity_id, path FROM catalog_category_entity WHERE parent_id = 20;",
+ "answer": [
+ "21",
+ "22"
+ ],
+ "sql_execute_result": [
+ [
+ 21,
+ "1/2/20/21"
+ ],
+ [
+ 22,
+ "1/2/20/22"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for status 'canceled'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'canceled';",
+ "answer": [
+ "Canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for order ID 184.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 184;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the order with increment ID '000000194'.",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000194';",
+ "answer": [
+ "94.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "94.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the active ratings.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of children categories for category ID 22.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 22;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for order ID 267?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 267;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value given in review ID 150?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 150;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with ID 915 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 915;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items shipped in shipment ID 3?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1553 active?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 1553 AND attribute_id = 99;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID for shipment ID 1?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "Find the maximum sequence value for profile ID 5.",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a stock quantity of 100?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE qty = '100.0000';",
+ "answer": [
+ "1886"
+ ],
+ "sql_execute_result": [
+ [
+ 1886
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of items shipped in shipment ID 2.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with shipment ID 3?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Is the profile with ID 1 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 2033?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2033;",
+ "answer": [
+ "WSH12-30-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12-30-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity for the order item with SKU 'WB02-L-Orange'.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'WB02-L-Orange';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total amount for the invoice with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name associated with the credit memo for order ID 2?",
+ "sql": "SELECT customer_name FROM sales_creditmemo_grid WHERE order_id = 2;",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the entity type ID 6?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the order item with SKU 'WJ09-M-Green'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WJ09-M-Green';",
+ "answer": [
+ "Jade Yoga Jacket",
+ "Jade Yoga Jacket-M-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "Jade Yoga Jacket"
+ ],
+ [
+ "Jade Yoga Jacket-M-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base discount amount for the invoice with entity ID 2.",
+ "sql": "SELECT base_discount_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base row total for the order item with SKU 'MP05-33-Black'?",
+ "sql": "SELECT base_row_total FROM sales_order_item WHERE sku = 'MP05-33-Black';",
+ "answer": [
+ "45.6000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "45.6000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the credit memo with increment ID '000000001'.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the invoice associated with order ID 1?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 33?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the option ID 114?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 114;",
+ "answer": [
+ "Track Pants"
+ ],
+ "sql_execute_result": [
+ [
+ "Track Pants"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the customer with email 'brian.smith@yahoo.com'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'brian.smith@yahoo.com';",
+ "answer": [
+ "3",
+ "52",
+ "118",
+ "121",
+ "143",
+ "221",
+ "282"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 52
+ ],
+ [
+ 118
+ ],
+ [
+ 121
+ ],
+ [
+ 143
+ ],
+ [
+ 221
+ ],
+ [
+ 282
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product_id 1?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the order status of the order with increment_id '000000214'.",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000214';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1684?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1684;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store name for website ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of the product 'Sylvia Capri-29-Blue' were ordered on 2022-06-23?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sylvia Capri-29-Blue' AND period = '2022-06-23';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name with region ID 829?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 829;",
+ "answer": [
+ "L'Aquila"
+ ],
+ "sql_execute_result": [
+ [
+ "L'Aquila"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of the item with SKU 'WP09-29-Black'?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE sku = 'WP09-29-Black';",
+ "answer": [
+ "configurable",
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ],
+ [
+ "configurable"
+ ],
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category ID for the product 'Carina Basic Capri-29-Black'.",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1818;",
+ "answer": [
+ "27",
+ "32",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 32
+ ],
+ [
+ 35
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 1182?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 1182;",
+ "answer": [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are there in category with ID 37?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 37;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'FG'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'FG';",
+ "answer": [
+ "Foggia"
+ ],
+ "sql_execute_result": [
+ [
+ "Foggia"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'fraud'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'fraud';",
+ "answer": [
+ "Suspected Fraud"
+ ],
+ "sql_execute_result": [
+ [
+ "Suspected Fraud"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the invoice with ID 2?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category ID 14?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 14;",
+ "answer": [
+ "176"
+ ],
+ "sql_execute_result": [
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 348
+ ],
+ [
+ 349
+ ],
+ [
+ 350
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ],
+ [
+ 354
+ ],
+ [
+ 355
+ ],
+ [
+ 356
+ ],
+ [
+ 357
+ ],
+ [
+ 358
+ ],
+ [
+ 359
+ ],
+ [
+ 360
+ ],
+ [
+ 361
+ ],
+ [
+ 362
+ ],
+ [
+ 363
+ ],
+ [
+ 364
+ ],
+ [
+ 365
+ ],
+ [
+ 366
+ ],
+ [
+ 367
+ ],
+ [
+ 368
+ ],
+ [
+ 369
+ ],
+ [
+ 370
+ ],
+ [
+ 371
+ ],
+ [
+ 372
+ ],
+ [
+ 373
+ ],
+ [
+ 374
+ ],
+ [
+ 375
+ ],
+ [
+ 376
+ ],
+ [
+ 377
+ ],
+ [
+ 378
+ ],
+ [
+ 379
+ ],
+ [
+ 380
+ ],
+ [
+ 381
+ ],
+ [
+ 382
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 399
+ ],
+ [
+ 400
+ ],
+ [
+ 401
+ ],
+ [
+ 402
+ ],
+ [
+ 403
+ ],
+ [
+ 404
+ ],
+ [
+ 405
+ ],
+ [
+ 406
+ ],
+ [
+ 407
+ ],
+ [
+ 408
+ ],
+ [
+ 409
+ ],
+ [
+ 410
+ ],
+ [
+ 411
+ ],
+ [
+ 412
+ ],
+ [
+ 413
+ ],
+ [
+ 414
+ ],
+ [
+ 415
+ ],
+ [
+ 416
+ ],
+ [
+ 417
+ ],
+ [
+ 418
+ ],
+ [
+ 419
+ ],
+ [
+ 420
+ ],
+ [
+ 421
+ ],
+ [
+ 422
+ ],
+ [
+ 423
+ ],
+ [
+ 424
+ ],
+ [
+ 425
+ ],
+ [
+ 426
+ ],
+ [
+ 427
+ ],
+ [
+ 428
+ ],
+ [
+ 429
+ ],
+ [
+ 430
+ ]
+ ]
+ },
+ {
+ "question": "Find the first name of the customer associated with order address ID 336.",
+ "sql": "SELECT firstname FROM sales_order_address WHERE entity_id = 336;",
+ "answer": [
+ "Bob"
+ ],
+ "sql_execute_result": [
+ [
+ "Bob"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region associated with order address ID 413?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 413;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "Which color option has the value 'Red' in the attributes?",
+ "sql": "SELECT option_id FROM eav_attribute_option_value WHERE value = 'Red';",
+ "answer": [
+ "58"
+ ],
+ "sql_execute_result": [
+ [
+ 58
+ ]
+ ]
+ },
+ {
+ "question": "What is the email for the billing address with ID 534?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 534;",
+ "answer": [
+ "jla_7781@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jla_7781@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the product option with ID 75?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 75;",
+ "answer": [
+ "Lightweight"
+ ],
+ "sql_execute_result": [
+ [
+ "Lightweight"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are in category 35?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 35;",
+ "answer": [
+ "310"
+ ],
+ "sql_execute_result": [
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice created on 2023-04-19?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE created_at = '2023-04-19 16:15:45' OR created_at = '2023-04-19 16:15:47';",
+ "answer": [
+ "36.3900",
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ],
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with the attribute option ID 50?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 50;",
+ "answer": [
+ "Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Blue"
+ ]
+ ]
+ },
+ {
+ "question": "List all active stores.",
+ "sql": "SELECT store_id, name FROM store WHERE is_active = 1;",
+ "answer": [
+ "Admin",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ 0,
+ "Admin"
+ ],
+ [
+ 1,
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'pending_payment'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_payment';",
+ "answer": [
+ "Pending Payment"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending Payment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the group name for the store group with ID 1.",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 64?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 64;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Which store is the default store for the group 'Main Website Store'?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many option values are available in store ID 0?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE store_id = 0;",
+ "answer": [
+ "206"
+ ],
+ "sql_execute_result": [
+ [
+ "Male"
+ ],
+ [
+ "Female"
+ ],
+ [
+ "Not Specified"
+ ],
+ [
+ "Hike"
+ ],
+ [
+ "Outdoor"
+ ],
+ [
+ "Running"
+ ],
+ [
+ "Warmup"
+ ],
+ [
+ "Yoga"
+ ],
+ [
+ "Recreation"
+ ],
+ [
+ "Lounge"
+ ],
+ [
+ "Gym"
+ ],
+ [
+ "Climbing"
+ ],
+ [
+ "Crosstraining"
+ ],
+ [
+ "Post-workout"
+ ],
+ [
+ "Cycling"
+ ],
+ [
+ "Athletic"
+ ],
+ [
+ "Sports"
+ ],
+ [
+ "Hiking"
+ ],
+ [
+ "Overnight"
+ ],
+ [
+ "School"
+ ],
+ [
+ "Trail"
+ ],
+ [
+ "Travel"
+ ],
+ [
+ "Urban"
+ ],
+ [
+ "Backpack"
+ ],
+ [
+ "Luggage"
+ ],
+ [
+ "Duffel"
+ ],
+ [
+ "Messenger"
+ ],
+ [
+ "Laptop"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Tote"
+ ],
+ [
+ "Burlap"
+ ],
+ [
+ "Canvas"
+ ],
+ [
+ "Cotton"
+ ],
+ [
+ "Faux Leather"
+ ],
+ [
+ "Leather"
+ ],
+ [
+ "Mesh"
+ ],
+ [
+ "Nylon"
+ ],
+ [
+ "Polyester"
+ ],
+ [
+ "Rayon"
+ ],
+ [
+ "Ripstop"
+ ],
+ [
+ "Suede"
+ ],
+ [
+ "Foam"
+ ],
+ [
+ "Metal"
+ ],
+ [
+ "Plastic"
+ ],
+ [
+ "Rubber"
+ ],
+ [
+ "Synthetic"
+ ],
+ [
+ "Stainless Steel"
+ ],
+ [
+ "Silicone"
+ ],
+ [
+ "Adjustable"
+ ],
+ [
+ "Cross Body"
+ ],
+ [
+ "Detachable"
+ ],
+ [
+ "Double"
+ ],
+ [
+ "Padded"
+ ],
+ [
+ "Shoulder"
+ ],
+ [
+ "Single"
+ ],
+ [
+ "Telescoping"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Wheeled"
+ ],
+ [
+ "Hydration Pocket"
+ ],
+ [
+ "Audio Pocket"
+ ],
+ [
+ "Flapover"
+ ],
+ [
+ "Waterproof"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "TSA Approved"
+ ],
+ [
+ "Reflective"
+ ],
+ [
+ "Laptop Sleeve"
+ ],
+ [
+ "Lockable"
+ ],
+ [
+ "Men"
+ ],
+ [
+ "Women"
+ ],
+ [
+ "Boys"
+ ],
+ [
+ "Girls"
+ ],
+ [
+ "Unisex"
+ ],
+ [
+ "Cardio"
+ ],
+ [
+ "Electronic"
+ ],
+ [
+ "Exercise"
+ ],
+ [
+ "Fashion"
+ ],
+ [
+ "Hydration"
+ ],
+ [
+ "Timepiece"
+ ],
+ [
+ "Download"
+ ],
+ [
+ "DVD"
+ ],
+ [
+ "Base Layer"
+ ],
+ [
+ "Basic"
+ ],
+ [
+ "Capri"
+ ],
+ [
+ "Compression"
+ ],
+ [
+ "Leggings"
+ ],
+ [
+ "Parachute"
+ ],
+ [
+ "Skort"
+ ],
+ [
+ "Snug"
+ ],
+ [
+ "Sweatpants"
+ ],
+ [
+ "Tights"
+ ],
+ [
+ "Track Pants"
+ ],
+ [
+ "Workout Pants"
+ ],
+ [
+ "Insulated"
+ ],
+ [
+ "Jacket"
+ ],
+ [
+ "Vest"
+ ],
+ [
+ "Lightweight"
+ ],
+ [
+ "Hooded"
+ ],
+ [
+ "Heavy Duty"
+ ],
+ [
+ "Rain Coat"
+ ],
+ [
+ "Hard Shell"
+ ],
+ [
+ "Soft Shell"
+ ],
+ [
+ "Windbreaker"
+ ],
+ [
+ "½ zip"
+ ],
+ [
+ "¼ zip"
+ ],
+ [
+ "Full Zip"
+ ],
+ [
+ "Reversible"
+ ],
+ [
+ "Bra"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Sweatshirt"
+ ],
+ [
+ "Polo"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Tee"
+ ],
+ [
+ "Pullover"
+ ],
+ [
+ "Hoodie"
+ ],
+ [
+ "Cardigan"
+ ],
+ [
+ "Henley"
+ ],
+ [
+ "Tunic"
+ ],
+ [
+ "Camisole"
+ ],
+ [
+ "Cocona® performance fabric"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Fleece"
+ ],
+ [
+ "Hemp"
+ ],
+ [
+ "Jersey"
+ ],
+ [
+ "LumaTech™"
+ ],
+ [
+ "Lycra®"
+ ],
+ [
+ "Microfiber"
+ ],
+ [
+ "Spandex"
+ ],
+ [
+ "HeatTec®"
+ ],
+ [
+ "EverCool™"
+ ],
+ [
+ "Organic Cotton"
+ ],
+ [
+ "TENCEL"
+ ],
+ [
+ "CoolTech™"
+ ],
+ [
+ "Khaki"
+ ],
+ [
+ "Linen"
+ ],
+ [
+ "Wool"
+ ],
+ [
+ "Terry"
+ ],
+ [
+ "Sleeve"
+ ],
+ [
+ "Long-Sleeve"
+ ],
+ [
+ "Short-Sleeve"
+ ],
+ [
+ "Sleeveless"
+ ],
+ [
+ "Tank"
+ ],
+ [
+ "Strap"
+ ],
+ [
+ "N/A"
+ ],
+ [
+ "? zip"
+ ],
+ [
+ "Boat Neck"
+ ],
+ [
+ "Crew"
+ ],
+ [
+ "Full zip"
+ ],
+ [
+ "V-neck"
+ ],
+ [
+ "Ballet"
+ ],
+ [
+ "Scoop"
+ ],
+ [
+ "High Collar"
+ ],
+ [
+ "Stand Collar"
+ ],
+ [
+ "Roll Neck"
+ ],
+ [
+ "Square Neck"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Checked"
+ ],
+ [
+ "Color-Blocked"
+ ],
+ [
+ "Graphic Print"
+ ],
+ [
+ "Solid"
+ ],
+ [
+ "Solid-Highlight"
+ ],
+ [
+ "Striped"
+ ],
+ [
+ "Camo"
+ ],
+ [
+ "Geometric"
+ ],
+ [
+ "All-Weather"
+ ],
+ [
+ "Cold"
+ ],
+ [
+ "Cool"
+ ],
+ [
+ "Indoor"
+ ],
+ [
+ "Mild"
+ ],
+ [
+ "Rainy"
+ ],
+ [
+ "Spring"
+ ],
+ [
+ "Warm"
+ ],
+ [
+ "Windy"
+ ],
+ [
+ "Wintry"
+ ],
+ [
+ "Hot"
+ ],
+ [
+ "Black"
+ ],
+ [
+ "Blue"
+ ],
+ [
+ "Brown"
+ ],
+ [
+ "Gray"
+ ],
+ [
+ "Green"
+ ],
+ [
+ "Lavender"
+ ],
+ [
+ "Multi"
+ ],
+ [
+ "Orange"
+ ],
+ [
+ "Purple"
+ ],
+ [
+ "Red"
+ ],
+ [
+ "White"
+ ],
+ [
+ "Yellow"
+ ],
+ [
+ "55 cm"
+ ],
+ [
+ "XS"
+ ],
+ [
+ "65 cm"
+ ],
+ [
+ "S"
+ ],
+ [
+ "75 cm"
+ ],
+ [
+ "M"
+ ],
+ [
+ "6 foot"
+ ],
+ [
+ "L"
+ ],
+ [
+ "8 foot"
+ ],
+ [
+ "XL"
+ ],
+ [
+ "10 foot"
+ ],
+ [
+ "28"
+ ],
+ [
+ "29"
+ ],
+ [
+ "30"
+ ],
+ [
+ "31"
+ ],
+ [
+ "32"
+ ],
+ [
+ "33"
+ ],
+ [
+ "34"
+ ],
+ [
+ "36"
+ ],
+ [
+ "38"
+ ]
+ ]
+ },
+ {
+ "question": "Find the website ID associated with the store code 'admin'.",
+ "sql": "SELECT website_id FROM store WHERE code = 'admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer named 'Grace Nguyen'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Grace Nguyen';",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer 'Michael Nguyen'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Michael Nguyen';",
+ "answer": [
+ "789 W Madison St Chicago Illinois 60606"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Madison St Chicago Illinois 60606"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the first name of the customer with the default shipping address ID 15.",
+ "sql": "SELECT firstname FROM customer_entity WHERE default_shipping = 15;",
+ "answer": [
+ "Jane"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane"
+ ]
+ ]
+ },
+ {
+ "question": "Get the product name associated with the order item ID 1109.",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 1109;",
+ "answer": [
+ "Vulcan Weightlifting Tank"
+ ],
+ "sql_execute_result": [
+ [
+ "Vulcan Weightlifting Tank"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute 'website_id'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'website_id';",
+ "answer": [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with SKU 'WH10-XL-Blue'.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WH10-XL-Blue';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the region name for the billing address of customer 'Katie Wong'.",
+ "sql": "SELECT billing_region FROM customer_grid_flat WHERE name = 'Katie Wong';",
+ "answer": [
+ "Washington"
+ ],
+ "sql_execute_result": [
+ [
+ "Washington"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with payment entity ID 198?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 198;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Which countries have an ISO-3 code of 'MUS', 'BEL', and 'UZB'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso3_code IN ('MUS', 'BEL', 'UZB');",
+ "answer": [
+ "BE",
+ "MU",
+ "UZ"
+ ],
+ "sql_execute_result": [
+ [
+ "BE"
+ ],
+ [
+ "MU"
+ ],
+ [
+ "UZ"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total base amount ordered for payment entity ID 276.",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 276;",
+ "answer": [
+ "150.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "150.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "List the attributes used in product listings with attribute IDs 153 and 78.",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE used_in_product_listing = 1 AND attribute_id IN (153, 78);",
+ "answer": [
+ "78"
+ ],
+ "sql_execute_result": [
+ [
+ 78
+ ]
+ ]
+ },
+ {
+ "question": "Get the email address of the customer named 'Veronica Costello' from the sales credit memo grid.",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the payment entity ID 279?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 279;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the store code for the store named 'Admin'.",
+ "sql": "SELECT code FROM store WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer group ID for the customer named 'Veronica Costello' in the sales credit memo grid.",
+ "sql": "SELECT customer_group_id FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Check if attribute ID 134 is used in the grid.",
+ "sql": "SELECT is_used_in_grid FROM catalog_eav_attribute WHERE attribute_id = 134;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for attribute code 'sleeve'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'sleeve';",
+ "answer": [
+ "Sleeve"
+ ],
+ "sql_execute_result": [
+ [
+ "Sleeve"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for order with payment entity ID 274?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 274;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description for the product with entity ID 1632.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1632 AND attribute_id = 75;",
+ "answer": [
+ "Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.
\n• Mint bra top.
• Seam-free interior molded cups
• Odor control.
• UV protection.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.
\n• Mint bra top.
• Seam-free interior molded cups
• Odor control.
• UV protection.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Check the store ID associated with sales sequence meta for entity type 'order'.",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE entity_type = 'order';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found as bestsellers for March 2023 in store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-03-01' AND store_id = 1;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "Dual Handle Cardio Ball"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Stark Fundamental Hoodie-XS-Blue"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -L-Red"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XS-Black"
+ ],
+ [
+ "Primo Endurance Tank-M-Red"
+ ],
+ [
+ "Tiberius Gym Tank-M-Yellow"
+ ],
+ [
+ "Caesar Warm-Up Pant-32-Gray"
+ ],
+ [
+ "Supernova Sport Pant-32-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-M-Black"
+ ],
+ [
+ "Zoe Tank-XS-Green"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Fiona Fitness Short-31-Black"
+ ],
+ [
+ "Gwen Drawstring Bike Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "How much was the base shipping amount for payment with entity ID 196?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE entity_id = 196;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute ID corresponds to the 'Include in Navigation Menu' frontend label?",
+ "sql": "SELECT attribute_id FROM eav_attribute WHERE frontend_label = 'Include in Navigation Menu';",
+ "answer": [
+ "69"
+ ],
+ "sql_execute_result": [
+ [
+ 69
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type for the attribute code 'lastname'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'lastname';",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ],
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "Find the qty ordered for the product 'Layla Tee-XS-Green' in April 2022.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Layla Tee-XS-Green' AND period = '2022-04-01';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the additional information for payment entity ID 255.",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 255;",
+ "answer": [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the 'Bags' category?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 4;",
+ "answer": [
+ "14"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ]
+ ]
+ },
+ {
+ "question": "What is the website name associated with store group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total price including tax for the product 'Minerva LumaTech™ V-Tee'.",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for attribute ID 45?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 45;",
+ "answer": [
+ "name"
+ ],
+ "sql_execute_result": [
+ [
+ "name"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the 'Default' store group?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Default';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review with ID 96?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 96;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the product with SKU 'WH11-M-Green'?",
+ "sql": "SELECT tax_amount FROM sales_order_item WHERE sku = 'WH11-M-Green';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category path for category entity ID 24.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 24 AND attribute_id = 120;",
+ "answer": [
+ "women/tops-women/hoodies-and-sweatshirts-women"
+ ],
+ "sql_execute_result": [
+ [
+ "women/tops-women/hoodies-and-sweatshirts-women"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the customer with email 'lisa.green@hotmail.com'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'lisa.green@hotmail.com';",
+ "answer": [
+ "44",
+ "158",
+ "207"
+ ],
+ "sql_execute_result": [
+ [
+ 44
+ ],
+ [
+ 158
+ ],
+ [
+ 207
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of 'Minerva LumaTech\u2122 V-Tee' ordered in all orders?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are under the category with entity ID 33?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 33;",
+ "answer": [
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with increment ID '000000003'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000003';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for product ID 2040?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with ID 2?",
+ "sql": "SELECT street, city, region, postcode, country_id FROM sales_order_address WHERE entity_id = (SELECT shipping_address_id FROM sales_order WHERE entity_id = 2);",
+ "answer": [
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "Michigan",
+ "49628-7978",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "Michigan",
+ "49628-7978",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total of all sales orders for store ID 1?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'WS08-XS-Blue' in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WS08-XS-Blue');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute option value corresponds to option ID 137?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 137;",
+ "answer": [
+ "Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "How many votes did the review with ID 138 receive?",
+ "sql": "SELECT COUNT(*) FROM rating_option_vote WHERE review_id = 138;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the status ID of the review created on 2023-04-19 at 16:15:20 for product ID 1796?",
+ "sql": "SELECT status_id FROM review WHERE created_at = '2023-04-19 16:15:20' AND entity_pk_value = 1796;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity ID linked to the review with ID 268.",
+ "sql": "SELECT entity_id FROM review WHERE review_id = 268;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the remote IP for the vote with ID 349?",
+ "sql": "SELECT remote_ip FROM rating_option_vote WHERE vote_id = 349;",
+ "answer": [
+ "71.126.43.165"
+ ],
+ "sql_execute_result": [
+ [
+ "71.126.43.165"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute option value corresponds to option ID 140?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 140;",
+ "answer": [
+ "Tunic"
+ ],
+ "sql_execute_result": [
+ [
+ "Tunic"
+ ]
+ ]
+ },
+ {
+ "question": "What is the maximum value for the sales sequence profile with meta ID 4?",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE meta_id = 4;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "Find the percent value for the vote linked to review ID 302.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE review_id = 302;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer named 'Anna Nguyen'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Anna Nguyen';",
+ "answer": [
+ "anna.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "anna.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all products purchased by customer 'Veronica Costello' in order with increment ID '000000002'.",
+ "sql": "SELECT soi.name FROM sales_order_item soi JOIN sales_order so ON soi.order_id = so.entity_id WHERE so.increment_id = '000000002' AND so.customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for customer 'Jason Miller'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Jason Miller';",
+ "answer": [
+ "789 17th St Denver Colorado 80202"
+ ],
+ "sql_execute_result": [
+ [
+ "789 17th St Denver Colorado 80202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount refunded for the invoice associated with the product SKU 'WS03-XS-Red'?",
+ "sql": "SELECT base_discount_tax_compensation_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the payment methods used by customers whose orders are marked as 'closed'.",
+ "sql": "SELECT DISTINCT payment_method FROM sales_creditmemo_grid WHERE order_status = 'closed';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Get the name of the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Find the stock name for stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer 'Sam Wilson'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Sam Wilson';",
+ "answer": [
+ "3105551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3105551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base price including tax for the item with order item ID 2?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE order_item_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the created_in value for customer 'Brian Smith'?",
+ "sql": "SELECT created_in FROM customer_grid_flat WHERE name = 'Brian Smith';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region code 'LV-TA' in Latvia?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'LV-TA' AND country_id = 'LV';",
+ "answer": [
+ "Talsu novads"
+ ],
+ "sql_execute_result": [
+ [
+ "Talsu novads"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the billing address for order ID 138.",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 138 AND address_type = 'billing';",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the top-selling product in March 2023 at store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-03-01' AND store_id = 1 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "Which eav attribute option value corresponds to option ID 209?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 209;",
+ "answer": [
+ "Windy"
+ ],
+ "sql_execute_result": [
+ [
+ "Windy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product invoiced in the first invoice item?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total tax included price for a Minerva LumaTech\u2122 V-Tee?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for 'Sylvia Capri-28-Red' in January 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sylvia Capri-28-Red' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default name of the region with ID 619 in Belarus.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 619;",
+ "answer": [
+ "Viciebskaja voblas\u0107"
+ ],
+ "sql_execute_result": [
+ [
+ "Viciebskaja voblas\u0107"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the Iris Workout Top?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region code for Berlin in Germany?",
+ "sql": "SELECT code FROM directory_country_region WHERE default_name = 'Berlin' AND country_id = 'DE';",
+ "answer": [
+ "BER"
+ ],
+ "sql_execute_result": [
+ [
+ "BER"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU '24-WG082-pink'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = '24-WG082-pink';",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer 'Jane Smith'?",
+ "sql": "SELECT entity_id AS order_id, status FROM sales_order_grid WHERE customer_name = 'Jane Smith';",
+ "answer": [
+ "18"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "complete"
+ ],
+ [
+ 12,
+ "canceled"
+ ],
+ [
+ 34,
+ "complete"
+ ],
+ [
+ 61,
+ "complete"
+ ],
+ [
+ 70,
+ "complete"
+ ],
+ [
+ 76,
+ "canceled"
+ ],
+ [
+ 91,
+ "complete"
+ ],
+ [
+ 99,
+ "complete"
+ ],
+ [
+ 103,
+ "canceled"
+ ],
+ [
+ 163,
+ "complete"
+ ],
+ [
+ 186,
+ "complete"
+ ],
+ [
+ 199,
+ "complete"
+ ],
+ [
+ 222,
+ "canceled"
+ ],
+ [
+ 226,
+ "canceled"
+ ],
+ [
+ 246,
+ "canceled"
+ ],
+ [
+ 247,
+ "complete"
+ ],
+ [
+ 271,
+ "canceled"
+ ],
+ [
+ 274,
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'tanks'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'tanks';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price for the order with ID 101?",
+ "sql": "SELECT SUM(price) FROM sales_order_item WHERE order_id = 101;",
+ "answer": [
+ "174.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "174.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the popularity of the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "List the items in order ID 46.",
+ "sql": "SELECT item_id, name AS product_name, sku FROM sales_order_item WHERE order_id = 46;",
+ "answer": [
+ "Nadia Elements Shell",
+ "Nadia Elements Shell-XL-Black",
+ "Riona Full Zip Jacket",
+ "Riona Full Zip Jacket-XL-Brown"
+ ],
+ "sql_execute_result": [
+ [
+ 244,
+ "Nadia Elements Shell",
+ "WJ10-XL-Black"
+ ],
+ [
+ 245,
+ "Nadia Elements Shell-XL-Black",
+ "WJ10-XL-Black"
+ ],
+ [
+ 246,
+ "Riona Full Zip Jacket",
+ "WJ05-XL-Brown"
+ ],
+ [
+ 247,
+ "Riona Full Zip Jacket-XL-Brown",
+ "WJ05-XL-Brown"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 591 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 591 AND locale = 'en_US';",
+ "answer": [
+ "Meghalaya"
+ ],
+ "sql_execute_result": [
+ [
+ "Meghalaya"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the order with ID 240?",
+ "sql": "SELECT created_at FROM sales_order_grid WHERE entity_id = 240;",
+ "answer": [
+ "2023-03-25 15:53:22"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-03-25 15:53:22"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of items in order ID 235.",
+ "sql": "SELECT SUM(weight) FROM sales_order_item WHERE order_id = 235;",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the entity type code for the entity type ID 6.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for shipment item with entity_id 3?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE entity_id = 3;",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for status_id 2 in the review_status table?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value for the eav_attribute_option_value where option_id is 93.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 93;",
+ "answer": [
+ "75 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "75 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity_type_code for entity_type_id 6 in the eav_entity_type table?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for the category with entity ID 7.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 7 AND attribute_id = 120;",
+ "answer": [
+ "collections"
+ ],
+ "sql_execute_result": [
+ [
+ "collections"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the product named 'Iris Workout Top'?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many email addresses were found for customers created in the 'Default Store View'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ],
+ [
+ "john.smith.xyz@gmail.com"
+ ],
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "bbjones@gmail.com"
+ ],
+ [
+ "helloworld@yahoo.com"
+ ],
+ [
+ "jla_7781@gmail.com"
+ ],
+ [
+ "bob123@hotmail.com"
+ ],
+ [
+ "marym@gmail.com"
+ ],
+ [
+ "john.lee@yahoo.com"
+ ],
+ [
+ "janesmith@gmail.com"
+ ],
+ [
+ "daniel.jackson@hotmail.com"
+ ],
+ [
+ "lisa.kim@gmail.com"
+ ],
+ [
+ "matt.baker@yahoo.com"
+ ],
+ [
+ "johndoe123@gmail.com"
+ ],
+ [
+ "janesmith456@yahoo.com"
+ ],
+ [
+ "coolcat321@hotmail.com"
+ ],
+ [
+ "harrypotterfan1@gmail.com"
+ ],
+ [
+ "avidreader99@yahoo.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "beachlover99@yahoo.com"
+ ],
+ [
+ "fashionista88@gmail.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "musiclover99@hotmail.com"
+ ],
+ [
+ "gamingpro456@gmail.com"
+ ],
+ [
+ "jennifer.white@yahoo.com"
+ ],
+ [
+ "alex.martin@gmail.com"
+ ],
+ [
+ "lisa.green@hotmail.com"
+ ],
+ [
+ "michael.nguyen@yahoo.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "jason.miller@yahoo.com"
+ ],
+ [
+ "katie.wong@hotmail.com"
+ ],
+ [
+ "adam.garcia@gmail.com"
+ ],
+ [
+ "brian.smith@yahoo.com"
+ ],
+ [
+ "samantha.nguyen@gmail.com"
+ ],
+ [
+ "alexander.thomas@hotmail.com"
+ ],
+ [
+ "sam.wilson@yahoo.com"
+ ],
+ [
+ "kate.jones@gmail.com"
+ ],
+ [
+ "david.smith@gmail.com"
+ ],
+ [
+ "jessica.nguyen@gmail.com"
+ ],
+ [
+ "maxwell.baker@yahoo.com"
+ ],
+ [
+ "emily.chen@hotmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ],
+ [
+ "roberto.lopez@hotmail.com"
+ ],
+ [
+ "amanda.kim@gmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ],
+ [
+ "john.smith@yahoo.com"
+ ],
+ [
+ "jessica.chang@hotmail.com"
+ ],
+ [
+ "james.kim@gmail.com"
+ ],
+ [
+ "samantha.wu@yahoo.com"
+ ],
+ [
+ "robert.johnson@gmail.com"
+ ],
+ [
+ "sophia.kim@gmail.com"
+ ],
+ [
+ "william.chang@hotmail.com"
+ ],
+ [
+ "jessica.wong@gmail.com"
+ ],
+ [
+ "ethan.garcia@yahoo.com"
+ ],
+ [
+ "olivia.jackson@gmail.com"
+ ],
+ [
+ "jacob.rivera@hotmail.com"
+ ],
+ [
+ "sophia.young@gmail.com"
+ ],
+ [
+ "ryan.tanaka@yahoo.com"
+ ],
+ [
+ "julie.nguyen@gmail.com"
+ ],
+ [
+ "matthew.kim@gmail.com"
+ ],
+ [
+ "emily.wilson@gmail.com"
+ ],
+ [
+ "james.baker@gmail.com"
+ ],
+ [
+ "isabella.santos@gmail.com"
+ ],
+ [
+ "nathan.chen@gmail.com"
+ ],
+ [
+ "hannah.lim@gmail.com"
+ ],
+ [
+ "isaac.rodriguez@gmail.com"
+ ],
+ [
+ "natalie.kim@gmail.com"
+ ],
+ [
+ "sean.miller@gmail.com"
+ ],
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for the product with entity ID 1380?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1380 AND attribute_id = 123;",
+ "answer": [
+ "79.99"
+ ],
+ "sql_execute_result": [
+ [
+ "79.990000"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs were found for products in category ID 28?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 28;",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for customer 'Mary Martin'?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Mary Martin';",
+ "answer": [
+ "3059876543"
+ ],
+ "sql_execute_result": [
+ [
+ "3059876543"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID associated with the region 'Illinois'.",
+ "sql": "SELECT billing_region_id FROM customer_grid_flat WHERE billing_region = 'Illinois' LIMIT 1;",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value for the category with entity ID 40.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 40 AND attribute_id = 52;",
+ "answer": [
+ "PAGE"
+ ],
+ "sql_execute_result": [
+ [
+ "PAGE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email for the order with increment ID '000000035'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000035';",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the order placed by customer with email 'jennifer.white@yahoo.com'.",
+ "sql": "SELECT status FROM sales_order_grid WHERE customer_email = 'jennifer.white@yahoo.com';",
+ "answer": [
+ "canceled",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in invoice with increment ID '000000002'?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with ID 13 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 13;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order placed by 'Alexander Thomas'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE customer_name = 'Alexander Thomas';",
+ "answer": [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ],
+ [
+ "456 Hollywood Blvd,Los Angeles,California,90028"
+ ]
+ ]
+ },
+ {
+ "question": "Get the base grand total for the invoice associated with order ID 1.",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping information for order with increment ID '000000285'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000285';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax class ID for the customer group 'Wholesale'.",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'Wholesale';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the base subtotal for the invoice with entity ID 1?",
+ "sql": "SELECT base_subtotal FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with status 'complete' were found?",
+ "sql": "SELECT increment_id, customer_name FROM sales_order_grid WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ "000000004",
+ "Jane Smith"
+ ],
+ [
+ "000000009",
+ "John Smith"
+ ],
+ [
+ "000000011",
+ "Grace Nguyen"
+ ],
+ [
+ "000000013",
+ "Jason Miller"
+ ],
+ [
+ "000000016",
+ "Grace Nguyen"
+ ],
+ [
+ "000000017",
+ "Adam Garcia"
+ ],
+ [
+ "000000020",
+ "Jason Miller"
+ ],
+ [
+ "000000021",
+ "Lily Potter"
+ ],
+ [
+ "000000022",
+ "Lily Potter"
+ ],
+ [
+ "000000023",
+ "Alex Martin"
+ ],
+ [
+ "000000024",
+ "Mary Martin"
+ ],
+ [
+ "000000027",
+ "Bob Johnson"
+ ],
+ [
+ "000000028",
+ "Sarah Miller"
+ ],
+ [
+ "000000031",
+ "Jane Doe"
+ ],
+ [
+ "000000032",
+ "Grace Nguyen"
+ ],
+ [
+ "000000033",
+ "Alex Johnson"
+ ],
+ [
+ "000000034",
+ "Jane Smith"
+ ],
+ [
+ "000000035",
+ "Alex Martin"
+ ],
+ [
+ "000000036",
+ "Katie Wong"
+ ],
+ [
+ "000000037",
+ "David Lee"
+ ],
+ [
+ "000000043",
+ "Bob Johnson"
+ ],
+ [
+ "000000045",
+ "Alex Johnson"
+ ],
+ [
+ "000000047",
+ "Jane Doe"
+ ],
+ [
+ "000000048",
+ "Ava Brown"
+ ],
+ [
+ "000000050",
+ "Lucy Garcia"
+ ],
+ [
+ "000000051",
+ "John Lee"
+ ],
+ [
+ "000000053",
+ "Julia Williams"
+ ],
+ [
+ "000000054",
+ "Julia Williams"
+ ],
+ [
+ "000000055",
+ "Bob Johnson"
+ ],
+ [
+ "000000057",
+ "Adam Garcia"
+ ],
+ [
+ "000000061",
+ "Jane Smith"
+ ],
+ [
+ "000000062",
+ "Sarah Miller"
+ ],
+ [
+ "000000064",
+ "Mary Martin"
+ ],
+ [
+ "000000069",
+ "Alexander Thomas"
+ ],
+ [
+ "000000070",
+ "Jane Smith"
+ ],
+ [
+ "000000071",
+ "Daniel Jackson"
+ ],
+ [
+ "000000073",
+ "Bob Jones"
+ ],
+ [
+ "000000075",
+ "Jennifer White"
+ ],
+ [
+ "000000078",
+ "Ava Brown"
+ ],
+ [
+ "000000079",
+ "John Smith"
+ ],
+ [
+ "000000082",
+ "Adam Garcia"
+ ],
+ [
+ "000000083",
+ "Bob Johnson"
+ ],
+ [
+ "000000084",
+ "Jane Doe"
+ ],
+ [
+ "000000087",
+ "Bob Jones"
+ ],
+ [
+ "000000089",
+ "Matt Baker"
+ ],
+ [
+ "000000090",
+ "Ava Brown"
+ ],
+ [
+ "000000091",
+ "Jane Smith"
+ ],
+ [
+ "000000092",
+ "Jason Miller"
+ ],
+ [
+ "000000093",
+ "John Smith"
+ ],
+ [
+ "000000096",
+ "John Smith"
+ ],
+ [
+ "000000097",
+ "Matt Baker"
+ ],
+ [
+ "000000099",
+ "Jane Smith"
+ ],
+ [
+ "000000100",
+ "Jennifer White"
+ ],
+ [
+ "000000102",
+ "Michael Nguyen"
+ ],
+ [
+ "000000104",
+ "John Lee"
+ ],
+ [
+ "000000105",
+ "Michael Nguyen"
+ ],
+ [
+ "000000112",
+ "Lucy Garcia"
+ ],
+ [
+ "000000113",
+ "Lucy Garcia"
+ ],
+ [
+ "000000114",
+ "Grace Nguyen"
+ ],
+ [
+ "000000115",
+ "John Smith"
+ ],
+ [
+ "000000116",
+ "Jane Doe"
+ ],
+ [
+ "000000119",
+ "Michael Nguyen"
+ ],
+ [
+ "000000121",
+ "Brian Smith"
+ ],
+ [
+ "000000127",
+ "Michael Nguyen"
+ ],
+ [
+ "000000128",
+ "Ava Brown"
+ ],
+ [
+ "000000130",
+ "Adam Garcia"
+ ],
+ [
+ "000000131",
+ "Matt Baker"
+ ],
+ [
+ "000000133",
+ "Jason Miller"
+ ],
+ [
+ "000000137",
+ "Samantha Jones"
+ ],
+ [
+ "000000138",
+ "Matt Baker"
+ ],
+ [
+ "000000139",
+ "Katie Wong"
+ ],
+ [
+ "000000140",
+ "Jennifer White"
+ ],
+ [
+ "000000145",
+ "Samantha Nguyen"
+ ],
+ [
+ "000000146",
+ "Alex Johnson"
+ ],
+ [
+ "000000147",
+ "Jennifer White"
+ ],
+ [
+ "000000148",
+ "Samantha Jones"
+ ],
+ [
+ "000000150",
+ "Alex Johnson"
+ ],
+ [
+ "000000154",
+ "Samantha Jones"
+ ],
+ [
+ "000000155",
+ "Olivia Lee"
+ ],
+ [
+ "000000156",
+ "Sarah Miller"
+ ],
+ [
+ "000000158",
+ "Lisa Green"
+ ],
+ [
+ "000000160",
+ "Michael Nguyen"
+ ],
+ [
+ "000000161",
+ "Samantha Jones"
+ ],
+ [
+ "000000163",
+ "Jane Smith"
+ ],
+ [
+ "000000164",
+ "Lucy Garcia"
+ ],
+ [
+ "000000166",
+ "Grace Nguyen"
+ ],
+ [
+ "000000169",
+ "Jennifer White"
+ ],
+ [
+ "000000179",
+ "Michael Nguyen"
+ ],
+ [
+ "000000181",
+ "Lily Potter"
+ ],
+ [
+ "000000182",
+ "Lily Potter"
+ ],
+ [
+ "000000184",
+ "Adam Garcia"
+ ],
+ [
+ "000000186",
+ "Jane Smith"
+ ],
+ [
+ "000000187",
+ "Matt Baker"
+ ],
+ [
+ "000000188",
+ "John Doe"
+ ],
+ [
+ "000000189",
+ "Grace Nguyen"
+ ],
+ [
+ "000000190",
+ "Jane Doe"
+ ],
+ [
+ "000000192",
+ "Emma Davis"
+ ],
+ [
+ "000000196",
+ "Jason Miller"
+ ],
+ [
+ "000000197",
+ "Jane Doe"
+ ],
+ [
+ "000000199",
+ "Jane Smith"
+ ],
+ [
+ "000000200",
+ "Ava Brown"
+ ],
+ [
+ "000000201",
+ "Matt Baker"
+ ],
+ [
+ "000000202",
+ "Mary Martin"
+ ],
+ [
+ "000000203",
+ "Bob Jones"
+ ],
+ [
+ "000000205",
+ "John Lee"
+ ],
+ [
+ "000000207",
+ "Lisa Green"
+ ],
+ [
+ "000000208",
+ "Michael Nguyen"
+ ],
+ [
+ "000000213",
+ "Bob Johnson"
+ ],
+ [
+ "000000214",
+ "Adam Garcia"
+ ],
+ [
+ "000000215",
+ "Lucy Garcia"
+ ],
+ [
+ "000000216",
+ "Sarah Miller"
+ ],
+ [
+ "000000217",
+ "John Smith"
+ ],
+ [
+ "000000218",
+ "Alex Johnson"
+ ],
+ [
+ "000000223",
+ "Bob Jones"
+ ],
+ [
+ "000000225",
+ "Jane Doe"
+ ],
+ [
+ "000000228",
+ "Bob Jones"
+ ],
+ [
+ "000000230",
+ "Ava Brown"
+ ],
+ [
+ "000000231",
+ "Lisa Kim"
+ ],
+ [
+ "000000233",
+ "Daniel Jackson"
+ ],
+ [
+ "000000235",
+ "Lisa Kim"
+ ],
+ [
+ "000000236",
+ "Sarah Miller"
+ ],
+ [
+ "000000237",
+ "Bob Johnson"
+ ],
+ [
+ "000000238",
+ "Alex Martin"
+ ],
+ [
+ "000000239",
+ "Samantha Jones"
+ ],
+ [
+ "000000240",
+ "Alex Martin"
+ ],
+ [
+ "000000243",
+ "Samantha Jones"
+ ],
+ [
+ "000000247",
+ "Jane Smith"
+ ],
+ [
+ "000000250",
+ "Daniel Jackson"
+ ],
+ [
+ "000000251",
+ "Alexander Thomas"
+ ],
+ [
+ "000000253",
+ "Sarah Miller"
+ ],
+ [
+ "000000256",
+ "Adam Garcia"
+ ],
+ [
+ "000000257",
+ "John Smith"
+ ],
+ [
+ "000000258",
+ "Michael Nguyen"
+ ],
+ [
+ "000000260",
+ "John Lee"
+ ],
+ [
+ "000000262",
+ "John Doe"
+ ],
+ [
+ "000000263",
+ "John Doe"
+ ],
+ [
+ "000000264",
+ "Lucy Garcia"
+ ],
+ [
+ "000000268",
+ "Alex Martin"
+ ],
+ [
+ "000000269",
+ "Sophie Taylor"
+ ],
+ [
+ "000000270",
+ "Ava Brown"
+ ],
+ [
+ "000000274",
+ "Jane Smith"
+ ],
+ [
+ "000000276",
+ "Sarah Miller"
+ ],
+ [
+ "000000277",
+ "Katie Wong"
+ ],
+ [
+ "000000281",
+ "Mary Martin"
+ ],
+ [
+ "000000282",
+ "Brian Smith"
+ ],
+ [
+ "000000284",
+ "Adam Garcia"
+ ],
+ [
+ "000000285",
+ "Olivia Lee"
+ ],
+ [
+ "000000286",
+ "Olivia Lee"
+ ],
+ [
+ "000000287",
+ "Alex Johnson"
+ ],
+ [
+ "000000288",
+ "Bob Jones"
+ ],
+ [
+ "000000295",
+ "Matt Baker"
+ ],
+ [
+ "000000297",
+ "Sarah Miller"
+ ],
+ [
+ "000000298",
+ "Alex Martin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the shipping address for order ID 9?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 9 AND address_type = 'shipping';",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with the entity ID 824?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 824;",
+ "answer": [
+ "MP08-34-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MP08-34-Red"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were made for the product 'Zeppelin Yoga Pant-34-Red' on 2023-04-17?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Zeppelin Yoga Pant-34-Red' AND period = '2023-04-17';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full address for the shipping address of order ID 9.",
+ "sql": "SELECT street, city, region, postcode, country_id FROM sales_order_address WHERE parent_id = 9 AND address_type = 'shipping';",
+ "answer": [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all orders with the status 'complete'?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'john.smith.xyz@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_entity WHERE email = 'john.smith.xyz@gmail.com';",
+ "answer": [
+ "John Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "John Smith"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 357?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 357 AND attribute_id = 75;",
+ "answer": [
+ "The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.
\n• Red 1/4 zip pullover.
• Adjustable VELCRO® sleeve cuffs.
• Two hand pockets.
• Napoleon pocket.
• Machine wash/dry
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.
\n• Red 1/4 zip pullover.
• Adjustable VELCRO® sleeve cuffs.
• Two hand pockets.
• Napoleon pocket.
• Machine wash/dry
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of the product with product ID 1175 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1175;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID of the shipment with entity ID 1?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "Which website has the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity status for product ID 1668?",
+ "sql": "SELECT IF(is_in_stock = 1, 'In stock', 'Out of stock') AS stock_status FROM cataloginventory_stock_item WHERE product_id = 1668;",
+ "answer": [
+ "In stock"
+ ],
+ "sql_execute_result": [
+ [
+ "In stock"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the shipment with increment ID '000000002'?",
+ "sql": "SELECT created_at FROM sales_shipment WHERE increment_id = '000000002';",
+ "answer": [
+ "2023-04-19 16:15:47"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:47"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default group ID of the website with the name 'Admin'?",
+ "sql": "SELECT default_group_id FROM store_website WHERE name = 'Admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What quantity of the product with item ID 1954 is available?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE item_id = 1954;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the updated timestamp of the shipment with entity ID 3?",
+ "sql": "SELECT updated_at FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2023-04-23 22:09:21"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-23 22:09:21"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Ana Running Short-29-Black' in store 1 on 2022-08-17?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Ana Running Short-29-Black' AND store_id = 1 AND period = '2022-08-17';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status label for the order status 'fraud'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'fraud';",
+ "answer": [
+ "Suspected Fraud"
+ ],
+ "sql_execute_result": [
+ [
+ "Suspected Fraud"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product 'Argus All-Weather Tank' with size 'S' and color 'Gray'?",
+ "sql": "SELECT sku FROM sales_order_item WHERE name = 'Argus All-Weather Tank' AND product_options LIKE '%\"Color\",\"value\":\"Gray\"%' AND product_options LIKE '%\"Size\",\"value\":\"S\"%';",
+ "answer": [
+ "MT07-S-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MT07-S-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders include the product 'Apollo Running Short' with size '33' and color 'Black'?",
+ "sql": "SELECT COUNT(*) FROM sales_order_item WHERE name = 'Apollo Running Short' AND product_options LIKE '%\"Color\",\"value\":\"Black\"%' AND product_options LIKE '%\"Size\",\"value\":\"33\"%';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Sprite Yoga Strap 8 foot' on 2022-02-06 in store 1?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Yoga Strap 8 foot' AND store_id = 1 AND period = '2022-02-06';",
+ "answer": [
+ "17.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "17.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are associated with category ID 32?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 32;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer group ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product name for product ID 1003 in store 0 on 2022-05-02.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 1003 AND store_id = 0 AND period = '2022-05-02';",
+ "answer": [
+ "Arcadio Gym Short-32-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Arcadio Gym Short-32-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order status label for 'paypal_canceled_reversal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total price including tax for the product 'Iris Workout Top-M-Green' in order ID 292.",
+ "sql": "SELECT price_incl_tax FROM sales_order_item WHERE name = 'Iris Workout Top' AND product_options LIKE '%\"Color\",\"value\":\"Green\"%' AND product_options LIKE '%\"Size\",\"value\":\"M\"%' AND order_id = 292;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Sprite Stasis Ball 65 cm' in March 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Sprite Stasis Ball 65 cm' AND period = '2023-03-01';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with the order ID 72?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 72;",
+ "answer": [
+ "jennifer.white@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jennifer.white@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with stock ID 1.",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WJ05-M-Brown'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WJ05-M-Brown';",
+ "answer": [
+ "Riona Full Zip Jacket",
+ "Riona Full Zip Jacket-M-Brown"
+ ],
+ "sql_execute_result": [
+ [
+ "Riona Full Zip Jacket"
+ ],
+ [
+ "Riona Full Zip Jacket-M-Brown"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are in the 'canceled' state for customer ID 2?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 2 AND state = 'canceled';",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Kenobi Trail Jacket-XL-Blue' in March 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Kenobi Trail Jacket-XL-Blue' AND period = '2022-03-01';",
+ "answer": [
+ "7",
+ "32"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ],
+ [
+ 32
+ ]
+ ]
+ },
+ {
+ "question": "What is the protect code for the order with increment ID '000000077'?",
+ "sql": "SELECT protect_code FROM sales_order WHERE increment_id = '000000077';",
+ "answer": [
+ "b2e74dfd6c8fc464f13040806d1beef9"
+ ],
+ "sql_execute_result": [
+ [
+ "b2e74dfd6c8fc464f13040806d1beef9"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for the order with entity ID 99?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 99;",
+ "answer": [
+ "181.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "181.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer made an order with the product 'Meteor Workout Short-36-Blue'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = (SELECT order_id FROM sales_order_item WHERE product_id = 909);",
+ "answer": [
+ "jane.doe@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with option ID 147?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 147;",
+ "answer": [
+ "LumaTech\u2122"
+ ],
+ "sql_execute_result": [
+ [
+ "LumaTech™"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 25?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 25;",
+ "answer": [
+ "gamingpro456@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "gamingpro456@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'helloworld@yahoo.com'?",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'helloworld@yahoo.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ],
+ [
+ 28
+ ],
+ [
+ 39
+ ],
+ [
+ 62
+ ],
+ [
+ 101
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 185
+ ],
+ [
+ 216
+ ],
+ [
+ 229
+ ],
+ [
+ 236
+ ],
+ [
+ 253
+ ],
+ [
+ 276
+ ],
+ [
+ 297
+ ],
+ [
+ 299
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount due for order with increment ID '000000221'?",
+ "sql": "SELECT total_due FROM sales_order WHERE increment_id = '000000221';",
+ "answer": [
+ "76.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "76.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the names of customer groups with a tax class ID of 3.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE tax_class_id = 3;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are linked to category ID 32?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 32;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with code 'news_from_date'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'news_from_date';",
+ "answer": [
+ "Set Product as New from Date"
+ ],
+ "sql_execute_result": [
+ [
+ "Set Product as New from Date"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the status of the order placed by customer with ID 4.",
+ "sql": "SELECT status FROM sales_order WHERE customer_id = 4;",
+ "answer": [
+ "canceled",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "canceled"
+ ],
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of items ordered in the order with ID 276.",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 276;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000150'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000150';",
+ "answer": [
+ "215.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "215.8000"
+ ]
+ ]
+ },
+ {
+ "question": "List all active sequence profiles.",
+ "sql": "SELECT profile_id FROM sales_sequence_profile WHERE is_active = 1;",
+ "answer": [
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with increment ID '000000173'?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000173';",
+ "answer": [
+ "94.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "94.2000"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WS08-XS-Blue' and what is its base price?",
+ "sql": "SELECT base_price FROM sales_order_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ],
+ [
+ "32.0000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 24?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 24;",
+ "answer": [
+ "musiclover99@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "musiclover99@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product with product ID 1428.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE product_id = 1428;",
+ "answer": [
+ "7.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with entity ID 174?",
+ "sql": "SELECT status FROM sales_order_grid WHERE entity_id = 174;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order with increment ID '000000084'?",
+ "sql": "SELECT shipping_information FROM sales_order_grid WHERE increment_id = '000000084';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name for the sales order with entity ID 259.",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE entity_id = 259;",
+ "answer": [
+ "Jane Doe"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Doe"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 1492 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1492;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many orders has the customer with email 'jane.doe@hotmail.com' placed?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE customer_email = 'jane.doe@hotmail.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 12
+ ]
+ ]
+ },
+ {
+ "question": "List the countries with ISO2 code 'CH' and their corresponding ISO3 codes.",
+ "sql": "SELECT country_id, iso3_code FROM directory_country WHERE iso2_code = 'CH';",
+ "answer": [
+ "CH",
+ "CHE"
+ ],
+ "sql_execute_result": [
+ [
+ "CH",
+ "CHE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with ID 27?",
+ "sql": "SELECT entity_id, status, store_id, grand_total, created_at FROM sales_order_grid WHERE customer_id = 27;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 23,
+ "complete",
+ 1,
+ "65.0000",
+ "2022-06-07 21:19:20"
+ ],
+ [
+ 30,
+ "canceled",
+ 1,
+ "67.0000",
+ "2022-03-23 16:20:44"
+ ],
+ [
+ 35,
+ "complete",
+ 1,
+ "177.0000",
+ "2022-05-13 01:39:10"
+ ],
+ [
+ 63,
+ "canceled",
+ 1,
+ "196.0000",
+ "2023-04-01 15:59:23"
+ ],
+ [
+ 165,
+ "canceled",
+ 1,
+ "202.6000",
+ "2023-02-24 15:48:18"
+ ],
+ [
+ 173,
+ "canceled",
+ 1,
+ "94.2000",
+ "2022-02-02 12:30:40"
+ ],
+ [
+ 177,
+ "canceled",
+ 1,
+ "76.0000",
+ "2022-07-13 18:02:34"
+ ],
+ [
+ 191,
+ "canceled",
+ 1,
+ "95.0000",
+ "2022-05-14 00:01:55"
+ ],
+ [
+ 238,
+ "complete",
+ 1,
+ "171.0000",
+ "2022-01-20 23:40:22"
+ ],
+ [
+ 240,
+ "complete",
+ 1,
+ "57.0000",
+ "2023-03-25 15:53:22"
+ ],
+ [
+ 268,
+ "complete",
+ 1,
+ "179.0000",
+ "2023-02-11 13:49:26"
+ ],
+ [
+ 298,
+ "complete",
+ 1,
+ "84.0000",
+ "2022-11-10 21:16:57"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base grand total of all canceled orders?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order_grid WHERE status = 'canceled';",
+ "answer": [
+ "17408.0700"
+ ],
+ "sql_execute_result": [
+ [
+ "17408.0700"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of orders placed in the 'Main Website' store?",
+ "sql": "SELECT COUNT(*) FROM sales_order_grid WHERE store_id = 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Erikssen CoolTech\u2122 Fitness Tank-XS-Gray' in March 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Erikssen CoolTech™ Fitness Tank-XS-Gray' AND period = '2022-03-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code for customer Nathan Chen?",
+ "sql": "SELECT postcode FROM customer_address_entity WHERE firstname = 'Nathan' AND lastname = 'Chen';",
+ "answer": [
+ "80202"
+ ],
+ "sql_execute_result": [
+ [
+ "80202"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for the 'Riona Full Zip Jacket-XS-Red'.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Riona Full Zip Jacket-XS-Red';",
+ "answer": [
+ "60.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "60.0000"
+ ],
+ [
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the default website?",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price value for the product entity with ID 716?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 716 AND attribute_id = 77;",
+ "answer": [
+ "18.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "18.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity ID for the latest shipment sequence.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many times was 'Breathe-Easy Tank-L-White' ordered in March 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Breathe-Easy Tank-L-White' AND period = '2022-03-01';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of customer Grace Nguyen?",
+ "sql": "SELECT city FROM customer_address_entity WHERE firstname = 'Grace' AND lastname = 'Nguyen';",
+ "answer": [
+ "Cambridge"
+ ],
+ "sql_execute_result": [
+ [
+ "Cambridge"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the website with code 'admin'?",
+ "sql": "SELECT sort_order FROM store_website WHERE code = 'admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for customer Jessica Wong?",
+ "sql": "SELECT region FROM customer_address_entity WHERE firstname = 'Jessica' AND lastname = 'Wong';",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 341?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 341;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice with increment ID '000000001'?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the invoice with entity ID 2.",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with the 'nike' search query?",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the created date for the review associated with product ID 622.",
+ "sql": "SELECT created_at FROM review WHERE entity_pk_value = 622;",
+ "answer": [
+ "2023-04-19 16:15:12"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:12"
+ ],
+ [
+ "2023-04-19 16:15:12"
+ ],
+ [
+ "2023-04-19 16:15:12"
+ ],
+ [
+ "2023-04-19 16:15:12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the invoice with entity ID 1?",
+ "sql": "SELECT shipping_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'tanks' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'tanks';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with the billing address ID 4?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE billing_address_id = 4;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for invoice with increment ID '000000002'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for product ID 39 in the daily bestsellers.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 39;",
+ "answer": [
+ "Cruise Dual Analog Watch"
+ ],
+ "sql_execute_result": [
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ],
+ [
+ "Cruise Dual Analog Watch"
+ ]
+ ]
+ },
+ {
+ "question": "How many order statuses are available?",
+ "sql": "SELECT label FROM sales_order_status;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ],
+ [
+ "Closed"
+ ],
+ [
+ "Complete"
+ ],
+ [
+ "Suspected Fraud"
+ ],
+ [
+ "On Hold"
+ ],
+ [
+ "Payment Review"
+ ],
+ [
+ "PayPal Canceled Reversal"
+ ],
+ [
+ "PayPal Reversed"
+ ],
+ [
+ "Pending"
+ ],
+ [
+ "Pending Payment"
+ ],
+ [
+ "Pending PayPal"
+ ],
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute ID 75 for product ID 1737 in catalog product entity text?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE attribute_id = 75 AND entity_id = 1737;",
+ "answer": [
+ "The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.
\n• Blue heather rouched tank top.
• Camisole tank top.
• Banding and shirring details.
• Body hugging fit.
• Contrast topstitch.
• Interior shelf bra with shapewear technology.
• 65% Polyester 35% Cotton.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.
\n• Blue heather rouched tank top.
• Camisole tank top.
• Banding and shirring details.
• Body hugging fit.
• Contrast topstitch.
• Interior shelf bra with shapewear technology.
• 65% Polyester 35% Cotton.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address ID associated with invoice '000000001'?",
+ "sql": "SELECT billing_address_id FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Sahara Leggings-28-Gray' in daily bestsellers.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sahara Leggings-28-Gray';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position on 2022-12-06 in the daily bestsellers?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-12-06' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Cruise Dual Analog Watch"
+ ],
+ "sql_execute_result": [
+ [
+ "Cruise Dual Analog Watch"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for invoice with ID '1'?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 24?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 24;",
+ "answer": [
+ "musiclover99@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "musiclover99@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with SKU 'WS08-XS-Blue' is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT product_id FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue');",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with website ID 1.",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Ingrid Running Jacket-XL-White' in 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ingrid Running Jacket-XL-White' AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing address for customer named 'Emma Davis'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Emma Davis';",
+ "answer": [
+ "456 Congress Avenue Austin Texas 78701"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Congress Avenue Austin Texas 78701"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product 'Minerva LumaTech™ V-Tee' on the invoice?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position of 'Olivia 1/4 Zip Light Jacket-M-Purple' for the year 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Olivia 1/4 Zip Light Jacket-M-Purple' AND period = '2022-01-01';",
+ "answer": [
+ "201",
+ "192"
+ ],
+ "sql_execute_result": [
+ [
+ 201
+ ],
+ [
+ 192
+ ]
+ ]
+ },
+ {
+ "question": "How many customers belong to the website ID 1?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE website_id = 1;",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total price including tax for 'Iris Workout Top' on the invoice.",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price for the best-selling product in store ID 1 for July 2022.",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND period = '2022-07-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 10 foot",
+ "21.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 10 foot",
+ "21.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1008?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1008;",
+ "answer": [
+ "MSH11-33-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH11-33-Red"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews by the nickname 'Carlo' from store ID 1.",
+ "sql": "SELECT title, detail FROM review_detail WHERE nickname = 'Carlo' AND store_id = 1;",
+ "answer": [
+ "Ripped the FIRST TIME I wore: This shirt ripped the FIRST TIME I wore it.",
+ "I wear these to my gym daily. I go hard: I wear these to my gym daily. I go hard on the treadmill and these don't let me down."
+ ],
+ "sql_execute_result": [
+ [
+ "Ripped the FIRST TIME I wore ",
+ "This shirt ripped the FIRST TIME I wore it."
+ ],
+ [
+ "I wear these to my gym daily. I go hard ",
+ "I wear these to my gym daily. I go hard on the treadmill and these don't let me down."
+ ]
+ ]
+ },
+ {
+ "question": "Check if the order status 'complete' is visible on the front.",
+ "sql": "SELECT visible_on_front FROM sales_order_status_state WHERE status = 'complete';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for the eav attribute option with option ID 76.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 76;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews that contain the word 'soft' in the title from store ID 1.",
+ "sql": "SELECT title, nickname FROM review_detail WHERE title LIKE '%soft%' AND store_id = 1;",
+ "answer": [
+ "Comfortable and soft - Don",
+ "Softest hoodie ever - Martina",
+ "Soft but not wrm - Lilliam",
+ "These are soft and stretchy - Tarra",
+ "Not at all soft - Ashli",
+ "Sooooooooooo soft! - Nyla",
+ "soft but a little tight - Tatiana",
+ "Soft - Karine"
+ ],
+ "sql_execute_result": [
+ [
+ "Comfortable and soft",
+ "Don"
+ ],
+ [
+ "Softest hoodie ever",
+ "Martina"
+ ],
+ [
+ "Soft but not wrm",
+ "Lilliam"
+ ],
+ [
+ "These are soft and stretchy",
+ "Tarra"
+ ],
+ [
+ "Not at all soft",
+ "Ashli"
+ ],
+ [
+ "Sooooooooooo soft! ",
+ "Nyla"
+ ],
+ [
+ "soft but a little tight",
+ "Tatiana"
+ ],
+ [
+ "Soft",
+ "Karine"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Wayfarer Messenger Bag' in store ID 1 for May 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Wayfarer Messenger Bag' AND store_id = 1 AND period = '2022-05-01';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'WB05-XL-Black'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'WB05-XL-Black';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "Find the review detail for review ID 300.",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 300;",
+ "answer": [
+ "I can appreciate the concept, but I think I'll be going back to regular laced sneakers from now on, they just didn't seem to fit my feet as well I guess because my feet are so narrow. People with narrow feet shouldn't buy these!"
+ ],
+ "sql_execute_result": [
+ [
+ "I can appreciate the concept, but I think I'll be going back to regular laced sneakers from now on, they just didn't seem to fit my feet as well I guess because my feet are so narrow. People with narrow feet shouldn't buy these!"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state of the order status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Minerva LumaTech™ V-Tee'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the credit memo with increment ID '000000001'?",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "Find the percentage value for the vote with vote ID 236.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 236;",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer's email for the order ID associated with credit memo increment ID '000000001'?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE DATE(created_at) = '2023-04-19';",
+ "answer": [
+ "2040"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ],
+ [
+ "24-MB04"
+ ],
+ [
+ "24-MB03"
+ ],
+ [
+ "24-MB05"
+ ],
+ [
+ "24-MB06"
+ ],
+ [
+ "24-MB02"
+ ],
+ [
+ "24-UB02"
+ ],
+ [
+ "24-WB01"
+ ],
+ [
+ "24-WB02"
+ ],
+ [
+ "24-WB05"
+ ],
+ [
+ "24-WB06"
+ ],
+ [
+ "24-WB03"
+ ],
+ [
+ "24-WB07"
+ ],
+ [
+ "24-WB04"
+ ],
+ [
+ "24-UG06"
+ ],
+ [
+ "24-UG07"
+ ],
+ [
+ "24-UG04"
+ ],
+ [
+ "24-UG02"
+ ],
+ [
+ "24-UG05"
+ ],
+ [
+ "24-UG01"
+ ],
+ [
+ "24-WG084"
+ ],
+ [
+ "24-WG088"
+ ],
+ [
+ "24-UG03"
+ ],
+ [
+ "24-WG081-gray"
+ ],
+ [
+ "24-WG081-pink"
+ ],
+ [
+ "24-WG081-blue"
+ ],
+ [
+ "24-WG082-gray"
+ ],
+ [
+ "24-WG082-pink"
+ ],
+ [
+ "24-WG082-blue"
+ ],
+ [
+ "24-WG083-gray"
+ ],
+ [
+ "24-WG083-pink"
+ ],
+ [
+ "24-WG083-blue"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "24-WG087"
+ ],
+ [
+ "24-MG04"
+ ],
+ [
+ "24-MG01"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG05"
+ ],
+ [
+ "24-MG02"
+ ],
+ [
+ "24-WG09"
+ ],
+ [
+ "24-WG01"
+ ],
+ [
+ "24-WG03"
+ ],
+ [
+ "24-WG02"
+ ],
+ [
+ "24-WG080"
+ ],
+ [
+ "24-WG085_Group"
+ ],
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH02"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH05"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH06"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH08"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH09"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH10"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH11"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH12"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MH13"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ02"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ10"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ11"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ03"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS04"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS09"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS12"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS03"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS02"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS10"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS07"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MS08"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT01"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT02"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT04"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT05"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT06"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT09"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MT12"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP01"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP02"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP03"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP04"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP05"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP06"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP07"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP08"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP09"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP10"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP11"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MP12"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH01"
+ ],
+ [
+ "MSH02-32-Black"
+ ],
+ [
+ "MSH02-33-Black"
+ ],
+ [
+ "MSH02-34-Black"
+ ],
+ [
+ "MSH02-36-Black"
+ ],
+ [
+ "MSH02"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH03"
+ ],
+ [
+ "MSH04-32-Gray"
+ ],
+ [
+ "MSH04-32-Purple"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Gray"
+ ],
+ [
+ "MSH04-33-Purple"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Gray"
+ ],
+ [
+ "MSH04-34-Purple"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Gray"
+ ],
+ [
+ "MSH04-36-Purple"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MSH04"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH05"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH06"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH07"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH08"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH09"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH10"
+ ],
+ [
+ "MSH11-32-Black"
+ ],
+ [
+ "MSH11-32-Blue"
+ ],
+ [
+ "MSH11-32-Red"
+ ],
+ [
+ "MSH11-33-Black"
+ ],
+ [
+ "MSH11-33-Blue"
+ ],
+ [
+ "MSH11-33-Red"
+ ],
+ [
+ "MSH11-34-Black"
+ ],
+ [
+ "MSH11-34-Blue"
+ ],
+ [
+ "MSH11-34-Red"
+ ],
+ [
+ "MSH11-36-Black"
+ ],
+ [
+ "MSH11-36-Blue"
+ ],
+ [
+ "MSH11-36-Red"
+ ],
+ [
+ "MSH11"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "MSH12"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH03"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WB05"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP01"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP02"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP03"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP04"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP05"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP06"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP07"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP08"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP09"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP10"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP11"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP12"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WP13"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH01"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH04"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH06"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH09"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ],
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 3?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 3;",
+ "answer": [
+ "Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Price"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the order related to credit memo increment ID '000000001'?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "Which product ID does the vote ID 197 pertain to?",
+ "sql": "SELECT entity_pk_value FROM rating_option_vote WHERE vote_id = 197;",
+ "answer": [
+ "1108"
+ ],
+ "sql_execute_result": [
+ [
+ 1108
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 27?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 27;",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Get the SKU of the product with entity_id 1017.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1017;",
+ "answer": [
+ "MSH12-32-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH12-32-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in the order with increment_id '000000166'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000166';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with entity_id 166?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 166;",
+ "answer": [
+ "198.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "198.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product SKU for the product with entity_id 196.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 196;",
+ "answer": [
+ "MH10-S-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MH10-S-Red"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been completed?",
+ "sql": "SELECT entity_id, customer_email, grand_total FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4,
+ "janesmith456@yahoo.com",
+ "106.0000"
+ ],
+ [
+ 9,
+ "john.smith.xyz@gmail.com",
+ "159.4000"
+ ],
+ [
+ 11,
+ "avidreader99@yahoo.com",
+ "143.8000"
+ ],
+ [
+ 13,
+ "jason.miller@yahoo.com",
+ "171.6000"
+ ],
+ [
+ 16,
+ "avidreader99@yahoo.com",
+ "215.0000"
+ ],
+ [
+ 17,
+ "adam.garcia@gmail.com",
+ "112.0000"
+ ],
+ [
+ 20,
+ "jason.miller@yahoo.com",
+ "203.0400"
+ ],
+ [
+ 21,
+ "harrypotterfan1@gmail.com",
+ "210.0000"
+ ],
+ [
+ 22,
+ "harrypotterfan1@gmail.com",
+ "229.8000"
+ ],
+ [
+ 23,
+ "alex.martin@gmail.com",
+ "65.0000"
+ ],
+ [
+ 24,
+ "marym@gmail.com",
+ "116.0000"
+ ],
+ [
+ 27,
+ "bob123@hotmail.com",
+ "43.4000"
+ ],
+ [
+ 28,
+ "helloworld@yahoo.com",
+ "226.6000"
+ ],
+ [
+ 31,
+ "jane.doe@hotmail.com",
+ "123.8000"
+ ],
+ [
+ 32,
+ "avidreader99@yahoo.com",
+ "196.2000"
+ ],
+ [
+ 33,
+ "fitnessjunkie22@yahoo.com",
+ "120.2000"
+ ],
+ [
+ 34,
+ "janesmith@gmail.com",
+ "192.7600"
+ ],
+ [
+ 35,
+ "alex.martin@gmail.com",
+ "177.0000"
+ ],
+ [
+ 36,
+ "katie.wong@hotmail.com",
+ "162.0000"
+ ],
+ [
+ 37,
+ "david.lee@gmail.com",
+ "127.0000"
+ ],
+ [
+ 43,
+ "bob123@hotmail.com",
+ "90.0000"
+ ],
+ [
+ 45,
+ "fitnessjunkie22@yahoo.com",
+ "183.2000"
+ ],
+ [
+ 47,
+ "jane.doe@hotmail.com",
+ "38.6000"
+ ],
+ [
+ 48,
+ "beachlover99@yahoo.com",
+ "176.6000"
+ ],
+ [
+ 50,
+ "artsygal123@hotmail.com",
+ "268.0000"
+ ],
+ [
+ 51,
+ "john.lee@yahoo.com",
+ "121.0000"
+ ],
+ [
+ 53,
+ "jla_7781@gmail.com",
+ "127.0000"
+ ],
+ [
+ 54,
+ "jla_7781@gmail.com",
+ "138.6000"
+ ],
+ [
+ 55,
+ "bob123@hotmail.com",
+ "34.0000"
+ ],
+ [
+ 57,
+ "adam.garcia@gmail.com",
+ "180.1600"
+ ],
+ [
+ 61,
+ "janesmith@gmail.com",
+ "100.8000"
+ ],
+ [
+ 62,
+ "helloworld@yahoo.com",
+ "196.2000"
+ ],
+ [
+ 64,
+ "marym@gmail.com",
+ "187.4000"
+ ],
+ [
+ 69,
+ "alexander.thomas@hotmail.com",
+ "155.0000"
+ ],
+ [
+ 70,
+ "janesmith456@yahoo.com",
+ "168.8000"
+ ],
+ [
+ 71,
+ "daniel.jackson@hotmail.com",
+ "59.0000"
+ ],
+ [
+ 73,
+ "bbjones@gmail.com",
+ "188.0000"
+ ],
+ [
+ 75,
+ "jennifer.white@yahoo.com",
+ "205.0000"
+ ],
+ [
+ 78,
+ "beachlover99@yahoo.com",
+ "133.0000"
+ ],
+ [
+ 79,
+ "john.smith.xyz@gmail.com",
+ "34.0000"
+ ],
+ [
+ 82,
+ "gamingpro456@gmail.com",
+ "96.4000"
+ ],
+ [
+ 83,
+ "bob123@hotmail.com",
+ "28.0000"
+ ],
+ [
+ 84,
+ "jane.doe@hotmail.com",
+ "206.1200"
+ ],
+ [
+ 87,
+ "bbjones@gmail.com",
+ "29.0000"
+ ],
+ [
+ 89,
+ "matt.baker@yahoo.com",
+ "118.0000"
+ ],
+ [
+ 90,
+ "beachlover99@yahoo.com",
+ "202.0000"
+ ],
+ [
+ 91,
+ "janesmith456@yahoo.com",
+ "153.0000"
+ ],
+ [
+ 92,
+ "jason.miller@yahoo.com",
+ "97.0000"
+ ],
+ [
+ 93,
+ "john.smith.xyz@gmail.com",
+ "89.2000"
+ ],
+ [
+ 96,
+ "john.smith.xyz@gmail.com",
+ "209.4000"
+ ],
+ [
+ 97,
+ "matt.baker@yahoo.com",
+ "204.0400"
+ ],
+ [
+ 99,
+ "janesmith456@yahoo.com",
+ "181.0000"
+ ],
+ [
+ 100,
+ "jennifer.white@yahoo.com",
+ "209.6000"
+ ],
+ [
+ 102,
+ "michael.nguyen@yahoo.com",
+ "56.0000"
+ ],
+ [
+ 104,
+ "john.lee@yahoo.com",
+ "130.0000"
+ ],
+ [
+ 105,
+ "michael.nguyen@yahoo.com",
+ "29.0000"
+ ],
+ [
+ 112,
+ "artsygal123@hotmail.com",
+ "153.0000"
+ ],
+ [
+ 113,
+ "artsygal123@hotmail.com",
+ "88.4000"
+ ],
+ [
+ 114,
+ "avidreader99@yahoo.com",
+ "65.0000"
+ ],
+ [
+ 115,
+ "john.smith.xyz@gmail.com",
+ "180.4000"
+ ],
+ [
+ 116,
+ "jane.doe@hotmail.com",
+ "148.4000"
+ ],
+ [
+ 119,
+ "michael.nguyen@yahoo.com",
+ "239.2400"
+ ],
+ [
+ 121,
+ "brian.smith@yahoo.com",
+ "75.5000"
+ ],
+ [
+ 127,
+ "michael.nguyen@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 128,
+ "beachlover99@yahoo.com",
+ "212.2500"
+ ],
+ [
+ 130,
+ "adam.garcia@gmail.com",
+ "108.0000"
+ ],
+ [
+ 131,
+ "matt.baker@yahoo.com",
+ "79.0000"
+ ],
+ [
+ 133,
+ "jason.miller@yahoo.com",
+ "181.0000"
+ ],
+ [
+ 137,
+ "coolcat321@hotmail.com",
+ "156.0000"
+ ],
+ [
+ 138,
+ "matt.baker@yahoo.com",
+ "115.0000"
+ ],
+ [
+ 139,
+ "katie.wong@hotmail.com",
+ "194.6000"
+ ],
+ [
+ 140,
+ "jennifer.white@yahoo.com",
+ "168.4000"
+ ],
+ [
+ 145,
+ "samantha.nguyen@gmail.com",
+ "230.1200"
+ ],
+ [
+ 146,
+ "fitnessjunkie22@yahoo.com",
+ "70.0000"
+ ],
+ [
+ 147,
+ "jennifer.white@yahoo.com",
+ "172.0000"
+ ],
+ [
+ 148,
+ "coolcat321@hotmail.com",
+ "125.0000"
+ ],
+ [
+ 150,
+ "fitnessjunkie22@yahoo.com",
+ "215.8000"
+ ],
+ [
+ 154,
+ "coolcat321@hotmail.com",
+ "109.0000"
+ ],
+ [
+ 155,
+ "soccerfanatic22@gmail.com",
+ "191.0000"
+ ],
+ [
+ 156,
+ "helloworld@yahoo.com",
+ "202.6000"
+ ],
+ [
+ 158,
+ "lisa.green@hotmail.com",
+ "202.3900"
+ ],
+ [
+ 160,
+ "michael.nguyen@yahoo.com",
+ "124.0000"
+ ],
+ [
+ 161,
+ "coolcat321@hotmail.com",
+ "199.0000"
+ ],
+ [
+ 163,
+ "janesmith456@yahoo.com",
+ "87.0000"
+ ],
+ [
+ 164,
+ "artsygal123@hotmail.com",
+ "152.0000"
+ ],
+ [
+ 166,
+ "avidreader99@yahoo.com",
+ "198.6400"
+ ],
+ [
+ 169,
+ "jennifer.white@yahoo.com",
+ "232.8400"
+ ],
+ [
+ 179,
+ "michael.nguyen@yahoo.com",
+ "127.0000"
+ ],
+ [
+ 181,
+ "harrypotterfan1@gmail.com",
+ "151.4000"
+ ],
+ [
+ 182,
+ "harrypotterfan1@gmail.com",
+ "91.0000"
+ ],
+ [
+ 184,
+ "adam.garcia@gmail.com",
+ "163.0000"
+ ],
+ [
+ 186,
+ "janesmith456@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 187,
+ "matt.baker@yahoo.com",
+ "88.0000"
+ ],
+ [
+ 188,
+ "johndoe123@gmail.com",
+ "71.0000"
+ ],
+ [
+ 189,
+ "avidreader99@yahoo.com",
+ "251.2400"
+ ],
+ [
+ 190,
+ "jane.doe@hotmail.com",
+ "145.0000"
+ ],
+ [
+ 192,
+ "musiclover99@hotmail.com",
+ "109.0000"
+ ],
+ [
+ 196,
+ "jason.miller@yahoo.com",
+ "189.8000"
+ ],
+ [
+ 197,
+ "jane.doe@hotmail.com",
+ "106.0000"
+ ],
+ [
+ 199,
+ "janesmith456@yahoo.com",
+ "47.0000"
+ ],
+ [
+ 200,
+ "beachlover99@yahoo.com",
+ "191.5000"
+ ],
+ [
+ 201,
+ "matt.baker@yahoo.com",
+ "176.1000"
+ ],
+ [
+ 202,
+ "marym@gmail.com",
+ "180.8000"
+ ],
+ [
+ 203,
+ "bbjones@gmail.com",
+ "29.0000"
+ ],
+ [
+ 205,
+ "john.lee@yahoo.com",
+ "108.0000"
+ ],
+ [
+ 207,
+ "lisa.green@hotmail.com",
+ "67.0000"
+ ],
+ [
+ 208,
+ "michael.nguyen@yahoo.com",
+ "66.0000"
+ ],
+ [
+ 213,
+ "bob123@hotmail.com",
+ "130.6000"
+ ],
+ [
+ 214,
+ "adam.garcia@gmail.com",
+ "21.0000"
+ ],
+ [
+ 215,
+ "artsygal123@hotmail.com",
+ "34.0000"
+ ],
+ [
+ 216,
+ "helloworld@yahoo.com",
+ "173.0000"
+ ],
+ [
+ 217,
+ "john.smith.xyz@gmail.com",
+ "121.0000"
+ ],
+ [
+ 218,
+ "fitnessjunkie22@yahoo.com",
+ "212.2000"
+ ],
+ [
+ 223,
+ "bbjones@gmail.com",
+ "37.0000"
+ ],
+ [
+ 225,
+ "jane.doe@hotmail.com",
+ "122.0000"
+ ],
+ [
+ 228,
+ "bbjones@gmail.com",
+ "59.0000"
+ ],
+ [
+ 230,
+ "beachlover99@yahoo.com",
+ "93.4000"
+ ],
+ [
+ 231,
+ "lisa.kim@gmail.com",
+ "132.0000"
+ ],
+ [
+ 233,
+ "daniel.jackson@hotmail.com",
+ "77.4000"
+ ],
+ [
+ 235,
+ "lisa.kim@gmail.com",
+ "131.1000"
+ ],
+ [
+ 236,
+ "helloworld@yahoo.com",
+ "107.0000"
+ ],
+ [
+ 237,
+ "bob123@hotmail.com",
+ "202.0000"
+ ],
+ [
+ 238,
+ "alex.martin@gmail.com",
+ "171.0000"
+ ],
+ [
+ 239,
+ "coolcat321@hotmail.com",
+ "82.6000"
+ ],
+ [
+ 240,
+ "alex.martin@gmail.com",
+ "57.0000"
+ ],
+ [
+ 243,
+ "coolcat321@hotmail.com",
+ "292.4000"
+ ],
+ [
+ 247,
+ "janesmith456@yahoo.com",
+ "60.0000"
+ ],
+ [
+ 250,
+ "daniel.jackson@hotmail.com",
+ "25.0000"
+ ],
+ [
+ 251,
+ "alexander.thomas@hotmail.com",
+ "34.0000"
+ ],
+ [
+ 253,
+ "helloworld@yahoo.com",
+ "32.0000"
+ ],
+ [
+ 256,
+ "gamingpro456@gmail.com",
+ "89.0000"
+ ],
+ [
+ 257,
+ "john.smith.xyz@gmail.com",
+ "164.4500"
+ ],
+ [
+ 258,
+ "michael.nguyen@yahoo.com",
+ "215.0000"
+ ],
+ [
+ 260,
+ "john.lee@yahoo.com",
+ "219.0000"
+ ],
+ [
+ 262,
+ "johndoe123@gmail.com",
+ "163.0000"
+ ],
+ [
+ 263,
+ "johndoe123@gmail.com",
+ "136.9900"
+ ],
+ [
+ 264,
+ "artsygal123@hotmail.com",
+ "203.7200"
+ ],
+ [
+ 268,
+ "alex.martin@gmail.com",
+ "179.0000"
+ ],
+ [
+ 269,
+ "fashionista88@gmail.com",
+ "76.4000"
+ ],
+ [
+ 270,
+ "beachlover99@yahoo.com",
+ "60.0000"
+ ],
+ [
+ 274,
+ "janesmith456@yahoo.com",
+ "158.2500"
+ ],
+ [
+ 276,
+ "helloworld@yahoo.com",
+ "150.2000"
+ ],
+ [
+ 277,
+ "katie.wong@hotmail.com",
+ "148.0000"
+ ],
+ [
+ 281,
+ "marym@gmail.com",
+ "132.0000"
+ ],
+ [
+ 282,
+ "brian.smith@yahoo.com",
+ "156.0000"
+ ],
+ [
+ 284,
+ "gamingpro456@gmail.com",
+ "101.0000"
+ ],
+ [
+ 285,
+ "soccerfanatic22@gmail.com",
+ "82.0000"
+ ],
+ [
+ 286,
+ "soccerfanatic22@gmail.com",
+ "101.2500"
+ ],
+ [
+ 287,
+ "fitnessjunkie22@yahoo.com",
+ "44.0000"
+ ],
+ [
+ 288,
+ "bbjones@gmail.com",
+ "188.0000"
+ ],
+ [
+ 295,
+ "matt.baker@yahoo.com",
+ "212.4000"
+ ],
+ [
+ 297,
+ "helloworld@yahoo.com",
+ "125.0000"
+ ],
+ [
+ 298,
+ "alex.martin@gmail.com",
+ "84.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products with SKU starting with 'MP' do we have in stock?",
+ "sql": "SELECT COUNT(*) FROM catalog_product_entity WHERE sku LIKE 'MP%';",
+ "answer": [
+ "156"
+ ],
+ "sql_execute_result": [
+ [
+ 156
+ ]
+ ]
+ },
+ {
+ "question": "Check the status of the product with product_id 733 in the stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 733;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1254?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1254;",
+ "answer": [
+ "WJ04-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "WJ04-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the most ordered product for the store with store ID 1 on 2023-04-19?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE store_id = 1 AND period = '2023-04-19' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are there in the category with ID 41?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 41;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total stock quantity for the product with ID 444?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 444;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with the status 'complete' were found?",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 43
+ ],
+ [
+ 45
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 57
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 64
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 73
+ ],
+ [
+ 75
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 87
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 102
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 119
+ ],
+ [
+ 121
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 133
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 150
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 158
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 166
+ ],
+ [
+ 169
+ ],
+ [
+ 179
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 184
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 192
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 223
+ ],
+ [
+ 225
+ ],
+ [
+ 228
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 233
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 243
+ ],
+ [
+ 247
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 253
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 260
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 274
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 295
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the order with increment ID '000000148'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000148';",
+ "answer": [
+ "125.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "125.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many billing addresses were found for customer with ID 5?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE customer_id = 5;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ],
+ [
+ "321 Maple Avenue,Oakland,California,94602"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 70?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'angelo.morissette@yahoo.com'?",
+ "sql": "SELECT COUNT(*) AS total_orders FROM sales_order WHERE customer_email = 'angelo.morissette@yahoo.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address associated with the customer who placed order with ID 1?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1304?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1304;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU '24-WB04' in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = '24-WB04');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with Entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with Product ID 2040?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the order with Entity ID 277?",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE entity_id = 277;",
+ "answer": [
+ "148.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "148.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with Parent ID 193?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 193;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the payment with Entity ID 151?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 151;",
+ "answer": [
+ "25.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "25.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with Store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of the product 'Ingrid Running Jacket-XS-White' in the yearly bestseller list for 2023?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ingrid Running Jacket-XS-White' AND period = '2023-01-01';",
+ "answer": [
+ "54",
+ "113"
+ ],
+ "sql_execute_result": [
+ [
+ 54
+ ],
+ [
+ 113
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been sent for order ID 1?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment WHERE order_id = 1 AND email_sent = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number associated with the customer address entity ID 66?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 66;",
+ "answer": [
+ "7035551212"
+ ],
+ "sql_execute_result": [
+ [
+ "7035551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity ordered for the product 'Lono Yoga Short-34-Gray' in the yearly bestseller list for 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Lono Yoga Short-34-Gray' AND period = '2022-01-01';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped in the shipment with increment ID '000000003'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID for the option with option ID 51?",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 51;",
+ "answer": [
+ "93"
+ ],
+ "sql_execute_result": [
+ [
+ 93
+ ]
+ ]
+ },
+ {
+ "question": "What is the city for the customer address entity with parent ID 38?",
+ "sql": "SELECT city FROM customer_address_entity WHERE parent_id = 38;",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the integer attribute with value ID 383 in the catalog product entity?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE value_id = 383;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Tiffany Fitness Tee-XS-White' in the yearly bestseller list for 2022?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Tiffany Fitness Tee-XS-White' AND period = '2022-01-01';",
+ "answer": [
+ "28.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "28.0000"
+ ],
+ [
+ "28.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the eav attribute option with option ID 209?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 209;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount for the order with increment ID '000000186'?",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000186';",
+ "answer": [
+ "37.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "37.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with entity ID 153?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 153;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the customer with email 'jla_7781@gmail.com'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE customer_email = 'jla_7781@gmail.com';",
+ "answer": [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ "sql_execute_result": [
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ],
+ [
+ "654 Park Avenue,New York City,New York,10065"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the customer named 'Jane Doe'?",
+ "sql": "SELECT entity_id, increment_id FROM sales_order_grid WHERE customer_name = 'Jane Doe';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 31,
+ "000000031"
+ ],
+ [
+ 47,
+ "000000047"
+ ],
+ [
+ 84,
+ "000000084"
+ ],
+ [
+ 116,
+ "000000116"
+ ],
+ [
+ 153,
+ "000000153"
+ ],
+ [
+ 190,
+ "000000190"
+ ],
+ [
+ 197,
+ "000000197"
+ ],
+ [
+ 220,
+ "000000220"
+ ],
+ [
+ 225,
+ "000000225"
+ ],
+ [
+ 245,
+ "000000245"
+ ],
+ [
+ 259,
+ "000000259"
+ ],
+ [
+ 302,
+ "000000302"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review title for the review with ID 337.",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 337;",
+ "answer": [
+ "Zero support/modesty"
+ ],
+ "sql_execute_result": [
+ [
+ "Zero support/modesty"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the payment entity ID 190?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 190;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer made the purchase with order increment ID '000000053'?",
+ "sql": "SELECT customer_name FROM sales_order_grid WHERE increment_id = '000000053';",
+ "answer": [
+ "Julia Williams"
+ ],
+ "sql_execute_result": [
+ [
+ "Julia Williams"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with entity ID 290?",
+ "sql": "SELECT status FROM sales_order_grid WHERE entity_id = 290;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the email address for the customer associated with order ID 114.",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 114;",
+ "answer": [
+ "avidreader99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "avidreader99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order with increment ID '000000220'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000220';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for creditmemo in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND store_id = 1;",
+ "answer": [
+ "sequence_creditmemo_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_creditmemo_1"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 35?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 35;",
+ "answer": [
+ "310"
+ ],
+ "sql_execute_result": [
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the order ID associated with the invoice increment ID '000000001'.",
+ "sql": "SELECT order_id FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute ID is used for sorting products and is visible in product listings?",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE used_for_sort_by = 1 AND used_in_product_listing = 1;",
+ "answer": [
+ "73",
+ "77"
+ ],
+ "sql_execute_result": [
+ [
+ 73
+ ],
+ [
+ 77
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product with ID 1714 in category ID 34?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1714 AND category_id = 34;",
+ "answer": [
+ "-201"
+ ],
+ "sql_execute_result": [
+ [
+ -201
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for rating option with ID 8.",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 8;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ "3"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for orders in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice linked to order ID 2?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find the global currency code for the invoice with increment ID '000000002'.",
+ "sql": "SELECT global_currency_code FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and price of the best-selling product for store ID 0 in April 2023?",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_monthly WHERE store_id = 0 AND period = '2023-04-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer is associated with the address in Houston?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS customer_name FROM customer_address_entity WHERE city = 'Houston' AND entity_id = 43;",
+ "answer": [
+ "Anna Nguyen"
+ ],
+ "sql_execute_result": [
+ [
+ "Anna Nguyen"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute code for the 'Collar' attribute?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE frontend_label = 'Collar';",
+ "answer": [
+ "collar"
+ ],
+ "sql_execute_result": [
+ [
+ "collar"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for the customer with the address in Las Vegas.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_id = (SELECT parent_id FROM customer_address_entity WHERE city = 'Las Vegas' AND entity_id = 34);",
+ "answer": [
+ "3",
+ "52",
+ "118",
+ "121",
+ "143",
+ "221",
+ "282"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ],
+ [
+ 52
+ ],
+ [
+ 118
+ ],
+ [
+ 121
+ ],
+ [
+ 143
+ ],
+ [
+ 221
+ ],
+ [
+ 282
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name and price for the best-selling product for store ID 1 in January 2023?",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the group code for customer group ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the customer who lives on '987 Ocean Drive'?",
+ "sql": "SELECT city FROM customer_address_entity WHERE street = '987 Ocean Drive' AND entity_id = 8;",
+ "answer": [
+ "Miami Beach"
+ ],
+ "sql_execute_result": [
+ [
+ "Miami Beach"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were best-sellers in store ID 0 for February 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE store_id = 0 AND period = '2023-02-01';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type of the 'image' attribute?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'image';",
+ "answer": [
+ "varchar"
+ ],
+ "sql_execute_result": [
+ [
+ "varchar"
+ ],
+ [
+ "varchar"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the total quantity ordered for the product 'Impulse Duffle' in store ID 1 for the year 2022.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Impulse Duffle' AND store_id = 1 AND period = '2022-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 810?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 810;",
+ "answer": [
+ "MP07-34-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MP07-34-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category with ID 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with ID 0 active?",
+ "sql": "SELECT is_active FROM store WHERE store_id = 0;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 8?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 8;",
+ "answer": [
+ "347"
+ ],
+ "sql_execute_result": [
+ [
+ 347
+ ]
+ ]
+ },
+ {
+ "question": "What is the front-end label for attribute with ID 5?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_id = 5;",
+ "answer": [
+ "First Name"
+ ],
+ "sql_execute_result": [
+ [
+ "First Name"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status 'pending_paypal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_paypal';",
+ "answer": [
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for customer with address ID 56.",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 56;",
+ "answer": [
+ "Denver"
+ ],
+ "sql_execute_result": [
+ [
+ "Denver"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity available for product with product ID 334?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 334;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing email for order address with entity ID 322?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 322;",
+ "answer": [
+ "coolcat321@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "coolcat321@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for product with entity ID 254.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 254 AND attribute_id = 75;",
+ "answer": [
+ "For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.
\n• Light blue heather full zip hoodie.
• Fitted flatlock seams.
• Matching lining and drawstring.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.
\n• Light blue heather full zip hoodie.
• Fitted flatlock seams.
• Matching lining and drawstring.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code for customer with address ID 41?",
+ "sql": "SELECT postcode FROM customer_address_entity WHERE entity_id = 41;",
+ "answer": [
+ "60601"
+ ],
+ "sql_execute_result": [
+ [
+ "60601"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with ID 1536 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1536;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What region does the customer address with entity ID 347 belong to?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 347;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "Find the street address for customer with address ID 25.",
+ "sql": "SELECT street FROM customer_address_entity WHERE entity_id = 25;",
+ "answer": [
+ "123 Pine Street"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Pine Street"
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number for customer with address ID 69?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 69;",
+ "answer": [
+ "8015551212"
+ ],
+ "sql_execute_result": [
+ [
+ "8015551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1482?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1482;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders associated with shipment item having SKU 'MSH09-36-Black'.",
+ "sql": "SELECT order_item_id FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "1575"
+ ],
+ "sql_execute_result": [
+ [
+ 1575
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 119?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 119;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "List the children count for the category with ID 4.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 4;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest order?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Verify if the product 'Troy Yoga Short' is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 989;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the shipment item with entity ID 4.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE entity_id = 4;",
+ "answer": [
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the attribute set ID for category with path '1/2/20/21/26'.",
+ "sql": "SELECT attribute_set_id FROM catalog_category_entity WHERE path = '1/2/20/21/26';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the shipment item with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Locate the parent ID for category with ID 25.",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 25;",
+ "answer": [
+ "21"
+ ],
+ "sql_execute_result": [
+ [
+ 21
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base amount ordered for sales order with parent ID 10?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE parent_id = 10;",
+ "answer": [
+ "107.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "107.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method is used for order with parent ID 212?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 212;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "List all sequence values for shipments in store with ID 1.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "1",
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-12-24?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-12-24' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered on 2023-05-15 for canceled orders?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-05-15' AND order_status = 'canceled';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping amount for the order with payment entity ID 93?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 93;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is associated with the shipment meta ID 8?",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE meta_id = 8;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the payment with parent ID 174?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE parent_id = 174;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 2022-05-02?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-05-02' AND order_status = 'complete';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Ida Workout Parachute Pant-29-Purple' in 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ida Workout Parachute Pant-29-Purple' AND period = '2023-01-01';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 30?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 30;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for the product with entity ID 1037.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1037;",
+ "answer": [
+ "Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.
• Light green heathered hoodie.
• Long-Sleeve, pullover.
• Long elliptical hem for extra coverage.
• Deep button placket for layering.
• Double rib design.
• Mid layer, mid weight.
• 98% Merino Wool / 2% Spandex"
+ ],
+ "sql_execute_result": [
+ [
+ "Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.
• Light green heathered hoodie.
• Long-Sleeve, pullover.
• Long elliptical hem for extra coverage.
• Deep button placket for layering.
• Double rib design.
• Mid layer, mid weight.
• 98% Merino Wool / 2% Spandex"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name for the region with code 'RI' in Italy?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'RI' AND country_id = 'IT';",
+ "answer": [
+ "Rieti"
+ ],
+ "sql_execute_result": [
+ [
+ "Rieti"
+ ]
+ ]
+ },
+ {
+ "question": "Which status is visible on the front for orders in the 'fraud' status?",
+ "sql": "SELECT visible_on_front FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product name with product ID 1340 ordered in 2023.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1340 AND period = '2023-01-01';",
+ "answer": [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Nadia Elements Shell-M-Orange"
+ ],
+ [
+ "Nadia Elements Shell-M-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product ID 392 in category ID 36?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 392 AND category_id = 36;",
+ "answer": [
+ "-74"
+ ],
+ "sql_execute_result": [
+ [
+ -74
+ ]
+ ]
+ },
+ {
+ "question": "List all visible states on the front for completed orders.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE visible_on_front = 1 AND status IN ('complete', 'closed');",
+ "answer": [
+ "closed",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the country associated with the region code 'HR-08'.",
+ "sql": "SELECT country_id FROM directory_country_region WHERE code = 'HR-08';",
+ "answer": [
+ "HR"
+ ],
+ "sql_execute_result": [
+ [
+ "HR"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity ID 429?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 429;",
+ "answer": [
+ "Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.
\n• 1/4 zip. Stand-up collar.
• Machine wash/dry.
• Quilted inner layer.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.
\n• 1/4 zip. Stand-up collar.
• Machine wash/dry.
• Quilted inner layer.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the status 'pending_paypal' in sales orders?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_paypal';",
+ "answer": [
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "Find the parent category ID for the category with entity ID 34.",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 34;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the description text for the product with entity ID 1952.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1952 AND attribute_id = 75;",
+ "answer": [
+ "Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.
\n• Black rouched shorts with mint waist.
• Soft, lightweight construction.
• LumaTech™ wicking technology.
• Semi-fitted.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.
\n• Black rouched shorts with mint waist.
• Soft, lightweight construction.
• LumaTech™ wicking technology.
• Semi-fitted.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city for the billing address associated with parent ID 103?",
+ "sql": "SELECT city FROM sales_order_address WHERE parent_id = 103 AND address_type = 'billing';",
+ "answer": [
+ "Seattle"
+ ],
+ "sql_execute_result": [
+ [
+ "Seattle"
+ ]
+ ]
+ },
+ {
+ "question": "Which entity type code corresponds to the entity type ID 8?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 8;",
+ "answer": [
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of children for the category with entity ID 7.",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 7;",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "What is the postcode for the shipping address associated with parent ID 301?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE parent_id = 301 AND address_type = 'shipping';",
+ "answer": [
+ "90212"
+ ],
+ "sql_execute_result": [
+ [
+ "90212"
+ ]
+ ]
+ },
+ {
+ "question": "List the entity type codes associated with the default attribute set ID of 6.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE default_attribute_set_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "Get the entity type model for the entity type code 'customer'.",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'customer';",
+ "answer": [
+ "Magento\\Customer\\Model\\ResourceModel\\Customer"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Customer\\Model\\ResourceModel\\Customer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the category with entity ID 20?",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 20;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the product SKU for the product with entity ID 2013?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2013;",
+ "answer": [
+ "WSH10-28-White"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH10-28-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity ID 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of products ordered in order with ID 91.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 91;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for order with entity ID 91?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 91;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "Fetch the creation date of the review with review ID 150.",
+ "sql": "SELECT created_at FROM review WHERE review_id = 150;",
+ "answer": [
+ "2023-04-19 16:15:14"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:14"
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories are under the category with entity ID 3?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 2013 a simple product?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 2013;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total for the sales order with entity ID 232.",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 232;",
+ "answer": [
+ "143.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "143.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the best-selling product on February 1, 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-02-01' AND rating_pos = 1;",
+ "answer": [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on January 14, 2022, in store 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-01-14' AND order_status = 'complete' AND store_id = 1;",
+ "answer": [
+ "60.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "60.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name for region code 'PU' in Italy?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'IT' AND code = 'PU';",
+ "answer": [
+ "Pesaro-Urbino"
+ ],
+ "sql_execute_result": [
+ [
+ "Pesaro-Urbino"
+ ]
+ ]
+ },
+ {
+ "question": "What product was ordered in order ID 297?",
+ "sql": "SELECT name FROM sales_order_item WHERE order_id = 297;",
+ "answer": [
+ "Sinbad Fitness Tank",
+ "Sinbad Fitness Tank-XL-Blue",
+ "Electra Bra Top",
+ "Electra Bra Top-XL-Purple",
+ "Beaumont Summit Kit",
+ "Beaumont Summit Kit-M-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Sinbad Fitness Tank"
+ ],
+ [
+ "Sinbad Fitness Tank-XL-Blue"
+ ],
+ [
+ "Electra Bra Top"
+ ],
+ [
+ "Electra Bra Top-XL-Purple"
+ ],
+ [
+ "Beaumont Summit Kit"
+ ],
+ [
+ "Beaumont Summit Kit-M-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 314?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 314;",
+ "answer": [
+ "Meh, I'm not hating them, but I'm not in"
+ ],
+ "sql_execute_result": [
+ [
+ "Meh, I'm not hating them, but I'm not in"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on March 12, 2022, in store 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-03-12' AND order_status = 'canceled' AND store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Viktor LumaTech\u2122 Pant-36-Gray'?",
+ "sql": "SELECT price FROM sales_order_item WHERE name = 'Viktor LumaTech™ Pant-36-Gray';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer for review ID 206?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 206;",
+ "answer": [
+ "Alesha"
+ ],
+ "sql_execute_result": [
+ [
+ "Alesha"
+ ]
+ ]
+ },
+ {
+ "question": "Which region in Latvia has the code 'Rucavas novads'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'LV' AND code = 'Rucavas novads';",
+ "answer": [
+ "Rucavas novads"
+ ],
+ "sql_execute_result": [
+ [
+ "Rucavas novads"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product ordered in order ID 166?",
+ "sql": "SELECT sku FROM sales_order_item WHERE order_id = 166;",
+ "answer": [
+ "WSH07-28-Blue",
+ "WH03-L-Purple",
+ "WT04-XS-Red",
+ "WP09-28-Black",
+ "WJ02-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 94?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 94;",
+ "answer": [
+ "MH03"
+ ],
+ "sql_execute_result": [
+ [
+ "MH03"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with entity_id 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product_id 941?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 94;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-07-02?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-07-02' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders canceled on 2022-07-02?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-07-02' AND order_status = 'canceled';",
+ "answer": [
+ "75.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "75.0000"
+ ],
+ [
+ "75.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the city of the customer with the first name 'John'?",
+ "sql": "SELECT city FROM customer_address_entity WHERE firstname = 'John';",
+ "answer": [
+ "Birmingham",
+ "Chicago",
+ "New York",
+ "Dallas"
+ ],
+ "sql_execute_result": [
+ [
+ "Birmingham"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Dallas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in store_id 1 on 2023-01-09?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-01-09' AND store_id = 1;",
+ "answer": [
+ "7.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "7.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total of the sales order with entity_id 185?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 185;",
+ "answer": [
+ "37.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "37.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region_id 800 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 800 AND locale = 'en_US';",
+ "answer": [
+ "Kr\u00edti"
+ ],
+ "sql_execute_result": [
+ [
+ "Kr\u00edti"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found in category_id 36?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 36;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product_id 1048 in category_id 2?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1048 AND category_id = 2;",
+ "answer": [
+ "-401"
+ ],
+ "sql_execute_result": [
+ [
+ -401
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 298?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 298;",
+ "answer": [
+ "MJ04-L-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ04-L-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for the order with parent ID 112?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 112;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the attribute option with ID 186?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 186;",
+ "answer": [
+ "6"
+ ],
+ "sql_execute_result": [
+ [
+ 6
+ ]
+ ]
+ },
+ {
+ "question": "How many results are there for the search query 'hollister'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the order with entity ID 181?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 181;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base shipping amount for the order with parent ID 200?",
+ "sql": "SELECT base_shipping_amount FROM sales_order_payment WHERE parent_id = 200;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'WS08-M-Black' currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WS08-M-Black');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many total orders have been placed in store with ID 1?",
+ "sql": "SELECT SUM(orders_count) FROM sales_order_aggregated_created WHERE store_id = 1;",
+ "answer": [
+ "300"
+ ],
+ "sql_execute_result": [
+ [
+ "300"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with SKU 'MJ04-L-Purple'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 298;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer with entity_id 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for attribute option with ID 46.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 46;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID of the invoice created on '2023-04-19 16:15:45'?",
+ "sql": "SELECT increment_id FROM sales_invoice WHERE created_at = '2023-04-19 16:15:45';",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group ID corresponds to the 'Retailer' group?",
+ "sql": "SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax class ID for the 'NOT LOGGED IN' customer group.",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'NOT LOGGED IN';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the third shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice with ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default group ID of the website with code 'base'?",
+ "sql": "SELECT default_group_id FROM store_website WHERE code = 'base';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID for the option with ID 155.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 155;",
+ "answer": [
+ "139"
+ ],
+ "sql_execute_result": [
+ [
+ 139
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and SKU of the product with item ID 975?",
+ "sql": "SELECT name, sku FROM sales_order_item WHERE item_id = 975;",
+ "answer": [
+ "Supernova Sport Pant",
+ "MP04-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Supernova Sport Pant",
+ "MP04-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for product ID 558.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 558;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating ID 1?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'pending_payment'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending_payment';",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "Get the description of the product with entity ID 560.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 560 AND attribute_id = 75;",
+ "answer": [
+ "Don't be fooled by its classic style; the Ryker LumaTech\u2122 Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.",
+ "\u2022 Relaxed fit. \u2022 Short-Sleeve. \u2022 Machine wash/dry."
+ ],
+ "sql_execute_result": [
+ [
+ "Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.
\n• Relaxed fit.
• Short-Sleeve.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total for the invoice with entity ID 2?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Find all ratings that are active.",
+ "sql": "SELECT rating_id, rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "Quality"
+ ],
+ [
+ 2,
+ "Value"
+ ],
+ [
+ 3,
+ "Price"
+ ],
+ [
+ 4,
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total weight of all products ordered in order ID 171?",
+ "sql": "SELECT SUM(weight) FROM sales_order_item WHERE order_id = 171;",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total discount amount applied to the item with SKU 'MH09-S-Red'.",
+ "sql": "SELECT discount_amount FROM sales_order_item WHERE sku = 'MH09-S-Red';",
+ "answer": [
+ "13.8000",
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "13.8000"
+ ],
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price including tax for the Endurance Watch?",
+ "sql": "SELECT price_incl_tax FROM sales_order_item WHERE sku = '24-MG01';",
+ "answer": [
+ "49.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "49.0000"
+ ],
+ [
+ "49.0000"
+ ],
+ [
+ "49.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many unique email addresses were found for customers with the shipping address on Rodeo Drive?",
+ "sql": "SELECT email FROM sales_order_address WHERE street = '789 Rodeo Drive' AND address_type = 'shipping';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for shipment with ID 3.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE entity_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the order with increment ID '000000199'?",
+ "sql": "SELECT billing_name FROM sales_order_grid WHERE increment_id = '000000199';",
+ "answer": [
+ "Jane Smith"
+ ],
+ "sql_execute_result": [
+ [
+ "Jane Smith"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the status code for review status ID 2.",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for the sales order address with entity ID 355.",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 355;",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount paid for the order with increment ID '000000002'?",
+ "sql": "SELECT total_paid FROM sales_order_grid WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the subtotal of the order placed by customer Jennifer White.",
+ "sql": "SELECT subtotal FROM sales_order_grid WHERE customer_name = 'Jennifer White';",
+ "answer": [
+ "55.0000",
+ "158.0000",
+ "185.0000",
+ "189.6000",
+ "121.0000",
+ "143.4000",
+ "152.0000",
+ "228.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "55.0000"
+ ],
+ [
+ "158.0000"
+ ],
+ [
+ "185.0000"
+ ],
+ [
+ "189.6000"
+ ],
+ [
+ "121.0000"
+ ],
+ [
+ "143.4000"
+ ],
+ [
+ "152.0000"
+ ],
+ [
+ "228.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name where the shipment with ID 1 was created?",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE entity_id IN (SELECT order_id FROM sales_shipment WHERE entity_id = 1);",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email associated with the order ID 240.",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE entity_id = 240;",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 49?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 49;",
+ "answer": [
+ "james.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "james.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status with ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were sold in store ID 1 during May 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND period = '2023-05-01';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Sprite Yoga Strap 8 foot"
+ ],
+ [
+ "Aim Analog Watch"
+ ],
+ [
+ "Frankie Sweatshirt-XS-Green"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue"
+ ],
+ [
+ "Marco Lightweight Active Hoodie-S-Green"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Blue"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Thorpe Track Pant-32-Blue"
+ ],
+ [
+ "Thorpe Track Pant-32-Purple"
+ ],
+ [
+ "Rapha Sports Short-36-Blue"
+ ],
+ [
+ "Ingrid Running Jacket-XS-White"
+ ],
+ [
+ "Nadia Elements Shell-XS-Yellow"
+ ],
+ [
+ "Neve Studio Dance Jacket-M-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-XS-Red"
+ ],
+ [
+ "Tiffany Fitness Tee-XL-Blue"
+ ],
+ [
+ "Chloe Compete Tank-M-Yellow"
+ ],
+ [
+ "Ida Workout Parachute Pant-28-Blue"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Gwen Drawstring Bike Short-28-Orange"
+ ],
+ [
+ "Angel Light Running Short-29-Purple"
+ ],
+ [
+ "Echo Fit Compression Short-29-Blue"
+ ],
+ [
+ "Ina Compression Short-29-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the reviewer who wrote 'Wish there were pockets'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Wish there were pockets ';",
+ "answer": [
+ "Chasidy"
+ ],
+ "sql_execute_result": [
+ [
+ "Chasidy"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were the bestsellers in April 2022 in store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE store_id = 1 AND period = '2022-04-01';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Quest Lumaflex™ Band"
+ ],
+ [
+ "Summit Watch"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-S-Black"
+ ],
+ [
+ "Ajax Full-Zip Sweatshirt -XL-Red"
+ ],
+ [
+ "Mars HeatTech™ Pullover-XL-Red"
+ ],
+ [
+ "Proteus Fitness Jackshirt-L-Blue"
+ ],
+ [
+ "Zoltan Gym Tee-XL-Green"
+ ],
+ [
+ "Ryker LumaTech™ Tee (V-neck)-XS-Blue"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Blue"
+ ],
+ [
+ "Argus All-Weather Tank-M-Gray"
+ ],
+ [
+ "Cassius Sparring Tank-M-Blue"
+ ],
+ [
+ "Livingston All-Purpose Tight-32-Blue"
+ ],
+ [
+ "Aether Gym Pant -34-Brown"
+ ],
+ [
+ "Lono Yoga Short-33-Gray"
+ ],
+ [
+ "Hera Pullover Hoodie-XS-Green"
+ ],
+ [
+ "Ariel Roll Sleeve Sweatshirt-S-Green"
+ ],
+ [
+ "Eos V-Neck Hoodie-XS-Orange"
+ ],
+ [
+ "Neve Studio Dance Jacket-XS-Black"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-M-Black"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee-S-Red"
+ ],
+ [
+ "Prima Compete Bra Top-XL-Yellow"
+ ],
+ [
+ "Leah Yoga Top-XS-Purple"
+ ],
+ [
+ "Mimi All-Purpose Short-29-White"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for entity type ID 7?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 7;",
+ "answer": [
+ "creditmemo"
+ ],
+ "sql_execute_result": [
+ [
+ "creditmemo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name of the customer with email 'olivia.jackson@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name FROM customer_entity WHERE email = 'olivia.jackson@gmail.com';",
+ "answer": [
+ "Olivia Jackson"
+ ],
+ "sql_execute_result": [
+ [
+ "Olivia Jackson"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ID of the review titled 'Super warm.'?",
+ "sql": "SELECT review_id FROM review_detail WHERE title = 'Super warm.';",
+ "answer": [
+ "214"
+ ],
+ "sql_execute_result": [
+ [
+ 214
+ ]
+ ]
+ },
+ {
+ "question": "List all customer emails with a default billing address ID of 40.",
+ "sql": "SELECT email FROM customer_entity WHERE default_billing = 40;",
+ "answer": [
+ "jessica.nguyen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jessica.nguyen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by customer with email 'coolcat321@hotmail.com'?",
+ "sql": "SELECT entity_id, grand_total, created_at FROM sales_order WHERE customer_email = 'coolcat321@hotmail.com';",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 46,
+ "139.0000",
+ "2023-01-23 19:02:12"
+ ],
+ [
+ 66,
+ "162.2000",
+ "2022-06-02 18:23:03"
+ ],
+ [
+ 81,
+ "183.5900",
+ "2023-04-05 02:01:58"
+ ],
+ [
+ 88,
+ "168.8000",
+ "2023-04-14 03:05:30"
+ ],
+ [
+ 132,
+ "161.8000",
+ "2023-02-03 19:31:31"
+ ],
+ [
+ 137,
+ "156.0000",
+ "2022-01-15 15:31:46"
+ ],
+ [
+ 148,
+ "125.0000",
+ "2023-05-04 10:35:15"
+ ],
+ [
+ 154,
+ "109.0000",
+ "2023-04-02 14:47:47"
+ ],
+ [
+ 161,
+ "199.0000",
+ "2022-09-30 09:45:39"
+ ],
+ [
+ 180,
+ "135.2000",
+ "2022-06-14 03:06:22"
+ ],
+ [
+ 232,
+ "143.0000",
+ "2023-01-29 18:02:01"
+ ],
+ [
+ 239,
+ "82.6000",
+ "2022-06-18 14:20:21"
+ ],
+ [
+ 243,
+ "292.4000",
+ "2022-01-28 05:27:29"
+ ],
+ [
+ 249,
+ "125.0000",
+ "2022-04-23 07:16:53"
+ ],
+ [
+ 266,
+ "183.1900",
+ "2023-03-04 16:05:15"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total weight of items ordered in order with ID 213?",
+ "sql": "SELECT weight FROM sales_order WHERE entity_id = 213;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer 'Matthew Kim'.",
+ "sql": "SELECT billing_street, billing_city, billing_region, billing_postcode FROM customer_grid_flat WHERE name = 'Matthew Kim';",
+ "answer": [
+ "111 River St",
+ "Hoboken",
+ "New Jersey",
+ "07030"
+ ],
+ "sql_execute_result": [
+ [
+ "111 River St",
+ "Hoboken",
+ "New Jersey",
+ "07030"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total amount invoiced for order with ID 1.",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE order_id = 1;",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for review with ID 318?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 318;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the order with increment ID '000000130'.",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000130';",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many completed orders were found?",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 43
+ ],
+ [
+ 45
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 57
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 64
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 73
+ ],
+ [
+ 75
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 87
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 102
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 119
+ ],
+ [
+ 121
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 133
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 150
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 158
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 166
+ ],
+ [
+ 169
+ ],
+ [
+ 179
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 184
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 192
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 223
+ ],
+ [
+ 225
+ ],
+ [
+ 228
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 233
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 243
+ ],
+ [
+ 247
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 253
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 260
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 274
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 295
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity_id 604?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 604 AND attribute_id = 77;",
+ "answer": [
+ "39.00"
+ ],
+ "sql_execute_result": [
+ [
+ "39.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions are in the country with ISO code 'LV'?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'LV';",
+ "answer": [
+ "120"
+ ],
+ "sql_execute_result": [
+ [
+ "Daugavpils"
+ ],
+ [
+ "Jelgava"
+ ],
+ [
+ "J\u0113kabpils"
+ ],
+ [
+ "J\u016brmala"
+ ],
+ [
+ "Liep\u0101ja"
+ ],
+ [
+ "Liep\u0101jas novads"
+ ],
+ [
+ "R\u0113zekne"
+ ],
+ [
+ "R\u012bga"
+ ],
+ [
+ "R\u012bgas novads"
+ ],
+ [
+ "Valmiera"
+ ],
+ [
+ "Ventspils"
+ ],
+ [
+ "Aglonas novads"
+ ],
+ [
+ "Aizkraukles novads"
+ ],
+ [
+ "Aizputes novads"
+ ],
+ [
+ "Akn\u012bstes novads"
+ ],
+ [
+ "Alojas novads"
+ ],
+ [
+ "Alsungas novads"
+ ],
+ [
+ "Al\u016bksnes novads"
+ ],
+ [
+ "Amatas novads"
+ ],
+ [
+ "Apes novads"
+ ],
+ [
+ "Auces novads"
+ ],
+ [
+ "Bab\u012btes novads"
+ ],
+ [
+ "Baldones novads"
+ ],
+ [
+ "Baltinavas novads"
+ ],
+ [
+ "Balvu novads"
+ ],
+ [
+ "Bauskas novads"
+ ],
+ [
+ "Bever\u012bnas novads"
+ ],
+ [
+ "Broc\u0113nu novads"
+ ],
+ [
+ "Burtnieku novads"
+ ],
+ [
+ "Carnikavas novads"
+ ],
+ [
+ "Cesvaines novads"
+ ],
+ [
+ "Ciblas novads"
+ ],
+ [
+ "C\u0113su novads"
+ ],
+ [
+ "Dagdas novads"
+ ],
+ [
+ "Daugavpils novads"
+ ],
+ [
+ "Dobeles novads"
+ ],
+ [
+ "Dundagas novads"
+ ],
+ [
+ "Durbes novads"
+ ],
+ [
+ "Engures novads"
+ ],
+ [
+ "Garkalnes novads"
+ ],
+ [
+ "Grobi\u0146as novads"
+ ],
+ [
+ "Gulbenes novads"
+ ],
+ [
+ "Iecavas novads"
+ ],
+ [
+ "Ik\u0161\u0137iles novads"
+ ],
+ [
+ "Il\u016bkstes novads"
+ ],
+ [
+ "In\u010dukalna novads"
+ ],
+ [
+ "Jaunjelgavas novads"
+ ],
+ [
+ "Jaunpiebalgas novads"
+ ],
+ [
+ "Jaunpils novads"
+ ],
+ [
+ "Jelgavas novads"
+ ],
+ [
+ "J\u0113kabpils novads"
+ ],
+ [
+ "Kandavas novads"
+ ],
+ [
+ "Kokneses novads"
+ ],
+ [
+ "Krimuldas novads"
+ ],
+ [
+ "Krustpils novads"
+ ],
+ [
+ "Kr\u0101slavas novads"
+ ],
+ [
+ "Kuld\u012bgas novads"
+ ],
+ [
+ "K\u0101rsavas novads"
+ ],
+ [
+ "Lielv\u0101rdes novads"
+ ],
+ [
+ "Limba\u017eu novads"
+ ],
+ [
+ "Lub\u0101nas novads"
+ ],
+ [
+ "Ludzas novads"
+ ],
+ [
+ "L\u012bgatnes novads"
+ ],
+ [
+ "L\u012bv\u0101nu novads"
+ ],
+ [
+ "Madonas novads"
+ ],
+ [
+ "Mazsalacas novads"
+ ],
+ [
+ "M\u0101lpils novads"
+ ],
+ [
+ "M\u0101rupes novads"
+ ],
+ [
+ "Nauk\u0161\u0113nu novads"
+ ],
+ [
+ "Neretas novads"
+ ],
+ [
+ "N\u012bcas novads"
+ ],
+ [
+ "Ogres novads"
+ ],
+ [
+ "Olaines novads"
+ ],
+ [
+ "Ozolnieku novads"
+ ],
+ [
+ "Prei\u013cu novads"
+ ],
+ [
+ "Priekules novads"
+ ],
+ [
+ "Prieku\u013cu novads"
+ ],
+ [
+ "P\u0101rgaujas novads"
+ ],
+ [
+ "P\u0101vilostas novads"
+ ],
+ [
+ "P\u013cavi\u0146u novads"
+ ],
+ [
+ "Raunas novads"
+ ],
+ [
+ "Riebi\u0146u novads"
+ ],
+ [
+ "Rojas novads"
+ ],
+ [
+ "Ropa\u017eu novads"
+ ],
+ [
+ "Rucavas novads"
+ ],
+ [
+ "Rug\u0101ju novads"
+ ],
+ [
+ "Rund\u0101les novads"
+ ],
+ [
+ "R\u0113zeknes novads"
+ ],
+ [
+ "R\u016bjienas novads"
+ ],
+ [
+ "Salacgr\u012bvas novads"
+ ],
+ [
+ "Salas novads"
+ ],
+ [
+ "Salaspils novads"
+ ],
+ [
+ "Saldus novads"
+ ],
+ [
+ "Saulkrastu novads"
+ ],
+ [
+ "Siguldas novads"
+ ],
+ [
+ "Skrundas novads"
+ ],
+ [
+ "Skr\u012bveru novads"
+ ],
+ [
+ "Smiltenes novads"
+ ],
+ [
+ "Stopi\u0146u novads"
+ ],
+ [
+ "Stren\u010du novads"
+ ],
+ [
+ "S\u0113jas novads"
+ ],
+ [
+ "Talsu novads"
+ ],
+ [
+ "Tukuma novads"
+ ],
+ [
+ "T\u0113rvetes novads"
+ ],
+ [
+ "Vai\u0146odes novads"
+ ],
+ [
+ "Valkas novads"
+ ],
+ [
+ "Valmieras novads"
+ ],
+ [
+ "Varak\u013c\u0101nu novads"
+ ],
+ [
+ "Vecpiebalgas novads"
+ ],
+ [
+ "Vecumnieku novads"
+ ],
+ [
+ "Ventspils novads"
+ ],
+ [
+ "Vies\u012btes novads"
+ ],
+ [
+ "Vi\u013cakas novads"
+ ],
+ [
+ "Vi\u013c\u0101nu novads"
+ ],
+ [
+ "V\u0101rkavas novads"
+ ],
+ [
+ "Zilupes novads"
+ ],
+ [
+ "\u0100da\u017eu novads"
+ ],
+ [
+ "\u0112rg\u013cu novads"
+ ],
+ [
+ "\u0136eguma novads"
+ ],
+ [
+ "\u0136ekavas novads"
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the rating option with option_id 14?",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 14;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ "4"
+ ]
+ ]
+ },
+ {
+ "question": "How many sequence values are present in sequence_shipment_1?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with code 'admin' active?",
+ "sql": "SELECT is_active FROM store WHERE code = 'admin';",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with region_id 799?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 799;",
+ "answer": [
+ "Kentrik\u00ed Makedon\u00eda"
+ ],
+ "sql_execute_result": [
+ [
+ "Kentrik\u00ed Makedon\u00eda"
+ ]
+ ]
+ },
+ {
+ "question": "Find the max_value for the sales sequence profile with profile_id 5.",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with option_id 1?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the warning_value for the sales sequence profile with meta_id 2.",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE meta_id = 2;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "Which store has website_id 1 and is active?",
+ "sql": "SELECT name FROM store WHERE website_id = 1 AND is_active = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 421?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 421 AND attribute_id = 73;",
+ "answer": [
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Proteus Fitness Jackshirt-M-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name associated with credit memo increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Which store group is associated with the default group ID 1 on the Main Website?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method for the credit memo related to order increment ID '000000002'?",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE order_increment_id = '000000002';",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer associated with credit memo ID 1?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the grand total of the base amount for the credit memo with entity ID 1.",
+ "sql": "SELECT base_grand_total FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the website code for the main website?",
+ "sql": "SELECT code FROM store_website WHERE name = 'Main Website';",
+ "answer": [
+ "base"
+ ],
+ "sql_execute_result": [
+ [
+ "base"
+ ]
+ ]
+ },
+ {
+ "question": "Which store group is marked as the default for the admin website?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 0;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the catalog item with entity ID 1292?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1292 AND attribute_id = 73;",
+ "answer": [
+ "Inez Full Zip Jacket-M-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "Inez Full Zip Jacket-M-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 179?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 179 AND attribute_id = 77;",
+ "answer": [
+ "69.00"
+ ],
+ "sql_execute_result": [
+ [
+ "69.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which category does the product with ID 1416 belong to?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1416;",
+ "answer": [
+ "25",
+ "33",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 25
+ ],
+ [
+ 33
+ ],
+ [
+ 35
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the review detail for the review titled 'Motivated by this Bag!'?",
+ "sql": "SELECT detail FROM review_detail WHERE title = 'Motivated by this Bag!';",
+ "answer": [
+ "I purchased this bag hoping it would give me more motivation to go to the gym and it has! Not too big, sized just right for me and all my friends love it :)"
+ ],
+ "sql_execute_result": [
+ [
+ "I purchased this bag hoping it would give me more motivation to go to the gym and it has! Not too big, sized just right for me and all my friends love it :)"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute option with ID 88?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 88;",
+ "answer": [
+ "Fashion"
+ ],
+ "sql_execute_result": [
+ [
+ "Fashion"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for the product with ID 1794?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1794 AND attribute_id = 77;",
+ "answer": [
+ "34.00"
+ ],
+ "sql_execute_result": [
+ [
+ "34.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the shipment with ID 3.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 WHERE sequence_value = 3;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who wrote the review with ID 97?",
+ "sql": "SELECT nickname FROM review_detail WHERE review_id = 97;",
+ "answer": [
+ "Duncan"
+ ],
+ "sql_execute_result": [
+ [
+ "Duncan"
+ ]
+ ]
+ },
+ {
+ "question": "Find the position of the product with ID 458 in its category.",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 458;",
+ "answer": [
+ "-28",
+ "-92"
+ ],
+ "sql_execute_result": [
+ [
+ -28
+ ],
+ [
+ -92
+ ],
+ [
+ -92
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the attribute option with ID 68?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 68;",
+ "answer": [
+ "Telescoping"
+ ],
+ "sql_execute_result": [
+ [
+ "Telescoping"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review written by Carlo?",
+ "sql": "SELECT title FROM review_detail WHERE nickname = 'Carlo';",
+ "answer": [
+ "Ripped the FIRST TIME I wore",
+ "I wear these to my gym daily. I go hard"
+ ],
+ "sql_execute_result": [
+ [
+ "Ripped the FIRST TIME I wore "
+ ],
+ [
+ "I wear these to my gym daily. I go hard "
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for the best-selling product in 2023 from store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE period = '2023-01-01' AND store_id = 1 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 32?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 32;",
+ "answer": [
+ "247"
+ ],
+ "sql_execute_result": [
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 258 in locale en_US?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 258 AND locale = 'en_US';",
+ "answer": [
+ "Seine-Maritime"
+ ],
+ "sql_execute_result": [
+ [
+ "Seine-Maritime"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the period for the bestsellers aggregated yearly record with ID 802?",
+ "sql": "SELECT period FROM sales_bestsellers_aggregated_yearly WHERE id = 802;",
+ "answer": [
+ "2023-01-01"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-01-01"
+ ]
+ ]
+ },
+ {
+ "question": "List all shipment sequence values.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1;",
+ "answer": [
+ "1",
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Ana Running Short-29-Black'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ana Running Short-29-Black';",
+ "answer": [
+ "40.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "40.0000"
+ ],
+ [
+ "40.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Arcadio Gym Short-36-Black'.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Arcadio Gym Short-36-Black';",
+ "answer": [
+ "121",
+ "110"
+ ],
+ "sql_execute_result": [
+ [
+ 121
+ ],
+ [
+ 110
+ ]
+ ]
+ },
+ {
+ "question": "What is the product ID for the best-selling product in January 2022 from store ID 1?",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_yearly WHERE period = '2022-01-01' AND store_id = 1 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ 20
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 913?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 913 AND locale = 'en_US';",
+ "answer": [
+ "Sassari"
+ ],
+ "sql_execute_result": [
+ [
+ "Sassari"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'wayfarer-messenger-bag'?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 4 AND attribute_id = 121 AND store_id = 0;",
+ "answer": [
+ "wayfarer-messenger-bag"
+ ],
+ "sql_execute_result": [
+ [
+ "wayfarer-messenger-bag"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address for customer with ID 57.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 57;",
+ "answer": [
+ "jacob.rivera@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jacob.rivera@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Cobalt CoolTech\u2122 Fitness Short-32-Red' in 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Cobalt CoolTech™ Fitness Short-32-Red' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base grand total of the invoice with ID '000000002'?",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the customer 'Bob Jones'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE entity_id = 4;",
+ "answer": [
+ "890 Elm Street Dallas Texas 75202"
+ ],
+ "sql_execute_result": [
+ [
+ "890 Elm Street Dallas Texas 75202"
+ ]
+ ]
+ },
+ {
+ "question": "What product has the attribute value 'Gobi HeatTec\u00ae Tee-S-Orange'?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 435 AND attribute_id = 73 AND store_id = 0;",
+ "answer": [
+ "Gobi HeatTec\u00ae Tee-S-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Gobi HeatTec® Tee-S-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent order status for the credit memo with ID 1?",
+ "sql": "SELECT order_status FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "closed"
+ ],
+ "sql_execute_result": [
+ [
+ "closed"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were placed by 'Ava Brown'?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = (SELECT entity_id FROM customer_grid_flat WHERE email = 'beachlover99@yahoo.com');",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing region for the customer with email 'soccerfanatic22@gmail.com'?",
+ "sql": "SELECT billing_region FROM customer_grid_flat WHERE email = 'soccerfanatic22@gmail.com';",
+ "answer": [
+ "Texas"
+ ],
+ "sql_execute_result": [
+ [
+ "Texas"
+ ]
+ ]
+ },
+ {
+ "question": "Which product had the highest quantity ordered in 2023 from store ID 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE store_id = 1 AND period = '2023-01-01' ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the item 'Portia Capri-28-Green'?",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE sku = 'WP13-28-Green';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product 'Iris Workout Top' in shipments.",
+ "sql": "SELECT price FROM sales_shipment_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Which region does the ID 287 correspond to?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 287;",
+ "answer": [
+ "Bucure\u0219ti"
+ ],
+ "sql_execute_result": [
+ [
+ "Bucure\u015fti"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of results for the search query 'Antonia Racer Tank'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product named 'Eos V-Neck Hoodie' in the shipment items?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with the search query 'MT02-M-Gray'?",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the base price of the item 'Juliana Short-Sleeve Tee' in the sales order.",
+ "sql": "SELECT base_price FROM sales_order_item WHERE name = 'Juliana Short-Sleeve Tee';",
+ "answer": [
+ "42.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the first shipment?",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value ASC LIMIT 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price for the product 'Troy Yoga Short' in shipments?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "24.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "24.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 47?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 47;",
+ "answer": [
+ "john.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with ID 1091 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1091;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were found for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type code for the table 'sales_order'?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_table = 'sales_order';",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'Joust Bag' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 259?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 259;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity of the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with customer 'amanda.kim@gmail.com'?",
+ "sql": "SELECT store_id FROM customer_entity WHERE email = 'amanda.kim@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest invoice?",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with payment entity ID 162?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 162;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with ID 859 from the bestsellers aggregated yearly data.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 859;",
+ "answer": [
+ "Aether Gym Pant -33-Brown"
+ ],
+ "sql_execute_result": [
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order with payment entity ID 3?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 3;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with stock ID 1 in the inventory?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the region with ID 296 in the country region names.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 296;",
+ "answer": [
+ "Gala\u0163i"
+ ],
+ "sql_execute_result": [
+ [
+ "Gala\u0163i"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does the category with entity ID 29 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 29;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with ID 421 from the bestsellers aggregated yearly data?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 421;",
+ "answer": [
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Proteus Fitness Jackshirt-M-Black"
+ ],
+ [
+ "Proteus Fitness Jackshirt-M-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the path of the category with entity ID 5?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 5;",
+ "answer": [
+ "1/2/3/5"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/3/5"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product with ID 1430 from the bestsellers aggregated yearly data.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_id = 1430;",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the locale for the region named 'Trento'?",
+ "sql": "SELECT locale FROM directory_country_region_name WHERE name = 'Trento';",
+ "answer": [
+ "en_US"
+ ],
+ "sql_execute_result": [
+ [
+ "en_US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product with SKU 'kenobi-trail-jacket-l-blue'. What is its entity_id?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_varchar WHERE value = 'kenobi-trail-jacket-l-blue';",
+ "answer": [
+ "297"
+ ],
+ "sql_execute_result": [
+ [
+ 297
+ ]
+ ]
+ },
+ {
+ "question": "How many times was the search query 'nike' performed?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Hawkeye Yoga Short-36-Gray' in the year 2023?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Hawkeye Yoga Short-36-Gray' AND period = '2023-01-01';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store_id is associated with the search query 'MT02-M-Gray'?",
+ "sql": "SELECT store_id FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute_id of the option with option_id 99?",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 99;",
+ "answer": [
+ "147"
+ ],
+ "sql_execute_result": [
+ [
+ 147
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the highest rating position in the year 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE period = '2023-01-01' ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value associated with attribute_id 106 for the product with entity_id 1889?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1889 AND attribute_id = 106;",
+ "answer": [
+ "container2"
+ ],
+ "sql_execute_result": [
+ [
+ "container2"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store code for the store with name 'Admin'.",
+ "sql": "SELECT code FROM store WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are returned for the search query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the default store view?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer group code for the 'Retailer' customer group.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Which region corresponds to the region ID 793 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 793 AND locale = 'en_US';",
+ "answer": [
+ "Anatolik\u00ed Makedon\u00eda kai Thr\u00e1ki"
+ ],
+ "sql_execute_result": [
+ [
+ "Anatolik\u00ed Makedon\u00eda kai Thr\u00e1ki"
+ ]
+ ]
+ },
+ {
+ "question": "What is the code for the main website?",
+ "sql": "SELECT code FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "base"
+ ],
+ "sql_execute_result": [
+ [
+ "base"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store group with group ID 1.",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the website name for website ID 0?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 0;",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order of the 'Main Website'?",
+ "sql": "SELECT sort_order FROM store_website WHERE name = 'Main Website';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Which store is the default store for the 'Main Website Store' store group?",
+ "sql": "SELECT name FROM store WHERE store_id = (SELECT default_store_id FROM store_group WHERE group_id = 1);",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax class ID associated with the 'NOT LOGGED IN' customer group?",
+ "sql": "SELECT tax_class_id FROM customer_group WHERE customer_group_code = 'NOT LOGGED IN';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Which region name corresponds to region ID 112 in the 'en_US' locale?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 112 AND locale = 'en_US';",
+ "answer": [
+ "Glarus"
+ ],
+ "sql_execute_result": [
+ [
+ "Glarus"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and SKU of the product with the invoice item ID 1?",
+ "sql": "SELECT name, sku FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "Iris Workout Top",
+ "WS03-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top",
+ "WS03-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price including tax for the invoice item ID 2?",
+ "sql": "SELECT base_price_incl_tax FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Is product ID 797 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 797;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity type code for entity type ID 5.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 5;",
+ "answer": [
+ "order"
+ ],
+ "sql_execute_result": [
+ [
+ "order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with option ID 5?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been created based on the sequence value 253?",
+ "sql": "SELECT COUNT(*) FROM sequence_order_1 WHERE sequence_value = 253;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for the rating option with option ID 12?",
+ "sql": "SELECT code FROM rating_option WHERE option_id = 12;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "2"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 1492 in sales invoices?",
+ "sql": "SELECT SUM(qty) FROM sales_invoice_item WHERE product_id = 1492;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with the invoice item ID 2?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories does the category with entity ID 11 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 11;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the path for the category with entity ID 40?",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 40;",
+ "answer": [
+ "1/2/7/40"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/7/40"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the region code 'BCN'?",
+ "sql": "SELECT country_id FROM directory_country_region WHERE code = 'BCN';",
+ "answer": [
+ "MX"
+ ],
+ "sql_execute_result": [
+ [
+ "MX"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the review with review ID 245?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 245;",
+ "answer": [
+ "2023-04-19 16:15:17"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:17"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on January 29, 2023, at store with ID 0?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-29' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the review with ID 21?",
+ "sql": "SELECT rs.status_code FROM review r JOIN review_status rs ON r.status_id = rs.status_id WHERE r.review_id = 21;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 33?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of item with SKU '24-WG081-pink' ordered.",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = '24-WG081-pink';",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "6.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description for the product with entity_id 1352?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1352 AND attribute_id = 75;",
+ "answer": [
+ "If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.
\n• Bright blue 1/4 zip pullover.
• CoolTech™ liner is sweat-wicking.
• Sleeve thumbholes.
• Zipper garage to protect your chin.
• Stretchy collar drawcords.
"
+ ],
+ "sql_execute_result": [
+ [
+ "If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.
\n• Bright blue 1/4 zip pullover.
• CoolTech™ liner is sweat-wicking.
• Sleeve thumbholes.
• Zipper garage to protect your chin.
• Stretchy collar drawcords.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for order with increment ID '000000169'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000169';",
+ "answer": [
+ "232.8400"
+ ],
+ "sql_execute_result": [
+ [
+ "232.8400"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with product_id 580 in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 580;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find all completed orders for customer with email 'jennifer.white@yahoo.com'.",
+ "sql": "SELECT increment_id, grand_total FROM sales_order WHERE customer_email = 'jennifer.white@yahoo.com' AND status = 'complete';",
+ "answer": [
+ "Order ID: 000000075, Total: 205.0000",
+ "Order ID: 000000100, Total: 209.6000",
+ "Order ID: 000000140, Total: 168.4000",
+ "Order ID: 000000147, Total: 172.0000",
+ "Order ID: 000000169, Total: 232.8400"
+ ],
+ "sql_execute_result": [
+ [
+ "000000075",
+ "205.0000"
+ ],
+ [
+ "000000100",
+ "209.6000"
+ ],
+ [
+ "000000140",
+ "168.4000"
+ ],
+ [
+ "000000147",
+ "172.0000"
+ ],
+ [
+ "000000169",
+ "232.8400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of store with store_id 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of items ordered in order with ID 17.",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 17;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs are there for the product named 'Eos V-Neck Hoodie'?",
+ "sql": "SELECT sku FROM sales_order_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used in order with ID 227?",
+ "sql": "SELECT shipping_method FROM sales_order WHERE entity_id = 227;",
+ "answer": [
+ "flatrate_flatrate"
+ ],
+ "sql_execute_result": [
+ [
+ "flatrate_flatrate"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer named 'Olivia Lee'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Olivia Lee';",
+ "answer": [
+ "soccerfanatic22@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "soccerfanatic22@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for customer with email 'emily.chen@hotmail.com'.",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE email = 'emily.chen@hotmail.com';",
+ "answer": [
+ "10 Tremont St Boston Massachusetts 02108"
+ ],
+ "sql_execute_result": [
+ [
+ "10 Tremont St Boston Massachusetts 02108"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount ordered in order ID 125?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 125;",
+ "answer": [
+ "166.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "166.4000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been created by the customer with ID 20?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 20;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping method used for order ID 222?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 222;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of product with ID 134 ordered?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 134;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 2?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 2;",
+ "answer": [
+ "john.smith.xyz@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith.xyz@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many 'Geo Insulated Jogging Pant-34-Green' have been ordered in store with ID 1?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_yearly WHERE product_id = 758 AND store_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'complete'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'complete';",
+ "answer": [
+ "Complete"
+ ],
+ "sql_execute_result": [
+ [
+ "Complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 47?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = 47;",
+ "answer": [
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ],
+ [
+ "Chaz Kangeroo Hoodie-XS-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'roni_cost@example.com'?",
+ "sql": "SELECT firstname, lastname FROM customer_entity WHERE email = 'roni_cost@example.com';",
+ "answer": [
+ "Veronica",
+ "Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 758 in its category?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 758;",
+ "answer": [
+ "-34",
+ "-8",
+ "-142"
+ ],
+ "sql_execute_result": [
+ [
+ -34
+ ],
+ [
+ -34
+ ],
+ [
+ -8
+ ],
+ [
+ -142
+ ]
+ ]
+ },
+ {
+ "question": "What is the total refund amount for order with increment ID '000000002'?",
+ "sql": "SELECT total_refunded FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of items on invoice with ID 1?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for the order with ID 124?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 124;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "How many ISO codes for countries starting with 'M' were found?",
+ "sql": "SELECT iso2_code FROM directory_country WHERE country_id LIKE 'M%';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ "MA"
+ ],
+ [
+ "MC"
+ ],
+ [
+ "MD"
+ ],
+ [
+ "ME"
+ ],
+ [
+ "MF"
+ ],
+ [
+ "MG"
+ ],
+ [
+ "MH"
+ ],
+ [
+ "MK"
+ ],
+ [
+ "ML"
+ ],
+ [
+ "MM"
+ ],
+ [
+ "MN"
+ ],
+ [
+ "MO"
+ ],
+ [
+ "MP"
+ ],
+ [
+ "MQ"
+ ],
+ [
+ "MR"
+ ],
+ [
+ "MS"
+ ],
+ [
+ "MT"
+ ],
+ [
+ "MU"
+ ],
+ [
+ "MV"
+ ],
+ [
+ "MW"
+ ],
+ [
+ "MX"
+ ],
+ [
+ "MY"
+ ],
+ [
+ "MZ"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for invoice with ID 2.",
+ "sql": "SELECT tax_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status ID of the review for product ID 1396?",
+ "sql": "SELECT status_id FROM review WHERE entity_pk_value = 1396;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with increment ID '000000001'?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many results were returned for the search query 'MT02-M-Gray'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'MT02-M-Gray';",
+ "answer": [
+ "115"
+ ],
+ "sql_execute_result": [
+ [
+ 115
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity score for the search query 'Joust Bag'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the subtotal including tax for the invoice with ID 1?",
+ "sql": "SELECT subtotal_incl_tax FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Which country has the ISO-3 code 'AUT'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso3_code = 'AUT';",
+ "answer": [
+ "AT"
+ ],
+ "sql_execute_result": [
+ [
+ "AT"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'MP06-32-Gray'?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MP06-32-Gray');",
+ "answer": [
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "Mithra Warmup Pant-32-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-32-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "How many units were ordered for the product 'Sprite Stasis Ball 75 cm' in 2022?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sprite Stasis Ball 75 cm' AND period = '2022-01-01';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "12.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the shipping address in Boston.",
+ "sql": "SELECT email FROM sales_order_address WHERE city = 'Boston' AND address_type = 'shipping';",
+ "answer": [
+ "david.lee@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ],
+ [
+ "david.lee@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers have a billing address in Miami?",
+ "sql": "SELECT firstname FROM sales_order_address WHERE city = 'Miami' AND address_type = 'billing';",
+ "answer": [
+ "32"
+ ],
+ "sql_execute_result": [
+ [
+ "Sophie"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Sophie"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Sophie"
+ ],
+ [
+ "Sophie"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Jane"
+ ],
+ [
+ "Samantha"
+ ],
+ [
+ "Sophie"
+ ],
+ [
+ "Jane"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'General'?",
+ "sql": "SELECT customer_group_id FROM customer_group WHERE customer_group_code = 'General';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of 'Circe Hooded Ice Fleece-M-Green' as of January 2023?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Circe Hooded Ice Fleece-M-Green' AND period = '2023-01-01';",
+ "answer": [
+ "68.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "68.0000"
+ ],
+ [
+ "68.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many regions were found for the billing address of customer Michael Nguyen?",
+ "sql": "SELECT region FROM sales_order_address WHERE firstname = 'Michael' AND lastname = 'Nguyen' AND address_type = 'billing';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ],
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position of 'Beaumont Summit Kit-S-Orange' in 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Beaumont Summit Kit-S-Orange' AND period = '2022-01-01';",
+ "answer": [
+ "282",
+ "148"
+ ],
+ "sql_execute_result": [
+ [
+ 282
+ ],
+ [
+ 148
+ ]
+ ]
+ },
+ {
+ "question": "How many full names were found for the customer with email 'alex.martin@gmail.com'?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name FROM sales_order_address WHERE email = 'alex.martin@gmail.com';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Alex Martin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for customer named Adam Garcia?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Adam Garcia';",
+ "answer": [
+ "123 Pine Street Seattle Washington 98122",
+ "456 E Jefferson St Phoenix Arizona 85004"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Pine Street Seattle Washington 98122"
+ ],
+ [
+ "456 E Jefferson St Phoenix Arizona 85004"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on January 3, 2023?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-03' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the email associated with the credit memo ID 1.",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the order ID 137?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 137;",
+ "answer": [
+ "20.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "20.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product name for option ID 55?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 55;",
+ "answer": [
+ "Multi"
+ ],
+ "sql_execute_result": [
+ [
+ "Multi"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders completed on February 14, 2022.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-02-14' AND order_status = 'complete';",
+ "answer": [
+ "240.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "240.0000"
+ ],
+ [
+ "240.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name associated with credit memo increment ID '000000001'?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders that were canceled on April 7, 2023.",
+ "sql": "SELECT id FROM sales_order_aggregated_created WHERE period = '2023-04-07' AND order_status = 'canceled';",
+ "answer": [
+ "1560",
+ "1049"
+ ],
+ "sql_execute_result": [
+ [
+ 1560
+ ],
+ [
+ 1049
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method for order ID 31?",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 31;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 15?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 15;",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most recent order date for customer with email 'janesmith456@yahoo.com'?",
+ "sql": "SELECT updated_at FROM sales_order WHERE customer_email = 'janesmith456@yahoo.com' ORDER BY updated_at DESC LIMIT 1;",
+ "answer": [
+ "2023-04-23 23:37:49"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-23 23:37:49"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in order with increment ID '000000099'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000099';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the order with increment ID '000000002' marked as complete?",
+ "sql": "SELECT status = 'complete' FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of items ordered in sales order with entity ID 300.",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 300;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 25?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 25 AND attribute_id = 45;",
+ "answer": [
+ "Tees"
+ ],
+ "sql_execute_result": [
+ [
+ "Tees"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the order with increment ID '000000095'?",
+ "sql": "SELECT grand_total FROM sales_order WHERE increment_id = '000000095';",
+ "answer": [
+ "64.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "64.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping description for the order with entity ID 99?",
+ "sql": "SELECT shipping_description FROM sales_order WHERE entity_id = 99;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found in the category 'women/bottoms-women/shorts-women'?",
+ "sql": "SELECT cpe.sku FROM catalog_product_entity cpe JOIN catalog_category_product ccp ON cpe.entity_id = ccp.product_id JOIN catalog_category_entity_varchar ccev ON ccp.category_id = ccev.entity_id WHERE ccev.value = 'women/bottoms-women/shorts-women';",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH01"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH02"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH03"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH04"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH05"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH06"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH07"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH08"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH09"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH10"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH11"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH12"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ]
+ ]
+ },
+ {
+ "question": "Find the state associated with the status 'fraud'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total price including tax for the invoice item with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "List the names of all shipment items with a weight of 1.0000.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE weight = 1.0000;",
+ "answer": [
+ "Iris Workout Top",
+ "Minerva LumaTech\u2122 V-Tee",
+ "Troy Yoga Short",
+ "Eos V-Neck Hoodie"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ],
+ [
+ "Minerva LumaTech™ V-Tee"
+ ],
+ [
+ "Troy Yoga Short"
+ ],
+ [
+ "Eos V-Neck Hoodie"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation date of the review for the product with ID 737.",
+ "sql": "SELECT created_at FROM review WHERE entity_pk_value = 737;",
+ "answer": [
+ "2023-04-19 16:15:12"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:12"
+ ],
+ [
+ "2023-04-19 16:15:12"
+ ],
+ [
+ "2023-04-19 16:15:12"
+ ]
+ ]
+ },
+ {
+ "question": "What is the latest shipment sequence value?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the status and state of orders that are visible on the front end.",
+ "sql": "SELECT status, state FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled - canceled",
+ "closed - closed",
+ "complete - complete",
+ "fraud - payment_review",
+ "fraud - processing",
+ "holded - holded",
+ "payment_review - payment_review",
+ "pending - new",
+ "processing - processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled",
+ "canceled"
+ ],
+ [
+ "closed",
+ "closed"
+ ],
+ [
+ "complete",
+ "complete"
+ ],
+ [
+ "fraud",
+ "payment_review"
+ ],
+ [
+ "fraud",
+ "processing"
+ ],
+ [
+ "holded",
+ "holded"
+ ],
+ [
+ "payment_review",
+ "payment_review"
+ ],
+ [
+ "pending",
+ "new"
+ ],
+ [
+ "processing",
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with product ID 1428.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE product_id = 1428;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "List the SKUs of shipment items associated with order item ID 1575.",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE order_item_id = 1575;",
+ "answer": [
+ "MSH09-36-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH09-36-Black"
+ ]
+ ]
+ },
+ {
+ "question": "How many status IDs were found for the review created on '2023-04-19 16:15:19'?",
+ "sql": "SELECT status_id FROM review WHERE created_at = '2023-04-19 16:15:19';",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find all order item IDs for the shipment item with SKU 'WH11-S-Blue'.",
+ "sql": "SELECT order_item_id FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "1577"
+ ],
+ "sql_execute_result": [
+ [
+ 1577
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store associated with the website having the code 'base'?",
+ "sql": "SELECT sg.name FROM store_group sg JOIN store_website sw ON sg.website_id = sw.website_id WHERE sw.code = 'base';",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Which category is the product with ID 1787 associated with?",
+ "sql": "SELECT category_id FROM catalog_category_product WHERE product_id = 1787;",
+ "answer": [
+ "26",
+ "30",
+ "35",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 26
+ ],
+ [
+ 30
+ ],
+ [
+ 35
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 50?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 50;",
+ "answer": [
+ "samantha.wu@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "samantha.wu@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers are part of the 'Main Website Store'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE website_id = (SELECT website_id FROM store_group WHERE name = 'Main Website Store');",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address of the customer named 'Brian Smith'?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'Brian Smith';",
+ "answer": [
+ "456 Las Vegas Blvd S Las Vegas Nevada 89109"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Las Vegas Blvd S Las Vegas Nevada 89109"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default store ID for the 'Main Website'?",
+ "sql": "SELECT default_store_id FROM store_group WHERE website_id = (SELECT website_id FROM store_website WHERE name = 'Main Website');",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 1016 in category with ID 19?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1016 AND category_id = 19;",
+ "answer": [
+ "-136"
+ ],
+ "sql_execute_result": [
+ [
+ -136
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 93 used in product listings?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 93;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which region does the billing address for customer 'John Lee' belong to?",
+ "sql": "SELECT billing_region FROM customer_grid_flat WHERE name = 'John Lee';",
+ "answer": [
+ "Illinois"
+ ],
+ "sql_execute_result": [
+ [
+ "Illinois"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are associated with category ID 34?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 34;",
+ "answer": [
+ "279"
+ ],
+ "sql_execute_result": [
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'IN'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'IN';",
+ "answer": [
+ "IND"
+ ],
+ "sql_execute_result": [
+ [
+ "IND"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current shipment sequence number?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer with entity ID 51.",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 51;",
+ "answer": [
+ "robert.johnson@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "robert.johnson@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the street address of the billing address for order ID 109?",
+ "sql": "SELECT street FROM sales_order_address WHERE parent_id = 109 AND address_type = 'billing';",
+ "answer": [
+ "789 17th St"
+ ],
+ "sql_execute_result": [
+ [
+ "789 17th St"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer names who have a billing postcode of '75201'.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_postcode = '75201';",
+ "answer": [
+ "Lisa Green",
+ "Samantha Nguyen",
+ "David Smith",
+ "John Smith",
+ "Ethan Garcia",
+ "James Baker"
+ ],
+ "sql_execute_result": [
+ [
+ "Lisa Green"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "James Baker"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of product ID 1675 in the category ID 26?",
+ "sql": "SELECT position FROM catalog_category_product WHERE product_id = 1675 AND category_id = 26;",
+ "answer": [
+ "-87"
+ ],
+ "sql_execute_result": [
+ [
+ -87
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the customer with email 'fashionista88@gmail.com'.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'fashionista88@gmail.com';",
+ "answer": [
+ "Sophie Taylor"
+ ],
+ "sql_execute_result": [
+ [
+ "Sophie Taylor"
+ ]
+ ]
+ },
+ {
+ "question": "What region is associated with region ID 32?",
+ "sql": "SELECT region FROM sales_order_address WHERE region_id = 32 LIMIT 1;",
+ "answer": [
+ "Massachusetts"
+ ],
+ "sql_execute_result": [
+ [
+ "Massachusetts"
+ ]
+ ]
+ },
+ {
+ "question": "How many customers were created in 'Default Store View'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE created_in = 'Default Store View';",
+ "answer": [
+ "70"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "Bob Jones"
+ ],
+ [
+ "Sarah Miller"
+ ],
+ [
+ "Julia Williams"
+ ],
+ [
+ "Bob Johnson"
+ ],
+ [
+ "Mary Martin"
+ ],
+ [
+ "John Lee"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Daniel Jackson"
+ ],
+ [
+ "Lisa Kim"
+ ],
+ [
+ "Matt Baker"
+ ],
+ [
+ "John Doe"
+ ],
+ [
+ "Jane Smith"
+ ],
+ [
+ "Samantha Jones"
+ ],
+ [
+ "Lily Potter"
+ ],
+ [
+ "Grace Nguyen"
+ ],
+ [
+ "Lucy Garcia"
+ ],
+ [
+ "Olivia Lee"
+ ],
+ [
+ "Ava Brown"
+ ],
+ [
+ "Sophie Taylor"
+ ],
+ [
+ "Alex Johnson"
+ ],
+ [
+ "Emma Davis"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jennifer White"
+ ],
+ [
+ "Alex Martin"
+ ],
+ [
+ "Lisa Green"
+ ],
+ [
+ "Michael Nguyen"
+ ],
+ [
+ "David Lee"
+ ],
+ [
+ "Jason Miller"
+ ],
+ [
+ "Katie Wong"
+ ],
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Brian Smith"
+ ],
+ [
+ "Samantha Nguyen"
+ ],
+ [
+ "Alexander Thomas"
+ ],
+ [
+ "Sam Wilson"
+ ],
+ [
+ "Kate Jones"
+ ],
+ [
+ "David Smith"
+ ],
+ [
+ "Jessica Nguyen"
+ ],
+ [
+ "Maxwell Baker"
+ ],
+ [
+ "Emily Chen"
+ ],
+ [
+ "Anna Nguyen"
+ ],
+ [
+ "Roberto Lopez"
+ ],
+ [
+ "Amanda Kim"
+ ],
+ [
+ "Jane Doe"
+ ],
+ [
+ "John Smith"
+ ],
+ [
+ "Jessica Chang"
+ ],
+ [
+ "James Kim"
+ ],
+ [
+ "Samantha Wu"
+ ],
+ [
+ "Robert Johnson"
+ ],
+ [
+ "Sophia Kim"
+ ],
+ [
+ "William Chang"
+ ],
+ [
+ "Jessica Wong"
+ ],
+ [
+ "Ethan Garcia"
+ ],
+ [
+ "Olivia Jackson"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Sophia Young"
+ ],
+ [
+ "Ryan Tanaka"
+ ],
+ [
+ "Julie Nguyen"
+ ],
+ [
+ "Matthew Kim"
+ ],
+ [
+ "Emily Wilson"
+ ],
+ [
+ "James Baker"
+ ],
+ [
+ "Isabella Santos"
+ ],
+ [
+ "Nathan Chen"
+ ],
+ [
+ "Hannah Lim"
+ ],
+ [
+ "Isaac Rodriguez"
+ ],
+ [
+ "Natalie Kim"
+ ],
+ [
+ "Sean Miller"
+ ],
+ [
+ "Emma Lopez"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with ID 243?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 243;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered on December 24, 2022 for store ID 0.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-12-24' AND store_id = 0;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer named 'Maxwell Baker'?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Maxwell Baker';",
+ "answer": [
+ "maxwell.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "maxwell.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer has the billing postcode '90265'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_postcode = '90265';",
+ "answer": [
+ "Ava Brown"
+ ],
+ "sql_execute_result": [
+ [
+ "Ava Brown"
+ ]
+ ]
+ },
+ {
+ "question": "Check if there are any pending reviews for the product with ID 1236.",
+ "sql": "SELECT COUNT(*) FROM review WHERE entity_pk_value = 1236 AND status_id != 1;",
+ "answer": [
+ "There are no pending reviews for the product with ID 1236."
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discount amount for orders completed on July 12, 2022 in store ID 0?",
+ "sql": "SELECT total_discount_amount FROM sales_order_aggregated_created WHERE period = '2022-07-12' AND store_id = 0 AND order_status = 'complete';",
+ "answer": [
+ "45.2800"
+ ],
+ "sql_execute_result": [
+ [
+ "45.2800"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number of customer 'Emily Chen'.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Emily Chen';",
+ "answer": [
+ "6175551212"
+ ],
+ "sql_execute_result": [
+ [
+ "6175551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for canceled orders on March 26, 2023 for store ID 1?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-03-26' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "76.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "76.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'CG'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'CG';",
+ "answer": [
+ "COG"
+ ],
+ "sql_execute_result": [
+ [
+ "COG"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU for the product with entity ID 161.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 161;",
+ "answer": [
+ "MH08-XS-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MH08-XS-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the shipment item with entity ID 4?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE entity_id = 4;",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method for the sales order payment with entity ID 50.",
+ "sql": "SELECT method FROM sales_order_payment WHERE entity_id = 50;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the additional information for the sales order payment with entity ID 74?",
+ "sql": "SELECT additional_information FROM sales_order_payment WHERE entity_id = 74;",
+ "answer": [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ],
+ "sql_execute_result": [
+ [
+ "{\"method_title\":\"Check \\/ Money order\"}"
+ ]
+ ]
+ },
+ {
+ "question": "Find the country name for the country ID 'IS'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'IS';",
+ "answer": [
+ "ISL"
+ ],
+ "sql_execute_result": [
+ [
+ "ISL"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total ordered amount for the payment with entity ID 192?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 192;",
+ "answer": [
+ "109.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "109.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS03-XS-Red' in the shipment?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "What is the root category ID of the store group with code 'main_website_store'?",
+ "sql": "SELECT root_category_id FROM store_group WHERE code = 'main_website_store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with increment ID '000000240'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000240';",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were ordered in order ID 43?",
+ "sql": "SELECT total_item_count FROM sales_order WHERE entity_id = 43;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with item ID 1578 in the sales order items?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 1578;",
+ "answer": [
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "List all orders for customer with email 'janesmith@gmail.com'.",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'janesmith@gmail.com';",
+ "answer": [
+ "12",
+ "34",
+ "61",
+ "76",
+ "103",
+ "222",
+ "246",
+ "271"
+ ],
+ "sql_execute_result": [
+ [
+ 12
+ ],
+ [
+ 34
+ ],
+ [
+ 61
+ ],
+ [
+ 76
+ ],
+ [
+ 103
+ ],
+ [
+ 222
+ ],
+ [
+ 246
+ ],
+ [
+ 271
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product with SKU 'WSH10-29-Orange'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'WSH10-29-Orange';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total for all completed orders.",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE state = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for product with ID 408?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 408;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total discount amount given in all canceled orders?",
+ "sql": "SELECT SUM(discount_amount) FROM sales_order WHERE state = 'canceled';",
+ "answer": [
+ "-433.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "-433.6400"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'MSH07-32-Black' in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'MSH07-32-Black');",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Get the total base grand total for orders made by customer with ID 27.",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE customer_id = 27;",
+ "answer": [
+ "1463.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "1463.8000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current sequence value for order creation?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Which region has the name 'Murcia' in locale 'en_US'?",
+ "sql": "SELECT region_id FROM directory_country_region_name WHERE name = 'Murcia' AND locale = 'en_US';",
+ "answer": [
+ "164"
+ ],
+ "sql_execute_result": [
+ [
+ 164
+ ]
+ ]
+ },
+ {
+ "question": "List all active sequence profiles.",
+ "sql": "SELECT profile_id FROM sales_sequence_profile WHERE is_active = 1;",
+ "answer": [
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "Find all global attributes that are comparable.",
+ "sql": "SELECT attribute_id FROM catalog_eav_attribute WHERE is_global = 1 AND is_comparable = 1;",
+ "answer": [
+ "74",
+ "83",
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 74
+ ],
+ [
+ 83
+ ],
+ [
+ 137
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 573?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 573;",
+ "answer": [
+ "Bihar"
+ ],
+ "sql_execute_result": [
+ [
+ "Bihar"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 126 used for promo rules?",
+ "sql": "SELECT is_used_for_promo_rules FROM catalog_eav_attribute WHERE attribute_id = 126;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the latest sequence value for shipments.",
+ "sql": "SELECT sequence_value FROM sequence_shipment_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the warning value for the sequence profile with ID 4?",
+ "sql": "SELECT warning_value FROM sales_sequence_profile WHERE profile_id = 4;",
+ "answer": [
+ "4294966295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294966295
+ ]
+ ]
+ },
+ {
+ "question": "Is the region 'Delaware' in locale 'en_US' part of the directory?",
+ "sql": "SELECT COUNT(*) > 0 FROM directory_country_region_name WHERE name = 'Delaware' AND locale = 'en_US';",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with the default billing address ID 61?",
+ "sql": "SELECT email FROM customer_entity WHERE default_billing = 61;",
+ "answer": [
+ "matthew.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matthew.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with SKU 'WS04-XS-Red'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WS04-XS-Red');",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'MP06-33-Gray'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MP06-33-Gray';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock status of the product with ID 1097?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1097;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total of all sales orders?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order;",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with SKU 'WS04-XS-Red' is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WS04-XS-Red');",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing address with entity ID 536?",
+ "sql": "SELECT email FROM sales_order_address WHERE entity_id = 536;",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of search results for the query 'Antonia Racer Tank'.",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store group with group ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the CMS page titled 'Privacy Policy' is active.",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store website with website ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the city for the shipping address with entity ID 423.",
+ "sql": "SELECT city FROM sales_order_address WHERE entity_id = 423;",
+ "answer": [
+ "Miami"
+ ],
+ "sql_execute_result": [
+ [
+ "Miami"
+ ]
+ ]
+ },
+ {
+ "question": "Find the popularity score for the search query 'hollister'.",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading for the CMS page with identifier 'home'?",
+ "sql": "SELECT content_heading FROM cms_page WHERE identifier = 'home';",
+ "answer": [
+ "Home Page"
+ ],
+ "sql_execute_result": [
+ [
+ "Home Page"
+ ]
+ ]
+ },
+ {
+ "question": "Find the postcode for the billing address with entity ID 148.",
+ "sql": "SELECT postcode FROM sales_order_address WHERE entity_id = 148;",
+ "answer": [
+ "98122"
+ ],
+ "sql_execute_result": [
+ [
+ "98122"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation time of the CMS page titled 'About us'?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "2023-04-19 16:15:40"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:40"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer Nathan Chen?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Nathan Chen';",
+ "answer": [
+ "nathan.chen@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "nathan.chen@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing telephone number for customer Sam Wilson.",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Sam Wilson';",
+ "answer": [
+ "3105551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3105551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing postcode for John Lee?",
+ "sql": "SELECT billing_postcode FROM customer_grid_flat WHERE name = 'John Lee';",
+ "answer": [
+ "60611"
+ ],
+ "sql_execute_result": [
+ [
+ "60611"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store ID for the customer with email 'sophia.young@gmail.com'.",
+ "sql": "SELECT store_id FROM customer_entity WHERE email = 'sophia.young@gmail.com';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the value stored for the attribute ID 82 in the catalog product entity with ID 1683?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 82 AND entity_id = 1683;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the region name for region ID 862 in the locale 'en_US'.",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 862 AND locale = 'en_US';",
+ "answer": [
+ "Forli-Cesena"
+ ],
+ "sql_execute_result": [
+ [
+ "Forli-Cesena"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute option has the value 'Boat Neck'?",
+ "sql": "SELECT option_id FROM eav_attribute_option_value WHERE value = 'Boat Neck';",
+ "answer": [
+ "182"
+ ],
+ "sql_execute_result": [
+ [
+ 182
+ ]
+ ]
+ },
+ {
+ "question": "Find the full shipping address for customer Lucy Garcia.",
+ "sql": "SELECT shipping_full FROM customer_grid_flat WHERE name = 'Lucy Garcia';",
+ "answer": [
+ "456 Santa Fe Drive Denver Colorado 80202"
+ ],
+ "sql_execute_result": [
+ [
+ "456 Santa Fe Drive Denver Colorado 80202"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with entity ID 54?",
+ "sql": "SELECT firstname FROM customer_entity WHERE entity_id = 54;",
+ "answer": [
+ "Jessica"
+ ],
+ "sql_execute_result": [
+ [
+ "Jessica"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing city for the customer with email 'marym@gmail.com'.",
+ "sql": "SELECT billing_city FROM customer_grid_flat WHERE email = 'marym@gmail.com';",
+ "answer": [
+ "Miami Beach"
+ ],
+ "sql_execute_result": [
+ [
+ "Miami Beach"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 53?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 53;",
+ "answer": [
+ "william.chang@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "william.chang@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products with SKU containing 'Green' were found?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE sku LIKE '%Green%';",
+ "answer": [
+ "244"
+ ],
+ "sql_execute_result": [
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XS-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the code 'Retailer'?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_code = 'Retailer';",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "List all active websites.",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer ID for the email 'roberto.lopez@hotmail.com'.",
+ "sql": "SELECT entity_id FROM customer_entity WHERE email = 'roberto.lopez@hotmail.com';",
+ "answer": [
+ "44"
+ ],
+ "sql_execute_result": [
+ [
+ 44
+ ]
+ ]
+ },
+ {
+ "question": "What is the value of the rating option with ID 5?",
+ "sql": "SELECT value FROM rating_option WHERE option_id = 5;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'MSH09-34-Blue'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE sku = 'MSH09-34-Blue';",
+ "answer": [
+ "MSH09-34-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH09-34-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with ID 1 active?",
+ "sql": "SELECT is_active FROM store WHERE store_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation time for the customer 'Jane Doe'.",
+ "sql": "SELECT created_at FROM customer_entity WHERE firstname = 'Jane' AND lastname = 'Doe';",
+ "answer": [
+ "2023-04-19 21:45:01",
+ "2023-04-23 04:13:19"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 21:45:01"
+ ],
+ [
+ "2023-04-23 04:13:19"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with entity ID 1818?",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 1818 AND attribute_id = 73;",
+ "answer": [
+ "Karmen Yoga Pant-29-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Karmen Yoga Pant-29-White"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total weight of items in shipment with parent ID 3.",
+ "sql": "SELECT SUM(weight) FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which attribute option is labeled 'Organic Cotton'?",
+ "sql": "SELECT option_id FROM eav_attribute_option_value WHERE value = 'Organic Cotton';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 153
+ ]
+ ]
+ },
+ {
+ "question": "What is the decimal value for attribute ID 77 of product with entity ID 774?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 774 AND attribute_id = 77;",
+ "answer": [
+ "45.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "45.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity of the product 'Troy Yoga Short' shipped?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE name = 'Troy Yoga Short';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value of attribute ID 144 for the product with entity ID 965.",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 965 AND attribute_id = 144;",
+ "answer": [
+ "175"
+ ],
+ "sql_execute_result": [
+ [
+ 175
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with name 'Minerva LumaTech\u2122 V-Tee'?",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID for the attribute option labeled 'DVD'?",
+ "sql": "SELECT store_id FROM eav_attribute_option_value WHERE value = 'DVD';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Get the attribute value for 'Sprite Stasis Ball 65 cm' with attribute ID 73.",
+ "sql": "SELECT value FROM catalog_product_entity_varchar WHERE entity_id = 29 AND attribute_id = 73;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of shipments for the product 'Iris Workout Top'?",
+ "sql": "SELECT COUNT(*) FROM sales_shipment_item WHERE product_id = 1428;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000024'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000024';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "Find the email address of the customer named 'Lucy Garcia'.",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE customer_name = 'Lucy Garcia';",
+ "answer": [
+ "artsygal123@hotmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ],
+ [
+ "artsygal123@hotmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many votes have been cast for the product with ID 654?",
+ "sql": "SELECT COUNT(*) FROM rating_option_vote WHERE entity_pk_value = 654;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for customer group ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "Which store has the latest order update for customer with ID 6?",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE customer_id = 6 ORDER BY updated_at DESC LIMIT 1;",
+ "answer": [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Troy Yoga Short'.",
+ "sql": "SELECT SUM(qty) FROM sales_shipment_item WHERE product_id = 989;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the base grand total for the order with increment ID '000000042'.",
+ "sql": "SELECT base_grand_total FROM sales_order_grid WHERE increment_id = '000000042';",
+ "answer": [
+ "211.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "211.6000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review with status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the bestseller with ID 358 from the daily aggregated data.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE id = 358;",
+ "answer": [
+ "Zoe Tank-S-Yellow"
+ ],
+ "sql_execute_result": [
+ [
+ "Zoe Tank-S-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "What is the group name for the store group with ID 1?",
+ "sql": "SELECT name FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for the entity with ID 37 and attribute ID 120.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 37 AND attribute_id = 120;",
+ "answer": [
+ "sale"
+ ],
+ "sql_execute_result": [
+ [
+ "sale"
+ ]
+ ]
+ },
+ {
+ "question": "How many items were found?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 65 cm';",
+ "answer": [
+ "24"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the code of the store with store ID 0?",
+ "sql": "SELECT code FROM store WHERE store_id = 0;",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product price for 'Erika Running Short-30-Purple' in the daily bestseller data?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Erika Running Short-30-Purple';",
+ "answer": [
+ "45.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "45.0000"
+ ],
+ [
+ "45.0000"
+ ],
+ [
+ "45.0000"
+ ],
+ [
+ "45.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the store with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Hero Hoodie-S-Green' in the daily bestseller data?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Hero Hoodie-S-Green';",
+ "answer": [
+ "1",
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the root category ID for the store group with ID 1.",
+ "sql": "SELECT root_category_id FROM store_group WHERE group_id = 1;",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with ID 165?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for the product with ID 1326.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1326 AND attribute_id = 75;",
+ "answer": [
+ "
If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.
\n• Seafoam 1/4 zip pullover with purple stitching.
• Lightweight, quick-drying, water-resistant construction.
• Shirred details at front and back for a feminine look.
• Hood collapses into collar.
• Mesh liner for breathability.
• Front zip pockets.
• Hem cinches at sideseam.
• 100% Polyester.
"
+ ],
+ "sql_execute_result": [
+ [
+ "
If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.
\n• Seafoam 1/4 zip pullover with purple stitching.
• Lightweight, quick-drying, water-resistant construction.
• Shirred details at front and back for a feminine look.
• Hood collapses into collar.
• Mesh liner for breathability.
• Front zip pockets.
• Hem cinches at sideseam.
• 100% Polyester.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity in the shipment with increment ID '000000003'?",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'pending_paypal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_paypal';",
+ "answer": [
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute code for attribute ID 139.",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 139;",
+ "answer": [
+ "material"
+ ],
+ "sql_execute_result": [
+ [
+ "material"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the eav attribute option with option ID 31?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 31;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer ID associated with shipment entity ID 2.",
+ "sql": "SELECT customer_id FROM sales_shipment WHERE entity_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the created date of the review with ID 108?",
+ "sql": "SELECT created_at FROM review WHERE review_id = 108;",
+ "answer": [
+ "2023-04-19 16:15:13"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:13"
+ ]
+ ]
+ },
+ {
+ "question": "Find the value for the catalog product entity text with value ID 901.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE value_id = 901;",
+ "answer": [
+ "196"
+ ],
+ "sql_execute_result": [
+ [
+ "196"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups and their codes.",
+ "sql": "SELECT customer_group_id, customer_group_code FROM customer_group;",
+ "answer": [
+ "0: NOT LOGGED IN",
+ "1: General",
+ "2: Wholesale",
+ "3: Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ 0,
+ "NOT LOGGED IN"
+ ],
+ [
+ 1,
+ "General"
+ ],
+ [
+ 2,
+ "Wholesale"
+ ],
+ [
+ 3,
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the sales order with state 'payment_review'?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'payment_review';",
+ "answer": [
+ "fraud",
+ "payment_review"
+ ],
+ "sql_execute_result": [
+ [
+ "fraud"
+ ],
+ [
+ "payment_review"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default state for status 'canceled'.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'canceled' AND is_default = 1;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the sort order of the attribute option with ID 127.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 127;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ]
+ ]
+ },
+ {
+ "question": "How many shipments have been processed according to sequence_shipment_1?",
+ "sql": "SELECT COUNT(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Get the sequence value for the first invoice generated.",
+ "sql": "SELECT sequence_value FROM sequence_invoice_1 ORDER BY sequence_value LIMIT 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the order with state 'new'?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE state = 'new';",
+ "answer": [
+ "pending"
+ ],
+ "sql_execute_result": [
+ [
+ "pending"
+ ]
+ ]
+ },
+ {
+ "question": "Which status has the highest visibility on the front end?",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1 ORDER BY status LIMIT 1;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute ID associated with option ID 120.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 120;",
+ "answer": [
+ "152"
+ ],
+ "sql_execute_result": [
+ [
+ 152
+ ]
+ ]
+ },
+ {
+ "question": "List all states with their default status.",
+ "sql": "SELECT state, status FROM sales_order_status_state WHERE is_default = 1;",
+ "answer": [
+ "canceled: canceled",
+ "closed: closed",
+ "complete: complete",
+ "holded: holded",
+ "payment_review: payment_review",
+ "new: pending",
+ "pending_payment: pending_payment",
+ "processing: processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled",
+ "canceled"
+ ],
+ [
+ "closed",
+ "closed"
+ ],
+ [
+ "complete",
+ "complete"
+ ],
+ [
+ "holded",
+ "holded"
+ ],
+ [
+ "payment_review",
+ "payment_review"
+ ],
+ [
+ "new",
+ "pending"
+ ],
+ [
+ "pending_payment",
+ "pending_payment"
+ ],
+ [
+ "processing",
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for the review with status_id 1?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 1;",
+ "answer": [
+ "Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product description for product with entity_id 743.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 743 AND attribute_id = 75;",
+ "answer": [
+ "You'll love the new Viktor LumaTech\u2122 Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.",
+ "\u2022 Dark gray polyester/spandex straight leg pants.",
+ "\u2022 Elastic waistband and internal drawstring.",
+ "\u2022 Relaxed fit.",
+ "\u2022 Machine wash/dry."
+ ],
+ "sql_execute_result": [
+ [
+ "You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.
\n• Dark gray polyester/spandex straight leg pants.
• Elastic waistband and internal drawstring.
• Relaxed fit.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "List all store groups available.",
+ "sql": "SELECT name FROM store_group;",
+ "answer": [
+ "Default",
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ],
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with option_id 18?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 18;",
+ "answer": [
+ "Hiking"
+ ],
+ "sql_execute_result": [
+ [
+ "Hiking"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID associated with store group 'Main Website Store'?",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the maximum value set for the sales sequence profile with meta_id 8.",
+ "sql": "SELECT max_value FROM sales_sequence_profile WHERE meta_id = 8;",
+ "answer": [
+ "4294967295"
+ ],
+ "sql_execute_result": [
+ [
+ 4294967295
+ ]
+ ]
+ },
+ {
+ "question": "What is the value for the attribute option with value_id 146?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE value_id = 146;",
+ "answer": [
+ "HeatTec\u00ae"
+ ],
+ "sql_execute_result": [
+ [
+ "HeatTec®"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile_id 2 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 2;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the review status code for the status_id 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with ID 5?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 5;",
+ "answer": [
+ "15"
+ ],
+ "sql_execute_result": [
+ [
+ 15
+ ]
+ ]
+ },
+ {
+ "question": "What is the total sales amount for order with ID 284?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 284;",
+ "answer": [
+ "101.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "101.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for the product with ID 2040?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with entity_id 28?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 28;",
+ "answer": [
+ "137"
+ ],
+ "sql_execute_result": [
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of search results for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "List all the categories under the parent category with ID 22.",
+ "sql": "SELECT entity_id FROM catalog_category_entity WHERE parent_id = 22;",
+ "answer": [
+ "27",
+ "28"
+ ],
+ "sql_execute_result": [
+ [
+ 27
+ ],
+ [
+ 28
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order with ID 124?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 124;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with parent ID 225?",
+ "sql": "SELECT street, city, region, postcode FROM sales_order_address WHERE parent_id = 225 AND address_type = 'billing';",
+ "answer": [
+ "567 Ocean Drive",
+ "Miami",
+ "Florida",
+ "33139"
+ ],
+ "sql_execute_result": [
+ [
+ "567 Ocean Drive",
+ "Miami",
+ "Florida",
+ "33139"
+ ]
+ ]
+ },
+ {
+ "question": "Find the nickname of the customer who left a review titled 'Great for yoga'.",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Great for yoga';",
+ "answer": [
+ "Nyla"
+ ],
+ "sql_execute_result": [
+ [
+ "Nyla"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with billing postcode 77002?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE billing_postcode = '77002';",
+ "answer": [
+ "soccerfanatic22@gmail.com",
+ "anna.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "soccerfanatic22@gmail.com"
+ ],
+ [
+ "anna.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Check the stock quantity for the product with ID 1112.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1112;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping telephone number for the order with parent ID 107?",
+ "sql": "SELECT telephone FROM sales_order_address WHERE parent_id = 107 AND address_type = 'shipping';",
+ "answer": [
+ "2058812302"
+ ],
+ "sql_execute_result": [
+ [
+ "2058812302"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 258?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 258;",
+ "answer": [
+ "Fits my fiancee better"
+ ],
+ "sql_execute_result": [
+ [
+ "Fits my fiancee better"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer name associated with the email 'hannah.lim@gmail.com'.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'hannah.lim@gmail.com';",
+ "answer": [
+ "Hannah Lim"
+ ],
+ "sql_execute_result": [
+ [
+ "Hannah Lim"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region for the shipping address with entity ID 551?",
+ "sql": "SELECT region FROM sales_order_address WHERE entity_id = 551 AND address_type = 'shipping';",
+ "answer": [
+ "California"
+ ],
+ "sql_execute_result": [
+ [
+ "California"
+ ]
+ ]
+ },
+ {
+ "question": "How many product IDs are there for items in stock with quantity 0?",
+ "sql": "SELECT product_id FROM cataloginventory_stock_item WHERE qty = '0.0000';",
+ "answer": [
+ "150"
+ ],
+ "sql_execute_result": [
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 62
+ ],
+ [
+ 78
+ ],
+ [
+ 94
+ ],
+ [
+ 110
+ ],
+ [
+ 126
+ ],
+ [
+ 142
+ ],
+ [
+ 158
+ ],
+ [
+ 174
+ ],
+ [
+ 190
+ ],
+ [
+ 206
+ ],
+ [
+ 222
+ ],
+ [
+ 238
+ ],
+ [
+ 254
+ ],
+ [
+ 270
+ ],
+ [
+ 286
+ ],
+ [
+ 302
+ ],
+ [
+ 318
+ ],
+ [
+ 334
+ ],
+ [
+ 350
+ ],
+ [
+ 366
+ ],
+ [
+ 382
+ ],
+ [
+ 398
+ ],
+ [
+ 414
+ ],
+ [
+ 430
+ ],
+ [
+ 446
+ ],
+ [
+ 462
+ ],
+ [
+ 478
+ ],
+ [
+ 494
+ ],
+ [
+ 510
+ ],
+ [
+ 526
+ ],
+ [
+ 542
+ ],
+ [
+ 558
+ ],
+ [
+ 574
+ ],
+ [
+ 590
+ ],
+ [
+ 606
+ ],
+ [
+ 622
+ ],
+ [
+ 638
+ ],
+ [
+ 654
+ ],
+ [
+ 670
+ ],
+ [
+ 676
+ ],
+ [
+ 682
+ ],
+ [
+ 688
+ ],
+ [
+ 694
+ ],
+ [
+ 700
+ ],
+ [
+ 706
+ ],
+ [
+ 712
+ ],
+ [
+ 718
+ ],
+ [
+ 724
+ ],
+ [
+ 737
+ ],
+ [
+ 750
+ ],
+ [
+ 763
+ ],
+ [
+ 776
+ ],
+ [
+ 789
+ ],
+ [
+ 802
+ ],
+ [
+ 815
+ ],
+ [
+ 828
+ ],
+ [
+ 841
+ ],
+ [
+ 854
+ ],
+ [
+ 867
+ ],
+ [
+ 872
+ ],
+ [
+ 880
+ ],
+ [
+ 893
+ ],
+ [
+ 898
+ ],
+ [
+ 911
+ ],
+ [
+ 924
+ ],
+ [
+ 937
+ ],
+ [
+ 950
+ ],
+ [
+ 963
+ ],
+ [
+ 976
+ ],
+ [
+ 989
+ ],
+ [
+ 1002
+ ],
+ [
+ 1015
+ ],
+ [
+ 1028
+ ],
+ [
+ 1044
+ ],
+ [
+ 1060
+ ],
+ [
+ 1076
+ ],
+ [
+ 1092
+ ],
+ [
+ 1108
+ ],
+ [
+ 1114
+ ],
+ [
+ 1130
+ ],
+ [
+ 1146
+ ],
+ [
+ 1162
+ ],
+ [
+ 1178
+ ],
+ [
+ 1194
+ ],
+ [
+ 1210
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1380
+ ],
+ [
+ 1396
+ ],
+ [
+ 1412
+ ],
+ [
+ 1428
+ ],
+ [
+ 1444
+ ],
+ [
+ 1460
+ ],
+ [
+ 1476
+ ],
+ [
+ 1492
+ ],
+ [
+ 1508
+ ],
+ [
+ 1524
+ ],
+ [
+ 1540
+ ],
+ [
+ 1556
+ ],
+ [
+ 1572
+ ],
+ [
+ 1588
+ ],
+ [
+ 1604
+ ],
+ [
+ 1620
+ ],
+ [
+ 1636
+ ],
+ [
+ 1652
+ ],
+ [
+ 1668
+ ],
+ [
+ 1684
+ ],
+ [
+ 1700
+ ],
+ [
+ 1716
+ ],
+ [
+ 1732
+ ],
+ [
+ 1748
+ ],
+ [
+ 1764
+ ],
+ [
+ 1780
+ ],
+ [
+ 1796
+ ],
+ [
+ 1812
+ ],
+ [
+ 1819
+ ],
+ [
+ 1826
+ ],
+ [
+ 1833
+ ],
+ [
+ 1840
+ ],
+ [
+ 1847
+ ],
+ [
+ 1854
+ ],
+ [
+ 1861
+ ],
+ [
+ 1868
+ ],
+ [
+ 1875
+ ],
+ [
+ 1882
+ ],
+ [
+ 1889
+ ],
+ [
+ 1896
+ ],
+ [
+ 1903
+ ],
+ [
+ 1919
+ ],
+ [
+ 1935
+ ],
+ [
+ 1951
+ ],
+ [
+ 1967
+ ],
+ [
+ 1983
+ ],
+ [
+ 1990
+ ],
+ [
+ 1997
+ ],
+ [
+ 2003
+ ],
+ [
+ 2010
+ ],
+ [
+ 2017
+ ],
+ [
+ 2024
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Layla Tee-XS-Green'?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Layla Tee-XS-Green';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find all reviews for the product with ID 1252.",
+ "sql": "SELECT review_id, created_at, status_id FROM review WHERE entity_pk_value = 1252;",
+ "answer": [
+ "Review ID: 209, Created At: 2023-04-19 16:15:15, Status ID: 1",
+ "Review ID: 210, Created At: 2023-04-19 16:15:15, Status ID: 1",
+ "Review ID: 211, Created At: 2023-04-19 16:15:16, Status ID: 1"
+ ],
+ "sql_execute_result": [
+ [
+ 209,
+ "2023-04-19 16:15:15",
+ 1
+ ],
+ [
+ 210,
+ "2023-04-19 16:15:15",
+ 1
+ ],
+ [
+ 211,
+ "2023-04-19 16:15:16",
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity ordered for the product 'Didi Sport Watch'?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Didi Sport Watch';",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in category 30?",
+ "sql": "SELECT product_id, position FROM catalog_category_product WHERE category_id = 30;",
+ "answer": [
+ "224"
+ ],
+ "sql_execute_result": [
+ [
+ 1045,
+ -1
+ ],
+ [
+ 1046,
+ -2
+ ],
+ [
+ 1047,
+ -3
+ ],
+ [
+ 1048,
+ -4
+ ],
+ [
+ 1049,
+ -5
+ ],
+ [
+ 1050,
+ -6
+ ],
+ [
+ 1051,
+ -7
+ ],
+ [
+ 1052,
+ -8
+ ],
+ [
+ 1053,
+ -9
+ ],
+ [
+ 1054,
+ -10
+ ],
+ [
+ 1055,
+ -11
+ ],
+ [
+ 1056,
+ -12
+ ],
+ [
+ 1057,
+ -13
+ ],
+ [
+ 1058,
+ -14
+ ],
+ [
+ 1059,
+ -15
+ ],
+ [
+ 1060,
+ -16
+ ],
+ [
+ 1131,
+ -17
+ ],
+ [
+ 1132,
+ -18
+ ],
+ [
+ 1133,
+ -19
+ ],
+ [
+ 1134,
+ -20
+ ],
+ [
+ 1135,
+ -21
+ ],
+ [
+ 1136,
+ -22
+ ],
+ [
+ 1137,
+ -23
+ ],
+ [
+ 1138,
+ -24
+ ],
+ [
+ 1139,
+ -25
+ ],
+ [
+ 1140,
+ -26
+ ],
+ [
+ 1141,
+ -27
+ ],
+ [
+ 1142,
+ -28
+ ],
+ [
+ 1143,
+ -29
+ ],
+ [
+ 1144,
+ -30
+ ],
+ [
+ 1145,
+ -31
+ ],
+ [
+ 1146,
+ -32
+ ],
+ [
+ 1221,
+ -33
+ ],
+ [
+ 1222,
+ -34
+ ],
+ [
+ 1223,
+ -35
+ ],
+ [
+ 1224,
+ -36
+ ],
+ [
+ 1225,
+ -37
+ ],
+ [
+ 1226,
+ -38
+ ],
+ [
+ 1227,
+ -39
+ ],
+ [
+ 1228,
+ -40
+ ],
+ [
+ 1229,
+ -41
+ ],
+ [
+ 1230,
+ -42
+ ],
+ [
+ 1231,
+ -43
+ ],
+ [
+ 1232,
+ -44
+ ],
+ [
+ 1233,
+ -45
+ ],
+ [
+ 1234,
+ -46
+ ],
+ [
+ 1235,
+ -47
+ ],
+ [
+ 1236,
+ -48
+ ],
+ [
+ 1301,
+ -49
+ ],
+ [
+ 1302,
+ -50
+ ],
+ [
+ 1303,
+ -51
+ ],
+ [
+ 1304,
+ -52
+ ],
+ [
+ 1305,
+ -53
+ ],
+ [
+ 1306,
+ -54
+ ],
+ [
+ 1307,
+ -55
+ ],
+ [
+ 1308,
+ -56
+ ],
+ [
+ 1309,
+ -57
+ ],
+ [
+ 1310,
+ -58
+ ],
+ [
+ 1311,
+ -59
+ ],
+ [
+ 1312,
+ -60
+ ],
+ [
+ 1313,
+ -61
+ ],
+ [
+ 1314,
+ -62
+ ],
+ [
+ 1315,
+ -63
+ ],
+ [
+ 1316,
+ -64
+ ],
+ [
+ 1365,
+ -65
+ ],
+ [
+ 1366,
+ -66
+ ],
+ [
+ 1367,
+ -67
+ ],
+ [
+ 1368,
+ -68
+ ],
+ [
+ 1369,
+ -69
+ ],
+ [
+ 1370,
+ -70
+ ],
+ [
+ 1371,
+ -71
+ ],
+ [
+ 1372,
+ -72
+ ],
+ [
+ 1373,
+ -73
+ ],
+ [
+ 1374,
+ -74
+ ],
+ [
+ 1375,
+ -75
+ ],
+ [
+ 1376,
+ -76
+ ],
+ [
+ 1377,
+ -77
+ ],
+ [
+ 1378,
+ -78
+ ],
+ [
+ 1379,
+ -79
+ ],
+ [
+ 1380,
+ -80
+ ],
+ [
+ 1381,
+ -81
+ ],
+ [
+ 1382,
+ -82
+ ],
+ [
+ 1383,
+ -83
+ ],
+ [
+ 1384,
+ -84
+ ],
+ [
+ 1385,
+ -85
+ ],
+ [
+ 1386,
+ -86
+ ],
+ [
+ 1387,
+ -87
+ ],
+ [
+ 1388,
+ -88
+ ],
+ [
+ 1389,
+ -89
+ ],
+ [
+ 1390,
+ -90
+ ],
+ [
+ 1391,
+ -91
+ ],
+ [
+ 1392,
+ -92
+ ],
+ [
+ 1393,
+ -93
+ ],
+ [
+ 1394,
+ -94
+ ],
+ [
+ 1395,
+ -95
+ ],
+ [
+ 1396,
+ -96
+ ],
+ [
+ 1477,
+ -97
+ ],
+ [
+ 1478,
+ -98
+ ],
+ [
+ 1479,
+ -99
+ ],
+ [
+ 1480,
+ -100
+ ],
+ [
+ 1481,
+ -101
+ ],
+ [
+ 1482,
+ -102
+ ],
+ [
+ 1483,
+ -103
+ ],
+ [
+ 1484,
+ -104
+ ],
+ [
+ 1485,
+ -105
+ ],
+ [
+ 1486,
+ -106
+ ],
+ [
+ 1487,
+ -107
+ ],
+ [
+ 1488,
+ -108
+ ],
+ [
+ 1489,
+ -109
+ ],
+ [
+ 1490,
+ -110
+ ],
+ [
+ 1491,
+ -111
+ ],
+ [
+ 1492,
+ -112
+ ],
+ [
+ 1493,
+ -113
+ ],
+ [
+ 1494,
+ -114
+ ],
+ [
+ 1495,
+ -115
+ ],
+ [
+ 1496,
+ -116
+ ],
+ [
+ 1497,
+ -117
+ ],
+ [
+ 1498,
+ -118
+ ],
+ [
+ 1499,
+ -119
+ ],
+ [
+ 1500,
+ -120
+ ],
+ [
+ 1501,
+ -121
+ ],
+ [
+ 1502,
+ -122
+ ],
+ [
+ 1503,
+ -123
+ ],
+ [
+ 1504,
+ -124
+ ],
+ [
+ 1505,
+ -125
+ ],
+ [
+ 1506,
+ -126
+ ],
+ [
+ 1507,
+ -127
+ ],
+ [
+ 1508,
+ -128
+ ],
+ [
+ 1525,
+ -129
+ ],
+ [
+ 1526,
+ -130
+ ],
+ [
+ 1527,
+ -131
+ ],
+ [
+ 1528,
+ -132
+ ],
+ [
+ 1529,
+ -133
+ ],
+ [
+ 1530,
+ -134
+ ],
+ [
+ 1531,
+ -135
+ ],
+ [
+ 1532,
+ -136
+ ],
+ [
+ 1533,
+ -137
+ ],
+ [
+ 1534,
+ -138
+ ],
+ [
+ 1535,
+ -139
+ ],
+ [
+ 1536,
+ -140
+ ],
+ [
+ 1537,
+ -141
+ ],
+ [
+ 1538,
+ -142
+ ],
+ [
+ 1539,
+ -143
+ ],
+ [
+ 1540,
+ -144
+ ],
+ [
+ 1589,
+ -145
+ ],
+ [
+ 1590,
+ -146
+ ],
+ [
+ 1591,
+ -147
+ ],
+ [
+ 1592,
+ -148
+ ],
+ [
+ 1593,
+ -149
+ ],
+ [
+ 1594,
+ -150
+ ],
+ [
+ 1595,
+ -151
+ ],
+ [
+ 1596,
+ -152
+ ],
+ [
+ 1597,
+ -153
+ ],
+ [
+ 1598,
+ -154
+ ],
+ [
+ 1599,
+ -155
+ ],
+ [
+ 1600,
+ -156
+ ],
+ [
+ 1601,
+ -157
+ ],
+ [
+ 1602,
+ -158
+ ],
+ [
+ 1603,
+ -159
+ ],
+ [
+ 1604,
+ -160
+ ],
+ [
+ 1781,
+ -161
+ ],
+ [
+ 1782,
+ -162
+ ],
+ [
+ 1783,
+ -163
+ ],
+ [
+ 1784,
+ -164
+ ],
+ [
+ 1785,
+ -165
+ ],
+ [
+ 1786,
+ -166
+ ],
+ [
+ 1787,
+ -167
+ ],
+ [
+ 1788,
+ -168
+ ],
+ [
+ 1789,
+ -169
+ ],
+ [
+ 1790,
+ -170
+ ],
+ [
+ 1791,
+ -171
+ ],
+ [
+ 1792,
+ -172
+ ],
+ [
+ 1793,
+ -173
+ ],
+ [
+ 1794,
+ -174
+ ],
+ [
+ 1795,
+ -175
+ ],
+ [
+ 1796,
+ -176
+ ],
+ [
+ 1797,
+ -177
+ ],
+ [
+ 1798,
+ -178
+ ],
+ [
+ 1799,
+ -179
+ ],
+ [
+ 1800,
+ -180
+ ],
+ [
+ 1801,
+ -181
+ ],
+ [
+ 1802,
+ -182
+ ],
+ [
+ 1803,
+ -183
+ ],
+ [
+ 1804,
+ -184
+ ],
+ [
+ 1805,
+ -185
+ ],
+ [
+ 1806,
+ -186
+ ],
+ [
+ 1807,
+ -187
+ ],
+ [
+ 1808,
+ -188
+ ],
+ [
+ 1809,
+ -189
+ ],
+ [
+ 1810,
+ -190
+ ],
+ [
+ 1811,
+ -191
+ ],
+ [
+ 1812,
+ -192
+ ],
+ [
+ 1920,
+ -193
+ ],
+ [
+ 1921,
+ -194
+ ],
+ [
+ 1922,
+ -195
+ ],
+ [
+ 1923,
+ -196
+ ],
+ [
+ 1924,
+ -197
+ ],
+ [
+ 1925,
+ -198
+ ],
+ [
+ 1926,
+ -199
+ ],
+ [
+ 1927,
+ -200
+ ],
+ [
+ 1928,
+ -201
+ ],
+ [
+ 1929,
+ -202
+ ],
+ [
+ 1930,
+ -203
+ ],
+ [
+ 1931,
+ -204
+ ],
+ [
+ 1932,
+ -205
+ ],
+ [
+ 1933,
+ -206
+ ],
+ [
+ 1934,
+ -207
+ ],
+ [
+ 1935,
+ -208
+ ],
+ [
+ 1968,
+ -209
+ ],
+ [
+ 1969,
+ -210
+ ],
+ [
+ 1970,
+ -211
+ ],
+ [
+ 1971,
+ -212
+ ],
+ [
+ 1972,
+ -213
+ ],
+ [
+ 1973,
+ -214
+ ],
+ [
+ 1974,
+ -215
+ ],
+ [
+ 1975,
+ -216
+ ],
+ [
+ 1976,
+ -217
+ ],
+ [
+ 1977,
+ -218
+ ],
+ [
+ 1978,
+ -219
+ ],
+ [
+ 1979,
+ -220
+ ],
+ [
+ 1980,
+ -221
+ ],
+ [
+ 1981,
+ -222
+ ],
+ [
+ 1982,
+ -223
+ ],
+ [
+ 1983,
+ -224
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend input renderer for the attribute with ID 82?",
+ "sql": "SELECT frontend_input_renderer FROM catalog_eav_attribute WHERE attribute_id = 82;",
+ "answer": [
+ "Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store where the product 'Ryker LumaTech\u2122 Tee (V-neck)-M-Gray' was ordered.",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Ryker LumaTech™ Tee (V-neck)-M-Gray';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for 'Augusta Pullover Jacket-S-Blue' in the yearly bestseller list?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Augusta Pullover Jacket-S-Blue';",
+ "answer": [
+ "33",
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ 33
+ ],
+ [
+ 100
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 111 used in product listing?",
+ "sql": "SELECT used_in_product_listing FROM catalog_eav_attribute WHERE attribute_id = 111;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 516?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 516;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews with the title 'Pic is WAY different then the real thing'.",
+ "sql": "SELECT review_id FROM review_detail WHERE title = 'Pic is WAY different then the real thing';",
+ "answer": [
+ "313"
+ ],
+ "sql_execute_result": [
+ [
+ 313
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with product ID 1354 listed as a bestseller in the Main Website.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE product_id = 1354 AND store_id = 1;",
+ "answer": [
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Neve Studio Dance Jacket-S-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the review with ID 254?",
+ "sql": "SELECT value FROM rating_option_vote WHERE review_id = 254;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have a sequence value less than 20?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 WHERE sequence_value < 20;",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for shipment with increment ID '000000003'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store website has the code 'admin'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'admin';",
+ "answer": [
+ "Admin"
+ ],
+ "sql_execute_result": [
+ [
+ "Admin"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 95 used for sorting products?",
+ "sql": "SELECT used_for_sort_by FROM catalog_eav_attribute WHERE attribute_id = 95;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Which shipment was created first based on the creation date?",
+ "sql": "SELECT increment_id FROM sales_shipment ORDER BY created_at ASC LIMIT 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "What is the global setting for the attribute with ID 78?",
+ "sql": "SELECT is_global FROM catalog_eav_attribute WHERE attribute_id = 78;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the percent rating for the product with entity_pk_value 1076.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE entity_pk_value = 1076;",
+ "answer": [
+ "80",
+ "60",
+ "40"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ],
+ [
+ 60
+ ],
+ [
+ 40
+ ]
+ ]
+ },
+ {
+ "question": "How many votes have a value of 80 percent?",
+ "sql": "SELECT COUNT(*) FROM rating_option_vote WHERE percent = 80;",
+ "answer": [
+ "109"
+ ],
+ "sql_execute_result": [
+ [
+ 109
+ ]
+ ]
+ },
+ {
+ "question": "Which shipment has the customer ID 18?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE customer_id = 18;",
+ "answer": [
+ "000000003"
+ ],
+ "sql_execute_result": [
+ [
+ "000000003"
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with ID 14?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method_title FROM sales_order_payment WHERE entity_id = 14;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region name for the region code '50' in France.",
+ "sql": "SELECT default_name FROM directory_country_region WHERE country_id = 'FR' AND code = '50';",
+ "answer": [
+ "Manche"
+ ],
+ "sql_execute_result": [
+ [
+ "Manche"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the order total amount for the payment record with ID 5?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 5;",
+ "answer": [
+ "137.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "137.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name associated with the order item ID 2.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE order_item_id = 2;",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the 'Iris Workout Top'?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value of the shipment record with the lowest ID?",
+ "sql": "SELECT MIN(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the country code for the region 'Kr\u0101slavas novads'.",
+ "sql": "SELECT country_id FROM directory_country_region WHERE default_name = 'Kr\u0101slavas novads';",
+ "answer": [
+ "LV"
+ ],
+ "sql_execute_result": [
+ [
+ "LV"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute with code 'display_mode'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'display_mode';",
+ "answer": [
+ "Display Mode"
+ ],
+ "sql_execute_result": [
+ [
+ "Display Mode"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method used by Matt Baker for his order with ID '000000138'.",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE increment_id = '000000138';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer email associated with the order ID '000000173'?",
+ "sql": "SELECT customer_email FROM sales_order_grid WHERE increment_id = '000000173';",
+ "answer": [
+ "alex.martin@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "alex.martin@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many best-selling products were found for February 2023?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-02-01';",
+ "answer": [
+ "32"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Taurus Elements Shell-XS-White"
+ ],
+ [
+ "Tristan Endurance Tank-M-Gray"
+ ],
+ [
+ "Arcadio Gym Short-33-Blue"
+ ],
+ [
+ "Helena Hooded Fleece-XL-Blue"
+ ],
+ [
+ "Circe Hooded Ice Fleece-M-Green"
+ ],
+ [
+ "Ingrid Running Jacket-XS-Red"
+ ],
+ [
+ "Riona Full Zip Jacket-XS-Red"
+ ],
+ [
+ "Layla Tee-XS-Green"
+ ],
+ [
+ "Juliana Short-Sleeve Tee-XL-Black"
+ ],
+ [
+ "Gwyn Endurance Tee-L-Yellow"
+ ],
+ [
+ "Erica Evercool Sports Bra-XS-Yellow"
+ ],
+ [
+ "Zoe Tank-XL-Yellow"
+ ],
+ [
+ "Cora Parachute Pant-28-White"
+ ],
+ [
+ "Echo Fit Compression Short-28-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total grand total of Lily Potter's completed order.",
+ "sql": "SELECT grand_total FROM sales_order_grid WHERE increment_id = '000000021';",
+ "answer": [
+ "210.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "210.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name where Sophie Taylor made her order?",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE increment_id = '000000269';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the option with ID 60?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 60;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Angel Light Running Short-29-Purple'.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_monthly WHERE product_name = 'Angel Light Running Short-29-Purple';",
+ "answer": [
+ "42.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table for the 'creditmemo' entity type in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo' AND store_id = 1;",
+ "answer": [
+ "sequence_creditmemo_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_creditmemo_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find the frontend input type for the attribute with code 'custom_use_parent_settings'.",
+ "sql": "SELECT frontend_input FROM eav_attribute WHERE attribute_code = 'custom_use_parent_settings';",
+ "answer": [
+ "select"
+ ],
+ "sql_execute_result": [
+ [
+ "select"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity for the order with ID 2?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE order_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the reviewer who left a review with the title 'Perfect layer for the game'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'Perfect layer for the game';",
+ "answer": [
+ "Mike"
+ ],
+ "sql_execute_result": [
+ [
+ "Mike"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used by customer 'Veronica Costello' for the order with increment ID '000000002'?",
+ "sql": "SELECT payment_method FROM sales_creditmemo_grid WHERE order_increment_id = '000000002' AND customer_name = 'Veronica Costello';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for invoice with increment ID '000000001'.",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000001';",
+ "answer": [
+ "36.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "36.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Is the rating code 'Quality' active?",
+ "sql": "SELECT is_active FROM rating WHERE rating_code = 'Quality';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the review detail for the review with ID 313?",
+ "sql": "SELECT detail FROM review_detail WHERE review_id = 313;",
+ "answer": [
+ "Pic is WAY different then the real thing! My mom wouldn't even wear these there so ugly! Can I give a 0 rating?"
+ ],
+ "sql_execute_result": [
+ [
+ "Pic is WAY different then the real thing! My mom wouldn't even wear these there so ugly! Can I give a 0 rating?"
+ ]
+ ]
+ },
+ {
+ "question": "How many results are in the search query with ID 23?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 WHERE sequence_value = 23;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the invoice with entity ID 2?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Find the customer email for the credit memo with increment ID '000000001'.",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with detail ID 6?",
+ "sql": "SELECT title FROM review_detail WHERE detail_id = 6;",
+ "answer": [
+ "Awesome bag"
+ ],
+ "sql_execute_result": [
+ [
+ "Awesome bag"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product 'Tristan Endurance Tank-S-Red' in the year 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Tristan Endurance Tank-S-Red' AND period = '2022-01-01';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the payment method used for the order with ID 38.",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS method FROM sales_order_payment WHERE entity_id = 38;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer 'Veronica Costello'?",
+ "sql": "SELECT customer_email FROM sales_creditmemo_grid WHERE customer_name = 'Veronica Costello';",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews for the product with ID 676.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 676;",
+ "answer": [
+ "133",
+ "134",
+ "135",
+ "136"
+ ],
+ "sql_execute_result": [
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ]
+ ]
+ },
+ {
+ "question": "Which customer group has the ID 1?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 1;",
+ "answer": [
+ "General"
+ ],
+ "sql_execute_result": [
+ [
+ "General"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the credit memo with ID 1?",
+ "sql": "SELECT billing_name FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base amount ordered for the payment with ID 272?",
+ "sql": "SELECT base_amount_ordered FROM sales_order_payment WHERE entity_id = 272;",
+ "answer": [
+ "82.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "82.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating position for the product 'Inez Full Zip Jacket-XS-Red' in the year 2022.",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Inez Full Zip Jacket-XS-Red' AND period = '2022-01-01';",
+ "answer": [
+ "215",
+ "197"
+ ],
+ "sql_execute_result": [
+ [
+ 215
+ ],
+ [
+ 197
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the shipping information for the credit memo with order ID 2.",
+ "sql": "SELECT shipping_information FROM sales_creditmemo_grid WHERE order_id = 2;",
+ "answer": [
+ "Flat Rate - Fixed"
+ ],
+ "sql_execute_result": [
+ [
+ "Flat Rate - Fixed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for the group with tax class ID 3 and group ID 0?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 0 AND tax_class_id = 3;",
+ "answer": [
+ "NOT LOGGED IN"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default shipping address attribute code?",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 16;",
+ "answer": [
+ "default_shipping"
+ ],
+ "sql_execute_result": [
+ [
+ "default_shipping"
+ ]
+ ]
+ },
+ {
+ "question": "How many countries are available in the directory?",
+ "sql": "SELECT country_id FROM directory_country;",
+ "answer": [
+ "249"
+ ],
+ "sql_execute_result": [
+ [
+ "AD"
+ ],
+ [
+ "AE"
+ ],
+ [
+ "AF"
+ ],
+ [
+ "AG"
+ ],
+ [
+ "AI"
+ ],
+ [
+ "AL"
+ ],
+ [
+ "AM"
+ ],
+ [
+ "AN"
+ ],
+ [
+ "AO"
+ ],
+ [
+ "AQ"
+ ],
+ [
+ "AR"
+ ],
+ [
+ "AS"
+ ],
+ [
+ "AT"
+ ],
+ [
+ "AU"
+ ],
+ [
+ "AW"
+ ],
+ [
+ "AX"
+ ],
+ [
+ "AZ"
+ ],
+ [
+ "BA"
+ ],
+ [
+ "BB"
+ ],
+ [
+ "BD"
+ ],
+ [
+ "BE"
+ ],
+ [
+ "BF"
+ ],
+ [
+ "BG"
+ ],
+ [
+ "BH"
+ ],
+ [
+ "BI"
+ ],
+ [
+ "BJ"
+ ],
+ [
+ "BL"
+ ],
+ [
+ "BM"
+ ],
+ [
+ "BN"
+ ],
+ [
+ "BO"
+ ],
+ [
+ "BQ"
+ ],
+ [
+ "BR"
+ ],
+ [
+ "BS"
+ ],
+ [
+ "BT"
+ ],
+ [
+ "BV"
+ ],
+ [
+ "BW"
+ ],
+ [
+ "BY"
+ ],
+ [
+ "BZ"
+ ],
+ [
+ "CA"
+ ],
+ [
+ "CC"
+ ],
+ [
+ "CD"
+ ],
+ [
+ "CF"
+ ],
+ [
+ "CG"
+ ],
+ [
+ "CH"
+ ],
+ [
+ "CI"
+ ],
+ [
+ "CK"
+ ],
+ [
+ "CL"
+ ],
+ [
+ "CM"
+ ],
+ [
+ "CN"
+ ],
+ [
+ "CO"
+ ],
+ [
+ "CR"
+ ],
+ [
+ "CU"
+ ],
+ [
+ "CV"
+ ],
+ [
+ "CW"
+ ],
+ [
+ "CX"
+ ],
+ [
+ "CY"
+ ],
+ [
+ "CZ"
+ ],
+ [
+ "DE"
+ ],
+ [
+ "DJ"
+ ],
+ [
+ "DK"
+ ],
+ [
+ "DM"
+ ],
+ [
+ "DO"
+ ],
+ [
+ "DZ"
+ ],
+ [
+ "EC"
+ ],
+ [
+ "EE"
+ ],
+ [
+ "EG"
+ ],
+ [
+ "EH"
+ ],
+ [
+ "ER"
+ ],
+ [
+ "ES"
+ ],
+ [
+ "ET"
+ ],
+ [
+ "FI"
+ ],
+ [
+ "FJ"
+ ],
+ [
+ "FK"
+ ],
+ [
+ "FM"
+ ],
+ [
+ "FO"
+ ],
+ [
+ "FR"
+ ],
+ [
+ "GA"
+ ],
+ [
+ "GB"
+ ],
+ [
+ "GD"
+ ],
+ [
+ "GE"
+ ],
+ [
+ "GF"
+ ],
+ [
+ "GG"
+ ],
+ [
+ "GH"
+ ],
+ [
+ "GI"
+ ],
+ [
+ "GL"
+ ],
+ [
+ "GM"
+ ],
+ [
+ "GN"
+ ],
+ [
+ "GP"
+ ],
+ [
+ "GQ"
+ ],
+ [
+ "GR"
+ ],
+ [
+ "GS"
+ ],
+ [
+ "GT"
+ ],
+ [
+ "GU"
+ ],
+ [
+ "GW"
+ ],
+ [
+ "GY"
+ ],
+ [
+ "HK"
+ ],
+ [
+ "HM"
+ ],
+ [
+ "HN"
+ ],
+ [
+ "HR"
+ ],
+ [
+ "HT"
+ ],
+ [
+ "HU"
+ ],
+ [
+ "ID"
+ ],
+ [
+ "IE"
+ ],
+ [
+ "IL"
+ ],
+ [
+ "IM"
+ ],
+ [
+ "IN"
+ ],
+ [
+ "IO"
+ ],
+ [
+ "IQ"
+ ],
+ [
+ "IR"
+ ],
+ [
+ "IS"
+ ],
+ [
+ "IT"
+ ],
+ [
+ "JE"
+ ],
+ [
+ "JM"
+ ],
+ [
+ "JO"
+ ],
+ [
+ "JP"
+ ],
+ [
+ "KE"
+ ],
+ [
+ "KG"
+ ],
+ [
+ "KH"
+ ],
+ [
+ "KI"
+ ],
+ [
+ "KM"
+ ],
+ [
+ "KN"
+ ],
+ [
+ "KP"
+ ],
+ [
+ "KR"
+ ],
+ [
+ "KW"
+ ],
+ [
+ "KY"
+ ],
+ [
+ "KZ"
+ ],
+ [
+ "LA"
+ ],
+ [
+ "LB"
+ ],
+ [
+ "LC"
+ ],
+ [
+ "LI"
+ ],
+ [
+ "LK"
+ ],
+ [
+ "LR"
+ ],
+ [
+ "LS"
+ ],
+ [
+ "LT"
+ ],
+ [
+ "LU"
+ ],
+ [
+ "LV"
+ ],
+ [
+ "LY"
+ ],
+ [
+ "MA"
+ ],
+ [
+ "MC"
+ ],
+ [
+ "MD"
+ ],
+ [
+ "ME"
+ ],
+ [
+ "MF"
+ ],
+ [
+ "MG"
+ ],
+ [
+ "MH"
+ ],
+ [
+ "MK"
+ ],
+ [
+ "ML"
+ ],
+ [
+ "MM"
+ ],
+ [
+ "MN"
+ ],
+ [
+ "MO"
+ ],
+ [
+ "MP"
+ ],
+ [
+ "MQ"
+ ],
+ [
+ "MR"
+ ],
+ [
+ "MS"
+ ],
+ [
+ "MT"
+ ],
+ [
+ "MU"
+ ],
+ [
+ "MV"
+ ],
+ [
+ "MW"
+ ],
+ [
+ "MX"
+ ],
+ [
+ "MY"
+ ],
+ [
+ "MZ"
+ ],
+ [
+ "NA"
+ ],
+ [
+ "NC"
+ ],
+ [
+ "NE"
+ ],
+ [
+ "NF"
+ ],
+ [
+ "NG"
+ ],
+ [
+ "NI"
+ ],
+ [
+ "NL"
+ ],
+ [
+ "NO"
+ ],
+ [
+ "NP"
+ ],
+ [
+ "NR"
+ ],
+ [
+ "NU"
+ ],
+ [
+ "NZ"
+ ],
+ [
+ "OM"
+ ],
+ [
+ "PA"
+ ],
+ [
+ "PE"
+ ],
+ [
+ "PF"
+ ],
+ [
+ "PG"
+ ],
+ [
+ "PH"
+ ],
+ [
+ "PK"
+ ],
+ [
+ "PL"
+ ],
+ [
+ "PM"
+ ],
+ [
+ "PN"
+ ],
+ [
+ "PS"
+ ],
+ [
+ "PT"
+ ],
+ [
+ "PW"
+ ],
+ [
+ "PY"
+ ],
+ [
+ "QA"
+ ],
+ [
+ "RE"
+ ],
+ [
+ "RO"
+ ],
+ [
+ "RS"
+ ],
+ [
+ "RU"
+ ],
+ [
+ "RW"
+ ],
+ [
+ "SA"
+ ],
+ [
+ "SB"
+ ],
+ [
+ "SC"
+ ],
+ [
+ "SD"
+ ],
+ [
+ "SE"
+ ],
+ [
+ "SG"
+ ],
+ [
+ "SH"
+ ],
+ [
+ "SI"
+ ],
+ [
+ "SJ"
+ ],
+ [
+ "SK"
+ ],
+ [
+ "SL"
+ ],
+ [
+ "SM"
+ ],
+ [
+ "SN"
+ ],
+ [
+ "SO"
+ ],
+ [
+ "SR"
+ ],
+ [
+ "ST"
+ ],
+ [
+ "SV"
+ ],
+ [
+ "SX"
+ ],
+ [
+ "SY"
+ ],
+ [
+ "SZ"
+ ],
+ [
+ "TC"
+ ],
+ [
+ "TD"
+ ],
+ [
+ "TF"
+ ],
+ [
+ "TG"
+ ],
+ [
+ "TH"
+ ],
+ [
+ "TJ"
+ ],
+ [
+ "TK"
+ ],
+ [
+ "TL"
+ ],
+ [
+ "TM"
+ ],
+ [
+ "TN"
+ ],
+ [
+ "TO"
+ ],
+ [
+ "TR"
+ ],
+ [
+ "TT"
+ ],
+ [
+ "TV"
+ ],
+ [
+ "TW"
+ ],
+ [
+ "TZ"
+ ],
+ [
+ "UA"
+ ],
+ [
+ "UG"
+ ],
+ [
+ "UM"
+ ],
+ [
+ "US"
+ ],
+ [
+ "UY"
+ ],
+ [
+ "UZ"
+ ],
+ [
+ "VA"
+ ],
+ [
+ "VC"
+ ],
+ [
+ "VE"
+ ],
+ [
+ "VG"
+ ],
+ [
+ "VI"
+ ],
+ [
+ "VN"
+ ],
+ [
+ "VU"
+ ],
+ [
+ "WF"
+ ],
+ [
+ "WS"
+ ],
+ [
+ "XK"
+ ],
+ [
+ "YE"
+ ],
+ [
+ "YT"
+ ],
+ [
+ "ZA"
+ ],
+ [
+ "ZM"
+ ],
+ [
+ "ZW"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status for reviews associated with product ID 911.",
+ "sql": "SELECT status_id FROM review WHERE entity_pk_value = 911;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the percent value of the vote with ID 324.",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 324;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "Find all states that are visible on the front.",
+ "sql": "SELECT state FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "payment_review",
+ "processing",
+ "holded",
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "new"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute code 'cost'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'cost';",
+ "answer": [
+ "Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the ISO3 code for the country with ISO2 code 'IN'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'IN';",
+ "answer": [
+ "IND"
+ ],
+ "sql_execute_result": [
+ [
+ "IND"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation date of the review with ID 217.",
+ "sql": "SELECT created_at FROM review WHERE review_id = 217;",
+ "answer": [
+ "2023-04-19 16:15:16"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:16"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating value for the vote related to product ID 318?",
+ "sql": "SELECT value FROM rating_option_vote WHERE entity_pk_value = 318;",
+ "answer": [
+ "2",
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Identify the attribute ID for 'Allow Gift Message'.",
+ "sql": "SELECT attribute_id FROM eav_attribute WHERE frontend_label = 'Allow Gift Message';",
+ "answer": [
+ "134"
+ ],
+ "sql_execute_result": [
+ [
+ 134
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product with SKU 'WH11-S-Blue'.",
+ "sql": "SELECT price FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered on February 7, 2023, for store ID 0?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE store_id = 0 AND period = '2023-02-07';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the SKUs for products in the shipment with parent ID 3.",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "MSH09-36-Black",
+ "WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with store ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders with status 'complete' on October 22, 2022, for store ID 0.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE store_id = 0 AND period = '2022-10-22' AND order_status = 'complete';",
+ "answer": [
+ "123.8000"
+ ],
+ "sql_execute_result": [
+ [
+ "123.8000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the SKU for the product with entity ID 2025.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2025;",
+ "answer": [
+ "WSH12-28-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12-28-Green"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on June 28, 2022, for store ID 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE store_id = 1 AND period = '2022-06-28' AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the weight of the product with order item ID 1575.",
+ "sql": "SELECT weight FROM sales_shipment_item WHERE order_item_id = 1575;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing contact of order with parent ID 125?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 125 AND address_type = 'billing';",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the title of the CMS page with the identifier 'about-us'.",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'about-us';",
+ "answer": [
+ "About us"
+ ],
+ "sql_execute_result": [
+ [
+ "About us"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 638?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 638;",
+ "answer": [
+ "Santa Cruz"
+ ],
+ "sql_execute_result": [
+ [
+ "Santa Cruz"
+ ]
+ ]
+ },
+ {
+ "question": "What is the amount ordered in the sales order payment with entity ID 175?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE entity_id = 175;",
+ "answer": [
+ "205.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "205.6400"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been generated in sequence_order_1 table?",
+ "sql": "SELECT COUNT(*) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the postal code for the shipping address with entity ID 29?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE entity_id = 29 AND address_type = 'shipping';",
+ "answer": [
+ "94602"
+ ],
+ "sql_execute_result": [
+ [
+ "94602"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 34?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 34;",
+ "answer": [
+ "Minnesota"
+ ],
+ "sql_execute_result": [
+ [
+ "Minnesota"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page with title 'Privacy Policy' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the order payment with parent ID 53.",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE parent_id = 53;",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the CMS page with page ID 6?",
+ "sql": "SELECT content_heading FROM cms_page WHERE page_id = 6;",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 2040?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "WSH12"
+ ],
+ "sql_execute_result": [
+ [
+ "WSH12"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for product ID 2025?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2025;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'Erikssen CoolTech\u2122 Fitness Tank-XS-Gray' in March 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_monthly WHERE product_id = 623 AND period = '2022-03-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name with the highest rating position for March 2023 in store ID 1.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_monthly WHERE period = '2023-03-01' AND store_id = 1 ORDER BY rating_pos ASC LIMIT 1;",
+ "answer": [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Stasis Ball 65 cm"
+ ]
+ ]
+ },
+ {
+ "question": "What is the most popular search query in store with ID 1?",
+ "sql": "SELECT query_text FROM search_query WHERE store_id = 1 ORDER BY popularity DESC LIMIT 1;",
+ "answer": [
+ "hollister"
+ ],
+ "sql_execute_result": [
+ [
+ "hollister"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with SKU 'Erikssen CoolTech™ Fitness Tank-XS-Gray' in stock?",
+ "sql": "SELECT IF(is_in_stock = 1, 'Yes', 'No') FROM cataloginventory_stock_item WHERE product_id = 623 AND stock_id = 1;",
+ "answer": [
+ "Yes"
+ ],
+ "sql_execute_result": [
+ [
+ "Yes"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price of the product with entity_id 1373?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1373 AND attribute_id = 77 AND store_id = 0;",
+ "answer": [
+ "77.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "77.000000"
+ ]
+ ]
+ },
+ {
+ "question": "How many times has the search query 'nike' been used in store with ID 1?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike' AND store_id = 1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many child categories does the category with entity_id 5 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 5;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of the product with entity_id 2040?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE entity_id = 2040;",
+ "answer": [
+ "configurable"
+ ],
+ "sql_execute_result": [
+ [
+ "configurable"
+ ]
+ ]
+ },
+ {
+ "question": "Which customer email is associated with customer_id 5?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 5;",
+ "answer": [
+ "helloworld@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "helloworld@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product_id 968?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 968;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many times was the 'Joust Bag' searched in store with ID 1?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'Joust Bag' AND store_id = 1;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "What is the current status of the order with parent ID 300?",
+ "sql": "SELECT status FROM sales_order WHERE entity_id = 300;",
+ "answer": [
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description of the product with ID 1050.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1050 AND attribute_id = 75;",
+ "answer": [
+ "Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.
\n• Teal with purple stiching.
• Hoodie pullover.
• Snug fit.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.
\n• Teal with purple stiching.
• Hoodie pullover.
• Snug fit.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the latest order?",
+ "sql": "SELECT sequence_value FROM sequence_order_1 ORDER BY sequence_value DESC LIMIT 1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for the order with parent ID 253?",
+ "sql": "SELECT street, city, region, postcode FROM sales_order_address WHERE parent_id = 253 AND address_type = 'shipping';",
+ "answer": [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602"
+ ],
+ "sql_execute_result": [
+ [
+ "321 Maple Avenue",
+ "Oakland",
+ "California",
+ "94602"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product named 'Eos V-Neck Hoodie'?",
+ "sql": "SELECT price FROM sales_shipment_item WHERE name = 'Eos V-Neck Hoodie';",
+ "answer": [
+ "54.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "54.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the billing address of the order with parent ID 244?",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 244 AND address_type = 'billing';",
+ "answer": [
+ "fitnessjunkie22@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "fitnessjunkie22@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with ID 1492?",
+ "sql": "SELECT qty FROM sales_shipment_item WHERE product_id = 1492;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List the visible statuses on the front.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "fraud",
+ "holded",
+ "payment_review",
+ "pending",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 45?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 45;",
+ "answer": [
+ "amanda.kim@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "amanda.kim@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for order ID 1.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE order_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all reviews for product with entity ID 1396.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 1396;",
+ "answer": [
+ "347",
+ "349",
+ "351"
+ ],
+ "sql_execute_result": [
+ [
+ 347
+ ],
+ [
+ 349
+ ],
+ [
+ 351
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000003'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000003';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders created on '2023-04-17'.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-04-17';",
+ "answer": [
+ "34.0000",
+ "138.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "34.0000"
+ ],
+ [
+ "138.6000"
+ ],
+ [
+ "34.0000"
+ ],
+ [
+ "138.6000"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the SKU for the product with entity ID 567.",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 567;",
+ "answer": [
+ "MS02-M-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MS02-M-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU and name of the product with entity ID 1428?",
+ "sql": "SELECT sku, name FROM sales_invoice_item WHERE product_id = 1428;",
+ "answer": [
+ "WS03-XS-Red",
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03-XS-Red",
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category path for category with entity ID 32.",
+ "sql": "SELECT path FROM catalog_category_entity WHERE entity_id = 32;",
+ "answer": [
+ "1/2/29/32"
+ ],
+ "sql_execute_result": [
+ [
+ "1/2/29/32"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs were found for the product created on '2023-04-19 16:13:28'?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE created_at = '2023-04-19 16:13:28';",
+ "answer": [
+ "50"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs for products with type 'simple' were found?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE type_id = 'simple';",
+ "answer": [
+ "1891"
+ ],
+ "sql_execute_result": [
+ [
+ "24-MB01"
+ ],
+ [
+ "24-MB04"
+ ],
+ [
+ "24-MB03"
+ ],
+ [
+ "24-MB05"
+ ],
+ [
+ "24-MB06"
+ ],
+ [
+ "24-MB02"
+ ],
+ [
+ "24-UB02"
+ ],
+ [
+ "24-WB01"
+ ],
+ [
+ "24-WB02"
+ ],
+ [
+ "24-WB05"
+ ],
+ [
+ "24-WB06"
+ ],
+ [
+ "24-WB03"
+ ],
+ [
+ "24-WB07"
+ ],
+ [
+ "24-WB04"
+ ],
+ [
+ "24-UG06"
+ ],
+ [
+ "24-UG07"
+ ],
+ [
+ "24-UG04"
+ ],
+ [
+ "24-UG02"
+ ],
+ [
+ "24-UG05"
+ ],
+ [
+ "24-UG01"
+ ],
+ [
+ "24-WG084"
+ ],
+ [
+ "24-WG088"
+ ],
+ [
+ "24-UG03"
+ ],
+ [
+ "24-WG081-gray"
+ ],
+ [
+ "24-WG081-pink"
+ ],
+ [
+ "24-WG081-blue"
+ ],
+ [
+ "24-WG082-gray"
+ ],
+ [
+ "24-WG082-pink"
+ ],
+ [
+ "24-WG082-blue"
+ ],
+ [
+ "24-WG083-gray"
+ ],
+ [
+ "24-WG083-pink"
+ ],
+ [
+ "24-WG083-blue"
+ ],
+ [
+ "24-WG085"
+ ],
+ [
+ "24-WG086"
+ ],
+ [
+ "24-WG087"
+ ],
+ [
+ "24-MG04"
+ ],
+ [
+ "24-MG01"
+ ],
+ [
+ "24-MG03"
+ ],
+ [
+ "24-MG05"
+ ],
+ [
+ "24-MG02"
+ ],
+ [
+ "24-WG09"
+ ],
+ [
+ "24-WG01"
+ ],
+ [
+ "24-WG03"
+ ],
+ [
+ "24-WG02"
+ ],
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MP01-32-Black"
+ ],
+ [
+ "MP01-32-Gray"
+ ],
+ [
+ "MP01-32-Purple"
+ ],
+ [
+ "MP01-33-Black"
+ ],
+ [
+ "MP01-33-Gray"
+ ],
+ [
+ "MP01-33-Purple"
+ ],
+ [
+ "MP01-34-Black"
+ ],
+ [
+ "MP01-34-Gray"
+ ],
+ [
+ "MP01-34-Purple"
+ ],
+ [
+ "MP01-36-Black"
+ ],
+ [
+ "MP01-36-Gray"
+ ],
+ [
+ "MP01-36-Purple"
+ ],
+ [
+ "MP02-32-Blue"
+ ],
+ [
+ "MP02-32-Gray"
+ ],
+ [
+ "MP02-32-Red"
+ ],
+ [
+ "MP02-33-Blue"
+ ],
+ [
+ "MP02-33-Gray"
+ ],
+ [
+ "MP02-33-Red"
+ ],
+ [
+ "MP02-34-Blue"
+ ],
+ [
+ "MP02-34-Gray"
+ ],
+ [
+ "MP02-34-Red"
+ ],
+ [
+ "MP02-36-Blue"
+ ],
+ [
+ "MP02-36-Gray"
+ ],
+ [
+ "MP02-36-Red"
+ ],
+ [
+ "MP03-32-Blue"
+ ],
+ [
+ "MP03-32-Green"
+ ],
+ [
+ "MP03-32-Red"
+ ],
+ [
+ "MP03-33-Blue"
+ ],
+ [
+ "MP03-33-Green"
+ ],
+ [
+ "MP03-33-Red"
+ ],
+ [
+ "MP03-34-Blue"
+ ],
+ [
+ "MP03-34-Green"
+ ],
+ [
+ "MP03-34-Red"
+ ],
+ [
+ "MP03-36-Blue"
+ ],
+ [
+ "MP03-36-Green"
+ ],
+ [
+ "MP03-36-Red"
+ ],
+ [
+ "MP04-32-Black"
+ ],
+ [
+ "MP04-32-Gray"
+ ],
+ [
+ "MP04-32-Green"
+ ],
+ [
+ "MP04-33-Black"
+ ],
+ [
+ "MP04-33-Gray"
+ ],
+ [
+ "MP04-33-Green"
+ ],
+ [
+ "MP04-34-Black"
+ ],
+ [
+ "MP04-34-Gray"
+ ],
+ [
+ "MP04-34-Green"
+ ],
+ [
+ "MP04-36-Black"
+ ],
+ [
+ "MP04-36-Gray"
+ ],
+ [
+ "MP04-36-Green"
+ ],
+ [
+ "MP05-32-Black"
+ ],
+ [
+ "MP05-32-Blue"
+ ],
+ [
+ "MP05-32-Green"
+ ],
+ [
+ "MP05-33-Black"
+ ],
+ [
+ "MP05-33-Blue"
+ ],
+ [
+ "MP05-33-Green"
+ ],
+ [
+ "MP05-34-Black"
+ ],
+ [
+ "MP05-34-Blue"
+ ],
+ [
+ "MP05-34-Green"
+ ],
+ [
+ "MP05-36-Black"
+ ],
+ [
+ "MP05-36-Blue"
+ ],
+ [
+ "MP05-36-Green"
+ ],
+ [
+ "MP06-32-Gray"
+ ],
+ [
+ "MP06-32-Green"
+ ],
+ [
+ "MP06-32-Orange"
+ ],
+ [
+ "MP06-33-Gray"
+ ],
+ [
+ "MP06-33-Green"
+ ],
+ [
+ "MP06-33-Orange"
+ ],
+ [
+ "MP06-34-Gray"
+ ],
+ [
+ "MP06-34-Green"
+ ],
+ [
+ "MP06-34-Orange"
+ ],
+ [
+ "MP06-36-Gray"
+ ],
+ [
+ "MP06-36-Green"
+ ],
+ [
+ "MP06-36-Orange"
+ ],
+ [
+ "MP07-32-Black"
+ ],
+ [
+ "MP07-32-Blue"
+ ],
+ [
+ "MP07-32-Purple"
+ ],
+ [
+ "MP07-33-Black"
+ ],
+ [
+ "MP07-33-Blue"
+ ],
+ [
+ "MP07-33-Purple"
+ ],
+ [
+ "MP07-34-Black"
+ ],
+ [
+ "MP07-34-Blue"
+ ],
+ [
+ "MP07-34-Purple"
+ ],
+ [
+ "MP07-36-Black"
+ ],
+ [
+ "MP07-36-Blue"
+ ],
+ [
+ "MP07-36-Purple"
+ ],
+ [
+ "MP08-32-Blue"
+ ],
+ [
+ "MP08-32-Green"
+ ],
+ [
+ "MP08-32-Red"
+ ],
+ [
+ "MP08-33-Blue"
+ ],
+ [
+ "MP08-33-Green"
+ ],
+ [
+ "MP08-33-Red"
+ ],
+ [
+ "MP08-34-Blue"
+ ],
+ [
+ "MP08-34-Green"
+ ],
+ [
+ "MP08-34-Red"
+ ],
+ [
+ "MP08-36-Blue"
+ ],
+ [
+ "MP08-36-Green"
+ ],
+ [
+ "MP08-36-Red"
+ ],
+ [
+ "MP09-32-Black"
+ ],
+ [
+ "MP09-32-Blue"
+ ],
+ [
+ "MP09-32-Red"
+ ],
+ [
+ "MP09-33-Black"
+ ],
+ [
+ "MP09-33-Blue"
+ ],
+ [
+ "MP09-33-Red"
+ ],
+ [
+ "MP09-34-Black"
+ ],
+ [
+ "MP09-34-Blue"
+ ],
+ [
+ "MP09-34-Red"
+ ],
+ [
+ "MP09-36-Black"
+ ],
+ [
+ "MP09-36-Blue"
+ ],
+ [
+ "MP09-36-Red"
+ ],
+ [
+ "MP10-32-Black"
+ ],
+ [
+ "MP10-32-Blue"
+ ],
+ [
+ "MP10-32-Green"
+ ],
+ [
+ "MP10-33-Black"
+ ],
+ [
+ "MP10-33-Blue"
+ ],
+ [
+ "MP10-33-Green"
+ ],
+ [
+ "MP10-34-Black"
+ ],
+ [
+ "MP10-34-Blue"
+ ],
+ [
+ "MP10-34-Green"
+ ],
+ [
+ "MP10-36-Black"
+ ],
+ [
+ "MP10-36-Blue"
+ ],
+ [
+ "MP10-36-Green"
+ ],
+ [
+ "MP11-32-Blue"
+ ],
+ [
+ "MP11-32-Brown"
+ ],
+ [
+ "MP11-32-Green"
+ ],
+ [
+ "MP11-33-Blue"
+ ],
+ [
+ "MP11-33-Brown"
+ ],
+ [
+ "MP11-33-Green"
+ ],
+ [
+ "MP11-34-Blue"
+ ],
+ [
+ "MP11-34-Brown"
+ ],
+ [
+ "MP11-34-Green"
+ ],
+ [
+ "MP11-36-Blue"
+ ],
+ [
+ "MP11-36-Brown"
+ ],
+ [
+ "MP11-36-Green"
+ ],
+ [
+ "MP12-32-Black"
+ ],
+ [
+ "MP12-32-Blue"
+ ],
+ [
+ "MP12-32-Red"
+ ],
+ [
+ "MP12-33-Black"
+ ],
+ [
+ "MP12-33-Blue"
+ ],
+ [
+ "MP12-33-Red"
+ ],
+ [
+ "MP12-34-Black"
+ ],
+ [
+ "MP12-34-Blue"
+ ],
+ [
+ "MP12-34-Red"
+ ],
+ [
+ "MP12-36-Black"
+ ],
+ [
+ "MP12-36-Blue"
+ ],
+ [
+ "MP12-36-Red"
+ ],
+ [
+ "MSH01-32-Black"
+ ],
+ [
+ "MSH01-32-Blue"
+ ],
+ [
+ "MSH01-32-Red"
+ ],
+ [
+ "MSH01-33-Black"
+ ],
+ [
+ "MSH01-33-Blue"
+ ],
+ [
+ "MSH01-33-Red"
+ ],
+ [
+ "MSH01-34-Black"
+ ],
+ [
+ "MSH01-34-Blue"
+ ],
+ [
+ "MSH01-34-Red"
+ ],
+ [
+ "MSH01-36-Black"
+ ],
+ [
+ "MSH01-36-Blue"
+ ],
+ [
+ "MSH01-36-Red"
+ ],
+ [
+ "MSH02-32-Black"
+ ],
+ [
+ "MSH02-33-Black"
+ ],
+ [
+ "MSH02-34-Black"
+ ],
+ [
+ "MSH02-36-Black"
+ ],
+ [
+ "MSH03-32-Black"
+ ],
+ [
+ "MSH03-32-Blue"
+ ],
+ [
+ "MSH03-32-Green"
+ ],
+ [
+ "MSH03-33-Black"
+ ],
+ [
+ "MSH03-33-Blue"
+ ],
+ [
+ "MSH03-33-Green"
+ ],
+ [
+ "MSH03-34-Black"
+ ],
+ [
+ "MSH03-34-Blue"
+ ],
+ [
+ "MSH03-34-Green"
+ ],
+ [
+ "MSH03-36-Black"
+ ],
+ [
+ "MSH03-36-Blue"
+ ],
+ [
+ "MSH03-36-Green"
+ ],
+ [
+ "MSH04-32-Gray"
+ ],
+ [
+ "MSH04-32-Purple"
+ ],
+ [
+ "MSH04-32-Yellow"
+ ],
+ [
+ "MSH04-33-Gray"
+ ],
+ [
+ "MSH04-33-Purple"
+ ],
+ [
+ "MSH04-33-Yellow"
+ ],
+ [
+ "MSH04-34-Gray"
+ ],
+ [
+ "MSH04-34-Purple"
+ ],
+ [
+ "MSH04-34-Yellow"
+ ],
+ [
+ "MSH04-36-Gray"
+ ],
+ [
+ "MSH04-36-Purple"
+ ],
+ [
+ "MSH04-36-Yellow"
+ ],
+ [
+ "MSH05-32-Black"
+ ],
+ [
+ "MSH05-32-Blue"
+ ],
+ [
+ "MSH05-32-Gray"
+ ],
+ [
+ "MSH05-33-Black"
+ ],
+ [
+ "MSH05-33-Blue"
+ ],
+ [
+ "MSH05-33-Gray"
+ ],
+ [
+ "MSH05-34-Black"
+ ],
+ [
+ "MSH05-34-Blue"
+ ],
+ [
+ "MSH05-34-Gray"
+ ],
+ [
+ "MSH05-36-Black"
+ ],
+ [
+ "MSH05-36-Blue"
+ ],
+ [
+ "MSH05-36-Gray"
+ ],
+ [
+ "MSH06-32-Blue"
+ ],
+ [
+ "MSH06-32-Gray"
+ ],
+ [
+ "MSH06-32-Red"
+ ],
+ [
+ "MSH06-33-Blue"
+ ],
+ [
+ "MSH06-33-Gray"
+ ],
+ [
+ "MSH06-33-Red"
+ ],
+ [
+ "MSH06-34-Blue"
+ ],
+ [
+ "MSH06-34-Gray"
+ ],
+ [
+ "MSH06-34-Red"
+ ],
+ [
+ "MSH06-36-Blue"
+ ],
+ [
+ "MSH06-36-Gray"
+ ],
+ [
+ "MSH06-36-Red"
+ ],
+ [
+ "MSH07-32-Black"
+ ],
+ [
+ "MSH07-32-Blue"
+ ],
+ [
+ "MSH07-32-Purple"
+ ],
+ [
+ "MSH07-33-Black"
+ ],
+ [
+ "MSH07-33-Blue"
+ ],
+ [
+ "MSH07-33-Purple"
+ ],
+ [
+ "MSH07-34-Black"
+ ],
+ [
+ "MSH07-34-Blue"
+ ],
+ [
+ "MSH07-34-Purple"
+ ],
+ [
+ "MSH07-36-Black"
+ ],
+ [
+ "MSH07-36-Blue"
+ ],
+ [
+ "MSH07-36-Purple"
+ ],
+ [
+ "MSH08-32-Black"
+ ],
+ [
+ "MSH08-32-Blue"
+ ],
+ [
+ "MSH08-32-Green"
+ ],
+ [
+ "MSH08-33-Black"
+ ],
+ [
+ "MSH08-33-Blue"
+ ],
+ [
+ "MSH08-33-Green"
+ ],
+ [
+ "MSH08-34-Black"
+ ],
+ [
+ "MSH08-34-Blue"
+ ],
+ [
+ "MSH08-34-Green"
+ ],
+ [
+ "MSH08-36-Black"
+ ],
+ [
+ "MSH08-36-Blue"
+ ],
+ [
+ "MSH08-36-Green"
+ ],
+ [
+ "MSH09-32-Black"
+ ],
+ [
+ "MSH09-32-Blue"
+ ],
+ [
+ "MSH09-32-Green"
+ ],
+ [
+ "MSH09-33-Black"
+ ],
+ [
+ "MSH09-33-Blue"
+ ],
+ [
+ "MSH09-33-Green"
+ ],
+ [
+ "MSH09-34-Black"
+ ],
+ [
+ "MSH09-34-Blue"
+ ],
+ [
+ "MSH09-34-Green"
+ ],
+ [
+ "MSH09-36-Black"
+ ],
+ [
+ "MSH09-36-Blue"
+ ],
+ [
+ "MSH09-36-Green"
+ ],
+ [
+ "MSH10-32-Blue"
+ ],
+ [
+ "MSH10-32-Green"
+ ],
+ [
+ "MSH10-32-Purple"
+ ],
+ [
+ "MSH10-33-Blue"
+ ],
+ [
+ "MSH10-33-Green"
+ ],
+ [
+ "MSH10-33-Purple"
+ ],
+ [
+ "MSH10-34-Blue"
+ ],
+ [
+ "MSH10-34-Green"
+ ],
+ [
+ "MSH10-34-Purple"
+ ],
+ [
+ "MSH10-36-Blue"
+ ],
+ [
+ "MSH10-36-Green"
+ ],
+ [
+ "MSH10-36-Purple"
+ ],
+ [
+ "MSH11-32-Black"
+ ],
+ [
+ "MSH11-32-Blue"
+ ],
+ [
+ "MSH11-32-Red"
+ ],
+ [
+ "MSH11-33-Black"
+ ],
+ [
+ "MSH11-33-Blue"
+ ],
+ [
+ "MSH11-33-Red"
+ ],
+ [
+ "MSH11-34-Black"
+ ],
+ [
+ "MSH11-34-Blue"
+ ],
+ [
+ "MSH11-34-Red"
+ ],
+ [
+ "MSH11-36-Black"
+ ],
+ [
+ "MSH11-36-Blue"
+ ],
+ [
+ "MSH11-36-Red"
+ ],
+ [
+ "MSH12-32-Black"
+ ],
+ [
+ "MSH12-32-Gray"
+ ],
+ [
+ "MSH12-32-Red"
+ ],
+ [
+ "MSH12-33-Black"
+ ],
+ [
+ "MSH12-33-Gray"
+ ],
+ [
+ "MSH12-33-Red"
+ ],
+ [
+ "MSH12-34-Black"
+ ],
+ [
+ "MSH12-34-Gray"
+ ],
+ [
+ "MSH12-34-Red"
+ ],
+ [
+ "MSH12-36-Black"
+ ],
+ [
+ "MSH12-36-Gray"
+ ],
+ [
+ "MSH12-36-Red"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WP01-28-Black"
+ ],
+ [
+ "WP01-28-Gray"
+ ],
+ [
+ "WP01-28-White"
+ ],
+ [
+ "WP01-29-Black"
+ ],
+ [
+ "WP01-29-Gray"
+ ],
+ [
+ "WP01-29-White"
+ ],
+ [
+ "WP02-28-Blue"
+ ],
+ [
+ "WP02-28-Purple"
+ ],
+ [
+ "WP02-28-Red"
+ ],
+ [
+ "WP02-29-Blue"
+ ],
+ [
+ "WP02-29-Purple"
+ ],
+ [
+ "WP02-29-Red"
+ ],
+ [
+ "WP03-28-Black"
+ ],
+ [
+ "WP03-28-Blue"
+ ],
+ [
+ "WP03-28-Purple"
+ ],
+ [
+ "WP03-29-Black"
+ ],
+ [
+ "WP03-29-Blue"
+ ],
+ [
+ "WP03-29-Purple"
+ ],
+ [
+ "WP04-28-Black"
+ ],
+ [
+ "WP04-28-Blue"
+ ],
+ [
+ "WP04-28-White"
+ ],
+ [
+ "WP04-29-Black"
+ ],
+ [
+ "WP04-29-Blue"
+ ],
+ [
+ "WP04-29-White"
+ ],
+ [
+ "WP05-28-Blue"
+ ],
+ [
+ "WP05-28-Gray"
+ ],
+ [
+ "WP05-28-Red"
+ ],
+ [
+ "WP05-29-Blue"
+ ],
+ [
+ "WP05-29-Gray"
+ ],
+ [
+ "WP05-29-Red"
+ ],
+ [
+ "WP06-28-Black"
+ ],
+ [
+ "WP06-28-Blue"
+ ],
+ [
+ "WP06-28-Orange"
+ ],
+ [
+ "WP06-29-Black"
+ ],
+ [
+ "WP06-29-Blue"
+ ],
+ [
+ "WP06-29-Orange"
+ ],
+ [
+ "WP07-28-Black"
+ ],
+ [
+ "WP07-28-Blue"
+ ],
+ [
+ "WP07-28-Orange"
+ ],
+ [
+ "WP07-29-Black"
+ ],
+ [
+ "WP07-29-Blue"
+ ],
+ [
+ "WP07-29-Orange"
+ ],
+ [
+ "WP08-28-Black"
+ ],
+ [
+ "WP08-28-Green"
+ ],
+ [
+ "WP08-28-Red"
+ ],
+ [
+ "WP08-29-Black"
+ ],
+ [
+ "WP08-29-Green"
+ ],
+ [
+ "WP08-29-Red"
+ ],
+ [
+ "WP09-28-Black"
+ ],
+ [
+ "WP09-28-Blue"
+ ],
+ [
+ "WP09-28-Purple"
+ ],
+ [
+ "WP09-29-Black"
+ ],
+ [
+ "WP09-29-Blue"
+ ],
+ [
+ "WP09-29-Purple"
+ ],
+ [
+ "WP10-28-Black"
+ ],
+ [
+ "WP10-28-Gray"
+ ],
+ [
+ "WP10-28-White"
+ ],
+ [
+ "WP10-29-Black"
+ ],
+ [
+ "WP10-29-Gray"
+ ],
+ [
+ "WP10-29-White"
+ ],
+ [
+ "WP11-28-Blue"
+ ],
+ [
+ "WP11-28-Green"
+ ],
+ [
+ "WP11-28-Red"
+ ],
+ [
+ "WP11-29-Blue"
+ ],
+ [
+ "WP11-29-Green"
+ ],
+ [
+ "WP11-29-Red"
+ ],
+ [
+ "WP12-28-Blue"
+ ],
+ [
+ "WP12-28-Gray"
+ ],
+ [
+ "WP12-28-Green"
+ ],
+ [
+ "WP12-29-Blue"
+ ],
+ [
+ "WP12-29-Gray"
+ ],
+ [
+ "WP12-29-Green"
+ ],
+ [
+ "WP13-28-Blue"
+ ],
+ [
+ "WP13-28-Green"
+ ],
+ [
+ "WP13-28-Orange"
+ ],
+ [
+ "WP13-29-Blue"
+ ],
+ [
+ "WP13-29-Green"
+ ],
+ [
+ "WP13-29-Orange"
+ ],
+ [
+ "WSH01-28-Black"
+ ],
+ [
+ "WSH01-28-Green"
+ ],
+ [
+ "WSH01-28-Red"
+ ],
+ [
+ "WSH01-29-Black"
+ ],
+ [
+ "WSH01-29-Green"
+ ],
+ [
+ "WSH01-29-Red"
+ ],
+ [
+ "WSH01-30-Black"
+ ],
+ [
+ "WSH01-30-Green"
+ ],
+ [
+ "WSH01-30-Red"
+ ],
+ [
+ "WSH01-31-Black"
+ ],
+ [
+ "WSH01-31-Green"
+ ],
+ [
+ "WSH01-31-Red"
+ ],
+ [
+ "WSH01-32-Black"
+ ],
+ [
+ "WSH01-32-Green"
+ ],
+ [
+ "WSH01-32-Red"
+ ],
+ [
+ "WSH02-28-Gray"
+ ],
+ [
+ "WSH02-28-Orange"
+ ],
+ [
+ "WSH02-28-Yellow"
+ ],
+ [
+ "WSH02-29-Gray"
+ ],
+ [
+ "WSH02-29-Orange"
+ ],
+ [
+ "WSH02-29-Yellow"
+ ],
+ [
+ "WSH02-30-Gray"
+ ],
+ [
+ "WSH02-30-Orange"
+ ],
+ [
+ "WSH02-30-Yellow"
+ ],
+ [
+ "WSH02-31-Gray"
+ ],
+ [
+ "WSH02-31-Orange"
+ ],
+ [
+ "WSH02-31-Yellow"
+ ],
+ [
+ "WSH02-32-Gray"
+ ],
+ [
+ "WSH02-32-Orange"
+ ],
+ [
+ "WSH02-32-Yellow"
+ ],
+ [
+ "WSH03-28-Blue"
+ ],
+ [
+ "WSH03-28-Gray"
+ ],
+ [
+ "WSH03-28-Orange"
+ ],
+ [
+ "WSH03-29-Blue"
+ ],
+ [
+ "WSH03-29-Gray"
+ ],
+ [
+ "WSH03-29-Orange"
+ ],
+ [
+ "WSH03-30-Blue"
+ ],
+ [
+ "WSH03-30-Gray"
+ ],
+ [
+ "WSH03-30-Orange"
+ ],
+ [
+ "WSH03-31-Blue"
+ ],
+ [
+ "WSH03-31-Gray"
+ ],
+ [
+ "WSH03-31-Orange"
+ ],
+ [
+ "WSH03-32-Blue"
+ ],
+ [
+ "WSH03-32-Gray"
+ ],
+ [
+ "WSH03-32-Orange"
+ ],
+ [
+ "WSH04-28-Black"
+ ],
+ [
+ "WSH04-28-Green"
+ ],
+ [
+ "WSH04-28-Orange"
+ ],
+ [
+ "WSH04-29-Black"
+ ],
+ [
+ "WSH04-29-Green"
+ ],
+ [
+ "WSH04-29-Orange"
+ ],
+ [
+ "WSH04-30-Black"
+ ],
+ [
+ "WSH04-30-Green"
+ ],
+ [
+ "WSH04-30-Orange"
+ ],
+ [
+ "WSH04-31-Black"
+ ],
+ [
+ "WSH04-31-Green"
+ ],
+ [
+ "WSH04-31-Orange"
+ ],
+ [
+ "WSH04-32-Black"
+ ],
+ [
+ "WSH04-32-Green"
+ ],
+ [
+ "WSH04-32-Orange"
+ ],
+ [
+ "WSH05-28-Blue"
+ ],
+ [
+ "WSH05-28-Purple"
+ ],
+ [
+ "WSH05-28-Yellow"
+ ],
+ [
+ "WSH05-29-Blue"
+ ],
+ [
+ "WSH05-29-Purple"
+ ],
+ [
+ "WSH05-29-Yellow"
+ ],
+ [
+ "WSH05-30-Blue"
+ ],
+ [
+ "WSH05-30-Purple"
+ ],
+ [
+ "WSH05-30-Yellow"
+ ],
+ [
+ "WSH05-31-Blue"
+ ],
+ [
+ "WSH05-31-Purple"
+ ],
+ [
+ "WSH05-31-Yellow"
+ ],
+ [
+ "WSH05-32-Blue"
+ ],
+ [
+ "WSH05-32-Purple"
+ ],
+ [
+ "WSH05-32-Yellow"
+ ],
+ [
+ "WSH06-28-Gray"
+ ],
+ [
+ "WSH06-28-Orange"
+ ],
+ [
+ "WSH06-28-Purple"
+ ],
+ [
+ "WSH06-29-Gray"
+ ],
+ [
+ "WSH06-29-Orange"
+ ],
+ [
+ "WSH06-29-Purple"
+ ],
+ [
+ "WSH07-28-Black"
+ ],
+ [
+ "WSH07-28-Blue"
+ ],
+ [
+ "WSH07-28-Purple"
+ ],
+ [
+ "WSH07-29-Black"
+ ],
+ [
+ "WSH07-29-Blue"
+ ],
+ [
+ "WSH07-29-Purple"
+ ],
+ [
+ "WSH08-28-Purple"
+ ],
+ [
+ "WSH08-29-Purple"
+ ],
+ [
+ "WSH08-30-Purple"
+ ],
+ [
+ "WSH08-31-Purple"
+ ],
+ [
+ "WSH08-32-Purple"
+ ],
+ [
+ "WSH09-28-Gray"
+ ],
+ [
+ "WSH09-28-Green"
+ ],
+ [
+ "WSH09-28-White"
+ ],
+ [
+ "WSH09-29-Gray"
+ ],
+ [
+ "WSH09-29-Green"
+ ],
+ [
+ "WSH09-29-White"
+ ],
+ [
+ "WSH10-28-Black"
+ ],
+ [
+ "WSH10-28-Orange"
+ ],
+ [
+ "WSH10-28-White"
+ ],
+ [
+ "WSH10-29-Black"
+ ],
+ [
+ "WSH10-29-Orange"
+ ],
+ [
+ "WSH10-29-White"
+ ],
+ [
+ "WSH11-28-Blue"
+ ],
+ [
+ "WSH11-28-Orange"
+ ],
+ [
+ "WSH11-28-Red"
+ ],
+ [
+ "WSH11-29-Blue"
+ ],
+ [
+ "WSH11-29-Orange"
+ ],
+ [
+ "WSH11-29-Red"
+ ],
+ [
+ "WSH12-28-Green"
+ ],
+ [
+ "WSH12-28-Purple"
+ ],
+ [
+ "WSH12-28-Red"
+ ],
+ [
+ "WSH12-29-Green"
+ ],
+ [
+ "WSH12-29-Purple"
+ ],
+ [
+ "WSH12-29-Red"
+ ],
+ [
+ "WSH12-30-Green"
+ ],
+ [
+ "WSH12-30-Purple"
+ ],
+ [
+ "WSH12-30-Red"
+ ],
+ [
+ "WSH12-31-Green"
+ ],
+ [
+ "WSH12-31-Purple"
+ ],
+ [
+ "WSH12-31-Red"
+ ],
+ [
+ "WSH12-32-Green"
+ ],
+ [
+ "WSH12-32-Purple"
+ ],
+ [
+ "WSH12-32-Red"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does category ID 20 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 20;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the invoice item with entity ID 2?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "2.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute ID of the product with entity ID 706 in catalog_product_entity_int?",
+ "sql": "SELECT attribute_id FROM catalog_product_entity_int WHERE entity_id = 706;",
+ "answer": [
+ "97",
+ "99",
+ "115",
+ "136",
+ "145",
+ "146",
+ "147",
+ "148",
+ "149"
+ ],
+ "sql_execute_result": [
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 115
+ ],
+ [
+ 136
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ]
+ ]
+ },
+ {
+ "question": "Get the website ID for the stock with stock_id 1.",
+ "sql": "SELECT website_id FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'beachlover99@yahoo.com'.",
+ "sql": "SELECT entity_id AS order_id, increment_id FROM sales_order_grid WHERE customer_email = 'beachlover99@yahoo.com';",
+ "answer": [
+ "Order ID: 48, Increment ID: 000000048",
+ "Order ID: 78, Increment ID: 000000078",
+ "Order ID: 90, Increment ID: 000000090",
+ "Order ID: 128, Increment ID: 000000128",
+ "Order ID: 149, Increment ID: 000000149",
+ "Order ID: 200, Increment ID: 000000200",
+ "Order ID: 230, Increment ID: 000000230",
+ "Order ID: 252, Increment ID: 000000252",
+ "Order ID: 270, Increment ID: 000000270"
+ ],
+ "sql_execute_result": [
+ [
+ 48,
+ "000000048"
+ ],
+ [
+ 78,
+ "000000078"
+ ],
+ [
+ 90,
+ "000000090"
+ ],
+ [
+ 128,
+ "000000128"
+ ],
+ [
+ 149,
+ "000000149"
+ ],
+ [
+ 200,
+ "000000200"
+ ],
+ [
+ 230,
+ "000000230"
+ ],
+ [
+ 252,
+ "000000252"
+ ],
+ [
+ 270,
+ "000000270"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for order with increment ID '000000139'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000139';",
+ "answer": [
+ "123 Pike St,Seattle,Washington,98101"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Pike St,Seattle,Washington,98101"
+ ]
+ ]
+ },
+ {
+ "question": "Check the status of the order with ID 122.",
+ "sql": "SELECT status FROM sales_order_grid WHERE entity_id = 122;",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name associated with store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the payment method used for the order made by customer 'Katie Wong'?",
+ "sql": "SELECT payment_method FROM sales_order_grid WHERE customer_name = 'Katie Wong';",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ],
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "How many completed orders with a shipping method of 'Flat Rate - Fixed' were found?",
+ "sql": "SELECT entity_id FROM sales_order_grid WHERE status = 'complete' AND shipping_information = 'Flat Rate - Fixed';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ],
+ [
+ 9
+ ],
+ [
+ 11
+ ],
+ [
+ 13
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 43
+ ],
+ [
+ 45
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 57
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 64
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 73
+ ],
+ [
+ 75
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 87
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 102
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 119
+ ],
+ [
+ 121
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 133
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 150
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 158
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 166
+ ],
+ [
+ 169
+ ],
+ [
+ 179
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 184
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 192
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 205
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 223
+ ],
+ [
+ 225
+ ],
+ [
+ 228
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 233
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 243
+ ],
+ [
+ 247
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 253
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 260
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 274
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 295
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 629?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 629;",
+ "answer": [
+ "MT01-M-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MT01-M-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of 'Juliana Short-Sleeve Tee-M-Black' were ordered in 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Juliana Short-Sleeve Tee-M-Black' AND period = '2022-01-01';",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sort order for the option with option ID 115?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 115;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ]
+ ]
+ },
+ {
+ "question": "What is the latest sequence value in sequence_order_1 table?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Helena Hooded Fleece-XL-Blue' ordered in 2023.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Helena Hooded Fleece-XL-Blue' AND period = '2023-01-01';",
+ "answer": [
+ "55.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "55.0000"
+ ],
+ [
+ "55.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many SKUs were found for products with attribute set ID 9?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE attribute_set_id = 9;",
+ "answer": [
+ "1462"
+ ],
+ "sql_execute_result": [
+ [
+ "MH01-XS-Black"
+ ],
+ [
+ "MH01-XS-Gray"
+ ],
+ [
+ "MH01-XS-Orange"
+ ],
+ [
+ "MH01-S-Black"
+ ],
+ [
+ "MH01-S-Gray"
+ ],
+ [
+ "MH01-S-Orange"
+ ],
+ [
+ "MH01-M-Black"
+ ],
+ [
+ "MH01-M-Gray"
+ ],
+ [
+ "MH01-M-Orange"
+ ],
+ [
+ "MH01-L-Black"
+ ],
+ [
+ "MH01-L-Gray"
+ ],
+ [
+ "MH01-L-Orange"
+ ],
+ [
+ "MH01-XL-Black"
+ ],
+ [
+ "MH01-XL-Gray"
+ ],
+ [
+ "MH01-XL-Orange"
+ ],
+ [
+ "MH01"
+ ],
+ [
+ "MH02-XS-Black"
+ ],
+ [
+ "MH02-XS-Purple"
+ ],
+ [
+ "MH02-XS-Red"
+ ],
+ [
+ "MH02-S-Black"
+ ],
+ [
+ "MH02-S-Purple"
+ ],
+ [
+ "MH02-S-Red"
+ ],
+ [
+ "MH02-M-Black"
+ ],
+ [
+ "MH02-M-Purple"
+ ],
+ [
+ "MH02-M-Red"
+ ],
+ [
+ "MH02-L-Black"
+ ],
+ [
+ "MH02-L-Purple"
+ ],
+ [
+ "MH02-L-Red"
+ ],
+ [
+ "MH02-XL-Black"
+ ],
+ [
+ "MH02-XL-Purple"
+ ],
+ [
+ "MH02-XL-Red"
+ ],
+ [
+ "MH02"
+ ],
+ [
+ "MH03-XS-Black"
+ ],
+ [
+ "MH03-XS-Blue"
+ ],
+ [
+ "MH03-XS-Green"
+ ],
+ [
+ "MH03-S-Black"
+ ],
+ [
+ "MH03-S-Blue"
+ ],
+ [
+ "MH03-S-Green"
+ ],
+ [
+ "MH03-M-Black"
+ ],
+ [
+ "MH03-M-Blue"
+ ],
+ [
+ "MH03-M-Green"
+ ],
+ [
+ "MH03-L-Black"
+ ],
+ [
+ "MH03-L-Blue"
+ ],
+ [
+ "MH03-L-Green"
+ ],
+ [
+ "MH03-XL-Black"
+ ],
+ [
+ "MH03-XL-Blue"
+ ],
+ [
+ "MH03-XL-Green"
+ ],
+ [
+ "MH03"
+ ],
+ [
+ "MH04-XS-Green"
+ ],
+ [
+ "MH04-XS-White"
+ ],
+ [
+ "MH04-XS-Yellow"
+ ],
+ [
+ "MH04-S-Green"
+ ],
+ [
+ "MH04-S-White"
+ ],
+ [
+ "MH04-S-Yellow"
+ ],
+ [
+ "MH04-M-Green"
+ ],
+ [
+ "MH04-M-White"
+ ],
+ [
+ "MH04-M-Yellow"
+ ],
+ [
+ "MH04-L-Green"
+ ],
+ [
+ "MH04-L-White"
+ ],
+ [
+ "MH04-L-Yellow"
+ ],
+ [
+ "MH04-XL-Green"
+ ],
+ [
+ "MH04-XL-White"
+ ],
+ [
+ "MH04-XL-Yellow"
+ ],
+ [
+ "MH04"
+ ],
+ [
+ "MH05-XS-Green"
+ ],
+ [
+ "MH05-XS-Red"
+ ],
+ [
+ "MH05-XS-White"
+ ],
+ [
+ "MH05-S-Green"
+ ],
+ [
+ "MH05-S-Red"
+ ],
+ [
+ "MH05-S-White"
+ ],
+ [
+ "MH05-M-Green"
+ ],
+ [
+ "MH05-M-Red"
+ ],
+ [
+ "MH05-M-White"
+ ],
+ [
+ "MH05-L-Green"
+ ],
+ [
+ "MH05-L-Red"
+ ],
+ [
+ "MH05-L-White"
+ ],
+ [
+ "MH05-XL-Green"
+ ],
+ [
+ "MH05-XL-Red"
+ ],
+ [
+ "MH05-XL-White"
+ ],
+ [
+ "MH05"
+ ],
+ [
+ "MH06-XS-Black"
+ ],
+ [
+ "MH06-XS-Blue"
+ ],
+ [
+ "MH06-XS-Purple"
+ ],
+ [
+ "MH06-S-Black"
+ ],
+ [
+ "MH06-S-Blue"
+ ],
+ [
+ "MH06-S-Purple"
+ ],
+ [
+ "MH06-M-Black"
+ ],
+ [
+ "MH06-M-Blue"
+ ],
+ [
+ "MH06-M-Purple"
+ ],
+ [
+ "MH06-L-Black"
+ ],
+ [
+ "MH06-L-Blue"
+ ],
+ [
+ "MH06-L-Purple"
+ ],
+ [
+ "MH06-XL-Black"
+ ],
+ [
+ "MH06-XL-Blue"
+ ],
+ [
+ "MH06-XL-Purple"
+ ],
+ [
+ "MH06"
+ ],
+ [
+ "MH07-XS-Black"
+ ],
+ [
+ "MH07-XS-Gray"
+ ],
+ [
+ "MH07-XS-Green"
+ ],
+ [
+ "MH07-S-Black"
+ ],
+ [
+ "MH07-S-Gray"
+ ],
+ [
+ "MH07-S-Green"
+ ],
+ [
+ "MH07-M-Black"
+ ],
+ [
+ "MH07-M-Gray"
+ ],
+ [
+ "MH07-M-Green"
+ ],
+ [
+ "MH07-L-Black"
+ ],
+ [
+ "MH07-L-Gray"
+ ],
+ [
+ "MH07-L-Green"
+ ],
+ [
+ "MH07-XL-Black"
+ ],
+ [
+ "MH07-XL-Gray"
+ ],
+ [
+ "MH07-XL-Green"
+ ],
+ [
+ "MH07"
+ ],
+ [
+ "MH08-XS-Brown"
+ ],
+ [
+ "MH08-XS-Purple"
+ ],
+ [
+ "MH08-XS-Red"
+ ],
+ [
+ "MH08-S-Brown"
+ ],
+ [
+ "MH08-S-Purple"
+ ],
+ [
+ "MH08-S-Red"
+ ],
+ [
+ "MH08-M-Brown"
+ ],
+ [
+ "MH08-M-Purple"
+ ],
+ [
+ "MH08-M-Red"
+ ],
+ [
+ "MH08-L-Brown"
+ ],
+ [
+ "MH08-L-Purple"
+ ],
+ [
+ "MH08-L-Red"
+ ],
+ [
+ "MH08-XL-Brown"
+ ],
+ [
+ "MH08-XL-Purple"
+ ],
+ [
+ "MH08-XL-Red"
+ ],
+ [
+ "MH08"
+ ],
+ [
+ "MH09-XS-Blue"
+ ],
+ [
+ "MH09-XS-Green"
+ ],
+ [
+ "MH09-XS-Red"
+ ],
+ [
+ "MH09-S-Blue"
+ ],
+ [
+ "MH09-S-Green"
+ ],
+ [
+ "MH09-S-Red"
+ ],
+ [
+ "MH09-M-Blue"
+ ],
+ [
+ "MH09-M-Green"
+ ],
+ [
+ "MH09-M-Red"
+ ],
+ [
+ "MH09-L-Blue"
+ ],
+ [
+ "MH09-L-Green"
+ ],
+ [
+ "MH09-L-Red"
+ ],
+ [
+ "MH09-XL-Blue"
+ ],
+ [
+ "MH09-XL-Green"
+ ],
+ [
+ "MH09-XL-Red"
+ ],
+ [
+ "MH09"
+ ],
+ [
+ "MH10-XS-Black"
+ ],
+ [
+ "MH10-XS-Blue"
+ ],
+ [
+ "MH10-XS-Red"
+ ],
+ [
+ "MH10-S-Black"
+ ],
+ [
+ "MH10-S-Blue"
+ ],
+ [
+ "MH10-S-Red"
+ ],
+ [
+ "MH10-M-Black"
+ ],
+ [
+ "MH10-M-Blue"
+ ],
+ [
+ "MH10-M-Red"
+ ],
+ [
+ "MH10-L-Black"
+ ],
+ [
+ "MH10-L-Blue"
+ ],
+ [
+ "MH10-L-Red"
+ ],
+ [
+ "MH10-XL-Black"
+ ],
+ [
+ "MH10-XL-Blue"
+ ],
+ [
+ "MH10-XL-Red"
+ ],
+ [
+ "MH10"
+ ],
+ [
+ "MH11-XS-Orange"
+ ],
+ [
+ "MH11-XS-Red"
+ ],
+ [
+ "MH11-XS-White"
+ ],
+ [
+ "MH11-S-Orange"
+ ],
+ [
+ "MH11-S-Red"
+ ],
+ [
+ "MH11-S-White"
+ ],
+ [
+ "MH11-M-Orange"
+ ],
+ [
+ "MH11-M-Red"
+ ],
+ [
+ "MH11-M-White"
+ ],
+ [
+ "MH11-L-Orange"
+ ],
+ [
+ "MH11-L-Red"
+ ],
+ [
+ "MH11-L-White"
+ ],
+ [
+ "MH11-XL-Orange"
+ ],
+ [
+ "MH11-XL-Red"
+ ],
+ [
+ "MH11-XL-White"
+ ],
+ [
+ "MH11"
+ ],
+ [
+ "MH12-XS-Blue"
+ ],
+ [
+ "MH12-XS-Green"
+ ],
+ [
+ "MH12-XS-Red"
+ ],
+ [
+ "MH12-S-Blue"
+ ],
+ [
+ "MH12-S-Green"
+ ],
+ [
+ "MH12-S-Red"
+ ],
+ [
+ "MH12-M-Blue"
+ ],
+ [
+ "MH12-M-Green"
+ ],
+ [
+ "MH12-M-Red"
+ ],
+ [
+ "MH12-L-Blue"
+ ],
+ [
+ "MH12-L-Green"
+ ],
+ [
+ "MH12-L-Red"
+ ],
+ [
+ "MH12-XL-Blue"
+ ],
+ [
+ "MH12-XL-Green"
+ ],
+ [
+ "MH12-XL-Red"
+ ],
+ [
+ "MH12"
+ ],
+ [
+ "MH13-XS-Blue"
+ ],
+ [
+ "MH13-XS-Green"
+ ],
+ [
+ "MH13-XS-Lavender"
+ ],
+ [
+ "MH13-S-Blue"
+ ],
+ [
+ "MH13-S-Green"
+ ],
+ [
+ "MH13-S-Lavender"
+ ],
+ [
+ "MH13-M-Blue"
+ ],
+ [
+ "MH13-M-Green"
+ ],
+ [
+ "MH13-M-Lavender"
+ ],
+ [
+ "MH13-L-Blue"
+ ],
+ [
+ "MH13-L-Green"
+ ],
+ [
+ "MH13-L-Lavender"
+ ],
+ [
+ "MH13-XL-Blue"
+ ],
+ [
+ "MH13-XL-Green"
+ ],
+ [
+ "MH13-XL-Lavender"
+ ],
+ [
+ "MH13"
+ ],
+ [
+ "MJ01-XS-Orange"
+ ],
+ [
+ "MJ01-XS-Red"
+ ],
+ [
+ "MJ01-XS-Yellow"
+ ],
+ [
+ "MJ01-S-Orange"
+ ],
+ [
+ "MJ01-S-Red"
+ ],
+ [
+ "MJ01-S-Yellow"
+ ],
+ [
+ "MJ01-M-Orange"
+ ],
+ [
+ "MJ01-M-Red"
+ ],
+ [
+ "MJ01-M-Yellow"
+ ],
+ [
+ "MJ01-L-Orange"
+ ],
+ [
+ "MJ01-L-Red"
+ ],
+ [
+ "MJ01-L-Yellow"
+ ],
+ [
+ "MJ01-XL-Orange"
+ ],
+ [
+ "MJ01-XL-Red"
+ ],
+ [
+ "MJ01-XL-Yellow"
+ ],
+ [
+ "MJ01"
+ ],
+ [
+ "MJ02-XS-Green"
+ ],
+ [
+ "MJ02-XS-Orange"
+ ],
+ [
+ "MJ02-XS-Red"
+ ],
+ [
+ "MJ02-S-Green"
+ ],
+ [
+ "MJ02-S-Orange"
+ ],
+ [
+ "MJ02-S-Red"
+ ],
+ [
+ "MJ02-M-Green"
+ ],
+ [
+ "MJ02-M-Orange"
+ ],
+ [
+ "MJ02-M-Red"
+ ],
+ [
+ "MJ02-L-Green"
+ ],
+ [
+ "MJ02-L-Orange"
+ ],
+ [
+ "MJ02-L-Red"
+ ],
+ [
+ "MJ02-XL-Green"
+ ],
+ [
+ "MJ02-XL-Orange"
+ ],
+ [
+ "MJ02-XL-Red"
+ ],
+ [
+ "MJ02"
+ ],
+ [
+ "MJ04-XS-Black"
+ ],
+ [
+ "MJ04-XS-Blue"
+ ],
+ [
+ "MJ04-XS-Purple"
+ ],
+ [
+ "MJ04-S-Black"
+ ],
+ [
+ "MJ04-S-Blue"
+ ],
+ [
+ "MJ04-S-Purple"
+ ],
+ [
+ "MJ04-M-Black"
+ ],
+ [
+ "MJ04-M-Blue"
+ ],
+ [
+ "MJ04-M-Purple"
+ ],
+ [
+ "MJ04-L-Black"
+ ],
+ [
+ "MJ04-L-Blue"
+ ],
+ [
+ "MJ04-L-Purple"
+ ],
+ [
+ "MJ04-XL-Black"
+ ],
+ [
+ "MJ04-XL-Blue"
+ ],
+ [
+ "MJ04-XL-Purple"
+ ],
+ [
+ "MJ04"
+ ],
+ [
+ "MJ07-XS-Black"
+ ],
+ [
+ "MJ07-XS-Red"
+ ],
+ [
+ "MJ07-XS-Yellow"
+ ],
+ [
+ "MJ07-S-Black"
+ ],
+ [
+ "MJ07-S-Red"
+ ],
+ [
+ "MJ07-S-Yellow"
+ ],
+ [
+ "MJ07-M-Black"
+ ],
+ [
+ "MJ07-M-Red"
+ ],
+ [
+ "MJ07-M-Yellow"
+ ],
+ [
+ "MJ07-L-Black"
+ ],
+ [
+ "MJ07-L-Red"
+ ],
+ [
+ "MJ07-L-Yellow"
+ ],
+ [
+ "MJ07-XL-Black"
+ ],
+ [
+ "MJ07-XL-Red"
+ ],
+ [
+ "MJ07-XL-Yellow"
+ ],
+ [
+ "MJ07"
+ ],
+ [
+ "MJ08-XS-Blue"
+ ],
+ [
+ "MJ08-XS-Gray"
+ ],
+ [
+ "MJ08-XS-Green"
+ ],
+ [
+ "MJ08-S-Blue"
+ ],
+ [
+ "MJ08-S-Gray"
+ ],
+ [
+ "MJ08-S-Green"
+ ],
+ [
+ "MJ08-M-Blue"
+ ],
+ [
+ "MJ08-M-Gray"
+ ],
+ [
+ "MJ08-M-Green"
+ ],
+ [
+ "MJ08-L-Blue"
+ ],
+ [
+ "MJ08-L-Gray"
+ ],
+ [
+ "MJ08-L-Green"
+ ],
+ [
+ "MJ08-XL-Blue"
+ ],
+ [
+ "MJ08-XL-Gray"
+ ],
+ [
+ "MJ08-XL-Green"
+ ],
+ [
+ "MJ08"
+ ],
+ [
+ "MJ09-XS-Blue"
+ ],
+ [
+ "MJ09-XS-White"
+ ],
+ [
+ "MJ09-XS-Yellow"
+ ],
+ [
+ "MJ09-S-Blue"
+ ],
+ [
+ "MJ09-S-White"
+ ],
+ [
+ "MJ09-S-Yellow"
+ ],
+ [
+ "MJ09-M-Blue"
+ ],
+ [
+ "MJ09-M-White"
+ ],
+ [
+ "MJ09-M-Yellow"
+ ],
+ [
+ "MJ09-L-Blue"
+ ],
+ [
+ "MJ09-L-White"
+ ],
+ [
+ "MJ09-L-Yellow"
+ ],
+ [
+ "MJ09-XL-Blue"
+ ],
+ [
+ "MJ09-XL-White"
+ ],
+ [
+ "MJ09-XL-Yellow"
+ ],
+ [
+ "MJ09"
+ ],
+ [
+ "MJ10-XS-Black"
+ ],
+ [
+ "MJ10-XS-Orange"
+ ],
+ [
+ "MJ10-XS-Red"
+ ],
+ [
+ "MJ10-S-Black"
+ ],
+ [
+ "MJ10-S-Orange"
+ ],
+ [
+ "MJ10-S-Red"
+ ],
+ [
+ "MJ10-M-Black"
+ ],
+ [
+ "MJ10-M-Orange"
+ ],
+ [
+ "MJ10-M-Red"
+ ],
+ [
+ "MJ10-L-Black"
+ ],
+ [
+ "MJ10-L-Orange"
+ ],
+ [
+ "MJ10-L-Red"
+ ],
+ [
+ "MJ10-XL-Black"
+ ],
+ [
+ "MJ10-XL-Orange"
+ ],
+ [
+ "MJ10-XL-Red"
+ ],
+ [
+ "MJ10"
+ ],
+ [
+ "MJ11-XS-Black"
+ ],
+ [
+ "MJ11-XS-Green"
+ ],
+ [
+ "MJ11-XS-Red"
+ ],
+ [
+ "MJ11-S-Black"
+ ],
+ [
+ "MJ11-S-Green"
+ ],
+ [
+ "MJ11-S-Red"
+ ],
+ [
+ "MJ11-M-Black"
+ ],
+ [
+ "MJ11-M-Green"
+ ],
+ [
+ "MJ11-M-Red"
+ ],
+ [
+ "MJ11-L-Black"
+ ],
+ [
+ "MJ11-L-Green"
+ ],
+ [
+ "MJ11-L-Red"
+ ],
+ [
+ "MJ11-XL-Black"
+ ],
+ [
+ "MJ11-XL-Green"
+ ],
+ [
+ "MJ11-XL-Red"
+ ],
+ [
+ "MJ11"
+ ],
+ [
+ "MJ06-XS-Blue"
+ ],
+ [
+ "MJ06-XS-Green"
+ ],
+ [
+ "MJ06-XS-Purple"
+ ],
+ [
+ "MJ06-S-Blue"
+ ],
+ [
+ "MJ06-S-Green"
+ ],
+ [
+ "MJ06-S-Purple"
+ ],
+ [
+ "MJ06-M-Blue"
+ ],
+ [
+ "MJ06-M-Green"
+ ],
+ [
+ "MJ06-M-Purple"
+ ],
+ [
+ "MJ06-L-Blue"
+ ],
+ [
+ "MJ06-L-Green"
+ ],
+ [
+ "MJ06-L-Purple"
+ ],
+ [
+ "MJ06-XL-Blue"
+ ],
+ [
+ "MJ06-XL-Green"
+ ],
+ [
+ "MJ06-XL-Purple"
+ ],
+ [
+ "MJ06"
+ ],
+ [
+ "MJ03-XS-Black"
+ ],
+ [
+ "MJ03-XS-Green"
+ ],
+ [
+ "MJ03-XS-Red"
+ ],
+ [
+ "MJ03-S-Black"
+ ],
+ [
+ "MJ03-S-Green"
+ ],
+ [
+ "MJ03-S-Red"
+ ],
+ [
+ "MJ03-M-Black"
+ ],
+ [
+ "MJ03-M-Green"
+ ],
+ [
+ "MJ03-M-Red"
+ ],
+ [
+ "MJ03-L-Black"
+ ],
+ [
+ "MJ03-L-Green"
+ ],
+ [
+ "MJ03-L-Red"
+ ],
+ [
+ "MJ03-XL-Black"
+ ],
+ [
+ "MJ03-XL-Green"
+ ],
+ [
+ "MJ03-XL-Red"
+ ],
+ [
+ "MJ03"
+ ],
+ [
+ "MJ12-XS-Black"
+ ],
+ [
+ "MJ12-XS-Blue"
+ ],
+ [
+ "MJ12-XS-Orange"
+ ],
+ [
+ "MJ12-S-Black"
+ ],
+ [
+ "MJ12-S-Blue"
+ ],
+ [
+ "MJ12-S-Orange"
+ ],
+ [
+ "MJ12-M-Black"
+ ],
+ [
+ "MJ12-M-Blue"
+ ],
+ [
+ "MJ12-M-Orange"
+ ],
+ [
+ "MJ12-L-Black"
+ ],
+ [
+ "MJ12-L-Blue"
+ ],
+ [
+ "MJ12-L-Orange"
+ ],
+ [
+ "MJ12-XL-Black"
+ ],
+ [
+ "MJ12-XL-Blue"
+ ],
+ [
+ "MJ12-XL-Orange"
+ ],
+ [
+ "MJ12"
+ ],
+ [
+ "MS04-XS-Black"
+ ],
+ [
+ "MS04-XS-Orange"
+ ],
+ [
+ "MS04-XS-Red"
+ ],
+ [
+ "MS04-S-Black"
+ ],
+ [
+ "MS04-S-Orange"
+ ],
+ [
+ "MS04-S-Red"
+ ],
+ [
+ "MS04-M-Black"
+ ],
+ [
+ "MS04-M-Orange"
+ ],
+ [
+ "MS04-M-Red"
+ ],
+ [
+ "MS04-L-Black"
+ ],
+ [
+ "MS04-L-Orange"
+ ],
+ [
+ "MS04-L-Red"
+ ],
+ [
+ "MS04-XL-Black"
+ ],
+ [
+ "MS04-XL-Orange"
+ ],
+ [
+ "MS04-XL-Red"
+ ],
+ [
+ "MS04"
+ ],
+ [
+ "MS05-XS-Black"
+ ],
+ [
+ "MS05-XS-Blue"
+ ],
+ [
+ "MS05-XS-Purple"
+ ],
+ [
+ "MS05-S-Black"
+ ],
+ [
+ "MS05-S-Blue"
+ ],
+ [
+ "MS05-S-Purple"
+ ],
+ [
+ "MS05-M-Black"
+ ],
+ [
+ "MS05-M-Blue"
+ ],
+ [
+ "MS05-M-Purple"
+ ],
+ [
+ "MS05-L-Black"
+ ],
+ [
+ "MS05-L-Blue"
+ ],
+ [
+ "MS05-L-Purple"
+ ],
+ [
+ "MS05-XL-Black"
+ ],
+ [
+ "MS05-XL-Blue"
+ ],
+ [
+ "MS05-XL-Purple"
+ ],
+ [
+ "MS05"
+ ],
+ [
+ "MS09-XS-Black"
+ ],
+ [
+ "MS09-XS-Blue"
+ ],
+ [
+ "MS09-XS-Red"
+ ],
+ [
+ "MS09-S-Black"
+ ],
+ [
+ "MS09-S-Blue"
+ ],
+ [
+ "MS09-S-Red"
+ ],
+ [
+ "MS09-M-Black"
+ ],
+ [
+ "MS09-M-Blue"
+ ],
+ [
+ "MS09-M-Red"
+ ],
+ [
+ "MS09-L-Black"
+ ],
+ [
+ "MS09-L-Blue"
+ ],
+ [
+ "MS09-L-Red"
+ ],
+ [
+ "MS09-XL-Black"
+ ],
+ [
+ "MS09-XL-Blue"
+ ],
+ [
+ "MS09-XL-Red"
+ ],
+ [
+ "MS09"
+ ],
+ [
+ "MS11-XS-Blue"
+ ],
+ [
+ "MS11-XS-Green"
+ ],
+ [
+ "MS11-XS-Yellow"
+ ],
+ [
+ "MS11-S-Blue"
+ ],
+ [
+ "MS11-S-Green"
+ ],
+ [
+ "MS11-S-Yellow"
+ ],
+ [
+ "MS11-M-Blue"
+ ],
+ [
+ "MS11-M-Green"
+ ],
+ [
+ "MS11-M-Yellow"
+ ],
+ [
+ "MS11-L-Blue"
+ ],
+ [
+ "MS11-L-Green"
+ ],
+ [
+ "MS11-L-Yellow"
+ ],
+ [
+ "MS11-XL-Blue"
+ ],
+ [
+ "MS11-XL-Green"
+ ],
+ [
+ "MS11-XL-Yellow"
+ ],
+ [
+ "MS11"
+ ],
+ [
+ "MS12-XS-Black"
+ ],
+ [
+ "MS12-XS-Blue"
+ ],
+ [
+ "MS12-XS-Red"
+ ],
+ [
+ "MS12-S-Black"
+ ],
+ [
+ "MS12-S-Blue"
+ ],
+ [
+ "MS12-S-Red"
+ ],
+ [
+ "MS12-M-Black"
+ ],
+ [
+ "MS12-M-Blue"
+ ],
+ [
+ "MS12-M-Red"
+ ],
+ [
+ "MS12-L-Black"
+ ],
+ [
+ "MS12-L-Blue"
+ ],
+ [
+ "MS12-L-Red"
+ ],
+ [
+ "MS12-XL-Black"
+ ],
+ [
+ "MS12-XL-Blue"
+ ],
+ [
+ "MS12-XL-Red"
+ ],
+ [
+ "MS12"
+ ],
+ [
+ "MS03-XS-Gray"
+ ],
+ [
+ "MS03-XS-Green"
+ ],
+ [
+ "MS03-XS-Orange"
+ ],
+ [
+ "MS03-S-Gray"
+ ],
+ [
+ "MS03-S-Green"
+ ],
+ [
+ "MS03-S-Orange"
+ ],
+ [
+ "MS03-M-Gray"
+ ],
+ [
+ "MS03-M-Green"
+ ],
+ [
+ "MS03-M-Orange"
+ ],
+ [
+ "MS03-L-Gray"
+ ],
+ [
+ "MS03-L-Green"
+ ],
+ [
+ "MS03-L-Orange"
+ ],
+ [
+ "MS03-XL-Gray"
+ ],
+ [
+ "MS03-XL-Green"
+ ],
+ [
+ "MS03-XL-Orange"
+ ],
+ [
+ "MS03"
+ ],
+ [
+ "MS06-XS-Blue"
+ ],
+ [
+ "MS06-XS-Green"
+ ],
+ [
+ "MS06-XS-Yellow"
+ ],
+ [
+ "MS06-S-Blue"
+ ],
+ [
+ "MS06-S-Green"
+ ],
+ [
+ "MS06-S-Yellow"
+ ],
+ [
+ "MS06-M-Blue"
+ ],
+ [
+ "MS06-M-Green"
+ ],
+ [
+ "MS06-M-Yellow"
+ ],
+ [
+ "MS06-L-Blue"
+ ],
+ [
+ "MS06-L-Green"
+ ],
+ [
+ "MS06-L-Yellow"
+ ],
+ [
+ "MS06-XL-Blue"
+ ],
+ [
+ "MS06-XL-Green"
+ ],
+ [
+ "MS06-XL-Yellow"
+ ],
+ [
+ "MS06"
+ ],
+ [
+ "MS01-XS-Black"
+ ],
+ [
+ "MS01-XS-Brown"
+ ],
+ [
+ "MS01-XS-Yellow"
+ ],
+ [
+ "MS01-S-Black"
+ ],
+ [
+ "MS01-S-Brown"
+ ],
+ [
+ "MS01-S-Yellow"
+ ],
+ [
+ "MS01-M-Black"
+ ],
+ [
+ "MS01-M-Brown"
+ ],
+ [
+ "MS01-M-Yellow"
+ ],
+ [
+ "MS01-L-Black"
+ ],
+ [
+ "MS01-L-Brown"
+ ],
+ [
+ "MS01-L-Yellow"
+ ],
+ [
+ "MS01-XL-Black"
+ ],
+ [
+ "MS01-XL-Brown"
+ ],
+ [
+ "MS01-XL-Yellow"
+ ],
+ [
+ "MS01"
+ ],
+ [
+ "MS02-XS-Black"
+ ],
+ [
+ "MS02-XS-Blue"
+ ],
+ [
+ "MS02-XS-Gray"
+ ],
+ [
+ "MS02-S-Black"
+ ],
+ [
+ "MS02-S-Blue"
+ ],
+ [
+ "MS02-S-Gray"
+ ],
+ [
+ "MS02-M-Black"
+ ],
+ [
+ "MS02-M-Blue"
+ ],
+ [
+ "MS02-M-Gray"
+ ],
+ [
+ "MS02-L-Black"
+ ],
+ [
+ "MS02-L-Blue"
+ ],
+ [
+ "MS02-L-Gray"
+ ],
+ [
+ "MS02-XL-Black"
+ ],
+ [
+ "MS02-XL-Blue"
+ ],
+ [
+ "MS02-XL-Gray"
+ ],
+ [
+ "MS02"
+ ],
+ [
+ "MS10-XS-Black"
+ ],
+ [
+ "MS10-XS-Blue"
+ ],
+ [
+ "MS10-XS-Red"
+ ],
+ [
+ "MS10-S-Black"
+ ],
+ [
+ "MS10-S-Blue"
+ ],
+ [
+ "MS10-S-Red"
+ ],
+ [
+ "MS10-M-Black"
+ ],
+ [
+ "MS10-M-Blue"
+ ],
+ [
+ "MS10-M-Red"
+ ],
+ [
+ "MS10-L-Black"
+ ],
+ [
+ "MS10-L-Blue"
+ ],
+ [
+ "MS10-L-Red"
+ ],
+ [
+ "MS10-XL-Black"
+ ],
+ [
+ "MS10-XL-Blue"
+ ],
+ [
+ "MS10-XL-Red"
+ ],
+ [
+ "MS10"
+ ],
+ [
+ "MS07-XS-Black"
+ ],
+ [
+ "MS07-XS-Green"
+ ],
+ [
+ "MS07-XS-White"
+ ],
+ [
+ "MS07-S-Black"
+ ],
+ [
+ "MS07-S-Green"
+ ],
+ [
+ "MS07-S-White"
+ ],
+ [
+ "MS07-M-Black"
+ ],
+ [
+ "MS07-M-Green"
+ ],
+ [
+ "MS07-M-White"
+ ],
+ [
+ "MS07-L-Black"
+ ],
+ [
+ "MS07-L-Green"
+ ],
+ [
+ "MS07-L-White"
+ ],
+ [
+ "MS07-XL-Black"
+ ],
+ [
+ "MS07-XL-Green"
+ ],
+ [
+ "MS07-XL-White"
+ ],
+ [
+ "MS07"
+ ],
+ [
+ "MS08-XS-Black"
+ ],
+ [
+ "MS08-XS-Blue"
+ ],
+ [
+ "MS08-XS-Red"
+ ],
+ [
+ "MS08-S-Black"
+ ],
+ [
+ "MS08-S-Blue"
+ ],
+ [
+ "MS08-S-Red"
+ ],
+ [
+ "MS08-M-Black"
+ ],
+ [
+ "MS08-M-Blue"
+ ],
+ [
+ "MS08-M-Red"
+ ],
+ [
+ "MS08-L-Black"
+ ],
+ [
+ "MS08-L-Blue"
+ ],
+ [
+ "MS08-L-Red"
+ ],
+ [
+ "MS08-XL-Black"
+ ],
+ [
+ "MS08-XL-Blue"
+ ],
+ [
+ "MS08-XL-Red"
+ ],
+ [
+ "MS08"
+ ],
+ [
+ "MT01-XS-Gray"
+ ],
+ [
+ "MT01-XS-Orange"
+ ],
+ [
+ "MT01-XS-Red"
+ ],
+ [
+ "MT01-S-Gray"
+ ],
+ [
+ "MT01-S-Orange"
+ ],
+ [
+ "MT01-S-Red"
+ ],
+ [
+ "MT01-M-Gray"
+ ],
+ [
+ "MT01-M-Orange"
+ ],
+ [
+ "MT01-M-Red"
+ ],
+ [
+ "MT01-L-Gray"
+ ],
+ [
+ "MT01-L-Orange"
+ ],
+ [
+ "MT01-L-Red"
+ ],
+ [
+ "MT01-XL-Gray"
+ ],
+ [
+ "MT01-XL-Orange"
+ ],
+ [
+ "MT01-XL-Red"
+ ],
+ [
+ "MT01"
+ ],
+ [
+ "MT02-XS-Gray"
+ ],
+ [
+ "MT02-XS-Red"
+ ],
+ [
+ "MT02-XS-White"
+ ],
+ [
+ "MT02-S-Gray"
+ ],
+ [
+ "MT02-S-Red"
+ ],
+ [
+ "MT02-S-White"
+ ],
+ [
+ "MT02-M-Gray"
+ ],
+ [
+ "MT02-M-Red"
+ ],
+ [
+ "MT02-M-White"
+ ],
+ [
+ "MT02-L-Gray"
+ ],
+ [
+ "MT02-L-Red"
+ ],
+ [
+ "MT02-L-White"
+ ],
+ [
+ "MT02-XL-Gray"
+ ],
+ [
+ "MT02-XL-Red"
+ ],
+ [
+ "MT02-XL-White"
+ ],
+ [
+ "MT02"
+ ],
+ [
+ "MT03-XS-Blue"
+ ],
+ [
+ "MT03-XS-Red"
+ ],
+ [
+ "MT03-XS-Yellow"
+ ],
+ [
+ "MT03-S-Blue"
+ ],
+ [
+ "MT03-S-Red"
+ ],
+ [
+ "MT03-S-Yellow"
+ ],
+ [
+ "MT03-M-Blue"
+ ],
+ [
+ "MT03-M-Red"
+ ],
+ [
+ "MT03-M-Yellow"
+ ],
+ [
+ "MT03-L-Blue"
+ ],
+ [
+ "MT03-L-Red"
+ ],
+ [
+ "MT03-L-Yellow"
+ ],
+ [
+ "MT03-XL-Blue"
+ ],
+ [
+ "MT03-XL-Red"
+ ],
+ [
+ "MT03-XL-Yellow"
+ ],
+ [
+ "MT03"
+ ],
+ [
+ "MT04-XS-Blue"
+ ],
+ [
+ "MT04-S-Blue"
+ ],
+ [
+ "MT04-M-Blue"
+ ],
+ [
+ "MT04-L-Blue"
+ ],
+ [
+ "MT04-XL-Blue"
+ ],
+ [
+ "MT04"
+ ],
+ [
+ "MT05-XS-Blue"
+ ],
+ [
+ "MT05-S-Blue"
+ ],
+ [
+ "MT05-M-Blue"
+ ],
+ [
+ "MT05-L-Blue"
+ ],
+ [
+ "MT05-XL-Blue"
+ ],
+ [
+ "MT05"
+ ],
+ [
+ "MT06-XS-Black"
+ ],
+ [
+ "MT06-S-Black"
+ ],
+ [
+ "MT06-M-Black"
+ ],
+ [
+ "MT06-L-Black"
+ ],
+ [
+ "MT06-XL-Black"
+ ],
+ [
+ "MT06"
+ ],
+ [
+ "MT07-XS-Gray"
+ ],
+ [
+ "MT07-S-Gray"
+ ],
+ [
+ "MT07-M-Gray"
+ ],
+ [
+ "MT07-L-Gray"
+ ],
+ [
+ "MT07-XL-Gray"
+ ],
+ [
+ "MT07"
+ ],
+ [
+ "MT08-XS-Green"
+ ],
+ [
+ "MT08-S-Green"
+ ],
+ [
+ "MT08-M-Green"
+ ],
+ [
+ "MT08-L-Green"
+ ],
+ [
+ "MT08-XL-Green"
+ ],
+ [
+ "MT08"
+ ],
+ [
+ "MT09-XS-Blue"
+ ],
+ [
+ "MT09-S-Blue"
+ ],
+ [
+ "MT09-M-Blue"
+ ],
+ [
+ "MT09-L-Blue"
+ ],
+ [
+ "MT09-XL-Blue"
+ ],
+ [
+ "MT09"
+ ],
+ [
+ "MT10-XS-Yellow"
+ ],
+ [
+ "MT10-S-Yellow"
+ ],
+ [
+ "MT10-M-Yellow"
+ ],
+ [
+ "MT10-L-Yellow"
+ ],
+ [
+ "MT10-XL-Yellow"
+ ],
+ [
+ "MT10"
+ ],
+ [
+ "MT11-XS-Blue"
+ ],
+ [
+ "MT11-S-Blue"
+ ],
+ [
+ "MT11-M-Blue"
+ ],
+ [
+ "MT11-L-Blue"
+ ],
+ [
+ "MT11-XL-Blue"
+ ],
+ [
+ "MT11"
+ ],
+ [
+ "MT12-XS-Blue"
+ ],
+ [
+ "MT12-S-Blue"
+ ],
+ [
+ "MT12-M-Blue"
+ ],
+ [
+ "MT12-L-Blue"
+ ],
+ [
+ "MT12-XL-Blue"
+ ],
+ [
+ "MT12"
+ ],
+ [
+ "WH01-XS-Green"
+ ],
+ [
+ "WH01-XS-Orange"
+ ],
+ [
+ "WH01-XS-Purple"
+ ],
+ [
+ "WH01-S-Green"
+ ],
+ [
+ "WH01-S-Orange"
+ ],
+ [
+ "WH01-S-Purple"
+ ],
+ [
+ "WH01-M-Green"
+ ],
+ [
+ "WH01-M-Orange"
+ ],
+ [
+ "WH01-M-Purple"
+ ],
+ [
+ "WH01-L-Green"
+ ],
+ [
+ "WH01-L-Orange"
+ ],
+ [
+ "WH01-L-Purple"
+ ],
+ [
+ "WH01-XL-Green"
+ ],
+ [
+ "WH01-XL-Orange"
+ ],
+ [
+ "WH01-XL-Purple"
+ ],
+ [
+ "WH01"
+ ],
+ [
+ "WH02-XS-Blue"
+ ],
+ [
+ "WH02-XS-Green"
+ ],
+ [
+ "WH02-XS-Orange"
+ ],
+ [
+ "WH02-S-Blue"
+ ],
+ [
+ "WH02-S-Green"
+ ],
+ [
+ "WH02-S-Orange"
+ ],
+ [
+ "WH02-M-Blue"
+ ],
+ [
+ "WH02-M-Green"
+ ],
+ [
+ "WH02-M-Orange"
+ ],
+ [
+ "WH02-L-Blue"
+ ],
+ [
+ "WH02-L-Green"
+ ],
+ [
+ "WH02-L-Orange"
+ ],
+ [
+ "WH02-XL-Blue"
+ ],
+ [
+ "WH02-XL-Green"
+ ],
+ [
+ "WH02-XL-Orange"
+ ],
+ [
+ "WH02"
+ ],
+ [
+ "WH03-XS-Green"
+ ],
+ [
+ "WH03-XS-Purple"
+ ],
+ [
+ "WH03-XS-Red"
+ ],
+ [
+ "WH03-S-Green"
+ ],
+ [
+ "WH03-S-Purple"
+ ],
+ [
+ "WH03-S-Red"
+ ],
+ [
+ "WH03-M-Green"
+ ],
+ [
+ "WH03-M-Purple"
+ ],
+ [
+ "WH03-M-Red"
+ ],
+ [
+ "WH03-L-Green"
+ ],
+ [
+ "WH03-L-Purple"
+ ],
+ [
+ "WH03-L-Red"
+ ],
+ [
+ "WH03-XL-Green"
+ ],
+ [
+ "WH03-XL-Purple"
+ ],
+ [
+ "WH03-XL-Red"
+ ],
+ [
+ "WH03"
+ ],
+ [
+ "WH04-XS-Blue"
+ ],
+ [
+ "WH04-XS-Orange"
+ ],
+ [
+ "WH04-XS-Purple"
+ ],
+ [
+ "WH04-S-Blue"
+ ],
+ [
+ "WH04-S-Orange"
+ ],
+ [
+ "WH04-S-Purple"
+ ],
+ [
+ "WH04-M-Blue"
+ ],
+ [
+ "WH04-M-Orange"
+ ],
+ [
+ "WH04-M-Purple"
+ ],
+ [
+ "WH04-L-Blue"
+ ],
+ [
+ "WH04-L-Orange"
+ ],
+ [
+ "WH04-L-Purple"
+ ],
+ [
+ "WH04-XL-Blue"
+ ],
+ [
+ "WH04-XL-Orange"
+ ],
+ [
+ "WH04-XL-Purple"
+ ],
+ [
+ "WH04"
+ ],
+ [
+ "WH05-XS-Orange"
+ ],
+ [
+ "WH05-XS-Purple"
+ ],
+ [
+ "WH05-XS-White"
+ ],
+ [
+ "WH05-S-Orange"
+ ],
+ [
+ "WH05-S-Purple"
+ ],
+ [
+ "WH05-S-White"
+ ],
+ [
+ "WH05-M-Orange"
+ ],
+ [
+ "WH05-M-Purple"
+ ],
+ [
+ "WH05-M-White"
+ ],
+ [
+ "WH05-L-Orange"
+ ],
+ [
+ "WH05-L-Purple"
+ ],
+ [
+ "WH05-L-White"
+ ],
+ [
+ "WH05-XL-Orange"
+ ],
+ [
+ "WH05-XL-Purple"
+ ],
+ [
+ "WH05-XL-White"
+ ],
+ [
+ "WH05"
+ ],
+ [
+ "WH06-XS-Purple"
+ ],
+ [
+ "WH06-S-Purple"
+ ],
+ [
+ "WH06-M-Purple"
+ ],
+ [
+ "WH06-L-Purple"
+ ],
+ [
+ "WH06-XL-Purple"
+ ],
+ [
+ "WH06"
+ ],
+ [
+ "WH07-XS-Gray"
+ ],
+ [
+ "WH07-XS-Purple"
+ ],
+ [
+ "WH07-XS-White"
+ ],
+ [
+ "WH07-S-Gray"
+ ],
+ [
+ "WH07-S-Purple"
+ ],
+ [
+ "WH07-S-White"
+ ],
+ [
+ "WH07-M-Gray"
+ ],
+ [
+ "WH07-M-Purple"
+ ],
+ [
+ "WH07-M-White"
+ ],
+ [
+ "WH07-L-Gray"
+ ],
+ [
+ "WH07-L-Purple"
+ ],
+ [
+ "WH07-L-White"
+ ],
+ [
+ "WH07-XL-Gray"
+ ],
+ [
+ "WH07-XL-Purple"
+ ],
+ [
+ "WH07-XL-White"
+ ],
+ [
+ "WH07"
+ ],
+ [
+ "WH08-XS-Orange"
+ ],
+ [
+ "WH08-XS-Purple"
+ ],
+ [
+ "WH08-XS-White"
+ ],
+ [
+ "WH08-S-Orange"
+ ],
+ [
+ "WH08-S-Purple"
+ ],
+ [
+ "WH08-S-White"
+ ],
+ [
+ "WH08-M-Orange"
+ ],
+ [
+ "WH08-M-Purple"
+ ],
+ [
+ "WH08-M-White"
+ ],
+ [
+ "WH08-L-Orange"
+ ],
+ [
+ "WH08-L-Purple"
+ ],
+ [
+ "WH08-L-White"
+ ],
+ [
+ "WH08-XL-Orange"
+ ],
+ [
+ "WH08-XL-Purple"
+ ],
+ [
+ "WH08-XL-White"
+ ],
+ [
+ "WH08"
+ ],
+ [
+ "WH09-XS-Green"
+ ],
+ [
+ "WH09-XS-Purple"
+ ],
+ [
+ "WH09-XS-Red"
+ ],
+ [
+ "WH09-S-Green"
+ ],
+ [
+ "WH09-S-Purple"
+ ],
+ [
+ "WH09-S-Red"
+ ],
+ [
+ "WH09-M-Green"
+ ],
+ [
+ "WH09-M-Purple"
+ ],
+ [
+ "WH09-M-Red"
+ ],
+ [
+ "WH09-L-Green"
+ ],
+ [
+ "WH09-L-Purple"
+ ],
+ [
+ "WH09-L-Red"
+ ],
+ [
+ "WH09-XL-Green"
+ ],
+ [
+ "WH09-XL-Purple"
+ ],
+ [
+ "WH09-XL-Red"
+ ],
+ [
+ "WH09"
+ ],
+ [
+ "WH10-XS-Blue"
+ ],
+ [
+ "WH10-XS-Gray"
+ ],
+ [
+ "WH10-XS-Yellow"
+ ],
+ [
+ "WH10-S-Blue"
+ ],
+ [
+ "WH10-S-Gray"
+ ],
+ [
+ "WH10-S-Yellow"
+ ],
+ [
+ "WH10-M-Blue"
+ ],
+ [
+ "WH10-M-Gray"
+ ],
+ [
+ "WH10-M-Yellow"
+ ],
+ [
+ "WH10-L-Blue"
+ ],
+ [
+ "WH10-L-Gray"
+ ],
+ [
+ "WH10-L-Yellow"
+ ],
+ [
+ "WH10-XL-Blue"
+ ],
+ [
+ "WH10-XL-Gray"
+ ],
+ [
+ "WH10-XL-Yellow"
+ ],
+ [
+ "WH10"
+ ],
+ [
+ "WH11-XS-Blue"
+ ],
+ [
+ "WH11-XS-Green"
+ ],
+ [
+ "WH11-XS-Orange"
+ ],
+ [
+ "WH11-S-Blue"
+ ],
+ [
+ "WH11-S-Green"
+ ],
+ [
+ "WH11-S-Orange"
+ ],
+ [
+ "WH11-M-Blue"
+ ],
+ [
+ "WH11-M-Green"
+ ],
+ [
+ "WH11-M-Orange"
+ ],
+ [
+ "WH11-L-Blue"
+ ],
+ [
+ "WH11-L-Green"
+ ],
+ [
+ "WH11-L-Orange"
+ ],
+ [
+ "WH11-XL-Blue"
+ ],
+ [
+ "WH11-XL-Green"
+ ],
+ [
+ "WH11-XL-Orange"
+ ],
+ [
+ "WH11"
+ ],
+ [
+ "WH12-XS-Gray"
+ ],
+ [
+ "WH12-XS-Green"
+ ],
+ [
+ "WH12-XS-Purple"
+ ],
+ [
+ "WH12-S-Gray"
+ ],
+ [
+ "WH12-S-Green"
+ ],
+ [
+ "WH12-S-Purple"
+ ],
+ [
+ "WH12-M-Gray"
+ ],
+ [
+ "WH12-M-Green"
+ ],
+ [
+ "WH12-M-Purple"
+ ],
+ [
+ "WH12-L-Gray"
+ ],
+ [
+ "WH12-L-Green"
+ ],
+ [
+ "WH12-L-Purple"
+ ],
+ [
+ "WH12-XL-Gray"
+ ],
+ [
+ "WH12-XL-Green"
+ ],
+ [
+ "WH12-XL-Purple"
+ ],
+ [
+ "WH12"
+ ],
+ [
+ "WJ01-S-Blue"
+ ],
+ [
+ "WJ01-S-Red"
+ ],
+ [
+ "WJ01-S-Yellow"
+ ],
+ [
+ "WJ01-M-Blue"
+ ],
+ [
+ "WJ01-M-Red"
+ ],
+ [
+ "WJ01-M-Yellow"
+ ],
+ [
+ "WJ01-L-Blue"
+ ],
+ [
+ "WJ01-L-Red"
+ ],
+ [
+ "WJ01-L-Yellow"
+ ],
+ [
+ "WJ01"
+ ],
+ [
+ "WJ02-XS-Black"
+ ],
+ [
+ "WJ02-XS-Blue"
+ ],
+ [
+ "WJ02-XS-Gray"
+ ],
+ [
+ "WJ02-S-Black"
+ ],
+ [
+ "WJ02-S-Blue"
+ ],
+ [
+ "WJ02-S-Gray"
+ ],
+ [
+ "WJ02-M-Black"
+ ],
+ [
+ "WJ02-M-Blue"
+ ],
+ [
+ "WJ02-M-Gray"
+ ],
+ [
+ "WJ02-L-Black"
+ ],
+ [
+ "WJ02-L-Blue"
+ ],
+ [
+ "WJ02-L-Gray"
+ ],
+ [
+ "WJ02-XL-Black"
+ ],
+ [
+ "WJ02-XL-Blue"
+ ],
+ [
+ "WJ02-XL-Gray"
+ ],
+ [
+ "WJ02"
+ ],
+ [
+ "WJ03-XS-Blue"
+ ],
+ [
+ "WJ03-XS-Orange"
+ ],
+ [
+ "WJ03-XS-Red"
+ ],
+ [
+ "WJ03-S-Blue"
+ ],
+ [
+ "WJ03-S-Orange"
+ ],
+ [
+ "WJ03-S-Red"
+ ],
+ [
+ "WJ03-M-Blue"
+ ],
+ [
+ "WJ03-M-Orange"
+ ],
+ [
+ "WJ03-M-Red"
+ ],
+ [
+ "WJ03-L-Blue"
+ ],
+ [
+ "WJ03-L-Orange"
+ ],
+ [
+ "WJ03-L-Red"
+ ],
+ [
+ "WJ03-XL-Blue"
+ ],
+ [
+ "WJ03-XL-Orange"
+ ],
+ [
+ "WJ03-XL-Red"
+ ],
+ [
+ "WJ03"
+ ],
+ [
+ "WJ04-XS-Orange"
+ ],
+ [
+ "WJ04-XS-Red"
+ ],
+ [
+ "WJ04-XS-White"
+ ],
+ [
+ "WJ04-S-Orange"
+ ],
+ [
+ "WJ04-S-Red"
+ ],
+ [
+ "WJ04-S-White"
+ ],
+ [
+ "WJ04-M-Orange"
+ ],
+ [
+ "WJ04-M-Red"
+ ],
+ [
+ "WJ04-M-White"
+ ],
+ [
+ "WJ04-L-Orange"
+ ],
+ [
+ "WJ04-L-Red"
+ ],
+ [
+ "WJ04-L-White"
+ ],
+ [
+ "WJ04-XL-Orange"
+ ],
+ [
+ "WJ04-XL-Red"
+ ],
+ [
+ "WJ04-XL-White"
+ ],
+ [
+ "WJ04"
+ ],
+ [
+ "WJ05-XS-Brown"
+ ],
+ [
+ "WJ05-XS-Green"
+ ],
+ [
+ "WJ05-XS-Red"
+ ],
+ [
+ "WJ05-S-Brown"
+ ],
+ [
+ "WJ05-S-Green"
+ ],
+ [
+ "WJ05-S-Red"
+ ],
+ [
+ "WJ05-M-Brown"
+ ],
+ [
+ "WJ05-M-Green"
+ ],
+ [
+ "WJ05-M-Red"
+ ],
+ [
+ "WJ05-L-Brown"
+ ],
+ [
+ "WJ05-L-Green"
+ ],
+ [
+ "WJ05-L-Red"
+ ],
+ [
+ "WJ05-XL-Brown"
+ ],
+ [
+ "WJ05-XL-Green"
+ ],
+ [
+ "WJ05-XL-Red"
+ ],
+ [
+ "WJ05"
+ ],
+ [
+ "WJ07-XS-Orange"
+ ],
+ [
+ "WJ07-XS-Purple"
+ ],
+ [
+ "WJ07-XS-Red"
+ ],
+ [
+ "WJ07-S-Orange"
+ ],
+ [
+ "WJ07-S-Purple"
+ ],
+ [
+ "WJ07-S-Red"
+ ],
+ [
+ "WJ07-M-Orange"
+ ],
+ [
+ "WJ07-M-Purple"
+ ],
+ [
+ "WJ07-M-Red"
+ ],
+ [
+ "WJ07-L-Orange"
+ ],
+ [
+ "WJ07-L-Purple"
+ ],
+ [
+ "WJ07-L-Red"
+ ],
+ [
+ "WJ07-XL-Orange"
+ ],
+ [
+ "WJ07-XL-Purple"
+ ],
+ [
+ "WJ07-XL-Red"
+ ],
+ [
+ "WJ07"
+ ],
+ [
+ "WJ08-XS-Gray"
+ ],
+ [
+ "WJ08-XS-Orange"
+ ],
+ [
+ "WJ08-XS-Purple"
+ ],
+ [
+ "WJ08-S-Gray"
+ ],
+ [
+ "WJ08-S-Orange"
+ ],
+ [
+ "WJ08-S-Purple"
+ ],
+ [
+ "WJ08-M-Gray"
+ ],
+ [
+ "WJ08-M-Orange"
+ ],
+ [
+ "WJ08-M-Purple"
+ ],
+ [
+ "WJ08-L-Gray"
+ ],
+ [
+ "WJ08-L-Orange"
+ ],
+ [
+ "WJ08-L-Purple"
+ ],
+ [
+ "WJ08-XL-Gray"
+ ],
+ [
+ "WJ08-XL-Orange"
+ ],
+ [
+ "WJ08-XL-Purple"
+ ],
+ [
+ "WJ08"
+ ],
+ [
+ "WJ09-XS-Blue"
+ ],
+ [
+ "WJ09-XS-Gray"
+ ],
+ [
+ "WJ09-XS-Green"
+ ],
+ [
+ "WJ09-S-Blue"
+ ],
+ [
+ "WJ09-S-Gray"
+ ],
+ [
+ "WJ09-S-Green"
+ ],
+ [
+ "WJ09-M-Blue"
+ ],
+ [
+ "WJ09-M-Gray"
+ ],
+ [
+ "WJ09-M-Green"
+ ],
+ [
+ "WJ09-L-Blue"
+ ],
+ [
+ "WJ09-L-Gray"
+ ],
+ [
+ "WJ09-L-Green"
+ ],
+ [
+ "WJ09-XL-Blue"
+ ],
+ [
+ "WJ09-XL-Gray"
+ ],
+ [
+ "WJ09-XL-Green"
+ ],
+ [
+ "WJ09"
+ ],
+ [
+ "WJ10-XS-Black"
+ ],
+ [
+ "WJ10-XS-Orange"
+ ],
+ [
+ "WJ10-XS-Yellow"
+ ],
+ [
+ "WJ10-S-Black"
+ ],
+ [
+ "WJ10-S-Orange"
+ ],
+ [
+ "WJ10-S-Yellow"
+ ],
+ [
+ "WJ10-M-Black"
+ ],
+ [
+ "WJ10-M-Orange"
+ ],
+ [
+ "WJ10-M-Yellow"
+ ],
+ [
+ "WJ10-L-Black"
+ ],
+ [
+ "WJ10-L-Orange"
+ ],
+ [
+ "WJ10-L-Yellow"
+ ],
+ [
+ "WJ10-XL-Black"
+ ],
+ [
+ "WJ10-XL-Orange"
+ ],
+ [
+ "WJ10-XL-Yellow"
+ ],
+ [
+ "WJ10"
+ ],
+ [
+ "WJ11-XS-Black"
+ ],
+ [
+ "WJ11-XS-Blue"
+ ],
+ [
+ "WJ11-XS-Orange"
+ ],
+ [
+ "WJ11-S-Black"
+ ],
+ [
+ "WJ11-S-Blue"
+ ],
+ [
+ "WJ11-S-Orange"
+ ],
+ [
+ "WJ11-M-Black"
+ ],
+ [
+ "WJ11-M-Blue"
+ ],
+ [
+ "WJ11-M-Orange"
+ ],
+ [
+ "WJ11-L-Black"
+ ],
+ [
+ "WJ11-L-Blue"
+ ],
+ [
+ "WJ11-L-Orange"
+ ],
+ [
+ "WJ11-XL-Black"
+ ],
+ [
+ "WJ11-XL-Blue"
+ ],
+ [
+ "WJ11-XL-Orange"
+ ],
+ [
+ "WJ11"
+ ],
+ [
+ "WJ06-XS-Blue"
+ ],
+ [
+ "WJ06-XS-Green"
+ ],
+ [
+ "WJ06-XS-Purple"
+ ],
+ [
+ "WJ06-S-Blue"
+ ],
+ [
+ "WJ06-S-Green"
+ ],
+ [
+ "WJ06-S-Purple"
+ ],
+ [
+ "WJ06-M-Blue"
+ ],
+ [
+ "WJ06-M-Green"
+ ],
+ [
+ "WJ06-M-Purple"
+ ],
+ [
+ "WJ06-L-Blue"
+ ],
+ [
+ "WJ06-L-Green"
+ ],
+ [
+ "WJ06-L-Purple"
+ ],
+ [
+ "WJ06-XL-Blue"
+ ],
+ [
+ "WJ06-XL-Green"
+ ],
+ [
+ "WJ06-XL-Purple"
+ ],
+ [
+ "WJ06"
+ ],
+ [
+ "WJ12-XS-Black"
+ ],
+ [
+ "WJ12-XS-Blue"
+ ],
+ [
+ "WJ12-XS-Purple"
+ ],
+ [
+ "WJ12-S-Black"
+ ],
+ [
+ "WJ12-S-Blue"
+ ],
+ [
+ "WJ12-S-Purple"
+ ],
+ [
+ "WJ12-M-Black"
+ ],
+ [
+ "WJ12-M-Blue"
+ ],
+ [
+ "WJ12-M-Purple"
+ ],
+ [
+ "WJ12-L-Black"
+ ],
+ [
+ "WJ12-L-Blue"
+ ],
+ [
+ "WJ12-L-Purple"
+ ],
+ [
+ "WJ12-XL-Black"
+ ],
+ [
+ "WJ12-XL-Blue"
+ ],
+ [
+ "WJ12-XL-Purple"
+ ],
+ [
+ "WJ12"
+ ],
+ [
+ "WS02-XS-Blue"
+ ],
+ [
+ "WS02-XS-Green"
+ ],
+ [
+ "WS02-XS-Red"
+ ],
+ [
+ "WS02-S-Blue"
+ ],
+ [
+ "WS02-S-Green"
+ ],
+ [
+ "WS02-S-Red"
+ ],
+ [
+ "WS02-M-Blue"
+ ],
+ [
+ "WS02-M-Green"
+ ],
+ [
+ "WS02-M-Red"
+ ],
+ [
+ "WS02-L-Blue"
+ ],
+ [
+ "WS02-L-Green"
+ ],
+ [
+ "WS02-L-Red"
+ ],
+ [
+ "WS02-XL-Blue"
+ ],
+ [
+ "WS02-XL-Green"
+ ],
+ [
+ "WS02-XL-Red"
+ ],
+ [
+ "WS02"
+ ],
+ [
+ "WS03-XS-Blue"
+ ],
+ [
+ "WS03-XS-Green"
+ ],
+ [
+ "WS03-XS-Red"
+ ],
+ [
+ "WS03-S-Blue"
+ ],
+ [
+ "WS03-S-Green"
+ ],
+ [
+ "WS03-S-Red"
+ ],
+ [
+ "WS03-M-Blue"
+ ],
+ [
+ "WS03-M-Green"
+ ],
+ [
+ "WS03-M-Red"
+ ],
+ [
+ "WS03-L-Blue"
+ ],
+ [
+ "WS03-L-Green"
+ ],
+ [
+ "WS03-L-Red"
+ ],
+ [
+ "WS03-XL-Blue"
+ ],
+ [
+ "WS03-XL-Green"
+ ],
+ [
+ "WS03-XL-Red"
+ ],
+ [
+ "WS03"
+ ],
+ [
+ "WS04-XS-Blue"
+ ],
+ [
+ "WS04-XS-Green"
+ ],
+ [
+ "WS04-XS-Red"
+ ],
+ [
+ "WS04-S-Blue"
+ ],
+ [
+ "WS04-S-Green"
+ ],
+ [
+ "WS04-S-Red"
+ ],
+ [
+ "WS04-M-Blue"
+ ],
+ [
+ "WS04-M-Green"
+ ],
+ [
+ "WS04-M-Red"
+ ],
+ [
+ "WS04-L-Blue"
+ ],
+ [
+ "WS04-L-Green"
+ ],
+ [
+ "WS04-L-Red"
+ ],
+ [
+ "WS04-XL-Blue"
+ ],
+ [
+ "WS04-XL-Green"
+ ],
+ [
+ "WS04-XL-Red"
+ ],
+ [
+ "WS04"
+ ],
+ [
+ "WS06-XS-Gray"
+ ],
+ [
+ "WS06-XS-Purple"
+ ],
+ [
+ "WS06-XS-Red"
+ ],
+ [
+ "WS06-S-Gray"
+ ],
+ [
+ "WS06-S-Purple"
+ ],
+ [
+ "WS06-S-Red"
+ ],
+ [
+ "WS06-M-Gray"
+ ],
+ [
+ "WS06-M-Purple"
+ ],
+ [
+ "WS06-M-Red"
+ ],
+ [
+ "WS06-L-Gray"
+ ],
+ [
+ "WS06-L-Purple"
+ ],
+ [
+ "WS06-L-Red"
+ ],
+ [
+ "WS06-XL-Gray"
+ ],
+ [
+ "WS06-XL-Purple"
+ ],
+ [
+ "WS06-XL-Red"
+ ],
+ [
+ "WS06"
+ ],
+ [
+ "WS07-XS-Black"
+ ],
+ [
+ "WS07-XS-White"
+ ],
+ [
+ "WS07-XS-Yellow"
+ ],
+ [
+ "WS07-S-Black"
+ ],
+ [
+ "WS07-S-White"
+ ],
+ [
+ "WS07-S-Yellow"
+ ],
+ [
+ "WS07-M-Black"
+ ],
+ [
+ "WS07-M-White"
+ ],
+ [
+ "WS07-M-Yellow"
+ ],
+ [
+ "WS07-L-Black"
+ ],
+ [
+ "WS07-L-White"
+ ],
+ [
+ "WS07-L-Yellow"
+ ],
+ [
+ "WS07-XL-Black"
+ ],
+ [
+ "WS07-XL-White"
+ ],
+ [
+ "WS07-XL-Yellow"
+ ],
+ [
+ "WS07"
+ ],
+ [
+ "WS08-XS-Black"
+ ],
+ [
+ "WS08-XS-Blue"
+ ],
+ [
+ "WS08-XS-Red"
+ ],
+ [
+ "WS08-S-Black"
+ ],
+ [
+ "WS08-S-Blue"
+ ],
+ [
+ "WS08-S-Red"
+ ],
+ [
+ "WS08-M-Black"
+ ],
+ [
+ "WS08-M-Blue"
+ ],
+ [
+ "WS08-M-Red"
+ ],
+ [
+ "WS08-L-Black"
+ ],
+ [
+ "WS08-L-Blue"
+ ],
+ [
+ "WS08-L-Red"
+ ],
+ [
+ "WS08-XL-Black"
+ ],
+ [
+ "WS08-XL-Blue"
+ ],
+ [
+ "WS08-XL-Red"
+ ],
+ [
+ "WS08"
+ ],
+ [
+ "WS09-XS-Blue"
+ ],
+ [
+ "WS09-XS-Red"
+ ],
+ [
+ "WS09-XS-White"
+ ],
+ [
+ "WS09-S-Blue"
+ ],
+ [
+ "WS09-S-Red"
+ ],
+ [
+ "WS09-S-White"
+ ],
+ [
+ "WS09-M-Blue"
+ ],
+ [
+ "WS09-M-Red"
+ ],
+ [
+ "WS09-M-White"
+ ],
+ [
+ "WS09-L-Blue"
+ ],
+ [
+ "WS09-L-Red"
+ ],
+ [
+ "WS09-L-White"
+ ],
+ [
+ "WS09-XL-Blue"
+ ],
+ [
+ "WS09-XL-Red"
+ ],
+ [
+ "WS09-XL-White"
+ ],
+ [
+ "WS09"
+ ],
+ [
+ "WS10-XS-Green"
+ ],
+ [
+ "WS10-XS-Red"
+ ],
+ [
+ "WS10-XS-Yellow"
+ ],
+ [
+ "WS10-S-Green"
+ ],
+ [
+ "WS10-S-Red"
+ ],
+ [
+ "WS10-S-Yellow"
+ ],
+ [
+ "WS10-M-Green"
+ ],
+ [
+ "WS10-M-Red"
+ ],
+ [
+ "WS10-M-Yellow"
+ ],
+ [
+ "WS10-L-Green"
+ ],
+ [
+ "WS10-L-Red"
+ ],
+ [
+ "WS10-L-Yellow"
+ ],
+ [
+ "WS10-XL-Green"
+ ],
+ [
+ "WS10-XL-Red"
+ ],
+ [
+ "WS10-XL-Yellow"
+ ],
+ [
+ "WS10"
+ ],
+ [
+ "WS11-XS-Green"
+ ],
+ [
+ "WS11-XS-Orange"
+ ],
+ [
+ "WS11-XS-Yellow"
+ ],
+ [
+ "WS11-S-Green"
+ ],
+ [
+ "WS11-S-Orange"
+ ],
+ [
+ "WS11-S-Yellow"
+ ],
+ [
+ "WS11-M-Green"
+ ],
+ [
+ "WS11-M-Orange"
+ ],
+ [
+ "WS11-M-Yellow"
+ ],
+ [
+ "WS11-L-Green"
+ ],
+ [
+ "WS11-L-Orange"
+ ],
+ [
+ "WS11-L-Yellow"
+ ],
+ [
+ "WS11-XL-Green"
+ ],
+ [
+ "WS11-XL-Orange"
+ ],
+ [
+ "WS11-XL-Yellow"
+ ],
+ [
+ "WS11"
+ ],
+ [
+ "WS12-XS-Blue"
+ ],
+ [
+ "WS12-XS-Orange"
+ ],
+ [
+ "WS12-XS-Purple"
+ ],
+ [
+ "WS12-S-Blue"
+ ],
+ [
+ "WS12-S-Orange"
+ ],
+ [
+ "WS12-S-Purple"
+ ],
+ [
+ "WS12-M-Blue"
+ ],
+ [
+ "WS12-M-Orange"
+ ],
+ [
+ "WS12-M-Purple"
+ ],
+ [
+ "WS12-L-Blue"
+ ],
+ [
+ "WS12-L-Orange"
+ ],
+ [
+ "WS12-L-Purple"
+ ],
+ [
+ "WS12-XL-Blue"
+ ],
+ [
+ "WS12-XL-Orange"
+ ],
+ [
+ "WS12-XL-Purple"
+ ],
+ [
+ "WS12"
+ ],
+ [
+ "WS01-XS-Black"
+ ],
+ [
+ "WS01-XS-Green"
+ ],
+ [
+ "WS01-XS-Yellow"
+ ],
+ [
+ "WS01-S-Black"
+ ],
+ [
+ "WS01-S-Green"
+ ],
+ [
+ "WS01-S-Yellow"
+ ],
+ [
+ "WS01-M-Black"
+ ],
+ [
+ "WS01-M-Green"
+ ],
+ [
+ "WS01-M-Yellow"
+ ],
+ [
+ "WS01-L-Black"
+ ],
+ [
+ "WS01-L-Green"
+ ],
+ [
+ "WS01-L-Yellow"
+ ],
+ [
+ "WS01-XL-Black"
+ ],
+ [
+ "WS01-XL-Green"
+ ],
+ [
+ "WS01-XL-Yellow"
+ ],
+ [
+ "WS01"
+ ],
+ [
+ "WS05-XS-Black"
+ ],
+ [
+ "WS05-XS-Orange"
+ ],
+ [
+ "WS05-XS-Yellow"
+ ],
+ [
+ "WS05-S-Black"
+ ],
+ [
+ "WS05-S-Orange"
+ ],
+ [
+ "WS05-S-Yellow"
+ ],
+ [
+ "WS05-M-Black"
+ ],
+ [
+ "WS05-M-Orange"
+ ],
+ [
+ "WS05-M-Yellow"
+ ],
+ [
+ "WS05-L-Black"
+ ],
+ [
+ "WS05-L-Orange"
+ ],
+ [
+ "WS05-L-Yellow"
+ ],
+ [
+ "WS05-XL-Black"
+ ],
+ [
+ "WS05-XL-Orange"
+ ],
+ [
+ "WS05-XL-Yellow"
+ ],
+ [
+ "WS05"
+ ],
+ [
+ "WB01-XS-Black"
+ ],
+ [
+ "WB01-XS-Gray"
+ ],
+ [
+ "WB01-XS-Purple"
+ ],
+ [
+ "WB01-S-Black"
+ ],
+ [
+ "WB01-S-Gray"
+ ],
+ [
+ "WB01-S-Purple"
+ ],
+ [
+ "WB01-M-Black"
+ ],
+ [
+ "WB01-M-Gray"
+ ],
+ [
+ "WB01-M-Purple"
+ ],
+ [
+ "WB01-L-Black"
+ ],
+ [
+ "WB01-L-Gray"
+ ],
+ [
+ "WB01-L-Purple"
+ ],
+ [
+ "WB01-XL-Black"
+ ],
+ [
+ "WB01-XL-Gray"
+ ],
+ [
+ "WB01-XL-Purple"
+ ],
+ [
+ "WB01"
+ ],
+ [
+ "WB02-XS-Blue"
+ ],
+ [
+ "WB02-XS-Orange"
+ ],
+ [
+ "WB02-XS-Yellow"
+ ],
+ [
+ "WB02-S-Blue"
+ ],
+ [
+ "WB02-S-Orange"
+ ],
+ [
+ "WB02-S-Yellow"
+ ],
+ [
+ "WB02-M-Blue"
+ ],
+ [
+ "WB02-M-Orange"
+ ],
+ [
+ "WB02-M-Yellow"
+ ],
+ [
+ "WB02-L-Blue"
+ ],
+ [
+ "WB02-L-Orange"
+ ],
+ [
+ "WB02-L-Yellow"
+ ],
+ [
+ "WB02-XL-Blue"
+ ],
+ [
+ "WB02-XL-Orange"
+ ],
+ [
+ "WB02-XL-Yellow"
+ ],
+ [
+ "WB02"
+ ],
+ [
+ "WB03-XS-Green"
+ ],
+ [
+ "WB03-XS-Red"
+ ],
+ [
+ "WB03-XS-Yellow"
+ ],
+ [
+ "WB03-S-Green"
+ ],
+ [
+ "WB03-S-Red"
+ ],
+ [
+ "WB03-S-Yellow"
+ ],
+ [
+ "WB03-M-Green"
+ ],
+ [
+ "WB03-M-Red"
+ ],
+ [
+ "WB03-M-Yellow"
+ ],
+ [
+ "WB03-L-Green"
+ ],
+ [
+ "WB03-L-Red"
+ ],
+ [
+ "WB03-L-Yellow"
+ ],
+ [
+ "WB03-XL-Green"
+ ],
+ [
+ "WB03-XL-Red"
+ ],
+ [
+ "WB03-XL-Yellow"
+ ],
+ [
+ "WB03"
+ ],
+ [
+ "WB04-XS-Blue"
+ ],
+ [
+ "WB04-XS-Purple"
+ ],
+ [
+ "WB04-XS-Yellow"
+ ],
+ [
+ "WB04-S-Blue"
+ ],
+ [
+ "WB04-S-Purple"
+ ],
+ [
+ "WB04-S-Yellow"
+ ],
+ [
+ "WB04-M-Blue"
+ ],
+ [
+ "WB04-M-Purple"
+ ],
+ [
+ "WB04-M-Yellow"
+ ],
+ [
+ "WB04-L-Blue"
+ ],
+ [
+ "WB04-L-Purple"
+ ],
+ [
+ "WB04-L-Yellow"
+ ],
+ [
+ "WB04-XL-Blue"
+ ],
+ [
+ "WB04-XL-Purple"
+ ],
+ [
+ "WB04-XL-Yellow"
+ ],
+ [
+ "WB04"
+ ],
+ [
+ "WB05-XS-Black"
+ ],
+ [
+ "WB05-XS-Orange"
+ ],
+ [
+ "WB05-XS-Purple"
+ ],
+ [
+ "WB05-S-Black"
+ ],
+ [
+ "WB05-S-Orange"
+ ],
+ [
+ "WB05-S-Purple"
+ ],
+ [
+ "WB05-M-Black"
+ ],
+ [
+ "WB05-M-Orange"
+ ],
+ [
+ "WB05-M-Purple"
+ ],
+ [
+ "WB05-L-Black"
+ ],
+ [
+ "WB05-L-Orange"
+ ],
+ [
+ "WB05-L-Purple"
+ ],
+ [
+ "WB05-XL-Black"
+ ],
+ [
+ "WB05-XL-Orange"
+ ],
+ [
+ "WB05-XL-Purple"
+ ],
+ [
+ "WB05"
+ ],
+ [
+ "WT01-XS-Black"
+ ],
+ [
+ "WT01-XS-Blue"
+ ],
+ [
+ "WT01-XS-Orange"
+ ],
+ [
+ "WT01-S-Black"
+ ],
+ [
+ "WT01-S-Blue"
+ ],
+ [
+ "WT01-S-Orange"
+ ],
+ [
+ "WT01-M-Black"
+ ],
+ [
+ "WT01-M-Blue"
+ ],
+ [
+ "WT01-M-Orange"
+ ],
+ [
+ "WT01-L-Black"
+ ],
+ [
+ "WT01-L-Blue"
+ ],
+ [
+ "WT01-L-Orange"
+ ],
+ [
+ "WT01-XL-Black"
+ ],
+ [
+ "WT01-XL-Blue"
+ ],
+ [
+ "WT01-XL-Orange"
+ ],
+ [
+ "WT01"
+ ],
+ [
+ "WT02-XS-Green"
+ ],
+ [
+ "WT02-XS-Orange"
+ ],
+ [
+ "WT02-XS-Yellow"
+ ],
+ [
+ "WT02-S-Green"
+ ],
+ [
+ "WT02-S-Orange"
+ ],
+ [
+ "WT02-S-Yellow"
+ ],
+ [
+ "WT02-M-Green"
+ ],
+ [
+ "WT02-M-Orange"
+ ],
+ [
+ "WT02-M-Yellow"
+ ],
+ [
+ "WT02-L-Green"
+ ],
+ [
+ "WT02-L-Orange"
+ ],
+ [
+ "WT02-L-Yellow"
+ ],
+ [
+ "WT02-XL-Green"
+ ],
+ [
+ "WT02-XL-Orange"
+ ],
+ [
+ "WT02-XL-Yellow"
+ ],
+ [
+ "WT02"
+ ],
+ [
+ "WT03-XS-Orange"
+ ],
+ [
+ "WT03-XS-Purple"
+ ],
+ [
+ "WT03-XS-Red"
+ ],
+ [
+ "WT03-S-Orange"
+ ],
+ [
+ "WT03-S-Purple"
+ ],
+ [
+ "WT03-S-Red"
+ ],
+ [
+ "WT03-M-Orange"
+ ],
+ [
+ "WT03-M-Purple"
+ ],
+ [
+ "WT03-M-Red"
+ ],
+ [
+ "WT03-L-Orange"
+ ],
+ [
+ "WT03-L-Purple"
+ ],
+ [
+ "WT03-L-Red"
+ ],
+ [
+ "WT03-XL-Orange"
+ ],
+ [
+ "WT03-XL-Purple"
+ ],
+ [
+ "WT03-XL-Red"
+ ],
+ [
+ "WT03"
+ ],
+ [
+ "WT04-XS-Blue"
+ ],
+ [
+ "WT04-XS-Purple"
+ ],
+ [
+ "WT04-XS-Red"
+ ],
+ [
+ "WT04-S-Blue"
+ ],
+ [
+ "WT04-S-Purple"
+ ],
+ [
+ "WT04-S-Red"
+ ],
+ [
+ "WT04-M-Blue"
+ ],
+ [
+ "WT04-M-Purple"
+ ],
+ [
+ "WT04-M-Red"
+ ],
+ [
+ "WT04-L-Blue"
+ ],
+ [
+ "WT04-L-Purple"
+ ],
+ [
+ "WT04-L-Red"
+ ],
+ [
+ "WT04-XL-Blue"
+ ],
+ [
+ "WT04-XL-Purple"
+ ],
+ [
+ "WT04-XL-Red"
+ ],
+ [
+ "WT04"
+ ],
+ [
+ "WT05-XS-Orange"
+ ],
+ [
+ "WT05-XS-Purple"
+ ],
+ [
+ "WT05-XS-White"
+ ],
+ [
+ "WT05-S-Orange"
+ ],
+ [
+ "WT05-S-Purple"
+ ],
+ [
+ "WT05-S-White"
+ ],
+ [
+ "WT05-M-Orange"
+ ],
+ [
+ "WT05-M-Purple"
+ ],
+ [
+ "WT05-M-White"
+ ],
+ [
+ "WT05-L-Orange"
+ ],
+ [
+ "WT05-L-Purple"
+ ],
+ [
+ "WT05-L-White"
+ ],
+ [
+ "WT05-XL-Orange"
+ ],
+ [
+ "WT05-XL-Purple"
+ ],
+ [
+ "WT05-XL-White"
+ ],
+ [
+ "WT05"
+ ],
+ [
+ "WT06-XS-Blue"
+ ],
+ [
+ "WT06-XS-Red"
+ ],
+ [
+ "WT06-XS-Yellow"
+ ],
+ [
+ "WT06-S-Blue"
+ ],
+ [
+ "WT06-S-Red"
+ ],
+ [
+ "WT06-S-Yellow"
+ ],
+ [
+ "WT06-M-Blue"
+ ],
+ [
+ "WT06-M-Red"
+ ],
+ [
+ "WT06-M-Yellow"
+ ],
+ [
+ "WT06-L-Blue"
+ ],
+ [
+ "WT06-L-Red"
+ ],
+ [
+ "WT06-L-Yellow"
+ ],
+ [
+ "WT06-XL-Blue"
+ ],
+ [
+ "WT06-XL-Red"
+ ],
+ [
+ "WT06-XL-Yellow"
+ ],
+ [
+ "WT06"
+ ],
+ [
+ "WT07-XS-Green"
+ ],
+ [
+ "WT07-XS-White"
+ ],
+ [
+ "WT07-XS-Yellow"
+ ],
+ [
+ "WT07-S-Green"
+ ],
+ [
+ "WT07-S-White"
+ ],
+ [
+ "WT07-S-Yellow"
+ ],
+ [
+ "WT07-M-Green"
+ ],
+ [
+ "WT07-M-White"
+ ],
+ [
+ "WT07-M-Yellow"
+ ],
+ [
+ "WT07-L-Green"
+ ],
+ [
+ "WT07-L-White"
+ ],
+ [
+ "WT07-L-Yellow"
+ ],
+ [
+ "WT07-XL-Green"
+ ],
+ [
+ "WT07-XL-White"
+ ],
+ [
+ "WT07-XL-Yellow"
+ ],
+ [
+ "WT07"
+ ],
+ [
+ "WT08-XS-Black"
+ ],
+ [
+ "WT08-XS-Purple"
+ ],
+ [
+ "WT08-XS-Yellow"
+ ],
+ [
+ "WT08-S-Black"
+ ],
+ [
+ "WT08-S-Purple"
+ ],
+ [
+ "WT08-S-Yellow"
+ ],
+ [
+ "WT08-M-Black"
+ ],
+ [
+ "WT08-M-Purple"
+ ],
+ [
+ "WT08-M-Yellow"
+ ],
+ [
+ "WT08-L-Black"
+ ],
+ [
+ "WT08-L-Purple"
+ ],
+ [
+ "WT08-L-Yellow"
+ ],
+ [
+ "WT08-XL-Black"
+ ],
+ [
+ "WT08-XL-Purple"
+ ],
+ [
+ "WT08-XL-Yellow"
+ ],
+ [
+ "WT08"
+ ],
+ [
+ "WT09-XS-Purple"
+ ],
+ [
+ "WT09-XS-White"
+ ],
+ [
+ "WT09-XS-Yellow"
+ ],
+ [
+ "WT09-S-Purple"
+ ],
+ [
+ "WT09-S-White"
+ ],
+ [
+ "WT09-S-Yellow"
+ ],
+ [
+ "WT09-M-Purple"
+ ],
+ [
+ "WT09-M-White"
+ ],
+ [
+ "WT09-M-Yellow"
+ ],
+ [
+ "WT09-L-Purple"
+ ],
+ [
+ "WT09-L-White"
+ ],
+ [
+ "WT09-L-Yellow"
+ ],
+ [
+ "WT09-XL-Purple"
+ ],
+ [
+ "WT09-XL-White"
+ ],
+ [
+ "WT09-XL-Yellow"
+ ],
+ [
+ "WT09"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity ID for the product with SKU 'WB01'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity WHERE sku = 'WB01';",
+ "answer": [
+ "1604"
+ ],
+ "sql_execute_result": [
+ [
+ 1604
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID for the 'Neve Studio Dance Jacket-M-Black' best seller entry?",
+ "sql": "SELECT store_id FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Neve Studio Dance Jacket-M-Black';",
+ "answer": [
+ "0",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many entity IDs were found for the product with value 'container2'?",
+ "sql": "SELECT entity_id FROM catalog_product_entity_varchar WHERE value = 'container2';",
+ "answer": [
+ "2051"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 27
+ ],
+ [
+ 28
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 31
+ ],
+ [
+ 32
+ ],
+ [
+ 33
+ ],
+ [
+ 34
+ ],
+ [
+ 35
+ ],
+ [
+ 36
+ ],
+ [
+ 37
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 43
+ ],
+ [
+ 44
+ ],
+ [
+ 45
+ ],
+ [
+ 46
+ ],
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 63
+ ],
+ [
+ 64
+ ],
+ [
+ 65
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 69
+ ],
+ [
+ 70
+ ],
+ [
+ 71
+ ],
+ [
+ 72
+ ],
+ [
+ 73
+ ],
+ [
+ 74
+ ],
+ [
+ 75
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 78
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 112
+ ],
+ [
+ 113
+ ],
+ [
+ 114
+ ],
+ [
+ 115
+ ],
+ [
+ 116
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 119
+ ],
+ [
+ 120
+ ],
+ [
+ 121
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 125
+ ],
+ [
+ 126
+ ],
+ [
+ 127
+ ],
+ [
+ 128
+ ],
+ [
+ 129
+ ],
+ [
+ 130
+ ],
+ [
+ 131
+ ],
+ [
+ 132
+ ],
+ [
+ 133
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 137
+ ],
+ [
+ 138
+ ],
+ [
+ 139
+ ],
+ [
+ 140
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 145
+ ],
+ [
+ 146
+ ],
+ [
+ 147
+ ],
+ [
+ 148
+ ],
+ [
+ 149
+ ],
+ [
+ 150
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 154
+ ],
+ [
+ 155
+ ],
+ [
+ 156
+ ],
+ [
+ 157
+ ],
+ [
+ 158
+ ],
+ [
+ 159
+ ],
+ [
+ 160
+ ],
+ [
+ 161
+ ],
+ [
+ 162
+ ],
+ [
+ 163
+ ],
+ [
+ 164
+ ],
+ [
+ 165
+ ],
+ [
+ 166
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 169
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 179
+ ],
+ [
+ 180
+ ],
+ [
+ 181
+ ],
+ [
+ 182
+ ],
+ [
+ 183
+ ],
+ [
+ 184
+ ],
+ [
+ 185
+ ],
+ [
+ 186
+ ],
+ [
+ 187
+ ],
+ [
+ 188
+ ],
+ [
+ 189
+ ],
+ [
+ 190
+ ],
+ [
+ 191
+ ],
+ [
+ 192
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 196
+ ],
+ [
+ 197
+ ],
+ [
+ 198
+ ],
+ [
+ 199
+ ],
+ [
+ 200
+ ],
+ [
+ 201
+ ],
+ [
+ 202
+ ],
+ [
+ 203
+ ],
+ [
+ 204
+ ],
+ [
+ 205
+ ],
+ [
+ 206
+ ],
+ [
+ 207
+ ],
+ [
+ 208
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 213
+ ],
+ [
+ 214
+ ],
+ [
+ 215
+ ],
+ [
+ 216
+ ],
+ [
+ 217
+ ],
+ [
+ 218
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 223
+ ],
+ [
+ 224
+ ],
+ [
+ 225
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 228
+ ],
+ [
+ 229
+ ],
+ [
+ 230
+ ],
+ [
+ 231
+ ],
+ [
+ 232
+ ],
+ [
+ 233
+ ],
+ [
+ 234
+ ],
+ [
+ 235
+ ],
+ [
+ 236
+ ],
+ [
+ 237
+ ],
+ [
+ 238
+ ],
+ [
+ 239
+ ],
+ [
+ 240
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 243
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 247
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 250
+ ],
+ [
+ 251
+ ],
+ [
+ 252
+ ],
+ [
+ 253
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 256
+ ],
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ],
+ [
+ 261
+ ],
+ [
+ 262
+ ],
+ [
+ 263
+ ],
+ [
+ 264
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 268
+ ],
+ [
+ 269
+ ],
+ [
+ 270
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 274
+ ],
+ [
+ 275
+ ],
+ [
+ 276
+ ],
+ [
+ 277
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 281
+ ],
+ [
+ 282
+ ],
+ [
+ 283
+ ],
+ [
+ 284
+ ],
+ [
+ 285
+ ],
+ [
+ 286
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 303
+ ],
+ [
+ 304
+ ],
+ [
+ 305
+ ],
+ [
+ 306
+ ],
+ [
+ 307
+ ],
+ [
+ 308
+ ],
+ [
+ 309
+ ],
+ [
+ 310
+ ],
+ [
+ 311
+ ],
+ [
+ 312
+ ],
+ [
+ 313
+ ],
+ [
+ 314
+ ],
+ [
+ 315
+ ],
+ [
+ 316
+ ],
+ [
+ 317
+ ],
+ [
+ 318
+ ],
+ [
+ 319
+ ],
+ [
+ 320
+ ],
+ [
+ 321
+ ],
+ [
+ 322
+ ],
+ [
+ 323
+ ],
+ [
+ 324
+ ],
+ [
+ 325
+ ],
+ [
+ 326
+ ],
+ [
+ 327
+ ],
+ [
+ 328
+ ],
+ [
+ 329
+ ],
+ [
+ 330
+ ],
+ [
+ 331
+ ],
+ [
+ 332
+ ],
+ [
+ 333
+ ],
+ [
+ 334
+ ],
+ [
+ 335
+ ],
+ [
+ 336
+ ],
+ [
+ 337
+ ],
+ [
+ 338
+ ],
+ [
+ 339
+ ],
+ [
+ 340
+ ],
+ [
+ 341
+ ],
+ [
+ 342
+ ],
+ [
+ 343
+ ],
+ [
+ 344
+ ],
+ [
+ 345
+ ],
+ [
+ 346
+ ],
+ [
+ 347
+ ],
+ [
+ 348
+ ],
+ [
+ 349
+ ],
+ [
+ 350
+ ],
+ [
+ 351
+ ],
+ [
+ 352
+ ],
+ [
+ 353
+ ],
+ [
+ 354
+ ],
+ [
+ 355
+ ],
+ [
+ 356
+ ],
+ [
+ 357
+ ],
+ [
+ 358
+ ],
+ [
+ 359
+ ],
+ [
+ 360
+ ],
+ [
+ 361
+ ],
+ [
+ 362
+ ],
+ [
+ 363
+ ],
+ [
+ 364
+ ],
+ [
+ 365
+ ],
+ [
+ 366
+ ],
+ [
+ 367
+ ],
+ [
+ 368
+ ],
+ [
+ 369
+ ],
+ [
+ 370
+ ],
+ [
+ 371
+ ],
+ [
+ 372
+ ],
+ [
+ 373
+ ],
+ [
+ 374
+ ],
+ [
+ 375
+ ],
+ [
+ 376
+ ],
+ [
+ 377
+ ],
+ [
+ 378
+ ],
+ [
+ 379
+ ],
+ [
+ 380
+ ],
+ [
+ 381
+ ],
+ [
+ 382
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 399
+ ],
+ [
+ 400
+ ],
+ [
+ 401
+ ],
+ [
+ 402
+ ],
+ [
+ 403
+ ],
+ [
+ 404
+ ],
+ [
+ 405
+ ],
+ [
+ 406
+ ],
+ [
+ 407
+ ],
+ [
+ 408
+ ],
+ [
+ 409
+ ],
+ [
+ 410
+ ],
+ [
+ 411
+ ],
+ [
+ 412
+ ],
+ [
+ 413
+ ],
+ [
+ 414
+ ],
+ [
+ 415
+ ],
+ [
+ 416
+ ],
+ [
+ 417
+ ],
+ [
+ 418
+ ],
+ [
+ 419
+ ],
+ [
+ 420
+ ],
+ [
+ 421
+ ],
+ [
+ 422
+ ],
+ [
+ 423
+ ],
+ [
+ 424
+ ],
+ [
+ 425
+ ],
+ [
+ 426
+ ],
+ [
+ 427
+ ],
+ [
+ 428
+ ],
+ [
+ 429
+ ],
+ [
+ 430
+ ],
+ [
+ 431
+ ],
+ [
+ 432
+ ],
+ [
+ 433
+ ],
+ [
+ 434
+ ],
+ [
+ 435
+ ],
+ [
+ 436
+ ],
+ [
+ 437
+ ],
+ [
+ 438
+ ],
+ [
+ 439
+ ],
+ [
+ 440
+ ],
+ [
+ 441
+ ],
+ [
+ 442
+ ],
+ [
+ 443
+ ],
+ [
+ 444
+ ],
+ [
+ 445
+ ],
+ [
+ 446
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 463
+ ],
+ [
+ 464
+ ],
+ [
+ 465
+ ],
+ [
+ 466
+ ],
+ [
+ 467
+ ],
+ [
+ 468
+ ],
+ [
+ 469
+ ],
+ [
+ 470
+ ],
+ [
+ 471
+ ],
+ [
+ 472
+ ],
+ [
+ 473
+ ],
+ [
+ 474
+ ],
+ [
+ 475
+ ],
+ [
+ 476
+ ],
+ [
+ 477
+ ],
+ [
+ 478
+ ],
+ [
+ 479
+ ],
+ [
+ 480
+ ],
+ [
+ 481
+ ],
+ [
+ 482
+ ],
+ [
+ 483
+ ],
+ [
+ 484
+ ],
+ [
+ 485
+ ],
+ [
+ 486
+ ],
+ [
+ 487
+ ],
+ [
+ 488
+ ],
+ [
+ 489
+ ],
+ [
+ 490
+ ],
+ [
+ 491
+ ],
+ [
+ 492
+ ],
+ [
+ 493
+ ],
+ [
+ 494
+ ],
+ [
+ 495
+ ],
+ [
+ 496
+ ],
+ [
+ 497
+ ],
+ [
+ 498
+ ],
+ [
+ 499
+ ],
+ [
+ 500
+ ],
+ [
+ 501
+ ],
+ [
+ 502
+ ],
+ [
+ 503
+ ],
+ [
+ 504
+ ],
+ [
+ 505
+ ],
+ [
+ 506
+ ],
+ [
+ 507
+ ],
+ [
+ 508
+ ],
+ [
+ 509
+ ],
+ [
+ 510
+ ],
+ [
+ 511
+ ],
+ [
+ 512
+ ],
+ [
+ 513
+ ],
+ [
+ 514
+ ],
+ [
+ 515
+ ],
+ [
+ 516
+ ],
+ [
+ 517
+ ],
+ [
+ 518
+ ],
+ [
+ 519
+ ],
+ [
+ 520
+ ],
+ [
+ 521
+ ],
+ [
+ 522
+ ],
+ [
+ 523
+ ],
+ [
+ 524
+ ],
+ [
+ 525
+ ],
+ [
+ 526
+ ],
+ [
+ 527
+ ],
+ [
+ 528
+ ],
+ [
+ 529
+ ],
+ [
+ 530
+ ],
+ [
+ 531
+ ],
+ [
+ 532
+ ],
+ [
+ 533
+ ],
+ [
+ 534
+ ],
+ [
+ 535
+ ],
+ [
+ 536
+ ],
+ [
+ 537
+ ],
+ [
+ 538
+ ],
+ [
+ 539
+ ],
+ [
+ 540
+ ],
+ [
+ 541
+ ],
+ [
+ 542
+ ],
+ [
+ 543
+ ],
+ [
+ 544
+ ],
+ [
+ 545
+ ],
+ [
+ 546
+ ],
+ [
+ 547
+ ],
+ [
+ 548
+ ],
+ [
+ 549
+ ],
+ [
+ 550
+ ],
+ [
+ 551
+ ],
+ [
+ 552
+ ],
+ [
+ 553
+ ],
+ [
+ 554
+ ],
+ [
+ 555
+ ],
+ [
+ 556
+ ],
+ [
+ 557
+ ],
+ [
+ 558
+ ],
+ [
+ 559
+ ],
+ [
+ 560
+ ],
+ [
+ 561
+ ],
+ [
+ 562
+ ],
+ [
+ 563
+ ],
+ [
+ 564
+ ],
+ [
+ 565
+ ],
+ [
+ 566
+ ],
+ [
+ 567
+ ],
+ [
+ 568
+ ],
+ [
+ 569
+ ],
+ [
+ 570
+ ],
+ [
+ 571
+ ],
+ [
+ 572
+ ],
+ [
+ 573
+ ],
+ [
+ 574
+ ],
+ [
+ 575
+ ],
+ [
+ 576
+ ],
+ [
+ 577
+ ],
+ [
+ 578
+ ],
+ [
+ 579
+ ],
+ [
+ 580
+ ],
+ [
+ 581
+ ],
+ [
+ 582
+ ],
+ [
+ 583
+ ],
+ [
+ 584
+ ],
+ [
+ 585
+ ],
+ [
+ 586
+ ],
+ [
+ 587
+ ],
+ [
+ 588
+ ],
+ [
+ 589
+ ],
+ [
+ 590
+ ],
+ [
+ 591
+ ],
+ [
+ 592
+ ],
+ [
+ 593
+ ],
+ [
+ 594
+ ],
+ [
+ 595
+ ],
+ [
+ 596
+ ],
+ [
+ 597
+ ],
+ [
+ 598
+ ],
+ [
+ 599
+ ],
+ [
+ 600
+ ],
+ [
+ 601
+ ],
+ [
+ 602
+ ],
+ [
+ 603
+ ],
+ [
+ 604
+ ],
+ [
+ 605
+ ],
+ [
+ 606
+ ],
+ [
+ 607
+ ],
+ [
+ 608
+ ],
+ [
+ 609
+ ],
+ [
+ 610
+ ],
+ [
+ 611
+ ],
+ [
+ 612
+ ],
+ [
+ 613
+ ],
+ [
+ 614
+ ],
+ [
+ 615
+ ],
+ [
+ 616
+ ],
+ [
+ 617
+ ],
+ [
+ 618
+ ],
+ [
+ 619
+ ],
+ [
+ 620
+ ],
+ [
+ 621
+ ],
+ [
+ 622
+ ],
+ [
+ 623
+ ],
+ [
+ 624
+ ],
+ [
+ 625
+ ],
+ [
+ 626
+ ],
+ [
+ 627
+ ],
+ [
+ 628
+ ],
+ [
+ 629
+ ],
+ [
+ 630
+ ],
+ [
+ 631
+ ],
+ [
+ 632
+ ],
+ [
+ 633
+ ],
+ [
+ 634
+ ],
+ [
+ 635
+ ],
+ [
+ 636
+ ],
+ [
+ 637
+ ],
+ [
+ 638
+ ],
+ [
+ 639
+ ],
+ [
+ 640
+ ],
+ [
+ 641
+ ],
+ [
+ 642
+ ],
+ [
+ 643
+ ],
+ [
+ 644
+ ],
+ [
+ 645
+ ],
+ [
+ 646
+ ],
+ [
+ 647
+ ],
+ [
+ 648
+ ],
+ [
+ 649
+ ],
+ [
+ 650
+ ],
+ [
+ 651
+ ],
+ [
+ 652
+ ],
+ [
+ 653
+ ],
+ [
+ 654
+ ],
+ [
+ 655
+ ],
+ [
+ 656
+ ],
+ [
+ 657
+ ],
+ [
+ 658
+ ],
+ [
+ 659
+ ],
+ [
+ 660
+ ],
+ [
+ 661
+ ],
+ [
+ 662
+ ],
+ [
+ 663
+ ],
+ [
+ 664
+ ],
+ [
+ 665
+ ],
+ [
+ 666
+ ],
+ [
+ 667
+ ],
+ [
+ 668
+ ],
+ [
+ 669
+ ],
+ [
+ 670
+ ],
+ [
+ 671
+ ],
+ [
+ 672
+ ],
+ [
+ 673
+ ],
+ [
+ 674
+ ],
+ [
+ 675
+ ],
+ [
+ 676
+ ],
+ [
+ 677
+ ],
+ [
+ 678
+ ],
+ [
+ 679
+ ],
+ [
+ 680
+ ],
+ [
+ 681
+ ],
+ [
+ 682
+ ],
+ [
+ 683
+ ],
+ [
+ 684
+ ],
+ [
+ 685
+ ],
+ [
+ 686
+ ],
+ [
+ 687
+ ],
+ [
+ 688
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 695
+ ],
+ [
+ 696
+ ],
+ [
+ 697
+ ],
+ [
+ 698
+ ],
+ [
+ 699
+ ],
+ [
+ 700
+ ],
+ [
+ 701
+ ],
+ [
+ 702
+ ],
+ [
+ 703
+ ],
+ [
+ 704
+ ],
+ [
+ 705
+ ],
+ [
+ 706
+ ],
+ [
+ 707
+ ],
+ [
+ 708
+ ],
+ [
+ 709
+ ],
+ [
+ 710
+ ],
+ [
+ 711
+ ],
+ [
+ 712
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 719
+ ],
+ [
+ 720
+ ],
+ [
+ 721
+ ],
+ [
+ 722
+ ],
+ [
+ 723
+ ],
+ [
+ 724
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 898
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 924
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1015
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1061
+ ],
+ [
+ 1062
+ ],
+ [
+ 1063
+ ],
+ [
+ 1064
+ ],
+ [
+ 1065
+ ],
+ [
+ 1066
+ ],
+ [
+ 1067
+ ],
+ [
+ 1068
+ ],
+ [
+ 1069
+ ],
+ [
+ 1070
+ ],
+ [
+ 1071
+ ],
+ [
+ 1072
+ ],
+ [
+ 1073
+ ],
+ [
+ 1074
+ ],
+ [
+ 1075
+ ],
+ [
+ 1076
+ ],
+ [
+ 1077
+ ],
+ [
+ 1078
+ ],
+ [
+ 1079
+ ],
+ [
+ 1080
+ ],
+ [
+ 1081
+ ],
+ [
+ 1082
+ ],
+ [
+ 1083
+ ],
+ [
+ 1084
+ ],
+ [
+ 1085
+ ],
+ [
+ 1086
+ ],
+ [
+ 1087
+ ],
+ [
+ 1088
+ ],
+ [
+ 1089
+ ],
+ [
+ 1090
+ ],
+ [
+ 1091
+ ],
+ [
+ 1092
+ ],
+ [
+ 1093
+ ],
+ [
+ 1094
+ ],
+ [
+ 1095
+ ],
+ [
+ 1096
+ ],
+ [
+ 1097
+ ],
+ [
+ 1098
+ ],
+ [
+ 1099
+ ],
+ [
+ 1100
+ ],
+ [
+ 1101
+ ],
+ [
+ 1102
+ ],
+ [
+ 1103
+ ],
+ [
+ 1104
+ ],
+ [
+ 1105
+ ],
+ [
+ 1106
+ ],
+ [
+ 1107
+ ],
+ [
+ 1108
+ ],
+ [
+ 1109
+ ],
+ [
+ 1110
+ ],
+ [
+ 1111
+ ],
+ [
+ 1112
+ ],
+ [
+ 1113
+ ],
+ [
+ 1114
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1237
+ ],
+ [
+ 1238
+ ],
+ [
+ 1239
+ ],
+ [
+ 1240
+ ],
+ [
+ 1241
+ ],
+ [
+ 1242
+ ],
+ [
+ 1243
+ ],
+ [
+ 1244
+ ],
+ [
+ 1245
+ ],
+ [
+ 1246
+ ],
+ [
+ 1247
+ ],
+ [
+ 1248
+ ],
+ [
+ 1249
+ ],
+ [
+ 1250
+ ],
+ [
+ 1251
+ ],
+ [
+ 1252
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1269
+ ],
+ [
+ 1270
+ ],
+ [
+ 1271
+ ],
+ [
+ 1272
+ ],
+ [
+ 1273
+ ],
+ [
+ 1274
+ ],
+ [
+ 1275
+ ],
+ [
+ 1276
+ ],
+ [
+ 1277
+ ],
+ [
+ 1278
+ ],
+ [
+ 1279
+ ],
+ [
+ 1280
+ ],
+ [
+ 1281
+ ],
+ [
+ 1282
+ ],
+ [
+ 1283
+ ],
+ [
+ 1284
+ ],
+ [
+ 1285
+ ],
+ [
+ 1286
+ ],
+ [
+ 1287
+ ],
+ [
+ 1288
+ ],
+ [
+ 1289
+ ],
+ [
+ 1290
+ ],
+ [
+ 1291
+ ],
+ [
+ 1292
+ ],
+ [
+ 1293
+ ],
+ [
+ 1294
+ ],
+ [
+ 1295
+ ],
+ [
+ 1296
+ ],
+ [
+ 1297
+ ],
+ [
+ 1298
+ ],
+ [
+ 1299
+ ],
+ [
+ 1300
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1605
+ ],
+ [
+ 1606
+ ],
+ [
+ 1607
+ ],
+ [
+ 1608
+ ],
+ [
+ 1609
+ ],
+ [
+ 1610
+ ],
+ [
+ 1611
+ ],
+ [
+ 1612
+ ],
+ [
+ 1613
+ ],
+ [
+ 1614
+ ],
+ [
+ 1615
+ ],
+ [
+ 1616
+ ],
+ [
+ 1617
+ ],
+ [
+ 1618
+ ],
+ [
+ 1619
+ ],
+ [
+ 1620
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1637
+ ],
+ [
+ 1638
+ ],
+ [
+ 1639
+ ],
+ [
+ 1640
+ ],
+ [
+ 1641
+ ],
+ [
+ 1642
+ ],
+ [
+ 1643
+ ],
+ [
+ 1644
+ ],
+ [
+ 1645
+ ],
+ [
+ 1646
+ ],
+ [
+ 1647
+ ],
+ [
+ 1648
+ ],
+ [
+ 1649
+ ],
+ [
+ 1650
+ ],
+ [
+ 1651
+ ],
+ [
+ 1652
+ ],
+ [
+ 1653
+ ],
+ [
+ 1654
+ ],
+ [
+ 1655
+ ],
+ [
+ 1656
+ ],
+ [
+ 1657
+ ],
+ [
+ 1658
+ ],
+ [
+ 1659
+ ],
+ [
+ 1660
+ ],
+ [
+ 1661
+ ],
+ [
+ 1662
+ ],
+ [
+ 1663
+ ],
+ [
+ 1664
+ ],
+ [
+ 1665
+ ],
+ [
+ 1666
+ ],
+ [
+ 1667
+ ],
+ [
+ 1668
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1685
+ ],
+ [
+ 1686
+ ],
+ [
+ 1687
+ ],
+ [
+ 1688
+ ],
+ [
+ 1689
+ ],
+ [
+ 1690
+ ],
+ [
+ 1691
+ ],
+ [
+ 1692
+ ],
+ [
+ 1693
+ ],
+ [
+ 1694
+ ],
+ [
+ 1695
+ ],
+ [
+ 1696
+ ],
+ [
+ 1697
+ ],
+ [
+ 1698
+ ],
+ [
+ 1699
+ ],
+ [
+ 1700
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1749
+ ],
+ [
+ 1750
+ ],
+ [
+ 1751
+ ],
+ [
+ 1752
+ ],
+ [
+ 1753
+ ],
+ [
+ 1754
+ ],
+ [
+ 1755
+ ],
+ [
+ 1756
+ ],
+ [
+ 1757
+ ],
+ [
+ 1758
+ ],
+ [
+ 1759
+ ],
+ [
+ 1760
+ ],
+ [
+ 1761
+ ],
+ [
+ 1762
+ ],
+ [
+ 1763
+ ],
+ [
+ 1764
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1952
+ ],
+ [
+ 1953
+ ],
+ [
+ 1954
+ ],
+ [
+ 1955
+ ],
+ [
+ 1956
+ ],
+ [
+ 1957
+ ],
+ [
+ 1958
+ ],
+ [
+ 1959
+ ],
+ [
+ 1960
+ ],
+ [
+ 1961
+ ],
+ [
+ 1962
+ ],
+ [
+ 1963
+ ],
+ [
+ 1964
+ ],
+ [
+ 1965
+ ],
+ [
+ 1966
+ ],
+ [
+ 1967
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1984
+ ],
+ [
+ 1985
+ ],
+ [
+ 1986
+ ],
+ [
+ 1987
+ ],
+ [
+ 1988
+ ],
+ [
+ 1989
+ ],
+ [
+ 1990
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2004
+ ],
+ [
+ 2005
+ ],
+ [
+ 2006
+ ],
+ [
+ 2007
+ ],
+ [
+ 2008
+ ],
+ [
+ 2009
+ ],
+ [
+ 2010
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ],
+ [
+ 1220
+ ],
+ [
+ 1236
+ ],
+ [
+ 1252
+ ],
+ [
+ 1268
+ ],
+ [
+ 1284
+ ],
+ [
+ 1380
+ ],
+ [
+ 1300
+ ],
+ [
+ 1316
+ ],
+ [
+ 1332
+ ],
+ [
+ 1348
+ ],
+ [
+ 1364
+ ],
+ [
+ 1396
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'GW'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'GW';",
+ "answer": [
+ "GNB"
+ ],
+ "sql_execute_result": [
+ [
+ "GNB"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the bestseller with ID 461 in 2022.",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_yearly WHERE id = 461;",
+ "answer": [
+ "Daria Bikram Pant-28-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "Daria Bikram Pant-28-Black"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product 'Sparta Gym Tank-XL-Green' according to the 2023 bestsellers data?",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Sparta Gym Tank-XL-Green' AND period = '2023-01-01';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ],
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence table name for shipments in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'shipment' AND store_id = 1;",
+ "answer": [
+ "sequence_shipment_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_shipment_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find the number of quantity ordered for the product 'Layla Tee-S-Red' in the 2022 bestsellers.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Layla Tee-S-Red' AND period = '2022-01-01';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store name for the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the decimal value of attribute ID 82 for the product entity ID 1528.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE attribute_id = 82 AND entity_id = 1528;",
+ "answer": [
+ "1.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating position for the product 'Kratos Gym Pant-32-Green' in the 2022 bestsellers?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Kratos Gym Pant-32-Green' AND period = '2022-01-01';",
+ "answer": [
+ "119",
+ "105"
+ ],
+ "sql_execute_result": [
+ [
+ 119
+ ],
+ [
+ 105
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with the country ID 'ID'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'ID';",
+ "answer": [
+ "IDN"
+ ],
+ "sql_execute_result": [
+ [
+ "IDN"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product ID for the bestseller 'Zoltan Gym Tee-XL-Green' in the store ID 0.",
+ "sql": "SELECT product_id FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Zoltan Gym Tee-XL-Green' AND store_id = 0;",
+ "answer": [
+ "540"
+ ],
+ "sql_execute_result": [
+ [
+ 540
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders marked as 'complete' on May 5th, 2023?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-05-05' AND order_status = 'complete';",
+ "answer": [
+ "88.4000"
+ ],
+ "sql_execute_result": [
+ [
+ "88.4000"
+ ],
+ [
+ "88.4000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description of the product with ID 858.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 858;",
+ "answer": [
+ "The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.",
+ "\u2022 Pants/shorts convertible.",
+ "\u2022 Lightweight moisture wicking.",
+ "\u2022 Water repellent.",
+ "\u2022 Belted waist."
+ ],
+ "sql_execute_result": [
+ [
+ "The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.
\n• Pants/shorts convertible.
• Lightweight moisture wicking.
• Water repellent.
• Belted waist.
"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered on April 19, 2023, in store 1?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2023-04-19' AND store_id = 1;",
+ "answer": [
+ "29"
+ ],
+ "sql_execute_result": [
+ [
+ "Crown Summit Backpack"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 65 cm"
+ ],
+ [
+ "Sprite Stasis Ball 75 cm"
+ ],
+ [
+ "Sprite Yoga Strap 6 foot"
+ ],
+ [
+ "Mach Street Sweatshirt -XL-Blue"
+ ],
+ [
+ "Gobi HeatTec® Tee-XS-Orange"
+ ],
+ [
+ "Logan HeatTec® Tee-L-Red"
+ ],
+ [
+ "Tristan Endurance Tank-XL-Red"
+ ],
+ [
+ "Sparta Gym Tank-XL-Green"
+ ],
+ [
+ "Mithra Warmup Pant-34-Gray"
+ ],
+ [
+ "Mithra Warmup Pant-36-Orange"
+ ],
+ [
+ "Aether Gym Pant -33-Brown"
+ ],
+ [
+ "Apollo Running Short-33-Black"
+ ],
+ [
+ "Hawkeye Yoga Short-36-Gray"
+ ],
+ [
+ "Troy Yoga Short-32-Black"
+ ],
+ [
+ "Troy Yoga Short-36-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-S-Blue"
+ ],
+ [
+ "Augusta Pullover Jacket-M-Blue"
+ ],
+ [
+ "Nadia Elements Shell-S-Black"
+ ],
+ [
+ "Neve Studio Dance Jacket-S-Orange"
+ ],
+ [
+ "Gabrielle Micro Sleeve Top-L-Green"
+ ],
+ [
+ "Celeste Sports Bra-L-Red"
+ ],
+ [
+ "Ida Workout Parachute Pant-29-Purple"
+ ],
+ [
+ "Cora Parachute Pant-29-Blue"
+ ],
+ [
+ "Aeon Capri-28-Black"
+ ],
+ [
+ "Maxima Drawstring Short-28-Yellow"
+ ],
+ [
+ "Angel Light Running Short-29-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with the name 'Minerva LumaTech\u2122 V-Tee'?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is associated with the 'invoice' entity type for store 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'invoice' AND store_id = 1;",
+ "answer": [
+ "sequence_invoice_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_invoice_1"
+ ]
+ ]
+ },
+ {
+ "question": "What was the rating position for the product 'Sprite Stasis Ball 65 cm' on September 23, 2022?",
+ "sql": "SELECT rating_pos FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 65 cm' AND period = '2022-09-23';",
+ "answer": [
+ "2",
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for orders marked as 'canceled' on January 6th, 2023?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-01-06' AND order_status = 'canceled';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the invoice item with entity ID 1?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product price for 'Stark Fundamental Hoodie-XS-Black' ordered on January 12, 2023.",
+ "sql": "SELECT product_price FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Stark Fundamental Hoodie-XS-Black' AND period = '2023-01-12';",
+ "answer": [
+ "42.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "42.0000"
+ ],
+ [
+ "42.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount tax compensation amount for the invoice item with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT discount_tax_compensation_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name of the customer who placed the order with increment ID '000000017'?",
+ "sql": "SELECT CONCAT(customer_firstname, ' ', customer_lastname) AS full_name FROM sales_order WHERE increment_id = '000000017';",
+ "answer": [
+ "Adam Garcia"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam Garcia"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the order with increment ID '000000140'.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000140';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 1560?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1560;",
+ "answer": [
+ "WS01-S-Black"
+ ],
+ "sql_execute_result": [
+ [
+ "WS01-S-Black"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total amount for the order placed by customer with ID 33?",
+ "sql": "SELECT grand_total FROM sales_order WHERE customer_id = 33;",
+ "answer": [
+ "756.41"
+ ],
+ "sql_execute_result": [
+ [
+ "108.2500"
+ ],
+ [
+ "112.0000"
+ ],
+ [
+ "180.1600"
+ ],
+ [
+ "108.0000"
+ ],
+ [
+ "64.0000"
+ ],
+ [
+ "163.0000"
+ ],
+ [
+ "21.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the eav attribute option value for option ID 58.",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id = 58;",
+ "answer": [
+ "Red"
+ ],
+ "sql_execute_result": [
+ [
+ "Red"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with SKU 'MH12-XS-Red' has any required options.",
+ "sql": "SELECT required_options FROM catalog_product_entity WHERE sku = 'MH12-XS-Red';",
+ "answer": [
+ "No required options"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email of the customer who placed the order with increment ID '000000179'?",
+ "sql": "SELECT customer_email FROM sales_order WHERE increment_id = '000000179';",
+ "answer": [
+ "michael.nguyen@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "michael.nguyen@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total of the order with increment ID '000000112'.",
+ "sql": "SELECT base_grand_total FROM sales_order WHERE increment_id = '000000112';",
+ "answer": [
+ "153.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "153.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000231'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000231';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity_id 721?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 721;",
+ "answer": [
+ "MT12-M-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MT12-M-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for the category with entity_id 18.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 18 AND attribute_id = 119;",
+ "answer": [
+ "pants-men"
+ ],
+ "sql_execute_result": [
+ [
+ "pants-men"
+ ]
+ ]
+ },
+ {
+ "question": "What is the increment ID of the shipment for order_id 1?",
+ "sql": "SELECT increment_id FROM sales_shipment WHERE order_id = 1;",
+ "answer": [
+ "000000001"
+ ],
+ "sql_execute_result": [
+ [
+ "000000001"
+ ]
+ ]
+ },
+ {
+ "question": "Is the sales sequence profile with profile_id 5 active?",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 5;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which entity type code is associated with entity_type_id 6?",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 6;",
+ "answer": [
+ "invoice"
+ ],
+ "sql_execute_result": [
+ [
+ "invoice"
+ ]
+ ]
+ },
+ {
+ "question": "What is the type_id of the product with SKU 'WP03-28-Black'?",
+ "sql": "SELECT type_id FROM catalog_product_entity WHERE sku = 'WP03-28-Black';",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity shipped for shipment with increment_id '000000003'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000003';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity model for the 'catalog_category' entity type?",
+ "sql": "SELECT entity_model FROM eav_entity_type WHERE entity_type_code = 'catalog_category';",
+ "answer": [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\ResourceModel\\Category"
+ ]
+ ]
+ },
+ {
+ "question": "Find the creation time for the product with entity_id 1197.",
+ "sql": "SELECT created_at FROM catalog_product_entity WHERE entity_id = 1197;",
+ "answer": [
+ "2023-04-19 16:13:43"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:13:43"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store_id associated with the sales shipment entity with entity_id 1?",
+ "sql": "SELECT store_id FROM sales_shipment WHERE entity_id = 1;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer Samantha Wu?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE name = 'Samantha Wu';",
+ "answer": [
+ "samantha.wu@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "samantha.wu@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for customer David Smith?",
+ "sql": "SELECT billing_full FROM customer_grid_flat WHERE name = 'David Smith';",
+ "answer": [
+ "101 Main Street Dallas Texas 75201"
+ ],
+ "sql_execute_result": [
+ [
+ "101 Main Street Dallas Texas 75201"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name where customer Jessica Nguyen made her purchases.",
+ "sql": "SELECT created_in FROM customer_grid_flat WHERE email = 'jessica.nguyen@gmail.com';",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing telephone number for Isabella Santos?",
+ "sql": "SELECT billing_telephone FROM customer_grid_flat WHERE name = 'Isabella Santos';",
+ "answer": [
+ "3055551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3055551212"
+ ]
+ ]
+ },
+ {
+ "question": "Which city does Roberto Lopez have listed for his billing address?",
+ "sql": "SELECT billing_city FROM customer_grid_flat WHERE name = 'Roberto Lopez';",
+ "answer": [
+ "New York"
+ ],
+ "sql_execute_result": [
+ [
+ "New York"
+ ]
+ ]
+ },
+ {
+ "question": "Find the entity type code for entity type ID 8.",
+ "sql": "SELECT entity_type_code FROM eav_entity_type WHERE entity_type_id = 8;",
+ "answer": [
+ "shipment"
+ ],
+ "sql_execute_result": [
+ [
+ "shipment"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the frontend label for attribute code 'color'.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'color';",
+ "answer": [
+ "Color"
+ ],
+ "sql_execute_result": [
+ [
+ "Color"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the query text 'nike'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Find all invoices for the product with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT entity_id FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for review status ID 2?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 2;",
+ "answer": [
+ "Pending"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer group with ID 3?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 3;",
+ "answer": [
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for the product 'Geo Insulated Jogging Pant-34-Green' in 2023.",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_name = 'Geo Insulated Jogging Pant-34-Green' AND period = '2023-01-01';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with ID 1?",
+ "sql": "SELECT name FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for sales invoice item with entity_id 1.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "Iris Workout Top"
+ ],
+ "sql_execute_result": [
+ [
+ "Iris Workout Top"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer groups with tax class ID 3.",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE tax_class_id = 3;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price including tax for the product 'Minerva LumaTech\u2122 V-Tee' in the invoice item with entity_id 2.",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "34.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "34.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product associated with order item ID 720?",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 720;",
+ "answer": [
+ "MJ02-XL-Green"
+ ],
+ "sql_execute_result": [
+ [
+ "MJ02-XL-Green"
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the product with product ID 1002 in the sales order items.",
+ "sql": "SELECT name FROM sales_order_item WHERE product_id = 1002;",
+ "answer": [
+ "Sol Active Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Sol Active Short"
+ ],
+ [
+ "Sol Active Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer who placed the order with ID 128?",
+ "sql": "SELECT customer_email FROM sales_order WHERE entity_id = 128;",
+ "answer": [
+ "beachlover99@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "beachlover99@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Which product has the SKU 'WS09-XS-Blue' in the sales order items?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WS09-XS-Blue';",
+ "answer": [
+ "Tiffany Fitness Tee",
+ "Tiffany Fitness Tee-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Tiffany Fitness Tee"
+ ],
+ [
+ "Tiffany Fitness Tee-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the product with SKU 'MJ02-XL-Green'?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE sku = 'MJ02-XL-Green';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the creation date of the 'Home Page' CMS page?",
+ "sql": "SELECT creation_time FROM cms_page WHERE title = 'Home Page';",
+ "answer": [
+ "2023-04-19 15:41:33"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 15:41:33"
+ ]
+ ]
+ },
+ {
+ "question": "Get the store name for store ID 1.",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "List all order IDs where the product 'Hyperion Elements Jacket' was ordered.",
+ "sql": "SELECT order_id FROM sales_order_item WHERE name = 'Hyperion Elements Jacket';",
+ "answer": [
+ "45",
+ "49",
+ "132",
+ "200"
+ ],
+ "sql_execute_result": [
+ [
+ 45
+ ],
+ [
+ 49
+ ],
+ [
+ 132
+ ],
+ [
+ 200
+ ]
+ ]
+ },
+ {
+ "question": "What is the layout of the CMS page with identifier 'customer-service'?",
+ "sql": "SELECT page_layout FROM cms_page WHERE identifier = 'customer-service';",
+ "answer": [
+ "1column"
+ ],
+ "sql_execute_result": [
+ [
+ "1column"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label of the attribute with the code 'sale'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'sale';",
+ "answer": [
+ "Sale"
+ ],
+ "sql_execute_result": [
+ [
+ "Sale"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were completed on 19th May 2023?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-05-19' AND order_status = 'complete';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product named 'Minerva LumaTech\u2122 V-Tee'.",
+ "sql": "SELECT sku FROM sales_shipment_item WHERE name = 'Minerva LumaTech™ V-Tee';",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 841 on sale?",
+ "sql": "SELECT value FROM catalog_product_entity_int WHERE entity_id = 841 AND attribute_id = 149;",
+ "answer": [
+ "No"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ISO-2 code 'GB'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'GB';",
+ "answer": [
+ "GBR"
+ ],
+ "sql_execute_result": [
+ [
+ "GBR"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders completed on 24th September 2022?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-09-24' AND order_status = 'complete';",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ],
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Does the attribute with ID 126 require a value?",
+ "sql": "SELECT is_required FROM eav_attribute WHERE attribute_id = 126;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders canceled on 8th November 2022?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-11-08' AND order_status = 'canceled';",
+ "answer": [
+ "217.2000"
+ ],
+ "sql_execute_result": [
+ [
+ "217.2000"
+ ],
+ [
+ "217.2000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the product ID of the item with SKU 'WH11-S-Blue'?",
+ "sql": "SELECT product_id FROM sales_shipment_item WHERE sku = 'WH11-S-Blue';",
+ "answer": [
+ "1194"
+ ],
+ "sql_execute_result": [
+ [
+ 1194
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend type of the attribute with code 'url_key'?",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'url_key';",
+ "answer": [
+ "varchar"
+ ],
+ "sql_execute_result": [
+ [
+ "varchar"
+ ],
+ [
+ "varchar"
+ ]
+ ]
+ },
+ {
+ "question": "Find all active ratings available for products in the store.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 1563?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1563;",
+ "answer": [
+ "When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.
\n• Short-Sleeves.
• Machine wash/line dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.
\n• Short-Sleeves.
• Machine wash/line dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Which review is associated with product ID 1428?",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 1428;",
+ "answer": [
+ "257",
+ "258",
+ "259",
+ "260"
+ ],
+ "sql_execute_result": [
+ [
+ 257
+ ],
+ [
+ 258
+ ],
+ [
+ 259
+ ],
+ [
+ 260
+ ]
+ ]
+ },
+ {
+ "question": "List countries with ISO-2 code 'GH' or 'NG'.",
+ "sql": "SELECT country_id FROM directory_country WHERE iso2_code IN ('GH', 'NG');",
+ "answer": [
+ "GH",
+ "NG"
+ ],
+ "sql_execute_result": [
+ [
+ "GH"
+ ],
+ [
+ "NG"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review creation date for review ID 136.",
+ "sql": "SELECT created_at FROM review WHERE review_id = 136;",
+ "answer": [
+ "2023-04-19 16:15:14"
+ ],
+ "sql_execute_result": [
+ [
+ "2023-04-19 16:15:14"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating with code 'Price'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Price';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the description for the product with entity ID 332.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 332;",
+ "answer": [
+ "The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.
\n• Gray polyester/spandex full zip jacket with orange lining.
• Right pocket device storage.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.
\n• Gray polyester/spandex full zip jacket with orange lining.
• Right pocket device storage.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Which countries have the ISO-3 code 'SWE' or 'PER'?",
+ "sql": "SELECT country_id FROM directory_country WHERE iso3_code IN ('SWE', 'PER');",
+ "answer": [
+ "PE",
+ "SE"
+ ],
+ "sql_execute_result": [
+ [
+ "PE"
+ ],
+ [
+ "SE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status ID for the review associated with product ID 1380?",
+ "sql": "SELECT status_id FROM review WHERE entity_pk_value = 1380;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 33?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 33;",
+ "answer": [
+ "adam.garcia@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "adam.garcia@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'alex.martin@gmail.com'?",
+ "sql": "SELECT entity_id FROM sales_order WHERE customer_email = 'alex.martin@gmail.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ],
+ [
+ 30
+ ],
+ [
+ 35
+ ],
+ [
+ 63
+ ],
+ [
+ 165
+ ],
+ [
+ 173
+ ],
+ [
+ 177
+ ],
+ [
+ 191
+ ],
+ [
+ 238
+ ],
+ [
+ 240
+ ],
+ [
+ 268
+ ],
+ [
+ 298
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been canceled?",
+ "sql": "SELECT entity_id FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 3
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 10
+ ],
+ [
+ 12
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 25
+ ],
+ [
+ 26
+ ],
+ [
+ 29
+ ],
+ [
+ 30
+ ],
+ [
+ 38
+ ],
+ [
+ 39
+ ],
+ [
+ 40
+ ],
+ [
+ 41
+ ],
+ [
+ 42
+ ],
+ [
+ 44
+ ],
+ [
+ 46
+ ],
+ [
+ 49
+ ],
+ [
+ 52
+ ],
+ [
+ 56
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 63
+ ],
+ [
+ 66
+ ],
+ [
+ 67
+ ],
+ [
+ 68
+ ],
+ [
+ 72
+ ],
+ [
+ 74
+ ],
+ [
+ 76
+ ],
+ [
+ 77
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 88
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 98
+ ],
+ [
+ 101
+ ],
+ [
+ 103
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 111
+ ],
+ [
+ 117
+ ],
+ [
+ 118
+ ],
+ [
+ 120
+ ],
+ [
+ 122
+ ],
+ [
+ 123
+ ],
+ [
+ 124
+ ],
+ [
+ 126
+ ],
+ [
+ 129
+ ],
+ [
+ 132
+ ],
+ [
+ 134
+ ],
+ [
+ 135
+ ],
+ [
+ 136
+ ],
+ [
+ 141
+ ],
+ [
+ 142
+ ],
+ [
+ 143
+ ],
+ [
+ 144
+ ],
+ [
+ 149
+ ],
+ [
+ 151
+ ],
+ [
+ 152
+ ],
+ [
+ 153
+ ],
+ [
+ 157
+ ],
+ [
+ 159
+ ],
+ [
+ 162
+ ],
+ [
+ 165
+ ],
+ [
+ 167
+ ],
+ [
+ 168
+ ],
+ [
+ 170
+ ],
+ [
+ 171
+ ],
+ [
+ 172
+ ],
+ [
+ 173
+ ],
+ [
+ 174
+ ],
+ [
+ 175
+ ],
+ [
+ 176
+ ],
+ [
+ 177
+ ],
+ [
+ 178
+ ],
+ [
+ 180
+ ],
+ [
+ 183
+ ],
+ [
+ 185
+ ],
+ [
+ 191
+ ],
+ [
+ 193
+ ],
+ [
+ 194
+ ],
+ [
+ 195
+ ],
+ [
+ 198
+ ],
+ [
+ 204
+ ],
+ [
+ 206
+ ],
+ [
+ 209
+ ],
+ [
+ 210
+ ],
+ [
+ 211
+ ],
+ [
+ 212
+ ],
+ [
+ 219
+ ],
+ [
+ 220
+ ],
+ [
+ 221
+ ],
+ [
+ 222
+ ],
+ [
+ 224
+ ],
+ [
+ 226
+ ],
+ [
+ 227
+ ],
+ [
+ 229
+ ],
+ [
+ 232
+ ],
+ [
+ 234
+ ],
+ [
+ 241
+ ],
+ [
+ 242
+ ],
+ [
+ 244
+ ],
+ [
+ 245
+ ],
+ [
+ 246
+ ],
+ [
+ 248
+ ],
+ [
+ 249
+ ],
+ [
+ 252
+ ],
+ [
+ 254
+ ],
+ [
+ 255
+ ],
+ [
+ 259
+ ],
+ [
+ 261
+ ],
+ [
+ 265
+ ],
+ [
+ 266
+ ],
+ [
+ 267
+ ],
+ [
+ 271
+ ],
+ [
+ 272
+ ],
+ [
+ 273
+ ],
+ [
+ 275
+ ],
+ [
+ 278
+ ],
+ [
+ 279
+ ],
+ [
+ 280
+ ],
+ [
+ 283
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 296
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the customer with email 'jacob.rivera@hotmail.com'?",
+ "sql": "SELECT name FROM customer_grid_flat WHERE email = 'jacob.rivera@hotmail.com';",
+ "answer": [
+ "Jacob Rivera"
+ ],
+ "sql_execute_result": [
+ [
+ "Jacob Rivera"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for order ID 282.",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 282;",
+ "answer": [
+ "3.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "List all customers from the region with ID 4.",
+ "sql": "SELECT name FROM customer_grid_flat WHERE billing_region_id = 4;",
+ "answer": [
+ "Adam Garcia",
+ "Jacob Rivera",
+ "Isaac Rodriguez"
+ ],
+ "sql_execute_result": [
+ [
+ "Adam Garcia"
+ ],
+ [
+ "Jacob Rivera"
+ ],
+ [
+ "Isaac Rodriguez"
+ ]
+ ]
+ },
+ {
+ "question": "Find the ISO3 code for the country with ISO2 code 'SE'.",
+ "sql": "SELECT iso3_code FROM directory_country WHERE iso2_code = 'SE';",
+ "answer": [
+ "SWE"
+ ],
+ "sql_execute_result": [
+ [
+ "SWE"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region for region_id 62?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE region_id = 62;",
+ "answer": [
+ "Washington"
+ ],
+ "sql_execute_result": [
+ [
+ "Washington"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2022-05-30 with store_id 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2022-05-30' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered for canceled orders on 2023-05-23 with store_id 0.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2023-05-23' AND store_id = 0 AND order_status = 'canceled';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the rating code for rating_id 1?",
+ "sql": "SELECT rating_code FROM rating WHERE rating_id = 1;",
+ "answer": [
+ "Quality"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer name associated with address entity_id 48?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS name FROM customer_address_entity WHERE entity_id = 48;",
+ "answer": [
+ "Jessica Chang"
+ ],
+ "sql_execute_result": [
+ [
+ "Jessica Chang"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sort order for option_id 42 in eav_attribute_option.",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE option_id = 42;",
+ "answer": [
+ "11"
+ ],
+ "sql_execute_result": [
+ [
+ 11
+ ]
+ ]
+ },
+ {
+ "question": "How many reviews have a status_id of 1?",
+ "sql": "SELECT COUNT(*) FROM review WHERE status_id = 1;",
+ "answer": [
+ "346"
+ ],
+ "sql_execute_result": [
+ [
+ 346
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for complete orders on 2023-03-25 with store_id 0?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2023-03-25' AND store_id = 0 AND order_status = 'complete';",
+ "answer": [
+ "57.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "57.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Which city is associated with customer address entity_id 31?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 31;",
+ "answer": [
+ "Denver"
+ ],
+ "sql_execute_result": [
+ [
+ "Denver"
+ ]
+ ]
+ },
+ {
+ "question": "List the attribute_id for which option_id 73 is associated in the eav_attribute_option table.",
+ "sql": "SELECT attribute_id FROM eav_attribute_option WHERE option_id = 73;",
+ "answer": [
+ "141"
+ ],
+ "sql_execute_result": [
+ [
+ 141
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity ID 372?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 372 AND attribute_id = 77;",
+ "answer": [
+ "60.00"
+ ],
+ "sql_execute_result": [
+ [
+ "60.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 89?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 89 AND attribute_id = 75;",
+ "answer": [
+ "Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.
\n• Full zip black hoodie pullover.
• Adjustable drawstring hood.
• Ribbed cuffs/waistband.
• Kangaroo pocket.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.
\n• Full zip black hoodie pullover.
• Adjustable drawstring hood.
• Ribbed cuffs/waistband.
• Kangaroo pocket.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'processing'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'processing';",
+ "answer": [
+ "Processing"
+ ],
+ "sql_execute_result": [
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the base grand total for the invoice with increment ID '000000002'.",
+ "sql": "SELECT base_grand_total FROM sales_invoice WHERE increment_id = '000000002';",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend label for the attribute code 'custom_layout'?",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'custom_layout';",
+ "answer": [
+ "New Layout"
+ ],
+ "sql_execute_result": [
+ [
+ "New Layout"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store currency code for the invoice with entity ID 1?",
+ "sql": "SELECT store_currency_code FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "Find the shipping amount for the invoice with entity ID 2.",
+ "sql": "SELECT shipping_amount FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "5.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "5.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the entity type ID for the attribute code 'level'?",
+ "sql": "SELECT entity_type_id FROM eav_attribute WHERE attribute_code = 'level';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the VAT number validation request ID attribute's backend type.",
+ "sql": "SELECT backend_type FROM eav_attribute WHERE attribute_code = 'vat_request_id';",
+ "answer": [
+ "static"
+ ],
+ "sql_execute_result": [
+ [
+ "static"
+ ]
+ ]
+ },
+ {
+ "question": "What is the quantity ordered for the invoice with entity ID 1?",
+ "sql": "SELECT total_qty FROM sales_invoice WHERE entity_id = 1;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the description for the product with entity ID 14.",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 14 AND attribute_id = 75;",
+ "answer": [
+ "The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.
\n\n- Adjustable crossbody strap.
\n- Top handle.
\n- Zippered interior pocket.
\n- Secure clip closures.
\n- Durable fabric construction.
\n
"
+ ],
+ "sql_execute_result": [
+ [
+ "The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.
\n\n- Adjustable crossbody strap.
\n- Top handle.
\n- Zippered interior pocket.
\n- Secure clip closures.
\n- Durable fabric construction.
\n
"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the stock with ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the frontend label for the attribute with code 'tier_price'.",
+ "sql": "SELECT frontend_label FROM eav_attribute WHERE attribute_code = 'tier_price';",
+ "answer": [
+ "Tier Price"
+ ],
+ "sql_execute_result": [
+ [
+ "Tier Price"
+ ]
+ ]
+ },
+ {
+ "question": "Which website is marked as default?",
+ "sql": "SELECT name FROM store_website WHERE is_default = 1;",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "List all order statuses with the label 'Pending'.",
+ "sql": "SELECT label FROM sales_order_status WHERE label LIKE 'Pending%';",
+ "answer": [
+ "Pending",
+ "Pending Payment",
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending"
+ ],
+ [
+ "Pending Payment"
+ ],
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute 'news_from_date'?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_code = 'news_from_date';",
+ "answer": [
+ "Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate"
+ ]
+ ]
+ },
+ {
+ "question": "Get the website code for the website with ID 1.",
+ "sql": "SELECT code FROM store_website WHERE website_id = 1;",
+ "answer": [
+ "base"
+ ],
+ "sql_execute_result": [
+ [
+ "base"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for status 'paypal_canceled_reversal'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "Is the store with ID 0 active?",
+ "sql": "SELECT is_active FROM store WHERE store_id = 0;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity_id 25?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 25 AND attribute_id = 45;",
+ "answer": [
+ "Tees"
+ ],
+ "sql_execute_result": [
+ [
+ "Tees"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price of the product with entity_id 1030?",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1030 AND attribute_id = 77;",
+ "answer": [
+ "57.000000"
+ ],
+ "sql_execute_result": [
+ [
+ "57.000000"
+ ]
+ ]
+ },
+ {
+ "question": "Which city does the customer with address entity_id 9 live in?",
+ "sql": "SELECT city FROM customer_address_entity WHERE entity_id = 9;",
+ "answer": [
+ "Chicago"
+ ],
+ "sql_execute_result": [
+ [
+ "Chicago"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with page_id 6?",
+ "sql": "SELECT title FROM cms_page WHERE page_id = 6;",
+ "answer": [
+ "Customer Service"
+ ],
+ "sql_execute_result": [
+ [
+ "Customer Service"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status of the review with review_id 256.",
+ "sql": "SELECT status_id FROM review WHERE review_id = 256;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the identifier for the CMS page titled 'About us'?",
+ "sql": "SELECT identifier FROM cms_page WHERE title = 'About us';",
+ "answer": [
+ "about-us"
+ ],
+ "sql_execute_result": [
+ [
+ "about-us"
+ ]
+ ]
+ },
+ {
+ "question": "List the street address for customer address with entity_id 44.",
+ "sql": "SELECT street FROM customer_address_entity WHERE entity_id = 44;",
+ "answer": [
+ "123 Broadway"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Broadway"
+ ]
+ ]
+ },
+ {
+ "question": "What is the category path for the category with entity_id 40?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 40 AND attribute_id = 120;",
+ "answer": [
+ "collections/eco-new"
+ ],
+ "sql_execute_result": [
+ [
+ "collections/eco-new"
+ ]
+ ]
+ },
+ {
+ "question": "Is the CMS page with identifier 'privacy-policy-cookie-restriction-mode' active?",
+ "sql": "SELECT is_active FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the last name of the customer at address entity_id 6?",
+ "sql": "SELECT lastname FROM customer_address_entity WHERE entity_id = 6;",
+ "answer": [
+ "Williams"
+ ],
+ "sql_execute_result": [
+ [
+ "Williams"
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock quantity for product with ID 821?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 821;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the region code for the region 'Jura' in Switzerland.",
+ "sql": "SELECT code FROM directory_country_region WHERE default_name = 'Jura' AND country_id = 'CH';",
+ "answer": [
+ "JU"
+ ],
+ "sql_execute_result": [
+ [
+ "JU"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status code for reviews that are 'Not Approved'?",
+ "sql": "SELECT status_code FROM review_status WHERE status_id = 3;",
+ "answer": [
+ "Not Approved"
+ ],
+ "sql_execute_result": [
+ [
+ "Not Approved"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the parent category ID for the category with entity ID 40.",
+ "sql": "SELECT parent_id FROM catalog_category_entity WHERE entity_id = 40;",
+ "answer": [
+ "7"
+ ],
+ "sql_execute_result": [
+ [
+ 7
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the invoice item related to product ID 1492?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE product_id = 1492;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "How many children does category with entity ID 31 have?",
+ "sql": "SELECT children_count FROM catalog_category_entity WHERE entity_id = 31;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with ID 454 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 454;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with entity ID 1.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE entity_id = 1;",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default name of the region with code 'AR-E' in Argentina?",
+ "sql": "SELECT default_name FROM directory_country_region WHERE code = 'AR-E' AND country_id = 'AR';",
+ "answer": [
+ "Entre R\u00edos"
+ ],
+ "sql_execute_result": [
+ [
+ "Entre R\u00edos"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the position of category with entity ID 14.",
+ "sql": "SELECT position FROM catalog_category_entity WHERE entity_id = 14;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of product with ID 1150 ordered?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_order_item WHERE product_id = 1150;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address of the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are associated with category ID 2?",
+ "sql": "SELECT COUNT(product_id) FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 1181
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for all products in June 2022?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_monthly WHERE period = '2022-06-01';",
+ "answer": [
+ "68.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "68.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What are the details of the billing address for the shipment with increment ID '000000001'?",
+ "sql": "SELECT * FROM sales_order_address WHERE entity_id = (SELECT billing_address_id FROM sales_shipment WHERE increment_id = '000000001');",
+ "answer": [
+ "Michigan",
+ "49628-7978",
+ "Costello",
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "roni_cost@example.com",
+ "(555) 229-3326",
+ "US",
+ "Veronica"
+ ],
+ "sql_execute_result": [
+ [
+ 2,
+ 1,
+ 1,
+ 1,
+ 33,
+ null,
+ null,
+ "Michigan",
+ "49628-7978",
+ "Costello",
+ "6146 Honey Bluff Parkway",
+ "Calder",
+ "roni_cost@example.com",
+ "(555) 229-3326",
+ "US",
+ "Veronica",
+ "billing",
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the order with entity ID 1?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = (SELECT status FROM sales_order WHERE entity_id = 1);",
+ "answer": [
+ "Canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WT05-S-White'?",
+ "sql": "SELECT name FROM sales_order_item WHERE sku = 'WT05-S-White';",
+ "answer": [
+ "Leah Yoga Top",
+ "Leah Yoga Top-S-White"
+ ],
+ "sql_execute_result": [
+ [
+ "Leah Yoga Top"
+ ],
+ [
+ "Leah Yoga Top-S-White"
+ ]
+ ]
+ },
+ {
+ "question": "Find all shipment items for order with ID 3.",
+ "sql": "SELECT name, sku FROM sales_shipment_item WHERE parent_id = 3;",
+ "answer": [
+ "Troy Yoga Short, MSH09-36-Black",
+ "Eos V-Neck Hoodie, WH11-S-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short",
+ "MSH09-36-Black"
+ ],
+ [
+ "Eos V-Neck Hoodie",
+ "WH11-S-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "What is the discount amount for the product 'Aether Gym Pant' in order ID 34?",
+ "sql": "SELECT discount_amount FROM sales_order_item WHERE order_id = 34 AND name = 'Aether Gym Pant ';",
+ "answer": [
+ "11.8400"
+ ],
+ "sql_execute_result": [
+ [
+ "11.8400"
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 51 used for promo rules?",
+ "sql": "SELECT is_used_for_promo_rules FROM catalog_eav_attribute WHERE attribute_id = 51;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "List all active ratings available for products.",
+ "sql": "SELECT rating_code FROM rating WHERE is_active = 1;",
+ "answer": [
+ "Quality",
+ "Value",
+ "Price",
+ "Rating"
+ ],
+ "sql_execute_result": [
+ [
+ "Quality"
+ ],
+ [
+ "Value"
+ ],
+ [
+ "Price"
+ ],
+ [
+ "Rating"
+ ]
+ ]
+ },
+ {
+ "question": "How many prices were found for the product named 'Sprite Stasis Ball 65 cm'?",
+ "sql": "SELECT price FROM sales_order_item WHERE name = 'Sprite Stasis Ball 65 cm';",
+ "answer": [
+ "16"
+ ],
+ "sql_execute_result": [
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ],
+ [
+ "27.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating code 'Price'?",
+ "sql": "SELECT position FROM rating WHERE rating_code = 'Price';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "Check if the sequence for profile ID 4 is active.",
+ "sql": "SELECT is_active FROM sales_sequence_profile WHERE profile_id = 4;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the product type of item with ID 196?",
+ "sql": "SELECT product_type FROM sales_order_item WHERE item_id = 196;",
+ "answer": [
+ "simple"
+ ],
+ "sql_execute_result": [
+ [
+ "simple"
+ ]
+ ]
+ },
+ {
+ "question": "Find the weight of the product 'Primo Endurance Tank-M-Yellow'.",
+ "sql": "SELECT weight FROM sales_order_item WHERE name = 'Primo Endurance Tank-M-Yellow';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current state of the order with status 'pending'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending';",
+ "answer": [
+ "new"
+ ],
+ "sql_execute_result": [
+ [
+ "new"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were found in category ID 2?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 2;",
+ "answer": [
+ "1181"
+ ],
+ "sql_execute_result": [
+ [
+ 47
+ ],
+ [
+ 48
+ ],
+ [
+ 49
+ ],
+ [
+ 50
+ ],
+ [
+ 51
+ ],
+ [
+ 52
+ ],
+ [
+ 53
+ ],
+ [
+ 54
+ ],
+ [
+ 55
+ ],
+ [
+ 56
+ ],
+ [
+ 57
+ ],
+ [
+ 58
+ ],
+ [
+ 59
+ ],
+ [
+ 60
+ ],
+ [
+ 61
+ ],
+ [
+ 62
+ ],
+ [
+ 79
+ ],
+ [
+ 80
+ ],
+ [
+ 81
+ ],
+ [
+ 82
+ ],
+ [
+ 83
+ ],
+ [
+ 84
+ ],
+ [
+ 85
+ ],
+ [
+ 86
+ ],
+ [
+ 87
+ ],
+ [
+ 88
+ ],
+ [
+ 89
+ ],
+ [
+ 90
+ ],
+ [
+ 91
+ ],
+ [
+ 92
+ ],
+ [
+ 93
+ ],
+ [
+ 94
+ ],
+ [
+ 95
+ ],
+ [
+ 96
+ ],
+ [
+ 97
+ ],
+ [
+ 98
+ ],
+ [
+ 99
+ ],
+ [
+ 100
+ ],
+ [
+ 101
+ ],
+ [
+ 102
+ ],
+ [
+ 103
+ ],
+ [
+ 104
+ ],
+ [
+ 105
+ ],
+ [
+ 106
+ ],
+ [
+ 107
+ ],
+ [
+ 108
+ ],
+ [
+ 109
+ ],
+ [
+ 110
+ ],
+ [
+ 287
+ ],
+ [
+ 288
+ ],
+ [
+ 289
+ ],
+ [
+ 290
+ ],
+ [
+ 291
+ ],
+ [
+ 292
+ ],
+ [
+ 293
+ ],
+ [
+ 294
+ ],
+ [
+ 295
+ ],
+ [
+ 296
+ ],
+ [
+ 297
+ ],
+ [
+ 298
+ ],
+ [
+ 299
+ ],
+ [
+ 300
+ ],
+ [
+ 301
+ ],
+ [
+ 302
+ ],
+ [
+ 383
+ ],
+ [
+ 384
+ ],
+ [
+ 385
+ ],
+ [
+ 386
+ ],
+ [
+ 387
+ ],
+ [
+ 388
+ ],
+ [
+ 389
+ ],
+ [
+ 390
+ ],
+ [
+ 391
+ ],
+ [
+ 392
+ ],
+ [
+ 393
+ ],
+ [
+ 394
+ ],
+ [
+ 395
+ ],
+ [
+ 396
+ ],
+ [
+ 397
+ ],
+ [
+ 398
+ ],
+ [
+ 447
+ ],
+ [
+ 448
+ ],
+ [
+ 449
+ ],
+ [
+ 450
+ ],
+ [
+ 451
+ ],
+ [
+ 452
+ ],
+ [
+ 453
+ ],
+ [
+ 454
+ ],
+ [
+ 455
+ ],
+ [
+ 456
+ ],
+ [
+ 457
+ ],
+ [
+ 458
+ ],
+ [
+ 459
+ ],
+ [
+ 460
+ ],
+ [
+ 461
+ ],
+ [
+ 462
+ ],
+ [
+ 689
+ ],
+ [
+ 690
+ ],
+ [
+ 691
+ ],
+ [
+ 692
+ ],
+ [
+ 693
+ ],
+ [
+ 694
+ ],
+ [
+ 713
+ ],
+ [
+ 714
+ ],
+ [
+ 715
+ ],
+ [
+ 716
+ ],
+ [
+ 717
+ ],
+ [
+ 718
+ ],
+ [
+ 725
+ ],
+ [
+ 726
+ ],
+ [
+ 727
+ ],
+ [
+ 728
+ ],
+ [
+ 729
+ ],
+ [
+ 730
+ ],
+ [
+ 731
+ ],
+ [
+ 732
+ ],
+ [
+ 733
+ ],
+ [
+ 734
+ ],
+ [
+ 735
+ ],
+ [
+ 736
+ ],
+ [
+ 737
+ ],
+ [
+ 738
+ ],
+ [
+ 739
+ ],
+ [
+ 740
+ ],
+ [
+ 741
+ ],
+ [
+ 742
+ ],
+ [
+ 743
+ ],
+ [
+ 744
+ ],
+ [
+ 745
+ ],
+ [
+ 746
+ ],
+ [
+ 747
+ ],
+ [
+ 748
+ ],
+ [
+ 749
+ ],
+ [
+ 750
+ ],
+ [
+ 751
+ ],
+ [
+ 752
+ ],
+ [
+ 753
+ ],
+ [
+ 754
+ ],
+ [
+ 755
+ ],
+ [
+ 756
+ ],
+ [
+ 757
+ ],
+ [
+ 758
+ ],
+ [
+ 759
+ ],
+ [
+ 760
+ ],
+ [
+ 761
+ ],
+ [
+ 762
+ ],
+ [
+ 763
+ ],
+ [
+ 764
+ ],
+ [
+ 765
+ ],
+ [
+ 766
+ ],
+ [
+ 767
+ ],
+ [
+ 768
+ ],
+ [
+ 769
+ ],
+ [
+ 770
+ ],
+ [
+ 771
+ ],
+ [
+ 772
+ ],
+ [
+ 773
+ ],
+ [
+ 774
+ ],
+ [
+ 775
+ ],
+ [
+ 776
+ ],
+ [
+ 777
+ ],
+ [
+ 778
+ ],
+ [
+ 779
+ ],
+ [
+ 780
+ ],
+ [
+ 781
+ ],
+ [
+ 782
+ ],
+ [
+ 783
+ ],
+ [
+ 784
+ ],
+ [
+ 785
+ ],
+ [
+ 786
+ ],
+ [
+ 787
+ ],
+ [
+ 788
+ ],
+ [
+ 789
+ ],
+ [
+ 790
+ ],
+ [
+ 791
+ ],
+ [
+ 792
+ ],
+ [
+ 793
+ ],
+ [
+ 794
+ ],
+ [
+ 795
+ ],
+ [
+ 796
+ ],
+ [
+ 797
+ ],
+ [
+ 798
+ ],
+ [
+ 799
+ ],
+ [
+ 800
+ ],
+ [
+ 801
+ ],
+ [
+ 802
+ ],
+ [
+ 803
+ ],
+ [
+ 804
+ ],
+ [
+ 805
+ ],
+ [
+ 806
+ ],
+ [
+ 807
+ ],
+ [
+ 808
+ ],
+ [
+ 809
+ ],
+ [
+ 810
+ ],
+ [
+ 811
+ ],
+ [
+ 812
+ ],
+ [
+ 813
+ ],
+ [
+ 814
+ ],
+ [
+ 815
+ ],
+ [
+ 816
+ ],
+ [
+ 817
+ ],
+ [
+ 818
+ ],
+ [
+ 819
+ ],
+ [
+ 820
+ ],
+ [
+ 821
+ ],
+ [
+ 822
+ ],
+ [
+ 823
+ ],
+ [
+ 824
+ ],
+ [
+ 825
+ ],
+ [
+ 826
+ ],
+ [
+ 827
+ ],
+ [
+ 828
+ ],
+ [
+ 829
+ ],
+ [
+ 830
+ ],
+ [
+ 831
+ ],
+ [
+ 832
+ ],
+ [
+ 833
+ ],
+ [
+ 834
+ ],
+ [
+ 835
+ ],
+ [
+ 836
+ ],
+ [
+ 837
+ ],
+ [
+ 838
+ ],
+ [
+ 839
+ ],
+ [
+ 840
+ ],
+ [
+ 841
+ ],
+ [
+ 842
+ ],
+ [
+ 843
+ ],
+ [
+ 844
+ ],
+ [
+ 845
+ ],
+ [
+ 846
+ ],
+ [
+ 847
+ ],
+ [
+ 848
+ ],
+ [
+ 849
+ ],
+ [
+ 850
+ ],
+ [
+ 851
+ ],
+ [
+ 852
+ ],
+ [
+ 853
+ ],
+ [
+ 854
+ ],
+ [
+ 855
+ ],
+ [
+ 856
+ ],
+ [
+ 857
+ ],
+ [
+ 858
+ ],
+ [
+ 859
+ ],
+ [
+ 860
+ ],
+ [
+ 861
+ ],
+ [
+ 862
+ ],
+ [
+ 863
+ ],
+ [
+ 864
+ ],
+ [
+ 865
+ ],
+ [
+ 866
+ ],
+ [
+ 867
+ ],
+ [
+ 868
+ ],
+ [
+ 869
+ ],
+ [
+ 870
+ ],
+ [
+ 871
+ ],
+ [
+ 872
+ ],
+ [
+ 873
+ ],
+ [
+ 874
+ ],
+ [
+ 875
+ ],
+ [
+ 876
+ ],
+ [
+ 877
+ ],
+ [
+ 878
+ ],
+ [
+ 879
+ ],
+ [
+ 880
+ ],
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ],
+ [
+ 1029
+ ],
+ [
+ 1030
+ ],
+ [
+ 1031
+ ],
+ [
+ 1032
+ ],
+ [
+ 1033
+ ],
+ [
+ 1034
+ ],
+ [
+ 1035
+ ],
+ [
+ 1036
+ ],
+ [
+ 1037
+ ],
+ [
+ 1038
+ ],
+ [
+ 1039
+ ],
+ [
+ 1040
+ ],
+ [
+ 1041
+ ],
+ [
+ 1042
+ ],
+ [
+ 1043
+ ],
+ [
+ 1044
+ ],
+ [
+ 1045
+ ],
+ [
+ 1046
+ ],
+ [
+ 1047
+ ],
+ [
+ 1048
+ ],
+ [
+ 1049
+ ],
+ [
+ 1050
+ ],
+ [
+ 1051
+ ],
+ [
+ 1052
+ ],
+ [
+ 1053
+ ],
+ [
+ 1054
+ ],
+ [
+ 1055
+ ],
+ [
+ 1056
+ ],
+ [
+ 1057
+ ],
+ [
+ 1058
+ ],
+ [
+ 1059
+ ],
+ [
+ 1060
+ ],
+ [
+ 1115
+ ],
+ [
+ 1116
+ ],
+ [
+ 1117
+ ],
+ [
+ 1118
+ ],
+ [
+ 1119
+ ],
+ [
+ 1120
+ ],
+ [
+ 1121
+ ],
+ [
+ 1122
+ ],
+ [
+ 1123
+ ],
+ [
+ 1124
+ ],
+ [
+ 1125
+ ],
+ [
+ 1126
+ ],
+ [
+ 1127
+ ],
+ [
+ 1128
+ ],
+ [
+ 1129
+ ],
+ [
+ 1130
+ ],
+ [
+ 1131
+ ],
+ [
+ 1132
+ ],
+ [
+ 1133
+ ],
+ [
+ 1134
+ ],
+ [
+ 1135
+ ],
+ [
+ 1136
+ ],
+ [
+ 1137
+ ],
+ [
+ 1138
+ ],
+ [
+ 1139
+ ],
+ [
+ 1140
+ ],
+ [
+ 1141
+ ],
+ [
+ 1142
+ ],
+ [
+ 1143
+ ],
+ [
+ 1144
+ ],
+ [
+ 1145
+ ],
+ [
+ 1146
+ ],
+ [
+ 1147
+ ],
+ [
+ 1148
+ ],
+ [
+ 1149
+ ],
+ [
+ 1150
+ ],
+ [
+ 1151
+ ],
+ [
+ 1152
+ ],
+ [
+ 1153
+ ],
+ [
+ 1154
+ ],
+ [
+ 1155
+ ],
+ [
+ 1156
+ ],
+ [
+ 1157
+ ],
+ [
+ 1158
+ ],
+ [
+ 1159
+ ],
+ [
+ 1160
+ ],
+ [
+ 1161
+ ],
+ [
+ 1162
+ ],
+ [
+ 1163
+ ],
+ [
+ 1164
+ ],
+ [
+ 1165
+ ],
+ [
+ 1166
+ ],
+ [
+ 1167
+ ],
+ [
+ 1168
+ ],
+ [
+ 1169
+ ],
+ [
+ 1170
+ ],
+ [
+ 1171
+ ],
+ [
+ 1172
+ ],
+ [
+ 1173
+ ],
+ [
+ 1174
+ ],
+ [
+ 1175
+ ],
+ [
+ 1176
+ ],
+ [
+ 1177
+ ],
+ [
+ 1178
+ ],
+ [
+ 1179
+ ],
+ [
+ 1180
+ ],
+ [
+ 1181
+ ],
+ [
+ 1182
+ ],
+ [
+ 1183
+ ],
+ [
+ 1184
+ ],
+ [
+ 1185
+ ],
+ [
+ 1186
+ ],
+ [
+ 1187
+ ],
+ [
+ 1188
+ ],
+ [
+ 1189
+ ],
+ [
+ 1190
+ ],
+ [
+ 1191
+ ],
+ [
+ 1192
+ ],
+ [
+ 1193
+ ],
+ [
+ 1194
+ ],
+ [
+ 1195
+ ],
+ [
+ 1196
+ ],
+ [
+ 1197
+ ],
+ [
+ 1198
+ ],
+ [
+ 1199
+ ],
+ [
+ 1200
+ ],
+ [
+ 1201
+ ],
+ [
+ 1202
+ ],
+ [
+ 1203
+ ],
+ [
+ 1204
+ ],
+ [
+ 1205
+ ],
+ [
+ 1206
+ ],
+ [
+ 1207
+ ],
+ [
+ 1208
+ ],
+ [
+ 1209
+ ],
+ [
+ 1210
+ ],
+ [
+ 1211
+ ],
+ [
+ 1212
+ ],
+ [
+ 1213
+ ],
+ [
+ 1214
+ ],
+ [
+ 1215
+ ],
+ [
+ 1216
+ ],
+ [
+ 1217
+ ],
+ [
+ 1218
+ ],
+ [
+ 1219
+ ],
+ [
+ 1220
+ ],
+ [
+ 1221
+ ],
+ [
+ 1222
+ ],
+ [
+ 1223
+ ],
+ [
+ 1224
+ ],
+ [
+ 1225
+ ],
+ [
+ 1226
+ ],
+ [
+ 1227
+ ],
+ [
+ 1228
+ ],
+ [
+ 1229
+ ],
+ [
+ 1230
+ ],
+ [
+ 1231
+ ],
+ [
+ 1232
+ ],
+ [
+ 1233
+ ],
+ [
+ 1234
+ ],
+ [
+ 1235
+ ],
+ [
+ 1236
+ ],
+ [
+ 1253
+ ],
+ [
+ 1254
+ ],
+ [
+ 1255
+ ],
+ [
+ 1256
+ ],
+ [
+ 1257
+ ],
+ [
+ 1258
+ ],
+ [
+ 1259
+ ],
+ [
+ 1260
+ ],
+ [
+ 1261
+ ],
+ [
+ 1262
+ ],
+ [
+ 1263
+ ],
+ [
+ 1264
+ ],
+ [
+ 1265
+ ],
+ [
+ 1266
+ ],
+ [
+ 1267
+ ],
+ [
+ 1268
+ ],
+ [
+ 1301
+ ],
+ [
+ 1302
+ ],
+ [
+ 1303
+ ],
+ [
+ 1304
+ ],
+ [
+ 1305
+ ],
+ [
+ 1306
+ ],
+ [
+ 1307
+ ],
+ [
+ 1308
+ ],
+ [
+ 1309
+ ],
+ [
+ 1310
+ ],
+ [
+ 1311
+ ],
+ [
+ 1312
+ ],
+ [
+ 1313
+ ],
+ [
+ 1314
+ ],
+ [
+ 1315
+ ],
+ [
+ 1316
+ ],
+ [
+ 1317
+ ],
+ [
+ 1318
+ ],
+ [
+ 1319
+ ],
+ [
+ 1320
+ ],
+ [
+ 1321
+ ],
+ [
+ 1322
+ ],
+ [
+ 1323
+ ],
+ [
+ 1324
+ ],
+ [
+ 1325
+ ],
+ [
+ 1326
+ ],
+ [
+ 1327
+ ],
+ [
+ 1328
+ ],
+ [
+ 1329
+ ],
+ [
+ 1330
+ ],
+ [
+ 1331
+ ],
+ [
+ 1332
+ ],
+ [
+ 1333
+ ],
+ [
+ 1334
+ ],
+ [
+ 1335
+ ],
+ [
+ 1336
+ ],
+ [
+ 1337
+ ],
+ [
+ 1338
+ ],
+ [
+ 1339
+ ],
+ [
+ 1340
+ ],
+ [
+ 1341
+ ],
+ [
+ 1342
+ ],
+ [
+ 1343
+ ],
+ [
+ 1344
+ ],
+ [
+ 1345
+ ],
+ [
+ 1346
+ ],
+ [
+ 1347
+ ],
+ [
+ 1348
+ ],
+ [
+ 1349
+ ],
+ [
+ 1350
+ ],
+ [
+ 1351
+ ],
+ [
+ 1352
+ ],
+ [
+ 1353
+ ],
+ [
+ 1354
+ ],
+ [
+ 1355
+ ],
+ [
+ 1356
+ ],
+ [
+ 1357
+ ],
+ [
+ 1358
+ ],
+ [
+ 1359
+ ],
+ [
+ 1360
+ ],
+ [
+ 1361
+ ],
+ [
+ 1362
+ ],
+ [
+ 1363
+ ],
+ [
+ 1364
+ ],
+ [
+ 1365
+ ],
+ [
+ 1366
+ ],
+ [
+ 1367
+ ],
+ [
+ 1368
+ ],
+ [
+ 1369
+ ],
+ [
+ 1370
+ ],
+ [
+ 1371
+ ],
+ [
+ 1372
+ ],
+ [
+ 1373
+ ],
+ [
+ 1374
+ ],
+ [
+ 1375
+ ],
+ [
+ 1376
+ ],
+ [
+ 1377
+ ],
+ [
+ 1378
+ ],
+ [
+ 1379
+ ],
+ [
+ 1380
+ ],
+ [
+ 1381
+ ],
+ [
+ 1382
+ ],
+ [
+ 1383
+ ],
+ [
+ 1384
+ ],
+ [
+ 1385
+ ],
+ [
+ 1386
+ ],
+ [
+ 1387
+ ],
+ [
+ 1388
+ ],
+ [
+ 1389
+ ],
+ [
+ 1390
+ ],
+ [
+ 1391
+ ],
+ [
+ 1392
+ ],
+ [
+ 1393
+ ],
+ [
+ 1394
+ ],
+ [
+ 1395
+ ],
+ [
+ 1396
+ ],
+ [
+ 1397
+ ],
+ [
+ 1398
+ ],
+ [
+ 1399
+ ],
+ [
+ 1400
+ ],
+ [
+ 1401
+ ],
+ [
+ 1402
+ ],
+ [
+ 1403
+ ],
+ [
+ 1404
+ ],
+ [
+ 1405
+ ],
+ [
+ 1406
+ ],
+ [
+ 1407
+ ],
+ [
+ 1408
+ ],
+ [
+ 1409
+ ],
+ [
+ 1410
+ ],
+ [
+ 1411
+ ],
+ [
+ 1412
+ ],
+ [
+ 1413
+ ],
+ [
+ 1414
+ ],
+ [
+ 1415
+ ],
+ [
+ 1416
+ ],
+ [
+ 1417
+ ],
+ [
+ 1418
+ ],
+ [
+ 1419
+ ],
+ [
+ 1420
+ ],
+ [
+ 1421
+ ],
+ [
+ 1422
+ ],
+ [
+ 1423
+ ],
+ [
+ 1424
+ ],
+ [
+ 1425
+ ],
+ [
+ 1426
+ ],
+ [
+ 1427
+ ],
+ [
+ 1428
+ ],
+ [
+ 1429
+ ],
+ [
+ 1430
+ ],
+ [
+ 1431
+ ],
+ [
+ 1432
+ ],
+ [
+ 1433
+ ],
+ [
+ 1434
+ ],
+ [
+ 1435
+ ],
+ [
+ 1436
+ ],
+ [
+ 1437
+ ],
+ [
+ 1438
+ ],
+ [
+ 1439
+ ],
+ [
+ 1440
+ ],
+ [
+ 1441
+ ],
+ [
+ 1442
+ ],
+ [
+ 1443
+ ],
+ [
+ 1444
+ ],
+ [
+ 1445
+ ],
+ [
+ 1446
+ ],
+ [
+ 1447
+ ],
+ [
+ 1448
+ ],
+ [
+ 1449
+ ],
+ [
+ 1450
+ ],
+ [
+ 1451
+ ],
+ [
+ 1452
+ ],
+ [
+ 1453
+ ],
+ [
+ 1454
+ ],
+ [
+ 1455
+ ],
+ [
+ 1456
+ ],
+ [
+ 1457
+ ],
+ [
+ 1458
+ ],
+ [
+ 1459
+ ],
+ [
+ 1460
+ ],
+ [
+ 1461
+ ],
+ [
+ 1462
+ ],
+ [
+ 1463
+ ],
+ [
+ 1464
+ ],
+ [
+ 1465
+ ],
+ [
+ 1466
+ ],
+ [
+ 1467
+ ],
+ [
+ 1468
+ ],
+ [
+ 1469
+ ],
+ [
+ 1470
+ ],
+ [
+ 1471
+ ],
+ [
+ 1472
+ ],
+ [
+ 1473
+ ],
+ [
+ 1474
+ ],
+ [
+ 1475
+ ],
+ [
+ 1476
+ ],
+ [
+ 1477
+ ],
+ [
+ 1478
+ ],
+ [
+ 1479
+ ],
+ [
+ 1480
+ ],
+ [
+ 1481
+ ],
+ [
+ 1482
+ ],
+ [
+ 1483
+ ],
+ [
+ 1484
+ ],
+ [
+ 1485
+ ],
+ [
+ 1486
+ ],
+ [
+ 1487
+ ],
+ [
+ 1488
+ ],
+ [
+ 1489
+ ],
+ [
+ 1490
+ ],
+ [
+ 1491
+ ],
+ [
+ 1492
+ ],
+ [
+ 1493
+ ],
+ [
+ 1494
+ ],
+ [
+ 1495
+ ],
+ [
+ 1496
+ ],
+ [
+ 1497
+ ],
+ [
+ 1498
+ ],
+ [
+ 1499
+ ],
+ [
+ 1500
+ ],
+ [
+ 1501
+ ],
+ [
+ 1502
+ ],
+ [
+ 1503
+ ],
+ [
+ 1504
+ ],
+ [
+ 1505
+ ],
+ [
+ 1506
+ ],
+ [
+ 1507
+ ],
+ [
+ 1508
+ ],
+ [
+ 1509
+ ],
+ [
+ 1510
+ ],
+ [
+ 1511
+ ],
+ [
+ 1512
+ ],
+ [
+ 1513
+ ],
+ [
+ 1514
+ ],
+ [
+ 1515
+ ],
+ [
+ 1516
+ ],
+ [
+ 1517
+ ],
+ [
+ 1518
+ ],
+ [
+ 1519
+ ],
+ [
+ 1520
+ ],
+ [
+ 1521
+ ],
+ [
+ 1522
+ ],
+ [
+ 1523
+ ],
+ [
+ 1524
+ ],
+ [
+ 1525
+ ],
+ [
+ 1526
+ ],
+ [
+ 1527
+ ],
+ [
+ 1528
+ ],
+ [
+ 1529
+ ],
+ [
+ 1530
+ ],
+ [
+ 1531
+ ],
+ [
+ 1532
+ ],
+ [
+ 1533
+ ],
+ [
+ 1534
+ ],
+ [
+ 1535
+ ],
+ [
+ 1536
+ ],
+ [
+ 1537
+ ],
+ [
+ 1538
+ ],
+ [
+ 1539
+ ],
+ [
+ 1540
+ ],
+ [
+ 1541
+ ],
+ [
+ 1542
+ ],
+ [
+ 1543
+ ],
+ [
+ 1544
+ ],
+ [
+ 1545
+ ],
+ [
+ 1546
+ ],
+ [
+ 1547
+ ],
+ [
+ 1548
+ ],
+ [
+ 1549
+ ],
+ [
+ 1550
+ ],
+ [
+ 1551
+ ],
+ [
+ 1552
+ ],
+ [
+ 1553
+ ],
+ [
+ 1554
+ ],
+ [
+ 1555
+ ],
+ [
+ 1556
+ ],
+ [
+ 1557
+ ],
+ [
+ 1558
+ ],
+ [
+ 1559
+ ],
+ [
+ 1560
+ ],
+ [
+ 1561
+ ],
+ [
+ 1562
+ ],
+ [
+ 1563
+ ],
+ [
+ 1564
+ ],
+ [
+ 1565
+ ],
+ [
+ 1566
+ ],
+ [
+ 1567
+ ],
+ [
+ 1568
+ ],
+ [
+ 1569
+ ],
+ [
+ 1570
+ ],
+ [
+ 1571
+ ],
+ [
+ 1572
+ ],
+ [
+ 1573
+ ],
+ [
+ 1574
+ ],
+ [
+ 1575
+ ],
+ [
+ 1576
+ ],
+ [
+ 1577
+ ],
+ [
+ 1578
+ ],
+ [
+ 1579
+ ],
+ [
+ 1580
+ ],
+ [
+ 1581
+ ],
+ [
+ 1582
+ ],
+ [
+ 1583
+ ],
+ [
+ 1584
+ ],
+ [
+ 1585
+ ],
+ [
+ 1586
+ ],
+ [
+ 1587
+ ],
+ [
+ 1588
+ ],
+ [
+ 1589
+ ],
+ [
+ 1590
+ ],
+ [
+ 1591
+ ],
+ [
+ 1592
+ ],
+ [
+ 1593
+ ],
+ [
+ 1594
+ ],
+ [
+ 1595
+ ],
+ [
+ 1596
+ ],
+ [
+ 1597
+ ],
+ [
+ 1598
+ ],
+ [
+ 1599
+ ],
+ [
+ 1600
+ ],
+ [
+ 1601
+ ],
+ [
+ 1602
+ ],
+ [
+ 1603
+ ],
+ [
+ 1604
+ ],
+ [
+ 1621
+ ],
+ [
+ 1622
+ ],
+ [
+ 1623
+ ],
+ [
+ 1624
+ ],
+ [
+ 1625
+ ],
+ [
+ 1626
+ ],
+ [
+ 1627
+ ],
+ [
+ 1628
+ ],
+ [
+ 1629
+ ],
+ [
+ 1630
+ ],
+ [
+ 1631
+ ],
+ [
+ 1632
+ ],
+ [
+ 1633
+ ],
+ [
+ 1634
+ ],
+ [
+ 1635
+ ],
+ [
+ 1636
+ ],
+ [
+ 1669
+ ],
+ [
+ 1670
+ ],
+ [
+ 1671
+ ],
+ [
+ 1672
+ ],
+ [
+ 1673
+ ],
+ [
+ 1674
+ ],
+ [
+ 1675
+ ],
+ [
+ 1676
+ ],
+ [
+ 1677
+ ],
+ [
+ 1678
+ ],
+ [
+ 1679
+ ],
+ [
+ 1680
+ ],
+ [
+ 1681
+ ],
+ [
+ 1682
+ ],
+ [
+ 1683
+ ],
+ [
+ 1684
+ ],
+ [
+ 1701
+ ],
+ [
+ 1702
+ ],
+ [
+ 1703
+ ],
+ [
+ 1704
+ ],
+ [
+ 1705
+ ],
+ [
+ 1706
+ ],
+ [
+ 1707
+ ],
+ [
+ 1708
+ ],
+ [
+ 1709
+ ],
+ [
+ 1710
+ ],
+ [
+ 1711
+ ],
+ [
+ 1712
+ ],
+ [
+ 1713
+ ],
+ [
+ 1714
+ ],
+ [
+ 1715
+ ],
+ [
+ 1716
+ ],
+ [
+ 1717
+ ],
+ [
+ 1718
+ ],
+ [
+ 1719
+ ],
+ [
+ 1720
+ ],
+ [
+ 1721
+ ],
+ [
+ 1722
+ ],
+ [
+ 1723
+ ],
+ [
+ 1724
+ ],
+ [
+ 1725
+ ],
+ [
+ 1726
+ ],
+ [
+ 1727
+ ],
+ [
+ 1728
+ ],
+ [
+ 1729
+ ],
+ [
+ 1730
+ ],
+ [
+ 1731
+ ],
+ [
+ 1732
+ ],
+ [
+ 1733
+ ],
+ [
+ 1734
+ ],
+ [
+ 1735
+ ],
+ [
+ 1736
+ ],
+ [
+ 1737
+ ],
+ [
+ 1738
+ ],
+ [
+ 1739
+ ],
+ [
+ 1740
+ ],
+ [
+ 1741
+ ],
+ [
+ 1742
+ ],
+ [
+ 1743
+ ],
+ [
+ 1744
+ ],
+ [
+ 1745
+ ],
+ [
+ 1746
+ ],
+ [
+ 1747
+ ],
+ [
+ 1748
+ ],
+ [
+ 1765
+ ],
+ [
+ 1766
+ ],
+ [
+ 1767
+ ],
+ [
+ 1768
+ ],
+ [
+ 1769
+ ],
+ [
+ 1770
+ ],
+ [
+ 1771
+ ],
+ [
+ 1772
+ ],
+ [
+ 1773
+ ],
+ [
+ 1774
+ ],
+ [
+ 1775
+ ],
+ [
+ 1776
+ ],
+ [
+ 1777
+ ],
+ [
+ 1778
+ ],
+ [
+ 1779
+ ],
+ [
+ 1780
+ ],
+ [
+ 1781
+ ],
+ [
+ 1782
+ ],
+ [
+ 1783
+ ],
+ [
+ 1784
+ ],
+ [
+ 1785
+ ],
+ [
+ 1786
+ ],
+ [
+ 1787
+ ],
+ [
+ 1788
+ ],
+ [
+ 1789
+ ],
+ [
+ 1790
+ ],
+ [
+ 1791
+ ],
+ [
+ 1792
+ ],
+ [
+ 1793
+ ],
+ [
+ 1794
+ ],
+ [
+ 1795
+ ],
+ [
+ 1796
+ ],
+ [
+ 1797
+ ],
+ [
+ 1798
+ ],
+ [
+ 1799
+ ],
+ [
+ 1800
+ ],
+ [
+ 1801
+ ],
+ [
+ 1802
+ ],
+ [
+ 1803
+ ],
+ [
+ 1804
+ ],
+ [
+ 1805
+ ],
+ [
+ 1806
+ ],
+ [
+ 1807
+ ],
+ [
+ 1808
+ ],
+ [
+ 1809
+ ],
+ [
+ 1810
+ ],
+ [
+ 1811
+ ],
+ [
+ 1812
+ ],
+ [
+ 1813
+ ],
+ [
+ 1814
+ ],
+ [
+ 1815
+ ],
+ [
+ 1816
+ ],
+ [
+ 1817
+ ],
+ [
+ 1818
+ ],
+ [
+ 1819
+ ],
+ [
+ 1820
+ ],
+ [
+ 1821
+ ],
+ [
+ 1822
+ ],
+ [
+ 1823
+ ],
+ [
+ 1824
+ ],
+ [
+ 1825
+ ],
+ [
+ 1826
+ ],
+ [
+ 1827
+ ],
+ [
+ 1828
+ ],
+ [
+ 1829
+ ],
+ [
+ 1830
+ ],
+ [
+ 1831
+ ],
+ [
+ 1832
+ ],
+ [
+ 1833
+ ],
+ [
+ 1834
+ ],
+ [
+ 1835
+ ],
+ [
+ 1836
+ ],
+ [
+ 1837
+ ],
+ [
+ 1838
+ ],
+ [
+ 1839
+ ],
+ [
+ 1840
+ ],
+ [
+ 1841
+ ],
+ [
+ 1842
+ ],
+ [
+ 1843
+ ],
+ [
+ 1844
+ ],
+ [
+ 1845
+ ],
+ [
+ 1846
+ ],
+ [
+ 1847
+ ],
+ [
+ 1848
+ ],
+ [
+ 1849
+ ],
+ [
+ 1850
+ ],
+ [
+ 1851
+ ],
+ [
+ 1852
+ ],
+ [
+ 1853
+ ],
+ [
+ 1854
+ ],
+ [
+ 1855
+ ],
+ [
+ 1856
+ ],
+ [
+ 1857
+ ],
+ [
+ 1858
+ ],
+ [
+ 1859
+ ],
+ [
+ 1860
+ ],
+ [
+ 1861
+ ],
+ [
+ 1862
+ ],
+ [
+ 1863
+ ],
+ [
+ 1864
+ ],
+ [
+ 1865
+ ],
+ [
+ 1866
+ ],
+ [
+ 1867
+ ],
+ [
+ 1868
+ ],
+ [
+ 1869
+ ],
+ [
+ 1870
+ ],
+ [
+ 1871
+ ],
+ [
+ 1872
+ ],
+ [
+ 1873
+ ],
+ [
+ 1874
+ ],
+ [
+ 1875
+ ],
+ [
+ 1876
+ ],
+ [
+ 1877
+ ],
+ [
+ 1878
+ ],
+ [
+ 1879
+ ],
+ [
+ 1880
+ ],
+ [
+ 1881
+ ],
+ [
+ 1882
+ ],
+ [
+ 1883
+ ],
+ [
+ 1884
+ ],
+ [
+ 1885
+ ],
+ [
+ 1886
+ ],
+ [
+ 1887
+ ],
+ [
+ 1888
+ ],
+ [
+ 1889
+ ],
+ [
+ 1890
+ ],
+ [
+ 1891
+ ],
+ [
+ 1892
+ ],
+ [
+ 1893
+ ],
+ [
+ 1894
+ ],
+ [
+ 1895
+ ],
+ [
+ 1896
+ ],
+ [
+ 1897
+ ],
+ [
+ 1898
+ ],
+ [
+ 1899
+ ],
+ [
+ 1900
+ ],
+ [
+ 1901
+ ],
+ [
+ 1902
+ ],
+ [
+ 1903
+ ],
+ [
+ 1904
+ ],
+ [
+ 1905
+ ],
+ [
+ 1906
+ ],
+ [
+ 1907
+ ],
+ [
+ 1908
+ ],
+ [
+ 1909
+ ],
+ [
+ 1910
+ ],
+ [
+ 1911
+ ],
+ [
+ 1912
+ ],
+ [
+ 1913
+ ],
+ [
+ 1914
+ ],
+ [
+ 1915
+ ],
+ [
+ 1916
+ ],
+ [
+ 1917
+ ],
+ [
+ 1918
+ ],
+ [
+ 1919
+ ],
+ [
+ 1920
+ ],
+ [
+ 1921
+ ],
+ [
+ 1922
+ ],
+ [
+ 1923
+ ],
+ [
+ 1924
+ ],
+ [
+ 1925
+ ],
+ [
+ 1926
+ ],
+ [
+ 1927
+ ],
+ [
+ 1928
+ ],
+ [
+ 1929
+ ],
+ [
+ 1930
+ ],
+ [
+ 1931
+ ],
+ [
+ 1932
+ ],
+ [
+ 1933
+ ],
+ [
+ 1934
+ ],
+ [
+ 1935
+ ],
+ [
+ 1936
+ ],
+ [
+ 1937
+ ],
+ [
+ 1938
+ ],
+ [
+ 1939
+ ],
+ [
+ 1940
+ ],
+ [
+ 1941
+ ],
+ [
+ 1942
+ ],
+ [
+ 1943
+ ],
+ [
+ 1944
+ ],
+ [
+ 1945
+ ],
+ [
+ 1946
+ ],
+ [
+ 1947
+ ],
+ [
+ 1948
+ ],
+ [
+ 1949
+ ],
+ [
+ 1950
+ ],
+ [
+ 1951
+ ],
+ [
+ 1968
+ ],
+ [
+ 1969
+ ],
+ [
+ 1970
+ ],
+ [
+ 1971
+ ],
+ [
+ 1972
+ ],
+ [
+ 1973
+ ],
+ [
+ 1974
+ ],
+ [
+ 1975
+ ],
+ [
+ 1976
+ ],
+ [
+ 1977
+ ],
+ [
+ 1978
+ ],
+ [
+ 1979
+ ],
+ [
+ 1980
+ ],
+ [
+ 1981
+ ],
+ [
+ 1982
+ ],
+ [
+ 1983
+ ],
+ [
+ 1991
+ ],
+ [
+ 1992
+ ],
+ [
+ 1993
+ ],
+ [
+ 1994
+ ],
+ [
+ 1995
+ ],
+ [
+ 1996
+ ],
+ [
+ 1997
+ ],
+ [
+ 1998
+ ],
+ [
+ 1999
+ ],
+ [
+ 2000
+ ],
+ [
+ 2001
+ ],
+ [
+ 2002
+ ],
+ [
+ 2003
+ ],
+ [
+ 2011
+ ],
+ [
+ 2012
+ ],
+ [
+ 2013
+ ],
+ [
+ 2014
+ ],
+ [
+ 2015
+ ],
+ [
+ 2016
+ ],
+ [
+ 2017
+ ],
+ [
+ 2018
+ ],
+ [
+ 2019
+ ],
+ [
+ 2020
+ ],
+ [
+ 2021
+ ],
+ [
+ 2022
+ ],
+ [
+ 2023
+ ],
+ [
+ 2024
+ ],
+ [
+ 2025
+ ],
+ [
+ 2026
+ ],
+ [
+ 2027
+ ],
+ [
+ 2028
+ ],
+ [
+ 2029
+ ],
+ [
+ 2030
+ ],
+ [
+ 2031
+ ],
+ [
+ 2032
+ ],
+ [
+ 2033
+ ],
+ [
+ 2034
+ ],
+ [
+ 2035
+ ],
+ [
+ 2036
+ ],
+ [
+ 2037
+ ],
+ [
+ 2038
+ ],
+ [
+ 2039
+ ],
+ [
+ 2040
+ ]
+ ]
+ },
+ {
+ "question": "Find the attribute code for the attribute with ID 89.",
+ "sql": "SELECT attribute_code FROM eav_attribute WHERE attribute_id = 89;",
+ "answer": [
+ "thumbnail"
+ ],
+ "sql_execute_result": [
+ [
+ "thumbnail"
+ ]
+ ]
+ },
+ {
+ "question": "Which review status corresponds to the status code 'Pending'?",
+ "sql": "SELECT status_id FROM review_status WHERE status_code = 'Pending';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the product with ID 2038 in category ID 2?",
+ "sql": "SELECT position FROM catalog_category_product WHERE category_id = 2 AND product_id = 2038;",
+ "answer": [
+ "-1179"
+ ],
+ "sql_execute_result": [
+ [
+ -1179
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 28 required?",
+ "sql": "SELECT is_required FROM eav_attribute WHERE attribute_id = 28;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which state corresponds to the order status 'complete'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'complete';",
+ "answer": [
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the backend model for the attribute with ID 1?",
+ "sql": "SELECT backend_model FROM eav_attribute WHERE attribute_id = 1;",
+ "answer": [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website"
+ ]
+ ]
+ },
+ {
+ "question": "What is the nickname of the customer who wrote the review titled 'LOVE, LOVE, LOVE.'?",
+ "sql": "SELECT nickname FROM review_detail WHERE title = 'LOVE, LOVE, LOVE.';",
+ "answer": [
+ "Brittni"
+ ],
+ "sql_execute_result": [
+ [
+ "Brittni"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in the category with ID 19?",
+ "sql": "SELECT product_id FROM catalog_category_product WHERE category_id = 19;",
+ "answer": [
+ "148"
+ ],
+ "sql_execute_result": [
+ [
+ 881
+ ],
+ [
+ 882
+ ],
+ [
+ 883
+ ],
+ [
+ 884
+ ],
+ [
+ 885
+ ],
+ [
+ 886
+ ],
+ [
+ 887
+ ],
+ [
+ 888
+ ],
+ [
+ 889
+ ],
+ [
+ 890
+ ],
+ [
+ 891
+ ],
+ [
+ 892
+ ],
+ [
+ 893
+ ],
+ [
+ 894
+ ],
+ [
+ 895
+ ],
+ [
+ 896
+ ],
+ [
+ 897
+ ],
+ [
+ 898
+ ],
+ [
+ 899
+ ],
+ [
+ 900
+ ],
+ [
+ 901
+ ],
+ [
+ 902
+ ],
+ [
+ 903
+ ],
+ [
+ 904
+ ],
+ [
+ 905
+ ],
+ [
+ 906
+ ],
+ [
+ 907
+ ],
+ [
+ 908
+ ],
+ [
+ 909
+ ],
+ [
+ 910
+ ],
+ [
+ 911
+ ],
+ [
+ 912
+ ],
+ [
+ 913
+ ],
+ [
+ 914
+ ],
+ [
+ 915
+ ],
+ [
+ 916
+ ],
+ [
+ 917
+ ],
+ [
+ 918
+ ],
+ [
+ 919
+ ],
+ [
+ 920
+ ],
+ [
+ 921
+ ],
+ [
+ 922
+ ],
+ [
+ 923
+ ],
+ [
+ 924
+ ],
+ [
+ 925
+ ],
+ [
+ 926
+ ],
+ [
+ 927
+ ],
+ [
+ 928
+ ],
+ [
+ 929
+ ],
+ [
+ 930
+ ],
+ [
+ 931
+ ],
+ [
+ 932
+ ],
+ [
+ 933
+ ],
+ [
+ 934
+ ],
+ [
+ 935
+ ],
+ [
+ 936
+ ],
+ [
+ 937
+ ],
+ [
+ 938
+ ],
+ [
+ 939
+ ],
+ [
+ 940
+ ],
+ [
+ 941
+ ],
+ [
+ 942
+ ],
+ [
+ 943
+ ],
+ [
+ 944
+ ],
+ [
+ 945
+ ],
+ [
+ 946
+ ],
+ [
+ 947
+ ],
+ [
+ 948
+ ],
+ [
+ 949
+ ],
+ [
+ 950
+ ],
+ [
+ 951
+ ],
+ [
+ 952
+ ],
+ [
+ 953
+ ],
+ [
+ 954
+ ],
+ [
+ 955
+ ],
+ [
+ 956
+ ],
+ [
+ 957
+ ],
+ [
+ 958
+ ],
+ [
+ 959
+ ],
+ [
+ 960
+ ],
+ [
+ 961
+ ],
+ [
+ 962
+ ],
+ [
+ 963
+ ],
+ [
+ 964
+ ],
+ [
+ 965
+ ],
+ [
+ 966
+ ],
+ [
+ 967
+ ],
+ [
+ 968
+ ],
+ [
+ 969
+ ],
+ [
+ 970
+ ],
+ [
+ 971
+ ],
+ [
+ 972
+ ],
+ [
+ 973
+ ],
+ [
+ 974
+ ],
+ [
+ 975
+ ],
+ [
+ 976
+ ],
+ [
+ 977
+ ],
+ [
+ 978
+ ],
+ [
+ 979
+ ],
+ [
+ 980
+ ],
+ [
+ 981
+ ],
+ [
+ 982
+ ],
+ [
+ 983
+ ],
+ [
+ 984
+ ],
+ [
+ 985
+ ],
+ [
+ 986
+ ],
+ [
+ 987
+ ],
+ [
+ 988
+ ],
+ [
+ 989
+ ],
+ [
+ 990
+ ],
+ [
+ 991
+ ],
+ [
+ 992
+ ],
+ [
+ 993
+ ],
+ [
+ 994
+ ],
+ [
+ 995
+ ],
+ [
+ 996
+ ],
+ [
+ 997
+ ],
+ [
+ 998
+ ],
+ [
+ 999
+ ],
+ [
+ 1000
+ ],
+ [
+ 1001
+ ],
+ [
+ 1002
+ ],
+ [
+ 1003
+ ],
+ [
+ 1004
+ ],
+ [
+ 1005
+ ],
+ [
+ 1006
+ ],
+ [
+ 1007
+ ],
+ [
+ 1008
+ ],
+ [
+ 1009
+ ],
+ [
+ 1010
+ ],
+ [
+ 1011
+ ],
+ [
+ 1012
+ ],
+ [
+ 1013
+ ],
+ [
+ 1014
+ ],
+ [
+ 1015
+ ],
+ [
+ 1016
+ ],
+ [
+ 1017
+ ],
+ [
+ 1018
+ ],
+ [
+ 1019
+ ],
+ [
+ 1020
+ ],
+ [
+ 1021
+ ],
+ [
+ 1022
+ ],
+ [
+ 1023
+ ],
+ [
+ 1024
+ ],
+ [
+ 1025
+ ],
+ [
+ 1026
+ ],
+ [
+ 1027
+ ],
+ [
+ 1028
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 31?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 31;",
+ "answer": [
+ "jason.miller@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jason.miller@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "List the status of orders that are visible on the front and are marked as default.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1 AND is_default = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "holded",
+ "payment_review",
+ "pending",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the review with ID 344?",
+ "sql": "SELECT title FROM review_detail WHERE review_id = 344;",
+ "answer": [
+ "I love the look"
+ ],
+ "sql_execute_result": [
+ [
+ "I love the look"
+ ]
+ ]
+ },
+ {
+ "question": "Which product is the bestseller with the highest rating position on 2022-08-20?",
+ "sql": "SELECT product_name FROM sales_bestsellers_aggregated_daily WHERE period = '2022-08-20' ORDER BY rating_pos LIMIT 1;",
+ "answer": [
+ "Hera Pullover Hoodie-XS-Orange"
+ ],
+ "sql_execute_result": [
+ [
+ "Hera Pullover Hoodie-XS-Orange"
+ ]
+ ]
+ },
+ {
+ "question": "What is the state associated with the status 'fraud'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "payment_review",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "payment_review"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the full name of the customer with email 'alexander.thomas@hotmail.com'.",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name FROM customer_entity WHERE email = 'alexander.thomas@hotmail.com';",
+ "answer": [
+ "Alexander Thomas"
+ ],
+ "sql_execute_result": [
+ [
+ "Alexander Thomas"
+ ]
+ ]
+ },
+ {
+ "question": "How many units of the product 'Aether Gym Pant -33-Brown' were ordered on 2023-04-19?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Aether Gym Pant -33-Brown' AND period = '2023-04-19';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the ISO-3 code for the country with ID 'LA'?",
+ "sql": "SELECT iso3_code FROM directory_country WHERE country_id = 'LA';",
+ "answer": [
+ "LAO"
+ ],
+ "sql_execute_result": [
+ [
+ "LAO"
+ ]
+ ]
+ },
+ {
+ "question": "Find the default store ID for the 'Main Website Store'.",
+ "sql": "SELECT default_store_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the telephone number associated with the customer address entity ID 41?",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE entity_id = 41;",
+ "answer": [
+ "3125551212"
+ ],
+ "sql_execute_result": [
+ [
+ "3125551212"
+ ]
+ ]
+ },
+ {
+ "question": "Find the label for the sales order status 'paypal_canceled_reversal'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'paypal_canceled_reversal';",
+ "answer": [
+ "PayPal Canceled Reversal"
+ ],
+ "sql_execute_result": [
+ [
+ "PayPal Canceled Reversal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the position of the rating option with option ID 19?",
+ "sql": "SELECT position FROM rating_option WHERE option_id = 19;",
+ "answer": [
+ "4"
+ ],
+ "sql_execute_result": [
+ [
+ 4
+ ]
+ ]
+ },
+ {
+ "question": "How many unique cities of all customer address entities were found?",
+ "sql": "SELECT city FROM customer_address_entity;",
+ "answer": [
+ "32"
+ ],
+ "sql_execute_result": [
+ [
+ "Calder"
+ ],
+ [
+ "Birmingham"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Oakland"
+ ],
+ [
+ "New York City"
+ ],
+ [
+ "Richardson"
+ ],
+ [
+ "Miami Beach"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Philadelphia"
+ ],
+ [
+ "Houston"
+ ],
+ [
+ "Atlanta"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Beverly Hills"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Cambridge"
+ ],
+ [
+ "Denver"
+ ],
+ [
+ "Houston"
+ ],
+ [
+ "Malibu"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Beverly Hills"
+ ],
+ [
+ "Austin"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Los Angeles"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Boston"
+ ],
+ [
+ "Denver"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Phoenix"
+ ],
+ [
+ "Las Vegas"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Los Angeles"
+ ],
+ [
+ "Los Angeles"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Boston"
+ ],
+ [
+ "Houston"
+ ],
+ [
+ "New York"
+ ],
+ [
+ "Hoboken"
+ ],
+ [
+ "New York City"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Boston"
+ ],
+ [
+ "Baltimore"
+ ],
+ [
+ "Seattle"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Denver"
+ ],
+ [
+ "Phoenix"
+ ],
+ [
+ "Boston"
+ ],
+ [
+ "Honolulu"
+ ],
+ [
+ "Beverly Hills"
+ ],
+ [
+ "Hoboken"
+ ],
+ [
+ "Chicago"
+ ],
+ [
+ "Dallas"
+ ],
+ [
+ "Miami"
+ ],
+ [
+ "Denver"
+ ],
+ [
+ "Fairfax"
+ ],
+ [
+ "Phoenix"
+ ],
+ [
+ "Hoboken"
+ ],
+ [
+ "Salt Lake City"
+ ],
+ [
+ "San Mateo"
+ ]
+ ]
+ },
+ {
+ "question": "Find all countries with ISO-2 code 'AQ'.",
+ "sql": "SELECT iso2_code FROM directory_country WHERE iso2_code = 'AQ';",
+ "answer": [
+ "AQ"
+ ],
+ "sql_execute_result": [
+ [
+ "AQ"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the root category ID for the 'Main Website Store'.",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the rating code for the option with value 1 and rating ID 3.",
+ "sql": "SELECT code FROM rating_option WHERE value = 1 AND rating_id = 3;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ "1"
+ ]
+ ]
+ },
+ {
+ "question": "How many sales order statuses are available?",
+ "sql": "SELECT status FROM sales_order_status;",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "paypal_canceled_reversal"
+ ],
+ [
+ "paypal_reversed"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "pending_payment"
+ ],
+ [
+ "pending_paypal"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the label for the order status 'canceled'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'canceled';",
+ "answer": [
+ "Canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "Canceled"
+ ]
+ ]
+ },
+ {
+ "question": "Which category has the value 'yoga-new' for attribute ID 119 in the store with ID 0?",
+ "sql": "SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'yoga-new' AND attribute_id = 119 AND store_id = 0;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'Joust Bag'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Joust Bag';",
+ "answer": [
+ "10"
+ ],
+ "sql_execute_result": [
+ [
+ 10
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders created on 2022-05-15 with status 'complete'.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-05-15' AND order_status = 'complete';",
+ "answer": [
+ "67.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "67.0000"
+ ],
+ [
+ "67.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status state for orders with status 'pending_payment'?",
+ "sql": "SELECT state FROM sales_order_status_state WHERE status = 'pending_payment';",
+ "answer": [
+ "pending_payment"
+ ],
+ "sql_execute_result": [
+ [
+ "pending_payment"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'nike'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on 2023-01-07 in store 1?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-07' AND store_id = 1 AND order_status = 'canceled';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the frontend visibility of orders with status 'fraud'?",
+ "sql": "SELECT visible_on_front FROM sales_order_status_state WHERE status = 'fraud';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which category ID corresponds to the value 'fitness-equipment' for attribute ID 119 in store ID 0?",
+ "sql": "SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'fitness-equipment' AND attribute_id = 119 AND store_id = 0;",
+ "answer": [
+ "5"
+ ],
+ "sql_execute_result": [
+ [
+ 5
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for orders created on 2022-01-12 with status 'complete' in store ID 1?",
+ "sql": "SELECT total_shipping_amount FROM sales_order_aggregated_created WHERE period = '2022-01-12' AND store_id = 1 AND order_status = 'complete';",
+ "answer": [
+ "10.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "10.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 1389?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1389 AND attribute_id = 75;",
+ "answer": [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.
\n• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name for category entity ID 26.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 26 AND attribute_id = 45;",
+ "answer": [
+ "Bras & Tanks"
+ ],
+ "sql_execute_result": [
+ [
+ "Bras & Tanks"
+ ]
+ ]
+ },
+ {
+ "question": "How many search results are there for the query 'Antonia Racer Tank'?",
+ "sql": "SELECT num_results FROM search_query WHERE query_text = 'Antonia Racer Tank';",
+ "answer": [
+ "23"
+ ],
+ "sql_execute_result": [
+ [
+ 23
+ ]
+ ]
+ },
+ {
+ "question": "Is the attribute with ID 150 used for promo rules?",
+ "sql": "SELECT is_used_for_promo_rules FROM catalog_eav_attribute WHERE attribute_id = 150;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the stock name for the stock ID 1?",
+ "sql": "SELECT stock_name FROM cataloginventory_stock WHERE stock_id = 1;",
+ "answer": [
+ "Default"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ]
+ ]
+ },
+ {
+ "question": "What is the popularity of the search query 'hollister'?",
+ "sql": "SELECT popularity FROM search_query WHERE query_text = 'hollister';",
+ "answer": [
+ "19"
+ ],
+ "sql_execute_result": [
+ [
+ 19
+ ]
+ ]
+ },
+ {
+ "question": "Find out if the attribute with ID 74 is searchable.",
+ "sql": "SELECT is_searchable FROM catalog_eav_attribute WHERE attribute_id = 74;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 504?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 504 AND attribute_id = 75;",
+ "answer": [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.
\n• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.
"
+ ]
+ ]
+ },
+ {
+ "question": "Is the search query 'nike' active?",
+ "sql": "SELECT is_active FROM search_query WHERE query_text = 'nike';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What categories are associated with the product with entity ID 815?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 815 AND attribute_id = 156;",
+ "answer": [
+ "201",
+ "202",
+ "203",
+ "207",
+ "210"
+ ],
+ "sql_execute_result": [
+ [
+ "201,202,203,207,210"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000001'?",
+ "sql": "SELECT status FROM sales_order WHERE increment_id = '000000001';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered by the customer with email 'roni_cost@example.com'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE customer_email = 'roni_cost@example.com';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for order with increment ID '000000001'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000001';",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "Find the quantity ordered for the product with ID 1492 in the sales_order_item table.",
+ "sql": "SELECT qty_ordered FROM sales_order_item WHERE product_id = 1492;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ],
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the review with review ID 243?",
+ "sql": "SELECT status_id FROM review WHERE review_id = 243;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "Which payment method was used for the order with order ID 1?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 1;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 31?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 31;",
+ "answer": [
+ "jason.miller@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jason.miller@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity ordered in completed orders on August 17, 2022.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-08-17' AND order_status = 'complete';",
+ "answer": [
+ "6.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "3.0000"
+ ],
+ [
+ "3.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the description of the product with entity ID 1892?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1892 AND attribute_id = 75;",
+ "answer": [
+ "Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.
\n• Heather gray capris with mint green waist & accents.
• Comfortable, relaxed fit with high rise.
• Moisture-wicking, 4-way stretch construction.
• Lined with mesh for better support.
• Hidden pocket at waistband.
• Flatlock seams and lined gusset for comfort.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.
\n• Heather gray capris with mint green waist & accents.
• Comfortable, relaxed fit with high rise.
• Moisture-wicking, 4-way stretch construction.
• Lined with mesh for better support.
• Hidden pocket at waistband.
• Flatlock seams and lined gusset for comfort.
"
+ ]
+ ]
+ },
+ {
+ "question": "Find the review status for the review with ID 248.",
+ "sql": "SELECT status_id FROM review WHERE review_id = 248;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were canceled on January 26, 2023?",
+ "sql": "SELECT orders_count FROM sales_order_aggregated_created WHERE period = '2023-01-26' AND order_status = 'canceled';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ],
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the sequence value for the shipment with the highest sequence value?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "Get the total discount amount for completed orders on January 16, 2023.",
+ "sql": "SELECT total_discount_amount FROM sales_order_aggregated_created WHERE period = '2023-01-16' AND order_status = 'complete';",
+ "answer": [
+ "34.8500"
+ ],
+ "sql_execute_result": [
+ [
+ "34.8500"
+ ],
+ [
+ "34.8500"
+ ]
+ ]
+ },
+ {
+ "question": "What is the first name of the customer with email 'daniel.jackson@hotmail.com'?",
+ "sql": "SELECT firstname FROM customer_entity WHERE email = 'daniel.jackson@hotmail.com';",
+ "answer": [
+ "Daniel"
+ ],
+ "sql_execute_result": [
+ [
+ "Daniel"
+ ]
+ ]
+ },
+ {
+ "question": "List the review IDs for product with entity ID 1951.",
+ "sql": "SELECT review_id FROM review WHERE entity_pk_value = 1951;",
+ "answer": [
+ "289",
+ "290"
+ ],
+ "sql_execute_result": [
+ [
+ 289
+ ],
+ [
+ 290
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders on March 5, 2022.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-03-05';",
+ "answer": [
+ "107.6000"
+ ],
+ "sql_execute_result": [
+ [
+ "107.6000"
+ ],
+ [
+ "107.6000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for customer with email 'john.smith.xyz@gmail.com'?",
+ "sql": "SELECT entity_id, status, grand_total, created_at FROM sales_order WHERE customer_email = 'john.smith.xyz@gmail.com';",
+ "answer": [
+ "13"
+ ],
+ "sql_execute_result": [
+ [
+ 9,
+ "complete",
+ "159.4000",
+ "2023-05-07 22:41:05"
+ ],
+ [
+ 59,
+ "canceled",
+ "95.4000",
+ "2022-11-18 12:57:23"
+ ],
+ [
+ 68,
+ "canceled",
+ "211.8000",
+ "2022-08-27 02:49:16"
+ ],
+ [
+ 79,
+ "complete",
+ "34.0000",
+ "2022-08-17 13:27:44"
+ ],
+ [
+ 93,
+ "complete",
+ "89.2000",
+ "2022-09-02 13:20:58"
+ ],
+ [
+ 95,
+ "canceled",
+ "64.0000",
+ "2022-04-29 19:41:52"
+ ],
+ [
+ 96,
+ "complete",
+ "209.4000",
+ "2023-01-16 08:54:14"
+ ],
+ [
+ 107,
+ "canceled",
+ "45.0000",
+ "2022-09-01 21:30:17"
+ ],
+ [
+ 115,
+ "complete",
+ "180.4000",
+ "2022-03-17 14:26:26"
+ ],
+ [
+ 144,
+ "canceled",
+ "171.0000",
+ "2022-07-29 10:42:49"
+ ],
+ [
+ 217,
+ "complete",
+ "121.0000",
+ "2022-12-01 18:54:18"
+ ],
+ [
+ 257,
+ "complete",
+ "164.4500",
+ "2022-08-28 12:58:51"
+ ],
+ [
+ 273,
+ "canceled",
+ "190.0000",
+ "2022-09-11 06:02:34"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for order with ID 295?",
+ "sql": "SELECT JSON_UNQUOTE(JSON_EXTRACT(additional_information, '$.method_title')) AS payment_method FROM sales_order_payment WHERE parent_id = 295;",
+ "answer": [
+ "Check / Money order"
+ ],
+ "sql_execute_result": [
+ [
+ "Check / Money order"
+ ]
+ ]
+ },
+ {
+ "question": "Which store is the order with increment ID '000000253' associated with?",
+ "sql": "SELECT store_name FROM sales_order WHERE increment_id = '000000253';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many products were ordered in order ID 187?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 187;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand total for all completed orders?",
+ "sql": "SELECT SUM(grand_total) FROM sales_order WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "Which store website has the code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price for the best seller in January 2023.",
+ "sql": "SELECT product_name, product_price FROM sales_bestsellers_aggregated_yearly WHERE period = '2023-01-01' AND store_id = 1 ORDER BY qty_ordered DESC LIMIT 1;",
+ "answer": [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Sprite Yoga Strap 6 foot",
+ "14.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What was the percentage rating for the vote with ID 43?",
+ "sql": "SELECT percent FROM rating_option_vote WHERE vote_id = 43;",
+ "answer": [
+ "80"
+ ],
+ "sql_execute_result": [
+ [
+ 80
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product ID 673 in January 2022?",
+ "sql": "SELECT qty_ordered FROM sales_bestsellers_aggregated_yearly WHERE product_id = 673 AND period = '2022-01-01';",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ],
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with the status 'canceled' were found?",
+ "sql": "SELECT entity_id, customer_email, grand_total FROM sales_order WHERE status = 'canceled';",
+ "answer": [
+ "142"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "roni_cost@example.com",
+ "36.3900"
+ ],
+ [
+ 3,
+ "brian.smith@yahoo.com",
+ "160.2500"
+ ],
+ [
+ 5,
+ "avidreader99@yahoo.com",
+ "137.0000"
+ ],
+ [
+ 6,
+ "johndoe123@gmail.com",
+ "53.0000"
+ ],
+ [
+ 7,
+ "adam.garcia@gmail.com",
+ "108.2500"
+ ],
+ [
+ 8,
+ "bob123@hotmail.com",
+ "146.0000"
+ ],
+ [
+ 10,
+ "matt.baker@yahoo.com",
+ "107.6000"
+ ],
+ [
+ 12,
+ "janesmith@gmail.com",
+ "113.8000"
+ ],
+ [
+ 14,
+ "bbjones@gmail.com",
+ "85.2000"
+ ],
+ [
+ 15,
+ "helloworld@yahoo.com",
+ "61.0000"
+ ],
+ [
+ 18,
+ "fashionista88@gmail.com",
+ "105.0000"
+ ],
+ [
+ 19,
+ "jla_7781@gmail.com",
+ "214.6000"
+ ],
+ [
+ 25,
+ "johndoe123@gmail.com",
+ "204.2500"
+ ],
+ [
+ 26,
+ "artsygal123@hotmail.com",
+ "216.0000"
+ ],
+ [
+ 29,
+ "artsygal123@hotmail.com",
+ "98.4000"
+ ],
+ [
+ 30,
+ "alex.martin@gmail.com",
+ "67.0000"
+ ],
+ [
+ 38,
+ "jason.miller@yahoo.com",
+ "52.2000"
+ ],
+ [
+ 39,
+ "helloworld@yahoo.com",
+ "218.8500"
+ ],
+ [
+ 40,
+ "lisa.kim@gmail.com",
+ "74.0000"
+ ],
+ [
+ 41,
+ "marym@gmail.com",
+ "161.2500"
+ ],
+ [
+ 42,
+ "michael.nguyen@yahoo.com",
+ "211.6000"
+ ],
+ [
+ 44,
+ "lisa.green@hotmail.com",
+ "155.0000"
+ ],
+ [
+ 46,
+ "coolcat321@hotmail.com",
+ "139.0000"
+ ],
+ [
+ 49,
+ "alexander.thomas@hotmail.com",
+ "205.0000"
+ ],
+ [
+ 52,
+ "brian.smith@yahoo.com",
+ "48.0000"
+ ],
+ [
+ 56,
+ "gamingpro456@gmail.com",
+ "198.6000"
+ ],
+ [
+ 58,
+ "john.lee@yahoo.com",
+ "199.1000"
+ ],
+ [
+ 59,
+ "john.smith.xyz@gmail.com",
+ "95.4000"
+ ],
+ [
+ 60,
+ "jennifer.white@yahoo.com",
+ "60.0000"
+ ],
+ [
+ 63,
+ "alex.martin@gmail.com",
+ "196.0000"
+ ],
+ [
+ 66,
+ "coolcat321@hotmail.com",
+ "162.2000"
+ ],
+ [
+ 67,
+ "harrypotterfan1@gmail.com",
+ "194.7600"
+ ],
+ [
+ 68,
+ "john.smith.xyz@gmail.com",
+ "211.8000"
+ ],
+ [
+ 72,
+ "jennifer.white@yahoo.com",
+ "178.0000"
+ ],
+ [
+ 74,
+ "gamingpro456@gmail.com",
+ "67.8000"
+ ],
+ [
+ 76,
+ "janesmith@gmail.com",
+ "72.0000"
+ ],
+ [
+ 77,
+ "fitnessjunkie22@yahoo.com",
+ "104.0000"
+ ],
+ [
+ 80,
+ "avidreader99@yahoo.com",
+ "37.5000"
+ ],
+ [
+ 81,
+ "coolcat321@hotmail.com",
+ "183.5900"
+ ],
+ [
+ 85,
+ "avidreader99@yahoo.com",
+ "203.0000"
+ ],
+ [
+ 86,
+ "johndoe123@gmail.com",
+ "105.4000"
+ ],
+ [
+ 88,
+ "coolcat321@hotmail.com",
+ "168.8000"
+ ],
+ [
+ 94,
+ "fitnessjunkie22@yahoo.com",
+ "64.0000"
+ ],
+ [
+ 95,
+ "john.smith.xyz@gmail.com",
+ "64.0000"
+ ],
+ [
+ 98,
+ "jla_7781@gmail.com",
+ "223.6000"
+ ],
+ [
+ 101,
+ "helloworld@yahoo.com",
+ "199.8000"
+ ],
+ [
+ 103,
+ "janesmith@gmail.com",
+ "71.5000"
+ ],
+ [
+ 106,
+ "john.lee@yahoo.com",
+ "99.0000"
+ ],
+ [
+ 107,
+ "john.smith.xyz@gmail.com",
+ "45.0000"
+ ],
+ [
+ 108,
+ "fitnessjunkie22@yahoo.com",
+ "75.0000"
+ ],
+ [
+ 109,
+ "jason.miller@yahoo.com",
+ "136.4000"
+ ],
+ [
+ 110,
+ "jla_7781@gmail.com",
+ "104.0000"
+ ],
+ [
+ 111,
+ "harrypotterfan1@gmail.com",
+ "217.1200"
+ ],
+ [
+ 117,
+ "john.lee@yahoo.com",
+ "196.8000"
+ ],
+ [
+ 118,
+ "brian.smith@yahoo.com",
+ "29.0000"
+ ],
+ [
+ 120,
+ "matt.baker@yahoo.com",
+ "112.0000"
+ ],
+ [
+ 122,
+ "alexander.thomas@hotmail.com",
+ "123.2000"
+ ],
+ [
+ 123,
+ "soccerfanatic22@gmail.com",
+ "209.0000"
+ ],
+ [
+ 124,
+ "fashionista88@gmail.com",
+ "193.6400"
+ ],
+ [
+ 126,
+ "avidreader99@yahoo.com",
+ "207.0000"
+ ],
+ [
+ 129,
+ "soccerfanatic22@gmail.com",
+ "151.0000"
+ ],
+ [
+ 132,
+ "coolcat321@hotmail.com",
+ "161.8000"
+ ],
+ [
+ 134,
+ "daniel.jackson@hotmail.com",
+ "64.0000"
+ ],
+ [
+ 135,
+ "jennifer.white@yahoo.com",
+ "141.0000"
+ ],
+ [
+ 136,
+ "harrypotterfan1@gmail.com",
+ "208.2000"
+ ],
+ [
+ 141,
+ "matt.baker@yahoo.com",
+ "167.0000"
+ ],
+ [
+ 142,
+ "jla_7781@gmail.com",
+ "87.0000"
+ ],
+ [
+ 143,
+ "brian.smith@yahoo.com",
+ "95.0000"
+ ],
+ [
+ 144,
+ "john.smith.xyz@gmail.com",
+ "171.0000"
+ ],
+ [
+ 149,
+ "beachlover99@yahoo.com",
+ "34.0000"
+ ],
+ [
+ 151,
+ "david.lee@gmail.com",
+ "217.2000"
+ ],
+ [
+ 152,
+ "fitnessjunkie22@yahoo.com",
+ "223.0000"
+ ],
+ [
+ 153,
+ "jane.doe@hotmail.com",
+ "180.8000"
+ ],
+ [
+ 157,
+ "helloworld@yahoo.com",
+ "44.0000"
+ ],
+ [
+ 159,
+ "daniel.jackson@hotmail.com",
+ "29.0000"
+ ],
+ [
+ 162,
+ "soccerfanatic22@gmail.com",
+ "152.2000"
+ ],
+ [
+ 165,
+ "alex.martin@gmail.com",
+ "202.6000"
+ ],
+ [
+ 167,
+ "jla_7781@gmail.com",
+ "38.6000"
+ ],
+ [
+ 168,
+ "bbjones@gmail.com",
+ "146.0000"
+ ],
+ [
+ 170,
+ "soccerfanatic22@gmail.com",
+ "66.0000"
+ ],
+ [
+ 171,
+ "samantha.nguyen@gmail.com",
+ "220.0000"
+ ],
+ [
+ 172,
+ "adam.garcia@gmail.com",
+ "64.0000"
+ ],
+ [
+ 173,
+ "alex.martin@gmail.com",
+ "94.2000"
+ ],
+ [
+ 174,
+ "musiclover99@hotmail.com",
+ "45.8000"
+ ],
+ [
+ 175,
+ "katie.wong@hotmail.com",
+ "205.6400"
+ ],
+ [
+ 176,
+ "lisa.kim@gmail.com",
+ "37.0000"
+ ],
+ [
+ 177,
+ "alex.martin@gmail.com",
+ "76.0000"
+ ],
+ [
+ 178,
+ "lisa.kim@gmail.com",
+ "64.0000"
+ ],
+ [
+ 180,
+ "coolcat321@hotmail.com",
+ "135.2000"
+ ],
+ [
+ 183,
+ "avidreader99@yahoo.com",
+ "201.6000"
+ ],
+ [
+ 185,
+ "helloworld@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 191,
+ "alex.martin@gmail.com",
+ "95.0000"
+ ],
+ [
+ 193,
+ "bbjones@gmail.com",
+ "224.4000"
+ ],
+ [
+ 194,
+ "david.lee@gmail.com",
+ "94.0000"
+ ],
+ [
+ 195,
+ "lisa.kim@gmail.com",
+ "133.0000"
+ ],
+ [
+ 198,
+ "katie.wong@hotmail.com",
+ "96.0000"
+ ],
+ [
+ 204,
+ "artsygal123@hotmail.com",
+ "44.0000"
+ ],
+ [
+ 206,
+ "alexander.thomas@hotmail.com",
+ "62.0000"
+ ],
+ [
+ 209,
+ "daniel.jackson@hotmail.com",
+ "39.0000"
+ ],
+ [
+ 210,
+ "john.lee@yahoo.com",
+ "228.9900"
+ ],
+ [
+ 211,
+ "fashionista88@gmail.com",
+ "107.4000"
+ ],
+ [
+ 212,
+ "fashionista88@gmail.com",
+ "68.0000"
+ ],
+ [
+ 219,
+ "alexander.thomas@hotmail.com",
+ "223.0000"
+ ],
+ [
+ 220,
+ "jane.doe@hotmail.com",
+ "153.4000"
+ ],
+ [
+ 221,
+ "brian.smith@yahoo.com",
+ "76.0000"
+ ],
+ [
+ 222,
+ "janesmith@gmail.com",
+ "185.0000"
+ ],
+ [
+ 224,
+ "matt.baker@yahoo.com",
+ "73.0000"
+ ],
+ [
+ 226,
+ "janesmith456@yahoo.com",
+ "54.0000"
+ ],
+ [
+ 227,
+ "bob123@hotmail.com",
+ "27.0000"
+ ],
+ [
+ 229,
+ "helloworld@yahoo.com",
+ "55.0000"
+ ],
+ [
+ 232,
+ "coolcat321@hotmail.com",
+ "143.0000"
+ ],
+ [
+ 234,
+ "harrypotterfan1@gmail.com",
+ "50.0000"
+ ],
+ [
+ 241,
+ "fitnessjunkie22@yahoo.com",
+ "44.0000"
+ ],
+ [
+ 242,
+ "soccerfanatic22@gmail.com",
+ "183.0000"
+ ],
+ [
+ 244,
+ "fitnessjunkie22@yahoo.com",
+ "89.0000"
+ ],
+ [
+ 245,
+ "jane.doe@hotmail.com",
+ "37.5000"
+ ],
+ [
+ 246,
+ "janesmith@gmail.com",
+ "74.0000"
+ ],
+ [
+ 248,
+ "alexander.thomas@hotmail.com",
+ "192.0000"
+ ],
+ [
+ 249,
+ "coolcat321@hotmail.com",
+ "125.0000"
+ ],
+ [
+ 252,
+ "beachlover99@yahoo.com",
+ "65.0000"
+ ],
+ [
+ 254,
+ "michael.nguyen@yahoo.com",
+ "145.5000"
+ ],
+ [
+ 255,
+ "lisa.kim@gmail.com",
+ "34.0000"
+ ],
+ [
+ 259,
+ "jane.doe@hotmail.com",
+ "189.6000"
+ ],
+ [
+ 261,
+ "harrypotterfan1@gmail.com",
+ "192.0000"
+ ],
+ [
+ 265,
+ "daniel.jackson@hotmail.com",
+ "94.0000"
+ ],
+ [
+ 266,
+ "coolcat321@hotmail.com",
+ "183.1900"
+ ],
+ [
+ 267,
+ "jla_7781@gmail.com",
+ "117.0000"
+ ],
+ [
+ 271,
+ "janesmith@gmail.com",
+ "77.0000"
+ ],
+ [
+ 272,
+ "michael.nguyen@yahoo.com",
+ "82.0000"
+ ],
+ [
+ 273,
+ "john.smith.xyz@gmail.com",
+ "190.0000"
+ ],
+ [
+ 275,
+ "alexander.thomas@hotmail.com",
+ "195.4000"
+ ],
+ [
+ 278,
+ "jason.miller@yahoo.com",
+ "37.0000"
+ ],
+ [
+ 279,
+ "samantha.nguyen@gmail.com",
+ "44.0000"
+ ],
+ [
+ 280,
+ "daniel.jackson@hotmail.com",
+ "71.5000"
+ ],
+ [
+ 283,
+ "bbjones@gmail.com",
+ "154.8000"
+ ],
+ [
+ 289,
+ "daniel.jackson@hotmail.com",
+ "194.5000"
+ ],
+ [
+ 290,
+ "jla_7781@gmail.com",
+ "53.0000"
+ ],
+ [
+ 291,
+ "gamingpro456@gmail.com",
+ "43.4000"
+ ],
+ [
+ 292,
+ "jason.miller@yahoo.com",
+ "121.0000"
+ ],
+ [
+ 293,
+ "johndoe123@gmail.com",
+ "208.0000"
+ ],
+ [
+ 294,
+ "alexander.thomas@hotmail.com",
+ "171.0000"
+ ],
+ [
+ 296,
+ "harrypotterfan1@gmail.com",
+ "23.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the website with code 'base'?",
+ "sql": "SELECT name FROM store_website WHERE code = 'base';",
+ "answer": [
+ "Main Website"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity for the shipment with increment ID '000000001'.",
+ "sql": "SELECT total_qty FROM sales_shipment WHERE increment_id = '000000001';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the customer group code for group ID 2?",
+ "sql": "SELECT customer_group_code FROM customer_group WHERE customer_group_id = 2;",
+ "answer": [
+ "Wholesale"
+ ],
+ "sql_execute_result": [
+ [
+ "Wholesale"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 922?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 922;",
+ "answer": [
+ "MSH04-36-Purple"
+ ],
+ "sql_execute_result": [
+ [
+ "MSH04-36-Purple"
+ ]
+ ]
+ },
+ {
+ "question": "Which sequence table is used for orders in store ID 1?",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'order' AND store_id = 1;",
+ "answer": [
+ "sequence_order_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_order_1"
+ ]
+ ]
+ },
+ {
+ "question": "Find all shipments associated with customer ID 1.",
+ "sql": "SELECT entity_id, increment_id FROM sales_shipment WHERE customer_id = 1;",
+ "answer": [
+ "000000001",
+ "000000002"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ "000000001"
+ ],
+ [
+ 2,
+ "000000002"
+ ]
+ ]
+ },
+ {
+ "question": "Check if the product with SKU 'MH08' has options.",
+ "sql": "SELECT has_options FROM catalog_product_entity WHERE sku = 'MH08';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the website code for the admin website?",
+ "sql": "SELECT code FROM store_website WHERE name = 'Admin';",
+ "answer": [
+ "admin"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 41?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 41;",
+ "answer": [
+ "maxwell.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "maxwell.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the title of the CMS page with the identifier 'privacy-policy-cookie-restriction-mode'?",
+ "sql": "SELECT title FROM cms_page WHERE identifier = 'privacy-policy-cookie-restriction-mode';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status code 'closed'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'closed';",
+ "answer": [
+ "Closed"
+ ],
+ "sql_execute_result": [
+ [
+ "Closed"
+ ]
+ ]
+ },
+ {
+ "question": "What is the default billing address ID for the customer with email 'robert.johnson@gmail.com'?",
+ "sql": "SELECT default_billing FROM customer_entity WHERE email = 'robert.johnson@gmail.com';",
+ "answer": [
+ "51"
+ ],
+ "sql_execute_result": [
+ [
+ 51
+ ]
+ ]
+ },
+ {
+ "question": "How many orders are associated with customer ID 41?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_id = 41;",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the content heading of the 'Privacy Policy' CMS page?",
+ "sql": "SELECT content_heading FROM cms_page WHERE title = 'Privacy Policy';",
+ "answer": [
+ "Privacy Policy"
+ ],
+ "sql_execute_result": [
+ [
+ "Privacy Policy"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity of product with ID 2040 in stock.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 2040;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Is the 'Home Page' CMS page currently active?",
+ "sql": "SELECT is_active FROM cms_page WHERE title = 'Home Page';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the total number of active profiles in the sales sequence profile table?",
+ "sql": "SELECT COUNT(*) FROM sales_sequence_profile WHERE is_active = 1;",
+ "answer": [
+ "8"
+ ],
+ "sql_execute_result": [
+ [
+ 8
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product ID 1283?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1283;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with entity ID 47?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 47;",
+ "answer": [
+ "john.smith@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "john.smith@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total amount ordered for the sales order with entity ID 142.",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 142;",
+ "answer": [
+ "87.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "87.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products are in stock for stock ID 1?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE stock_id = 1 AND is_in_stock = 1;",
+ "answer": [
+ "2039"
+ ],
+ "sql_execute_result": [
+ [
+ 2039
+ ]
+ ]
+ },
+ {
+ "question": "How many orders has the customer with email 'olivia.jackson@gmail.com' placed?",
+ "sql": "SELECT COUNT(*) FROM sales_order WHERE customer_email = 'olivia.jackson@gmail.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "How many products have a stock quantity greater than 50?",
+ "sql": "SELECT COUNT(*) FROM cataloginventory_stock_item WHERE qty > 50;",
+ "answer": [
+ "1886"
+ ],
+ "sql_execute_result": [
+ [
+ 1886
+ ]
+ ]
+ },
+ {
+ "question": "Find the name of the customer who placed the order with increment ID '000000002'.",
+ "sql": "SELECT customer_firstname, customer_lastname FROM sales_order WHERE increment_id = '000000002';",
+ "answer": [
+ "Veronica Costello"
+ ],
+ "sql_execute_result": [
+ [
+ "Veronica",
+ "Costello"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for order with entity ID 2?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE entity_id = 2;",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many products have the attribute_id 136 and store_id 0?",
+ "sql": "SELECT entity_id, value FROM catalog_product_entity_int WHERE attribute_id = 136 AND store_id = 0;",
+ "answer": [
+ "2039"
+ ],
+ "sql_execute_result": [
+ [
+ 1,
+ 0
+ ],
+ [
+ 2,
+ 2
+ ],
+ [
+ 3,
+ 2
+ ],
+ [
+ 4,
+ 2
+ ],
+ [
+ 5,
+ 2
+ ],
+ [
+ 6,
+ 2
+ ],
+ [
+ 7,
+ 2
+ ],
+ [
+ 8,
+ 2
+ ],
+ [
+ 9,
+ 2
+ ],
+ [
+ 10,
+ 2
+ ],
+ [
+ 11,
+ 2
+ ],
+ [
+ 12,
+ 2
+ ],
+ [
+ 13,
+ 2
+ ],
+ [
+ 14,
+ 2
+ ],
+ [
+ 15,
+ 2
+ ],
+ [
+ 16,
+ 2
+ ],
+ [
+ 17,
+ 2
+ ],
+ [
+ 18,
+ 2
+ ],
+ [
+ 19,
+ 2
+ ],
+ [
+ 20,
+ 2
+ ],
+ [
+ 21,
+ 2
+ ],
+ [
+ 22,
+ 2
+ ],
+ [
+ 23,
+ 2
+ ],
+ [
+ 24,
+ 2
+ ],
+ [
+ 25,
+ 2
+ ],
+ [
+ 26,
+ 2
+ ],
+ [
+ 27,
+ 2
+ ],
+ [
+ 28,
+ 2
+ ],
+ [
+ 29,
+ 2
+ ],
+ [
+ 30,
+ 2
+ ],
+ [
+ 31,
+ 2
+ ],
+ [
+ 32,
+ 2
+ ],
+ [
+ 33,
+ 2
+ ],
+ [
+ 34,
+ 2
+ ],
+ [
+ 35,
+ 2
+ ],
+ [
+ 36,
+ 2
+ ],
+ [
+ 37,
+ 2
+ ],
+ [
+ 38,
+ 2
+ ],
+ [
+ 39,
+ 2
+ ],
+ [
+ 40,
+ 2
+ ],
+ [
+ 41,
+ 2
+ ],
+ [
+ 42,
+ 2
+ ],
+ [
+ 43,
+ 2
+ ],
+ [
+ 44,
+ 2
+ ],
+ [
+ 45,
+ 2
+ ],
+ [
+ 47,
+ 2
+ ],
+ [
+ 48,
+ 2
+ ],
+ [
+ 49,
+ 2
+ ],
+ [
+ 50,
+ 2
+ ],
+ [
+ 51,
+ 2
+ ],
+ [
+ 52,
+ 2
+ ],
+ [
+ 53,
+ 2
+ ],
+ [
+ 54,
+ 2
+ ],
+ [
+ 55,
+ 2
+ ],
+ [
+ 56,
+ 2
+ ],
+ [
+ 57,
+ 2
+ ],
+ [
+ 58,
+ 2
+ ],
+ [
+ 59,
+ 2
+ ],
+ [
+ 60,
+ 2
+ ],
+ [
+ 61,
+ 2
+ ],
+ [
+ 62,
+ 2
+ ],
+ [
+ 63,
+ 2
+ ],
+ [
+ 64,
+ 2
+ ],
+ [
+ 65,
+ 2
+ ],
+ [
+ 66,
+ 2
+ ],
+ [
+ 67,
+ 2
+ ],
+ [
+ 68,
+ 2
+ ],
+ [
+ 69,
+ 2
+ ],
+ [
+ 70,
+ 2
+ ],
+ [
+ 71,
+ 2
+ ],
+ [
+ 72,
+ 2
+ ],
+ [
+ 73,
+ 2
+ ],
+ [
+ 74,
+ 2
+ ],
+ [
+ 75,
+ 2
+ ],
+ [
+ 76,
+ 2
+ ],
+ [
+ 77,
+ 2
+ ],
+ [
+ 78,
+ 2
+ ],
+ [
+ 79,
+ 2
+ ],
+ [
+ 80,
+ 2
+ ],
+ [
+ 81,
+ 2
+ ],
+ [
+ 82,
+ 2
+ ],
+ [
+ 83,
+ 2
+ ],
+ [
+ 84,
+ 2
+ ],
+ [
+ 85,
+ 2
+ ],
+ [
+ 86,
+ 2
+ ],
+ [
+ 87,
+ 2
+ ],
+ [
+ 88,
+ 2
+ ],
+ [
+ 89,
+ 2
+ ],
+ [
+ 90,
+ 2
+ ],
+ [
+ 91,
+ 2
+ ],
+ [
+ 92,
+ 2
+ ],
+ [
+ 93,
+ 2
+ ],
+ [
+ 94,
+ 2
+ ],
+ [
+ 95,
+ 2
+ ],
+ [
+ 96,
+ 2
+ ],
+ [
+ 97,
+ 2
+ ],
+ [
+ 98,
+ 2
+ ],
+ [
+ 99,
+ 2
+ ],
+ [
+ 100,
+ 2
+ ],
+ [
+ 101,
+ 2
+ ],
+ [
+ 102,
+ 2
+ ],
+ [
+ 103,
+ 2
+ ],
+ [
+ 104,
+ 2
+ ],
+ [
+ 105,
+ 2
+ ],
+ [
+ 106,
+ 2
+ ],
+ [
+ 107,
+ 2
+ ],
+ [
+ 108,
+ 2
+ ],
+ [
+ 109,
+ 2
+ ],
+ [
+ 110,
+ 2
+ ],
+ [
+ 111,
+ 2
+ ],
+ [
+ 112,
+ 2
+ ],
+ [
+ 113,
+ 2
+ ],
+ [
+ 114,
+ 2
+ ],
+ [
+ 115,
+ 2
+ ],
+ [
+ 116,
+ 2
+ ],
+ [
+ 117,
+ 2
+ ],
+ [
+ 118,
+ 2
+ ],
+ [
+ 119,
+ 2
+ ],
+ [
+ 120,
+ 2
+ ],
+ [
+ 121,
+ 2
+ ],
+ [
+ 122,
+ 2
+ ],
+ [
+ 123,
+ 2
+ ],
+ [
+ 124,
+ 2
+ ],
+ [
+ 125,
+ 2
+ ],
+ [
+ 126,
+ 2
+ ],
+ [
+ 127,
+ 2
+ ],
+ [
+ 128,
+ 2
+ ],
+ [
+ 129,
+ 2
+ ],
+ [
+ 130,
+ 2
+ ],
+ [
+ 131,
+ 2
+ ],
+ [
+ 132,
+ 2
+ ],
+ [
+ 133,
+ 2
+ ],
+ [
+ 134,
+ 2
+ ],
+ [
+ 135,
+ 2
+ ],
+ [
+ 136,
+ 2
+ ],
+ [
+ 137,
+ 2
+ ],
+ [
+ 138,
+ 2
+ ],
+ [
+ 139,
+ 2
+ ],
+ [
+ 140,
+ 2
+ ],
+ [
+ 141,
+ 2
+ ],
+ [
+ 142,
+ 2
+ ],
+ [
+ 143,
+ 2
+ ],
+ [
+ 144,
+ 2
+ ],
+ [
+ 145,
+ 2
+ ],
+ [
+ 146,
+ 2
+ ],
+ [
+ 147,
+ 2
+ ],
+ [
+ 148,
+ 2
+ ],
+ [
+ 149,
+ 2
+ ],
+ [
+ 150,
+ 2
+ ],
+ [
+ 151,
+ 2
+ ],
+ [
+ 152,
+ 2
+ ],
+ [
+ 153,
+ 2
+ ],
+ [
+ 154,
+ 2
+ ],
+ [
+ 155,
+ 2
+ ],
+ [
+ 156,
+ 2
+ ],
+ [
+ 157,
+ 2
+ ],
+ [
+ 158,
+ 2
+ ],
+ [
+ 159,
+ 2
+ ],
+ [
+ 160,
+ 2
+ ],
+ [
+ 161,
+ 2
+ ],
+ [
+ 162,
+ 2
+ ],
+ [
+ 163,
+ 2
+ ],
+ [
+ 164,
+ 2
+ ],
+ [
+ 165,
+ 2
+ ],
+ [
+ 166,
+ 2
+ ],
+ [
+ 167,
+ 2
+ ],
+ [
+ 168,
+ 2
+ ],
+ [
+ 169,
+ 2
+ ],
+ [
+ 170,
+ 2
+ ],
+ [
+ 171,
+ 2
+ ],
+ [
+ 172,
+ 2
+ ],
+ [
+ 173,
+ 2
+ ],
+ [
+ 174,
+ 2
+ ],
+ [
+ 175,
+ 2
+ ],
+ [
+ 176,
+ 2
+ ],
+ [
+ 177,
+ 2
+ ],
+ [
+ 178,
+ 2
+ ],
+ [
+ 179,
+ 2
+ ],
+ [
+ 180,
+ 2
+ ],
+ [
+ 181,
+ 2
+ ],
+ [
+ 182,
+ 2
+ ],
+ [
+ 183,
+ 2
+ ],
+ [
+ 184,
+ 2
+ ],
+ [
+ 185,
+ 2
+ ],
+ [
+ 186,
+ 2
+ ],
+ [
+ 187,
+ 2
+ ],
+ [
+ 188,
+ 2
+ ],
+ [
+ 189,
+ 2
+ ],
+ [
+ 190,
+ 2
+ ],
+ [
+ 191,
+ 2
+ ],
+ [
+ 192,
+ 2
+ ],
+ [
+ 193,
+ 2
+ ],
+ [
+ 194,
+ 2
+ ],
+ [
+ 195,
+ 2
+ ],
+ [
+ 196,
+ 2
+ ],
+ [
+ 197,
+ 2
+ ],
+ [
+ 198,
+ 2
+ ],
+ [
+ 199,
+ 2
+ ],
+ [
+ 200,
+ 2
+ ],
+ [
+ 201,
+ 2
+ ],
+ [
+ 202,
+ 2
+ ],
+ [
+ 203,
+ 2
+ ],
+ [
+ 204,
+ 2
+ ],
+ [
+ 205,
+ 2
+ ],
+ [
+ 206,
+ 2
+ ],
+ [
+ 207,
+ 2
+ ],
+ [
+ 208,
+ 2
+ ],
+ [
+ 209,
+ 2
+ ],
+ [
+ 210,
+ 2
+ ],
+ [
+ 211,
+ 2
+ ],
+ [
+ 212,
+ 2
+ ],
+ [
+ 213,
+ 2
+ ],
+ [
+ 214,
+ 2
+ ],
+ [
+ 215,
+ 2
+ ],
+ [
+ 216,
+ 2
+ ],
+ [
+ 217,
+ 2
+ ],
+ [
+ 218,
+ 2
+ ],
+ [
+ 219,
+ 2
+ ],
+ [
+ 220,
+ 2
+ ],
+ [
+ 221,
+ 2
+ ],
+ [
+ 222,
+ 2
+ ],
+ [
+ 223,
+ 2
+ ],
+ [
+ 224,
+ 2
+ ],
+ [
+ 225,
+ 2
+ ],
+ [
+ 226,
+ 2
+ ],
+ [
+ 227,
+ 2
+ ],
+ [
+ 228,
+ 2
+ ],
+ [
+ 229,
+ 2
+ ],
+ [
+ 230,
+ 2
+ ],
+ [
+ 231,
+ 2
+ ],
+ [
+ 232,
+ 2
+ ],
+ [
+ 233,
+ 2
+ ],
+ [
+ 234,
+ 2
+ ],
+ [
+ 235,
+ 2
+ ],
+ [
+ 236,
+ 2
+ ],
+ [
+ 237,
+ 2
+ ],
+ [
+ 238,
+ 2
+ ],
+ [
+ 239,
+ 2
+ ],
+ [
+ 240,
+ 2
+ ],
+ [
+ 241,
+ 2
+ ],
+ [
+ 242,
+ 2
+ ],
+ [
+ 243,
+ 2
+ ],
+ [
+ 244,
+ 2
+ ],
+ [
+ 245,
+ 2
+ ],
+ [
+ 246,
+ 2
+ ],
+ [
+ 247,
+ 2
+ ],
+ [
+ 248,
+ 2
+ ],
+ [
+ 249,
+ 2
+ ],
+ [
+ 250,
+ 2
+ ],
+ [
+ 251,
+ 2
+ ],
+ [
+ 252,
+ 2
+ ],
+ [
+ 253,
+ 2
+ ],
+ [
+ 254,
+ 2
+ ],
+ [
+ 255,
+ 2
+ ],
+ [
+ 256,
+ 2
+ ],
+ [
+ 257,
+ 2
+ ],
+ [
+ 258,
+ 2
+ ],
+ [
+ 259,
+ 2
+ ],
+ [
+ 260,
+ 2
+ ],
+ [
+ 261,
+ 2
+ ],
+ [
+ 262,
+ 2
+ ],
+ [
+ 263,
+ 2
+ ],
+ [
+ 264,
+ 2
+ ],
+ [
+ 265,
+ 2
+ ],
+ [
+ 266,
+ 2
+ ],
+ [
+ 267,
+ 2
+ ],
+ [
+ 268,
+ 2
+ ],
+ [
+ 269,
+ 2
+ ],
+ [
+ 270,
+ 2
+ ],
+ [
+ 271,
+ 2
+ ],
+ [
+ 272,
+ 2
+ ],
+ [
+ 273,
+ 2
+ ],
+ [
+ 274,
+ 2
+ ],
+ [
+ 275,
+ 2
+ ],
+ [
+ 276,
+ 2
+ ],
+ [
+ 277,
+ 2
+ ],
+ [
+ 278,
+ 2
+ ],
+ [
+ 279,
+ 2
+ ],
+ [
+ 280,
+ 2
+ ],
+ [
+ 281,
+ 2
+ ],
+ [
+ 282,
+ 2
+ ],
+ [
+ 283,
+ 2
+ ],
+ [
+ 284,
+ 2
+ ],
+ [
+ 285,
+ 2
+ ],
+ [
+ 286,
+ 2
+ ],
+ [
+ 287,
+ 2
+ ],
+ [
+ 288,
+ 2
+ ],
+ [
+ 289,
+ 2
+ ],
+ [
+ 290,
+ 2
+ ],
+ [
+ 291,
+ 2
+ ],
+ [
+ 292,
+ 2
+ ],
+ [
+ 293,
+ 2
+ ],
+ [
+ 294,
+ 2
+ ],
+ [
+ 295,
+ 2
+ ],
+ [
+ 296,
+ 2
+ ],
+ [
+ 297,
+ 2
+ ],
+ [
+ 298,
+ 2
+ ],
+ [
+ 299,
+ 2
+ ],
+ [
+ 300,
+ 2
+ ],
+ [
+ 301,
+ 2
+ ],
+ [
+ 302,
+ 2
+ ],
+ [
+ 303,
+ 2
+ ],
+ [
+ 304,
+ 2
+ ],
+ [
+ 305,
+ 2
+ ],
+ [
+ 306,
+ 2
+ ],
+ [
+ 307,
+ 2
+ ],
+ [
+ 308,
+ 2
+ ],
+ [
+ 309,
+ 2
+ ],
+ [
+ 310,
+ 2
+ ],
+ [
+ 311,
+ 2
+ ],
+ [
+ 312,
+ 2
+ ],
+ [
+ 313,
+ 2
+ ],
+ [
+ 314,
+ 2
+ ],
+ [
+ 315,
+ 2
+ ],
+ [
+ 316,
+ 2
+ ],
+ [
+ 317,
+ 2
+ ],
+ [
+ 318,
+ 2
+ ],
+ [
+ 319,
+ 2
+ ],
+ [
+ 320,
+ 2
+ ],
+ [
+ 321,
+ 2
+ ],
+ [
+ 322,
+ 2
+ ],
+ [
+ 323,
+ 2
+ ],
+ [
+ 324,
+ 2
+ ],
+ [
+ 325,
+ 2
+ ],
+ [
+ 326,
+ 2
+ ],
+ [
+ 327,
+ 2
+ ],
+ [
+ 328,
+ 2
+ ],
+ [
+ 329,
+ 2
+ ],
+ [
+ 330,
+ 2
+ ],
+ [
+ 331,
+ 2
+ ],
+ [
+ 332,
+ 2
+ ],
+ [
+ 333,
+ 2
+ ],
+ [
+ 334,
+ 2
+ ],
+ [
+ 335,
+ 2
+ ],
+ [
+ 336,
+ 2
+ ],
+ [
+ 337,
+ 2
+ ],
+ [
+ 338,
+ 2
+ ],
+ [
+ 339,
+ 2
+ ],
+ [
+ 340,
+ 2
+ ],
+ [
+ 341,
+ 2
+ ],
+ [
+ 342,
+ 2
+ ],
+ [
+ 343,
+ 2
+ ],
+ [
+ 344,
+ 2
+ ],
+ [
+ 345,
+ 2
+ ],
+ [
+ 346,
+ 2
+ ],
+ [
+ 347,
+ 2
+ ],
+ [
+ 348,
+ 2
+ ],
+ [
+ 349,
+ 2
+ ],
+ [
+ 350,
+ 2
+ ],
+ [
+ 351,
+ 2
+ ],
+ [
+ 352,
+ 2
+ ],
+ [
+ 353,
+ 2
+ ],
+ [
+ 354,
+ 2
+ ],
+ [
+ 355,
+ 2
+ ],
+ [
+ 356,
+ 2
+ ],
+ [
+ 357,
+ 2
+ ],
+ [
+ 358,
+ 2
+ ],
+ [
+ 359,
+ 2
+ ],
+ [
+ 360,
+ 2
+ ],
+ [
+ 361,
+ 2
+ ],
+ [
+ 362,
+ 2
+ ],
+ [
+ 363,
+ 2
+ ],
+ [
+ 364,
+ 2
+ ],
+ [
+ 365,
+ 2
+ ],
+ [
+ 366,
+ 2
+ ],
+ [
+ 367,
+ 2
+ ],
+ [
+ 368,
+ 2
+ ],
+ [
+ 369,
+ 2
+ ],
+ [
+ 370,
+ 2
+ ],
+ [
+ 371,
+ 2
+ ],
+ [
+ 372,
+ 2
+ ],
+ [
+ 373,
+ 2
+ ],
+ [
+ 374,
+ 2
+ ],
+ [
+ 375,
+ 2
+ ],
+ [
+ 376,
+ 2
+ ],
+ [
+ 377,
+ 2
+ ],
+ [
+ 378,
+ 2
+ ],
+ [
+ 379,
+ 2
+ ],
+ [
+ 380,
+ 2
+ ],
+ [
+ 381,
+ 2
+ ],
+ [
+ 382,
+ 2
+ ],
+ [
+ 383,
+ 2
+ ],
+ [
+ 384,
+ 2
+ ],
+ [
+ 385,
+ 2
+ ],
+ [
+ 386,
+ 2
+ ],
+ [
+ 387,
+ 2
+ ],
+ [
+ 388,
+ 2
+ ],
+ [
+ 389,
+ 2
+ ],
+ [
+ 390,
+ 2
+ ],
+ [
+ 391,
+ 2
+ ],
+ [
+ 392,
+ 2
+ ],
+ [
+ 393,
+ 2
+ ],
+ [
+ 394,
+ 2
+ ],
+ [
+ 395,
+ 2
+ ],
+ [
+ 396,
+ 2
+ ],
+ [
+ 397,
+ 2
+ ],
+ [
+ 398,
+ 2
+ ],
+ [
+ 399,
+ 2
+ ],
+ [
+ 400,
+ 2
+ ],
+ [
+ 401,
+ 2
+ ],
+ [
+ 402,
+ 2
+ ],
+ [
+ 403,
+ 2
+ ],
+ [
+ 404,
+ 2
+ ],
+ [
+ 405,
+ 2
+ ],
+ [
+ 406,
+ 2
+ ],
+ [
+ 407,
+ 2
+ ],
+ [
+ 408,
+ 2
+ ],
+ [
+ 409,
+ 2
+ ],
+ [
+ 410,
+ 2
+ ],
+ [
+ 411,
+ 2
+ ],
+ [
+ 412,
+ 2
+ ],
+ [
+ 413,
+ 2
+ ],
+ [
+ 414,
+ 2
+ ],
+ [
+ 415,
+ 2
+ ],
+ [
+ 416,
+ 2
+ ],
+ [
+ 417,
+ 2
+ ],
+ [
+ 418,
+ 2
+ ],
+ [
+ 419,
+ 2
+ ],
+ [
+ 420,
+ 2
+ ],
+ [
+ 421,
+ 2
+ ],
+ [
+ 422,
+ 2
+ ],
+ [
+ 423,
+ 2
+ ],
+ [
+ 424,
+ 2
+ ],
+ [
+ 425,
+ 2
+ ],
+ [
+ 426,
+ 2
+ ],
+ [
+ 427,
+ 2
+ ],
+ [
+ 428,
+ 2
+ ],
+ [
+ 429,
+ 2
+ ],
+ [
+ 430,
+ 2
+ ],
+ [
+ 431,
+ 2
+ ],
+ [
+ 432,
+ 2
+ ],
+ [
+ 433,
+ 2
+ ],
+ [
+ 434,
+ 2
+ ],
+ [
+ 435,
+ 2
+ ],
+ [
+ 436,
+ 2
+ ],
+ [
+ 437,
+ 2
+ ],
+ [
+ 438,
+ 2
+ ],
+ [
+ 439,
+ 2
+ ],
+ [
+ 440,
+ 2
+ ],
+ [
+ 441,
+ 2
+ ],
+ [
+ 442,
+ 2
+ ],
+ [
+ 443,
+ 2
+ ],
+ [
+ 444,
+ 2
+ ],
+ [
+ 445,
+ 2
+ ],
+ [
+ 446,
+ 2
+ ],
+ [
+ 447,
+ 2
+ ],
+ [
+ 448,
+ 2
+ ],
+ [
+ 449,
+ 2
+ ],
+ [
+ 450,
+ 2
+ ],
+ [
+ 451,
+ 2
+ ],
+ [
+ 452,
+ 2
+ ],
+ [
+ 453,
+ 2
+ ],
+ [
+ 454,
+ 2
+ ],
+ [
+ 455,
+ 2
+ ],
+ [
+ 456,
+ 2
+ ],
+ [
+ 457,
+ 2
+ ],
+ [
+ 458,
+ 2
+ ],
+ [
+ 459,
+ 2
+ ],
+ [
+ 460,
+ 2
+ ],
+ [
+ 461,
+ 2
+ ],
+ [
+ 462,
+ 2
+ ],
+ [
+ 463,
+ 2
+ ],
+ [
+ 464,
+ 2
+ ],
+ [
+ 465,
+ 2
+ ],
+ [
+ 466,
+ 2
+ ],
+ [
+ 467,
+ 2
+ ],
+ [
+ 468,
+ 2
+ ],
+ [
+ 469,
+ 2
+ ],
+ [
+ 470,
+ 2
+ ],
+ [
+ 471,
+ 2
+ ],
+ [
+ 472,
+ 2
+ ],
+ [
+ 473,
+ 2
+ ],
+ [
+ 474,
+ 2
+ ],
+ [
+ 475,
+ 2
+ ],
+ [
+ 476,
+ 2
+ ],
+ [
+ 477,
+ 2
+ ],
+ [
+ 478,
+ 2
+ ],
+ [
+ 479,
+ 2
+ ],
+ [
+ 480,
+ 2
+ ],
+ [
+ 481,
+ 2
+ ],
+ [
+ 482,
+ 2
+ ],
+ [
+ 483,
+ 2
+ ],
+ [
+ 484,
+ 2
+ ],
+ [
+ 485,
+ 2
+ ],
+ [
+ 486,
+ 2
+ ],
+ [
+ 487,
+ 2
+ ],
+ [
+ 488,
+ 2
+ ],
+ [
+ 489,
+ 2
+ ],
+ [
+ 490,
+ 2
+ ],
+ [
+ 491,
+ 2
+ ],
+ [
+ 492,
+ 2
+ ],
+ [
+ 493,
+ 2
+ ],
+ [
+ 494,
+ 2
+ ],
+ [
+ 495,
+ 2
+ ],
+ [
+ 496,
+ 2
+ ],
+ [
+ 497,
+ 2
+ ],
+ [
+ 498,
+ 2
+ ],
+ [
+ 499,
+ 2
+ ],
+ [
+ 500,
+ 2
+ ],
+ [
+ 501,
+ 2
+ ],
+ [
+ 502,
+ 2
+ ],
+ [
+ 503,
+ 2
+ ],
+ [
+ 504,
+ 2
+ ],
+ [
+ 505,
+ 2
+ ],
+ [
+ 506,
+ 2
+ ],
+ [
+ 507,
+ 2
+ ],
+ [
+ 508,
+ 2
+ ],
+ [
+ 509,
+ 2
+ ],
+ [
+ 510,
+ 2
+ ],
+ [
+ 511,
+ 2
+ ],
+ [
+ 512,
+ 2
+ ],
+ [
+ 513,
+ 2
+ ],
+ [
+ 514,
+ 2
+ ],
+ [
+ 515,
+ 2
+ ],
+ [
+ 516,
+ 2
+ ],
+ [
+ 517,
+ 2
+ ],
+ [
+ 518,
+ 2
+ ],
+ [
+ 519,
+ 2
+ ],
+ [
+ 520,
+ 2
+ ],
+ [
+ 521,
+ 2
+ ],
+ [
+ 522,
+ 2
+ ],
+ [
+ 523,
+ 2
+ ],
+ [
+ 524,
+ 2
+ ],
+ [
+ 525,
+ 2
+ ],
+ [
+ 526,
+ 2
+ ],
+ [
+ 527,
+ 2
+ ],
+ [
+ 528,
+ 2
+ ],
+ [
+ 529,
+ 2
+ ],
+ [
+ 530,
+ 2
+ ],
+ [
+ 531,
+ 2
+ ],
+ [
+ 532,
+ 2
+ ],
+ [
+ 533,
+ 2
+ ],
+ [
+ 534,
+ 2
+ ],
+ [
+ 535,
+ 2
+ ],
+ [
+ 536,
+ 2
+ ],
+ [
+ 537,
+ 2
+ ],
+ [
+ 538,
+ 2
+ ],
+ [
+ 539,
+ 2
+ ],
+ [
+ 540,
+ 2
+ ],
+ [
+ 541,
+ 2
+ ],
+ [
+ 542,
+ 2
+ ],
+ [
+ 543,
+ 2
+ ],
+ [
+ 544,
+ 2
+ ],
+ [
+ 545,
+ 2
+ ],
+ [
+ 546,
+ 2
+ ],
+ [
+ 547,
+ 2
+ ],
+ [
+ 548,
+ 2
+ ],
+ [
+ 549,
+ 2
+ ],
+ [
+ 550,
+ 2
+ ],
+ [
+ 551,
+ 2
+ ],
+ [
+ 552,
+ 2
+ ],
+ [
+ 553,
+ 2
+ ],
+ [
+ 554,
+ 2
+ ],
+ [
+ 555,
+ 2
+ ],
+ [
+ 556,
+ 2
+ ],
+ [
+ 557,
+ 2
+ ],
+ [
+ 558,
+ 2
+ ],
+ [
+ 559,
+ 2
+ ],
+ [
+ 560,
+ 2
+ ],
+ [
+ 561,
+ 2
+ ],
+ [
+ 562,
+ 2
+ ],
+ [
+ 563,
+ 2
+ ],
+ [
+ 564,
+ 2
+ ],
+ [
+ 565,
+ 2
+ ],
+ [
+ 566,
+ 2
+ ],
+ [
+ 567,
+ 2
+ ],
+ [
+ 568,
+ 2
+ ],
+ [
+ 569,
+ 2
+ ],
+ [
+ 570,
+ 2
+ ],
+ [
+ 571,
+ 2
+ ],
+ [
+ 572,
+ 2
+ ],
+ [
+ 573,
+ 2
+ ],
+ [
+ 574,
+ 2
+ ],
+ [
+ 575,
+ 2
+ ],
+ [
+ 576,
+ 2
+ ],
+ [
+ 577,
+ 2
+ ],
+ [
+ 578,
+ 2
+ ],
+ [
+ 579,
+ 2
+ ],
+ [
+ 580,
+ 2
+ ],
+ [
+ 581,
+ 2
+ ],
+ [
+ 582,
+ 2
+ ],
+ [
+ 583,
+ 2
+ ],
+ [
+ 584,
+ 2
+ ],
+ [
+ 585,
+ 2
+ ],
+ [
+ 586,
+ 2
+ ],
+ [
+ 587,
+ 2
+ ],
+ [
+ 588,
+ 2
+ ],
+ [
+ 589,
+ 2
+ ],
+ [
+ 590,
+ 2
+ ],
+ [
+ 591,
+ 2
+ ],
+ [
+ 592,
+ 2
+ ],
+ [
+ 593,
+ 2
+ ],
+ [
+ 594,
+ 2
+ ],
+ [
+ 595,
+ 2
+ ],
+ [
+ 596,
+ 2
+ ],
+ [
+ 597,
+ 2
+ ],
+ [
+ 598,
+ 2
+ ],
+ [
+ 599,
+ 2
+ ],
+ [
+ 600,
+ 2
+ ],
+ [
+ 601,
+ 2
+ ],
+ [
+ 602,
+ 2
+ ],
+ [
+ 603,
+ 2
+ ],
+ [
+ 604,
+ 2
+ ],
+ [
+ 605,
+ 2
+ ],
+ [
+ 606,
+ 2
+ ],
+ [
+ 607,
+ 2
+ ],
+ [
+ 608,
+ 2
+ ],
+ [
+ 609,
+ 2
+ ],
+ [
+ 610,
+ 2
+ ],
+ [
+ 611,
+ 2
+ ],
+ [
+ 612,
+ 2
+ ],
+ [
+ 613,
+ 2
+ ],
+ [
+ 614,
+ 2
+ ],
+ [
+ 615,
+ 2
+ ],
+ [
+ 616,
+ 2
+ ],
+ [
+ 617,
+ 2
+ ],
+ [
+ 618,
+ 2
+ ],
+ [
+ 619,
+ 2
+ ],
+ [
+ 620,
+ 2
+ ],
+ [
+ 621,
+ 2
+ ],
+ [
+ 622,
+ 2
+ ],
+ [
+ 623,
+ 2
+ ],
+ [
+ 624,
+ 2
+ ],
+ [
+ 625,
+ 2
+ ],
+ [
+ 626,
+ 2
+ ],
+ [
+ 627,
+ 2
+ ],
+ [
+ 628,
+ 2
+ ],
+ [
+ 629,
+ 2
+ ],
+ [
+ 630,
+ 2
+ ],
+ [
+ 631,
+ 2
+ ],
+ [
+ 632,
+ 2
+ ],
+ [
+ 633,
+ 2
+ ],
+ [
+ 634,
+ 2
+ ],
+ [
+ 635,
+ 2
+ ],
+ [
+ 636,
+ 2
+ ],
+ [
+ 637,
+ 2
+ ],
+ [
+ 638,
+ 2
+ ],
+ [
+ 639,
+ 2
+ ],
+ [
+ 640,
+ 2
+ ],
+ [
+ 641,
+ 2
+ ],
+ [
+ 642,
+ 2
+ ],
+ [
+ 643,
+ 2
+ ],
+ [
+ 644,
+ 2
+ ],
+ [
+ 645,
+ 2
+ ],
+ [
+ 646,
+ 2
+ ],
+ [
+ 647,
+ 2
+ ],
+ [
+ 648,
+ 2
+ ],
+ [
+ 649,
+ 2
+ ],
+ [
+ 650,
+ 2
+ ],
+ [
+ 651,
+ 2
+ ],
+ [
+ 652,
+ 2
+ ],
+ [
+ 653,
+ 2
+ ],
+ [
+ 654,
+ 2
+ ],
+ [
+ 655,
+ 2
+ ],
+ [
+ 656,
+ 2
+ ],
+ [
+ 657,
+ 2
+ ],
+ [
+ 658,
+ 2
+ ],
+ [
+ 659,
+ 2
+ ],
+ [
+ 660,
+ 2
+ ],
+ [
+ 661,
+ 2
+ ],
+ [
+ 662,
+ 2
+ ],
+ [
+ 663,
+ 2
+ ],
+ [
+ 664,
+ 2
+ ],
+ [
+ 665,
+ 2
+ ],
+ [
+ 666,
+ 2
+ ],
+ [
+ 667,
+ 2
+ ],
+ [
+ 668,
+ 2
+ ],
+ [
+ 669,
+ 2
+ ],
+ [
+ 670,
+ 2
+ ],
+ [
+ 671,
+ 2
+ ],
+ [
+ 672,
+ 2
+ ],
+ [
+ 673,
+ 2
+ ],
+ [
+ 674,
+ 2
+ ],
+ [
+ 675,
+ 2
+ ],
+ [
+ 676,
+ 2
+ ],
+ [
+ 677,
+ 2
+ ],
+ [
+ 678,
+ 2
+ ],
+ [
+ 679,
+ 2
+ ],
+ [
+ 680,
+ 2
+ ],
+ [
+ 681,
+ 2
+ ],
+ [
+ 682,
+ 2
+ ],
+ [
+ 683,
+ 2
+ ],
+ [
+ 684,
+ 2
+ ],
+ [
+ 685,
+ 2
+ ],
+ [
+ 686,
+ 2
+ ],
+ [
+ 687,
+ 2
+ ],
+ [
+ 688,
+ 2
+ ],
+ [
+ 689,
+ 2
+ ],
+ [
+ 690,
+ 2
+ ],
+ [
+ 691,
+ 2
+ ],
+ [
+ 692,
+ 2
+ ],
+ [
+ 693,
+ 2
+ ],
+ [
+ 694,
+ 2
+ ],
+ [
+ 695,
+ 2
+ ],
+ [
+ 696,
+ 2
+ ],
+ [
+ 697,
+ 2
+ ],
+ [
+ 698,
+ 2
+ ],
+ [
+ 699,
+ 2
+ ],
+ [
+ 700,
+ 2
+ ],
+ [
+ 701,
+ 2
+ ],
+ [
+ 702,
+ 2
+ ],
+ [
+ 703,
+ 2
+ ],
+ [
+ 704,
+ 2
+ ],
+ [
+ 705,
+ 2
+ ],
+ [
+ 706,
+ 2
+ ],
+ [
+ 707,
+ 2
+ ],
+ [
+ 708,
+ 2
+ ],
+ [
+ 709,
+ 2
+ ],
+ [
+ 710,
+ 2
+ ],
+ [
+ 711,
+ 2
+ ],
+ [
+ 712,
+ 2
+ ],
+ [
+ 713,
+ 2
+ ],
+ [
+ 714,
+ 2
+ ],
+ [
+ 715,
+ 2
+ ],
+ [
+ 716,
+ 2
+ ],
+ [
+ 717,
+ 2
+ ],
+ [
+ 718,
+ 2
+ ],
+ [
+ 719,
+ 2
+ ],
+ [
+ 720,
+ 2
+ ],
+ [
+ 721,
+ 2
+ ],
+ [
+ 722,
+ 2
+ ],
+ [
+ 723,
+ 2
+ ],
+ [
+ 724,
+ 2
+ ],
+ [
+ 725,
+ 2
+ ],
+ [
+ 726,
+ 2
+ ],
+ [
+ 727,
+ 2
+ ],
+ [
+ 728,
+ 2
+ ],
+ [
+ 729,
+ 2
+ ],
+ [
+ 730,
+ 2
+ ],
+ [
+ 731,
+ 2
+ ],
+ [
+ 732,
+ 2
+ ],
+ [
+ 733,
+ 2
+ ],
+ [
+ 734,
+ 2
+ ],
+ [
+ 735,
+ 2
+ ],
+ [
+ 736,
+ 2
+ ],
+ [
+ 737,
+ 2
+ ],
+ [
+ 738,
+ 2
+ ],
+ [
+ 739,
+ 2
+ ],
+ [
+ 740,
+ 2
+ ],
+ [
+ 741,
+ 2
+ ],
+ [
+ 742,
+ 2
+ ],
+ [
+ 743,
+ 2
+ ],
+ [
+ 744,
+ 2
+ ],
+ [
+ 745,
+ 2
+ ],
+ [
+ 746,
+ 2
+ ],
+ [
+ 747,
+ 2
+ ],
+ [
+ 748,
+ 2
+ ],
+ [
+ 749,
+ 2
+ ],
+ [
+ 750,
+ 2
+ ],
+ [
+ 751,
+ 2
+ ],
+ [
+ 752,
+ 2
+ ],
+ [
+ 753,
+ 2
+ ],
+ [
+ 754,
+ 2
+ ],
+ [
+ 755,
+ 2
+ ],
+ [
+ 756,
+ 2
+ ],
+ [
+ 757,
+ 2
+ ],
+ [
+ 758,
+ 2
+ ],
+ [
+ 759,
+ 2
+ ],
+ [
+ 760,
+ 2
+ ],
+ [
+ 761,
+ 2
+ ],
+ [
+ 762,
+ 2
+ ],
+ [
+ 763,
+ 2
+ ],
+ [
+ 764,
+ 2
+ ],
+ [
+ 765,
+ 2
+ ],
+ [
+ 766,
+ 2
+ ],
+ [
+ 767,
+ 2
+ ],
+ [
+ 768,
+ 2
+ ],
+ [
+ 769,
+ 2
+ ],
+ [
+ 770,
+ 2
+ ],
+ [
+ 771,
+ 2
+ ],
+ [
+ 772,
+ 2
+ ],
+ [
+ 773,
+ 2
+ ],
+ [
+ 774,
+ 2
+ ],
+ [
+ 775,
+ 2
+ ],
+ [
+ 776,
+ 2
+ ],
+ [
+ 777,
+ 2
+ ],
+ [
+ 778,
+ 2
+ ],
+ [
+ 779,
+ 2
+ ],
+ [
+ 780,
+ 2
+ ],
+ [
+ 781,
+ 2
+ ],
+ [
+ 782,
+ 2
+ ],
+ [
+ 783,
+ 2
+ ],
+ [
+ 784,
+ 2
+ ],
+ [
+ 785,
+ 2
+ ],
+ [
+ 786,
+ 2
+ ],
+ [
+ 787,
+ 2
+ ],
+ [
+ 788,
+ 2
+ ],
+ [
+ 789,
+ 2
+ ],
+ [
+ 790,
+ 2
+ ],
+ [
+ 791,
+ 2
+ ],
+ [
+ 792,
+ 2
+ ],
+ [
+ 793,
+ 2
+ ],
+ [
+ 794,
+ 2
+ ],
+ [
+ 795,
+ 2
+ ],
+ [
+ 796,
+ 2
+ ],
+ [
+ 797,
+ 2
+ ],
+ [
+ 798,
+ 2
+ ],
+ [
+ 799,
+ 2
+ ],
+ [
+ 800,
+ 2
+ ],
+ [
+ 801,
+ 2
+ ],
+ [
+ 802,
+ 2
+ ],
+ [
+ 803,
+ 2
+ ],
+ [
+ 804,
+ 2
+ ],
+ [
+ 805,
+ 2
+ ],
+ [
+ 806,
+ 2
+ ],
+ [
+ 807,
+ 2
+ ],
+ [
+ 808,
+ 2
+ ],
+ [
+ 809,
+ 2
+ ],
+ [
+ 810,
+ 2
+ ],
+ [
+ 811,
+ 2
+ ],
+ [
+ 812,
+ 2
+ ],
+ [
+ 813,
+ 2
+ ],
+ [
+ 814,
+ 2
+ ],
+ [
+ 815,
+ 2
+ ],
+ [
+ 816,
+ 2
+ ],
+ [
+ 817,
+ 2
+ ],
+ [
+ 818,
+ 2
+ ],
+ [
+ 819,
+ 2
+ ],
+ [
+ 820,
+ 2
+ ],
+ [
+ 821,
+ 2
+ ],
+ [
+ 822,
+ 2
+ ],
+ [
+ 823,
+ 2
+ ],
+ [
+ 824,
+ 2
+ ],
+ [
+ 825,
+ 2
+ ],
+ [
+ 826,
+ 2
+ ],
+ [
+ 827,
+ 2
+ ],
+ [
+ 828,
+ 2
+ ],
+ [
+ 829,
+ 2
+ ],
+ [
+ 830,
+ 2
+ ],
+ [
+ 831,
+ 2
+ ],
+ [
+ 832,
+ 2
+ ],
+ [
+ 833,
+ 2
+ ],
+ [
+ 834,
+ 2
+ ],
+ [
+ 835,
+ 2
+ ],
+ [
+ 836,
+ 2
+ ],
+ [
+ 837,
+ 2
+ ],
+ [
+ 838,
+ 2
+ ],
+ [
+ 839,
+ 2
+ ],
+ [
+ 840,
+ 2
+ ],
+ [
+ 841,
+ 2
+ ],
+ [
+ 842,
+ 2
+ ],
+ [
+ 843,
+ 2
+ ],
+ [
+ 844,
+ 2
+ ],
+ [
+ 845,
+ 2
+ ],
+ [
+ 846,
+ 2
+ ],
+ [
+ 847,
+ 2
+ ],
+ [
+ 848,
+ 2
+ ],
+ [
+ 849,
+ 2
+ ],
+ [
+ 850,
+ 2
+ ],
+ [
+ 851,
+ 2
+ ],
+ [
+ 852,
+ 2
+ ],
+ [
+ 853,
+ 2
+ ],
+ [
+ 854,
+ 2
+ ],
+ [
+ 855,
+ 2
+ ],
+ [
+ 856,
+ 2
+ ],
+ [
+ 857,
+ 2
+ ],
+ [
+ 858,
+ 2
+ ],
+ [
+ 859,
+ 2
+ ],
+ [
+ 860,
+ 2
+ ],
+ [
+ 861,
+ 2
+ ],
+ [
+ 862,
+ 2
+ ],
+ [
+ 863,
+ 2
+ ],
+ [
+ 864,
+ 2
+ ],
+ [
+ 865,
+ 2
+ ],
+ [
+ 866,
+ 2
+ ],
+ [
+ 867,
+ 2
+ ],
+ [
+ 868,
+ 2
+ ],
+ [
+ 869,
+ 2
+ ],
+ [
+ 870,
+ 2
+ ],
+ [
+ 871,
+ 2
+ ],
+ [
+ 872,
+ 2
+ ],
+ [
+ 873,
+ 2
+ ],
+ [
+ 874,
+ 2
+ ],
+ [
+ 875,
+ 2
+ ],
+ [
+ 876,
+ 2
+ ],
+ [
+ 877,
+ 2
+ ],
+ [
+ 878,
+ 2
+ ],
+ [
+ 879,
+ 2
+ ],
+ [
+ 880,
+ 2
+ ],
+ [
+ 881,
+ 2
+ ],
+ [
+ 882,
+ 2
+ ],
+ [
+ 883,
+ 2
+ ],
+ [
+ 884,
+ 2
+ ],
+ [
+ 885,
+ 2
+ ],
+ [
+ 886,
+ 2
+ ],
+ [
+ 887,
+ 2
+ ],
+ [
+ 888,
+ 2
+ ],
+ [
+ 889,
+ 2
+ ],
+ [
+ 890,
+ 2
+ ],
+ [
+ 891,
+ 2
+ ],
+ [
+ 892,
+ 2
+ ],
+ [
+ 893,
+ 2
+ ],
+ [
+ 894,
+ 2
+ ],
+ [
+ 895,
+ 2
+ ],
+ [
+ 896,
+ 2
+ ],
+ [
+ 897,
+ 2
+ ],
+ [
+ 898,
+ 2
+ ],
+ [
+ 899,
+ 2
+ ],
+ [
+ 900,
+ 2
+ ],
+ [
+ 901,
+ 2
+ ],
+ [
+ 902,
+ 2
+ ],
+ [
+ 903,
+ 2
+ ],
+ [
+ 904,
+ 2
+ ],
+ [
+ 905,
+ 2
+ ],
+ [
+ 906,
+ 2
+ ],
+ [
+ 907,
+ 2
+ ],
+ [
+ 908,
+ 2
+ ],
+ [
+ 909,
+ 2
+ ],
+ [
+ 910,
+ 2
+ ],
+ [
+ 911,
+ 2
+ ],
+ [
+ 912,
+ 2
+ ],
+ [
+ 913,
+ 2
+ ],
+ [
+ 914,
+ 2
+ ],
+ [
+ 915,
+ 2
+ ],
+ [
+ 916,
+ 2
+ ],
+ [
+ 917,
+ 2
+ ],
+ [
+ 918,
+ 2
+ ],
+ [
+ 919,
+ 2
+ ],
+ [
+ 920,
+ 2
+ ],
+ [
+ 921,
+ 2
+ ],
+ [
+ 922,
+ 2
+ ],
+ [
+ 923,
+ 2
+ ],
+ [
+ 924,
+ 2
+ ],
+ [
+ 925,
+ 2
+ ],
+ [
+ 926,
+ 2
+ ],
+ [
+ 927,
+ 2
+ ],
+ [
+ 928,
+ 2
+ ],
+ [
+ 929,
+ 2
+ ],
+ [
+ 930,
+ 2
+ ],
+ [
+ 931,
+ 2
+ ],
+ [
+ 932,
+ 2
+ ],
+ [
+ 933,
+ 2
+ ],
+ [
+ 934,
+ 2
+ ],
+ [
+ 935,
+ 2
+ ],
+ [
+ 936,
+ 2
+ ],
+ [
+ 937,
+ 2
+ ],
+ [
+ 938,
+ 2
+ ],
+ [
+ 939,
+ 2
+ ],
+ [
+ 940,
+ 2
+ ],
+ [
+ 941,
+ 2
+ ],
+ [
+ 942,
+ 2
+ ],
+ [
+ 943,
+ 2
+ ],
+ [
+ 944,
+ 2
+ ],
+ [
+ 945,
+ 2
+ ],
+ [
+ 946,
+ 2
+ ],
+ [
+ 947,
+ 2
+ ],
+ [
+ 948,
+ 2
+ ],
+ [
+ 949,
+ 2
+ ],
+ [
+ 950,
+ 2
+ ],
+ [
+ 951,
+ 2
+ ],
+ [
+ 952,
+ 2
+ ],
+ [
+ 953,
+ 2
+ ],
+ [
+ 954,
+ 2
+ ],
+ [
+ 955,
+ 2
+ ],
+ [
+ 956,
+ 2
+ ],
+ [
+ 957,
+ 2
+ ],
+ [
+ 958,
+ 2
+ ],
+ [
+ 959,
+ 2
+ ],
+ [
+ 960,
+ 2
+ ],
+ [
+ 961,
+ 2
+ ],
+ [
+ 962,
+ 2
+ ],
+ [
+ 963,
+ 2
+ ],
+ [
+ 964,
+ 2
+ ],
+ [
+ 965,
+ 2
+ ],
+ [
+ 966,
+ 2
+ ],
+ [
+ 967,
+ 2
+ ],
+ [
+ 968,
+ 2
+ ],
+ [
+ 969,
+ 2
+ ],
+ [
+ 970,
+ 2
+ ],
+ [
+ 971,
+ 2
+ ],
+ [
+ 972,
+ 2
+ ],
+ [
+ 973,
+ 2
+ ],
+ [
+ 974,
+ 2
+ ],
+ [
+ 975,
+ 2
+ ],
+ [
+ 976,
+ 2
+ ],
+ [
+ 977,
+ 2
+ ],
+ [
+ 978,
+ 2
+ ],
+ [
+ 979,
+ 2
+ ],
+ [
+ 980,
+ 2
+ ],
+ [
+ 981,
+ 2
+ ],
+ [
+ 982,
+ 2
+ ],
+ [
+ 983,
+ 2
+ ],
+ [
+ 984,
+ 2
+ ],
+ [
+ 985,
+ 2
+ ],
+ [
+ 986,
+ 2
+ ],
+ [
+ 987,
+ 2
+ ],
+ [
+ 988,
+ 2
+ ],
+ [
+ 989,
+ 2
+ ],
+ [
+ 990,
+ 2
+ ],
+ [
+ 991,
+ 2
+ ],
+ [
+ 992,
+ 2
+ ],
+ [
+ 993,
+ 2
+ ],
+ [
+ 994,
+ 2
+ ],
+ [
+ 995,
+ 2
+ ],
+ [
+ 996,
+ 2
+ ],
+ [
+ 997,
+ 2
+ ],
+ [
+ 998,
+ 2
+ ],
+ [
+ 999,
+ 2
+ ],
+ [
+ 1000,
+ 2
+ ],
+ [
+ 1001,
+ 2
+ ],
+ [
+ 1002,
+ 2
+ ],
+ [
+ 1003,
+ 2
+ ],
+ [
+ 1004,
+ 2
+ ],
+ [
+ 1005,
+ 2
+ ],
+ [
+ 1006,
+ 2
+ ],
+ [
+ 1007,
+ 2
+ ],
+ [
+ 1008,
+ 2
+ ],
+ [
+ 1009,
+ 2
+ ],
+ [
+ 1010,
+ 2
+ ],
+ [
+ 1011,
+ 2
+ ],
+ [
+ 1012,
+ 2
+ ],
+ [
+ 1013,
+ 2
+ ],
+ [
+ 1014,
+ 2
+ ],
+ [
+ 1015,
+ 2
+ ],
+ [
+ 1016,
+ 2
+ ],
+ [
+ 1017,
+ 2
+ ],
+ [
+ 1018,
+ 2
+ ],
+ [
+ 1019,
+ 2
+ ],
+ [
+ 1020,
+ 2
+ ],
+ [
+ 1021,
+ 2
+ ],
+ [
+ 1022,
+ 2
+ ],
+ [
+ 1023,
+ 2
+ ],
+ [
+ 1024,
+ 2
+ ],
+ [
+ 1025,
+ 2
+ ],
+ [
+ 1026,
+ 2
+ ],
+ [
+ 1027,
+ 2
+ ],
+ [
+ 1028,
+ 2
+ ],
+ [
+ 1029,
+ 2
+ ],
+ [
+ 1030,
+ 2
+ ],
+ [
+ 1031,
+ 2
+ ],
+ [
+ 1032,
+ 2
+ ],
+ [
+ 1033,
+ 2
+ ],
+ [
+ 1034,
+ 2
+ ],
+ [
+ 1035,
+ 2
+ ],
+ [
+ 1036,
+ 2
+ ],
+ [
+ 1037,
+ 2
+ ],
+ [
+ 1038,
+ 2
+ ],
+ [
+ 1039,
+ 2
+ ],
+ [
+ 1040,
+ 2
+ ],
+ [
+ 1041,
+ 2
+ ],
+ [
+ 1042,
+ 2
+ ],
+ [
+ 1043,
+ 2
+ ],
+ [
+ 1044,
+ 2
+ ],
+ [
+ 1045,
+ 2
+ ],
+ [
+ 1046,
+ 2
+ ],
+ [
+ 1047,
+ 2
+ ],
+ [
+ 1048,
+ 2
+ ],
+ [
+ 1049,
+ 2
+ ],
+ [
+ 1050,
+ 2
+ ],
+ [
+ 1051,
+ 2
+ ],
+ [
+ 1052,
+ 2
+ ],
+ [
+ 1053,
+ 2
+ ],
+ [
+ 1054,
+ 2
+ ],
+ [
+ 1055,
+ 2
+ ],
+ [
+ 1056,
+ 2
+ ],
+ [
+ 1057,
+ 2
+ ],
+ [
+ 1058,
+ 2
+ ],
+ [
+ 1059,
+ 2
+ ],
+ [
+ 1060,
+ 2
+ ],
+ [
+ 1061,
+ 2
+ ],
+ [
+ 1062,
+ 2
+ ],
+ [
+ 1063,
+ 2
+ ],
+ [
+ 1064,
+ 2
+ ],
+ [
+ 1065,
+ 2
+ ],
+ [
+ 1066,
+ 2
+ ],
+ [
+ 1067,
+ 2
+ ],
+ [
+ 1068,
+ 2
+ ],
+ [
+ 1069,
+ 2
+ ],
+ [
+ 1070,
+ 2
+ ],
+ [
+ 1071,
+ 2
+ ],
+ [
+ 1072,
+ 2
+ ],
+ [
+ 1073,
+ 2
+ ],
+ [
+ 1074,
+ 2
+ ],
+ [
+ 1075,
+ 2
+ ],
+ [
+ 1076,
+ 2
+ ],
+ [
+ 1077,
+ 2
+ ],
+ [
+ 1078,
+ 2
+ ],
+ [
+ 1079,
+ 2
+ ],
+ [
+ 1080,
+ 2
+ ],
+ [
+ 1081,
+ 2
+ ],
+ [
+ 1082,
+ 2
+ ],
+ [
+ 1083,
+ 2
+ ],
+ [
+ 1084,
+ 2
+ ],
+ [
+ 1085,
+ 2
+ ],
+ [
+ 1086,
+ 2
+ ],
+ [
+ 1087,
+ 2
+ ],
+ [
+ 1088,
+ 2
+ ],
+ [
+ 1089,
+ 2
+ ],
+ [
+ 1090,
+ 2
+ ],
+ [
+ 1091,
+ 2
+ ],
+ [
+ 1092,
+ 2
+ ],
+ [
+ 1093,
+ 2
+ ],
+ [
+ 1094,
+ 2
+ ],
+ [
+ 1095,
+ 2
+ ],
+ [
+ 1096,
+ 2
+ ],
+ [
+ 1097,
+ 2
+ ],
+ [
+ 1098,
+ 2
+ ],
+ [
+ 1099,
+ 2
+ ],
+ [
+ 1100,
+ 2
+ ],
+ [
+ 1101,
+ 2
+ ],
+ [
+ 1102,
+ 2
+ ],
+ [
+ 1103,
+ 2
+ ],
+ [
+ 1104,
+ 2
+ ],
+ [
+ 1105,
+ 2
+ ],
+ [
+ 1106,
+ 2
+ ],
+ [
+ 1107,
+ 2
+ ],
+ [
+ 1108,
+ 2
+ ],
+ [
+ 1109,
+ 2
+ ],
+ [
+ 1110,
+ 2
+ ],
+ [
+ 1111,
+ 2
+ ],
+ [
+ 1112,
+ 2
+ ],
+ [
+ 1113,
+ 2
+ ],
+ [
+ 1114,
+ 2
+ ],
+ [
+ 1115,
+ 2
+ ],
+ [
+ 1116,
+ 2
+ ],
+ [
+ 1117,
+ 2
+ ],
+ [
+ 1118,
+ 2
+ ],
+ [
+ 1119,
+ 2
+ ],
+ [
+ 1120,
+ 2
+ ],
+ [
+ 1121,
+ 2
+ ],
+ [
+ 1122,
+ 2
+ ],
+ [
+ 1123,
+ 2
+ ],
+ [
+ 1124,
+ 2
+ ],
+ [
+ 1125,
+ 2
+ ],
+ [
+ 1126,
+ 2
+ ],
+ [
+ 1127,
+ 2
+ ],
+ [
+ 1128,
+ 2
+ ],
+ [
+ 1129,
+ 2
+ ],
+ [
+ 1130,
+ 2
+ ],
+ [
+ 1131,
+ 2
+ ],
+ [
+ 1132,
+ 2
+ ],
+ [
+ 1133,
+ 2
+ ],
+ [
+ 1134,
+ 2
+ ],
+ [
+ 1135,
+ 2
+ ],
+ [
+ 1136,
+ 2
+ ],
+ [
+ 1137,
+ 2
+ ],
+ [
+ 1138,
+ 2
+ ],
+ [
+ 1139,
+ 2
+ ],
+ [
+ 1140,
+ 2
+ ],
+ [
+ 1141,
+ 2
+ ],
+ [
+ 1142,
+ 2
+ ],
+ [
+ 1143,
+ 2
+ ],
+ [
+ 1144,
+ 2
+ ],
+ [
+ 1145,
+ 2
+ ],
+ [
+ 1146,
+ 2
+ ],
+ [
+ 1147,
+ 2
+ ],
+ [
+ 1148,
+ 2
+ ],
+ [
+ 1149,
+ 2
+ ],
+ [
+ 1150,
+ 2
+ ],
+ [
+ 1151,
+ 2
+ ],
+ [
+ 1152,
+ 2
+ ],
+ [
+ 1153,
+ 2
+ ],
+ [
+ 1154,
+ 2
+ ],
+ [
+ 1155,
+ 2
+ ],
+ [
+ 1156,
+ 2
+ ],
+ [
+ 1157,
+ 2
+ ],
+ [
+ 1158,
+ 2
+ ],
+ [
+ 1159,
+ 2
+ ],
+ [
+ 1160,
+ 2
+ ],
+ [
+ 1161,
+ 2
+ ],
+ [
+ 1162,
+ 2
+ ],
+ [
+ 1163,
+ 2
+ ],
+ [
+ 1164,
+ 2
+ ],
+ [
+ 1165,
+ 2
+ ],
+ [
+ 1166,
+ 2
+ ],
+ [
+ 1167,
+ 2
+ ],
+ [
+ 1168,
+ 2
+ ],
+ [
+ 1169,
+ 2
+ ],
+ [
+ 1170,
+ 2
+ ],
+ [
+ 1171,
+ 2
+ ],
+ [
+ 1172,
+ 2
+ ],
+ [
+ 1173,
+ 2
+ ],
+ [
+ 1174,
+ 2
+ ],
+ [
+ 1175,
+ 2
+ ],
+ [
+ 1176,
+ 2
+ ],
+ [
+ 1177,
+ 2
+ ],
+ [
+ 1178,
+ 2
+ ],
+ [
+ 1179,
+ 2
+ ],
+ [
+ 1180,
+ 2
+ ],
+ [
+ 1181,
+ 2
+ ],
+ [
+ 1182,
+ 2
+ ],
+ [
+ 1183,
+ 2
+ ],
+ [
+ 1184,
+ 2
+ ],
+ [
+ 1185,
+ 2
+ ],
+ [
+ 1186,
+ 2
+ ],
+ [
+ 1187,
+ 2
+ ],
+ [
+ 1188,
+ 2
+ ],
+ [
+ 1189,
+ 2
+ ],
+ [
+ 1190,
+ 2
+ ],
+ [
+ 1191,
+ 2
+ ],
+ [
+ 1192,
+ 2
+ ],
+ [
+ 1193,
+ 2
+ ],
+ [
+ 1194,
+ 2
+ ],
+ [
+ 1195,
+ 2
+ ],
+ [
+ 1196,
+ 2
+ ],
+ [
+ 1197,
+ 2
+ ],
+ [
+ 1198,
+ 2
+ ],
+ [
+ 1199,
+ 2
+ ],
+ [
+ 1200,
+ 2
+ ],
+ [
+ 1201,
+ 2
+ ],
+ [
+ 1202,
+ 2
+ ],
+ [
+ 1203,
+ 2
+ ],
+ [
+ 1204,
+ 2
+ ],
+ [
+ 1205,
+ 2
+ ],
+ [
+ 1206,
+ 2
+ ],
+ [
+ 1207,
+ 2
+ ],
+ [
+ 1208,
+ 2
+ ],
+ [
+ 1209,
+ 2
+ ],
+ [
+ 1210,
+ 2
+ ],
+ [
+ 1211,
+ 2
+ ],
+ [
+ 1212,
+ 2
+ ],
+ [
+ 1213,
+ 2
+ ],
+ [
+ 1214,
+ 2
+ ],
+ [
+ 1215,
+ 2
+ ],
+ [
+ 1216,
+ 2
+ ],
+ [
+ 1217,
+ 2
+ ],
+ [
+ 1218,
+ 2
+ ],
+ [
+ 1219,
+ 2
+ ],
+ [
+ 1220,
+ 2
+ ],
+ [
+ 1221,
+ 2
+ ],
+ [
+ 1222,
+ 2
+ ],
+ [
+ 1223,
+ 2
+ ],
+ [
+ 1224,
+ 2
+ ],
+ [
+ 1225,
+ 2
+ ],
+ [
+ 1226,
+ 2
+ ],
+ [
+ 1227,
+ 2
+ ],
+ [
+ 1228,
+ 2
+ ],
+ [
+ 1229,
+ 2
+ ],
+ [
+ 1230,
+ 2
+ ],
+ [
+ 1231,
+ 2
+ ],
+ [
+ 1232,
+ 2
+ ],
+ [
+ 1233,
+ 2
+ ],
+ [
+ 1234,
+ 2
+ ],
+ [
+ 1235,
+ 2
+ ],
+ [
+ 1236,
+ 2
+ ],
+ [
+ 1237,
+ 2
+ ],
+ [
+ 1238,
+ 2
+ ],
+ [
+ 1239,
+ 2
+ ],
+ [
+ 1240,
+ 2
+ ],
+ [
+ 1241,
+ 2
+ ],
+ [
+ 1242,
+ 2
+ ],
+ [
+ 1243,
+ 2
+ ],
+ [
+ 1244,
+ 2
+ ],
+ [
+ 1245,
+ 2
+ ],
+ [
+ 1246,
+ 2
+ ],
+ [
+ 1247,
+ 2
+ ],
+ [
+ 1248,
+ 2
+ ],
+ [
+ 1249,
+ 2
+ ],
+ [
+ 1250,
+ 2
+ ],
+ [
+ 1251,
+ 2
+ ],
+ [
+ 1252,
+ 2
+ ],
+ [
+ 1253,
+ 2
+ ],
+ [
+ 1254,
+ 2
+ ],
+ [
+ 1255,
+ 2
+ ],
+ [
+ 1256,
+ 2
+ ],
+ [
+ 1257,
+ 2
+ ],
+ [
+ 1258,
+ 2
+ ],
+ [
+ 1259,
+ 2
+ ],
+ [
+ 1260,
+ 2
+ ],
+ [
+ 1261,
+ 2
+ ],
+ [
+ 1262,
+ 2
+ ],
+ [
+ 1263,
+ 2
+ ],
+ [
+ 1264,
+ 2
+ ],
+ [
+ 1265,
+ 2
+ ],
+ [
+ 1266,
+ 2
+ ],
+ [
+ 1267,
+ 2
+ ],
+ [
+ 1268,
+ 2
+ ],
+ [
+ 1269,
+ 2
+ ],
+ [
+ 1270,
+ 2
+ ],
+ [
+ 1271,
+ 2
+ ],
+ [
+ 1272,
+ 2
+ ],
+ [
+ 1273,
+ 2
+ ],
+ [
+ 1274,
+ 2
+ ],
+ [
+ 1275,
+ 2
+ ],
+ [
+ 1276,
+ 2
+ ],
+ [
+ 1277,
+ 2
+ ],
+ [
+ 1278,
+ 2
+ ],
+ [
+ 1279,
+ 2
+ ],
+ [
+ 1280,
+ 2
+ ],
+ [
+ 1281,
+ 2
+ ],
+ [
+ 1282,
+ 2
+ ],
+ [
+ 1283,
+ 2
+ ],
+ [
+ 1284,
+ 2
+ ],
+ [
+ 1285,
+ 2
+ ],
+ [
+ 1286,
+ 2
+ ],
+ [
+ 1287,
+ 2
+ ],
+ [
+ 1288,
+ 2
+ ],
+ [
+ 1289,
+ 2
+ ],
+ [
+ 1290,
+ 2
+ ],
+ [
+ 1291,
+ 2
+ ],
+ [
+ 1292,
+ 2
+ ],
+ [
+ 1293,
+ 2
+ ],
+ [
+ 1294,
+ 2
+ ],
+ [
+ 1295,
+ 2
+ ],
+ [
+ 1296,
+ 2
+ ],
+ [
+ 1297,
+ 2
+ ],
+ [
+ 1298,
+ 2
+ ],
+ [
+ 1299,
+ 2
+ ],
+ [
+ 1300,
+ 2
+ ],
+ [
+ 1301,
+ 2
+ ],
+ [
+ 1302,
+ 2
+ ],
+ [
+ 1303,
+ 2
+ ],
+ [
+ 1304,
+ 2
+ ],
+ [
+ 1305,
+ 2
+ ],
+ [
+ 1306,
+ 2
+ ],
+ [
+ 1307,
+ 2
+ ],
+ [
+ 1308,
+ 2
+ ],
+ [
+ 1309,
+ 2
+ ],
+ [
+ 1310,
+ 2
+ ],
+ [
+ 1311,
+ 2
+ ],
+ [
+ 1312,
+ 2
+ ],
+ [
+ 1313,
+ 2
+ ],
+ [
+ 1314,
+ 2
+ ],
+ [
+ 1315,
+ 2
+ ],
+ [
+ 1316,
+ 2
+ ],
+ [
+ 1317,
+ 2
+ ],
+ [
+ 1318,
+ 2
+ ],
+ [
+ 1319,
+ 2
+ ],
+ [
+ 1320,
+ 2
+ ],
+ [
+ 1321,
+ 2
+ ],
+ [
+ 1322,
+ 2
+ ],
+ [
+ 1323,
+ 2
+ ],
+ [
+ 1324,
+ 2
+ ],
+ [
+ 1325,
+ 2
+ ],
+ [
+ 1326,
+ 2
+ ],
+ [
+ 1327,
+ 2
+ ],
+ [
+ 1328,
+ 2
+ ],
+ [
+ 1329,
+ 2
+ ],
+ [
+ 1330,
+ 2
+ ],
+ [
+ 1331,
+ 2
+ ],
+ [
+ 1332,
+ 2
+ ],
+ [
+ 1333,
+ 2
+ ],
+ [
+ 1334,
+ 2
+ ],
+ [
+ 1335,
+ 2
+ ],
+ [
+ 1336,
+ 2
+ ],
+ [
+ 1337,
+ 2
+ ],
+ [
+ 1338,
+ 2
+ ],
+ [
+ 1339,
+ 2
+ ],
+ [
+ 1340,
+ 2
+ ],
+ [
+ 1341,
+ 2
+ ],
+ [
+ 1342,
+ 2
+ ],
+ [
+ 1343,
+ 2
+ ],
+ [
+ 1344,
+ 2
+ ],
+ [
+ 1345,
+ 2
+ ],
+ [
+ 1346,
+ 2
+ ],
+ [
+ 1347,
+ 2
+ ],
+ [
+ 1348,
+ 2
+ ],
+ [
+ 1349,
+ 2
+ ],
+ [
+ 1350,
+ 2
+ ],
+ [
+ 1351,
+ 2
+ ],
+ [
+ 1352,
+ 2
+ ],
+ [
+ 1353,
+ 2
+ ],
+ [
+ 1354,
+ 2
+ ],
+ [
+ 1355,
+ 2
+ ],
+ [
+ 1356,
+ 2
+ ],
+ [
+ 1357,
+ 2
+ ],
+ [
+ 1358,
+ 2
+ ],
+ [
+ 1359,
+ 2
+ ],
+ [
+ 1360,
+ 2
+ ],
+ [
+ 1361,
+ 2
+ ],
+ [
+ 1362,
+ 2
+ ],
+ [
+ 1363,
+ 2
+ ],
+ [
+ 1364,
+ 2
+ ],
+ [
+ 1365,
+ 2
+ ],
+ [
+ 1366,
+ 2
+ ],
+ [
+ 1367,
+ 2
+ ],
+ [
+ 1368,
+ 2
+ ],
+ [
+ 1369,
+ 2
+ ],
+ [
+ 1370,
+ 2
+ ],
+ [
+ 1371,
+ 2
+ ],
+ [
+ 1372,
+ 2
+ ],
+ [
+ 1373,
+ 2
+ ],
+ [
+ 1374,
+ 2
+ ],
+ [
+ 1375,
+ 2
+ ],
+ [
+ 1376,
+ 2
+ ],
+ [
+ 1377,
+ 2
+ ],
+ [
+ 1378,
+ 2
+ ],
+ [
+ 1379,
+ 2
+ ],
+ [
+ 1380,
+ 2
+ ],
+ [
+ 1381,
+ 2
+ ],
+ [
+ 1382,
+ 2
+ ],
+ [
+ 1383,
+ 2
+ ],
+ [
+ 1384,
+ 2
+ ],
+ [
+ 1385,
+ 2
+ ],
+ [
+ 1386,
+ 2
+ ],
+ [
+ 1387,
+ 2
+ ],
+ [
+ 1388,
+ 2
+ ],
+ [
+ 1389,
+ 2
+ ],
+ [
+ 1390,
+ 2
+ ],
+ [
+ 1391,
+ 2
+ ],
+ [
+ 1392,
+ 2
+ ],
+ [
+ 1393,
+ 2
+ ],
+ [
+ 1394,
+ 2
+ ],
+ [
+ 1395,
+ 2
+ ],
+ [
+ 1396,
+ 2
+ ],
+ [
+ 1397,
+ 2
+ ],
+ [
+ 1398,
+ 2
+ ],
+ [
+ 1399,
+ 2
+ ],
+ [
+ 1400,
+ 2
+ ],
+ [
+ 1401,
+ 2
+ ],
+ [
+ 1402,
+ 2
+ ],
+ [
+ 1403,
+ 2
+ ],
+ [
+ 1404,
+ 2
+ ],
+ [
+ 1405,
+ 2
+ ],
+ [
+ 1406,
+ 2
+ ],
+ [
+ 1407,
+ 2
+ ],
+ [
+ 1408,
+ 2
+ ],
+ [
+ 1409,
+ 2
+ ],
+ [
+ 1410,
+ 2
+ ],
+ [
+ 1411,
+ 2
+ ],
+ [
+ 1412,
+ 2
+ ],
+ [
+ 1413,
+ 2
+ ],
+ [
+ 1414,
+ 2
+ ],
+ [
+ 1415,
+ 2
+ ],
+ [
+ 1416,
+ 2
+ ],
+ [
+ 1417,
+ 2
+ ],
+ [
+ 1418,
+ 2
+ ],
+ [
+ 1419,
+ 2
+ ],
+ [
+ 1420,
+ 2
+ ],
+ [
+ 1421,
+ 2
+ ],
+ [
+ 1422,
+ 2
+ ],
+ [
+ 1423,
+ 2
+ ],
+ [
+ 1424,
+ 2
+ ],
+ [
+ 1425,
+ 2
+ ],
+ [
+ 1426,
+ 2
+ ],
+ [
+ 1427,
+ 2
+ ],
+ [
+ 1428,
+ 2
+ ],
+ [
+ 1429,
+ 2
+ ],
+ [
+ 1430,
+ 2
+ ],
+ [
+ 1431,
+ 2
+ ],
+ [
+ 1432,
+ 2
+ ],
+ [
+ 1433,
+ 2
+ ],
+ [
+ 1434,
+ 2
+ ],
+ [
+ 1435,
+ 2
+ ],
+ [
+ 1436,
+ 2
+ ],
+ [
+ 1437,
+ 2
+ ],
+ [
+ 1438,
+ 2
+ ],
+ [
+ 1439,
+ 2
+ ],
+ [
+ 1440,
+ 2
+ ],
+ [
+ 1441,
+ 2
+ ],
+ [
+ 1442,
+ 2
+ ],
+ [
+ 1443,
+ 2
+ ],
+ [
+ 1444,
+ 2
+ ],
+ [
+ 1445,
+ 2
+ ],
+ [
+ 1446,
+ 2
+ ],
+ [
+ 1447,
+ 2
+ ],
+ [
+ 1448,
+ 2
+ ],
+ [
+ 1449,
+ 2
+ ],
+ [
+ 1450,
+ 2
+ ],
+ [
+ 1451,
+ 2
+ ],
+ [
+ 1452,
+ 2
+ ],
+ [
+ 1453,
+ 2
+ ],
+ [
+ 1454,
+ 2
+ ],
+ [
+ 1455,
+ 2
+ ],
+ [
+ 1456,
+ 2
+ ],
+ [
+ 1457,
+ 2
+ ],
+ [
+ 1458,
+ 2
+ ],
+ [
+ 1459,
+ 2
+ ],
+ [
+ 1460,
+ 2
+ ],
+ [
+ 1461,
+ 2
+ ],
+ [
+ 1462,
+ 2
+ ],
+ [
+ 1463,
+ 2
+ ],
+ [
+ 1464,
+ 2
+ ],
+ [
+ 1465,
+ 2
+ ],
+ [
+ 1466,
+ 2
+ ],
+ [
+ 1467,
+ 2
+ ],
+ [
+ 1468,
+ 2
+ ],
+ [
+ 1469,
+ 2
+ ],
+ [
+ 1470,
+ 2
+ ],
+ [
+ 1471,
+ 2
+ ],
+ [
+ 1472,
+ 2
+ ],
+ [
+ 1473,
+ 2
+ ],
+ [
+ 1474,
+ 2
+ ],
+ [
+ 1475,
+ 2
+ ],
+ [
+ 1476,
+ 2
+ ],
+ [
+ 1477,
+ 2
+ ],
+ [
+ 1478,
+ 2
+ ],
+ [
+ 1479,
+ 2
+ ],
+ [
+ 1480,
+ 2
+ ],
+ [
+ 1481,
+ 2
+ ],
+ [
+ 1482,
+ 2
+ ],
+ [
+ 1483,
+ 2
+ ],
+ [
+ 1484,
+ 2
+ ],
+ [
+ 1485,
+ 2
+ ],
+ [
+ 1486,
+ 2
+ ],
+ [
+ 1487,
+ 2
+ ],
+ [
+ 1488,
+ 2
+ ],
+ [
+ 1489,
+ 2
+ ],
+ [
+ 1490,
+ 2
+ ],
+ [
+ 1491,
+ 2
+ ],
+ [
+ 1492,
+ 2
+ ],
+ [
+ 1493,
+ 2
+ ],
+ [
+ 1494,
+ 2
+ ],
+ [
+ 1495,
+ 2
+ ],
+ [
+ 1496,
+ 2
+ ],
+ [
+ 1497,
+ 2
+ ],
+ [
+ 1498,
+ 2
+ ],
+ [
+ 1499,
+ 2
+ ],
+ [
+ 1500,
+ 2
+ ],
+ [
+ 1501,
+ 2
+ ],
+ [
+ 1502,
+ 2
+ ],
+ [
+ 1503,
+ 2
+ ],
+ [
+ 1504,
+ 2
+ ],
+ [
+ 1505,
+ 2
+ ],
+ [
+ 1506,
+ 2
+ ],
+ [
+ 1507,
+ 2
+ ],
+ [
+ 1508,
+ 2
+ ],
+ [
+ 1509,
+ 2
+ ],
+ [
+ 1510,
+ 2
+ ],
+ [
+ 1511,
+ 2
+ ],
+ [
+ 1512,
+ 2
+ ],
+ [
+ 1513,
+ 2
+ ],
+ [
+ 1514,
+ 2
+ ],
+ [
+ 1515,
+ 2
+ ],
+ [
+ 1516,
+ 2
+ ],
+ [
+ 1517,
+ 2
+ ],
+ [
+ 1518,
+ 2
+ ],
+ [
+ 1519,
+ 2
+ ],
+ [
+ 1520,
+ 2
+ ],
+ [
+ 1521,
+ 2
+ ],
+ [
+ 1522,
+ 2
+ ],
+ [
+ 1523,
+ 2
+ ],
+ [
+ 1524,
+ 2
+ ],
+ [
+ 1525,
+ 2
+ ],
+ [
+ 1526,
+ 2
+ ],
+ [
+ 1527,
+ 2
+ ],
+ [
+ 1528,
+ 2
+ ],
+ [
+ 1529,
+ 2
+ ],
+ [
+ 1530,
+ 2
+ ],
+ [
+ 1531,
+ 2
+ ],
+ [
+ 1532,
+ 2
+ ],
+ [
+ 1533,
+ 2
+ ],
+ [
+ 1534,
+ 2
+ ],
+ [
+ 1535,
+ 2
+ ],
+ [
+ 1536,
+ 2
+ ],
+ [
+ 1537,
+ 2
+ ],
+ [
+ 1538,
+ 2
+ ],
+ [
+ 1539,
+ 2
+ ],
+ [
+ 1540,
+ 2
+ ],
+ [
+ 1541,
+ 2
+ ],
+ [
+ 1542,
+ 2
+ ],
+ [
+ 1543,
+ 2
+ ],
+ [
+ 1544,
+ 2
+ ],
+ [
+ 1545,
+ 2
+ ],
+ [
+ 1546,
+ 2
+ ],
+ [
+ 1547,
+ 2
+ ],
+ [
+ 1548,
+ 2
+ ],
+ [
+ 1549,
+ 2
+ ],
+ [
+ 1550,
+ 2
+ ],
+ [
+ 1551,
+ 2
+ ],
+ [
+ 1552,
+ 2
+ ],
+ [
+ 1553,
+ 2
+ ],
+ [
+ 1554,
+ 2
+ ],
+ [
+ 1555,
+ 2
+ ],
+ [
+ 1556,
+ 2
+ ],
+ [
+ 1557,
+ 2
+ ],
+ [
+ 1558,
+ 2
+ ],
+ [
+ 1559,
+ 2
+ ],
+ [
+ 1560,
+ 2
+ ],
+ [
+ 1561,
+ 2
+ ],
+ [
+ 1562,
+ 2
+ ],
+ [
+ 1563,
+ 2
+ ],
+ [
+ 1564,
+ 2
+ ],
+ [
+ 1565,
+ 2
+ ],
+ [
+ 1566,
+ 2
+ ],
+ [
+ 1567,
+ 2
+ ],
+ [
+ 1568,
+ 2
+ ],
+ [
+ 1569,
+ 2
+ ],
+ [
+ 1570,
+ 2
+ ],
+ [
+ 1571,
+ 2
+ ],
+ [
+ 1572,
+ 2
+ ],
+ [
+ 1573,
+ 2
+ ],
+ [
+ 1574,
+ 2
+ ],
+ [
+ 1575,
+ 2
+ ],
+ [
+ 1576,
+ 2
+ ],
+ [
+ 1577,
+ 2
+ ],
+ [
+ 1578,
+ 2
+ ],
+ [
+ 1579,
+ 2
+ ],
+ [
+ 1580,
+ 2
+ ],
+ [
+ 1581,
+ 2
+ ],
+ [
+ 1582,
+ 2
+ ],
+ [
+ 1583,
+ 2
+ ],
+ [
+ 1584,
+ 2
+ ],
+ [
+ 1585,
+ 2
+ ],
+ [
+ 1586,
+ 2
+ ],
+ [
+ 1587,
+ 2
+ ],
+ [
+ 1588,
+ 2
+ ],
+ [
+ 1589,
+ 2
+ ],
+ [
+ 1590,
+ 2
+ ],
+ [
+ 1591,
+ 2
+ ],
+ [
+ 1592,
+ 2
+ ],
+ [
+ 1593,
+ 2
+ ],
+ [
+ 1594,
+ 2
+ ],
+ [
+ 1595,
+ 2
+ ],
+ [
+ 1596,
+ 2
+ ],
+ [
+ 1597,
+ 2
+ ],
+ [
+ 1598,
+ 2
+ ],
+ [
+ 1599,
+ 2
+ ],
+ [
+ 1600,
+ 2
+ ],
+ [
+ 1601,
+ 2
+ ],
+ [
+ 1602,
+ 2
+ ],
+ [
+ 1603,
+ 2
+ ],
+ [
+ 1604,
+ 2
+ ],
+ [
+ 1605,
+ 2
+ ],
+ [
+ 1606,
+ 2
+ ],
+ [
+ 1607,
+ 2
+ ],
+ [
+ 1608,
+ 2
+ ],
+ [
+ 1609,
+ 2
+ ],
+ [
+ 1610,
+ 2
+ ],
+ [
+ 1611,
+ 2
+ ],
+ [
+ 1612,
+ 2
+ ],
+ [
+ 1613,
+ 2
+ ],
+ [
+ 1614,
+ 2
+ ],
+ [
+ 1615,
+ 2
+ ],
+ [
+ 1616,
+ 2
+ ],
+ [
+ 1617,
+ 2
+ ],
+ [
+ 1618,
+ 2
+ ],
+ [
+ 1619,
+ 2
+ ],
+ [
+ 1620,
+ 2
+ ],
+ [
+ 1621,
+ 2
+ ],
+ [
+ 1622,
+ 2
+ ],
+ [
+ 1623,
+ 2
+ ],
+ [
+ 1624,
+ 2
+ ],
+ [
+ 1625,
+ 2
+ ],
+ [
+ 1626,
+ 2
+ ],
+ [
+ 1627,
+ 2
+ ],
+ [
+ 1628,
+ 2
+ ],
+ [
+ 1629,
+ 2
+ ],
+ [
+ 1630,
+ 2
+ ],
+ [
+ 1631,
+ 2
+ ],
+ [
+ 1632,
+ 2
+ ],
+ [
+ 1633,
+ 2
+ ],
+ [
+ 1634,
+ 2
+ ],
+ [
+ 1635,
+ 2
+ ],
+ [
+ 1636,
+ 2
+ ],
+ [
+ 1637,
+ 2
+ ],
+ [
+ 1638,
+ 2
+ ],
+ [
+ 1639,
+ 2
+ ],
+ [
+ 1640,
+ 2
+ ],
+ [
+ 1641,
+ 2
+ ],
+ [
+ 1642,
+ 2
+ ],
+ [
+ 1643,
+ 2
+ ],
+ [
+ 1644,
+ 2
+ ],
+ [
+ 1645,
+ 2
+ ],
+ [
+ 1646,
+ 2
+ ],
+ [
+ 1647,
+ 2
+ ],
+ [
+ 1648,
+ 2
+ ],
+ [
+ 1649,
+ 2
+ ],
+ [
+ 1650,
+ 2
+ ],
+ [
+ 1651,
+ 2
+ ],
+ [
+ 1652,
+ 2
+ ],
+ [
+ 1653,
+ 2
+ ],
+ [
+ 1654,
+ 2
+ ],
+ [
+ 1655,
+ 2
+ ],
+ [
+ 1656,
+ 2
+ ],
+ [
+ 1657,
+ 2
+ ],
+ [
+ 1658,
+ 2
+ ],
+ [
+ 1659,
+ 2
+ ],
+ [
+ 1660,
+ 2
+ ],
+ [
+ 1661,
+ 2
+ ],
+ [
+ 1662,
+ 2
+ ],
+ [
+ 1663,
+ 2
+ ],
+ [
+ 1664,
+ 2
+ ],
+ [
+ 1665,
+ 2
+ ],
+ [
+ 1666,
+ 2
+ ],
+ [
+ 1667,
+ 2
+ ],
+ [
+ 1668,
+ 2
+ ],
+ [
+ 1669,
+ 2
+ ],
+ [
+ 1670,
+ 2
+ ],
+ [
+ 1671,
+ 2
+ ],
+ [
+ 1672,
+ 2
+ ],
+ [
+ 1673,
+ 2
+ ],
+ [
+ 1674,
+ 2
+ ],
+ [
+ 1675,
+ 2
+ ],
+ [
+ 1676,
+ 2
+ ],
+ [
+ 1677,
+ 2
+ ],
+ [
+ 1678,
+ 2
+ ],
+ [
+ 1679,
+ 2
+ ],
+ [
+ 1680,
+ 2
+ ],
+ [
+ 1681,
+ 2
+ ],
+ [
+ 1682,
+ 2
+ ],
+ [
+ 1683,
+ 2
+ ],
+ [
+ 1684,
+ 2
+ ],
+ [
+ 1685,
+ 2
+ ],
+ [
+ 1686,
+ 2
+ ],
+ [
+ 1687,
+ 2
+ ],
+ [
+ 1688,
+ 2
+ ],
+ [
+ 1689,
+ 2
+ ],
+ [
+ 1690,
+ 2
+ ],
+ [
+ 1691,
+ 2
+ ],
+ [
+ 1692,
+ 2
+ ],
+ [
+ 1693,
+ 2
+ ],
+ [
+ 1694,
+ 2
+ ],
+ [
+ 1695,
+ 2
+ ],
+ [
+ 1696,
+ 2
+ ],
+ [
+ 1697,
+ 2
+ ],
+ [
+ 1698,
+ 2
+ ],
+ [
+ 1699,
+ 2
+ ],
+ [
+ 1700,
+ 2
+ ],
+ [
+ 1701,
+ 2
+ ],
+ [
+ 1702,
+ 2
+ ],
+ [
+ 1703,
+ 2
+ ],
+ [
+ 1704,
+ 2
+ ],
+ [
+ 1705,
+ 2
+ ],
+ [
+ 1706,
+ 2
+ ],
+ [
+ 1707,
+ 2
+ ],
+ [
+ 1708,
+ 2
+ ],
+ [
+ 1709,
+ 2
+ ],
+ [
+ 1710,
+ 2
+ ],
+ [
+ 1711,
+ 2
+ ],
+ [
+ 1712,
+ 2
+ ],
+ [
+ 1713,
+ 2
+ ],
+ [
+ 1714,
+ 2
+ ],
+ [
+ 1715,
+ 2
+ ],
+ [
+ 1716,
+ 2
+ ],
+ [
+ 1717,
+ 2
+ ],
+ [
+ 1718,
+ 2
+ ],
+ [
+ 1719,
+ 2
+ ],
+ [
+ 1720,
+ 2
+ ],
+ [
+ 1721,
+ 2
+ ],
+ [
+ 1722,
+ 2
+ ],
+ [
+ 1723,
+ 2
+ ],
+ [
+ 1724,
+ 2
+ ],
+ [
+ 1725,
+ 2
+ ],
+ [
+ 1726,
+ 2
+ ],
+ [
+ 1727,
+ 2
+ ],
+ [
+ 1728,
+ 2
+ ],
+ [
+ 1729,
+ 2
+ ],
+ [
+ 1730,
+ 2
+ ],
+ [
+ 1731,
+ 2
+ ],
+ [
+ 1732,
+ 2
+ ],
+ [
+ 1733,
+ 2
+ ],
+ [
+ 1734,
+ 2
+ ],
+ [
+ 1735,
+ 2
+ ],
+ [
+ 1736,
+ 2
+ ],
+ [
+ 1737,
+ 2
+ ],
+ [
+ 1738,
+ 2
+ ],
+ [
+ 1739,
+ 2
+ ],
+ [
+ 1740,
+ 2
+ ],
+ [
+ 1741,
+ 2
+ ],
+ [
+ 1742,
+ 2
+ ],
+ [
+ 1743,
+ 2
+ ],
+ [
+ 1744,
+ 2
+ ],
+ [
+ 1745,
+ 2
+ ],
+ [
+ 1746,
+ 2
+ ],
+ [
+ 1747,
+ 2
+ ],
+ [
+ 1748,
+ 2
+ ],
+ [
+ 1749,
+ 2
+ ],
+ [
+ 1750,
+ 2
+ ],
+ [
+ 1751,
+ 2
+ ],
+ [
+ 1752,
+ 2
+ ],
+ [
+ 1753,
+ 2
+ ],
+ [
+ 1754,
+ 2
+ ],
+ [
+ 1755,
+ 2
+ ],
+ [
+ 1756,
+ 2
+ ],
+ [
+ 1757,
+ 2
+ ],
+ [
+ 1758,
+ 2
+ ],
+ [
+ 1759,
+ 2
+ ],
+ [
+ 1760,
+ 2
+ ],
+ [
+ 1761,
+ 2
+ ],
+ [
+ 1762,
+ 2
+ ],
+ [
+ 1763,
+ 2
+ ],
+ [
+ 1764,
+ 2
+ ],
+ [
+ 1765,
+ 2
+ ],
+ [
+ 1766,
+ 2
+ ],
+ [
+ 1767,
+ 2
+ ],
+ [
+ 1768,
+ 2
+ ],
+ [
+ 1769,
+ 2
+ ],
+ [
+ 1770,
+ 2
+ ],
+ [
+ 1771,
+ 2
+ ],
+ [
+ 1772,
+ 2
+ ],
+ [
+ 1773,
+ 2
+ ],
+ [
+ 1774,
+ 2
+ ],
+ [
+ 1775,
+ 2
+ ],
+ [
+ 1776,
+ 2
+ ],
+ [
+ 1777,
+ 2
+ ],
+ [
+ 1778,
+ 2
+ ],
+ [
+ 1779,
+ 2
+ ],
+ [
+ 1780,
+ 2
+ ],
+ [
+ 1781,
+ 2
+ ],
+ [
+ 1782,
+ 2
+ ],
+ [
+ 1783,
+ 2
+ ],
+ [
+ 1784,
+ 2
+ ],
+ [
+ 1785,
+ 2
+ ],
+ [
+ 1786,
+ 2
+ ],
+ [
+ 1787,
+ 2
+ ],
+ [
+ 1788,
+ 2
+ ],
+ [
+ 1789,
+ 2
+ ],
+ [
+ 1790,
+ 2
+ ],
+ [
+ 1791,
+ 2
+ ],
+ [
+ 1792,
+ 2
+ ],
+ [
+ 1793,
+ 2
+ ],
+ [
+ 1794,
+ 2
+ ],
+ [
+ 1795,
+ 2
+ ],
+ [
+ 1796,
+ 2
+ ],
+ [
+ 1797,
+ 2
+ ],
+ [
+ 1798,
+ 2
+ ],
+ [
+ 1799,
+ 2
+ ],
+ [
+ 1800,
+ 2
+ ],
+ [
+ 1801,
+ 2
+ ],
+ [
+ 1802,
+ 2
+ ],
+ [
+ 1803,
+ 2
+ ],
+ [
+ 1804,
+ 2
+ ],
+ [
+ 1805,
+ 2
+ ],
+ [
+ 1806,
+ 2
+ ],
+ [
+ 1807,
+ 2
+ ],
+ [
+ 1808,
+ 2
+ ],
+ [
+ 1809,
+ 2
+ ],
+ [
+ 1810,
+ 2
+ ],
+ [
+ 1811,
+ 2
+ ],
+ [
+ 1812,
+ 2
+ ],
+ [
+ 1813,
+ 2
+ ],
+ [
+ 1814,
+ 2
+ ],
+ [
+ 1815,
+ 2
+ ],
+ [
+ 1816,
+ 2
+ ],
+ [
+ 1817,
+ 2
+ ],
+ [
+ 1818,
+ 2
+ ],
+ [
+ 1819,
+ 2
+ ],
+ [
+ 1820,
+ 2
+ ],
+ [
+ 1821,
+ 2
+ ],
+ [
+ 1822,
+ 2
+ ],
+ [
+ 1823,
+ 2
+ ],
+ [
+ 1824,
+ 2
+ ],
+ [
+ 1825,
+ 2
+ ],
+ [
+ 1826,
+ 2
+ ],
+ [
+ 1827,
+ 2
+ ],
+ [
+ 1828,
+ 2
+ ],
+ [
+ 1829,
+ 2
+ ],
+ [
+ 1830,
+ 2
+ ],
+ [
+ 1831,
+ 2
+ ],
+ [
+ 1832,
+ 2
+ ],
+ [
+ 1833,
+ 2
+ ],
+ [
+ 1834,
+ 2
+ ],
+ [
+ 1835,
+ 2
+ ],
+ [
+ 1836,
+ 2
+ ],
+ [
+ 1837,
+ 2
+ ],
+ [
+ 1838,
+ 2
+ ],
+ [
+ 1839,
+ 2
+ ],
+ [
+ 1840,
+ 2
+ ],
+ [
+ 1841,
+ 2
+ ],
+ [
+ 1842,
+ 2
+ ],
+ [
+ 1843,
+ 2
+ ],
+ [
+ 1844,
+ 2
+ ],
+ [
+ 1845,
+ 2
+ ],
+ [
+ 1846,
+ 2
+ ],
+ [
+ 1847,
+ 2
+ ],
+ [
+ 1848,
+ 2
+ ],
+ [
+ 1849,
+ 2
+ ],
+ [
+ 1850,
+ 2
+ ],
+ [
+ 1851,
+ 2
+ ],
+ [
+ 1852,
+ 2
+ ],
+ [
+ 1853,
+ 2
+ ],
+ [
+ 1854,
+ 2
+ ],
+ [
+ 1855,
+ 2
+ ],
+ [
+ 1856,
+ 2
+ ],
+ [
+ 1857,
+ 2
+ ],
+ [
+ 1858,
+ 2
+ ],
+ [
+ 1859,
+ 2
+ ],
+ [
+ 1860,
+ 2
+ ],
+ [
+ 1861,
+ 2
+ ],
+ [
+ 1862,
+ 2
+ ],
+ [
+ 1863,
+ 2
+ ],
+ [
+ 1864,
+ 2
+ ],
+ [
+ 1865,
+ 2
+ ],
+ [
+ 1866,
+ 2
+ ],
+ [
+ 1867,
+ 2
+ ],
+ [
+ 1868,
+ 2
+ ],
+ [
+ 1869,
+ 2
+ ],
+ [
+ 1870,
+ 2
+ ],
+ [
+ 1871,
+ 2
+ ],
+ [
+ 1872,
+ 2
+ ],
+ [
+ 1873,
+ 2
+ ],
+ [
+ 1874,
+ 2
+ ],
+ [
+ 1875,
+ 2
+ ],
+ [
+ 1876,
+ 2
+ ],
+ [
+ 1877,
+ 2
+ ],
+ [
+ 1878,
+ 2
+ ],
+ [
+ 1879,
+ 2
+ ],
+ [
+ 1880,
+ 2
+ ],
+ [
+ 1881,
+ 2
+ ],
+ [
+ 1882,
+ 2
+ ],
+ [
+ 1883,
+ 2
+ ],
+ [
+ 1884,
+ 2
+ ],
+ [
+ 1885,
+ 2
+ ],
+ [
+ 1886,
+ 2
+ ],
+ [
+ 1887,
+ 2
+ ],
+ [
+ 1888,
+ 2
+ ],
+ [
+ 1889,
+ 2
+ ],
+ [
+ 1890,
+ 2
+ ],
+ [
+ 1891,
+ 2
+ ],
+ [
+ 1892,
+ 2
+ ],
+ [
+ 1893,
+ 2
+ ],
+ [
+ 1894,
+ 2
+ ],
+ [
+ 1895,
+ 2
+ ],
+ [
+ 1896,
+ 2
+ ],
+ [
+ 1897,
+ 2
+ ],
+ [
+ 1898,
+ 2
+ ],
+ [
+ 1899,
+ 2
+ ],
+ [
+ 1900,
+ 2
+ ],
+ [
+ 1901,
+ 2
+ ],
+ [
+ 1902,
+ 2
+ ],
+ [
+ 1903,
+ 2
+ ],
+ [
+ 1904,
+ 2
+ ],
+ [
+ 1905,
+ 2
+ ],
+ [
+ 1906,
+ 2
+ ],
+ [
+ 1907,
+ 2
+ ],
+ [
+ 1908,
+ 2
+ ],
+ [
+ 1909,
+ 2
+ ],
+ [
+ 1910,
+ 2
+ ],
+ [
+ 1911,
+ 2
+ ],
+ [
+ 1912,
+ 2
+ ],
+ [
+ 1913,
+ 2
+ ],
+ [
+ 1914,
+ 2
+ ],
+ [
+ 1915,
+ 2
+ ],
+ [
+ 1916,
+ 2
+ ],
+ [
+ 1917,
+ 2
+ ],
+ [
+ 1918,
+ 2
+ ],
+ [
+ 1919,
+ 2
+ ],
+ [
+ 1920,
+ 2
+ ],
+ [
+ 1921,
+ 2
+ ],
+ [
+ 1922,
+ 2
+ ],
+ [
+ 1923,
+ 2
+ ],
+ [
+ 1924,
+ 2
+ ],
+ [
+ 1925,
+ 2
+ ],
+ [
+ 1926,
+ 2
+ ],
+ [
+ 1927,
+ 2
+ ],
+ [
+ 1928,
+ 2
+ ],
+ [
+ 1929,
+ 2
+ ],
+ [
+ 1930,
+ 2
+ ],
+ [
+ 1931,
+ 2
+ ],
+ [
+ 1932,
+ 2
+ ],
+ [
+ 1933,
+ 2
+ ],
+ [
+ 1934,
+ 2
+ ],
+ [
+ 1935,
+ 2
+ ],
+ [
+ 1936,
+ 2
+ ],
+ [
+ 1937,
+ 2
+ ],
+ [
+ 1938,
+ 2
+ ],
+ [
+ 1939,
+ 2
+ ],
+ [
+ 1940,
+ 2
+ ],
+ [
+ 1941,
+ 2
+ ],
+ [
+ 1942,
+ 2
+ ],
+ [
+ 1943,
+ 2
+ ],
+ [
+ 1944,
+ 2
+ ],
+ [
+ 1945,
+ 2
+ ],
+ [
+ 1946,
+ 2
+ ],
+ [
+ 1947,
+ 2
+ ],
+ [
+ 1948,
+ 2
+ ],
+ [
+ 1949,
+ 2
+ ],
+ [
+ 1950,
+ 2
+ ],
+ [
+ 1951,
+ 2
+ ],
+ [
+ 1952,
+ 2
+ ],
+ [
+ 1953,
+ 2
+ ],
+ [
+ 1954,
+ 2
+ ],
+ [
+ 1955,
+ 2
+ ],
+ [
+ 1956,
+ 2
+ ],
+ [
+ 1957,
+ 2
+ ],
+ [
+ 1958,
+ 2
+ ],
+ [
+ 1959,
+ 2
+ ],
+ [
+ 1960,
+ 2
+ ],
+ [
+ 1961,
+ 2
+ ],
+ [
+ 1962,
+ 2
+ ],
+ [
+ 1963,
+ 2
+ ],
+ [
+ 1964,
+ 2
+ ],
+ [
+ 1965,
+ 2
+ ],
+ [
+ 1966,
+ 2
+ ],
+ [
+ 1967,
+ 2
+ ],
+ [
+ 1968,
+ 2
+ ],
+ [
+ 1969,
+ 2
+ ],
+ [
+ 1970,
+ 2
+ ],
+ [
+ 1971,
+ 2
+ ],
+ [
+ 1972,
+ 2
+ ],
+ [
+ 1973,
+ 2
+ ],
+ [
+ 1974,
+ 2
+ ],
+ [
+ 1975,
+ 2
+ ],
+ [
+ 1976,
+ 2
+ ],
+ [
+ 1977,
+ 2
+ ],
+ [
+ 1978,
+ 2
+ ],
+ [
+ 1979,
+ 2
+ ],
+ [
+ 1980,
+ 2
+ ],
+ [
+ 1981,
+ 2
+ ],
+ [
+ 1982,
+ 2
+ ],
+ [
+ 1983,
+ 2
+ ],
+ [
+ 1984,
+ 2
+ ],
+ [
+ 1985,
+ 2
+ ],
+ [
+ 1986,
+ 2
+ ],
+ [
+ 1987,
+ 2
+ ],
+ [
+ 1988,
+ 2
+ ],
+ [
+ 1989,
+ 2
+ ],
+ [
+ 1990,
+ 2
+ ],
+ [
+ 1991,
+ 2
+ ],
+ [
+ 1992,
+ 2
+ ],
+ [
+ 1993,
+ 2
+ ],
+ [
+ 1994,
+ 2
+ ],
+ [
+ 1995,
+ 2
+ ],
+ [
+ 1996,
+ 2
+ ],
+ [
+ 1997,
+ 2
+ ],
+ [
+ 1998,
+ 2
+ ],
+ [
+ 1999,
+ 2
+ ],
+ [
+ 2000,
+ 2
+ ],
+ [
+ 2001,
+ 2
+ ],
+ [
+ 2002,
+ 2
+ ],
+ [
+ 2003,
+ 2
+ ],
+ [
+ 2004,
+ 2
+ ],
+ [
+ 2005,
+ 2
+ ],
+ [
+ 2006,
+ 2
+ ],
+ [
+ 2007,
+ 2
+ ],
+ [
+ 2008,
+ 2
+ ],
+ [
+ 2009,
+ 2
+ ],
+ [
+ 2010,
+ 2
+ ],
+ [
+ 2011,
+ 2
+ ],
+ [
+ 2012,
+ 2
+ ],
+ [
+ 2013,
+ 2
+ ],
+ [
+ 2014,
+ 2
+ ],
+ [
+ 2015,
+ 2
+ ],
+ [
+ 2016,
+ 2
+ ],
+ [
+ 2017,
+ 2
+ ],
+ [
+ 2018,
+ 2
+ ],
+ [
+ 2019,
+ 2
+ ],
+ [
+ 2020,
+ 2
+ ],
+ [
+ 2021,
+ 2
+ ],
+ [
+ 2022,
+ 2
+ ],
+ [
+ 2023,
+ 2
+ ],
+ [
+ 2024,
+ 2
+ ],
+ [
+ 2025,
+ 2
+ ],
+ [
+ 2026,
+ 2
+ ],
+ [
+ 2027,
+ 2
+ ],
+ [
+ 2028,
+ 2
+ ],
+ [
+ 2029,
+ 2
+ ],
+ [
+ 2030,
+ 2
+ ],
+ [
+ 2031,
+ 2
+ ],
+ [
+ 2032,
+ 2
+ ],
+ [
+ 2033,
+ 2
+ ],
+ [
+ 2034,
+ 2
+ ],
+ [
+ 2035,
+ 2
+ ],
+ [
+ 2036,
+ 2
+ ],
+ [
+ 2037,
+ 2
+ ],
+ [
+ 2038,
+ 2
+ ],
+ [
+ 2039,
+ 2
+ ],
+ [
+ 2040,
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the billing address for the order with entity ID 1.",
+ "sql": "SELECT billing_address FROM sales_creditmemo_grid WHERE entity_id = 1;",
+ "answer": [
+ "6146 Honey Bluff Parkway, Calder, Michigan, 49628-7978"
+ ],
+ "sql_execute_result": [
+ [
+ "6146 Honey Bluff Parkway,Calder,Michigan,49628-7978"
+ ]
+ ]
+ },
+ {
+ "question": "What is the full name and city of the customer with address entity ID 26?",
+ "sql": "SELECT CONCAT(firstname, ' ', lastname) AS full_name, city FROM customer_address_entity WHERE entity_id = 26;",
+ "answer": [
+ "Jennifer White",
+ "Los Angeles"
+ ],
+ "sql_execute_result": [
+ [
+ "Jennifer White",
+ "Los Angeles"
+ ]
+ ]
+ },
+ {
+ "question": "How many units are in stock for the product with SKU 'WB03-XS-Green'?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = (SELECT entity_id FROM catalog_product_entity WHERE sku = 'WB03-XS-Green');",
+ "answer": [
+ "100"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the sequence value for the latest shipment in store with ID 1.",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_shipment_1;",
+ "answer": [
+ "3"
+ ],
+ "sql_execute_result": [
+ [
+ 3
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU for the product with entity ID 239?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 239;",
+ "answer": [
+ "MH13-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "MH13-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the country ID for the address where the customer first name is 'Natalie' and last name is 'Kim'.",
+ "sql": "SELECT country_id FROM customer_address_entity WHERE firstname = 'Natalie' AND lastname = 'Kim';",
+ "answer": [
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "List all sequence tables for creditmemo entities.",
+ "sql": "SELECT sequence_table FROM sales_sequence_meta WHERE entity_type = 'creditmemo';",
+ "answer": [
+ "sequence_creditmemo_0",
+ "sequence_creditmemo_1"
+ ],
+ "sql_execute_result": [
+ [
+ "sequence_creditmemo_0"
+ ],
+ [
+ "sequence_creditmemo_1"
+ ]
+ ]
+ },
+ {
+ "question": "What is the attribute set ID for the product with SKU 'MT07'?",
+ "sql": "SELECT attribute_set_id FROM catalog_product_entity WHERE sku = 'MT07';",
+ "answer": [
+ "9"
+ ],
+ "sql_execute_result": [
+ [
+ 9
+ ]
+ ]
+ },
+ {
+ "question": "Find the telephone number for the customer residing in Miami.",
+ "sql": "SELECT telephone FROM customer_address_entity WHERE city = 'Miami';",
+ "answer": [
+ "4123671901",
+ "3055551212",
+ "3055555555"
+ ],
+ "sql_execute_result": [
+ [
+ "4123671901"
+ ],
+ [
+ "3055551212"
+ ],
+ [
+ "3055555555"
+ ],
+ [
+ "3055551212"
+ ],
+ [
+ "3055551212"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity available for the product with ID 1870?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1870;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the store ID associated with the sequence table 'sequence_shipment_1'.",
+ "sql": "SELECT store_id FROM sales_sequence_meta WHERE sequence_table = 'sequence_shipment_1';",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity ID 442?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 442;",
+ "answer": [
+ "MS04-L-Red"
+ ],
+ "sql_execute_result": [
+ [
+ "MS04-L-Red"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with ID 1357?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 1357;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total amount ordered for the order with entity ID 126?",
+ "sql": "SELECT amount_ordered FROM sales_order_payment WHERE parent_id = 126;",
+ "answer": [
+ "207.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "207.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the grand total for the invoice with entity ID 2?",
+ "sql": "SELECT grand_total FROM sales_invoice WHERE entity_id = 2;",
+ "answer": [
+ "39.6400"
+ ],
+ "sql_execute_result": [
+ [
+ "39.6400"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status label for the status code 'processing'?",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'processing';",
+ "answer": [
+ "Processing"
+ ],
+ "sql_execute_result": [
+ [
+ "Processing"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name and email of the customer with entity ID 70?",
+ "sql": "SELECT firstname, lastname, email FROM customer_entity WHERE entity_id = 70;",
+ "answer": [
+ "Emma Lopez",
+ "emma.lopez@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "Emma",
+ "Lopez",
+ "emma.lopez@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Is the product with entity ID 1357 currently in stock?",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1357;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the store with ID 1?",
+ "sql": "SELECT name FROM store WHERE store_id = 1;",
+ "answer": [
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Default Store View"
+ ]
+ ]
+ },
+ {
+ "question": "Find the category name with entity ID 4.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 4 AND attribute_id = 45;",
+ "answer": [
+ "Bags"
+ ],
+ "sql_execute_result": [
+ [
+ "Bags"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product associated with sales invoice item ID 2?",
+ "sql": "SELECT sku FROM sales_invoice_item WHERE entity_id = 2;",
+ "answer": [
+ "WS08-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "WS08-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Check if product with ID 1748 is in stock.",
+ "sql": "SELECT is_in_stock FROM cataloginventory_stock_item WHERE product_id = 1748;",
+ "answer": [
+ "1"
+ ],
+ "sql_execute_result": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "question": "What is the root category ID for the store group named 'Main Website Store'?",
+ "sql": "SELECT root_category_id FROM store_group WHERE name = 'Main Website Store';",
+ "answer": [
+ "2"
+ ],
+ "sql_execute_result": [
+ [
+ 2
+ ]
+ ]
+ },
+ {
+ "question": "Find the total quantity in stock for product ID 404.",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 404;",
+ "answer": [
+ "100.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "100.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the price including tax for the invoice item associated with order item ID 1?",
+ "sql": "SELECT price_incl_tax FROM sales_invoice_item WHERE order_item_id = 1;",
+ "answer": [
+ "31.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "31.3900"
+ ]
+ ]
+ },
+ {
+ "question": "List the store codes for stores that are active.",
+ "sql": "SELECT code FROM store WHERE is_active = 1;",
+ "answer": [
+ "admin",
+ "default"
+ ],
+ "sql_execute_result": [
+ [
+ "admin"
+ ],
+ [
+ "default"
+ ]
+ ]
+ },
+ {
+ "question": "Find the tax amount for the invoice item with SKU 'WS03-XS-Red'.",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "What is the store ID for the store named 'Admin'?",
+ "sql": "SELECT store_id FROM store WHERE name = 'Admin';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for customer with ID 13?",
+ "sql": "SELECT email FROM customer_grid_flat WHERE entity_id = 13;",
+ "answer": [
+ "matt.baker@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "matt.baker@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all orders for customer with email 'janesmith456@yahoo.com'.",
+ "sql": "SELECT increment_id, grand_total, created_at FROM sales_order_grid WHERE customer_email = 'janesmith456@yahoo.com';",
+ "answer": [
+ "Order ID: 000000004, Total: 106.0000, Date: 2023-02-03 23:08:03",
+ "Order ID: 000000070, Total: 168.8000, Date: 2022-07-01 15:03:36",
+ "Order ID: 000000091, Total: 153.0000, Date: 2022-09-29 22:04:05",
+ "Order ID: 000000099, Total: 181.0000, Date: 2022-02-14 22:50:03",
+ "Order ID: 000000163, Total: 87.0000, Date: 2022-10-01 14:47:10",
+ "Order ID: 000000186, Total: 37.0000, Date: 2022-03-03 16:32:37",
+ "Order ID: 000000199, Total: 47.0000, Date: 2022-09-22 07:10:53",
+ "Order ID: 000000226, Total: 54.0000, Date: 2022-10-04 02:28:47",
+ "Order ID: 000000247, Total: 60.0000, Date: 2022-01-14 20:23:24",
+ "Order ID: 000000274, Total: 158.2500, Date: 2022-07-13 10:45:46"
+ ],
+ "sql_execute_result": [
+ [
+ "000000004",
+ "106.0000",
+ "2023-02-03 23:08:03"
+ ],
+ [
+ "000000070",
+ "168.8000",
+ "2022-07-01 15:03:36"
+ ],
+ [
+ "000000091",
+ "153.0000",
+ "2022-09-29 22:04:05"
+ ],
+ [
+ "000000099",
+ "181.0000",
+ "2022-02-14 22:50:03"
+ ],
+ [
+ "000000163",
+ "87.0000",
+ "2022-10-01 14:47:10"
+ ],
+ [
+ "000000186",
+ "37.0000",
+ "2022-03-03 16:32:37"
+ ],
+ [
+ "000000199",
+ "47.0000",
+ "2022-09-22 07:10:53"
+ ],
+ [
+ "000000226",
+ "54.0000",
+ "2022-10-04 02:28:47"
+ ],
+ [
+ "000000247",
+ "60.0000",
+ "2022-01-14 20:23:24"
+ ],
+ [
+ "000000274",
+ "158.2500",
+ "2022-07-13 10:45:46"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity of the item with SKU 'WS03-XS-Red' on invoice?",
+ "sql": "SELECT SUM(qty) FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "1.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "1.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Get the label for status 'pending_paypal'.",
+ "sql": "SELECT label FROM sales_order_status WHERE status = 'pending_paypal';",
+ "answer": [
+ "Pending PayPal"
+ ],
+ "sql_execute_result": [
+ [
+ "Pending PayPal"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the product with SKU 'WS08-XS-Blue'?",
+ "sql": "SELECT name FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for order with increment ID '000000179'.",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000179';",
+ "answer": [
+ "789 W Madison St,Chicago,Illinois,60606"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Madison St,Chicago,Illinois,60606"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with ID 256 in locale 'en_US'?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 256 AND locale = 'en_US';",
+ "answer": [
+ "Haute-Savoie"
+ ],
+ "sql_execute_result": [
+ [
+ "Haute-Savoie"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name for order with increment ID '000000025'.",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE increment_id = '000000025';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders with status 'complete' were found?",
+ "sql": "SELECT increment_id, grand_total, created_at FROM sales_order_grid WHERE status = 'complete';",
+ "answer": [
+ "153"
+ ],
+ "sql_execute_result": [
+ [
+ "000000004",
+ "106.0000",
+ "2023-02-03 23:08:03"
+ ],
+ [
+ "000000009",
+ "159.4000",
+ "2023-05-07 22:41:05"
+ ],
+ [
+ "000000011",
+ "143.8000",
+ "2022-03-09 23:53:33"
+ ],
+ [
+ "000000013",
+ "171.6000",
+ "2022-02-06 13:35:51"
+ ],
+ [
+ "000000016",
+ "215.0000",
+ "2022-03-03 02:07:09"
+ ],
+ [
+ "000000017",
+ "112.0000",
+ "2022-10-27 01:11:16"
+ ],
+ [
+ "000000020",
+ "203.0400",
+ "2022-12-11 19:37:11"
+ ],
+ [
+ "000000021",
+ "210.0000",
+ "2022-09-23 20:45:57"
+ ],
+ [
+ "000000022",
+ "229.8000",
+ "2022-03-22 04:29:13"
+ ],
+ [
+ "000000023",
+ "65.0000",
+ "2022-06-07 21:19:20"
+ ],
+ [
+ "000000024",
+ "116.0000",
+ "2022-08-17 09:49:51"
+ ],
+ [
+ "000000027",
+ "43.4000",
+ "2023-01-24 15:57:01"
+ ],
+ [
+ "000000028",
+ "226.6000",
+ "2023-01-12 11:53:26"
+ ],
+ [
+ "000000031",
+ "123.8000",
+ "2022-10-22 11:37:01"
+ ],
+ [
+ "000000032",
+ "196.2000",
+ "2023-04-06 03:57:51"
+ ],
+ [
+ "000000033",
+ "120.2000",
+ "2022-02-04 19:53:04"
+ ],
+ [
+ "000000034",
+ "192.7600",
+ "2022-03-13 09:49:00"
+ ],
+ [
+ "000000035",
+ "177.0000",
+ "2022-05-13 01:39:10"
+ ],
+ [
+ "000000036",
+ "162.0000",
+ "2022-03-12 12:42:00"
+ ],
+ [
+ "000000037",
+ "127.0000",
+ "2022-02-06 21:24:41"
+ ],
+ [
+ "000000043",
+ "90.0000",
+ "2022-06-14 07:52:28"
+ ],
+ [
+ "000000045",
+ "183.2000",
+ "2022-02-19 21:32:34"
+ ],
+ [
+ "000000047",
+ "38.6000",
+ "2022-06-05 07:26:09"
+ ],
+ [
+ "000000048",
+ "176.6000",
+ "2022-01-31 09:08:13"
+ ],
+ [
+ "000000050",
+ "268.0000",
+ "2022-12-06 17:10:59"
+ ],
+ [
+ "000000051",
+ "121.0000",
+ "2023-01-23 10:47:14"
+ ],
+ [
+ "000000053",
+ "127.0000",
+ "2022-08-15 09:44:50"
+ ],
+ [
+ "000000054",
+ "138.6000",
+ "2023-04-17 15:06:29"
+ ],
+ [
+ "000000055",
+ "34.0000",
+ "2022-02-10 22:52:43"
+ ],
+ [
+ "000000057",
+ "180.1600",
+ "2022-04-21 13:15:05"
+ ],
+ [
+ "000000061",
+ "100.8000",
+ "2022-06-19 05:32:22"
+ ],
+ [
+ "000000062",
+ "196.2000",
+ "2023-01-02 07:44:18"
+ ],
+ [
+ "000000064",
+ "187.4000",
+ "2022-12-18 22:02:25"
+ ],
+ [
+ "000000069",
+ "155.0000",
+ "2022-07-09 18:04:57"
+ ],
+ [
+ "000000070",
+ "168.8000",
+ "2022-07-01 15:03:36"
+ ],
+ [
+ "000000071",
+ "59.0000",
+ "2022-04-07 02:08:46"
+ ],
+ [
+ "000000073",
+ "188.0000",
+ "2022-05-16 09:14:20"
+ ],
+ [
+ "000000075",
+ "205.0000",
+ "2022-09-02 10:31:31"
+ ],
+ [
+ "000000078",
+ "133.0000",
+ "2022-05-20 13:27:33"
+ ],
+ [
+ "000000079",
+ "34.0000",
+ "2022-08-17 13:27:44"
+ ],
+ [
+ "000000082",
+ "96.4000",
+ "2022-01-17 16:48:24"
+ ],
+ [
+ "000000083",
+ "28.0000",
+ "2022-02-20 06:00:27"
+ ],
+ [
+ "000000084",
+ "206.1200",
+ "2022-07-13 00:52:54"
+ ],
+ [
+ "000000087",
+ "29.0000",
+ "2023-02-01 09:14:36"
+ ],
+ [
+ "000000089",
+ "118.0000",
+ "2023-02-26 00:35:11"
+ ],
+ [
+ "000000090",
+ "202.0000",
+ "2022-05-02 18:59:47"
+ ],
+ [
+ "000000091",
+ "153.0000",
+ "2022-09-29 22:04:05"
+ ],
+ [
+ "000000092",
+ "97.0000",
+ "2022-08-20 11:30:12"
+ ],
+ [
+ "000000093",
+ "89.2000",
+ "2022-09-02 13:20:58"
+ ],
+ [
+ "000000096",
+ "209.4000",
+ "2023-01-16 08:54:14"
+ ],
+ [
+ "000000097",
+ "204.0400",
+ "2023-01-13 18:22:13"
+ ],
+ [
+ "000000099",
+ "181.0000",
+ "2022-02-14 22:50:03"
+ ],
+ [
+ "000000100",
+ "209.6000",
+ "2022-05-29 14:39:28"
+ ],
+ [
+ "000000102",
+ "56.0000",
+ "2022-03-28 12:38:16"
+ ],
+ [
+ "000000104",
+ "130.0000",
+ "2022-03-17 12:35:24"
+ ],
+ [
+ "000000105",
+ "29.0000",
+ "2023-02-07 06:07:31"
+ ],
+ [
+ "000000112",
+ "153.0000",
+ "2022-04-13 15:27:30"
+ ],
+ [
+ "000000113",
+ "88.4000",
+ "2023-05-05 04:28:44"
+ ],
+ [
+ "000000114",
+ "65.0000",
+ "2022-12-06 20:59:26"
+ ],
+ [
+ "000000115",
+ "180.4000",
+ "2022-03-17 14:26:26"
+ ],
+ [
+ "000000116",
+ "148.4000",
+ "2023-03-21 01:21:02"
+ ],
+ [
+ "000000119",
+ "239.2400",
+ "2022-02-08 05:14:03"
+ ],
+ [
+ "000000121",
+ "75.5000",
+ "2022-01-17 20:28:51"
+ ],
+ [
+ "000000127",
+ "37.0000",
+ "2023-03-31 23:31:01"
+ ],
+ [
+ "000000128",
+ "212.2500",
+ "2023-04-05 13:50:20"
+ ],
+ [
+ "000000130",
+ "108.0000",
+ "2022-03-08 14:50:37"
+ ],
+ [
+ "000000131",
+ "79.0000",
+ "2022-03-03 13:41:40"
+ ],
+ [
+ "000000133",
+ "181.0000",
+ "2023-02-16 21:12:53"
+ ],
+ [
+ "000000137",
+ "156.0000",
+ "2022-01-15 15:31:46"
+ ],
+ [
+ "000000138",
+ "115.0000",
+ "2022-03-31 05:17:09"
+ ],
+ [
+ "000000139",
+ "194.6000",
+ "2022-08-29 00:53:55"
+ ],
+ [
+ "000000140",
+ "168.4000",
+ "2023-01-09 07:01:25"
+ ],
+ [
+ "000000145",
+ "230.1200",
+ "2022-12-25 04:19:55"
+ ],
+ [
+ "000000146",
+ "70.0000",
+ "2023-01-10 03:17:18"
+ ],
+ [
+ "000000147",
+ "172.0000",
+ "2022-07-20 17:51:31"
+ ],
+ [
+ "000000148",
+ "125.0000",
+ "2023-05-04 10:35:15"
+ ],
+ [
+ "000000150",
+ "215.8000",
+ "2023-01-29 01:34:05"
+ ],
+ [
+ "000000154",
+ "109.0000",
+ "2023-04-02 14:47:47"
+ ],
+ [
+ "000000155",
+ "191.0000",
+ "2022-12-04 16:30:48"
+ ],
+ [
+ "000000156",
+ "202.6000",
+ "2023-04-28 01:26:41"
+ ],
+ [
+ "000000158",
+ "202.3900",
+ "2023-01-03 19:03:20"
+ ],
+ [
+ "000000160",
+ "124.0000",
+ "2022-09-19 05:04:25"
+ ],
+ [
+ "000000161",
+ "199.0000",
+ "2022-09-30 09:45:39"
+ ],
+ [
+ "000000163",
+ "87.0000",
+ "2022-10-01 14:47:10"
+ ],
+ [
+ "000000164",
+ "152.0000",
+ "2022-04-10 22:25:32"
+ ],
+ [
+ "000000166",
+ "198.6400",
+ "2022-11-03 08:56:22"
+ ],
+ [
+ "000000169",
+ "232.8400",
+ "2022-06-21 15:46:04"
+ ],
+ [
+ "000000179",
+ "127.0000",
+ "2022-02-26 04:54:34"
+ ],
+ [
+ "000000181",
+ "151.4000",
+ "2022-06-02 08:28:56"
+ ],
+ [
+ "000000182",
+ "91.0000",
+ "2023-04-28 22:47:27"
+ ],
+ [
+ "000000184",
+ "163.0000",
+ "2022-06-12 00:29:39"
+ ],
+ [
+ "000000186",
+ "37.0000",
+ "2022-03-03 16:32:37"
+ ],
+ [
+ "000000187",
+ "88.0000",
+ "2022-07-06 09:31:56"
+ ],
+ [
+ "000000188",
+ "71.0000",
+ "2022-11-10 13:25:26"
+ ],
+ [
+ "000000189",
+ "251.2400",
+ "2022-02-03 05:43:14"
+ ],
+ [
+ "000000190",
+ "145.0000",
+ "2022-08-12 14:28:46"
+ ],
+ [
+ "000000192",
+ "109.0000",
+ "2022-09-03 22:22:37"
+ ],
+ [
+ "000000196",
+ "189.8000",
+ "2022-12-11 14:38:15"
+ ],
+ [
+ "000000197",
+ "106.0000",
+ "2023-03-10 18:40:01"
+ ],
+ [
+ "000000199",
+ "47.0000",
+ "2022-09-22 07:10:53"
+ ],
+ [
+ "000000200",
+ "191.5000",
+ "2022-09-12 11:04:56"
+ ],
+ [
+ "000000201",
+ "176.1000",
+ "2022-11-20 06:13:21"
+ ],
+ [
+ "000000202",
+ "180.8000",
+ "2022-04-23 21:54:50"
+ ],
+ [
+ "000000203",
+ "29.0000",
+ "2022-06-19 12:41:31"
+ ],
+ [
+ "000000205",
+ "108.0000",
+ "2022-02-27 07:53:23"
+ ],
+ [
+ "000000207",
+ "67.0000",
+ "2022-05-15 20:36:18"
+ ],
+ [
+ "000000208",
+ "66.0000",
+ "2023-04-05 12:45:31"
+ ],
+ [
+ "000000213",
+ "130.6000",
+ "2022-01-20 09:11:20"
+ ],
+ [
+ "000000214",
+ "21.0000",
+ "2022-11-07 18:55:03"
+ ],
+ [
+ "000000215",
+ "34.0000",
+ "2022-09-24 23:34:31"
+ ],
+ [
+ "000000216",
+ "173.0000",
+ "2022-05-02 12:40:22"
+ ],
+ [
+ "000000217",
+ "121.0000",
+ "2022-12-01 18:54:18"
+ ],
+ [
+ "000000218",
+ "212.2000",
+ "2023-03-31 12:04:25"
+ ],
+ [
+ "000000223",
+ "37.0000",
+ "2022-03-29 08:37:54"
+ ],
+ [
+ "000000225",
+ "122.0000",
+ "2022-10-29 04:57:40"
+ ],
+ [
+ "000000228",
+ "59.0000",
+ "2022-02-14 20:53:37"
+ ],
+ [
+ "000000230",
+ "93.4000",
+ "2023-05-19 12:11:51"
+ ],
+ [
+ "000000231",
+ "132.0000",
+ "2022-02-07 07:02:46"
+ ],
+ [
+ "000000233",
+ "77.4000",
+ "2022-01-09 12:52:48"
+ ],
+ [
+ "000000235",
+ "131.1000",
+ "2022-06-23 12:42:48"
+ ],
+ [
+ "000000236",
+ "107.0000",
+ "2023-02-10 13:34:06"
+ ],
+ [
+ "000000237",
+ "202.0000",
+ "2022-04-06 10:38:18"
+ ],
+ [
+ "000000238",
+ "171.0000",
+ "2022-01-20 23:40:22"
+ ],
+ [
+ "000000239",
+ "82.6000",
+ "2022-06-18 14:20:21"
+ ],
+ [
+ "000000240",
+ "57.0000",
+ "2023-03-25 15:53:22"
+ ],
+ [
+ "000000243",
+ "292.4000",
+ "2022-01-28 05:27:29"
+ ],
+ [
+ "000000247",
+ "60.0000",
+ "2022-01-14 20:23:24"
+ ],
+ [
+ "000000250",
+ "25.0000",
+ "2022-07-04 03:58:12"
+ ],
+ [
+ "000000251",
+ "34.0000",
+ "2022-06-03 02:17:07"
+ ],
+ [
+ "000000253",
+ "32.0000",
+ "2022-12-17 20:16:03"
+ ],
+ [
+ "000000256",
+ "89.0000",
+ "2023-05-14 05:22:46"
+ ],
+ [
+ "000000257",
+ "164.4500",
+ "2022-08-28 12:58:51"
+ ],
+ [
+ "000000258",
+ "215.0000",
+ "2023-01-06 05:33:13"
+ ],
+ [
+ "000000260",
+ "219.0000",
+ "2022-01-08 07:26:01"
+ ],
+ [
+ "000000262",
+ "163.0000",
+ "2022-04-22 03:17:11"
+ ],
+ [
+ "000000263",
+ "136.9900",
+ "2022-01-12 05:28:28"
+ ],
+ [
+ "000000264",
+ "203.7200",
+ "2022-07-06 18:46:31"
+ ],
+ [
+ "000000268",
+ "179.0000",
+ "2023-02-11 13:49:26"
+ ],
+ [
+ "000000269",
+ "76.4000",
+ "2022-08-24 03:13:41"
+ ],
+ [
+ "000000270",
+ "60.0000",
+ "2022-06-01 04:48:33"
+ ],
+ [
+ "000000274",
+ "158.2500",
+ "2022-07-13 10:45:46"
+ ],
+ [
+ "000000276",
+ "150.2000",
+ "2022-02-08 08:05:52"
+ ],
+ [
+ "000000277",
+ "148.0000",
+ "2023-04-03 17:11:25"
+ ],
+ [
+ "000000281",
+ "132.0000",
+ "2022-02-23 09:48:44"
+ ],
+ [
+ "000000282",
+ "156.0000",
+ "2022-03-15 10:02:48"
+ ],
+ [
+ "000000284",
+ "101.0000",
+ "2023-05-01 00:42:12"
+ ],
+ [
+ "000000285",
+ "82.0000",
+ "2022-02-03 06:27:36"
+ ],
+ [
+ "000000286",
+ "101.2500",
+ "2022-07-03 03:10:23"
+ ],
+ [
+ "000000287",
+ "44.0000",
+ "2022-05-29 13:53:37"
+ ],
+ [
+ "000000288",
+ "188.0000",
+ "2023-01-17 11:52:11"
+ ],
+ [
+ "000000295",
+ "212.4000",
+ "2022-06-26 15:40:50"
+ ],
+ [
+ "000000297",
+ "125.0000",
+ "2022-12-16 17:23:33"
+ ],
+ [
+ "000000298",
+ "84.0000",
+ "2022-11-10 21:16:57"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name and price for item with SKU 'WS08-XS-Blue'.",
+ "sql": "SELECT name AS product_name, price FROM sales_invoice_item WHERE sku = 'WS08-XS-Blue';",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee",
+ "32.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee",
+ "32.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total income amount for orders completed on 2022-01-12?",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-01-12' AND order_status = 'complete';",
+ "answer": [
+ "136.9900"
+ ],
+ "sql_execute_result": [
+ [
+ "136.9900"
+ ],
+ [
+ "136.9900"
+ ]
+ ]
+ },
+ {
+ "question": "Find the price of the product with entity ID 1089.",
+ "sql": "SELECT value FROM catalog_product_entity_decimal WHERE entity_id = 1089 AND attribute_id = 77;",
+ "answer": [
+ "69.00"
+ ],
+ "sql_execute_result": [
+ [
+ "69.000000"
+ ]
+ ]
+ },
+ {
+ "question": "What payment method was used for the order with ID 300?",
+ "sql": "SELECT method FROM sales_order_payment WHERE parent_id = 300;",
+ "answer": [
+ "checkmo"
+ ],
+ "sql_execute_result": [
+ [
+ "checkmo"
+ ]
+ ]
+ },
+ {
+ "question": "Identify the product name for the sales order item with ID 739.",
+ "sql": "SELECT name FROM sales_order_item WHERE item_id = 739;",
+ "answer": [
+ "Tiffany Fitness Tee-XS-Blue"
+ ],
+ "sql_execute_result": [
+ [
+ "Tiffany Fitness Tee-XS-Blue"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the total quantity ordered in the store with ID 0 on 2022-05-15.",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-05-15' AND store_id = 0;",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the SKU of the product ordered in the sales order item with ID 973.",
+ "sql": "SELECT sku FROM sales_order_item WHERE item_id = 973;",
+ "answer": [
+ "MP02-33-Gray"
+ ],
+ "sql_execute_result": [
+ [
+ "MP02-33-Gray"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total shipping amount for the payment with entity ID 235?",
+ "sql": "SELECT shipping_amount FROM sales_order_payment WHERE entity_id = 235;",
+ "answer": [
+ "15.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "15.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total income amount for orders completed on 2022-04-13.",
+ "sql": "SELECT total_income_amount FROM sales_order_aggregated_created WHERE period = '2022-04-13' AND order_status = 'complete';",
+ "answer": [
+ "153.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "153.0000"
+ ],
+ [
+ "153.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Determine the original price of the product in the sales order item with ID 973.",
+ "sql": "SELECT original_price FROM sales_order_item WHERE item_id = 973;",
+ "answer": [
+ "46.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "46.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for the store with ID 1 on 2022-05-16?",
+ "sql": "SELECT total_qty_ordered FROM sales_order_aggregated_created WHERE period = '2022-05-16' AND store_id = 1;",
+ "answer": [
+ "4.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "4.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the SKU of the product with entity_id 1428?",
+ "sql": "SELECT sku FROM catalog_product_entity WHERE entity_id = 1428;",
+ "answer": [
+ "WS03"
+ ],
+ "sql_execute_result": [
+ [
+ "WS03"
+ ]
+ ]
+ },
+ {
+ "question": "What is the email address for the customer with ID 1?",
+ "sql": "SELECT email FROM customer_entity WHERE entity_id = 1;",
+ "answer": [
+ "roni_cost@example.com"
+ ],
+ "sql_execute_result": [
+ [
+ "roni_cost@example.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find all products with a base price greater than $30 in the invoice items.",
+ "sql": "SELECT name FROM sales_invoice_item WHERE base_price > 30.0000;",
+ "answer": [
+ "Minerva LumaTech\u2122 V-Tee"
+ ],
+ "sql_execute_result": [
+ [
+ "Minerva LumaTech™ V-Tee"
+ ]
+ ]
+ },
+ {
+ "question": "List all active stores.",
+ "sql": "SELECT name FROM store_group WHERE group_id IN (SELECT DISTINCT group_id FROM store WHERE is_active = 1);",
+ "answer": [
+ "Default",
+ "Main Website Store"
+ ],
+ "sql_execute_result": [
+ [
+ "Default"
+ ],
+ [
+ "Main Website Store"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered for product 'Sprite Stasis Ball 65 cm' on 2023-02-16?",
+ "sql": "SELECT SUM(qty_ordered) FROM sales_bestsellers_aggregated_daily WHERE product_name = 'Sprite Stasis Ball 65 cm' AND period = '2023-02-16';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by a customer with the email 'customer1@example.com'?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_order WHERE customer_email = 'customer1@example.com';",
+ "answer": [
+ "0"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing city for the order with entity_id 1?",
+ "sql": "SELECT city FROM sales_order_address WHERE parent_id = 1 AND address_type = 'billing';",
+ "answer": [
+ "Calder"
+ ],
+ "sql_execute_result": [
+ [
+ "Calder"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total base grand total for sales orders in store_id 1?",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order WHERE store_id = 1;",
+ "answer": [
+ "39971.3100"
+ ],
+ "sql_execute_result": [
+ [
+ "39971.3100"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total number of orders for each customer group.",
+ "sql": "SELECT cg.customer_group_code, COUNT(so.entity_id) AS orders_count FROM sales_order so INNER JOIN customer_entity ce ON so.customer_id = ce.entity_id INNER JOIN customer_group cg ON ce.group_id = cg.customer_group_id GROUP BY cg.customer_group_code;",
+ "answer": [
+ "General: 308"
+ ],
+ "sql_execute_result": [
+ [
+ "General",
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "How many orders were found for the customer with the email 'matt.baker@yahoo.com'?",
+ "sql": "SELECT increment_id, status, grand_total, created_at FROM sales_order_grid WHERE customer_email = 'matt.baker@yahoo.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ "000000010",
+ "canceled",
+ "107.6000",
+ "2022-03-05 20:35:51"
+ ],
+ [
+ "000000089",
+ "complete",
+ "118.0000",
+ "2023-02-26 00:35:11"
+ ],
+ [
+ "000000097",
+ "complete",
+ "204.0400",
+ "2023-01-13 18:22:13"
+ ],
+ [
+ "000000120",
+ "canceled",
+ "112.0000",
+ "2022-02-02 04:02:11"
+ ],
+ [
+ "000000125",
+ "processing",
+ "166.4000",
+ "2023-05-24 12:28:12"
+ ],
+ [
+ "000000131",
+ "complete",
+ "79.0000",
+ "2022-03-03 13:41:40"
+ ],
+ [
+ "000000138",
+ "complete",
+ "115.0000",
+ "2022-03-31 05:17:09"
+ ],
+ [
+ "000000141",
+ "canceled",
+ "167.0000",
+ "2022-08-25 23:08:18"
+ ],
+ [
+ "000000187",
+ "complete",
+ "88.0000",
+ "2022-07-06 09:31:56"
+ ],
+ [
+ "000000201",
+ "complete",
+ "176.1000",
+ "2022-11-20 06:13:21"
+ ],
+ [
+ "000000224",
+ "canceled",
+ "73.0000",
+ "2022-12-01 22:19:38"
+ ],
+ [
+ "000000295",
+ "complete",
+ "212.4000",
+ "2022-06-26 15:40:50"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total quantity ordered in order with increment ID '000000188'?",
+ "sql": "SELECT total_qty_ordered FROM sales_order WHERE increment_id = '000000188';",
+ "answer": [
+ "2.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "2.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the status of the order with increment ID '000000171'?",
+ "sql": "SELECT status FROM sales_order_grid WHERE increment_id = '000000171';",
+ "answer": [
+ "canceled"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ]
+ ]
+ },
+ {
+ "question": "What is the total grand amount of the order with entity ID 188?",
+ "sql": "SELECT grand_total FROM sales_order WHERE entity_id = 188;",
+ "answer": [
+ "71.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "71.0000"
+ ]
+ ]
+ },
+ {
+ "question": "Find the product name for the product with SKU 'MSH09-36-Black'.",
+ "sql": "SELECT name FROM sales_shipment_item WHERE sku = 'MSH09-36-Black';",
+ "answer": [
+ "Troy Yoga Short"
+ ],
+ "sql_execute_result": [
+ [
+ "Troy Yoga Short"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing address for the order with increment ID '000000131'?",
+ "sql": "SELECT billing_address FROM sales_order_grid WHERE increment_id = '000000131';",
+ "answer": [
+ "123 Peachtree St,Atlanta,Georgia,30308"
+ ],
+ "sql_execute_result": [
+ [
+ "123 Peachtree St,Atlanta,Georgia,30308"
+ ]
+ ]
+ },
+ {
+ "question": "What is the current stock quantity for the product with product ID 989?",
+ "sql": "SELECT qty FROM cataloginventory_stock_item WHERE product_id = 989;",
+ "answer": [
+ "0.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "0.0000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the category with entity ID 21?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 21 AND attribute_id = 45;",
+ "answer": [
+ "Tops"
+ ],
+ "sql_execute_result": [
+ [
+ "Tops"
+ ]
+ ]
+ },
+ {
+ "question": "List all status codes that are visible on the front.",
+ "sql": "SELECT status FROM sales_order_status_state WHERE visible_on_front = 1;",
+ "answer": [
+ "canceled",
+ "closed",
+ "complete",
+ "fraud",
+ "holded",
+ "payment_review",
+ "pending",
+ "processing"
+ ],
+ "sql_execute_result": [
+ [
+ "canceled"
+ ],
+ [
+ "closed"
+ ],
+ [
+ "complete"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "fraud"
+ ],
+ [
+ "holded"
+ ],
+ [
+ "payment_review"
+ ],
+ [
+ "pending"
+ ],
+ [
+ "processing"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address for the order with parent ID 217.",
+ "sql": "SELECT firstname, lastname, street, city, region, postcode, country_id FROM sales_order_address WHERE parent_id = 217 AND address_type = 'billing';",
+ "answer": [
+ "John",
+ "Smith",
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213",
+ "US"
+ ],
+ "sql_execute_result": [
+ [
+ "John",
+ "Smith",
+ "123 Main Street",
+ "Birmingham",
+ "Alabama",
+ "35213",
+ "US"
+ ]
+ ]
+ },
+ {
+ "question": "What is the name of the region with region ID 689?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 689 AND locale = 'en_US';",
+ "answer": [
+ "Guangdong Sheng"
+ ],
+ "sql_execute_result": [
+ [
+ "Guangdong Sheng"
+ ]
+ ]
+ },
+ {
+ "question": "What is the latest sequence value for orders?",
+ "sql": "SELECT MAX(sequence_value) FROM sequence_order_1;",
+ "answer": [
+ "308"
+ ],
+ "sql_execute_result": [
+ [
+ 308
+ ]
+ ]
+ },
+ {
+ "question": "How many categories were found for store ID 0?",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE store_id = 0 AND attribute_id = 45;",
+ "answer": [
+ "40"
+ ],
+ "sql_execute_result": [
+ [
+ "Root Catalog"
+ ],
+ [
+ "Default Category"
+ ],
+ [
+ "Gear"
+ ],
+ [
+ "Bags"
+ ],
+ [
+ "Fitness Equipment"
+ ],
+ [
+ "Watches"
+ ],
+ [
+ "Collections"
+ ],
+ [
+ "New Luma Yoga Collection"
+ ],
+ [
+ "Training"
+ ],
+ [
+ "Video Download"
+ ],
+ [
+ "Men"
+ ],
+ [
+ "Tops"
+ ],
+ [
+ "Bottoms"
+ ],
+ [
+ "Jackets"
+ ],
+ [
+ "Hoodies & Sweatshirts"
+ ],
+ [
+ "Tees"
+ ],
+ [
+ "Tanks"
+ ],
+ [
+ "Pants"
+ ],
+ [
+ "Shorts"
+ ],
+ [
+ "Women"
+ ],
+ [
+ "Tops"
+ ],
+ [
+ "Bottoms"
+ ],
+ [
+ "Jackets"
+ ],
+ [
+ "Hoodies & Sweatshirts"
+ ],
+ [
+ "Tees"
+ ],
+ [
+ "Bras & Tanks"
+ ],
+ [
+ "Pants"
+ ],
+ [
+ "Shorts"
+ ],
+ [
+ "Promotions"
+ ],
+ [
+ "Women Sale"
+ ],
+ [
+ "Men Sale"
+ ],
+ [
+ "Pants"
+ ],
+ [
+ "Tees"
+ ],
+ [
+ "Erin Recommends"
+ ],
+ [
+ "Performance Fabrics"
+ ],
+ [
+ "Eco Friendly"
+ ],
+ [
+ "Sale"
+ ],
+ [
+ "What's New"
+ ],
+ [
+ "Performance Sportswear New"
+ ],
+ [
+ "Eco Collection New"
+ ]
+ ]
+ },
+ {
+ "question": "Find the billing address email for the order with parent ID 199.",
+ "sql": "SELECT email FROM sales_order_address WHERE parent_id = 199 AND address_type = 'billing';",
+ "answer": [
+ "janesmith456@yahoo.com"
+ ],
+ "sql_execute_result": [
+ [
+ "janesmith456@yahoo.com"
+ ]
+ ]
+ },
+ {
+ "question": "What is the region name for region ID 14?",
+ "sql": "SELECT name FROM directory_country_region_name WHERE region_id = 14 AND locale = 'en_US';",
+ "answer": [
+ "Connecticut"
+ ],
+ "sql_execute_result": [
+ [
+ "Connecticut"
+ ]
+ ]
+ },
+ {
+ "question": "Find the status and state for orders with status 'complete'.",
+ "sql": "SELECT status, state FROM sales_order_status_state WHERE status = 'complete';",
+ "answer": [
+ "complete",
+ "complete"
+ ],
+ "sql_execute_result": [
+ [
+ "complete",
+ "complete"
+ ]
+ ]
+ },
+ {
+ "question": "What is the postcode for the billing address with entity ID 164?",
+ "sql": "SELECT postcode FROM sales_order_address WHERE entity_id = 164;",
+ "answer": [
+ "98122"
+ ],
+ "sql_execute_result": [
+ [
+ "98122"
+ ]
+ ]
+ }
+]
\ No newline at end of file
diff --git a/random_sample/sample.json b/random_sample/sample.json
new file mode 100644
index 0000000..9d9ae92
--- /dev/null
+++ b/random_sample/sample.json
@@ -0,0 +1,382 @@
+[
+ {
+ "question": "What is the email address for the customer named Jane Doe?",
+ "sql": "SELECT email FROM customer_entity WHERE firstname = 'Jane' AND lastname = 'Doe';",
+ "answer": [
+ "jane.doe@hotmail.com",
+ "jane.doe@gmail.com"
+ ],
+ "sql_execute_result": [
+ [
+ "jane.doe@hotmail.com"
+ ],
+ [
+ "jane.doe@gmail.com"
+ ]
+ ]
+ },
+ {
+ "question": "Find the total base grand total for orders with the status 'complete'.",
+ "sql": "SELECT SUM(base_grand_total) FROM sales_order_grid WHERE status = 'complete';",
+ "answer": [
+ "20625.5000"
+ ],
+ "sql_execute_result": [
+ [
+ "20625.5000"
+ ]
+ ]
+ },
+ {
+ "question": "What is the shipping address for order with increment_id '000000100'?",
+ "sql": "SELECT shipping_address FROM sales_order_grid WHERE increment_id = '000000100';",
+ "answer": [
+ "789 W Olympic Blvd, Los Angeles, California, 90015"
+ ],
+ "sql_execute_result": [
+ [
+ "789 W Olympic Blvd,Los Angeles,California,90015"
+ ]
+ ]
+ },
+ {
+ "question": "List all customer group codes available in the system.",
+ "sql": "SELECT customer_group_code FROM customer_group;",
+ "answer": [
+ "NOT LOGGED IN",
+ "General",
+ "Wholesale",
+ "Retailer"
+ ],
+ "sql_execute_result": [
+ [
+ "NOT LOGGED IN"
+ ],
+ [
+ "General"
+ ],
+ [
+ "Wholesale"
+ ],
+ [
+ "Retailer"
+ ]
+ ]
+ },
+ {
+ "question": "How many orders have been placed by the customer with email 'michael.nguyen@yahoo.com'?",
+ "sql": "SELECT COUNT(entity_id) FROM sales_order_grid WHERE customer_email = 'michael.nguyen@yahoo.com';",
+ "answer": [
+ "12"
+ ],
+ "sql_execute_result": [
+ [
+ 12
+ ]
+ ]
+ },
+ {
+ "question": "What is the product description for the product with entity_id 1636?",
+ "sql": "SELECT value FROM catalog_product_entity_text WHERE entity_id = 1636;",
+ "answer": [
+ "Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.
\n• Mint bra top.
• Seam-free interior molded cups
• Odor control.
• UV protection.
• Machine wash/dry.
"
+ ],
+ "sql_execute_result": [
+ [
+ "Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.
\n• Mint bra top.
• Seam-free interior molded cups
• Odor control.
• UV protection.
• Machine wash/dry.
"
+ ],
+ [
+ "142,153"
+ ],
+ [
+ "130"
+ ],
+ [
+ "196"
+ ],
+ [
+ "204,208"
+ ]
+ ]
+ },
+ {
+ "question": "What is the billing name for the order with entity_id 229?",
+ "sql": "SELECT billing_name FROM sales_order_grid WHERE entity_id = 229;",
+ "answer": [
+ "Sarah Miller"
+ ],
+ "sql_execute_result": [
+ [
+ "Sarah Miller"
+ ]
+ ]
+ },
+ {
+ "question": "Find the store name where the order with increment_id '000000258' was placed.",
+ "sql": "SELECT store_name FROM sales_order_grid WHERE increment_id = '000000258';",
+ "answer": [
+ "Main Website",
+ "Main Website Store",
+ "Default Store View"
+ ],
+ "sql_execute_result": [
+ [
+ "Main Website\nMain Website Store\nDefault Store View"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base currency code for the order placed by 'Bob Jones'?",
+ "sql": "SELECT base_currency_code FROM sales_order_grid WHERE shipping_name = 'Bob Jones';",
+ "answer": [
+ "USD"
+ ],
+ "sql_execute_result": [
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ],
+ [
+ "USD"
+ ]
+ ]
+ },
+ {
+ "question": "List the attribute values for the category with entity ID 3.",
+ "sql": "SELECT value FROM catalog_category_entity_varchar WHERE entity_id = 3;",
+ "answer": [
+ "Gear",
+ "PAGE",
+ "gear"
+ ],
+ "sql_execute_result": [
+ [
+ "Gear"
+ ],
+ [
+ "PAGE"
+ ],
+ [
+ "gear"
+ ],
+ [
+ "gear"
+ ]
+ ]
+ },
+ {
+ "question": "What is the tax amount for the product 'Iris Workout Top'?",
+ "sql": "SELECT tax_amount FROM sales_invoice_item WHERE name = 'Iris Workout Top';",
+ "answer": [
+ "2.3900"
+ ],
+ "sql_execute_result": [
+ [
+ "2.3900"
+ ]
+ ]
+ },
+ {
+ "question": "How many option values were found for attribute ID 144?",
+ "sql": "SELECT value FROM eav_attribute_option_value WHERE option_id IN (SELECT option_id FROM eav_attribute_option WHERE attribute_id = 144);",
+ "answer": [
+ "20"
+ ],
+ "sql_execute_result": [
+ [
+ "55 cm"
+ ],
+ [
+ "65 cm"
+ ],
+ [
+ "75 cm"
+ ],
+ [
+ "6 foot"
+ ],
+ [
+ "8 foot"
+ ],
+ [
+ "10 foot"
+ ],
+ [
+ "XS"
+ ],
+ [
+ "S"
+ ],
+ [
+ "M"
+ ],
+ [
+ "L"
+ ],
+ [
+ "XL"
+ ],
+ [
+ "28"
+ ],
+ [
+ "29"
+ ],
+ [
+ "30"
+ ],
+ [
+ "31"
+ ],
+ [
+ "32"
+ ],
+ [
+ "33"
+ ],
+ [
+ "34"
+ ],
+ [
+ "36"
+ ],
+ [
+ "38"
+ ]
+ ]
+ },
+ {
+ "question": "What is the base price for the product with SKU 'WS03-XS-Red'?",
+ "sql": "SELECT base_price FROM sales_invoice_item WHERE sku = 'WS03-XS-Red';",
+ "answer": [
+ "29.0000"
+ ],
+ "sql_execute_result": [
+ [
+ "29.0000"
+ ]
+ ]
+ },
+ {
+ "question": "How many sort orders are there for the attribute option with ID 152?",
+ "sql": "SELECT sort_order FROM eav_attribute_option WHERE attribute_id = 152;",
+ "answer": [
+ "26"
+ ],
+ "sql_execute_result": [
+ [
+ 0
+ ],
+ [
+ 1
+ ],
+ [
+ 2
+ ],
+ [
+ 3
+ ],
+ [
+ 4
+ ],
+ [
+ 5
+ ],
+ [
+ 6
+ ],
+ [
+ 7
+ ],
+ [
+ 8
+ ],
+ [
+ 9
+ ],
+ [
+ 10
+ ],
+ [
+ 11
+ ],
+ [
+ 12
+ ],
+ [
+ 13
+ ],
+ [
+ 14
+ ],
+ [
+ 15
+ ],
+ [
+ 16
+ ],
+ [
+ 17
+ ],
+ [
+ 18
+ ],
+ [
+ 19
+ ],
+ [
+ 20
+ ],
+ [
+ 21
+ ],
+ [
+ 22
+ ],
+ [
+ 23
+ ],
+ [
+ 24
+ ],
+ [
+ 25
+ ]
+ ]
+ },
+ {
+ "question": "Retrieve the product ID for the category 'collections/performance-new'.",
+ "sql": "SELECT entity_id FROM catalog_category_entity_varchar WHERE value = 'collections/performance-new';",
+ "answer": [
+ "39"
+ ],
+ "sql_execute_result": [
+ [
+ 39
+ ]
+ ]
+ }
+]
\ No newline at end of file