answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT SUM(round) FROM table_name_28 WHERE player = "todd fedoruk"
Which Round has a Player of todd fedoruk?
CREATE TABLE table_name_28 (round INTEGER, player VARCHAR)
SELECT no_8 FROM table_name_23 WHERE no_4 = "benjamin" AND no_3 = "liam"
Name the No. 8 which has a No. 4 of benjamin, and a No. 3 of liam?
CREATE TABLE table_name_23 (no_8 VARCHAR, no_4 VARCHAR, no_3 VARCHAR)
SELECT MAX(mass__kg_) FROM table_1558077_2
What is the largest mass(kg)?
CREATE TABLE table_1558077_2 (mass__kg_ INTEGER)
SELECT last_air_date FROM table_name_2 WHERE season = 3
When is the last episode air date for season 3?
CREATE TABLE table_name_2 (last_air_date VARCHAR, season VARCHAR)
SELECT years_played FROM table_10023387_1 WHERE player = "Im Chung-Yang"
what years are played for player  im chung-yang
CREATE TABLE table_10023387_1 (years_played VARCHAR, player VARCHAR)
SELECT 1977 FROM table_name_9 WHERE 1972 = "grand slam tournaments"
What is the 1977 value that had Grand Slam Tournaments in 1972?
CREATE TABLE table_name_9 (Id VARCHAR)
SELECT venue FROM table_name_38 WHERE rank = "3"
Which venue is rank 3?
CREATE TABLE table_name_38 (venue VARCHAR, rank VARCHAR)
SELECT team FROM table_name_59 WHERE tries_for < 10
Which Team has Tries for smaller than 10?
CREATE TABLE table_name_59 (team VARCHAR, tries_for INTEGER)
SELECT trainer FROM table_name_54 WHERE time = "1:44.80" AND jockey = "william jenkins"
What Trainer had Jockey William Jenkins in a race with Time of 1:44.80?
CREATE TABLE table_name_54 (trainer VARCHAR, time VARCHAR, jockey VARCHAR)
SELECT T1.part_name, T1.part_id FROM Parts AS T1 JOIN Part_Faults AS T2 ON T1.part_id = T2.part_id GROUP BY T1.part_id HAVING COUNT(*) > 2
Which parts have more than 2 faults? Show the part name and id.
CREATE TABLE Parts (part_name VARCHAR, part_id VARCHAR); CREATE TABLE Part_Faults (part_id VARCHAR)
SELECT first_driver_s_ FROM table_27279050_3 WHERE country = "Romania"
Who is the first driver(s) when the country is romania?
CREATE TABLE table_27279050_3 (first_driver_s_ VARCHAR, country VARCHAR)
SELECT tie_no FROM table_name_69 WHERE date = "9 january 1956"
Which Tie number was played on 9 January 1956?
CREATE TABLE table_name_69 (tie_no VARCHAR, date VARCHAR)
SELECT loss FROM table_name_82 WHERE date = "june 22"
What was the score June 22?
CREATE TABLE table_name_82 (loss VARCHAR, date VARCHAR)
SELECT model_name FROM chip_model ORDER BY launch_year
List all the model names sorted by their launch year.
CREATE TABLE chip_model (model_name VARCHAR, launch_year VARCHAR)
SELECT AVG(total) FROM table_name_97 WHERE silver = 2 AND rank > 7
What is the average total number of medals for a nation with 2 silver medals and a rank larger than 7?
CREATE TABLE table_name_97 (total INTEGER, silver VARCHAR, rank VARCHAR)
SELECT MAX(itv1_weekly_ranking) FROM table_25664518_3
What is the maximum ITV1 weekly ranking?
CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER)
SELECT player FROM table_name_69 WHERE position = "linebacker" AND pick > 28
Which Player is linebacker and has a pick larger than 28?
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR)
SELECT opponent FROM table_name_78 WHERE date = "2004-06-26" AND result = "loss"
who is the opponent on 2004-06-26 with the result of loss?
CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, result VARCHAR)
SELECT date FROM table_27734577_8 WHERE team = "New Orleans"
What's the date of the new orleans team ?
CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR)
SELECT DISTINCT (catalog_entry_name) FROM catalog_contents
Find the names of all the catalog entries.
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR)
SELECT year_joined FROM table_name_10 WHERE school = "western"
In what year did the team from the Western school join the conference?
CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR)
SELECT MIN(retired) FROM table_name_50 WHERE delivery = "1965" AND in_service = "november 1971" AND poaf_serial < 7103
What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?
CREATE TABLE table_name_50 (retired INTEGER, poaf_serial VARCHAR, delivery VARCHAR, in_service VARCHAR)
SELECT MAX(founded) FROM table_27599216_6 WHERE football_stadium = "McMahon Stadium"
What year was mcmahon stadium founded?
CREATE TABLE table_27599216_6 (founded INTEGER, football_stadium VARCHAR)
SELECT name FROM club ORDER BY name DESC
List all club names in descending alphabetical order.
CREATE TABLE club (name VARCHAR)
SELECT MAX(attendance) FROM table_name_12 WHERE visitor = "los angeles"
For all games with los angeles as visitor, what is the highest attendance of all?
CREATE TABLE table_name_12 (attendance INTEGER, visitor VARCHAR)
SELECT winning_pitcher FROM table_13710464_1 WHERE losing_pitcher = "Ezequiel Astacio"
Who was the wenning witcher when ezequiel astacio was the losing pitcher?
CREATE TABLE table_13710464_1 (winning_pitcher VARCHAR, losing_pitcher VARCHAR)
SELECT to_par FROM table_name_29 WHERE score = 72 - 71 - 68 = 211
What To par scored 72-71-68=211?
CREATE TABLE table_name_29 (to_par VARCHAR, score VARCHAR)
SELECT location FROM table_name_83 WHERE opponent = "vs. #23 south carolina"
What is the Location when the Opponent shows vs. #23 south carolina?
CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)
SELECT COUNT(DISTINCT T1.donator_name) FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = "Glenn"
How many donors have endowment for school named "Glenn"?
CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR)
SELECT goalkeeper FROM table_name_15 WHERE goals < 24
Who is the goalkeeper with fewer than 24 goals?
CREATE TABLE table_name_15 (goalkeeper VARCHAR, goals INTEGER)
SELECT laps FROM table_name_59 WHERE driver = "yannick dalmas"
How many laps did Yannick Dalmas do?
CREATE TABLE table_name_59 (laps VARCHAR, driver VARCHAR)
SELECT date FROM table_name_64 WHERE away_team = "gillingham"
What date was the away team, team Gillingham?
CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)
SELECT callsign FROM table_17822401_1 WHERE location = "Cebu"
What is the callsign for the Cebu station?
CREATE TABLE table_17822401_1 (callsign VARCHAR, location VARCHAR)
SELECT award FROM table_name_35 WHERE category = "best actor" AND year < 1988
What is Award, when Category is "Best Actor", and when Year is less than 1988?
CREATE TABLE table_name_35 (award VARCHAR, category VARCHAR, year VARCHAR)
SELECT MIN(week) FROM table_name_80 WHERE opponent = "new england patriots"
When was the earliest that New England Patriots played?
CREATE TABLE table_name_80 (week INTEGER, opponent VARCHAR)
SELECT interview FROM table_12338595_1 WHERE evening_gown = "8.977"
Which interview score corresponds with the evening gown score of 8.977?
CREATE TABLE table_12338595_1 (interview VARCHAR, evening_gown VARCHAR)
SELECT MIN(bronze) FROM table_name_71 WHERE gold < 2 AND rank = "29" AND total > 3
What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?
CREATE TABLE table_name_71 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT to_par FROM table_name_25 WHERE score = 71 - 74 - 72 - 72 = 289
What is the To par of the Player with a Score of 71-74-72-72=289?
CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR)
SELECT name FROM table_name_88 WHERE lane < 8 AND country = "russia" AND mark = "8.07"
Which name has a lane less than 8, russia as the country, with a mark of 8.07?
CREATE TABLE table_name_88 (name VARCHAR, mark VARCHAR, lane VARCHAR, country VARCHAR)
SELECT notes FROM table_name_39 WHERE fleet_size = 3
What is the Notes when the fleet size is 3?
CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR)
SELECT 2010 FROM table_name_87 WHERE 2009 = "1r" AND 2008 = "1r"
What is the 2010 when the 2009 is 1r, and a 2008 is 1r?
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT tyre FROM table_name_58 WHERE entrant = "motor racing developments" AND rounds = "3-12"
Motor Racing Developments used which tire in rounds 3-12?
CREATE TABLE table_name_58 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR)
SELECT league FROM table_name_59 WHERE manager = "lyman lamb / marty berghammer"
Manager of lyman lamb / marty berghammer is in what league?
CREATE TABLE table_name_59 (league VARCHAR, manager VARCHAR)
SELECT avg_finish FROM table_2169966_2 WHERE avg_start = "27.7"
What was his average finish when his average start was 27.7?
CREATE TABLE table_2169966_2 (avg_finish VARCHAR, avg_start VARCHAR)
SELECT probate_activities FROM table_name_6 WHERE reserved_instruments = "no" AND regulator = "chartered institute of legal executives"
What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives?
CREATE TABLE table_name_6 (probate_activities VARCHAR, reserved_instruments VARCHAR, regulator VARCHAR)
SELECT undecided FROM table_20032301_3 WHERE sampling_error = "2.7%"
What's the percentage of undecided according to the poll source with sampling error of 2.7%?
CREATE TABLE table_20032301_3 (undecided VARCHAR, sampling_error VARCHAR)
SELECT MAX(round) FROM table_name_24 WHERE pick__number = 11 AND overall < 414 AND position = "offensive tackle"
What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414?
CREATE TABLE table_name_24 (round INTEGER, position VARCHAR, pick__number VARCHAR, overall VARCHAR)
SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
What is every country with a TV network of AXN India?
CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR)
SELECT COUNT(24 AS _mountains) FROM table_23406517_2 WHERE bearing___degrees = "67.6 - 82.5 82.6 - 97.5 97.6 - 112.5"
How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?
CREATE TABLE table_23406517_2 (bearing___degrees VARCHAR)
SELECT date FROM table_name_49 WHERE competition = "king's cup 1996"
What day was king's cup 1996?
CREATE TABLE table_name_49 (date VARCHAR, competition VARCHAR)
SELECT MAX(altitude__mslm_) FROM table_name_20 WHERE area__km_2__ < 13.01 AND population = 74536 AND density__inhabitants_km_2__ > 5869
Which Altitude (mslm) is the highest one that has an Area (km 2) smaller than 13.01, and a Population of 74536, and a Density (inhabitants/km 2) larger than 5869?
CREATE TABLE table_name_20 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR, population VARCHAR)
SELECT winning_score FROM table_name_20 WHERE date = "16 may 1993"
What is the winning score of the tournament on 16 May 1993?
CREATE TABLE table_name_20 (winning_score VARCHAR, date VARCHAR)
SELECT summary FROM table_15829930_5 WHERE success_rate = "68.75%"
Name the summary for the success rate for 68.75%
CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR)
SELECT MIN(grid) FROM table_name_16 WHERE laps > 26 AND time_retired = "44:39.467"
Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467?
CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)
SELECT copa_conmebol_1999 FROM table_name_4 WHERE copa_libertadores_1999 = "did not qualify" AND team = "cruzeiro"
What is the Copa Conmebol 1999 result of team cruzeiro, which did not qualify for the Copa Libertadores 1999?
CREATE TABLE table_name_4 (copa_conmebol_1999 VARCHAR, copa_libertadores_1999 VARCHAR, team VARCHAR)
SELECT country FROM table_name_46 WHERE year = 2002
What country got accolades in 2002?
CREATE TABLE table_name_46 (country VARCHAR, year VARCHAR)
SELECT turnout__percentage FROM table_name_70 WHERE raila = "519,180"
What's listed for the Turnout % with a Raila of 519,180?
CREATE TABLE table_name_70 (turnout__percentage VARCHAR, raila VARCHAR)
SELECT result FROM table_22736523_1 WHERE week__number = "Top 40"
For week number of the top 40, what was the results?
CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)
SELECT party FROM table_1341453_34 WHERE first_elected = "1990"
What's the party elected in the district that first elected in 1990?
CREATE TABLE table_1341453_34 (party VARCHAR, first_elected VARCHAR)
SELECT AVG(total) FROM table_name_12 WHERE gold < 0
What is the average Total, when Gold is less than 0?
CREATE TABLE table_name_12 (total INTEGER, gold INTEGER)
SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California"
Which institution was located in bakersfield, california?
CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)
SELECT MIN(games) FROM table_name_51 WHERE goals = 20 AND goal_ratio < 0.14
What lowest games have 20 goals and a Goal Ratio smaller than 0.14?
CREATE TABLE table_name_51 (games INTEGER, goals VARCHAR, goal_ratio VARCHAR)
SELECT team FROM table_name_34 WHERE day_1 = "3:18.513"
Which team had 3:18.513 on day 1?
CREATE TABLE table_name_34 (team VARCHAR, day_1 VARCHAR)
SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "flax"
Find the number of characteristics that the product "flax" has.
CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)
SELECT accreditation_level FROM table_name_7 WHERE hardware_model = "gt-i9100"
What is the Accreditation Level, when the Hardware Model is GT-I9100?
CREATE TABLE table_name_7 (accreditation_level VARCHAR, hardware_model VARCHAR)
SELECT AVG(losses) FROM table_name_58 WHERE club = "warrnambool" AND wins < 12
what is the average losses when the club is warrnambool and wins is less than 12?
CREATE TABLE table_name_58 (losses INTEGER, club VARCHAR, wins VARCHAR)
SELECT year__ceremony_ FROM table_17155250_1 WHERE original_title = "Fire Dancer"
For what ceremony was "Fire Dancer" not nominated?
CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT oberliga_südwest FROM table_name_60 WHERE oberliga_baden_württemberg = "sv sandhausen" AND season = "1984-85"
which Oberliga Südwes has an Oberliga Baden-Württemberg of sv sandhausen in 1984-85?
CREATE TABLE table_name_60 (oberliga_südwest VARCHAR, oberliga_baden_württemberg VARCHAR, season VARCHAR)
SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = "janet coles"
What was the margin of victory when the runner-up was Janet Coles?
CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT COUNT(points) FROM table_name_52 WHERE played > 14
What is the total number of points combined from the teams that played over 14 games?
CREATE TABLE table_name_52 (points VARCHAR, played INTEGER)
SELECT player FROM table_name_68 WHERE pick > 44 AND position = "offensive guard" AND college = "mississippi state"
What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44?
CREATE TABLE table_name_68 (player VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR)
SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes"
Which season titles were directed by Laura Innes?
CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
SELECT date FROM table_name_6 WHERE home_team = "everton"
What is Date, when Home Team is "Everton"?
CREATE TABLE table_name_6 (date VARCHAR, home_team VARCHAR)
SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "161.340"
How many export volume of goods and services values are associated with GDP at current prices of 161.340?
CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)
SELECT attendance FROM table_21436373_12 WHERE date_year = "2011"
what is the attendance in 2011 records
CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR)
SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series"
What was 2009, when 2001 was, "not masters series"?
CREATE TABLE table_name_5 (Id VARCHAR)
SELECT table FROM table_24172157_3 WHERE team = "Blackburn Rovers"
What is the table for the team Blackburn Rovers?
CREATE TABLE table_24172157_3 (table VARCHAR, team VARCHAR)
SELECT region FROM table_name_19 WHERE catalog = "570 734-2"
Which region had a catalog number of 570 734-2?
CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR)
SELECT 1 AS st_runner_up FROM table_24014744_1 WHERE putri_pariwisata_indonesia = "Albertina Fransisca Mailoa"
Who won 2nd place when albertina fransisca mailoa was the winner of the putri pariwisata contest?
CREATE TABLE table_24014744_1 (putri_pariwisata_indonesia VARCHAR)
SELECT home_team AS score FROM table_name_82 WHERE venue = "brunswick street oval"
What is the home team's score at brunswick street oval?
CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)
SELECT result FROM table_1358608_4 WHERE date = "19 Oct 2002"
What was Northerly's result at the race on 19 Oct 2002?
CREATE TABLE table_1358608_4 (result VARCHAR, date VARCHAR)
SELECT finish FROM table_name_76 WHERE country = "england"
What was the finish for England?
CREATE TABLE table_name_76 (finish VARCHAR, country VARCHAR)
SELECT MIN(erp_w) FROM table_name_6 WHERE call_sign = "w223bp"
What is the lowest ERP W of w223bp?
CREATE TABLE table_name_6 (erp_w INTEGER, call_sign VARCHAR)
SELECT place FROM table_name_45 WHERE score = 69 - 69 = 138
What is the place of the player witha 69-69=138 score?
CREATE TABLE table_name_45 (place VARCHAR, score VARCHAR)
SELECT year FROM table_name_16 WHERE finish = "15"
What year did the finish of 15 happen in?
CREATE TABLE table_name_16 (year VARCHAR, finish VARCHAR)
SELECT years_for_grizzlies FROM table_16494599_5 WHERE school_club_team = "Maryland"
when was the school/club team for grizzles was maryland
CREATE TABLE table_16494599_5 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
SELECT location FROM table_1245148_1 WHERE year_opened = 1995
Where is the track that opened in 1995?
CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)
SELECT call_sign FROM table_name_16 WHERE frequency_mhz < 95.5 AND erp_w > 10
What is the call sign when the frequency is less than 95.5 MHz, and a ERP W is higher than 10?
CREATE TABLE table_name_16 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT date FROM table_name_57 WHERE result = "l 27-7" AND opponent = "at minnesota vikings"
When has a Result of l 27-7 and an Opponent of at minnesota vikings?
CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT MAX(lost) FROM table_name_58 WHERE points > 29 AND against < 19
What is the highest number lost with more than 29 points and an against less than 19?
CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, against VARCHAR)
SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = "7130N"
What's the TDP for the 7130N model?
CREATE TABLE table_269920_3 (tdp__w_ INTEGER, model VARCHAR)
SELECT place FROM table_name_24 WHERE score = 69 - 69 = 138 AND country = "germany"
What was the place in Germany with a score of 69-69=138?
CREATE TABLE table_name_24 (place VARCHAR, country VARCHAR, score VARCHAR)
SELECT MAX(crowd) FROM table_name_26 WHERE away_team = "st kilda"
What is the largest crowd for the St Kilda as the away team?
CREATE TABLE table_name_26 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = "oregon state"
Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?
CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR)
SELECT SUM(silver) FROM table_name_15 WHERE nation = "cuba"
How many silver medals does Cuba have?
CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR)
SELECT MAX(round) FROM table_name_15 WHERE college_junior_club_team__league_ = "clarkson university"
What is the highest round that has a player selected from Clarkson University?
CREATE TABLE table_name_15 (round INTEGER, college_junior_club_team__league_ VARCHAR)
SELECT T1.name, T2.balance FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T2.balance DESC LIMIT 3
Find the name and savings balance of the top 3 accounts with the highest saving balance sorted by savings balance in descending order.
CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)
SELECT winning_driver FROM table_name_15 WHERE circuit = "lausitzring"
Who was the winning driver of the Circuit of Lausitzring?
CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR)
SELECT outcome FROM table_name_57 WHERE score_in_the_final = "3–6, 1–6"
Which Outcome has a Score in the final of 3–6, 1–6?
CREATE TABLE table_name_57 (outcome VARCHAR, score_in_the_final VARCHAR)
SELECT series FROM table_name_2 WHERE game > 4
What was the series standing for games over 4?
CREATE TABLE table_name_2 (series VARCHAR, game INTEGER)