answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT played FROM table_name_82 WHERE points_difference = "points difference"
What are the played points difference?
CREATE TABLE table_name_82 (played VARCHAR, points_difference VARCHAR)
SELECT rider FROM table_name_89 WHERE laps < 24 AND grid < 12 AND manufacturer = "aprilia"
Which Rider has Laps smaller than 24, and a Grid smaller than 12, and a Manufacturer of aprilia?
CREATE TABLE table_name_89 (rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT date FROM table_name_17 WHERE away_team = "wrexham"
What was the date of the game for the Wrexham away team?
CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)
SELECT record FROM table_name_77 WHERE score = "7–6 (12)"
Which record has a score of 7–6 (12)?
CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR)
SELECT order_id FROM shipments WHERE shipment_date = (SELECT MAX(shipment_date) FROM shipments)
Find the id of the order which is shipped most recently.
CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)
SELECT MAX(floors) FROM table_name_92 WHERE pinnacle_height_ft__m_ = "995 (303)" AND std_rank > 6
Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6?
CREATE TABLE table_name_92 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, std_rank VARCHAR)
SELECT country FROM table_name_72 WHERE time = "6:55.23"
What country had a 6:55.23 time?
CREATE TABLE table_name_72 (country VARCHAR, time VARCHAR)
SELECT SUM(game) FROM table_name_59 WHERE date = "29 january 2008"
What is the sum of Game, when Date is 29 January 2008?
CREATE TABLE table_name_59 (game INTEGER, date VARCHAR)
SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109
How many Asians live in the borough with 8109 Chinese population?
CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR)
SELECT player FROM table_name_46 WHERE to_par = "+8" AND year_s__won = "1979"
Who won in 1979 with +8 to par?
CREATE TABLE table_name_46 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
SELECT MAX(position) FROM table_name_92 WHERE points = "50+12" AND draws < 10
Which position has 50+12 points and fewer than 10 draws?
CREATE TABLE table_name_92 (position INTEGER, points VARCHAR, draws VARCHAR)
SELECT to_par FROM table_name_32 WHERE finish = "66"
What is the To par when the finish is 66?
CREATE TABLE table_name_32 (to_par VARCHAR, finish VARCHAR)
SELECT playing_for FROM table_name_76 WHERE opponent = "real españa" AND season = "2012–13"
What shows for playing when the opponent was Real España, in the 2012–13 season?
CREATE TABLE table_name_76 (playing_for VARCHAR, opponent VARCHAR, season VARCHAR)
SELECT COUNT(overall) FROM table_name_73 WHERE round > 7 AND pick = 21
WHAT IS THE TOTAL NUMBER WITH A ROUND BIGGER THAN 7 AND PICK OF 21?
CREATE TABLE table_name_73 (overall VARCHAR, round VARCHAR, pick VARCHAR)
SELECT SUM(floors) FROM table_name_81 WHERE street_address = "800 boylston street"
There is a building at 800 Boylston Street, how many floors does it have?
CREATE TABLE table_name_81 (floors INTEGER, street_address VARCHAR)
SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T3.id = T2.playlist_id WHERE T3.name = "Movies"
List the name of all tracks in the playlists of Movies.
CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)
SELECT MAX(league_apps__sub_) FROM table_1112176_1
League apps (sub) maximum?
CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER)
SELECT record FROM table_27756314_7 WHERE date = "December 11"
what is the record for date december 11?
CREATE TABLE table_27756314_7 (record VARCHAR, date VARCHAR)
SELECT MAX(drawn) FROM table_name_92 WHERE percentage = "0.00%" AND lost < 1
What is the highest number of draws that correlates with a percentage of 0.00% and less than 1 loss?
CREATE TABLE table_name_92 (drawn INTEGER, percentage VARCHAR, lost VARCHAR)
SELECT runs FROM table_name_18 WHERE year = "2013"
How many runs happened in 2013?
CREATE TABLE table_name_18 (runs VARCHAR, year VARCHAR)
SELECT power FROM table_24729_2 WHERE co2 = "192g/km"
when co2 is 192g/km, what is the power?
CREATE TABLE table_24729_2 (power VARCHAR, co2 VARCHAR)
SELECT race FROM table_name_90 WHERE circuit = "monaco"
What race contains the Monaco circuit?
CREATE TABLE table_name_90 (race VARCHAR, circuit VARCHAR)
SELECT county FROM table_name_62 WHERE location = "boulder"
What is the county of the bridge in Boulder?
CREATE TABLE table_name_62 (county VARCHAR, location VARCHAR)
SELECT gdp__billion_us$_ FROM table_1307842_7 WHERE gdp_per_capita__us$_ = 20200
Name the gdp where gdp per capita 20200
CREATE TABLE table_1307842_7 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)
SELECT lineup FROM table_name_42 WHERE assist_pass = "unassisted"
What's the lineup when the assist/pass was Unassisted?
CREATE TABLE table_name_42 (lineup VARCHAR, assist_pass VARCHAR)
SELECT venue FROM table_name_26 WHERE away_team = "collingwood"
What is the venue where Collingwood played as the away team?
CREATE TABLE table_name_26 (venue VARCHAR, away_team VARCHAR)
SELECT Giant AS slalom FROM table_name_26 WHERE slalom = "45"
Which Giant Slalom has a Slalom of 45?
CREATE TABLE table_name_26 (Giant VARCHAR, slalom VARCHAR)
SELECT MAX(date) FROM table_name_58 WHERE label = "captain oi! records"
What is the latest Date, when Label is Captain Oi! Records?
CREATE TABLE table_name_58 (date INTEGER, label VARCHAR)
SELECT COUNT(title) FROM table_10718631_2 WHERE no_in_series = 113
How many titles were there for the 113 episode?
CREATE TABLE table_10718631_2 (title VARCHAR, no_in_series VARCHAR)
SELECT location FROM table_name_50 WHERE season = 2006
What is the Location of the Bowl in 2006?
CREATE TABLE table_name_50 (location VARCHAR, season VARCHAR)
SELECT incumbent FROM table_1341843_15 WHERE district = "Indiana 4"
Who's the incumbent of Indiana 4 district?
CREATE TABLE table_1341843_15 (incumbent VARCHAR, district VARCHAR)
SELECT T1.sales_details, T2.date_of_transaction FROM SALES AS T1 JOIN TRANSACTIONS AS T2 ON T1.sales_transaction_id = T2.transaction_id WHERE T2.amount_of_transaction < 3000
What are the sale details and dates of transactions with amount smaller than 3000?
CREATE TABLE SALES (sales_details VARCHAR, sales_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_id VARCHAR, amount_of_transaction INTEGER)
SELECT make FROM table_name_32 WHERE driver = "brian vickers"
What make of car did Brian Vickers drive?
CREATE TABLE table_name_32 (make VARCHAR, driver VARCHAR)
SELECT COUNT(district) FROM table_name_40 WHERE place_of_birth = "baltimore city" AND delegate = "cheryl glenn"
How many districts in Baltimore City does Cheryl Glenn dictate?
CREATE TABLE table_name_40 (district VARCHAR, place_of_birth VARCHAR, delegate VARCHAR)
SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17
If the total is 17, what was the maximum rank amount?
CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR)
SELECT description FROM table_256286_55 WHERE _percentage_yes = "78.27%"
What is the description of the measure that got 78.27% yes votes?
CREATE TABLE table_256286_55 (description VARCHAR, _percentage_yes VARCHAR)
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "5.2"
What digital channel corresponds to virtual channel 5.2?
CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
SELECT record FROM table_name_41 WHERE high_assists = "beno udrih (4)" AND game = 26
What is the record of game 26 with beno udrih (4) as the highest assists?
CREATE TABLE table_name_41 (record VARCHAR, high_assists VARCHAR, game VARCHAR)
SELECT carriers FROM table_name_19 WHERE rank = 20
Which carrier is ranked 20?
CREATE TABLE table_name_19 (carriers VARCHAR, rank VARCHAR)
SELECT date FROM table_name_43 WHERE attendance < 521
What is Date, when Attendance is less than 521?
CREATE TABLE table_name_43 (date VARCHAR, attendance INTEGER)
SELECT result FROM table_name_45 WHERE opponent = "manchester united" AND venue = "h"
What was the result when the opponent was manchester united in venue h?
CREATE TABLE table_name_45 (result VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT visitor FROM table_name_85 WHERE date = "february 15"
What team was visiting on February 15?
CREATE TABLE table_name_85 (visitor VARCHAR, date VARCHAR)
SELECT notes FROM table_name_94 WHERE time = "6:24.21"
What are the notes with the time 6:24.21?
CREATE TABLE table_name_94 (notes VARCHAR, time VARCHAR)
SELECT club FROM table_name_33 WHERE goals_for < 61 AND goals_against = 55
What club has less than 61 goals for and 55 goals against?
CREATE TABLE table_name_33 (club VARCHAR, goals_for VARCHAR, goals_against VARCHAR)
SELECT time FROM table_name_79 WHERE rank > 3 AND notes = "fd" AND athlete = "shin yeong-eun"
The Athlete Shin Yeong-eun with a rank larger than 3 and notes of FD had what time?
CREATE TABLE table_name_79 (time VARCHAR, athlete VARCHAR, rank VARCHAR, notes VARCHAR)
SELECT school FROM table_11677100_5 WHERE player = "Pat Osborn"
What school did Pat Osborn attend?
CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_41 WHERE player = "macdonald smith"
What is the to par that has macdonald smith as the player?
CREATE TABLE table_name_41 (to_par VARCHAR, player VARCHAR)
SELECT coat_of_cash_wearing_celebrity FROM table_name_81 WHERE episode_number = 6
Who was the Coat of Cash Wearing Celebrity in Episode 6?
CREATE TABLE table_name_81 (coat_of_cash_wearing_celebrity VARCHAR, episode_number VARCHAR)
SELECT örebro FROM table_name_67 WHERE umeå = "2"
What did Orebro score when Umea scored 2?
CREATE TABLE table_name_67 (örebro VARCHAR, umeå VARCHAR)
SELECT rank__timeslot_ FROM table_28980706_4 WHERE share__18_49_ = 13
When 13 is the share (18-49) what is the rank (timeslot)?
CREATE TABLE table_28980706_4 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR)
SELECT winner FROM table_name_14 WHERE mountains_classification = "pierre rolland" AND stage = "7"
What winner has pierre rolland as mountains classification, with 7 as the stage?
CREATE TABLE table_name_14 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR)
SELECT date FROM table_name_51 WHERE home_team = "collingwood"
Name the date for home team of collingwood
CREATE TABLE table_name_51 (date VARCHAR, home_team VARCHAR)
SELECT high_assists FROM table_22654073_13 WHERE series = "2-3"
List all high assists in series 2-3.
CREATE TABLE table_22654073_13 (high_assists VARCHAR, series VARCHAR)
SELECT T1.Store_Phone, T1.Store_Email_Address FROM Drama_Workshop_Groups AS T1 JOIN Services AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T2.Product_Name = "film"
What are the names of workshop groups in which services with product name "film" are performed?
CREATE TABLE Services (Workshop_Group_ID VARCHAR, Product_Name VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Phone VARCHAR, Store_Email_Address VARCHAR, Workshop_Group_ID VARCHAR)
SELECT AVG(salary), MAX(salary) FROM Employee
What is average and maximum salary of all employees.
CREATE TABLE Employee (salary INTEGER)
SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germán sánchez"
How many rounds did germán sánchez drive in where the chassis was dallara f308?
CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT record FROM table_name_41 WHERE date = "december 5, 1948"
What was the record for December 5, 1948?
CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_12 WHERE method = "tko (elbows)"
What was the record when the TKO (elbows) method was used?
CREATE TABLE table_name_12 (record VARCHAR, method VARCHAR)
SELECT place_of_birth FROM table_name_7 WHERE elevator = "nicholas iv" AND elector = "napoleone orsini frangipani"
What is the place of birth when the elevator is Nicholas IV, and elector is Napoleone Orsini Frangipani?
CREATE TABLE table_name_7 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR)
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = "Scania" AND fleet_numbers = "3230"
what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?
CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
SELECT others_percentage FROM table_1733513_1 WHERE others_number = 2286
What is the percentage of others when the number of others is 2286?
CREATE TABLE table_1733513_1 (others_percentage VARCHAR, others_number VARCHAR)
SELECT season FROM table_13082900_1 WHERE rookie_of_the_year = "No award given"
What is the season for no award given for rookie of the year?
CREATE TABLE table_13082900_1 (season VARCHAR, rookie_of_the_year VARCHAR)
SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate = "12-bit 40khz"
Around what time frame release a Sampling Rate of 12-bit 40khz?
CREATE TABLE table_name_63 (release_date INTEGER, sampling_rate VARCHAR)
SELECT production_code, channel FROM cartoon ORDER BY original_air_date DESC LIMIT 1
Find the production code and channel of the most recently aired cartoon .
CREATE TABLE cartoon (production_code VARCHAR, channel VARCHAR, original_air_date VARCHAR)
SELECT MIN(enrollment) FROM table_name_19 WHERE founded = "1992" AND joined_conference < 1998
What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?
CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR)
SELECT distinguished_service_cross FROM table_2104176_1 WHERE navy_cross = "Coast Guard Commendation Medal"
What is the distinguished service cross when the navy cross is Coast Guard commendation medal?
CREATE TABLE table_2104176_1 (distinguished_service_cross VARCHAR, navy_cross VARCHAR)
SELECT market_income_per_capita FROM table_22815568_2 WHERE poverty_rate = "9.4%"
What is the market income per capita of the county with the 9.4% poverty rate?
CREATE TABLE table_22815568_2 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)
SELECT institution FROM table_1974632_1 WHERE location = "Glenside, Pennsylvania"
state the institution in glenside, pennsylvania
CREATE TABLE table_1974632_1 (institution VARCHAR, location VARCHAR)
SELECT recording_date FROM table_name_79 WHERE title = "screech owl blues"
what is the recording date when the title is screech owl blues?
CREATE TABLE table_name_79 (recording_date VARCHAR, title VARCHAR)
SELECT MIN(date) FROM table_name_76 WHERE championship = "monterrey wct, mexico"
What is the earliest date when the championship was Monterrey WCT, Mexico?
CREATE TABLE table_name_76 (date INTEGER, championship VARCHAR)
SELECT name FROM table_name_28 WHERE street_address = "100 north tampa street"
What is the Name of the Building at 100 North Tampa Street?
CREATE TABLE table_name_28 (name VARCHAR, street_address VARCHAR)
SELECT money_list_rank FROM table_22081847_1 WHERE earnings__$_ = "309,886"
If the earning amount is $309,886, what is the money list ranking?
CREATE TABLE table_22081847_1 (money_list_rank VARCHAR, earnings__$_ VARCHAR)
SELECT original_air_date FROM table_1876825_6 WHERE production_code = "06-03-521"
What was the original air for the 06-03-521 production code?
CREATE TABLE table_1876825_6 (original_air_date VARCHAR, production_code VARCHAR)
SELECT MAX(draw) FROM table_name_62 WHERE place = "4th"
What is the greatest draw that has 4th for place?
CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR)
SELECT COUNT(lane) FROM table_name_16 WHERE country = "united states" AND mark = "6.62" AND heat > 8
What is the total lane number for the United States when the mark is 6.62 and the heat is greater than 8?
CREATE TABLE table_name_16 (lane VARCHAR, heat VARCHAR, country VARCHAR, mark VARCHAR)
SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = "#23 Lotus"
Name the results for #23 lotus
CREATE TABLE table_27561503_2 (results VARCHAR, sports_20_winning_team VARCHAR)
SELECT SUM(pick) FROM table_name_88 WHERE round > 1 AND school_club_team = "alcorn state" AND position = "defensive back"
Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?
CREATE TABLE table_name_88 (pick INTEGER, position VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT club_province FROM table_name_18 WHERE caps < 2 AND position = "wing" AND player = "alberto sgarbi"
What is the club/province of player Alberto Sgarbi, who played wing, with less than 2 caps?
CREATE TABLE table_name_18 (club_province VARCHAR, player VARCHAR, caps VARCHAR, position VARCHAR)
SELECT player FROM table_name_60 WHERE round < 8 AND position = "guard" AND school_club_team = "stephen f. austin"
Who is the player in guard position from Stephen F. Austin in a round less than 8?
CREATE TABLE table_name_60 (player VARCHAR, school_club_team VARCHAR, round VARCHAR, position VARCHAR)
SELECT country FROM table_name_94 WHERE score = 69 - 72 - 67 - 71 = 279
Can you tell me the Country that has the Score of 69-72-67-71=279?
CREATE TABLE table_name_94 (country VARCHAR, score VARCHAR)
SELECT AVG(points) FROM table_name_91 WHERE opponent = "vancouver canucks"
Which Points have an Opponent of vancouver canucks?
CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR)
SELECT player FROM table_name_7 WHERE years_with_spurs = "1988-95"
What is Player, when Years With Spurs is 1988-95?
CREATE TABLE table_name_7 (player VARCHAR, years_with_spurs VARCHAR)
SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135
What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?
CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)
SELECT name FROM table_name_30 WHERE sport = "athletics" AND date < 16
Who had the sport of athletics on a date earlier than 16?
CREATE TABLE table_name_30 (name VARCHAR, sport VARCHAR, date VARCHAR)
SELECT record FROM table_name_26 WHERE opponent = "cleveland cavaliers"
What is the record for the opponent the Cleveland Cavaliers?
CREATE TABLE table_name_26 (record VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_17 WHERE date = "april 22"
What was the score on April 22?
CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
SELECT name FROM table_name_28 WHERE nationality = "great britain" AND lane = 5
Who was from Great Britain in lane 5?
CREATE TABLE table_name_28 (name VARCHAR, nationality VARCHAR, lane VARCHAR)
SELECT high_points FROM table_23248910_10 WHERE date = "April 7"
List high points from the April 7 game.
CREATE TABLE table_23248910_10 (high_points VARCHAR, date VARCHAR)
SELECT surface FROM table_name_56 WHERE date = 1981
What was the surface in 1981?
CREATE TABLE table_name_56 (surface VARCHAR, date VARCHAR)
SELECT AVG(grid) FROM table_name_73 WHERE driver = "luca badoer" AND laps > 69
Tell me the average Grid for driver of Luca Badoer and Laps more than 69
CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(year) FROM table_name_95 WHERE playoffs = "did not qualify" AND open_cup = "2nd round"
When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?
CREATE TABLE table_name_95 (year INTEGER, playoffs VARCHAR, open_cup VARCHAR)
SELECT opponent FROM table_name_6 WHERE date = "1/13/1974"
What opponent played on 1/13/1974?
CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)
SELECT AVG(inhabitants) FROM table_name_36 WHERE party = "south tyrolean people's party" AND municipality = "bruneck" AND election > 2010
Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010?
CREATE TABLE table_name_36 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR)
SELECT score FROM table_23308178_4 WHERE date = "October 29"
What was the score on October 29?
CREATE TABLE table_23308178_4 (score VARCHAR, date VARCHAR)
SELECT sspec_number FROM table_name_57 WHERE i_o_bus = "ultra-low power"
What's the sSpec number of the processor having an ultra-low power I/O?
CREATE TABLE table_name_57 (sspec_number VARCHAR, i_o_bus VARCHAR)
SELECT away_team FROM table_name_16 WHERE attendance = "76"
Who was the away team when the attendance was 76?
CREATE TABLE table_name_16 (away_team VARCHAR, attendance VARCHAR)
SELECT COUNT(goal) FROM table_name_61 WHERE competition = "euro 2012 q" AND score = "3-0"
How many goals when the score is 3-0 in the euro 2012 q?
CREATE TABLE table_name_61 (goal VARCHAR, competition VARCHAR, score VARCHAR)
SELECT MAX(attendance) FROM table_name_17 WHERE loss = "hiller (3–2)"
What is the Attendance of the game with a Loss of Hiller (3–2)?
CREATE TABLE table_name_17 (attendance INTEGER, loss VARCHAR)
SELECT MAX(students) FROM table_name_13 WHERE city = "campbell" AND pupil_teacher_ratio > 25
What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?
CREATE TABLE table_name_13 (students INTEGER, city VARCHAR, pupil_teacher_ratio VARCHAR)
SELECT stage FROM table_name_49 WHERE trofeo_fast_team = "once"
What was the stage of team Once?
CREATE TABLE table_name_49 (stage VARCHAR, trofeo_fast_team VARCHAR)