question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What position is the player from the United States play for the Grizzlies from 2000-2001?
CREATE TABLE table_name_90 (position VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)
SELECT position FROM table_name_90 WHERE nationality = "united states" AND years_for_grizzlies = "2000-2001"
What is the home team of the game on January 22?
CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_67 WHERE date = "january 22"
What is the result of the match on 16 October 2012 with less than 4 goals?
CREATE TABLE table_name_84 (result VARCHAR, goal VARCHAR, date VARCHAR)
SELECT result FROM table_name_84 WHERE goal < 4 AND date = "16 october 2012"
Name the highest 3rd place for nation of perak fa
CREATE TABLE table_name_65 (nation VARCHAR)
SELECT MAX(3 AS rd_place) FROM table_name_65 WHERE nation = "perak fa"
What number pick was Danny Walters in the 1983 NFL draft?
CREATE TABLE table_2508633_4 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_2508633_4 WHERE player = "Danny Walters"
How many values of periselene when epoch is November 15, 2004, 17:47:12.1?
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR)
SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1"
How many games have Points smaller than 4, and an October smaller than 5?
CREATE TABLE table_name_51 (game VARCHAR, points VARCHAR, october VARCHAR)
SELECT COUNT(game) FROM table_name_51 WHERE points < 4 AND october < 5
WHAT IS THE CARRIER WITH 5.0.0.742 VERSION?
CREATE TABLE table_name_37 (carrier VARCHAR, package_version VARCHAR)
SELECT carrier FROM table_name_37 WHERE package_version = "5.0.0.742"
What was the result for the district with an election in 1986
CREATE TABLE table_26336739_1 (result VARCHAR, elected VARCHAR)
SELECT result FROM table_26336739_1 WHERE elected = 1986
What was the draw when the points against was 234?
CREATE TABLE table_name_96 (drawn VARCHAR, points_against VARCHAR)
SELECT drawn FROM table_name_96 WHERE points_against = "234"
How many directors were there for the film Course Completed?
CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = "Course Completed"
What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00?
CREATE TABLE table_name_76 (yellow INTEGER, category VARCHAR, amerindian VARCHAR)
SELECT SUM(yellow) FROM table_name_76 WHERE category = "bugre (indian)" AND amerindian < 50 OFFSET 00
What is the L2 cache of the microprocessor with model number pentium dual-core t3400?
CREATE TABLE table_name_91 (l2_cache VARCHAR, model_number VARCHAR)
SELECT l2_cache FROM table_name_91 WHERE model_number = "pentium dual-core t3400"
What are all the languages for tsotsi?
CREATE TABLE table_13700749_1 (language_s_ VARCHAR, film_title VARCHAR)
SELECT language_s_ FROM table_13700749_1 WHERE film_title = "Tsotsi"
What was the rating in 1997?
CREATE TABLE table_11691212_2 (ratings VARCHAR, year VARCHAR)
SELECT ratings FROM table_11691212_2 WHERE year = 1997
What is the highest average for a long less than 24, a GP-GS of 2-0, and less than 7 yards?
CREATE TABLE table_name_93 (avg_g INTEGER, yards VARCHAR, long VARCHAR, gp_gs VARCHAR)
SELECT MAX(avg_g) FROM table_name_93 WHERE long < 24 AND gp_gs = "2-0" AND yards < 7
What is the largest Founded with an Institution of cloud county community college?
CREATE TABLE table_name_67 (founded INTEGER, institution VARCHAR)
SELECT MAX(founded) FROM table_name_67 WHERE institution = "cloud county community college"
What is the total of 2013 with 6th?
CREATE TABLE table_name_87 (total INTEGER)
SELECT MAX(total) FROM table_name_87 WHERE 2013 = "6th"
What IMAP sharing options exist for software with a web UI?
CREATE TABLE table_name_93 (imap_shared VARCHAR, web_ui VARCHAR)
SELECT imap_shared FROM table_name_93 WHERE web_ui = "web ui"
When did Fejzi Bej Alizoti's term end?
CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR)
SELECT term_end FROM table_name_5 WHERE name = "fejzi bej alizoti"
Which Qual 1 has a Qual 2 of 58.861?
CREATE TABLE table_name_98 (qual_1 VARCHAR, qual_2 VARCHAR)
SELECT qual_1 FROM table_name_98 WHERE qual_2 = "58.861"
How many values for number of clubs have Shandong as the runner-up?
CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR)
SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = "Shandong"
who is the player when the place is t5 and the score is 69-74=143?
CREATE TABLE table_name_26 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT player FROM table_name_26 WHERE place = "t5" AND score = 69 - 74 = 143
What was the styled used to defeat the opponent within the time frame of 32:32?
CREATE TABLE table_18598175_2 (method_of_elimination VARCHAR, time VARCHAR)
SELECT method_of_elimination FROM table_18598175_2 WHERE time = "32:32"
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?
CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)"
What is the Venue with the Friendly Competition?
CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_91 WHERE competition = "friendly"
How many players played over 125 games and were named david gonzalvez?
CREATE TABLE table_name_16 (rank VARCHAR, games VARCHAR, player VARCHAR)
SELECT COUNT(rank) FROM table_name_16 WHERE games > 125 AND player = "david gonzalvez"
What location is less than 7.1 km away, and has a Rapid of ●?
CREATE TABLE table_name_77 (location VARCHAR, distance__km_ VARCHAR, rapid VARCHAR)
SELECT location FROM table_name_77 WHERE distance__km_ < 7.1 AND rapid = "●"
When tennis has less than 2 bronze, what is the total number of Gold?
CREATE TABLE table_name_53 (gold VARCHAR, sport VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_53 WHERE sport = "tennis" AND bronze < 2
Score of 2 - 2 had what points?
CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR)
SELECT points FROM table_name_47 WHERE score = "2 - 2"
how many innings have an average of 19.60?
CREATE TABLE table_28846752_5 (innings VARCHAR, average VARCHAR)
SELECT innings FROM table_28846752_5 WHERE average = "19.60"
What was the score of team 2 Stade Lavallois (D1)?
CREATE TABLE table_name_5 (score VARCHAR, team_2 VARCHAR)
SELECT score FROM table_name_5 WHERE team_2 = "stade lavallois (d1)"
What is the Home team on November 16, 1946?
CREATE TABLE table_name_38 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_38 WHERE date = "november 16, 1946"
How many points does the club that had 45 points against it have?
CREATE TABLE table_28201906_1 (points VARCHAR, pts_agst VARCHAR)
SELECT points FROM table_28201906_1 WHERE pts_agst = 45
What was the week number when the opponent was the New York Jets?
CREATE TABLE table_17927935_1 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_17927935_1 WHERE opponent = "New York Jets"
Which Score has a Visitor of ny rangers, and a Record of 19–28–15?
CREATE TABLE table_name_19 (score VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT score FROM table_name_19 WHERE visitor = "ny rangers" AND record = "19–28–15"
What years were the inactive Idaho chapter active?
CREATE TABLE table_name_99 (charter_range VARCHAR, status VARCHAR, state VARCHAR)
SELECT charter_range FROM table_name_99 WHERE status = "inactive" AND state = "idaho"
How many totals does pádraig harrington have?
CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)
SELECT COUNT(total) FROM table_name_83 WHERE player = "pádraig harrington"
How much Overall has a Name of bob anderson?
CREATE TABLE table_name_30 (overall VARCHAR, name VARCHAR)
SELECT COUNT(overall) FROM table_name_30 WHERE name = "bob anderson"
What is the college/junior team of player tyler myers, who has a pick less than 44?
CREATE TABLE table_name_35 (college_junior_team VARCHAR, pick VARCHAR, player VARCHAR)
SELECT college_junior_team FROM table_name_35 WHERE pick < 44 AND player = "tyler myers"
WHAT COUNTRY HAS A T7 PLACE, WITH IAN WOOSNAM?
CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_13 WHERE place = "t7" AND player = "ian woosnam"
When joj agpangan* is the name how many duration's are there?
CREATE TABLE table_19061741_3 (duration VARCHAR, name VARCHAR)
SELECT COUNT(duration) FROM table_19061741_3 WHERE name = "Joj Agpangan*"
List the names, phone numbers, and emails of all customers sorted by their dates of becoming customers.
CREATE TABLE Customers (customer_name VARCHAR, customer_phone VARCHAR, customer_email VARCHAR, date_became_customer VARCHAR)
SELECT customer_name, customer_phone, customer_email FROM Customers ORDER BY date_became_customer
Name the Social Sec Leeds has a President of tom dawson?
CREATE TABLE table_name_13 (social_sec_leeds VARCHAR, president VARCHAR)
SELECT social_sec_leeds FROM table_name_13 WHERE president = "tom dawson"
What team uses a Cosworth DFV V8 engine and DN9 Chassis?
CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9"
When tim mack is on team usa what is the progressive total?
CREATE TABLE table_19072602_3 (progressive_total VARCHAR, team_usa VARCHAR)
SELECT progressive_total FROM table_19072602_3 WHERE team_usa = "Tim Mack"
Which country had a tower destroyed in 1899?
CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR)
SELECT country FROM table_name_55 WHERE year = "1899"
Name the least selection for ron barnett
CREATE TABLE table_name_39 (selection INTEGER, player VARCHAR)
SELECT MIN(selection) FROM table_name_39 WHERE player = "ron barnett"
How many players 89 points?
CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)
SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89
What is the release date of Martial Law: Take Out?
CREATE TABLE table_name_45 (release_date VARCHAR, release_title VARCHAR)
SELECT release_date FROM table_name_45 WHERE release_title = "martial law: take out"
What was the total fertility rate that had a death rate larger than 7.8?
CREATE TABLE table_name_60 (total_fertility_rate VARCHAR, deaths INTEGER)
SELECT total_fertility_rate FROM table_name_60 WHERE deaths > 7.8
What is the record on February 19?
CREATE TABLE table_name_39 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_39 WHERE date = "february 19"
How many weeks was France at #1?
CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, country VARCHAR)
SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE country = "France"
Result F–A of 5–0 had what date?
CREATE TABLE table_name_72 (date VARCHAR, result_f_a VARCHAR)
SELECT date FROM table_name_72 WHERE result_f_a = "5–0"
What state did Hon David Beddall belong to?
CREATE TABLE table_name_47 (state VARCHAR, member VARCHAR)
SELECT state FROM table_name_47 WHERE member = "hon david beddall"
What is the average Grid, when Laps is less than 24, when Bike is "Honda CBR1000RR", and when Rider is "Jason Pridmore"?
CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR, laps VARCHAR, bike VARCHAR)
SELECT AVG(grid) FROM table_name_7 WHERE laps < 24 AND bike = "honda cbr1000rr" AND rider = "jason pridmore"
What is the April 28 rank when the Mar 24 is 17?
CREATE TABLE table_name_92 (april_28 VARCHAR, mar_24 VARCHAR)
SELECT april_28 FROM table_name_92 WHERE mar_24 = "17"
Which Natural Wood Keyboard has a CLP380 ?
CREATE TABLE table_name_21 (natural_wood_keyboard VARCHAR, model VARCHAR)
SELECT natural_wood_keyboard FROM table_name_21 WHERE model = "clp380"
Find the model of the car whose weight is below the average weight.
CREATE TABLE CARS_DATA (Id VARCHAR, Weight INTEGER); CREATE TABLE CARS_DATA (Weight INTEGER); CREATE TABLE CAR_NAMES (model VARCHAR, MakeId VARCHAR)
SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT AVG(Weight) FROM CARS_DATA)
What is the total number of appearances for players from Chaux-de-Fonds with places over 8?
CREATE TABLE table_name_25 (appearances VARCHAR, team VARCHAR, place VARCHAR)
SELECT COUNT(appearances) FROM table_name_25 WHERE team = "chaux-de-fonds" AND place > 8
Find the distinct first names of the students who have class senator votes.
CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (CLASS_Senator_VOTE VARCHAR)
SELECT DISTINCT T1.Fname FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.CLASS_Senator_VOTE
What's the release date in the 1.1.10 release?
CREATE TABLE table_28540539_2 (release VARCHAR)
SELECT release AS date FROM table_28540539_2 WHERE release = "1.1.10"
what's the result with dbeingtrict being florida 4
CREATE TABLE table_1342013_9 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342013_9 WHERE district = "Florida 4"
Which the highest Round has a Player of mike williams, and a Pick # larger than 4?
CREATE TABLE table_name_12 (round INTEGER, player VARCHAR, pick__number VARCHAR)
SELECT MAX(round) FROM table_name_12 WHERE player = "mike williams" AND pick__number > 4
What name has a population of 810?
CREATE TABLE table_name_13 (name VARCHAR, population VARCHAR)
SELECT name FROM table_name_13 WHERE population = "810"
what's the permanence of the body where purity is rudra
CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, purity VARCHAR)
SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = "Rudra"
How many episodes aired on October 17, 2007?
CREATE TABLE table_24910733_2 (episode VARCHAR, air_date VARCHAR)
SELECT COUNT(episode) FROM table_24910733_2 WHERE air_date = "October 17, 2007"
What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, "carcharodontosaurid"?
CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)
SELECT novelty FROM table_name_46 WHERE authors = "zhiming" AND notes = "carcharodontosaurid"
Who directed the episode that originally aired on February 25, 2001?
CREATE TABLE table_name_10 (directed_by VARCHAR, original_airdate VARCHAR)
SELECT directed_by FROM table_name_10 WHERE original_airdate = "february 25, 2001"
What is the time/retired for thierry boutsen?
CREATE TABLE table_name_92 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_92 WHERE driver = "thierry boutsen"
When 0 is the top 10's what is the highest amount of cuts made?
CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR)
SELECT MAX(cuts_made) FROM table_24330912_1 WHERE top_10s = 0
What is the result of the game played at Jinan?
CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_26 WHERE venue = "jinan"
Which batter has the last name Graham?
CREATE TABLE table_name_61 (bats VARCHAR, surname VARCHAR)
SELECT bats FROM table_name_61 WHERE surname = "graham"
What was the method for the resolution of nc where the fight lasted less than 3 rounds?
CREATE TABLE table_name_72 (method VARCHAR, round VARCHAR, res VARCHAR)
SELECT method FROM table_name_72 WHERE round < 3 AND res = "nc"
What is Season, when Prize is "$100,000"?
CREATE TABLE table_name_37 (season VARCHAR, prize VARCHAR)
SELECT season FROM table_name_37 WHERE prize = "$100,000"
Can you tell me the Player that has the Score larger than 67?
CREATE TABLE table_name_60 (player VARCHAR, score INTEGER)
SELECT player FROM table_name_60 WHERE score > 67
What was the school/club team whose season was in 2012 and were acquired via trade?
CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR)
SELECT school_club_team FROM table_15463188_17 WHERE season = "2012" AND acquisition_via = "Trade"
Which Tournament has a Winning score of −14 (65-69-72-68=274)?
CREATE TABLE table_name_18 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_18 WHERE winning_score = −14(65 - 69 - 72 - 68 = 274)
Which Game is the highest one that has a Record of 4-3-6?
CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_name_83 WHERE record = "4-3-6"
What is the lowest round of the position de player with an overall less than 84?
CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_51 WHERE position = "de" AND overall < 84
what's the position of pick # 79
CREATE TABLE table_20898602_1 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_20898602_1 WHERE pick__number = 79
Who has a react smaller than 0.149 and a lane smaller than 6?
CREATE TABLE table_name_23 (name VARCHAR, react VARCHAR, lane VARCHAR)
SELECT name FROM table_name_23 WHERE react < 0.149 AND lane < 6
Which Make has a Pos of 3?
CREATE TABLE table_name_58 (make VARCHAR, pos VARCHAR)
SELECT make FROM table_name_58 WHERE pos = 3
What is the yield in NTS Area U2R when the purpose is weapons development?
CREATE TABLE table_name_69 (yield VARCHAR, purpose VARCHAR, location VARCHAR)
SELECT yield FROM table_name_69 WHERE purpose = "weapons development" AND location = "nts area u2r"
When was the institution in boise, idaho founded?
CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR)
SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho"
How many times is the formula tl 2 ba 2 cuo 6?
CREATE TABLE table_101336_1 (no_of_cu_o_planes_in_unit_cell VARCHAR, formula VARCHAR)
SELECT no_of_cu_o_planes_in_unit_cell FROM table_101336_1 WHERE formula = "Tl 2 Ba 2 CuO 6"
What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha
CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)
SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18
Which is the LMS SPR when the car number was 15?
CREATE TABLE table_name_60 (lms_spr VARCHAR, car_no VARCHAR)
SELECT lms_spr FROM table_name_60 WHERE car_no = "15"
Which Event resulted in a Win for Opponent, Shane Ott?
CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott"
What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674?
CREATE TABLE table_name_95 (attempts VARCHAR, rank VARCHAR, net_yds VARCHAR)
SELECT COUNT(attempts) FROM table_name_95 WHERE rank > 4 AND net_yds < 1674
when indiana pacers were the opponent what was the date?
CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_89 WHERE opponent = "indiana pacers"
What was the result of the election with incumbent john lewis?
CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis"
List the names of the browser that are compatible with both 'CACHEbox' and 'Fasterfox'.
CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR)
SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'CACHEbox' INTERSECT SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'Fasterfox'
How many people were present in a total of every crowd at the MCG venue?
CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_32 WHERE venue = "mcg"
Name the M939 series with M809 series of m817 and M39 series of m51
CREATE TABLE table_name_54 (m939_series VARCHAR, m809_series VARCHAR, m39_series VARCHAR)
SELECT m939_series FROM table_name_54 WHERE m809_series = "m817" AND m39_series = "m51"
When did Avex Entertainment release a CD?
CREATE TABLE table_name_22 (date VARCHAR, format VARCHAR, label VARCHAR)
SELECT date FROM table_name_22 WHERE format = "cd" AND label = "avex entertainment"
I want the condition that has a prolonged bleeding time and a platelet count of decreased or unaffected
CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR)
SELECT condition FROM table_name_41 WHERE bleeding_time = "prolonged" AND platelet_count = "decreased or unaffected"
What is Place, when Weapon is "35mm fire", and when Date is "27 May 1982"?
CREATE TABLE table_name_15 (place VARCHAR, weapon VARCHAR, date VARCHAR)
SELECT place FROM table_name_15 WHERE weapon = "35mm fire" AND date = "27 may 1982"
What was the score when the tie number was a replay and the home team was mansfield town?
CREATE TABLE table_name_59 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_59 WHERE tie_no = "replay" AND home_team = "mansfield town"
WHich Category in White has a Amerindian of 4,87%?
CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR)
SELECT white FROM table_name_96 WHERE amerindian = "4,87%"