File size: 405,124 Bytes
d7f8ef8 | 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 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 | {"dataset_name": "SimpleQuestionsv2", "case_idx": 263, "question": "What is Joe Edwards's place of birth?", "tool": "people/person/place_of_birth", "param": "Joe Edwards", "result": "Wirral Peninsula"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 3365, "question": "Where was Thomas Beatty born?", "tool": "people/person/place_of_birth", "param": "Thomas Beatty", "result": "Los Angeles"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 5771, "question": "In what country is the location Appignano situated?", "tool": "location/location/containedby", "param": "Appignano", "result": "Italy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 7156, "question": "Where is the Marine Air Terminal located within its encompassing area?", "tool": "location/location/containedby", "param": "Marine Air Terminal", "result": "New York"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 10392, "question": "Where is Cyril Connell Sr. from?", "tool": "people/person/nationality", "param": "Cyril Connell, Snr.", "result": "Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 9725, "question": "What is Greg Hands's nationality?", "tool": "people/person/nationality", "param": "Greg Hands", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 12378, "question": "What genre of film is General Post?", "tool": "film/film/genre", "param": "General Post", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 12060, "question": "What is the genre of the film \"42nd Street Forever: Vol. 4\"?", "tool": "film/film/genre", "param": "42nd Street Forever: Vol. 4", "result": "Action Film"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 15929, "question": "What is Marc Bendavid's gender?", "tool": "people/person/gender", "param": "Marc Bendavid", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 15093, "question": "Is Jorn Faurschou male or female?", "tool": "people/person/gender", "param": "Jorn Faurschou", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 18676, "question": "What notable types or categories are associated with the character Daniel?", "tool": "common/topic/notable_types", "param": "Daniel", "result": "Film character"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 18621, "question": "What are the notable types or categories associated with Alfred Balcke's profession?", "tool": "common/topic/notable_types", "param": "Alfred Balcke", "result": "Politician"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 20160, "question": "What genre is the artist Chris Vrenna?", "tool": "music/artist/genre", "param": "Chris Vrenna", "result": "Electronica"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 20943, "question": "What genre of music did Nona Hendryx create?", "tool": "music/artist/genre", "param": "Nona Hendryx", "result": "Rhythm and blues"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 22963, "question": "What genre of music is the album Blues Dream?", "tool": "music/album/genre", "param": "Blues Dream", "result": "Jazz fusion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 22674, "question": "What genre is the album Secret Life of Machines?", "tool": "music/album/genre", "param": "Secret Life of Machines", "result": "Post-rock"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 25179, "question": "Which nation filmed \"42 One Dream Rush\"?", "tool": "film/film/country", "param": "42 One Dream Rush", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 24107, "question": "What is the country of origin for the film \"Fuzzy Settles Down\"?", "tool": "film/film/country", "param": "Fuzzy Settles Down", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 26614, "question": "Who are some individuals born in Medina?", "tool": "location/location/people_born_here", "param": "Medina", "result": "Umar II"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 26037, "question": "Who is a film producer born in London?", "tool": "location/location/people_born_here", "param": "London", "result": "Louis H. Jackson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 27488, "question": "Where did Rodolphe Derlanger pass away?", "tool": "people/deceased_person/place_of_death", "param": "Rodolphe d'Erlanger", "result": "Tunis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 28531, "question": "What capital city was Inga Gill in when she passed away?", "tool": "people/deceased_person/place_of_death", "param": "Inga Gill", "result": "Stockholm"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 29922, "question": "What language is the film Shanghai Affairs spoken in?", "tool": "film/film/language", "param": "Shanghai Affairs", "result": "Standard Chinese"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 30439, "question": "What language is the film \"Barbie as the Island Princess\" spoken in?", "tool": "film/film/language", "param": "Barbie as the Island Princess", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 31926, "question": "What university is located in Washington (U.S. state)?", "tool": "location/location/contains", "param": "Washington", "result": "Washington State University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 32279, "question": "What is the name of a township located in Washtenaw County, Michigan?", "tool": "location/location/contains", "param": "Washtenaw County", "result": "Ypsilanti Township"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 33438, "question": "What subjects are covered in the book \"Promise of a Dream\"?", "tool": "book/written_work/subjects", "param": "Promise of a dream", "result": "Feminism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 34260, "question": "What subjects are covered in the book White Mountain Blues?", "tool": "book/written_work/subjects", "param": "White Mountain Blues", "result": "Mythology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 36005, "question": "Who is the artist that recorded the music piece \"Story of My Life\"?", "tool": "music/recording/artist", "param": "The Story of My Life", "result": "Melinda Schneider"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 35673, "question": "What artist recorded the freestyle?", "tool": "music/recording/artist", "param": "Freestyle", "result": "Styles P"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 36413, "question": "What is the name of an action film?", "tool": "film/film_genre/films_in_this_genre", "param": "Action Film", "result": "Shareef Budmaash"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 37420, "question": "Which movies belong to the horror genre?", "tool": "film/film_genre/films_in_this_genre", "param": "Horror", "result": "Messiah of Evil"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 38896, "question": "Who is the artist of the album \"Battle for the Sun\"?", "tool": "music/album/artist", "param": "Battle for the Sun", "result": "Placebo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 37813, "question": "Which artist created the album \"Greatest Movie Hits\"?", "tool": "music/album/artist", "param": "Greatest Movie Hits", "result": "Baha Men"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 40444, "question": "What is the release type of the album Unpleasantville?", "tool": "music/album/release_type", "param": "Unpleasantville", "result": "Album"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 40519, "question": "What was the release type of the album \"Playmate to Jesus\"?", "tool": "music/album/release_type", "param": "Playmate to Jesus", "result": "Single"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 41320, "question": "What genres are associated with the Netflix title \"Vanilla Sky,\" a 2001 science fiction film?", "tool": "media_common/netflix_title/netflix_genres", "param": "Vanilla Sky", "result": "Psychological thriller"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 41628, "question": "What genres are associated with the Netflix title \"Seeing Heaven\"?", "tool": "media_common/netflix_title/netflix_genres", "param": "Seeing Heaven", "result": "LGBT"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 43349, "question": "What is the album content type of VH1: The Big 80's, The Big Movies?", "tool": "music/album/album_content_type", "param": "VH1: The Big 80's, The Big Movies", "result": "Soundtrack"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 43291, "question": "What type of album is \"Convergence,\" a Narada Sampler?", "tool": "music/album/album_content_type", "param": "Convergence, a Narada Sampler", "result": "Compilation album"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 43490, "question": "What is Clara Campoamor Rodríguez's profession?", "tool": "people/person/profession", "param": "Clara Campoamor", "result": "Teacher"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 44038, "question": "What was Lu Xun's profession?", "tool": "people/person/profession", "param": "Lu Xun", "result": "Essayist"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 44913, "question": "What genre does the book \"Entropy Tango\" belong to?", "tool": "book/book/genre", "param": "The Entropy Tango", "result": "Science Fiction"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 45442, "question": "What genre does the book \"A Gathering of Gargoyles\" belong to?", "tool": "book/book/genre", "param": "A Gathering of Gargoyles", "result": "Fantasy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 46901, "question": "What is a track performed by X-Press 2?", "tool": "music/artist/track", "param": "X-Press 2", "result": "AC/DC"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 46037, "question": "What is a song by Barry Manilow?", "tool": "music/artist/track", "param": "Barry Manilow", "result": "I Miss You"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 47312, "question": "Where was John Wesley Harding released regionally?", "tool": "music/release/region", "param": "John Wesley Harding", "result": "United Kingdom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 46981, "question": "In what country was the album \"Pure Belgium: The Clubsound of Today Chapter 1\" released?", "tool": "music/release/region", "param": "Pure Belgium: The Clubsound of Today Chapter 1", "result": "Belgium"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 48231, "question": "Name a heavy metal album.", "tool": "music/genre/albums", "param": "Heavy metal", "result": "Stronger Than Death"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 48661, "question": "What is the name of a popular soundtrack album within the genre of music?", "tool": "music/genre/albums", "param": "Soundtrack", "result": "Salute"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 49110, "question": "What song is on the release \"La Terza Madre\"?", "tool": "music/release/track", "param": "La Terza Madre", "result": "Marta"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 49319, "question": "What song is from the album Closer?", "tool": "music/release/track", "param": "Closer", "result": "Colony"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 50764, "question": "What's the name of a progressive rock band?", "tool": "music/genre/artists", "param": "Progressive rock", "result": "Neverne Bebe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 50665, "question": "Which art punk artist formed in 1970?", "tool": "music/genre/artists", "param": "Art punk", "result": "Suicide"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 51509, "question": "What album was the track \"Berlin\" released on?", "tool": "music/release_track/release", "param": "Berlin", "result": "Red Skies Over Paradise"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 51702, "question": "What releases contain the track \"I'm Every Woman\"?", "tool": "music/release_track/release", "param": "I'm Every Woman", "result": "Only Dance 1975-1979"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 52774, "question": "What position does Erwin Sánchez play in soccer/football?", "tool": "soccer/football_player/position_s", "param": "Erwin Sánchez", "result": "Forward"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 53025, "question": "What position did Park Sung-jin play in soccer/football?", "tool": "soccer/football_player/position_s", "param": "Park Sung-jin", "result": "Forward"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 53968, "question": "What is the track list on the release Nemesis?", "tool": "music/release/track_list", "param": "Nemesis", "result": "Abandon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 53534, "question": "What album does the track \"Red\" belong to?", "tool": "music/release/track_list", "param": "Red", "result": "Hollywood"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 54383, "question": "What is an album by Kevin Max?", "tool": "music/artist/album", "param": "Kevin Max", "result": "Raven Songs 101"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 54384, "question": "What albums did Tiesto release?", "tool": "music/artist/album", "param": "Tiësto", "result": "Global Clubbing: The Netherlands"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 55085, "question": "What release is always on?", "tool": "music/recording/releases", "param": "Always", "result": "Forcefield III: To Oz and Back"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 55069, "question": "What are the musical releases from Heather?", "tool": "music/recording/releases", "param": "Heather", "result": "John Peel Sessions 1987-1990"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 56025, "question": "What format was the musical release of \"Gravity\" available in?", "tool": "music/release/format", "param": "Gravity", "result": "Compact disc"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 56485, "question": "What physical format was the music release \"Decade\" available on?", "tool": "music/release/format", "param": "Decade", "result": "Compact disc"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 57128, "question": "Name a film director.", "tool": "people/profession/people_with_this_profession", "param": "Film director", "result": "Luís Filipe Rocha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 56862, "question": "Who is a singer and actress from the band All Saints?", "tool": "people/profession/people_with_this_profession", "param": "Singer", "result": "Natalie Appleton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 57638, "question": "Which literary works are associated with the subject of the Bible?", "tool": "book/book_subject/works", "param": "The Bible", "result": "The story Bible"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 57952, "question": "Which adventure book written by Willo Davis Roberts is associated with literary works?", "tool": "book/book_subject/works", "param": "Adventure", "result": "Hostage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 58473, "question": "What is the record label associated with the music artist Midnight Star?", "tool": "music/artist/label", "param": "Midnight Star", "result": "RCA Records"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 58722, "question": "What record label is Charlie Rich under?", "tool": "music/artist/label", "param": "Charlie Rich", "result": "Sun Records"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 59736, "question": "What titles are available in the Netflix genre \"Frankenstein Monster\"?", "tool": "media_common/netflix_genre/titles", "param": "The Monster", "result": "Son of Frankenstein"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 59288, "question": "What are the names of dramas on Netflix in the media_common/netflix_genre/titles category?", "tool": "media_common/netflix_genre/titles", "param": "None", "result": "Blueberry Hill"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 59769, "question": "What track is in the recording \"Teleportation\"?", "tool": "music/recording/tracks", "param": "Teleportation", "result": "Teleportation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 60349, "question": "What tracks are listed in the album Sacramento?", "tool": "music/recording/tracks", "param": "Sacramento", "result": "Sacramento"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 60894, "question": "What was the cause of death for Ray Crowe?", "tool": "people/deceased_person/cause_of_death", "param": "None", "result": "Natural causes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 60455, "question": "What is the cause of death of Wallace Smith?", "tool": "people/deceased_person/cause_of_death", "param": "Wallace Smith", "result": "heart attack"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 61097, "question": "Where is Sachi Tainaka from in terms of origin?", "tool": "music/artist/origin", "param": "Sachi Tainaka", "result": "Hyōgo Prefecture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 61381, "question": "Where did Ali Tabatabaee originate from?", "tool": "music/artist/origin", "param": "Ali Tabatabaee", "result": "La Habra"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 62127, "question": "What religion does William Overton Callis follow?", "tool": "people/person/religion", "param": "William Overton Callis", "result": "Episcopal Church"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 61961, "question": "What religion does Qutb-ud-din Aybak follow?", "tool": "people/person/religion", "param": "Qutbu l-Din Aibak", "result": "Islam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 62319, "question": "Who was the author of Frost/Nixon?", "tool": "book/written_work/author", "param": "Frost/Nixon", "result": "David Frost"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 62804, "question": "What is the name of the author responsible for the written work \"La Galaxia Internet\"?", "tool": "book/written_work/author", "param": "La Galaxia Internet", "result": "Manuel Castells"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 63000, "question": "What's the recorded version of the track \"Free\"?", "tool": "music/release_track/recording", "param": "Free", "result": "Free"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 63109, "question": "What recording process was involved in the track \"California Love\"?", "tool": "music/release_track/recording", "param": "California Love", "result": "California Love"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 63618, "question": "What genre of TV program is Taiyo Sentai Sun Vulcan?", "tool": "tv/tv_program/genre", "param": "Taiyo Sentai Sun Vulcan", "result": "Fantasy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 63894, "question": "What is the genre of the TV program \"Spuiten en Slikken\"?", "tool": "tv/tv_program/genre", "param": "Spuiten en Slikken", "result": "Chat show"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 64362, "question": "Who is the composer of \"Put Your Head on My Shoulder\"?", "tool": "music/composition/composer", "param": "Put Your Head on My Shoulder", "result": "Paul Anka"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 64242, "question": "Who is the composer of the \"Te Deum\" album?", "tool": "music/composition/composer", "param": "Te Deum", "result": "Hector Berlioz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 64726, "question": "What time zone is Carbondale located in?", "tool": "location/location/time_zones", "param": "Carbondale", "result": "Central Time Zone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 64971, "question": "What is the timezone that Welch Township is located in?", "tool": "location/location/time_zones", "param": "Welch Township", "result": "Central Time Zone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 65650, "question": "What is the ethnicity of Eric Shinseki?", "tool": "people/person/ethnicity", "param": "Eric Shinseki", "result": "Japanese American"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 65389, "question": "What is the ethnicity of Aloyisus Leon Higginbotham Jr.?", "tool": "people/person/ethnicity", "param": "A. Leon Higginbotham, Jr.", "result": "African American"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 65919, "question": "Who directed the film \"Mami Culo Grande 2\"?", "tool": "film/film/directed_by", "param": "Mami Culo Grande 2", "result": "Justin Slayer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 66009, "question": "Who directed Fatty's Wine Party?", "tool": "film/film/directed_by", "param": "Fatty's Wine Party", "result": "Roscoe Arbuckle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 66473, "question": "What is the studio album by Ted Nugent?", "tool": "music/album_content_type/albums", "param": "Studio album", "result": "Weekend Warriors"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 66635, "question": "What are the names of compilation albums?", "tool": "music/album_content_type/albums", "param": "Compilation album", "result": "Direction Reaction Creation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 66857, "question": "What are some book titles in the humor genre?", "tool": "media_common/literary_genre/books_in_this_genre", "param": "Humour", "result": "Adventures of Huckleberry Finn"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 67162, "question": "What is a book in the memoir genre?", "tool": "media_common/literary_genre/books_in_this_genre", "param": "Memoir", "result": "The Dark Brotherhood and Other Pieces"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 67346, "question": "What genre of computer or video game is Gangs of London?", "tool": "cvg/computer_videogame/cvg_genre", "param": "Gangs of London", "result": "Action game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 67234, "question": "Which computer or video game genre is \"Star Ocean: The Last Hope\" affiliated with?", "tool": "cvg/computer_videogame/cvg_genre", "param": "Star Ocean: The Last Hope", "result": "Science Fiction"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 68109, "question": "What is an album by Bo Diddley that falls under the music/album_release_type/albums category?", "tool": "music/album_release_type/albums", "param": "Album", "result": "Gold"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 67866, "question": "What's one of Randy Travis' singles?", "tool": "music/album_release_type/albums", "param": "Single", "result": "I Told You So"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 68425, "question": "Who are the parents of Bhanurangsi Savangwongse?", "tool": "people/person/parents", "param": "Bhanurangsi Savangwongse", "result": "Mongkut"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 68210, "question": "Who are the parents of Peter McNeeley?", "tool": "people/person/parents", "param": "Peter McNeeley", "result": "Tom McNeeley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 68987, "question": "Who is one of John Milton Cage, Sr.'s children?", "tool": "people/person/children", "param": "John Milton Cage, Sr.", "result": "John Cage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 68696, "question": "What are the names of Francis Percy Scott's sons?", "tool": "people/person/children", "param": "Francis Percy Scott", "result": "Tony Scott"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 69303, "question": "What literary works has Howard Waldrop authored?", "tool": "book/author/works_written", "param": "Howard Waldrop", "result": "A Dozen Tough Jobs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 69135, "question": "What is one of your favorite works written by Ernest Favenc?", "tool": "book/author/works_written", "param": "Ernest Favenc", "result": "Western Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 69607, "question": "Who is a notable football player who played as a forward in soccer?", "tool": "soccer/football_position/players", "param": "Forward", "result": "Wilmer Velásquez"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 69830, "question": "Who is a soccer player that plays midfielder?", "tool": "soccer/football_position/players", "param": "Midfielder", "result": "Róbert Mak"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 70374, "question": "Which instrument is played by Nat Adderley in his music group?", "tool": "music/group_member/instruments_played", "param": "Nat Adderley", "result": "Cornet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 70044, "question": "What instruments did Toto Cutugno play?", "tool": "music/group_member/instruments_played", "param": "Toto Cutugno", "result": "Drums"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 70796, "question": "Who is an artist that was signed to Black Mark Productions?", "tool": "music/record_label/artist", "param": "Black Mark Productions", "result": "Cemetary"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 70498, "question": "Name an artist from Sony Music Entertainment.", "tool": "music/record_label/artist", "param": "Sony Music Entertainment", "result": "Human Nature"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71157, "question": "What kind of school is Shelton Intermediate School?", "tool": "education/educational_institution/school_type", "param": "Shelton Intermediate School", "result": "Public school"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71246, "question": "What type of school is Upper Darby High School?", "tool": "education/educational_institution/school_type", "param": "Upper Darby High School", "result": "State school"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71588, "question": "Who is the lyricist for the musical composition \"Second Encore\"?", "tool": "music/composition/lyricist", "param": "Second Encore", "result": "Tim Minchin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71634, "question": "Who was the lyricist of the song \"Falling Down\"?", "tool": "music/composition/lyricist", "param": "Falling Down", "result": "Judie Tzuke"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71823, "question": "What position does John-Ford Griffin play in baseball?", "tool": "baseball/baseball_player/position_s", "param": "John-Ford Griffin", "result": "Outfielder"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 71725, "question": "What is the position played by Randy Bockus in baseball?", "tool": "baseball/baseball_player/position_s", "param": "Randy Bockus", "result": "Pitcher"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 72223, "question": "Who produced the film \"Labor Day\"?", "tool": "film/film/produced_by", "param": "Labor Day", "result": "Jason Reitman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 72062, "question": "Who produced the blockbusters?", "tool": "film/film/produced_by", "param": "Block Busters", "result": "Sam Katzman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 72568, "question": "What language is the composition \"Outlaw Pete\" in?", "tool": "music/composition/language", "param": "Outlaw Pete", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 72406, "question": "Which language is the song \"Sun Kissed\" sung in?", "tool": "music/composition/language", "param": "Sunkissed", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 72835, "question": "What type of celestial object is 2623 Zech?", "tool": "astronomy/celestial_object/category", "param": "2623 Zech", "result": "Asteroid"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 73050, "question": "Is 25430 Ericlarson classified as an asteroid or a planet?", "tool": "astronomy/celestial_object/category", "param": "25430 Ericlarson", "result": "Asteroid"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 73138, "question": "Name a person who died from natural causes.", "tool": "people/cause_of_death/people", "param": "Natural causes", "result": "Art Carney"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 73122, "question": "Who is an actor who died of natural causes?", "tool": "people/cause_of_death/people", "param": "Natural causes", "result": "Lorenzo de Rodas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 73715, "question": "What compositions were created by Bruce Springsteen?", "tool": "music/composer/compositions", "param": "Bruce Springsteen", "result": "This Hard Land"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 73736, "question": "What compositions did Mike Oldfield create?", "tool": "music/composer/compositions", "param": "Mike Oldfield", "result": "In High Places"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74045, "question": "Which country was involved in the Battle of Katzbach?", "tool": "culturalevent/event/entity_involved", "param": "Battle of Katzbach", "result": "Kingdom of Prussia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74035, "question": "Who was one of the participants during the Battle of Sheikh Saad?", "tool": "culturalevent/event/entity_involved", "param": "Battle of Sheikh Sa'ad", "result": "Ottoman Empire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74167, "question": "What films did Fadil Hadžić direct?", "tool": "film/director/film", "param": "Fadil Hadžić", "result": "Journalist"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74292, "question": "What films have Jane Campion directed?", "tool": "film/director/film", "param": "Jane Campion", "result": "8"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74506, "question": "What types of gameplay are required in Digimon World 4?", "tool": "cvg/computer_videogame/gameplay_modes", "param": "Digimon World 4", "result": "Single-player video game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74481, "question": "What type of gameplay modes are available in the computer video game Drol?", "tool": "cvg/computer_videogame/gameplay_modes", "param": "Drol", "result": "Single-player video game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74768, "question": "What is the form of the composition \"Lucky Man\"?", "tool": "music/composition/form", "param": "Lucky Man", "result": "Song"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 74890, "question": "What form of music is the composition \"Sweet Substitute\"?", "tool": "music/composition/form", "param": "Sweet Substitute", "result": "Song"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75172, "question": "What is the original language of the book \"The Moffats\"?", "tool": "book/written_work/original_language", "param": "The Moffats", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75151, "question": "What was the original language in which \"Great Transformation\" was written?", "tool": "book/written_work/original_language", "param": "The Great Transformation", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75449, "question": "Which languages are spoken in the TV program \"Hikon Kazoku\"?", "tool": "tv/tv_program/languages", "param": "None", "result": "Japanese Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75481, "question": "Is the show \"Brothers\" spoken in English or French?", "tool": "tv/tv_program/languages", "param": "Brothers", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75702, "question": "Who authored the screenplay for Kinogamma Part One: East?", "tool": "film/film/written_by", "param": "Kinogamma Part One: East", "result": "Siegfried"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 75672, "question": "Who authored the screenplay for the film \"The Hole\"?", "tool": "film/film/written_by", "param": "The Hole", "result": "John Hubley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76093, "question": "What celestial body does 1785 Wurm orbit in the field of astronomy?", "tool": "astronomy/orbital_relationship/orbits", "param": "1785 Wurm", "result": "Sun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76041, "question": "What are the orbits that celestial bodies have in relation to each other in the field of astronomy?", "tool": "astronomy/orbital_relationship/orbits", "param": "3589 Loyola", "result": "Sun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76226, "question": "Who published the computer video game Crusaders of Might and Magic?", "tool": "cvg/computer_videogame/publisher", "param": "Crusaders of Might and Magic", "result": "The 3DO Company"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76261, "question": "Who is the publisher for the video game \"The Mystery of the Druids\"?", "tool": "cvg/computer_videogame/publisher", "param": "The Mystery of the Druids", "result": "cdv Software Entertainment AG"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76706, "question": "Which animated fantasy show was released by NBC in the 1980s?", "tool": "tv/tv_genre/programs", "param": "Fantasy", "result": "Kissyfur"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76757, "question": "What television program falls under the genre of documentary film?", "tool": "tv/tv_genre/programs", "param": "Documentary film", "result": "Unforgivable Blackness"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76951, "question": "What position does Ed Frutig play in American football?", "tool": "american_football/football_player/position_s", "param": "Ed Frutig", "result": "End"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77024, "question": "What position does Chad Kilgore play in American football?", "tool": "american_football/football_player/position_s", "param": "Chad Kilgore", "result": "Linebacker"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77207, "question": "What are the official colors for Shoreham-Wading River High School?", "tool": "education/educational_institution/colors", "param": "Shoreham-Wading River High School", "result": "Gold"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77175, "question": "What are the official colors for the University of Nariño?", "tool": "education/educational_institution/colors", "param": "University of Nariño", "result": "Green"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77525, "question": "Which film was produced by Paul Wang?", "tool": "film/producer/film", "param": "Paul Wang", "result": "TMNT"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77360, "question": "Which film did Shintaro Katsu produce?", "tool": "film/producer/film", "param": "Shintaro Katsu", "result": "Shogun Assassin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77621, "question": "Who composed the music for the film \"Suspended Animation\"?", "tool": "film/film/music", "param": "Suspended Animation", "result": "A. Badale"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77672, "question": "Who composed the music for the film \"Blown Away\"?", "tool": "film/film/music", "param": "Blown Away", "result": "Paul Zaza"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77890, "question": "Where did the TV program Freak originate from?", "tool": "tv/tv_program/country_of_origin", "param": "Freak", "result": "United Kingdom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 77955, "question": "Where was the TV show \"MasterChef Malaysia\" filmed?", "tool": "tv/tv_program/country_of_origin", "param": "MasterChef Malaysia", "result": "Malaysia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78343, "question": "Who is a retired African American basketball player?", "tool": "people/ethnicity/people", "param": "African American", "result": "Elston Turner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78383, "question": "Who is a film actor that is also of Indian ethnicity?", "tool": "people/ethnicity/people", "param": "Indian people", "result": "Vinod Khanna"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78533, "question": "What star system does the celestial body 6339 Giliberti belong to?", "tool": "astronomy/star_system_body/star_system", "param": "6339 Giliberti", "result": "Solar System"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78490, "question": "What star system does (17510) 1992 PD6 belong to?", "tool": "astronomy/star_system_body/star_system", "param": "(17510) 1992 PD6", "result": "Solar System"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78660, "question": "Which film was written by Stephen Sondheim?", "tool": "film/writer/film", "param": "Stephen Sondheim", "result": "Gypsy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78723, "question": "What film was written by Martin Flavin?", "tool": "film/writer/film", "param": "Martin Flavin", "result": "El presidio"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78915, "question": "What industry does Crocs operate in?", "tool": "business/business_operation/industry", "param": "Crocs", "result": "Footwear Manufacturing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 78912, "question": "What industry does Oxygen Media specialize in?", "tool": "business/business_operation/industry", "param": "Oxygen media", "result": "Cable television"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79152, "question": "What lyrics did Lawrence Gowan write?", "tool": "music/lyricist/lyrics_written", "param": "Lawrence Gowan", "result": "Dedication"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79233, "question": "What is a song for which Yoshiki, the musician, wrote lyrics?", "tool": "music/lyricist/lyrics_written", "param": "Yoshiki", "result": "Give Me the Pleasure"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79390, "question": "What philosopher influenced Thomas Robert Malthus?", "tool": "influence/influence_node/influenced_by", "param": "Thomas Robert Malthus", "result": "William Godwin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79529, "question": "Who influenced Johann Wolfgang von Goethe?", "tool": "influence/influence_node/influenced_by", "param": "Johann Wolfgang von Goethe", "result": "Emanuel Swedenborg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79750, "question": "What is a city located in the North American Central Time Zone?", "tool": "time/time_zone/locations_in_this_time_zone", "param": "Central Time Zone", "result": "Franklin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79786, "question": "What are some locations in the North American Central Time Zone?", "tool": "time/time_zone/locations_in_this_time_zone", "param": "Central Time Zone", "result": "Granjeno"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79969, "question": "What is an example of a video game genre categorized as an action game?", "tool": "cvg/cvg_genre/games", "param": "Action game", "result": "Deathtrap Dungeon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 79976, "question": "Name an action game.", "tool": "cvg/cvg_genre/games", "param": "Action game", "result": "The Third Courier"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80297, "question": "Where did the Pacific Theater of Operations take place?", "tool": "time/event/locations", "param": "Pacific Theater of Operations", "result": "Pacific Ocean"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80215, "question": "Where did the Battle of Leyte Gulf take place?", "tool": "time/event/locations", "param": "Battle of Leyte Gulf", "result": "Leyte Gulf"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80522, "question": "What is the legal status of Tadalafil 5 film-coated tablets?", "tool": "medicine/drug_formulation/legal_status", "param": "Tadalafil 5 film coated tablet", "result": "Prescription drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80473, "question": "What is the legal status of the medicine or drug formulation for treatment set ts329152?", "tool": "medicine/drug_formulation/legal_status", "param": "Treatment set ts329152 0.000833/0.000278/0.00278/0.000833/0.000833/0.000833/0.000833/0.000833/0.000833/166.67/166.67/166.67/0.000833/0.000278/0.000833/0.000833/0.000833/0.000833/0.000833/0.000417/0.000208/0.000417/0.000208/0.000208/0.000208 injectable solution", "result": "Prescription drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80774, "question": "Name a type of private university falling under the category \"education/school_category/schools_of_this_kind\".", "tool": "education/school_category/schools_of_this_kind", "param": "Private university", "result": "College of Digital Sciences"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80658, "question": "What's an example of a private school falling under the category of education/school_category/schools_of_this_kind?", "tool": "education/school_category/schools_of_this_kind", "param": "Private school", "result": "Monte Vista Christian School"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80892, "question": "What are the active ingredient moieties in Aunt Bee's Five Flavors Wintermint Lip Balm?", "tool": "medicine/drug_formulation/active_ingredient_moieties", "param": "Lip balm spf 35 0.01/0.075/0.05/0.04 salve", "result": "Oxybenzone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 80999, "question": "What are the active ingredient moieties of the Etodolac 300 capsule?", "tool": "medicine/drug_formulation/active_ingredient_moieties", "param": "Etodolac 300 capsule", "result": "Etodolac"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81160, "question": "Name one person who has been influenced by Plato.", "tool": "influence/influence_node/influenced", "param": "Plato", "result": "Vale"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81178, "question": "Who was influenced by Aleksandr Pushkin?", "tool": "influence/influence_node/influenced", "param": "Aleksandr Pushkin", "result": "Ilya Repin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81353, "question": "What television series does the episode \"1972\" belong to?", "tool": "tv/tv_series_episode/series", "param": "1972", "result": "Behind the Music"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81429, "question": "What television series does the episode featuring Seth Rogen and Phoenix belong to?", "tool": "tv/tv_series_episode/series", "param": "Seth Rogen/Phoenix", "result": "Saturday Night Live"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81495, "question": "Who is a renowned cellist?", "tool": "music/instrument/instrumentalists", "param": "Cello", "result": "Sam Jones"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81692, "question": "Who is known as a trombone instrumentalist?", "tool": "music/instrument/instrumentalists", "param": "Trombone", "result": "Roger Daltrey"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81824, "question": "Which platform can you play Space Invaders on?", "tool": "cvg/game_version/platform", "param": "Space Invaders", "result": "MSX"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 81817, "question": "Which platform is used to play NHL Hitz Pro?", "tool": "cvg/game_version/platform", "param": "NHL Hitz Pro", "result": "GameCube"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82063, "question": "Who was the producer of the music recording \"Breathe and Stop\"?", "tool": "music/recording/producer", "param": "Breathe and Stop", "result": "J Dilla"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82111, "question": "Who produced the \"Fever\" (Hot Sweat 12\" Mix) music recording?", "tool": "music/recording/producer", "param": "Fever (Hot Sweat 12\"\" mix)", "result": "Shep Pettibone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82220, "question": "Who is the author of the book \"Screaming Science Fiction\"?", "tool": "book/book_edition/author_editor", "param": "Screaming Science Fiction", "result": "Brian Lumley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82203, "question": "Who was the author/editor of the book \"Frankenstein (Oxford Playscripts)\"?", "tool": "book/book_edition/author_editor", "param": "Frankenstein (Oxford Playscripts)", "result": "Mary Shelley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82546, "question": "Who published the video game \"Taito Memories Joukan\"?", "tool": "cvg/game_version/publisher", "param": "Taito Memories Joukan", "result": "Taito Corporation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82403, "question": "Who is the publisher of Lotus Challenge?", "tool": "cvg/game_version/publisher", "param": "Lotus Challenge", "result": "Virgin Group"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82772, "question": "What are the active ingredients in Ocean Potion Instant Dry 50 Mist Sunscreen?", "tool": "medicine/drug_formulation/active_ingredients", "param": "Avobenzone, homosalate, octisalate, octocrylene 0.03/0.15/0.05/0.07 spray", "result": "Avobenzone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82604, "question": "What is the active ingredient of the fenofibrate 160 tablet?", "tool": "medicine/drug_formulation/active_ingredients", "param": "Fenofibrate 160 tablet", "result": "Fenofibrate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82827, "question": "Who is the production company that produced the film \"Feet of Clay\"?", "tool": "film/film/production_companies", "param": "Feet of Clay", "result": "Famous Players-Lasky"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 82940, "question": "What production company produced the film \"The Fighter\"?", "tool": "film/film/production_companies", "param": "The Fighter", "result": "The Weinstein Company"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83167, "question": "What is the architectural style of Trinity & St. Philip's Cathedral?", "tool": "architecture/structure/architectural_style", "param": "Trinity & St. Philip's Cathedral", "result": "Gothic Revival architecture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83196, "question": "What architectural style is the River Forest Historic District based on?", "tool": "architecture/structure/architectural_style", "param": "River Forest Historic District", "result": "Prairie School"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83301, "question": "What is Thornclaw's gender?", "tool": "fictional_universe/fictional_character/gender", "param": "Thornclaw", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83378, "question": "Is Brian Griffin male or female?", "tool": "fictional_universe/fictional_character/gender", "param": "Brian Griffin", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83457, "question": "What county is Port Hadlock located in?", "tool": "location/hud_county_place/county", "param": "Port Hadlock", "result": "Jefferson County"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83586, "question": "Which county is Fayetteville located in?", "tool": "location/hud_county_place/county", "param": "Fayetteville", "result": "Washington County"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83702, "question": "What is the canonical version of \"Free\" by VAST, recorded in the album version?", "tool": "music/recording/canonical_version", "param": "Free (album version)", "result": "Free"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83610, "question": "What is the canonical version of the recording \"I Miss You\" (Dallas Austin mix)?", "tool": "music/recording/canonical_version", "param": "I Miss You (Dallas Austin mix)", "result": "I Miss You"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83882, "question": "Who was Marie Curie named after?", "tool": "symbols/namesake/named_after", "param": "Marie Curie", "result": "Marie Curie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83957, "question": "Who was South Monroe named after?", "tool": "symbols/namesake/named_after", "param": "South Monroe, Michigan", "result": "James Monroe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 83983, "question": "What film features music by A.R. Rahman?", "tool": "film/music_contributor/film", "param": "A. R. Rahman", "result": "Muthu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84154, "question": "What film has DJ Shadow contributed music to?", "tool": "film/music_contributor/film", "param": "DJ Shadow", "result": "Playground"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84337, "question": "What event happened in Chennai in 2012?", "tool": "location/location/events", "param": "Chennai", "result": "2012 Indian Premier League Final"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84292, "question": "What event happened at the Gulf of Saint Lawrence?", "tool": "location/location/events", "param": "Gulf of Saint Lawrence", "result": "Battle of the Atlantic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84457, "question": "What is the name of an episode of the TV program Smallville?", "tool": "tv/tv_program/episodes", "param": "Smallville", "result": "Odyssey"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84354, "question": "What episode is currently airing in the TV program \"My Own\"?", "tool": "tv/tv_program/episodes", "param": "My Own", "result": "Alicia Keys"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84597, "question": "Who developed Atomic Bomberman?", "tool": "cvg/game_version/developer", "param": "Atomic Bomberman", "result": "Interplay Entertainment"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84609, "question": "Who is the developer of the video game version \"A Mind Forever Voyaging\"?", "tool": "cvg/game_version/developer", "param": "A Mind Forever Voyaging", "result": "Infocom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84790, "question": "Who is the founder of the National Liberal Party in Lebanon?", "tool": "organization/organization/founders", "param": "National Liberal Party", "result": "Camille Chamoun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84755, "question": "Who are the founders of ProPublica?", "tool": "organization/organization/founders", "param": "ProPublica", "result": "Paul Steiger"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84947, "question": "Which art forms does Mike Mitchell practice?", "tool": "visual_art/visual_artist/art_forms", "param": "Mike Mitchell", "result": "Painting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 84937, "question": "Is the Cornelis Brisé a painting or sculpture?", "tool": "visual_art/visual_artist/art_forms", "param": "Cornelis Brisé", "result": "Painting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85090, "question": "Who wrote the story for the film \"Edge of Sanity\"?", "tool": "film/film/story_by", "param": "Edge of Sanity", "result": "Robert Louis Stevenson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85046, "question": "Who wrote the story for the film \"Force 10 from Navarone\"?", "tool": "film/film/story_by", "param": "Force 10 from Navarone", "result": "Carl Foreman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85246, "question": "What subjects or themes are addressed in the film \"I Was Nineteen\"?", "tool": "film/film/subjects", "param": "I Was Nineteen", "result": "Nazism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85338, "question": "What subjects or themes are addressed in the film \"Young Cesar\"?", "tool": "film/film/subjects", "param": "Young Cesar", "result": "Prison"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85464, "question": "How is the book \"Pastoralia\" bound?", "tool": "book/book_edition/binding", "param": "Pastoralia", "result": "Paperback"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85486, "question": "How was the book \"Writ in Blood\" published?", "tool": "book/book_edition/binding", "param": "Writ in blood", "result": "Hardcover"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85628, "question": "What are some tracks produced by Nile Rodgers?", "tool": "music/producer/tracks_produced", "param": "Nile Rodgers", "result": "Bottom Line"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85687, "question": "What are the titles of tracks produced by Lars Ulrich?", "tool": "music/producer/tracks_produced", "param": "Lars Ulrich", "result": "Whiskey in the Jar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85754, "question": "What piece of work is by Scott Walker (singer)?", "tool": "broadcast/artist/content", "param": "Scott Walker", "result": "1.FM Luxuria Music"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85752, "question": "What station was the content by Golden Earring broadcasted on?", "tool": "broadcast/artist/content", "param": "Golden Earring", "result": "radioIO Guitar Heroes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85896, "question": "What is the name of the version from the original single released in Latin America?", "tool": "music/single/versions", "param": "Latin America", "result": "Latin America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 85997, "question": "What version of the song \"Lemon\" is a part of?", "tool": "music/single/versions", "param": "Lemon", "result": "Lemon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86184, "question": "What category does titanium dioxide 0.06 emulsion fall under in drug formulation?", "tool": "medicine/drug_formulation/drug_category", "param": "Titanium dioxide 0.06 emulsion", "result": "Drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86055, "question": "What drug category does Fusarium Compactum 20000 Injectable Solution belong to?", "tool": "medicine/drug_formulation/drug_category", "param": "Fusarium compactum 20000 injectable solution", "result": "Biologic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86293, "question": "Who developed the computer video game \"N3: Ninety-Nine Nights\"?", "tool": "cvg/computer_videogame/developer", "param": "N3: Ninety-Nine Nights", "result": "Phantagram"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86262, "question": "Who is the developer of the computer video game \"Hook\"?", "tool": "cvg/computer_videogame/developer", "param": "None", "result": "Core Design"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86490, "question": "What games feature the single-player mode?", "tool": "cvg/gameplay_mode/games_with_this_mode", "param": "Single-player video game", "result": "Teenage Mutant Ninja Turtles"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86411, "question": "What is an example of a multiplayer game featuring this mode?", "tool": "cvg/gameplay_mode/games_with_this_mode", "param": "Multiplayer video game", "result": "Earth & Beyond"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86564, "question": "What asteroid was discovered in 1970 by Tamara M. Smirnova?", "tool": "astronomy/celestial_object_category/objects", "param": "Asteroid", "result": "2575 Bulgaria"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86580, "question": "What is the name of an asteroid?", "tool": "astronomy/celestial_object_category/objects", "param": "Asteroid", "result": "11132 Horne"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86737, "question": "What is the live version of the song in this specific recording?", "tool": "music/recording/song", "param": "The Letter (live)", "result": "The Letter"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86834, "question": "Which song is in the recording \"Winter Wonderland\"?", "tool": "music/recording/song", "param": "Winter Wonderland", "result": "Winter Wonderland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86991, "question": "Who created the fictional character Quicksand?", "tool": "fictional_universe/fictional_character/character_created_by", "param": "Quicksand", "result": "Ron Frenz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 86884, "question": "Who created the character Mrs. Weston in the fictional universe?", "tool": "fictional_universe/fictional_character/character_created_by", "param": "Mrs. Weston", "result": "Ayn Rand"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87135, "question": "Who is a baseball player that plays the outfield position?", "tool": "baseball/baseball_position/players", "param": "Outfielder", "result": "Rick Renick"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87034, "question": "Who is a catcher in baseball?", "tool": "baseball/baseball_position/players", "param": "Catcher", "result": "Ron Tingley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87271, "question": "What group or family does the asteroid 4170 Semmelweis belong to?", "tool": "astronomy/asteroid/member_of_asteroid_group", "param": "4170 Semmelweis", "result": "Asteroid belt"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87231, "question": "What group or family does asteroid (12569) 1998 VC29 belong to?", "tool": "astronomy/asteroid/member_of_asteroid_group", "param": "(12569) 1998 VC29", "result": "Asteroid belt"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87331, "question": "What is the color of a venlafaxine hydrochloride 37.5 tablet?", "tool": "medicine/manufactured_drug_form/color", "param": "Venlafaxine Hydrochloride 37.5 tablet", "result": "Orange"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87447, "question": "What color is the pramipexole dihydrochloride 1.5 tablet?", "tool": "medicine/manufactured_drug_form/color", "param": "Pramipexole Dihydrochloride 1.5 tablet", "result": "White"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87583, "question": "What companies operate in the computer software industry?", "tool": "business/industry/companies", "param": "Software", "result": "Wonderware"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87534, "question": "What is a company that specifically works with flooring?", "tool": "business/industry/companies", "param": "Flooring", "result": "FloorQuest"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87625, "question": "Which organization did Joel Silver found?", "tool": "organization/organization_founder/organizations_founded", "param": "Joel Silver", "result": "Silver Pictures"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87750, "question": "What organizations were founded by Leonard Blavatnik?", "tool": "organization/organization_founder/organizations_founded", "param": "Leonard Blavatnik", "result": "Access Industries"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87818, "question": "How many editions have been published for books by Robin Cook?", "tool": "book/author/book_editions_published", "param": "Robin Cook", "result": "Abduction"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87862, "question": "What are the book editions published for Donna Tartt's works?", "tool": "book/author/book_editions_published", "param": "Donna Tartt", "result": "The Little Friend"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 87963, "question": "What was William A. Clark named after?", "tool": "symbols/name_source/namesakes", "param": "William A. Clark", "result": "Clark County"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88021, "question": "Who was named for Xiu Xiu: The Sent Down Girl?", "tool": "symbols/name_source/namesakes", "param": "Xiu Xiu: The Sent Down Girl", "result": "Xiu Xiu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88069, "question": "What planetary system does the Solar System belong to?", "tool": "astronomy/star_system/planetary_system", "param": "Solar System", "result": "2148 Epeios"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88131, "question": "What is the name of a planetary system within a star system?", "tool": "astronomy/star_system/planetary_system", "param": "Solar System", "result": "36614 Saltis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88284, "question": "Who is the publisher for the book \"Midnight Voices\"?", "tool": "book/book_edition/publisher", "param": "Midnight voices", "result": "Ballantine Books"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88263, "question": "Who published the book edition of Kurt Vonnegut's work?", "tool": "book/book_edition/publisher", "param": "Kurt Vonnegut", "result": "Starmont House"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88420, "question": "Name an artist that performs radioio grunge.", "tool": "broadcast/content/artist", "param": "radioIO Grunge", "result": "Helmet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88357, "question": "Which artist was broadcasted by the station WKQC?", "tool": "broadcast/content/artist", "param": "WKQC", "result": "Kelly Clarkson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88571, "question": "Which films were executive produced by Greg Aronowitz?", "tool": "film/producer/films_executive_produced", "param": "None", "result": "How to Make Love to a Woman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88560, "question": "What films were executive produced by Charles Layton?", "tool": "film/producer/films_executive_produced", "param": "Charles Layton", "result": "Lesbian Vampire Killers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88618, "question": "Who were the military personnel involved in World War II?", "tool": "military/military_conflict/military_personnel_involved", "param": "World War II", "result": "Henry Benson, Baron Benson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88640, "question": "Which admiral was involved in the Battle of Quiberon Bay?", "tool": "military/military_conflict/military_personnel_involved", "param": "Battle of Quiberon Bay", "result": "Samuel Graves"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88797, "question": "What games are published by Midway Games?", "tool": "cvg/cvg_publisher/games_published", "param": "Midway Games", "result": "Space Invaders"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88844, "question": "What video games have been published by Eidos Interactive?", "tool": "cvg/cvg_publisher/games_published", "param": "Eidos Interactive", "result": "Soul Bubbles"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88923, "question": "Who was the executive producer of the film Idle Hands?", "tool": "film/film/executive_produced_by", "param": "Idle Hands", "result": "Jeffrey Sudzin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 88945, "question": "Who was the individual or individuals who served as executive producers for the film \"Epic Movie\"?", "tool": "film/film/executive_produced_by", "param": "Epic Movie", "result": "Rodney Liber"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89098, "question": "What is a film produced by the Gaumont Film Company?", "tool": "film/production_company/films", "param": "Gaumont Film Company", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89037, "question": "What is a 2007 film produced by StudioCanal?", "tool": "film/production_company/films", "param": "StudioCanal", "result": "My Blueberry Nights"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89180, "question": "What specific place within Toombs County is being referred to?", "tool": "location/us_county/hud_county_place", "param": "Toombs County", "result": "Lyons"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89142, "question": "What is the name of a place in Botetourt County, Virginia?", "tool": "location/us_county/hud_county_place", "param": "Botetourt County", "result": "Daleville"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89330, "question": "What is the title of the book from a specific edition of \"Ann Veronica\"?", "tool": "book/book_edition/book", "param": "Ann Veronica", "result": "Ann Veronica"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89283, "question": "Which book was the edition of \"Quo Vadis\" based on?", "tool": "book/book_edition/book", "param": "Quo Vadis", "result": "Quo Vadis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89383, "question": "Who owns the license of the Hittite Kingdom?", "tool": "common/licensed_object/license", "param": "Hittite Kingdom", "result": "Public domain"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89373, "question": "What type of license is required for the tetrahedron?", "tool": "common/licensed_object/license", "param": "Tetrahedron", "result": "GNU Free Documentation License"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89560, "question": "What active moiety of formulation includes theophylline?", "tool": "medicine/drug_ingredient/active_moiety_of_formulation", "param": "Theophylline", "result": "Theophylline 125 tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89540, "question": "What is the active ingredient or component within the drug formulation of bacitracin?", "tool": "medicine/drug_ingredient/active_moiety_of_formulation", "param": "Bacitracin", "result": "Benzalkonium chloride, benzocaine, sd alcohol, bacitracin zinc, neomycin sulfate, polymyxin b 0.6/400/0.004/0.06/5/5000 kit"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89623, "question": "What country is Junel Fe 1.5/30 30/1.5 kit available in?", "tool": "medicine/manufactured_drug_form/available_in", "param": "Junel Fe 1.5/30 30/1.5 kit", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89607, "question": "Which country can tetracycline hydrochloride 500 capsules be purchased in?", "tool": "medicine/manufactured_drug_form/available_in", "param": "Tetracycline Hydrochloride 500 capsule", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89734, "question": "Where is the neighborhood of City Park located?", "tool": "location/neighborhood/neighborhood_of", "param": "City Park", "result": "Denver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89788, "question": "What neighborhood does Good Hope belong to?", "tool": "location/neighborhood/neighborhood_of", "param": "Good Hope", "result": "Washington, D.C."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89918, "question": "What near Earth asteroid orbits the Sun?", "tool": "astronomy/orbital_relationship/orbited_by", "param": "Sun", "result": "5620 Jasonwheeler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 89919, "question": "What is a minor belt planet that orbits the sun?", "tool": "astronomy/orbital_relationship/orbited_by", "param": "Sun", "result": "(24657) 1987 SP11"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90043, "question": "What's an ingredient present in Glumetza's drug formulation?", "tool": "medicine/drug_formulation/formulation_of", "param": "Metformin hydrochloride 500 extended release film coated tablet", "result": "Metformin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90002, "question": "What formulation details are necessary to formulate a povidone-iodine prep?", "tool": "medicine/drug_formulation/formulation_of", "param": "Povidone-iodine 0.01 swab", "result": "Iodine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90111, "question": "Where was the book edition of \"Alexander Hamilton\" published?", "tool": "book/book_edition/place_of_publication", "param": "Alexander Hamilton", "result": "New York City"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90114, "question": "What city was the book \"Rachel\" published in?", "tool": "book/book_edition/place_of_publication", "param": "Rachel", "result": "Minneapolis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90221, "question": "Who did the cinematography in the film Wishcraft?", "tool": "film/film/cinematography", "param": "Wishcraft", "result": "Sulejman Medenčević"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90171, "question": "Who did the cinematography for the film *Hooked*?", "tool": "film/film/cinematography", "param": "Hooked", "result": "Adrian Silisteanu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90321, "question": "Which label is the music release associated with?", "tool": "music/release/label", "param": "Show", "result": "Warner Bros. Records"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90323, "question": "What is the record label associated with the music release \"Sessions@AOL\"?", "tool": "music/release/label", "param": "Sessions@AOL", "result": "Atlantic Records"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90472, "question": "What film was centered around the subject of politics?", "tool": "film/film_subject/films", "param": "Politics", "result": "Citizen Cohn"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90449, "question": "What films are related to the subject or theme of Francis of Assisi?", "tool": "film/film_subject/films", "param": "Francis of Assisi", "result": "Francis of Assisi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90527, "question": "What book is the 1995 edition of Lincoln?", "tool": "book/book/editions", "param": "Lincoln", "result": "Lincoln"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90548, "question": "What are the different editions or versions of the book Tao Te Ching?", "tool": "book/book/editions", "param": "Tao Te Ching", "result": "Tao te ching"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90647, "question": "What games are available on the TI-99 gaming platform?", "tool": "cvg/cvg_platform/games_on_this_platform", "param": "Texas Instruments TI-99/4A", "result": "Fathom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90585, "question": "What games are available on the Commodore 64 platform?", "tool": "cvg/cvg_platform/games_on_this_platform", "param": "Commodore 64", "result": "Questron"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90773, "question": "Name a drug formulation that includes fluoride as an active ingredient.", "tool": "medicine/drug_ingredient/active_ingredient_of_formulation", "param": "Fluoride", "result": "Vitamin a, vitamin d, thiamine, riboflavin, niacin, pyridoxine, folic acid, fluoride ion, ascorbic acid, .alpha.-tocopherol-acetate-dl, cyanocobalamin 15/60/4.5/0.25/0.3/13.5/1.05/1.2/1.05/2500/400 chewable tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90705, "question": "What is the active ingredient in clotrimazole?", "tool": "medicine/drug_ingredient/active_ingredient_of_formulation", "param": "Clotrimazole", "result": "Clotrimazole 10 lozenge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90788, "question": "What are the popular tourist attractions in Columbus?", "tool": "travel/travel_destination/tourist_attractions", "param": "Columbus", "result": "Nationwide Arena"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90846, "question": "What are the tourist attractions in Westport?", "tool": "travel/travel_destination/tourist_attractions", "param": "Westport", "result": "Clare Island"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90986, "question": "What notable locations were featured in the film \"Inside Moves\"?", "tool": "film/film/featured_film_locations", "param": "Inside Moves", "result": "Oakland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 90934, "question": "Where were the prominent locations where the film \"Margot at the Wedding\" was shot or featured?", "tool": "film/film/featured_film_locations", "param": "Margot at the Wedding", "result": "The Hamptons"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91032, "question": "Who is the writer of the TV series episode \"Busted\"?", "tool": "tv/tv_series_episode/writer", "param": "Busted", "result": "Brenda Hampton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91007, "question": "Who is the writer of the TV episode \"An Ideal Husband\"?", "tool": "tv/tv_series_episode/writer", "param": "An Ideal Husband", "result": "Jon Robin Baitz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91116, "question": "What are examples of buildings that exemplify Queen Anne style architecture?", "tool": "architecture/architectural_style/examples", "param": "Queen Anne Style architecture (Great Britain & Australia)", "result": "Unity Building"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91135, "question": "What are some examples of Renaissance architecture?", "tool": "architecture/architectural_style/examples", "param": "Renaissance architecture", "result": "Northern District Police Station"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91298, "question": "What games has Domark developed?", "tool": "cvg/cvg_developer/games_developed", "param": "Domark Software", "result": "James Bond 007: The Duel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91221, "question": "What is a game developed by Matrix Software?", "tool": "cvg/cvg_developer/games_developed", "param": "Matrix Software", "result": "Final Fantasy III"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91355, "question": "Who is the manufacturer of the omeprazole 20 delayed release tablet?", "tool": "medicine/manufactured_drug_form/manufacturer", "param": "Omeprazole 20 delayed release tablet", "result": "Publix Super Markets"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91385, "question": "Who is the manufacturer of bicalutamide 50 film coated tablet?", "tool": "medicine/manufactured_drug_form/manufacturer", "param": "Bicalutamide 50 film coated tablet", "result": "Cadila Healthcare"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91428, "question": "What game versions have been published by Activision Blizzard?", "tool": "cvg/cvg_publisher/game_versions_published", "param": "Activision Blizzard", "result": "Muppet Treasure Island"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91481, "question": "What is the name of a game version published by Electronic Arts?", "tool": "cvg/cvg_publisher/game_versions_published", "param": "Electronic Arts", "result": "Ultima Online: Lord Blackthorn's Revenge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91557, "question": "What were Vittorio Mussolini's contributions to the story credits of the film?", "tool": "film/film_story_contributor/film_story_credits", "param": "Vittorio Mussolini", "result": "The Three Pilots"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91511, "question": "Which film credits Dennis Lehane for contributing to the story?", "tool": "film/film_story_contributor/film_story_credits", "param": "Dennis Lehane", "result": "Mystic River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91605, "question": "What albums were released in Copenhagen?", "tool": "music/album/releases", "param": "Copenhagen", "result": "Copenhagen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91632, "question": "Which release is included in the album Radiation?", "tool": "music/album/releases", "param": "Radiation", "result": "Radiation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91762, "question": "Which compositions fall under the category of songs?", "tool": "music/compositional_form/compositions", "param": "Song", "result": "It's All Too Much"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91760, "question": "Which compositions belong to the compositional form of string quartet?", "tool": "music/compositional_form/compositions", "param": "String quartet", "result": "String Quartet No. 14"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91867, "question": "What film had Anthony E. Griffin as the cinematographer?", "tool": "film/cinematographer/film", "param": "Anthony E. Griffin", "result": "Eclipse"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91830, "question": "Which film does Armando Nannuzzi serve as the cinematographer for?", "tool": "film/cinematographer/film", "param": "Armando Nannuzzi", "result": "Sahara"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91898, "question": "Where is George Welch buried?", "tool": "people/deceased_person/place_of_burial", "param": "George Welch", "result": "Arlington National Cemetery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91899, "question": "Where was Gregory La Cava buried?", "tool": "people/deceased_person/place_of_burial", "param": "Gregory La Cava", "result": "Chapel of the Pines Crematory"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 91992, "question": "What shape is the tablet form of the drug Duetact 30/2?", "tool": "medicine/manufactured_drug_form/shape", "param": "Duetact 30/2 tablet", "result": "Circle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92009, "question": "What is the shape of the Disulfiram 250 tablet?", "tool": "medicine/manufactured_drug_form/shape", "param": "Disulfiram 250 tablet", "result": "Circle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92144, "question": "Who is the mad scientist character created by Mike Allred in his fictional universe?", "tool": "fictional_universe/fictional_character_creator/fictional_characters_created", "param": "Mike Allred", "result": "Dr. Egon Boiffard"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92158, "question": "What Marvel character did Gene Colan create?", "tool": "fictional_universe/fictional_character_creator/fictional_characters_created", "param": "Gene Colan", "result": "Baron Samedi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92210, "question": "Who are the producers involved in the release of the music album Grand Champ?", "tool": "music/release/producers", "param": "Grand Champ", "result": "Rondell Turner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92176, "question": "Who was a producer on the song \"Exclusive\"?", "tool": "music/release/producers", "param": "Exclusive", "result": "T-Pain"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92341, "question": "What is the album released by Bob Dylan?", "tool": "music/release/album", "param": "Bob Dylan", "result": "Bob Dylan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92311, "question": "Which album is \"United Abominations\" from?", "tool": "music/release/album", "param": "United Abominations", "result": "United Abominations"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92391, "question": "How is Saltbush 40000 Injectable Solution delivered?", "tool": "medicine/drug_formulation/routes", "param": "Saltbush 40000 injectable solution", "result": "Subcutaneous injection"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92366, "question": "How should Formoterol Fumarate Dihydrate 0.01% solution be administered?", "tool": "medicine/drug_formulation/routes", "param": "Formoterol fumarate dihydrate 0.01 solution", "result": "Inhalation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92486, "question": "What are the names of female Marvel comic book characters?", "tool": "fictional_universe/character_gender/characters_of_this_gender", "param": "Female", "result": "Skitz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92460, "question": "Name a male character from the specified fictional universe.", "tool": "fictional_universe/character_gender/characters_of_this_gender", "param": "Male", "result": "Reed Daley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92608, "question": "What is a recording from the Haitian composition?", "tool": "music/composition/recordings", "param": "Haiti", "result": "Haiti"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92592, "question": "What's a recorded version of \"Ohio\"?", "tool": "music/composition/recordings", "param": "Ohio", "result": "Ohio (demo)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92686, "question": "Which war included the Treaty of Versailles?", "tool": "time/event/included_in_event", "param": "Treaty of Versailles", "result": "World War I"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92633, "question": "Which conflict is included in the Russo-Turkish War?", "tool": "time/event/included_in_event", "param": "Russo-Turkish War", "result": "Napoleonic Wars"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92722, "question": "Which travel destination is Taebaeksan near?", "tool": "travel/tourist_attraction/near_travel_destination", "param": "Taebaeksan", "result": "Taebaek"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92724, "question": "What is the nearest tourist attraction to Cedar Point amusement park?", "tool": "travel/tourist_attraction/near_travel_destination", "param": "Cedar Point", "result": "Sandusky"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92875, "question": "Which languages does Jane Seymour speak?", "tool": "people/person/languages", "param": "Jane Seymour", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92806, "question": "What languages does Scarlett Johansson speak?", "tool": "people/person/languages", "param": "Scarlett Johansson", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92963, "question": "Who edited the film \"The Silence of the Lambs\"?", "tool": "film/film/edited_by", "param": "The Silence of the Lambs", "result": "Craig McKay"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 92934, "question": "Who edited the film without limits?", "tool": "film/film/edited_by", "param": "Without Limits", "result": "Claire Simpson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93006, "question": "What language family does the Buna language belong to?", "tool": "language/human_language/language_family", "param": "Buna Language", "result": "Torricelli languages"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93069, "question": "What language family does the Bajan language belong to?", "tool": "language/human_language/language_family", "param": "Bajan Language", "result": "Creole language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93088, "question": "What films were art directed by Paul Inglis?", "tool": "film/film_art_director/films_art_directed", "param": "Paul Inglis", "result": "Basic Instinct 2"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93094, "question": "What films has John Warnke art directed?", "tool": "film/film_art_director/films_art_directed", "param": "John Warnke", "result": "One Fine Day"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93229, "question": "Who is a Russian Jewish painter associated with the visual art form?", "tool": "visual_art/visual_art_form/artists", "param": "Painting", "result": "Sergey Zagraevsky"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93165, "question": "Who are some artists known for their work in visual art form?", "tool": "visual_art/visual_art_form/artists", "param": "Painting", "result": "Kazys Varnelis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93314, "question": "What is the format of the movie \"The Crimson Sails\"?", "tool": "film/film/film_format", "param": "Crimson Sails", "result": "35 mm film"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93290, "question": "What film format was used for the movie \"Everything Must Go\"?", "tool": "film/film/film_format", "param": "Everything Must Go", "result": "35 mm film"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93350, "question": "What is a treatment for myocardial ischemia?", "tool": "medicine/disease/treatments", "param": "Myocardial Ischemia", "result": "Coronary stent"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93401, "question": "What treatments are available for giardiasis?", "tool": "medicine/disease/treatments", "param": "Giardiasis", "result": "Metronidazole"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93441, "question": "Who is the creator of the TV program Jekyll?", "tool": "tv/tv_program/program_creator", "param": "Jekyll", "result": "Steven Moffat"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93473, "question": "Who created the TV program \"Deadliest Catch\"?", "tool": "tv/tv_program/program_creator", "param": "Deadliest Catch", "result": "Thom Beers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93574, "question": "Where was the astronomical discovery site of 11295 Gustaflarsson?", "tool": "astronomy/astronomical_discovery/discovery_site", "param": "11295 Gustaflarsson", "result": "La Silla Observatory"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93591, "question": "Where was the discovery site of 4064 Marjorie located in astronomy?", "tool": "astronomy/astronomical_discovery/discovery_site", "param": "4064 Marjorie", "result": "Palomar Observatory"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93625, "question": "What is the occupation of Camille Wray within the fictional universe?", "tool": "fictional_universe/fictional_character/occupation", "param": "None", "result": "Accountant"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93661, "question": "What profession does Marianne vi Britannia belong to within the fictional universe?", "tool": "fictional_universe/fictional_character/occupation", "param": "Marianne Vi Britannia", "result": "Pilot"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93760, "question": "What type of painting is the View of Valkhof at Nijmegen?", "tool": "visual_art/artwork/media", "param": "The View of Valkhof at Nijmegen", "result": "Oil paint"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93708, "question": "What type of medium is used for the artwork \"Landscape Near Figueras\"?", "tool": "visual_art/artwork/media", "param": "Landscape Near Figueras", "result": "Oil paint"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93834, "question": "What season did the TV series episode \"Bangkok\" come from?", "tool": "tv/tv_series_episode/season", "param": "Bangkok", "result": "O Mundo Segundo os Brasileiros - Season 3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93794, "question": "In what season was the TV episode \"Hugh Hefner\"?", "tool": "tv/tv_series_episode/season", "param": "Hugh Hefner", "result": "Dean Martin Celebrity Roast - Season 1"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93869, "question": "Which books were published by Tandem Library?", "tool": "book/publishing_company/books_published", "param": "Tandem Library", "result": "The Old Man and the Sea"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93904, "question": "Which book did Canongate Books publish in January 2005?", "tool": "book/publishing_company/books_published", "param": "Canongate Books", "result": "Weight"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94013, "question": "Who was responsible for the art direction of the film \"Remember the Day\"?", "tool": "film/film/film_art_direction_by", "param": "Remember the Day", "result": "Richard Day"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 93968, "question": "Who was responsible for the art direction of the film \"Baober in Love\"?", "tool": "film/film/film_art_direction_by", "param": "Baober in Love", "result": "Kwong-Tim Yip"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94075, "question": "What games did Westwood Studios develop?", "tool": "cvg/cvg_developer/game_versions_developed", "param": "Westwood Studios", "result": "Lands of Lore: The Throne of Chaos"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94059, "question": "What is the title of a game developed by LucasArts?", "tool": "cvg/cvg_developer/game_versions_developed", "param": "LucasArts", "result": "Afterlife"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94160, "question": "How many episodes are there in Season 10 of the TV series \"The View\"?", "tool": "tv/tv_series_season/episodes", "param": "The View - Season 10", "result": "Robin Williams"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94185, "question": "What's an episode from the show Railway Adventures Across Australia - Season 1?", "tool": "tv/tv_series_season/episodes", "param": "Railway Adventures Across Australia - Season 1", "result": "Victoria"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94201, "question": "What art form does \"Sail: In Two Movements\" belong to?", "tool": "visual_art/artwork/art_form", "param": "Sail: In Two Movements", "result": "Painting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94209, "question": "What is the art form of the artwork \"The Banjo Player\"?", "tool": "visual_art/artwork/art_form", "param": "The Banjo Player", "result": "Painting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94279, "question": "In which country is the city of Volta Grande located within its second-level administrative division?", "tool": "location/administrative_division/second_level_division_of", "param": "Volta Grande", "result": "Brazil"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94320, "question": "What is the second-level administrative division of Douglas County, Colorado?", "tool": "location/administrative_division/second_level_division_of", "param": "Douglas County", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94352, "question": "Where was the Integris Baptist Medical Center founded?", "tool": "organization/organization/place_founded", "param": "Integris Baptist Medical Center", "result": "Oklahoma City"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94402, "question": "Where was the School of Medicine, University of Zagreb founded?", "tool": "organization/organization/place_founded", "param": "School of Medicine, University of Zagreb", "result": "Zagreb"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94450, "question": "Where is KTTS-FM broadcasted?", "tool": "broadcast/broadcast/area_served", "param": "KTTS-FM", "result": "Springfield"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94509, "question": "What geographical region does DYRI serve?", "tool": "broadcast/broadcast/area_served", "param": "DYRI", "result": "Iloilo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94530, "question": "Who directed the specific episode of the TV series Avatar?", "tool": "tv/tv_series_episode/director", "param": "Avatar", "result": "Paul Lynch"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94559, "question": "Who directed the specific episode of the TV series?", "tool": "tv/tv_series_episode/director", "param": "Pilot", "result": "David Nutter"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94646, "question": "What artistic movement is Allan D'Arcangelo associated with?", "tool": "visual_art/visual_artist/associated_periods_or_movements", "param": "Allan D'Arcangelo", "result": "Pop art"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94608, "question": "What artistic movement is Oscar Villalón associated with?", "tool": "visual_art/visual_artist/associated_periods_or_movements", "param": "Oscar Villalón", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94675, "question": "What is the dosage form of clonazepam 1 tablet?", "tool": "medicine/drug_formulation/dosage_form", "param": "Clonazepam 1 tablet", "result": "Tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94729, "question": "How is Nefazodone Hydrochloride administered?", "tool": "medicine/drug_formulation/dosage_form", "param": "Nefazodone hydrochloride 50 tablet", "result": "Tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94781, "question": "What country is Chittagong located in?", "tool": "location/administrative_division/country", "param": "Chittagong", "result": "Bangladesh"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94816, "question": "In what country does Oleksandrivs'kyi Raion operate within?", "tool": "location/administrative_division/country", "param": "Oleksandrivs’kyi Raion", "result": "Ukraine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94860, "question": "What automotive class does the Mitsubishi i-MiEV belong to?", "tool": "automotive/model/automotive_class", "param": "Mitsubishi i-MiEV", "result": "Kei car"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94874, "question": "What automotive class does the Nissan Primera belong to?", "tool": "automotive/model/automotive_class", "param": "Nissan Primera", "result": "Station Wagon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94976, "question": "What films feature Toronto as a filming location?", "tool": "film/film_location/featured_in_films", "param": "Toronto", "result": "Repo Men"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 94957, "question": "What is the filming feature in Indonesia?", "tool": "film/film_location/featured_in_films", "param": "Indonesia", "result": "Thicker than Water"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95020, "question": "What is the format of KPKY radio station?", "tool": "broadcast/radio_station/format", "param": "KPKY", "result": "Classic rock"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95004, "question": "What format of music does CKGA radio station broadcast?", "tool": "broadcast/radio_station/format", "param": "CKGA", "result": "Country"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95062, "question": "What condition or illness is cefdinir used to treat?", "tool": "medicine/medical_treatment/used_to_treat", "param": "Cefdinir", "result": "Sinusitis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95113, "question": "What medical condition is treated with diclofenac?", "tool": "medicine/medical_treatment/used_to_treat", "param": "Diclofenac", "result": "Actinic keratosis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95149, "question": "In what country is the Kinnauri and Bhoti language spoken?", "tool": "language/human_language/main_country", "param": "Kinnauri, Bhoti Language", "result": "India"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95165, "question": "What is the main country where the West-Central language, Limba, is spoken?", "tool": "language/human_language/main_country", "param": "Limba, West-Central Language", "result": "Sierra Leone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95212, "question": "Which position does Chris Wright play in basketball?", "tool": "basketball/basketball_player/position_s", "param": "Chris Wright", "result": "Power forward"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95208, "question": "What position does Larry Nance play in basketball?", "tool": "basketball/basketball_player/position_s", "param": "Larry Nance", "result": "Power forward"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95283, "question": "What music releases did Steve Mac produce?", "tool": "music/producer/releases_produced", "param": "Steve Mac", "result": "Ronan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95322, "question": "What are some music releases produced by Eminem?", "tool": "music/producer/releases_produced", "param": "Eminem", "result": "The Blueprint"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95416, "question": "What is the number of episodes written by Richard Vaczy for TV?", "tool": "tv/tv_writer/episodes_written", "param": "Richard Vaczy", "result": "Pilot"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95419, "question": "What episodes did Buck Henry write for TV?", "tool": "tv/tv_writer/episodes_written", "param": "Buck Henry", "result": "Ship of Spies (1)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95430, "question": "What topics or categories commonly appear in the gallery where Banksy's art is showcased?", "tool": "common/image/appears_in_topic_gallery", "param": "Banksy-ps", "result": "Street art"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95422, "question": "What topic does the olive baboon commonly appear in galleries or collections?", "tool": "common/image/appears_in_topic_gallery", "param": "Olive baboon", "result": "Baboon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95529, "question": "What's one of the languages spoken by the Chinese people in Madagascar?", "tool": "people/ethnicity/languages_spoken", "param": "Chinese people in Madagascar", "result": "Malagasy language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95535, "question": "What languages are spoken among White Americans?", "tool": "people/ethnicity/languages_spoken", "param": "White American", "result": "Slovene language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95610, "question": "Who is one of the characters from the book Breaking Dawn?", "tool": "book/book/characters", "param": "Breaking Dawn", "result": "Afton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95588, "question": "Who are the characters present in the book Who's Who?", "tool": "book/book/characters", "param": "Who's Who?", "result": "Elizabeth Wakefield"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95651, "question": "What film did David Mitchell edit?", "tool": "film/editor/film", "param": "David Mitchell", "result": "Ski School 2"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95680, "question": "What is the name of a film that was edited by Amitabh Shukla?", "tool": "film/editor/film", "param": "Amitabh Shukla", "result": "Chak De! India"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95737, "question": "In which fictional universes does the character Doctor Demonicus appear?", "tool": "fictional_universe/fictional_character/appears_in_these_fictional_universes", "param": "Doctor Demonicus", "result": "Marvel Universe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95770, "question": "What comic book universe does Starhawk appear in?", "tool": "fictional_universe/fictional_character/appears_in_these_fictional_universes", "param": "Starhawk", "result": "Marvel Universe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95782, "question": "What are the names of the asteroids that belong to the asteroid group in astronomy?", "tool": "astronomy/asteroid_group/asteroid_group_members", "param": "Asteroid belt", "result": "5881 Akashi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95801, "question": "Which asteroids are part of the asteroid belt?", "tool": "astronomy/asteroid_group/asteroid_group_members", "param": "Asteroid belt", "result": "11328 Mariotozzi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95899, "question": "What are the marketed formulations of mannitol?", "tool": "medicine/drug/marketed_formulations", "param": "Mannitol", "result": "Mannitol 250 injectable solution"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95882, "question": "What nasal spray contains sodium?", "tool": "medicine/drug/marketed_formulations", "param": "Sodium", "result": "Sodium chloride 26 spray"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95968, "question": "What television program series was created by James Manos, Jr.?", "tool": "tv/tv_program_creator/programs_created", "param": "James Manos, Jr.", "result": "Dexter"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95954, "question": "Which singing competition shows were created by Miditech Pvt. Ltd.?", "tool": "tv/tv_program_creator/programs_created", "param": "Miditech Pvt. Ltd.", "result": "Fame Gurukul"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 95995, "question": "What specific martial art did Junior Dos Santos practice?", "tool": "martial_arts/martial_artist/martial_art", "param": "Junior dos Santos", "result": "Brazilian jiu-jitsu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96040, "question": "What martial art does Esteban de Jesús specialize in?", "tool": "martial_arts/martial_artist/martial_art", "param": "Esteban de Jesús", "result": "Boxing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96102, "question": "Who is the artist behind the artwork \"City Horizon\"?", "tool": "visual_art/artwork/artist", "param": "City Horizon", "result": "Hans Hofmann"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96079, "question": "Who is the artist of the artwork \"Wheatstack\"?", "tool": "visual_art/artwork/artist", "param": "Wheatstack", "result": "Claude Monet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96146, "question": "In what book does the character Fagin appear?", "tool": "book/book_character/appears_in_book", "param": "Fagin", "result": "Fagin the Jew"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96122, "question": "In which book does Marcus Tullius Cicero, a character from Rome, appear?", "tool": "book/book_character/appears_in_book", "param": "Marcus Tullius Cicero", "result": "Julius Caesar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96175, "question": "What drugs are manufactured by Mylan Laboratories Inc.?", "tool": "medicine/drug_manufacturer/drugs_manufactured", "param": "Mylan", "result": "Nadolol 20 tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96228, "question": "Which drugs are manufactured by Hy-Vee?", "tool": "medicine/drug_manufacturer/drugs_manufactured", "param": "Hy-Vee", "result": "Milk Of Magnesia 1200 liquid"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96281, "question": "Who designed the costumes for the film \"Lies in Plain Sight\"?", "tool": "film/film/costume_design_by", "param": "Lies in Plain Sight", "result": "Ingrid Ferrin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96274, "question": "Who designed the costumes for the film \"Copenhagen\"?", "tool": "film/film/costume_design_by", "param": "Copenhagen", "result": "Sarah Moore"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96360, "question": "What type of object is a green dragon?", "tool": "type/object/type", "param": "Tincture of cannabis", "result": "Alcoholic beverage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96322, "question": "What is the general category or classification of Green Mountain College?", "tool": "type/object/type", "param": "Green Mountain College", "result": "Thing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96394, "question": "What is the primary release date of the album \"Nightclubbing\"?", "tool": "music/album/primary_release", "param": "Nightclubbing", "result": "Nightclubbing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96366, "question": "What was the primary release version of the album \"St. Elsewhere\"?", "tool": "music/album/primary_release", "param": "St. Elsewhere", "result": "St. Elsewhere"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96465, "question": "What species is the fictional character Penelope Spectra within the given fictional universe?", "tool": "fictional_universe/fictional_character/species", "param": "Penelope Spectra", "result": "Ghost"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96448, "question": "What species does Chilly Willy belong to within the fictional universe?", "tool": "fictional_universe/fictional_character/species", "param": "Chilly Willy", "result": "Penguin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96489, "question": "Which famous mountain is partially located in Switzerland?", "tool": "location/location/partially_contains", "param": "Switzerland", "result": "Matterhorn"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96519, "question": "Which body of water is the West Bank located next to?", "tool": "location/location/partially_contains", "param": "West Bank", "result": "Dead Sea"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96554, "question": "What specific drug formulation is included in the category of drug formulations?", "tool": "medicine/drug_formulation_category/drug_formulations", "param": "Drug", "result": "Alcohol 600 solution"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96555, "question": "What are some examples of drug formulations in the medicine/drug_formulation_category?", "tool": "medicine/drug_formulation_category/drug_formulations", "param": "Drug", "result": "Benazepril hydrochloride 5 film coated tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96628, "question": "Which countries does the Cimirnariu River flow through?", "tool": "geography/river/basin_countries", "param": "Cimirnariu River", "result": "Ukraine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96622, "question": "What countries are part of the Liard River basin?", "tool": "geography/river/basin_countries", "param": "Liard River", "result": "Canada"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96696, "question": "What are some symptoms associated with sleep apnea?", "tool": "medicine/disease/symptoms", "param": "Sleep apnea", "result": "Mouth breathing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96709, "question": "What's a symptom of muscular dystrophy?", "tool": "medicine/disease/symptoms", "param": "Muscular dystrophy", "result": "Ptosis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96733, "question": "Which newspapers are released in New Hampshire?", "tool": "periodicals/newspaper_circulation_area/newspapers", "param": "New Hampshire", "result": "The Eagle-Tribune"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96775, "question": "What newspapers circulate in Odisha?", "tool": "periodicals/newspaper_circulation_area/newspapers", "param": "Odisha", "result": "The New Indian Express"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96826, "question": "Who is a character from a fictional universe that is a ninja?", "tool": "fictional_universe/character_occupation/characters_with_this_occupation", "param": "Ninja", "result": "Ayane"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96816, "question": "Which characters from TV shows work as special agents?", "tool": "fictional_universe/character_occupation/characters_with_this_occupation", "param": "Special Agent", "result": "Timothy McGee"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96879, "question": "What country does Golica partially fall within?", "tool": "location/location/partially_containedby", "param": "Golica", "result": "Austria"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96905, "question": "Where is Scheienkopf located in Germany?", "tool": "location/location/partially_containedby", "param": "Scheienkopf", "result": "Liechtenstein"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96929, "question": "What neighborhood is located in Miami?", "tool": "location/place_with_neighborhoods/neighborhoods", "param": "Miami", "result": "Bay Point Estates"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96941, "question": "What are the names of neighborhoods in the Delaware Valley?", "tool": "location/place_with_neighborhoods/neighborhoods", "param": "Delaware Valley", "result": "Passyunk Square"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96978, "question": "What type of political ideology is associated with the Navarrese People's Union political party?", "tool": "government/political_party/ideology", "param": "Navarrese People's Union", "result": "Social conservatism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 96993, "question": "What is the ideology of the Nav Samajwadi Party?", "tool": "government/political_party/ideology", "param": "Nava Sama Samaja Party", "result": "Communism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97049, "question": "What family is Woolf Barnato from?", "tool": "people/family_member/family", "param": "Woolf Barnato", "result": "Joel family"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97074, "question": "From which family does the family member Huisheng belong to?", "tool": "people/family_member/family", "param": "Huisheng", "result": "Qing dynasty"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97148, "question": "Which film did Zora Mojsilovic design the costumes for?", "tool": "film/film_costumer_designer/costume_design_for_film", "param": "Zora Mojsilovic", "result": "Cabaret Balkan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97096, "question": "What film did Monique Prudhomme design costumes for?", "tool": "film/film_costumer_designer/costume_design_for_film", "param": "Monique Prudhomme", "result": "Alaska"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97206, "question": "What are the circulation areas of the Bhutan Times?", "tool": "book/newspaper/circulation_areas", "param": "Bhutan Times", "result": "Thimphu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97203, "question": "Where is Columbia Records circulated?", "tool": "book/newspaper/circulation_areas", "param": "Columbia Record", "result": "Columbia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97214, "question": "Which hockey position is played by Martin Erat?", "tool": "ice_hockey/hockey_player/hockey_position", "param": "Martin Erat", "result": "Right wing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97219, "question": "Which position does Hubert Labrie play in ice hockey?", "tool": "ice_hockey/hockey_player/hockey_position", "param": "Hubert Labrie", "result": "Defenseman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97300, "question": "What are Embry Call's powers or abilities in the fictional universe?", "tool": "fictional_universe/fictional_character/powers_or_abilities", "param": "Embry Call", "result": "Shapeshifting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97306, "question": "What powers or abilities does MODOK have?", "tool": "fictional_universe/fictional_character/powers_or_abilities", "param": "MODOK", "result": "Flight"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97374, "question": "What sectors are associated with PRS for Music?", "tool": "organization/organization/sectors", "param": "PRS for Music", "result": "Music industry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97355, "question": "What sectors does the University of Texas Medical Branch conduct research in?", "tool": "organization/organization/sectors", "param": "University of Texas Medical Branch", "result": "Biomedical research"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97391, "question": "What area of activism was Sarah Mair involved in as an activist?", "tool": "activism/activist/area_of_activism", "param": "Sarah Mair", "result": "Women's suffrage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97421, "question": "What area of activism is Edward M. Strait involved in?", "tool": "activism/activist/area_of_activism", "param": "Edward M. Strait", "result": "Labor rights"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97479, "question": "What is the region where the Agta Isarog language is predominantly spoken?", "tool": "language/human_language/region", "param": "Agta, Isarog Language", "result": "Asia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97446, "question": "What region is the Garo language predominantly spoken in?", "tool": "language/human_language/region", "param": "Garo Language", "result": "Asia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97517, "question": "Which episodes were directed by Kim Manners?", "tool": "tv/tv_director/episodes_directed", "param": "Kim Manners", "result": "Unusual Suspects"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97506, "question": "What is an episode Paul Shapiro directed?", "tool": "tv/tv_director/episodes_directed", "param": "Paul Shapiro", "result": "Hiros"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97548, "question": "What kind of diet is beet greens commonly found compatible with dietary restrictions?", "tool": "food/ingredient/compatible_with_dietary_restrictions", "param": "Beet Greens", "result": "Veganism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97578, "question": "What dietary restrictions is bael compatible with?", "tool": "food/ingredient/compatible_with_dietary_restrictions", "param": "Aegle marmelos", "result": "Gluten-free diet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97636, "question": "What is the geographic scope of SecurityMetrics?", "tool": "organization/organization/geographic_scope", "param": "SecurityMetrics", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97627, "question": "What is the geographic scope of the organization National Unity Front?", "tool": "organization/organization/geographic_scope", "param": "National Unity Front", "result": "Bolivia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97651, "question": "What rating does the film \"The Hunger Games: Catching Fire\" have?", "tool": "film/film/rating", "param": "The Hunger Games: Catching Fire", "result": "G"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97657, "question": "What kind of film rating does the movie King's Ransom have?", "tool": "film/film/rating", "param": "King's Ransom", "result": "PG-13 (USA)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97735, "question": "What higher classification does the Mountain Tapir belong to within the taxonomic hierarchy?", "tool": "biology/organism_classification/higher_classification", "param": "Mountain tapir", "result": "Tapir"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97716, "question": "What is the higher classification of Crotalaria longirostrata within the taxonomic hierarchy?", "tool": "biology/organism_classification/higher_classification", "param": "Chipilín", "result": "Crotalaria"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97758, "question": "What is a drug that is administered by inhalation?", "tool": "medicine/drug_administration_route/drug_formulations", "param": "Inhalation", "result": "Mometasone furoate 110 inhalant"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97781, "question": "What is a subcutaneous injection drug formulation?", "tool": "medicine/drug_administration_route/drug_formulations", "param": "Subcutaneous injection", "result": "Candida albicans 20000 injectable solution"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97815, "question": "What major cities are connected by Freeway 1?", "tool": "transportation/road/major_cities", "param": "Freeway 1", "result": "Hsinchu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97821, "question": "Which major cities are connected by the Pan Borneo Highway?", "tool": "transportation/road/major_cities", "param": "Pan-Borneo Highway", "result": "Kota Kinabalu"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97881, "question": "What is the linguistic classification of the Amblong language?", "tool": "rosetta/languoid/languoid_class", "param": "Amblong Language", "result": "Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97873, "question": "What is the languoid class of the Basa-Benue language?", "tool": "rosetta/languoid/languoid_class", "param": "Basa-Benue Language", "result": "Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97947, "question": "What is the administrative parent of Drohobych Raion within the hierarchical administrative division schema?", "tool": "schema/administrative_area/administrative_parent", "param": "Drohobych Raion", "result": "Lviv Oblast"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97928, "question": "What country is the Maradi region located in within the hierarchical administrative division schema?", "tool": "schema/administrative_area/administrative_parent", "param": "Maradi Region", "result": "Niger"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97960, "question": "What artwork was created by Vincent van Gogh?", "tool": "visual_art/visual_artist/artworks", "param": "Vincent van Gogh", "result": "Olive Trees with Yellow Sky and Sun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 97973, "question": "What is a piece of art by Edgar Degas?", "tool": "visual_art/visual_artist/artworks", "param": "Edgar Degas", "result": "Dancers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98030, "question": "Which Niger-Congo languages are spoken in the Democratic Republic of the Congo?", "tool": "language/language_family/languages", "param": "Niger–Congo languages", "result": "Buyu Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98035, "question": "What are some languages within the Niger-Congo language family?", "tool": "language/language_family/languages", "param": "Niger–Congo languages", "result": "Kahe Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98086, "question": "What are the colors of the Algeria National Handball Team?", "tool": "sports/sports_team/colors", "param": "Algeria national handball team", "result": "White"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98101, "question": "What colors represent Maccabi Netanya F.C.?", "tool": "sports/sports_team/colors", "param": "Maccabi Netanya F.C.", "result": "Yellow"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98120, "question": "What is the name of the game with the version titled \"Alien Syndrome\"?", "tool": "cvg/game_version/game", "param": "Alien Syndrome", "result": "Alien Syndrome"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98130, "question": "Which game is \"Shadow of the Beast\"?", "tool": "cvg/game_version/game", "param": "Shadow of the Beast", "result": "Shadow of the Beast"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98195, "question": "What battles were fought during World War I?", "tool": "time/event/includes_event", "param": "World War I", "result": "Battle of Łódź"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98185, "question": "Who was involved in the Cuban Revolution?", "tool": "time/event/includes_event", "param": "Cuban Revolution", "result": "Moncada Barracks"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98230, "question": "What are the different versions or editions available for the computer video game Tales of Vesperia?", "tool": "cvg/computer_videogame/versions", "param": "Tales of Vesperia", "result": "Tales of Vesperia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98218, "question": "What are the different versions or editions available for Rainbow Six Vegas?", "tool": "cvg/computer_videogame/versions", "param": "Tom Clancy's Rainbow Six: Vegas", "result": "Tom Clancy's Rainbow Six: Vegas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98281, "question": "What is the genre of the MacBook podcast?", "tool": "broadcast/content/genre", "param": "Macbook Podcast", "result": "Technology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98262, "question": "What genre of music does RadioIO 70s Pop typically play?", "tool": "broadcast/content/genre", "param": "radioIO 70s POP", "result": "Oldies"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98302, "question": "Name a radio station owned by WOMG.", "tool": "broadcast/radio_station/owner", "param": "WOMG", "result": "Citadel Broadcasting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98310, "question": "Who is the owner of the radio station Heart Wiltshire?", "tool": "broadcast/radio_station/owner", "param": "Heart Wiltshire", "result": "GCap Media"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98357, "question": "Who was responsible for the production design of the film Kino?", "tool": "film/film/film_production_design_by", "param": "Kino", "result": "Chris Marker"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98355, "question": "Who provided the production design for \"Daddy Day Camp\"?", "tool": "film/film/film_production_design_by", "param": "Daddy Day Camp", "result": "Eric Weiler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98428, "question": "What is the taxonomic rank of Desmodus within the biology organism classification hierarchy?", "tool": "biology/organism_classification/rank", "param": "None", "result": "Genus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98408, "question": "What rank of classification does Candida parapsilosis hold within the biology organism classification hierarchy?", "tool": "biology/organism_classification/rank", "param": "Candida parapsilosis", "result": "Species"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98462, "question": "What medical condition is indicated by the symptom of renal colic?", "tool": "medicine/symptom/symptom_of", "param": "Renal colic", "result": "Pyelonephritis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98474, "question": "What medical condition is hypercapnia a symptom of?", "tool": "medicine/symptom/symptom_of", "param": "Hypercapnia", "result": "Emphysema"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98502, "question": "What sport does the USC Trojans football team belong to?", "tool": "sports/sports_team/sport", "param": "USC Trojans football", "result": "American football"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98522, "question": "What kind of sport does the Delaware State Hornets football team play?", "tool": "sports/sports_team/sport", "param": "Delaware State Hornets football", "result": "American football"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98558, "question": "What is the legal structure of Redrow Plc?", "tool": "organization/organization/legal_structure", "param": "Redrow plc", "result": "Public company"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98568, "question": "What legal structure does Coffee 1 have as an organization?", "tool": "organization/organization/legal_structure", "param": "Coffee 1", "result": "Public company"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98620, "question": "What is the public broadcasting radio station in Mobile, Alabama, categorized by its radio format?", "tool": "broadcast/radio_format/stations", "param": "Public broadcasting", "result": "WHIL-FM"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98598, "question": "Which radio station in the greater Dayton area broadcasts classical music?", "tool": "broadcast/radio_format/stations", "param": "Classical music", "result": "WDPR"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98656, "question": "What characters are part of the DC Universe?", "tool": "fictional_universe/fictional_universe/characters", "param": "DC Universe", "result": "Bette Kane"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98644, "question": "Who is a character that appeared in \"Harry Potter and the Order of the Phoenix\"?", "tool": "fictional_universe/fictional_universe/characters", "param": "Harry Potter", "result": "Euan Abercrombie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98714, "question": "What is the name of the casting director for the film \"Jackie\"?", "tool": "film/film/film_casting_director", "param": "Jackie", "result": "Marian van Nieuwenhuyzen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98711, "question": "Who is the casting director of the film \"Almost Heroes\"?", "tool": "film/film/film_casting_director", "param": "Almost Heroes", "result": "Barbara Cohen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98746, "question": "Which film festival previewed \"Boy A\"?", "tool": "film/film/film_festivals", "param": "Boy A", "result": "2008 Berlin International Film Festival"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98757, "question": "What film festival featured the movie \"A Christmas Tale\"?", "tool": "film/film/film_festivals", "param": "La guerra", "result": "2008 Cannes Film Festival"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98802, "question": "What are the administrative divisions within a country called?", "tool": "location/country/second_level_divisions", "param": "United States of America", "result": "Culpeper County"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98766, "question": "What are the second-level administrative divisions in Italy?", "tool": "location/country/second_level_divisions", "param": "Italy", "result": "Trentino"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98817, "question": "What airport is near Alicante?", "tool": "location/location/nearby_airports", "param": "Alicante", "result": "Alicante–Elche Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98849, "question": "What's an airport near Umnak?", "tool": "location/location/nearby_airports", "param": "Umnak", "result": "Nikolski Air Station"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98860, "question": "Who has played the small forward position in basketball?", "tool": "basketball/basketball_position/players", "param": "Small forward", "result": "Quincy Lewis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98886, "question": "Who plays shooting guard in basketball?", "tool": "basketball/basketball_position/players", "param": "Shooting guard", "result": "Awvee Storey"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98915, "question": "Who is interred at Holy Cross Cemetery?", "tool": "people/place_of_interment/interred_here", "param": "Holy Cross Cemetery", "result": "ZaSu Pitts"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98925, "question": "Who was the monarch interred in Jerusalem?", "tool": "people/place_of_interment/interred_here", "param": "Jerusalem", "result": "Rehoboam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98954, "question": "Which films did Syd Cain work on as a film production designer?", "tool": "film/film_production_designer/films_production_designed", "param": "Syd Cain", "result": "Aces High"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98950, "question": "Joseph C. Nemec III was the production designer for which film?", "tool": "film/film_production_designer/films_production_designed", "param": "Joseph C. Nemec III", "result": "Twister"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99004, "question": "What weight division does Mohamed Bahari compete in?", "tool": "sports/boxer/weight_division", "param": "Mohamed Bahari", "result": "Middleweight"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 98993, "question": "What is the weight division in which Pedro Flores competes?", "tool": "sports/boxer/weight_division", "param": "Pedro Flores", "result": "Lightweight"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99058, "question": "What is a drug with a circle-shaped tablet?", "tool": "medicine/drug_form_shape/drugs_with_this_shape", "param": "Circle", "result": "Sertraline Hydrochloride 50 film coated tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99038, "question": "What kind of drug comes in an oval shape form?", "tool": "medicine/drug_form_shape/drugs_with_this_shape", "param": "Oval", "result": "Septra DS 800/160 tablet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99069, "question": "Where are the countries located that the basin of Lake Geneva extends into?", "tool": "geography/lake/basin_countries", "param": "Geneva Lake", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99094, "question": "What countries does the barrier lake's basin extend into?", "tool": "geography/lake/basin_countries", "param": "Barrier Lake", "result": "Canada"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99144, "question": "What campus is the Evangelical Seminary located on?", "tool": "education/educational_institution/campuses", "param": "Evangelical Seminary", "result": "Evangelical Seminary"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99113, "question": "What campus is the University of North Alabama located on?", "tool": "education/educational_institution/campuses", "param": "University of North Alabama", "result": "University of North Alabama"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99168, "question": "What is the soundtrack called for the film \"101 Dalmatians\"?", "tool": "film/film/soundtrack", "param": "101 Dalmatians", "result": "101 Dalmatians"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99179, "question": "What was the name of the soundtrack for the film \"The Manchurian Candidate\"?", "tool": "film/film/soundtrack", "param": "The Manchurian Candidate", "result": "The Manchurian Candidate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99197, "question": "What mountain range is Caraiman Peak located in?", "tool": "geography/mountain/mountain_range", "param": "Caraiman Peak", "result": "Southern Carpathians"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99230, "question": "Which mountain range does Serratus Mountain belong to?", "tool": "geography/mountain/mountain_range", "param": "Serratus Mountain", "result": "Coast Mountains"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99251, "question": "What play is the film \"Vanya on 42nd Street\" adapted from?", "tool": "media_common/adaptation/adapted_from", "param": "Vanya on 42nd Street", "result": "Uncle Vanya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99265, "question": "What was the adaptation of \"First Impressions\" adapted from?", "tool": "media_common/adaptation/adapted_from", "param": "First Impressions", "result": "Pride and Prejudice"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99309, "question": "What areas were affected by Tropical Storm Hermine?", "tool": "meteorology/tropical_cyclone/affected_areas", "param": "Tropical Storm Hermine", "result": "Louisiana"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99315, "question": "What areas were affected by Hurricane Cindy?", "tool": "meteorology/tropical_cyclone/affected_areas", "param": "Hurricane Cindy", "result": "Yucatán Peninsula"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99334, "question": "Who was the architect responsible for designing Villa Gazzotti Grimani?", "tool": "architecture/structure/architect", "param": "Villa Gazzotti Grimani", "result": "Andrea Palladio"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99352, "question": "Who is the architect responsible for designing Culzean Castle?", "tool": "architecture/structure/architect", "param": "Culzean Castle", "result": "Robert Adam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99385, "question": "What genre of software does Plex belong to?", "tool": "computer/software/software_genre", "param": "Plex", "result": "Media player"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99373, "question": "What genre of software does PocketSpeccy belong to?", "tool": "computer/software/software_genre", "param": "PocketSpeccy", "result": "Emulator"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99398, "question": "What image is associated with Edward VII of the United Kingdom?", "tool": "common/topic/image", "param": "Edward VII", "result": "94253553.jpg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99401, "question": "What's an image that covers the Battle of Antietam?", "tool": "common/topic/image", "param": "Battle of Antietam", "result": "Battle of Antietam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99442, "question": "What sanitizing drug comes in liquid form and what formulations are available in this form?", "tool": "medicine/drug_dosage_form/formulations_available_in_this_form", "param": "Liquid", "result": "Benzalkonium chloride 0.0012 liquid"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99474, "question": "What formulations are available in the form of a solution?", "tool": "medicine/drug_dosage_form/formulations_available_in_this_form", "param": "Solution", "result": "Tetrahydrozoline hydrochloride 0.5 solution"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99484, "question": "What is the parent disease associated with lymphocytic colitis?", "tool": "medicine/disease/parent_disease", "param": "Lymphocytic colitis", "result": "Inflammatory bowel disease"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99504, "question": "What is the parent disease of schizoid personality disorder?", "tool": "medicine/disease/parent_disease", "param": "Schizoid personality disorder", "result": "Personality disorder"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99555, "question": "What type of structure is the Ultimate Picture Palace in terms of building function?", "tool": "architecture/building/building_function", "param": "Ultimate Picture Palace", "result": "Movie theater"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99523, "question": "What is the building function of Cliftonville Hotel in Cromer?", "tool": "architecture/building/building_function", "param": "Cliftonville Hotel, Cromer", "result": "Hotel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99559, "question": "What is the legal status of famciclovir in terms of medicine/drug/legal_status?", "tool": "medicine/drug/legal_status", "param": "Famciclovir", "result": "Prescription drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99586, "question": "What is the legal status of iron pentacarbonyl?", "tool": "medicine/drug/legal_status", "param": "Iron pentacarbonyl", "result": "Prescription drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99626, "question": "What type of mountain is the Tskhouk-Karckar?", "tool": "geography/mountain/mountain_type", "param": "Tskhouk-Karckar", "result": "Volcano"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99601, "question": "What type of mountain is Tower Mountain?", "tool": "geography/mountain/mountain_type", "param": "Tower Mountain", "result": "Metamorphic rock"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99666, "question": "What film is the soundtrack \"Another Cinderella Story\" from?", "tool": "music/soundtrack/film", "param": "Another Cinderella Story", "result": "Another Cinderella Story"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99672, "question": "What is the name of the soundtrack for the film \"Frauds\"?", "tool": "music/soundtrack/film", "param": "None", "result": "Frauds"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99681, "question": "What is the active component of the drug hyaluronan?", "tool": "medicine/drug/active_moieties", "param": "Hyaluronan", "result": "Hyaluronan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99682, "question": "What are the active moieties of the drug Procalamine?", "tool": "medicine/drug/active_moieties", "param": "Glycerin/Isoleucine/Leucine/Lysine/Methionine/Phenylalanine/Threonine/Tryptophan/Valine/Alanine/Glycine/Arginine/Histidine/Proline/Serine/Cysteine/Sodium cation/Magnesium cation/Calcium cation/Potassium cation/Phosphoric acid", "result": "Methionine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99744, "question": "What is the name of a law enforcement agency?", "tool": "organization/organization_sector/organizations_in_this_sector", "param": "Law enforcement agency", "result": "West Bengal Police"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99742, "question": "What is the name of an organization in the real estate sector?", "tool": "organization/organization_sector/organizations_in_this_sector", "param": "Real Estate", "result": "Bolanz & Miller"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99781, "question": "Who are examples of centerman hockey players in ice hockey?", "tool": "ice_hockey/hockey_position/players", "param": "Centerman", "result": "Tomáš Plekanec"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99786, "question": "Which player is a centerman in ice hockey?", "tool": "ice_hockey/hockey_position/players", "param": "Centerman", "result": "Donald MacLean"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99797, "question": "Who were the associated artists during the High Renaissance period?", "tool": "visual_art/art_period_movement/associated_artists", "param": "High Renaissance", "result": "Leonardo da Vinci"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99801, "question": "Who are some artists associated with the minimalism art movement?", "tool": "visual_art/art_period_movement/associated_artists", "param": "Minimalism", "result": "Jo Baer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99838, "question": "What are some releases from Epic Records?", "tool": "music/record_label/releases", "param": "Epic Records", "result": "Swamp Ophelia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99858, "question": "What is a release from Barclay Records?", "tool": "music/record_label/releases", "param": "Barclay Records", "result": "Chatterton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99885, "question": "Who discovered 4350 Shibecha in astronomy?", "tool": "astronomy/astronomical_discovery/discoverer", "param": "4350 Shibecha", "result": "Seiji Ueda"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99875, "question": "What is the discoverer of the astronomical discovery associated with 12229 Paulsson?", "tool": "astronomy/astronomical_discovery/discoverer", "param": "12229 Paulsson", "result": "Claes-Ingvar Lagerkvist"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99924, "question": "What is the mouth of the Clearwater River?", "tool": "geography/river/mouth", "param": "Clearwater River", "result": "Athabasca River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99921, "question": "Which river connects with the West Branch Susquehanna River at the mouth?", "tool": "geography/river/mouth", "param": "West Branch Susquehanna River", "result": "Susquehanna River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99943, "question": "What kind of license was Truphone released under?", "tool": "computer/software/license", "param": "truphone", "result": "Freeware"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99958, "question": "Who licensed the software Evernote?", "tool": "computer/software/license", "param": "Evernote", "result": "Proprietary software"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 99994, "question": "What structures are designed by Owen Jones?", "tool": "architecture/architect/structures_designed", "param": "Owen Jones", "result": "The Crystal Palace"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100008, "question": "What hotels did Robert Lorimer design?", "tool": "architecture/architect/structures_designed", "param": "Robert Lorimer", "result": "Greywalls"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100022, "question": "What are compatible ingredients for a vegan diet?", "tool": "food/dietary_restriction/compatible_ingredients", "param": "Veganism", "result": "Żubrówka"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100045, "question": "What ingredients are compatible with a gluten-free diet?", "tool": "food/dietary_restriction/compatible_ingredients", "param": "Gluten-free diet", "result": "Basmati"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100064, "question": "What adaptations have been made from the work \"Mother Night\"?", "tool": "media_common/adapted_work/adaptations", "param": "Mother Night", "result": "Mother Night"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100051, "question": "What is an adaptation of the work \"Twelve Angry Men\"?", "tool": "media_common/adapted_work/adaptations", "param": "Twelve Angry Men", "result": "12 Angry Men"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100098, "question": "What type of lake is Lac des Chats?", "tool": "geography/lake/lake_type", "param": "Lac des Chats", "result": "Reservoir"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100117, "question": "What type of lake is Elgygytgyn Lake?", "tool": "geography/lake/lake_type", "param": "Elgygytgyn Lake", "result": "Crater lake"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100146, "question": "What discovery was made by the Palomar Observatory in the field of astronomy?", "tool": "astronomy/astronomical_observatory/discoveries", "param": "Palomar Observatory", "result": "(7286) 1990 QZ4"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100149, "question": "What was a discovery that was made at La Silla Observatory?", "tool": "astronomy/astronomical_observatory/discoveries", "param": "La Silla Observatory", "result": "11055 Honduras"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100180, "question": "What type of rugby is Luke Helliwell associated with?", "tool": "rugby/rugby_player/type_of_rugby", "param": "Luke Helliwell", "result": "Rugby league"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100183, "question": "What league does Steve Crossley play in?", "tool": "rugby/rugby_player/type_of_rugby", "param": "Steve Crossley", "result": "Rugby league"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100199, "question": "Which flavor is associated with the manufactured drug form of antacid 200/20/200 liquid?", "tool": "medicine/manufactured_drug_form/flavor", "param": "Antacid 200/20/200 liquid", "result": "Mentha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100195, "question": "What is the flavor of Rexall Nicotine 2 Chewing Gum?", "tool": "medicine/manufactured_drug_form/flavor", "param": "Rexall Nicotine 2 chewing gum", "result": "Mentha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100255, "question": "What are the common topics or subjects related to Sylvester Wager?", "tool": "common/topic/subjects", "param": "Sylvester Wager", "result": "Arts and Culture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100227, "question": "What are the common subjects related to the topic of \"Tabloids: Modern Taliban\"?", "tool": "common/topic/subjects", "param": "Tabloids: Modern Taliban?", "result": "Terrorism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100285, "question": "What is the biological classification of an organism into male, female, or other, when considering biology and the concept of sex?", "tool": "biology/organism/sex", "param": "Notional", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100278, "question": "What is the gender of the racehorse Blandford?", "tool": "biology/organism/sex", "param": "Blandford", "result": "Male"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100317, "question": "What type of cuisine is served at Max & Erma's?", "tool": "dining/restaurant/cuisine", "param": "Max & Erma's", "result": "Barbecue"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100302, "question": "What type of cuisine is served at Restaurant Gordon Ramsay?", "tool": "dining/restaurant/cuisine", "param": "Restaurant Gordon Ramsay", "result": "French food"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100329, "question": "What type of organism is Empire Maker?", "tool": "biology/organism/organism_type", "param": "Empire Maker", "result": "Horse"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100327, "question": "What is the organism type of the right boy?", "tool": "biology/organism/organism_type", "param": "Right Boy", "result": "Horse"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100370, "question": "Which school district is Mater Academy Charter School located in?", "tool": "education/school/school_district", "param": "Mater Academy Charter School", "result": "Miami-Dade County Public Schools"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100363, "question": "What school district is Pocomoke High School in?", "tool": "education/school/school_district", "param": "Pocomoke High School", "result": "Worcester County Public Schools"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100420, "question": "What destinations are served by Duxford Aerodrome?", "tool": "aviation/airport/serves", "param": "Duxford Aerodrome", "result": "Cambridge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100393, "question": "What destinations does Salt Lake City International Airport serve?", "tool": "aviation/airport/serves", "param": "Salt Lake City International Airport", "result": "Salt Lake Marriott Downtown at City Creek"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100452, "question": "Which cities does the Dordogne River flow through?", "tool": "geography/river/cities", "param": "Dordogne", "result": "Bordeaux"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100449, "question": "What are the cities through which the river Trent flows?", "tool": "geography/river/cities", "param": "River Trent", "result": "Long Eaton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100470, "question": "On what type of material or surface does the artwork \"Liberty Leading the People\" rest?", "tool": "visual_art/artwork/support", "param": "Liberty Leading the People", "result": "Canvas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100476, "question": "What medium was the artwork \"The Fairy Feller's Master-Stroke\" painted on?", "tool": "visual_art/artwork/support", "param": "The Fairy Feller's Master-Stroke", "result": "Canvas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100518, "question": "What educational institution is part of the Saint Leo University campus?", "tool": "education/educational_institution_campus/educational_institution", "param": "Saint Leo University", "result": "Saint Leo University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100504, "question": "What is the name of the educational institution that owns Bellingham Technical College?", "tool": "education/educational_institution_campus/educational_institution", "param": "Bellingham Technical College", "result": "Bellingham Technical College"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100536, "question": "Which constellation does HD 183263 belong to?", "tool": "astronomy/star/constellation", "param": "HD 183263", "result": "Aquila"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100542, "question": "What constellation does HD 127304 belong to?", "tool": "astronomy/star/constellation", "param": "HD 127304", "result": "Boötes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100572, "question": "What is the lowest grade taught at Woodrow Wilson High School?", "tool": "education/school/lowest_grade_taught", "param": "Woodrow Wilson High School", "result": "Ninth grade"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100579, "question": "What is the lowest grade level taught at Ponderosa High School in Parker, Colorado?", "tool": "education/school/lowest_grade_taught", "param": "Ponderosa High School", "result": "Ninth grade"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100597, "question": "What year did the Summer Olympics include the men's weightlifting, middleweight (67.5-75kg) competition?", "tool": "olympics/olympic_event/olympic_games_contested", "param": "Men's Weightlifting, Middleweight 67.5-75kg", "result": "1972 Summer Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100611, "question": "The event \"Men's 100 metre team running deer, single shots\" was contested in what Olympic Games?", "tool": "olympics/olympic_event/olympic_games_contested", "param": "Men's 100 metre team running deer, single shots", "result": "1912 Summer Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100629, "question": "What are the topics of interest for the LA Times City Desk?", "tool": "yupgrade/user/topics", "param": "LA Times City Desk", "result": "South Los Angeles"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100635, "question": "What are the topics of interest for Wired?", "tool": "yupgrade/user/topics", "param": "Wired", "result": "Fashion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100664, "question": "What are some risk factors associated with erectile dysfunction?", "tool": "medicine/disease/risk_factors", "param": "Erectile dysfunction", "result": "Alcoholism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100676, "question": "What are the risk factors for developing myocardial ischemia?", "tool": "medicine/disease/risk_factors", "param": "Myocardial Ischemia", "result": "Tobacco smoking"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100707, "question": "What is the name of a famous artwork created using oil paint?", "tool": "visual_art/visual_art_medium/artworks", "param": "Oil paint", "result": "Ships on a Stormy Sea"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100696, "question": "Which place is Gelatin Silver Print featured as an artwork medium?", "tool": "visual_art/visual_art_medium/artworks", "param": "Gelatin silver print", "result": "Cafe Near Pinole, California"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100732, "question": "What is the name of a well-known practitioner within the martial art of boxing?", "tool": "martial_arts/martial_art/well_known_practitioner", "param": "Boxing", "result": "Benny Valgar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100740, "question": "Who is a well-known practitioner in the martial art of professional boxing, specifically in the junior middleweight division?", "tool": "martial_arts/martial_art/well_known_practitioner", "param": "Boxing", "result": "Philip Holiday"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100753, "question": "Where is the Northern Virginia Eagles sports team based?", "tool": "sports/sports_team/location", "param": "Northern Virginia Eagles", "result": "Fairfax"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100772, "question": "Where is the home location of the Iran National Handball Team?", "tool": "sports/sports_team/location", "param": "Iran men's national handball team", "result": "Iran"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100774, "question": "What type or category of administrative area includes Prince George County, Virginia?", "tool": "schema/administrative_area/administrative_area_type", "param": "Prince George County", "result": "U.S. county"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100795, "question": "What is the administrative type of Burgdorf, Switzerland?", "tool": "schema/administrative_area/administrative_area_type", "param": "Burgdorf, Switzerland", "result": "City/Town/Village"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100814, "question": "What type of artworks are created in the visual art form of buildings made of glass?", "tool": "visual_art/visual_art_form/artworks", "param": "Glass", "result": "Olympic Tower"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100806, "question": "Name specific visual art form painting?", "tool": "visual_art/visual_art_form/artworks", "param": "Painting", "result": "Te Faaturuma (The Brooding Woman)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100863, "question": "What are some examples of automotive classes or categories that include station wagons?", "tool": "automotive/automotive_class/examples", "param": "Station Wagon", "result": "Dodge Caliber"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100842, "question": "What is an example of an automotive class or category that includes pickup trucks?", "tool": "automotive/automotive_class/examples", "param": "Pickup truck", "result": "Volkswagen LT"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100883, "question": "Who is one of the designers for the computer video game SimTunes?", "tool": "cvg/computer_videogame/designers", "param": "SimTunes", "result": "Toshio Iwai"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100877, "question": "Who were the designers involved in creating the LegendMUD video game?", "tool": "cvg/computer_videogame/designers", "param": "LegendMUD", "result": "Raph Koster"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100918, "question": "Is Ryan Craig right-handed or left-handed?", "tool": "ice_hockey/hockey_player/shoots", "param": "Ryan Craig", "result": "Left-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100921, "question": "Which hand does hockey player Fabian Brunnström shoot with?", "tool": "ice_hockey/hockey_player/shoots", "param": "Fabian Brunnström", "result": "Left-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100941, "question": "What is the hub for Great Lakes Airlines?", "tool": "aviation/airline/hubs", "param": "Great Lakes Airlines", "result": "Phoenix Sky Harbor International Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100936, "question": "What are the main airports where Volotea operates a significant number of flights and has a strong presence in terms of routes and passenger traffic?", "tool": "aviation/airline/hubs", "param": "Volotea", "result": "Nantes Atlantique Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100981, "question": "Which country is the postal code 08830 located in?", "tool": "location/postal_code/country", "param": "08830", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100983, "question": "What country is associated with the postal code 98225?", "tool": "location/postal_code/country", "param": "98225", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100993, "question": "What religion is practiced at Temple Sinai?", "tool": "religion/place_of_worship/religion", "param": "Temple Sinai", "result": "Reform Judaism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 100991, "question": "What religion is practiced at St. Philip's Cathedral, Birmingham?", "tool": "religion/place_of_worship/religion", "param": "St Philip's Cathedral, Birmingham", "result": "Anglicanism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101035, "question": "The Final Fantasy Legend belongs to which game series?", "tool": "cvg/computer_videogame/game_series", "param": "The Final Fantasy Legend", "result": "Final Fantasy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101032, "question": "What series does Tom Clancy's Ghost Recon 2 belong to?", "tool": "cvg/computer_videogame/game_series", "param": "Tom Clancy's Ghost Recon 2", "result": "Tom Clancy's Ghost Recon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101065, "question": "Oh Je-kwan was the designer for which film set?", "tool": "film/film_set_designer/film_sets_designed", "param": "Oh Je-kwan", "result": "Hansel and Gretel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101058, "question": "What film sets were designed by Francesca Lo Schiavo?", "tool": "film/film_set_designer/film_sets_designed", "param": "Francesca Lo Schiavo", "result": "Gangs of New York"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101081, "question": "What is a film with a PG content rating?", "tool": "film/content_rating/film", "param": "PG (USA)", "result": "The China Syndrome"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101084, "question": "What is a film that was rated G?", "tool": "film/content_rating/film", "param": "G (USA)", "result": "102 Dalmatians"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101108, "question": "What films were shown at the 2010 Hong Kong International Film Festival?", "tool": "film/film_festival_event/films", "param": "2010 Hong Kong International Film Festival", "result": "A Serious Man"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101109, "question": "What's one of the films that screened at the 1969 Cannes Film Festival?", "tool": "film/film_festival_event/films", "param": "1969 Cannes Film Festival", "result": "Isadora"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101147, "question": "Who decorated the film set of Sex and the City 2?", "tool": "film/film/film_set_decoration_by", "param": "Sex and the City 2", "result": "Lee Sandales"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101150, "question": "Who was in charge of the set decoration for the film \"National Velvet\"?", "tool": "film/film/film_set_decoration_by", "param": "National Velvet", "result": "Edwin B. Willis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101187, "question": "Which actress was mentioned in reviews of \"The Ugly Truth\" on www.usatoday.com?", "tool": "reviews/review/mentions", "param": "Review of Ugly Truth, The at www.usatoday.com", "result": "Katherine Heigl"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101166, "question": "What film is mentioned in the review of \"Burning Plain\" at www.avclub.com?", "tool": "reviews/review/mentions", "param": "Review of Burning Plain, The at www.avclub.com", "result": "Babel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101213, "question": "Where does the Russian River originate?", "tool": "geography/river/origin", "param": "Russian River", "result": "California Coast Ranges"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101219, "question": "Where does the river Leine originate from?", "tool": "geography/river/origin", "param": "Leine", "result": "Thuringia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101230, "question": "What airline uses Taiwan Taoyuan International Airport as a hub for connecting flights?", "tool": "aviation/airport/hub_for", "param": "Taiwan Taoyuan International Airport", "result": "EVA Air"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101234, "question": "What is the airline that uses Atlantic City International Airport as a hub for connecting flights?", "tool": "aviation/airport/hub_for", "param": "Atlantic City International Airport", "result": "Spirit Airlines"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101257, "question": "What are the lower classifications of the family Motacillidae?", "tool": "biology/organism_classification/lower_classifications", "param": "Motacillidae", "result": "Wagtail"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101276, "question": "What are the lower classifications of the Eastern Gorilla?", "tool": "biology/organism_classification/lower_classifications", "param": "Eastern gorilla", "result": "Eastern lowland gorilla"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101279, "question": "Name a film made in the format of Super 35.", "tool": "film/film_format/film_format", "param": "Super 35", "result": "Munich"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101299, "question": "What is an example of a film in 35mm format?", "tool": "film/film_format/film_format", "param": "35 mm film", "result": "The Chained One"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101315, "question": "What high school is part of the Littleton Public Schools district?", "tool": "education/school_district/schools", "param": "Littleton Public Schools", "result": "Arapahoe High School"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101310, "question": "What school is situated within the Pittsburgh Public Schools district?", "tool": "education/school_district/schools", "param": "Pittsburgh Public Schools", "result": "Westinghouse High School"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101337, "question": "What genre of visual art does the artwork \"Boy with Squirrel\" belong to?", "tool": "visual_art/artwork/art_genre", "param": "Boy with Squirrel", "result": "Portrait"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101354, "question": "What art genre does the artwork \"Portrait of Helena van der Schalcke\" belong to?", "tool": "visual_art/artwork/art_genre", "param": "Portrait of Helana van der Schalcke", "result": "Portrait"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101368, "question": "What pretty girl rock singer is featured on the album \"Oh Africa\"?", "tool": "music/album/featured_artists", "param": "Oh Africa", "result": "Keri Hilson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101369, "question": "Who is a featured artist on the album Hood Rich Anthem?", "tool": "music/album/featured_artists", "param": "Hood Rich Anthem", "result": "Yo Gotti"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101412, "question": "Which maker produces the Chrysler Aspen?", "tool": "automotive/model/make", "param": "Chrysler Aspen", "result": "Chrysler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101408, "question": "Who is the maker of the Mitsubishi Pajero?", "tool": "automotive/model/make", "param": "Mitsubishi Pajero", "result": "Mitsubishi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101425, "question": "Who are the forwards in this specific form of rugby?", "tool": "rugby/type_of_rugby/players_of_this_type_of_rugby", "param": "Rugby union", "result": "Reg Skrimshire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101430, "question": "Who are the players of rugby union?", "tool": "rugby/type_of_rugby/players_of_this_type_of_rugby", "param": "Rugby union", "result": "Louis Armary"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101461, "question": "What tracks did Jonas Berggren engineer?", "tool": "music/engineer/tracks_engineered", "param": "Jonas Berggren", "result": "Dimension of Depth"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101457, "question": "What tracks has Devin Townsend helped to engineer?", "tool": "music/engineer/tracks_engineered", "param": "Devin Townsend", "result": "Hope"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101492, "question": "What is the place of origin of the 126th Pennsylvania Infantry?", "tool": "military/military_unit/place_of_origin", "param": "126th Pennsylvania Infantry", "result": "Pennsylvania"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101482, "question": "Which state is the 15th Pennsylvania Cavalry from?", "tool": "military/military_unit/place_of_origin", "param": "15th Pennsylvania Cavalry", "result": "Pennsylvania"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101502, "question": "What is a list of characters belonging to the human species within a fictional universe?", "tool": "fictional_universe/character_species/characters_of_this_species", "param": "Homo sapiens", "result": "Kathryn Janeway"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101505, "question": "What's an example of a fictional mutant character?", "tool": "fictional_universe/character_species/characters_of_this_species", "param": "Mutant", "result": "Donyell Taylor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101549, "question": "Which cyclone affected South Korea in meteorology's cyclone-affected area?", "tool": "meteorology/cyclone_affected_area/cyclones", "param": "South Korea", "result": "Typhoon Shanshan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101526, "question": "What is the name of the cyclone that affected Haiti?", "tool": "meteorology/cyclone_affected_area/cyclones", "param": "Haiti", "result": "Tropical Storm Claudette"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101563, "question": "Who manufactures the Toyota Auris?", "tool": "cars_refactor/model/make", "param": "Toyota Auris", "result": "Toyota"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101575, "question": "What is the make of the BMW M6?", "tool": "cars_refactor/model/make", "param": "BMW M6", "result": "BMW"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101580, "question": "Where is LaSalle County/Streator City located?", "tool": "location/hud_county_place/place", "param": "LaSalle County / Streator city", "result": "Streator"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101594, "question": "What information do you need about Pewee Valley?", "tool": "location/hud_county_place/place", "param": "Pewee Valley", "result": "Pewee Valley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101613, "question": "Which political party aligns with the ideology of liberalism?", "tool": "government/political_ideology/political_parties", "param": "Liberalism", "result": "Congress for the Republic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101618, "question": "Name a political party with the ideology populism.", "tool": "government/political_ideology/political_parties", "param": "Populism", "result": "Union for the Republic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101640, "question": "What genre of short story is \"The Adventure of Exham Priory\"?", "tool": "book/short_story/genre", "param": "The Adventure of Exham Priory", "result": "Mystery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101639, "question": "What genre does \"The Dream in the Witch House\" belong to?", "tool": "book/short_story/genre", "param": "The Dreams in the Witch House", "result": "Short story"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101678, "question": "What is the active moiety of polysorbate 80?", "tool": "medicine/drug_ingredient/active_moiety_of_drug", "param": "Polysorbate 80", "result": "Zinc/Polysorbate 80/Naphazoline/Hypromelloses"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101676, "question": "What is the active moiety of the drug entacapone?", "tool": "medicine/drug_ingredient/active_moiety_of_drug", "param": "Entacapone", "result": "Carbidopa/Levodopa/Entacapone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101697, "question": "What are the administrative divisions within Canada called?", "tool": "location/country/administrative_divisions", "param": "Canada", "result": "Saskatchewan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101699, "question": "What is an administrative division in Slovenia?", "tool": "location/country/administrative_divisions", "param": "Slovenia", "result": "Postojna"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101714, "question": "What is Risen Star's gender?", "tool": "thoroughbredracing/thoroughbred_racehorse/sex", "param": "Risen Star", "result": "Stallion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101726, "question": "What is the gender of Conquistador Cielo, a thoroughbred racehorse?", "tool": "thoroughbredracing/thoroughbred_racehorse/sex", "param": "Conquistador Cielo", "result": "Stallion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101737, "question": "Who is the recording engineer for the album \"The Unforgettable Fire\"?", "tool": "music/recording/engineer", "param": "The Unforgettable Fire", "result": "Brian Eno"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101751, "question": "Who was the sound engineer for the recording of \"The Centipede\"?", "tool": "music/recording/engineer", "param": "The Centipede", "result": "Chris Vrenna"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101757, "question": "What is the name of the episode before \"Talking Board\"?", "tool": "tv/tv_series_episode/previous_episode", "param": "Talking Board", "result": "Lightning Rod"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101758, "question": "What was the preceding episode of the TV series Washington, D.C.?", "tool": "tv/tv_series_episode/previous_episode", "param": "Washington, D.C.", "result": "Baltimore"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101785, "question": "What subject is the SFX Award for Best Graphic Novel awarded in?", "tool": "award/award_category/disciplines_or_subjects", "param": "SFX Award for Best Graphic Novel", "result": "Graphic novel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101781, "question": "What are the subjects associated with the Stalker Award for Best Translated Story?", "tool": "award/award_category/disciplines_or_subjects", "param": "Stalker Award for Best Translated Story", "result": "Literature"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101807, "question": "Which company manufactured the Curtiss SB2C Helldiver?", "tool": "aviation/aircraft_model/manufacturer", "param": "Curtiss SB2C Helldiver", "result": "Curtiss-Wright"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101806, "question": "Who manufactures the Sikorsky CH-53K Super Stallion?", "tool": "aviation/aircraft_model/manufacturer", "param": "Sikorsky CH-53K King Stallion", "result": "Sikorsky Aircraft"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101839, "question": "What's a football team that plays in the English Premier League (EPL)?", "tool": "sports/sport/teams", "param": "Soccer", "result": "Manchester United F.C."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101843, "question": "Which baseball team participates in the Cuban National Series?", "tool": "sports/sport/teams", "param": "Baseball", "result": "Naranjas de Villa Clara"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101858, "question": "What genre of play is \"Black Watch\"?", "tool": "theater/play/genre", "param": "Black Watch", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101872, "question": "What genre of play is \"Die Mommie Die!\"?", "tool": "theater/play/genre", "param": "Die Mommie Die!", "result": "Satire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101886, "question": "Who is an academic advisor of Vladimir Steklov?", "tool": "education/academic/advisors", "param": "Vladimir Steklov", "result": "Aleksandr Lyapunov"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101877, "question": "Who is an advisor for Charles Thomson Rees Wilson within the context of his educational journey?", "tool": "education/academic/advisors", "param": "Charles Thomson Rees Wilson", "result": "Joseph John Thomson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101914, "question": "Who owns the Orlando Sentinel newspaper?", "tool": "book/newspaper/owner", "param": "Orlando Sentinel", "result": "Tribune Media"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101907, "question": "Who owns the Plainview Daily Herald?", "tool": "book/newspaper/owner", "param": "Plainview Daily Herald", "result": "Hearst Corporation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101928, "question": "What are the members of the House of Romanov?", "tool": "people/family/members", "param": "House of Romanov", "result": "Prince Nikita Romanov"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101926, "question": "Who among the members of the House of Bourbon was killed by the guillotine?", "tool": "people/family/members", "param": "House of Bourbon", "result": "Louis Philippe II, Duke of Orléans"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101961, "question": "What is ovarian cancer the subject of?", "tool": "common/topic/subject_of", "param": "Ovarian cancer", "result": "ONCOblot Labs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101970, "question": "What is the primary subject matter of the university?", "tool": "common/topic/subject_of", "param": "University", "result": "Qualitas Career Academy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101985, "question": "What are the colors associated with the Spanish Water Dog breed?", "tool": "biology/animal_breed/coloring", "param": "Spanish Water Dog", "result": "Brown & White"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 101990, "question": "What is the coloring associated with the Chinese Crested dog breed?", "tool": "biology/animal_breed/coloring", "param": "Chinese Crested Dog", "result": "Tri-color"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102002, "question": "What is the armed force of the 27th New York Volunteer Infantry Regiment?", "tool": "military/military_unit/armed_force", "param": "27th New York Volunteer Infantry Regiment", "result": "United States Army"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102001, "question": "What branch or type of military service is the 96th Illinois Volunteer Infantry Regiment a part of?", "tool": "military/military_unit/armed_force", "param": "96th Illinois Volunteer Infantry Regiment", "result": "Union Army"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102030, "question": "Which arena stadium did the Tulane Green Wave football team play in?", "tool": "sports/sports_team/arena_stadium", "param": "Tulane Green Wave football", "result": "Mercedes-Benz Superdome"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102023, "question": "What is the name of the stadium where CA River Plate plays?", "tool": "sports/sports_team/arena_stadium", "param": "Club Atlético River Plate", "result": "Estadio Monumental Antonio Vespucio Liberti"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102049, "question": "What's a radio station on Sirius Satellite Radio owned or managed by a radio station owner?", "tool": "broadcast/radio_station_owner/radio_stations", "param": "Sirius Satellite Radio", "result": "The Beat"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102059, "question": "What are the names of radio stations owned by the Jim Pattison Group?", "tool": "broadcast/radio_station_owner/radio_stations", "param": "Jim Pattison Group", "result": "CKCE-FM"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102080, "question": "What are the postal codes associated with Hilo, Hawaii?", "tool": "location/citytown/postal_codes", "param": "Hilo", "result": "96720"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102083, "question": "What are the postal codes associated with Cleveland, Ohio?", "tool": "location/citytown/postal_codes", "param": "Cleveland", "result": "44114"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102094, "question": "What programming languages are used in Twisted?", "tool": "computer/software/languages_used", "param": "Twisted", "result": "Python"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102087, "question": "What programming languages were used to write Minimo?", "tool": "computer/software/languages_used", "param": "Minimo", "result": "C"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102125, "question": "What sports teams are located in Baton Rouge, Louisiana?", "tool": "sports/sports_team_location/teams", "param": "Baton Rouge", "result": "LSU Tigers tennis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102112, "question": "Which sports team is located in Rotterdam?", "tool": "sports/sports_team_location/teams", "param": "Rotterdam", "result": "Sparta Rotterdam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102147, "question": "The racing horse Épinard competed in which country?", "tool": "thoroughbredracing/thoroughbred_racehorse/country", "param": "Épinard", "result": "France"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102139, "question": "Which country is the Thoroughbred racehorse Vodka from?", "tool": "thoroughbredracing/thoroughbred_racehorse/country", "param": "Vodka", "result": "Japan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102170, "question": "Where is the Carrollton Viaduct Bridge located?", "tool": "transportation/bridge/locale", "param": "Carrollton Viaduct", "result": "Baltimore"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102160, "question": "Which city is the Gandy Bridge located in?", "tool": "transportation/bridge/locale", "param": "Gandy Bridge", "result": "Tampa"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102194, "question": "What medical condition does Bill Williams have?", "tool": "medicine/notable_person_with_medical_condition/condition", "param": "Bill Williams", "result": "Cystic fibrosis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102175, "question": "What addiction did Joyce suffer from?", "tool": "medicine/notable_person_with_medical_condition/condition", "param": "Yootha Joyce", "result": "Alcoholism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102214, "question": "What is one of the gymnastics events that occurred at the 1996 Summer Olympics?", "tool": "olympics/olympic_games/events", "param": "1996 Summer Olympics", "result": "Men's Parallel bars"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102197, "question": "What men's event took place during the 1996 Summer Olympics?", "tool": "olympics/olympic_games/events", "param": "1996 Summer Olympics", "result": "Men's 200m individual medley"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102221, "question": "What organizations operate within the scope of Chennai?", "tool": "organization/organization_scope/organizations_with_this_scope", "param": "Chennai", "result": "Chennai Metropolitan Police"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102227, "question": "What is the name of an organization that operates in Syria?", "tool": "organization/organization_scope/organizations_with_this_scope", "param": "Syria", "result": "Syrian Communist Party"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102244, "question": "What is the name of Lulu Spencer's child in the fictional universe?", "tool": "fictional_universe/fictional_character/children", "param": "Lulu Spencer", "result": "Johnny Zacchara"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102261, "question": "Who is the child of the fictional character Lazarus Long in the fictional universe?", "tool": "fictional_universe/fictional_character/children", "param": "Lazarus Long", "result": "Lori Long"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102277, "question": "Who was an anti-communism activist?", "tool": "activism/activism_issue/activists", "param": "Anti-communism", "result": "Otto von Habsburg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102276, "question": "Who was a labor rights activist?", "tool": "activism/activism_issue/activists", "param": "Labor rights", "result": "Ed Asner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102295, "question": "Which films did David Rubin work on as a casting director in the film industry?", "tool": "film/film_casting_director/films_casting_directed", "param": "David Rubin", "result": "Wild Wild West"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102294, "question": "Name a film for which Juel Bestrop did the casting in the film industry.", "tool": "film/film_casting_director/films_casting_directed", "param": "Juel Bestrop", "result": "Equilibrium"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102308, "question": "How does Shuichi Furukawa bat in baseball?", "tool": "baseball/baseball_player/bats", "param": "Shuichi Furukawa", "result": "Left-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102324, "question": "Does Ben Copeland bat left or right-handed in baseball?", "tool": "baseball/baseball_player/bats", "param": "Ben Copeland", "result": "Left-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102342, "question": "What are some of the video games designed by Dave Grossman?", "tool": "cvg/cvg_designer/games_designed", "param": "Dave Grossman", "result": "Monkey Island 2: LeChuck's Revenge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102347, "question": "What is a game designed by id Software?", "tool": "cvg/cvg_designer/games_designed", "param": "id Software", "result": "Doom 3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102369, "question": "What language is spoken in the book or periodical \"Searchlight\"?", "tool": "book/periodical/language", "param": "Searchlight", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102355, "question": "What language is the periodical Zerkalo Nedeli written in?", "tool": "book/periodical/language", "param": "Zerkalo Nedeli", "result": "Ukrainian Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102383, "question": "What is the next episode after \"Jimmy Carter\" in the TV series?", "tool": "tv/tv_series_episode/next_episode", "param": "Jimmy Carter", "result": "Newt Gingrich"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102385, "question": "What is the next episode after the Los Angeles episode in the TV series?", "tool": "tv/tv_series_episode/next_episode", "param": "Los Angeles", "result": "New York"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102406, "question": "Who are the parents of Abby Carlton in the fictional universe?", "tool": "fictional_universe/fictional_character/parents", "param": "Abby Newman", "result": "Ashley Abbott"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102407, "question": "Who are the parents of Lyra Belacqua in the fictional universe?", "tool": "fictional_universe/fictional_character/parents", "param": "Lyra Belacqua", "result": "Marisa Coulter"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102424, "question": "What is a type of spreadsheet software?", "tool": "computer/software_genre/software_in_genre", "param": "Spreadsheet", "result": "Lotus 1-2-3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102423, "question": "What is an example of software in the visualization genre?", "tool": "computer/software_genre/software_in_genre", "param": "Visualization", "result": "InfoVis CyberInfrastructure"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102451, "question": "What are the typical behavioral characteristics or personality traits associated with the Tibetan Mastiff breed in biology?", "tool": "biology/animal_breed/temperament", "param": "Tibetan Mastiff", "result": "Protective"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102450, "question": "What kind of temperament is the Pembroke Welsh Corgi known for in biology/animal_breed/temperament?", "tool": "biology/animal_breed/temperament", "param": "Pembroke Welsh Corgi", "result": "Tenacious"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102462, "question": "Name an astronomical object discovered by Claes-Ingvar Lagerkvist.", "tool": "astronomy/astronomer/astronomical_objects_discovered", "param": "Claes-Ingvar Lagerkvist", "result": "6686 Hernius"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102471, "question": "What astronomical objects did Seiji Ueda discover?", "tool": "astronomy/astronomer/astronomical_objects_discovered", "param": "Seiji Ueda", "result": "(6930) 1994 VJ3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102494, "question": "What type of geographical feature is \"Werd\"?", "tool": "geography/geographical_feature/category", "param": "Werd", "result": "Island"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102496, "question": "In what geological category is Lake Tahoe considered?", "tool": "geography/geographical_feature/category", "param": "Lake Tahoe", "result": "Lake"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102514, "question": "Who was the developer responsible for OpenGrok?", "tool": "computer/software/developer", "param": "OpenGrok", "result": "Oracle Corporation"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102507, "question": "Who developed Quickoffice?", "tool": "computer/software/developer", "param": "Quickoffice", "result": "Google"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102531, "question": "What are the administrative subdivisions within the district of Upper Palatinate in Bavaria, Germany?", "tool": "schema/administrative_area/administrative_children", "param": "Upper Palatinate", "result": "Neustadt an der Waldnaab"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102519, "question": "What are the administrative subdivisions within the administrative area of Mali?", "tool": "schema/administrative_area/administrative_children", "param": "Mali", "result": "Bamako"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102544, "question": "What is the drug class for trovafloxacin?", "tool": "medicine/drug/drug_class", "param": "Trovafloxacin", "result": "Quinolone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102551, "question": "What drug class does oseltamivir phosphate belong to?", "tool": "medicine/drug/drug_class", "param": "Oseltamivir phosphate", "result": "Neuraminidase inhibitor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102565, "question": "What preventive factors are related to nutritional and metabolic diseases?", "tool": "medicine/disease/prevention_factors", "param": "Nutritional and metabolic diseases", "result": "Tyrosine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102560, "question": "What is a prevention factor of iron deficiency anemia?", "tool": "medicine/disease/prevention_factors", "param": "Iron-deficiency anemia", "result": "Iron"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102588, "question": "What is the specialization of a nude glamour model?", "tool": "people/profession/specialization_of", "param": "Nude Glamour Model", "result": "Model"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102596, "question": "What is the specialization of a penciller?", "tool": "people/profession/specialization_of", "param": "Penciller", "result": "Artist"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102609, "question": "Which languages are spoken in Swaziland?", "tool": "location/country/languages_spoken", "param": "Swaziland", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102598, "question": "What type of language is spoken in Cyprus?", "tool": "location/country/languages_spoken", "param": "Cyprus", "result": "Greek Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102636, "question": "Who is a superhero within a fictional universe that possesses superhuman strength?", "tool": "fictional_universe/character_powers/characters_with_this_ability", "param": "Superhuman strength", "result": "Onslaught"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102619, "question": "Which comic book character possesses the ability of flight?", "tool": "fictional_universe/character_powers/characters_with_this_ability", "param": "Flight", "result": "Darkstar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102657, "question": "What restaurant serves Canadian cuisine?", "tool": "dining/cuisine/restaurant", "param": "Canadian cuisine", "result": "Sequoia Grill at the Teahouse"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102644, "question": "What is the name of the Italian cuisine submarine sandwich shop located in New Hampshire?", "tool": "dining/cuisine/restaurant", "param": "Italian food", "result": "Moe's Italian Sandwiches"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102672, "question": "What is the art subject depicted in the artwork \"Come Unto These Yellow Sands\"?", "tool": "visual_art/artwork/art_subject", "param": "Come unto These Yellow Sands", "result": "The Tempest"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102670, "question": "What is the subject matter depicted in the art of painting?", "tool": "visual_art/artwork/art_subject", "param": "The Art of Painting", "result": "Painting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102693, "question": "Which country is Arun's collection of bibs located in?", "tool": "biblioness/bibs_location/country", "param": "Arun", "result": "United Kingdom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102691, "question": "What country is East Perth in?", "tool": "biblioness/bibs_location/country", "param": "East Perth", "result": "Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102713, "question": "Who is a notable person associated with the medical condition goitre?", "tool": "medicine/disease/notable_people_with_this_condition", "param": "Goitre", "result": "Barbara Bush"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102715, "question": "Which notable individuals are associated with albinism?", "tool": "medicine/disease/notable_people_with_this_condition", "param": "Albinism", "result": "William Archibald Spooner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102732, "question": "What type of construction does the Cornwall Bridge belong to?", "tool": "transportation/bridge/bridge_type", "param": "Cornwall Bridge", "result": "Arch bridge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102734, "question": "What type of bridge is the Richmond Bridge in London?", "tool": "transportation/bridge/bridge_type", "param": "Richmond Bridge, London", "result": "Arch bridge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102748, "question": "What factors or origins contribute to the medical condition known as clinical lycanthropy?", "tool": "medicine/disease/causes", "param": "Clinical lycanthropy", "result": "Major depression"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102754, "question": "What are some causes of cirrhosis?", "tool": "medicine/disease/causes", "param": "Cirrhosis", "result": "Alpha 1-antitrypsin deficiency"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102760, "question": "What is the content typically associated with the broadcast genre?", "tool": "broadcast/genre/content", "param": "News", "result": "The New Yorker: Tables for Two"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102757, "question": "What genre of music is typically played in a jazz broadcast?", "tool": "broadcast/genre/content", "param": "Jazz", "result": "After Hours"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102779, "question": "Ioannis Pallikaris is credited with inventing which surgery technique in the field of law?", "tool": "law/inventor/inventions", "param": "Ioannis Pallikaris", "result": "Epi-LASIK"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102785, "question": "What are some inventions attributed to Ottó Bláthy in the field of law?", "tool": "law/inventor/inventions", "param": "Ottó Bláthy", "result": "Alternating current"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102806, "question": "What is the name of a British horse in the category of biology/organism_classification/organisms_of_this_type?", "tool": "biology/organism_classification/organisms_of_this_type", "param": "Horse", "result": "Amphion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102803, "question": "What is the classification of a horse in terms of organism type?", "tool": "biology/organism_classification/organisms_of_this_type", "param": "Horse", "result": "Kincsem"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102815, "question": "What is the name of a film in the Looney Tunes series?", "tool": "film/film_series/films_in_series", "param": "Looney Tunes", "result": "Wise Quacks"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102821, "question": "What is a film in the film series \"A Goofy Movie\"?", "tool": "film/film_series/films_in_series", "param": "A Goofy Movie", "result": "An Extremely Goofy Movie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102836, "question": "Who is the governing body responsible for managing White Lake National Wildlife Refuge?", "tool": "protected_sites/protected_site/governing_body", "param": "White Lake National Wildlife Refuge", "result": "United States Fish and Wildlife Service"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102846, "question": "What organization is responsible for managing Pecos National Historical Park?", "tool": "protected_sites/protected_site/governing_body", "param": "Pecos National Historical Park", "result": "U.S. National Park Service"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102862, "question": "What kind of temperament do Samoyeds have?", "tool": "petbreeds/dog_breed/temperament", "param": "Samoyed", "result": "Alert"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102859, "question": "What temperament is typically associated with the German Pinscher dog breed?", "tool": "petbreeds/dog_breed/temperament", "param": "German Pinscher", "result": "Lively"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102874, "question": "What island group does St. Ninian's Isle belong to?", "tool": "geography/island/island_group", "param": "St Ninian's Isle", "result": "Shetland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102875, "question": "Which archipelago is Canoe Island a part of?", "tool": "geography/island/island_group", "param": "Canoe Island", "result": "San Juan Islands"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102890, "question": "What genre of artworks is associated with the book \"The Problem of the Missing Miss\"?", "tool": "visual_art/visual_art_support/artworks", "param": "Canvas", "result": "Self Portrait"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102894, "question": "What is the name of a piece of artwork done on canvas?", "tool": "visual_art/visual_art_support/artworks", "param": "Canvas", "result": "Chalk Cliffs on Rügen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102910, "question": "In which country are Native Hawaiians primarily located?", "tool": "people/ethnicity/geographic_distribution", "param": "Native Hawaiians", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102926, "question": "What is the geographic distribution of the Himba people?", "tool": "people/ethnicity/geographic_distribution", "param": "Himba people", "result": "Namibia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102927, "question": "What's a mountain in the Tatra Mountains?", "tool": "geography/mountain_range/mountains", "param": "Tatra Mountains", "result": "Ľadová kopa"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102941, "question": "What mountain is in the Macdonnell Ranges?", "tool": "geography/mountain_range/mountains", "param": "MacDonnell Ranges", "result": "Mount Zeil"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102962, "question": "Where is King Harald V of Norway's kingdom?", "tool": "royalty/monarch/kingdom", "param": "Harald V of Norway", "result": "Norway"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102953, "question": "What is Emperor Go-Fushimi's kingdom?", "tool": "royalty/monarch/kingdom", "param": "Emperor Go-Fushimi", "result": "Japan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102971, "question": "What is an instance of a type of nutrient?", "tool": "type/type/instance", "param": "Nutrient", "result": "Iron"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102964, "question": "What is an instance of a particular type in a type context?", "tool": "type/type/instance", "param": "Topic", "result": "Millennium Line"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102989, "question": "What constituent school would a law student attend at Elon University?", "tool": "education/educational_institution/subsidiary_or_constituent_schools", "param": "Elon University", "result": "Elon University School of Law"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 102994, "question": "What are the subsidiary or constituent schools of Dartmouth College?", "tool": "education/educational_institution/subsidiary_or_constituent_schools", "param": "Dartmouth College", "result": "Geisel School of Medicine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103013, "question": "Which body of water can be seen from the Fort Madison Toll Bridge?", "tool": "transportation/bridge/body_of_water_spanned", "param": "Fort Madison Toll Bridge", "result": "Mississippi River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103005, "question": "Which body of water does the Manaus Iranduba Bridge span?", "tool": "transportation/bridge/body_of_water_spanned", "param": "Rio Negro Bridge", "result": "Rio Negro"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103023, "question": "What is the unit size of the 37th Regiment Kentucky Volunteer Mounted Infantry?", "tool": "military/military_unit/unit_size", "param": "37th Regiment Kentucky Volunteer Mounted Infantry", "result": "Regiment"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103031, "question": "What is the unit size of the 14th New Hampshire Volunteer Infantry?", "tool": "military/military_unit/unit_size", "param": "14th New Hampshire Volunteer Infantry", "result": "Regiment"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103050, "question": "What are the ingredients of an Old Fashioned cocktail?", "tool": "food/dish/ingredients", "param": "Old Fashioned", "result": "Carbonated water"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103049, "question": "What ingredients are used in the dish Hainanese chicken rice?", "tool": "food/dish/ingredients", "param": "Hainanese Chicken Rice", "result": "Schmaltz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103068, "question": "What type of classification does Urban Prep Academies fall under within the realm of non-profit organizations?", "tool": "schemastaging/non_profit_extra/classification", "param": "Urban Prep Academies", "result": "Elementary, Secondary Ed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103061, "question": "What is the classification of Tusculum College within the non-profit sector?", "tool": "schemastaging/non_profit_extra/classification", "param": "Tusculum College", "result": "Undergraduate College (4-year)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103080, "question": "What overarching genre does Acid Rap belong to?", "tool": "music/genre/parent_genre", "param": "Acid rap", "result": "Psychedelic music"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103084, "question": "What is the parent genre of vocal jazz?", "tool": "music/genre/parent_genre", "param": "Vocal jazz", "result": "Jazz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103095, "question": "What diseases are included under liver disease?", "tool": "medicine/disease/includes_diseases", "param": "Liver disease", "result": "Hereditary coproporphyria"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103089, "question": "What type of diseases are classified as otorhinolaryngologic diseases?", "tool": "medicine/disease/includes_diseases", "param": "Otorhinolaryngologic Diseases", "result": "Halitosis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103115, "question": "What color is the Beagle dog breed?", "tool": "petbreeds/dog_breed/color", "param": "Beagle", "result": "Tri-color"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103108, "question": "What is the color of the Peruvian Hairless dog breed?", "tool": "petbreeds/dog_breed/color", "param": "Peruvian Hairless Dog", "result": "Black"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103133, "question": "What technique does cricket bowler Fidel Edwards use for his bowling?", "tool": "cricket/cricket_bowler/technique", "param": "Fidel Edwards", "result": "Fast bowling"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103128, "question": "What technique is Mohammad Irfan known for in cricket?", "tool": "cricket/cricket_bowler/technique", "param": "Mohammad Irfan", "result": "Fast bowling"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103153, "question": "What body of water surrounds Isla Margarita?", "tool": "geography/island/body_of_water", "param": "Isla Margarita", "result": "Atlantic Ocean"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103155, "question": "In which body of water is Nantucket, Massachusetts, an island located?", "tool": "geography/island/body_of_water", "param": "Nantucket", "result": "Atlantic Ocean"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103167, "question": "What are the Greek organizations associated with Sonoma State University?", "tool": "education/university/fraternities_and_sororities", "param": "Sonoma State University", "result": "Alpha Delta Pi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103174, "question": "What is a fraternity or sorority associated with Stanford University?", "tool": "education/university/fraternities_and_sororities", "param": "Stanford University", "result": "Kappa Kappa Gamma"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103186, "question": "What types of vehicles are used on the OC Transpo Route 32?", "tool": "metropolitan_transit/transit_line/vehicle_types", "param": "OC Transpo Route 32", "result": "Bus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103188, "question": "What types of vehicles are used on OC Transpo Route 402?", "tool": "metropolitan_transit/transit_line/vehicle_types", "param": "OC Transpo Route 402", "result": "Bus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103207, "question": "What Louisiana meal incorporates onions?", "tool": "food/ingredient/dishes", "param": "Onion", "result": "Jambalaya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103195, "question": "Which dishes include the ingredient walnut?", "tool": "food/ingredient/dishes", "param": "Walnut", "result": "Waldorf salad"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103220, "question": "What are the focus cities of Dubrovnik Airline?", "tool": "aviation/airline/focus_cities", "param": "Dubrovnik Airline", "result": "Zagreb International Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103212, "question": "What are the focus cities for China Airlines?", "tool": "aviation/airline/focus_cities", "param": "China Airlines", "result": "Kaohsiung International Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103233, "question": "What teams are associated with Lancaster Park rugby facility?", "tool": "sports/sports_facility/teams", "param": "Lancaster Park", "result": "Crusaders"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103238, "question": "Which sports teams play at Villa Park?", "tool": "sports/sports_facility/teams", "param": "Villa Park", "result": "Aston Villa F.C."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103252, "question": "What is an example of an Austin model?", "tool": "automotive/make/model_s", "param": "Austin", "result": "Austin A40 Somerset"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103250, "question": "What are some of the models released by LaSalle (automobile)?", "tool": "automotive/make/model_s", "param": "LaSalle", "result": "La Salle 303"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103265, "question": "What disease is associated with tobacco smoking?", "tool": "medicine/risk_factor/diseases", "param": "Tobacco smoking", "result": "Dementia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103274, "question": "Breast cancer is a risk factor for what disease in medicine?", "tool": "medicine/risk_factor/diseases", "param": "Breast cancer", "result": "Endometrial cancer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103278, "question": "What is the parent institution of the Herberger Institute for Design and the Arts?", "tool": "education/educational_institution/parent_institution", "param": "Herberger Institute for Design and the Arts", "result": "Arizona State University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103293, "question": "What is the parent institution of the Royal Academy of Dramatic Art?", "tool": "education/educational_institution/parent_institution", "param": "Royal Academy of Dramatic Art", "result": "King's College London"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103302, "question": "What period of artwork does \"Portrait of Ambroise Vollard\" belong to?", "tool": "visual_art/artwork/period_or_movement", "param": "None", "result": "Impressionism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103305, "question": "What artistic period does the artwork \"Chalk Cliffs on Rügen\" belong to?", "tool": "visual_art/artwork/period_or_movement", "param": "Chalk Cliffs on Rügen", "result": "Romanticism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103319, "question": "What film series does \"Tweet and Sour\" belong to?", "tool": "film/film/film_series", "param": "Tweet and Sour", "result": "Looney Tunes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103317, "question": "Which film series does \"Ator l'invincibile\" belong to?", "tool": "film/film/film_series", "param": "Ator, the Fighting Eagle", "result": "Ator"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103343, "question": "What is the mascot of Colleyville Heritage High School?", "tool": "education/educational_institution/mascot", "param": "Colleyville Heritage High School", "result": "Black panther"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103334, "question": "What is the mascot of Burlingame High School?", "tool": "education/educational_institution/mascot", "param": "Burlingame High School", "result": "Black panther"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103348, "question": "What academic discipline covers human biology in journals or books?", "tool": "book/journal/discipline", "param": "Human Biology", "result": "Biological anthropology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103356, "question": "What discipline does the Journal of Musculoskeletal Research belong to?", "tool": "book/journal/discipline", "param": "Journal of Musculoskeletal Research", "result": "Orthopedic surgery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103372, "question": "What media type is Andy Dalton?", "tool": "type/content/media_type", "param": "Andy Dalton", "result": "image/jpeg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103363, "question": "What media type is the content \"John Couch Adams\"?", "tool": "type/content/media_type", "param": "John Couch Adams", "result": "image/jpeg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103391, "question": "What is an example of a regiment in terms of military unit size within a military organization?", "tool": "military/military_unit_size/units_of_this_type", "param": "Regiment", "result": "40th Regiment Alabama Infantry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103384, "question": "What is an example of a military unit of this type in terms of a regiment within a military organization?", "tool": "military/military_unit_size/units_of_this_type", "param": "Regiment", "result": "18th Alabama Infantry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103402, "question": "What is the sequel to the film \"The Rocky Horror Picture Show\"?", "tool": "film/film/sequel", "param": "The Rocky Horror Picture Show", "result": "Shock Treatment"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103408, "question": "What is the sequel to the epic movie?", "tool": "film/film/sequel", "param": "Epic Movie", "result": "Meet the Spartans"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103417, "question": "What airlines consider Kota Kinabalu International Airport as their focus city?", "tool": "aviation/airport/focus_city_for", "param": "Kota Kinabalu International Airport", "result": "Malaysia Airlines"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103412, "question": "What airline operates in Sangster International Airport as a focus city?", "tool": "aviation/airport/focus_city_for", "param": "Sangster International Airport", "result": "Air Jamaica"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103429, "question": "What journals are related to the field of study in finance?", "tool": "education/field_of_study/journals_in_this_discipline", "param": "Finance", "result": "Journal of Accounting Research"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103426, "question": "What are some journals in the field of education that focus on ecology?", "tool": "education/field_of_study/journals_in_this_discipline", "param": "Ecology", "result": "Advances in Ecological Research"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103449, "question": "Which dog breed can have a roan coat?", "tool": "petbreeds/dog_coat_color/dog_breeds", "param": "Roan", "result": "German Wirehaired Pointer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103447, "question": "Which breed of dog has the coat colors of liver and white?", "tool": "petbreeds/dog_coat_color/dog_breeds", "param": "Liver & White", "result": "Brittany"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103462, "question": "What type of place of worship is the Nga-htat-gyi Buddha Temple?", "tool": "religion/place_of_worship/type_of_place_of_worship", "param": "Nga-htat-gyi Buddha Temple", "result": "Temple"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103467, "question": "What type of place of worship is Bongnyeongsa?", "tool": "religion/place_of_worship/type_of_place_of_worship", "param": "Bongnyeongsa", "result": "Temple"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103480, "question": "What are some examples of mountains that fall under the classification of stratovolcanoes?", "tool": "geography/mountain_type/mountains_of_this_type", "param": "Stratovolcano", "result": "Momotombo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103475, "question": "What is a stratovolcano that falls under the category of mountains of this type?", "tool": "geography/mountain_type/mountains_of_this_type", "param": "Stratovolcano", "result": "Kell"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103489, "question": "What is the medical specialty associated with the treatment or study of Hepatitis E?", "tool": "medicine/disease/medical_specialties", "param": "Hepatitis E", "result": "Hepatology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103497, "question": "Which medical specialty does cardiovascular disease fall under?", "tool": "medicine/disease/medical_specialties", "param": "Cardiovascular disease", "result": "Neurology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103518, "question": "Where are images saved to on the Casio Exilim EX-Z500?", "tool": "digicams/digital_camera/supported_storage_types", "param": "Casio Exilim EX-Z500", "result": "Secure Digital"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103520, "question": "What types of storage are supported by the Kodak EasyShare Z1285 digital camera?", "tool": "digicams/digital_camera/supported_storage_types", "param": "Kodak EasyShare Z1285", "result": "MultiMediaCard"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103521, "question": "Which company is a type of public limited company?", "tool": "business/company_type/companies_of_this_type", "param": "Public limited company", "result": "EuropaCorp"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103533, "question": "What is a company that is known as a limited liability company?", "tool": "business/company_type/companies_of_this_type", "param": "Limited liability company", "result": "Global Broadcasting"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103539, "question": "What series does the book Inkheart belong to?", "tool": "book/written_work/part_of_series", "param": "Inkheart", "result": "Inkheart trilogy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103547, "question": "What is the series that includes the novel \"Ishmael\"?", "tool": "book/written_work/part_of_series", "param": "Ishmael", "result": "Ishmael"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103568, "question": "Which dog breeds exhibit a fearless temperament?", "tool": "petbreeds/dog_temperament/dog_breeds", "param": "Fearless", "result": "Vikhan Sheepdog"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103564, "question": "What is an example of an aggressive dog breed?", "tool": "petbreeds/dog_temperament/dog_breeds", "param": "Aggressive", "result": "Pekingese"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103569, "question": "Who were the advisees of Charles-Adolphe Wurtz?", "tool": "education/academic/advisees", "param": "Charles-Adolphe Wurtz", "result": "Émile Lemoine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103576, "question": "Who are the advisees of Charles Coulson in the field of education or academia?", "tool": "education/academic/advisees", "param": "Charles Coulson", "result": "David Eisenberg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76770, "question": "Which military conflicts did Wilhelm Stepper-Tristis participate in?", "tool": "military/military_person/participated_in_conflicts", "param": "Wilhelm Stepper-Tristis", "result": "World War II"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 76778, "question": "Which military conflicts did Sano Tsuneha participate in?", "tool": "military/military_person/participated_in_conflicts", "param": "Sano Tsuneha", "result": "Russo-Japanese War"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103595, "question": "What is the make and model of the Mazda car refactor?", "tool": "cars_refactor/make/model_s", "param": "Mazda", "result": "Mazdaspeed3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103589, "question": "What is the model of the Porsche?", "tool": "cars_refactor/make/model_s", "param": "Porsche", "result": "Porsche 917"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103614, "question": "Who are the welterweight boxers rated in this weight division?", "tool": "sports/boxing_weight_division/boxers_rated_at_this_weight", "param": "Welterweight", "result": "Jan Dydak"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103604, "question": "What boxers are rated in the featherweight division in boxing?", "tool": "sports/boxing_weight_division/boxers_rated_at_this_weight", "param": "Featherweight", "result": "Likar Ramos Concha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103621, "question": "Where was Tristan Thorne born in the fictional universe?", "tool": "fictional_universe/fictional_character/place_of_birth", "param": "Tristan Thorne", "result": "Market town"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103625, "question": "Where was Emily Cutter born in the fictional universe?", "tool": "fictional_universe/fictional_character/place_of_birth", "param": "Emily Cutter", "result": "New York City"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103644, "question": "What is the county seat of Tuscaloosa County?", "tool": "location/us_county/county_seat", "param": "Tuscaloosa County", "result": "Tuscaloosa"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103641, "question": "What city serves as the county seat for Butler County?", "tool": "location/us_county/county_seat", "param": "Butler County", "result": "Butler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103651, "question": "What medications are available in mentha flavor?", "tool": "medicine/drug_dosage_flavor/drugs_with_this_flavor", "param": "Mentha", "result": "Sensodyne Original Flavor 19.3/1.05 paste"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103649, "question": "Name a medication that is chocolate flavored.", "tool": "medicine/drug_dosage_flavor/drugs_with_this_flavor", "param": "Chocolate", "result": "Herbon Rockhopper Chocomint 7.35/6.5 lozenge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103674, "question": "What are the philosophical interests or areas of focus of Paul Ricoeur?", "tool": "philosophy/philosopher/interests", "param": "Paul Ricœur", "result": "Political philosophy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103669, "question": "What were the philosophical interests of William of Ockham?", "tool": "philosophy/philosopher/interests", "param": "William of Ockham", "result": "Epistemology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103689, "question": "What body of water does Table Rock Lake flow out to?", "tool": "geography/lake/outflow", "param": "Table Rock Lake", "result": "White River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103679, "question": "Where does the outflow from the geography/lake lead to?", "tool": "geography/lake/outflow", "param": "Last Mountain Lake", "result": "Qu'Appelle River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103704, "question": "What was the successor model of the Jaguar XK150 in the automotive industry?", "tool": "automotive/model/successor", "param": "Jaguar XK150", "result": "Jaguar E-Type"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103700, "question": "What car model succeeded the Buick Lucerne?", "tool": "automotive/model/successor", "param": "Buick Lucerne", "result": "Chevrolet Impala"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103716, "question": "What sport is C.W. Alcock an official of?", "tool": "sports/sports_official/sport", "param": "Charles W. Alcock", "result": "Soccer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103718, "question": "What sport did John Wood officiate?", "tool": "sports/sports_official/sport", "param": "John Wood", "result": "Soccer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103724, "question": "What state does Mike Pence represent in the U.S. House of Representatives?", "tool": "us_congress/us_representative/state", "param": "Mike Pence", "result": "Indiana"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103733, "question": "What state does Peter DeFazio represent as a US Representative in the U.S. House of Representatives?", "tool": "us_congress/us_representative/state", "param": "Peter DeFazio", "result": "Oregon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103739, "question": "What software has the Open Handset Alliance developed?", "tool": "computer/software_developer/software", "param": "Open Handset Alliance", "result": "Android"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103744, "question": "What's a piece of software developed by Microsoft Corporation?", "tool": "computer/software_developer/software", "param": "Microsoft Corporation", "result": "Windows DVD Maker"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103758, "question": "What periodicals are related to the subject of Fabolous?", "tool": "book/periodical_subject/periodicals", "param": "Fabolous", "result": "First"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103753, "question": "What periodical is related to the subject of oral and maxillofacial surgery?", "tool": "book/periodical_subject/periodicals", "param": "Oral and maxillofacial surgery", "result": "Journal of Oral and Maxillofacial Surgery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103775, "question": "What type of organization is Samuel Goldwyn Television?", "tool": "organization/organization/organization_type", "param": "Samuel Goldwyn Television", "result": "Subsidiary"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103773, "question": "What type of organization is the Maryland Historical Society?", "tool": "organization/organization/organization_type", "param": "Maryland Historical Society", "result": "Historical society"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103785, "question": "What breed of animal is the Australian Silky Terrier?", "tool": "biology/animal_breed/breed_of", "param": "Australian Silky Terrier", "result": "Dog"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103787, "question": "What animal does the breed Giant Schnauzer belong to?", "tool": "biology/animal_breed/breed_of", "param": "Giant Schnauzer", "result": "Dog"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103802, "question": "What area does WMJC radio station serve?", "tool": "broadcast/radio_station/serves_area", "param": "WMJC", "result": "Kalamazoo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103800, "question": "Where does the radio station KXBJ air?", "tool": "broadcast/radio_station/serves_area", "param": "KXBJ", "result": "Greater Houston"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103823, "question": "What medical conditions may be prevented by basiliximab?", "tool": "medicine/condition_prevention_factors/conditions_this_may_prevent", "param": "Basiliximab", "result": "Graft-versus-host disease"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103817, "question": "What medical conditions may be prevented by pheniramine?", "tool": "medicine/condition_prevention_factors/conditions_this_may_prevent", "param": "Pheniramine", "result": "Perennial Allergic Rhinitis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103827, "question": "What writing system is used by the Cree language?", "tool": "language/human_language/writing_system", "param": "Cree language", "result": "Canadian Aboriginal syllabics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103831, "question": "What type of writing system is associated with the Ojibwe language?", "tool": "language/human_language/writing_system", "param": "Ojibwe language", "result": "Canadian Aboriginal syllabics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103852, "question": "Which company manufactures the Canon EOS 40D digital camera?", "tool": "digicams/digital_camera/manufacturer", "param": "Canon EOS 40D", "result": "Canon Inc."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103844, "question": "Which company manufactures the Samsung S830 digital camera?", "tool": "digicams/digital_camera/manufacturer", "param": "Samsung S830", "result": "Samsung Electronics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103863, "question": "What key is the composition \"Wild is the Wind\" in?", "tool": "music/composition/musical_key", "param": "Wild Is the Wind", "result": "A minor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103862, "question": "What musical key is \"A Whiter Shade of Pale\" played in?", "tool": "music/composition/musical_key", "param": "A Whiter Shade of Pale", "result": "C major"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103870, "question": "Who is the fictional character Quintus Valerius Pompey based on?", "tool": "fictional_universe/fictional_character/based_on", "param": "Quintus Valerius Pompey", "result": "Sextus Pompey"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103878, "question": "Who was the fictional Henry VIII of England based on?", "tool": "fictional_universe/fictional_character/based_on", "param": "None", "result": "Henry VIII of England"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103895, "question": "What is the title of a work in the Animorphs series?", "tool": "book/literary_series/works_in_this_series", "param": "Animorphs Series", "result": "The Sacrifice"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103893, "question": "What's one of the books from the Outlanders series?", "tool": "book/literary_series/works_in_this_series", "param": "Outlanders", "result": "Successors"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103909, "question": "What is the classification of genus in biology/organism_classification_rank/organism_classifications?", "tool": "biology/organism_classification_rank/organism_classifications", "param": "Genus", "result": "Ephedra"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103904, "question": "What are the organism classification ranks for a small pigeon species?", "tool": "biology/organism_classification_rank/organism_classifications", "param": "Species", "result": "Laughing dove"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103920, "question": "What fictional characters were born in the fictional setting of Boston?", "tool": "fictional_universe/fictional_setting/fictional_characters_born_here", "param": "Boston", "result": "Penny Halliwell"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103922, "question": "Where were fictional characters born in Glenville?", "tool": "fictional_universe/fictional_setting/fictional_characters_born_here", "param": "Glenville", "result": "The Human Torch"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103938, "question": "Which bridge spans the Schuylkill River?", "tool": "geography/body_of_water/bridges", "param": "Schuylkill River", "result": "Chain Bridge at Falls of Schuylkill"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103931, "question": "Which bridges span the East River?", "tool": "geography/body_of_water/bridges", "param": "East River", "result": "Joralemon Street Tunnel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103941, "question": "What type of museum is the Whitney Museum of American Art?", "tool": "architecture/museum/type_of_museum", "param": "Whitney Museum of American Art", "result": "Art Gallery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103942, "question": "What type of museum is the National Archaeological Museum in Athens?", "tool": "architecture/museum/type_of_museum", "param": "National Archaeological Museum, Athens", "result": "National museum"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103957, "question": "What cities or settlements are located around Lake Maggiore?", "tool": "geography/lake/cities", "param": "Lake Maggiore", "result": "Castelletto sopra Ticino"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103954, "question": "What city is High Rock Lake located in?", "tool": "geography/lake/cities", "param": "High Rock Lake", "result": "Lexington"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103972, "question": "What type of competition is the 1964 Miss America pageant?", "tool": "award/competition/type_of_competition", "param": "1964 Miss America", "result": "Beauty Pageant"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103971, "question": "What type of competition is \"Flay vs. Bull\"?", "tool": "award/competition/type_of_competition", "param": "Flay Vs. Bull", "result": "Cooking show"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103982, "question": "What is the ethnicity of the fictional character Baxter Stockman?", "tool": "fictional_universe/fictional_character/ethnicity", "param": "Baxter Stockman", "result": "African American"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103992, "question": "What is Rachel Green's ethnicity?", "tool": "fictional_universe/fictional_character/ethnicity", "param": "Rachel Green", "result": "Scottish American"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 103999, "question": "What type of cuisine uses the Kaiser roll?", "tool": "food/dish/cuisine", "param": "Kaiser roll", "result": "Jewish cuisine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104002, "question": "What cuisine is crème brûlée associated with?", "tool": "food/dish/cuisine", "param": "Crème brûlée", "result": "British Cuisine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104012, "question": "Name a streaming media site.", "tool": "internet/website_category/sites", "param": "Streaming media", "result": "Minnie's Bow-Toons"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104020, "question": "What kind of site is a blog?", "tool": "internet/website_category/sites", "param": "Blog", "result": "Freebase Blog"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104034, "question": "What artwork depicts the Battle of Cherbourg?", "tool": "visual_art/art_subject/artwork_on_the_subject", "param": "Battle of Cherbourg", "result": "The Kearsarge and the Alabama"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104033, "question": "What is a piece of artwork on the subject of Jesus Christ?", "tool": "visual_art/art_subject/artwork_on_the_subject", "param": "Jesus Christ", "result": "Pitti Tondo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104049, "question": "What category does the website Clowdy belong to?", "tool": "internet/website/category", "param": "None", "result": "Social networking service"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104039, "question": "What category does the website Disney XD belong to?", "tool": "internet/website/category", "param": "Disney XD", "result": "Online game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104065, "question": "What plays did Lawrence B. Munsey direct?", "tool": "theater/theater_director/plays_directed", "param": "Lawrence B. Munsey", "result": "Chicago"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104061, "question": "What is a play that was directed by Ralph Cook?", "tool": "theater/theater_director/plays_directed", "param": "Ralph Cook", "result": "Chicago"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104068, "question": "Which country do they speak the language libido?", "tool": "language/human_language/countries_spoken_in", "param": "Libido Language", "result": "Ethiopia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104067, "question": "What country still speaks Middle Dutch?", "tool": "language/human_language/countries_spoken_in", "param": "Middle Dutch", "result": "Duchy of Burgundy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104093, "question": "What subjects are covered in the periodical \"Applied Physics Letters\"?", "tool": "book/periodical/subjects", "param": "Applied Physics Letters", "result": "Physics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104082, "question": "What are the subjects covered in the book or periodical Animage?", "tool": "book/periodical/subjects", "param": "Animage", "result": "Manga"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104101, "question": "What compositions are included in the album Peggy Sue / Everyday?", "tool": "music/album/compositions", "param": "Peggy Sue / Everyday", "result": "Peggy Sue"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104099, "question": "What is a track from the album Pamela?", "tool": "music/album/compositions", "param": "Pamela", "result": "Pamela"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104107, "question": "What state is Sleeping Bear Dunes National Lakeshore located in?", "tool": "usnationalparks/us_national_park/state", "param": "Sleeping Bear Dunes National Lakeshore", "result": "Michigan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104114, "question": "What state is Mojave National Preserve located in?", "tool": "usnationalparks/us_national_park/state", "param": "Mojave National Preserve", "result": "California"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104123, "question": "What is the capital city of the province of Segovia?", "tool": "schema/administrative_area/capital", "param": "Province of Segovia", "result": "Segovia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104127, "question": "What is the capital city of the administrative area Shaanxi?", "tool": "schema/administrative_area/capital", "param": "Shaanxi", "result": "Xi'an"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104136, "question": "What plays does the character Stephanie appear in?", "tool": "theater/theater_character/plays_appears_in", "param": "Stephanie", "result": "Saturday Night Fever"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104144, "question": "In which play does the character Sylvia appear?", "tool": "theater/theater_character/plays_appears_in", "param": "Sylvia", "result": "All Shook Up"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104154, "question": "What plays did Russell Simmons produce?", "tool": "theater/theater_producer/plays_produced", "param": "Russell Simmons", "result": "Def Poetry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104148, "question": "What plays were produced by Harvey J. Klaris?", "tool": "theater/theater_producer/plays_produced", "param": "Harvey J. Klaris", "result": "Cloud 9"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104167, "question": "What is the name of the recurring competition that contains the Totally, Totally Inappropriate competition?", "tool": "award/competition/instance_of_recurring_competition", "param": "Totally, Totally Inappropriate", "result": "Wipeout"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104170, "question": "What recurring competition does the 1997 Tour de France belong to?", "tool": "award/competition/instance_of_recurring_competition", "param": "1997 Tour de France", "result": "Tour de France"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104174, "question": "Who is the director of the theater production \"Wenceslas Square\"?", "tool": "theater/theater_production/director", "param": "Wenceslas Square", "result": "Jerry Zaks"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104178, "question": "Who directed the theater production of Les Misérables?", "tool": "theater/theater_production/director", "param": "Les Misérables", "result": "John Caird"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104189, "question": "What is a prominent piece of Neoclassicism artwork?", "tool": "visual_art/art_period_movement/associated_artworks", "param": "Neoclassicism", "result": "Portrait of Madame de Verninac"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104196, "question": "Which artworks are associated with the contemporary art movement?", "tool": "visual_art/art_period_movement/associated_artworks", "param": "Contemporary art", "result": "Last Stand"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104205, "question": "Who was the lyricist for the theatrical production \"Dear Edwina\"?", "tool": "theater/play/lyricist", "param": "Dear Edwina", "result": "Marcy Heisler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104201, "question": "Who is the lyricist for the theater production \"Make a Wish\"?", "tool": "theater/play/lyricist", "param": "Make a Wish", "result": "Hugh Martin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104214, "question": "What album features Babyshambles as a guest artist?", "tool": "music/featured_artist/albums", "param": "Babyshambles", "result": "Back to Bizznizz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104213, "question": "Which album features Bun B as a guest artist?", "tool": "music/featured_artist/albums", "param": "Bun B", "result": "The Diamond Collection"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104230, "question": "What type of aircraft is the ATR 42?", "tool": "aviation/aircraft_model/aircraft_type", "param": "ATR 42", "result": "Airliner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104234, "question": "What type of aircraft is the Hawker Hart?", "tool": "aviation/aircraft_model/aircraft_type", "param": "Hawker Hart", "result": "Light bomber"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104246, "question": "What are some games that are part of the Burnout series?", "tool": "cvg/game_series/games_in_series", "param": "Burnout", "result": "Burnout Paradise"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104238, "question": "What is one of the games in the Call of Duty series?", "tool": "cvg/game_series/games_in_series", "param": "Call of Duty", "result": "Call of Duty: Zombies"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104251, "question": "What island contains the Torres Strait?", "tool": "geography/body_of_water/islands", "param": "Torres Strait", "result": "Barney Island, Torres Strait"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104258, "question": "Which islands are located within the Pacific Ocean?", "tool": "geography/body_of_water/islands", "param": "Pacific Ocean", "result": "Mimi Islet, Torres Strait"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104274, "question": "What's the name of a hill in Rhineland-Palatinate?", "tool": "geography/geographical_feature_category/features", "param": "Hill", "result": "Rehberg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104275, "question": "What is an example of an escarpment near Kinver?", "tool": "geography/geographical_feature_category/features", "param": "Escarpment", "result": "Kinver Edge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104284, "question": "Which soundtrack is featured in the computer video game \"50 Cent: Bulletproof\"?", "tool": "cvg/computer_videogame/soundtracks", "param": "50 Cent: Bulletproof", "result": "Bulletproof"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104276, "question": "What's the soundtrack of Clannad (visual novel)?", "tool": "cvg/computer_videogame/soundtracks", "param": "Clannad", "result": "CLANNAD ORIGINAL SOUNDTRACK"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104291, "question": "Which literary movement is İlhan Berk associated with?", "tool": "book/author/school_or_movement", "param": "İlhan Berk", "result": "Postmodern literature"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104292, "question": "What literary movement is associated with the writer Martin Buber?", "tool": "book/author/school_or_movement", "param": "Martin Buber", "result": "Existentialism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104309, "question": "What biofluid location is chromium found in?", "tool": "default_domain/metabolite/biofluid_location", "param": "Chromium", "result": "Serum"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104305, "question": "What biofluid would you find guanine?", "tool": "default_domain/metabolite/biofluid_location", "param": "Guanine", "result": "Blood plasma"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104316, "question": "Who is an astronaut that went on the space mission STS-104?", "tool": "spaceflight/space_mission/astronauts", "param": "STS-104", "result": "Michael L. Gernhardt"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104312, "question": "Who's an astronaut that was included in the STS-117 mission?", "tool": "spaceflight/space_mission/astronauts", "param": "STS-117", "result": "Clayton Anderson"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104326, "question": "What is an example of a church building?", "tool": "architecture/building_function/buildings", "param": "Church", "result": "Church of San Giorgio Maggiore"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104333, "question": "What's the name of a prominent theater located in Vancouver, British Columbia?", "tool": "architecture/building_function/buildings", "param": "Theatre", "result": "Queen Elizabeth Theatre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104343, "question": "Which language is primarily used in the Stephanie Miller Show?", "tool": "broadcast/content/language", "param": "The Stephanie Miller Show", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104344, "question": "What language was spoken in Whiskycast?", "tool": "broadcast/content/language", "param": "WhiskyCast", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104352, "question": "What dietary restrictions or lifestyle might prevent someone from eating turkey meat?", "tool": "food/ingredient/incompatible_with_dietary_restrictions", "param": "Turkey meat", "result": "Veganism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104356, "question": "What is a dietary restriction that excludes back bacon from the diet?", "tool": "food/ingredient/incompatible_with_dietary_restrictions", "param": "Back bacon", "result": "Veganism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104371, "question": "What religion is Saint John Chrysostom venerated in?", "tool": "saints/saint/venerated_in", "param": "Saint John Chrysostom", "result": "Catholicism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104365, "question": "Where was Pope Leo I venerated?", "tool": "saints/saint/venerated_in", "param": "Pope Leo I", "result": "Catholicism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104383, "question": "What book series did Karen Traviss write or contribute to?", "tool": "book/author/series_written_or_contributed_to", "param": "Karen Traviss", "result": "Legacy of the Force"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104378, "question": "Which literary series did Carl Sargent contribute to?", "tool": "book/author/series_written_or_contributed_to", "param": "Carl Sargent", "result": "Shadowrun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104386, "question": "What is a drug that is found in the tetracycline antibiotics class?", "tool": "medicine/drug_class/drugs", "param": "Tetracycline antibiotics", "result": "Demeclocycline"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104395, "question": "What are some drugs within the drug class of polymyxin?", "tool": "medicine/drug_class/drugs", "param": "Polymyxin", "result": "Colistimethate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104404, "question": "Which competitions did Lance Armstrong participate in during award events?", "tool": "award/competitor/competitions", "param": "Lance Armstrong", "result": "2005 Tour de France"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104397, "question": "What competitions did Andy Schleck participate in during the award event?", "tool": "award/competitor/competitions", "param": "Andy Schleck", "result": "2010 Tour de France"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104419, "question": "What is Analeigh Tipton's eye color?", "tool": "fashionmodels/fashion_model/eye_color", "param": "Analeigh Tipton", "result": "Blue"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104416, "question": "What is Rosie Huntington-Whiteley's eye color?", "tool": "fashionmodels/fashion_model/eye_color", "param": "Rosie Huntington-Whiteley", "result": "Blue"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104427, "question": "What type of diseases does the medical specialty of oncology typically treat?", "tool": "medicine/medical_specialty/diseases_treated", "param": "Oncology", "result": "Brain tumor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104428, "question": "What are some diseases treated by virology?", "tool": "medicine/medical_specialty/diseases_treated", "param": "Virology", "result": "Hepatitis D"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104440, "question": "Which school is represented by the mascot of a black panther?", "tool": "education/school_mascot/school", "param": "Black panther", "result": "North Pitt High School"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104435, "question": "What school is Fire the mascot for?", "tool": "education/school_mascot/school", "param": "Fire", "result": "Southeastern University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104447, "question": "What is an example of a place of worship specifically associated with the religion/type_of_place_of_worship/places_of_worship category?", "tool": "religion/type_of_place_of_worship/places_of_worship", "param": "Temple", "result": "Wat Suthat"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104452, "question": "What types of places of worship are there for mosques?", "tool": "religion/type_of_place_of_worship/places_of_worship", "param": "Mosque", "result": "Jama Masjid, Delhi"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104459, "question": "What diseases are caused by Staphylococcus aureus?", "tool": "medicine/disease_cause/diseases", "param": "Staphylococcus aureus", "result": "Osteomyelitis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104461, "question": "What diseases does Bacillus anthracis cause?", "tool": "medicine/disease_cause/diseases", "param": "Bacillus anthracis", "result": "Laryngitis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104477, "question": "Who are the main characters in the play \"Women of Trachis\"?", "tool": "theater/play/characters", "param": "Women of Trachis", "result": "Hyllus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104470, "question": "Who are the main characters in the play Les Misérables?", "tool": "theater/play/characters", "param": "Les Misérables", "result": "Enjolras"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104490, "question": "What is a production performed at the Richard Rodgers Theatre?", "tool": "theater/theater/theatrical_productions_staged_here", "param": "Richard Rodgers Theatre", "result": "Steel Pier"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104489, "question": "What is the name of a production that was staged at the Cort Theatre?", "tool": "theater/theater/theatrical_productions_staged_here", "param": "Cort Theatre", "result": "The Grapes of Wrath"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104494, "question": "What are some Australian awards for fiction?", "tool": "award/award_discipline/awards_in_this_discipline", "param": "Fiction", "result": "Australian Shadows Award for Short Fiction"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104501, "question": "What awards are given in the discipline of paranormal romance books?", "tool": "award/award_discipline/awards_in_this_discipline", "param": "Paranormal romance", "result": "Reviewers' Choice Award for Science Fiction Novel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104511, "question": "What specialized work can domestic workers pursue within their profession?", "tool": "people/profession/specializations", "param": "Domestic worker", "result": "Homemaker"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104506, "question": "What are some specialized roles within the film crew?", "tool": "people/profession/specializations", "param": "Film Crew", "result": "Foley Artist"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104524, "question": "Who is a member of the Brotherhood of Mutants within the fictional universe?", "tool": "fictional_universe/fictional_organization/members", "param": "Brotherhood of Mutants", "result": "Phantazia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104514, "question": "Name a member from the Ultimates.", "tool": "fictional_universe/fictional_organization/members", "param": "Ultimates", "result": "Ultimate Iron Man"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104534, "question": "Name a specific bus transit line within a metropolitan transit system.", "tool": "metropolitan_transit/transit_vehicle/transit_lines", "param": "Bus", "result": "56 Dartmouth Crossing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104526, "question": "What specific transit lines are associated with the transit vehicle within a metropolitan transit system?", "tool": "metropolitan_transit/transit_vehicle/transit_lines", "param": "Bus", "result": "480 - UBC/Richmond Centre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104546, "question": "What is the jurisdiction of the Oregon Department of Forestry?", "tool": "government/government_agency/jurisdiction", "param": "Oregon Department of Forestry", "result": "Oregon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104544, "question": "Where does Transport Scotland have jurisdiction?", "tool": "government/government_agency/jurisdiction", "param": "Transport Scotland", "result": "Scotland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104548, "question": "Which transit system operates the transit line titled \"313 Jane\"?", "tool": "metropolitan_transit/transit_line/transit_system", "param": "313 Jane", "result": "Toronto Transit Commission"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104549, "question": "Which transit system does OC Transpo Route 45 belong to?", "tool": "metropolitan_transit/transit_line/transit_system", "param": "OC Transpo Route 45", "result": "OC Transpo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104565, "question": "What are some examples of bridges of this type, specifically arch bridges?", "tool": "transportation/bridge_type/bridges_of_this_type", "param": "Arch bridge", "result": "Poinsett Bridge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104561, "question": "What's an example of a cable-stayed bridge?", "tool": "transportation/bridge_type/bridges_of_this_type", "param": "Cable-stayed bridge", "result": "Nordhordland Bridge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104576, "question": "What kind of architectural style is associated with Eero Saarinen?", "tool": "architecture/architect/architectural_style", "param": "Eero Saarinen", "result": "Modern architecture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104569, "question": "What architectural style was associated with Gustav Stickley?", "tool": "architecture/architect/architectural_style", "param": "Gustav Stickley", "result": "Organic architecture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104586, "question": "Which 1989 film is the prequel to Goldeneye?", "tool": "film/film/prequel", "param": "GoldenEye", "result": "Licence to Kill"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104588, "question": "What was the prequel related to the film \"The Strangers 2\"?", "tool": "film/film/prequel", "param": "The Strangers 2", "result": "The Strangers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104599, "question": "Is Steven Outerbridge left or right-handed in terms of his batting style?", "tool": "cricket/cricket_player/batting_style", "param": "Steven Outerbridge", "result": "Left-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104591, "question": "What is Bob Woolmer's preferred batting style?", "tool": "cricket/cricket_player/batting_style", "param": "Bob Woolmer", "result": "Right-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104612, "question": "What are the specific transit lines within the bus transit service type of a metropolitan area?", "tool": "metropolitan_transit/transit_service_type/transit_lines", "param": "Bus", "result": "OC Transpo Route 7"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104611, "question": "What is one of the bus transit lines located in London?", "tool": "metropolitan_transit/transit_service_type/transit_lines", "param": "Bus", "result": "London Buses route 60"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104617, "question": "What is the country of origin for the play \"The Good Person of Szechwan\"?", "tool": "theater/play/country_of_origin", "param": "The Good Person of Szechwan", "result": "Switzerland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104621, "question": "Which country is the theater play \"Life's a Dream\" from?", "tool": "theater/play/country_of_origin", "param": "Life's A Dream", "result": "England"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104624, "question": "What is a mission that Sandra Magnus took part in during her spaceflight career?", "tool": "spaceflight/astronaut/missions", "param": "Sandra Magnus", "result": "Expedition 18"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104627, "question": "What mission did Viktor Mikhailovich Afanasyev undertake during his spaceflight career?", "tool": "spaceflight/astronaut/missions", "param": "Viktor Afanasyev", "result": "Soyuz TM-32"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104638, "question": "What are some government agencies operating within the United States?", "tool": "government/governmental_jurisdiction/agencies", "param": "United States of America", "result": "Board of Immigration Appeals"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104642, "question": "Which governmental agency is part of Montana?", "tool": "government/governmental_jurisdiction/agencies", "param": "Montana", "result": "French Consulate General, San Francisco"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104646, "question": "Which colleges and universities have a chapter for the Gamma Eta fraternity or sorority?", "tool": "education/fraternity_sorority/colleges_and_universities", "param": "Gamma Eta", "result": "University of Arkansas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104654, "question": "Name a university that has Alpha Kappa Alpha.", "tool": "education/fraternity_sorority/colleges_and_universities", "param": "Alpha Kappa Alpha", "result": "University of Illinois at Urbana–Champaign"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104662, "question": "What's a piece of art that is considered to be a portrait?", "tool": "visual_art/visual_art_genre/artworks", "param": "Portrait", "result": "Madam Pompadour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104666, "question": "What artworks are associated with the visual art genre of landscapes?", "tool": "visual_art/visual_art_genre/artworks", "param": "Landscape painting", "result": "Mountain Landscape behind the Saint Paul Hospital"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104673, "question": "Where was the theater production of \"Frost/Nixon\" performed?", "tool": "theater/theater_production/performed_at", "param": "Frost/Nixon", "result": "Wharton Center for Performing Arts"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104668, "question": "Where was the theater production of Hamlet performed?", "tool": "theater/theater_production/performed_at", "param": "Hamlet", "result": "Royal Court Theatre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104680, "question": "Which military unit is located in Ohio?", "tool": "military/military_unit_place_of_origin/military_units", "param": "Ohio", "result": "155th Ohio Infantry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104683, "question": "What military units operated in Kentucky?", "tool": "military/military_unit_place_of_origin/military_units", "param": "Kentucky", "result": "45th Regiment Kentucky Volunteer Mounted Infantry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104697, "question": "What types of car body styles were produced by the vintage car manufacturer Horch 500 A?", "tool": "classiccars/vintage_car/body_styles_produced", "param": "Horch 500 A", "result": "Sedan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104695, "question": "What are the body styles produced for the Franklin 11B?", "tool": "classiccars/vintage_car/body_styles_produced", "param": "Franklin 11B", "result": "Coupé"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104707, "question": "Which recurring event did the 2003 Tennis Masters Cup belong to?", "tool": "time/event/instance_of_recurring_event", "param": "2003 Tennis Masters Cup", "result": "ATP World Tour Finals"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104702, "question": "What recurring event does the 1958 Cannes Film Festival belong to?", "tool": "time/event/instance_of_recurring_event", "param": "1958 Cannes Film Festival", "result": "Cannes Film Festival"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104712, "question": "What language is the opera Armida performed in?", "tool": "opera/opera/language", "param": "Armida", "result": "Italian Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104715, "question": "What language is spoken in the opera \"The Tsar's Bride\"?", "tool": "opera/opera/language", "param": "The Tsar's Bride", "result": "Russian Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104729, "question": "What plays are in the burlesque genre?", "tool": "theater/theater_genre/plays_in_this_genre", "param": "Burlesque", "result": "Eager to Lose"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104727, "question": "What is a famous play that is considered to be a musical theatre?", "tool": "theater/theater_genre/plays_in_this_genre", "param": "Musical theatre", "result": "Wicked"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104741, "question": "What is an energetic dog breed type in biology?", "tool": "biology/breed_temperament/breeds", "param": "Energetic", "result": "Boxer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104736, "question": "What is the name of a quiet dog breed in biology?", "tool": "biology/breed_temperament/breeds", "param": "Quiet", "result": "Cesky Terrier"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104744, "question": "Where is the place of worship for people who practice Buddhism?", "tool": "religion/religion/places_of_worship", "param": "Buddhism", "result": "Quốc Ân Temple"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104750, "question": "Where is a place of worship for a Presbyterian?", "tool": "religion/religion/places_of_worship", "param": "Presbyterianism", "result": "Greenville Presbyterian Church"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104755, "question": "What are the seasons of the TV program \"The Simpsons\"?", "tool": "tv/tv_program/seasons", "param": "The Simpsons", "result": "The Simpsons season 5"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104763, "question": "What is the number of seasons of the TV program Australian Idol?", "tool": "tv/tv_program/seasons", "param": "Australian Idol", "result": "Australian Idol - Season 7"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104765, "question": "What comic book series did Shogakukan publish?", "tool": "comic_books/comic_book_publisher/comic_book_series_published", "param": "Shogakukan", "result": "Wangan Midnight"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104767, "question": "What comic book series was published by Akita Shoten?", "tool": "comic_books/comic_book_publisher/comic_book_series_published", "param": "Akita Shoten", "result": "Cyborg 009"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104779, "question": "What type of crime was Graeme Thorne a victim of?", "tool": "crime/crime_victim/crime_type", "param": "Graeme Thorne", "result": "Kidnapping"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104776, "question": "How was Rachel Nickell killed in terms of crime type?", "tool": "crime/crime_victim/crime_type", "param": "Rachel Nickell", "result": "Murder"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104789, "question": "What international sport does Enrique Osses officiate?", "tool": "fight/sports_official/sport", "param": "Enrique Osses", "result": "Soccer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104788, "question": "What sport is Horace Botsford known for officiating?", "tool": "fight/sports_official/sport", "param": "Horace Botsford", "result": "American football"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104802, "question": "Who owns the television station KBLR?", "tool": "broadcast/tv_station/owner", "param": "KBLR", "result": "NBCUniversal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104801, "question": "Who owns KTAZ?", "tool": "broadcast/tv_station/owner", "param": "KTAZ", "result": "NBCUniversal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104811, "question": "What star can be found in the constellation Sculptor?", "tool": "astronomy/constellation/contains", "param": "Sculptor", "result": "Sigma Sculptoris"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104812, "question": "What star is found in the Coma Berenices constellation?", "tool": "astronomy/constellation/contains", "param": "Coma Berenices", "result": "Alpha Comae Berenices"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104815, "question": "What is the ship class of the vessel with the designation KZ 7?", "tool": "boats/ship/ship_class", "param": "KZ 7", "result": "12-metre class"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104818, "question": "What is the ship class of the USS Uhlmann (DD-687)?", "tool": "boats/ship/ship_class", "param": "USS Uhlmann (DD-687)", "result": "Fletcher-class destroyer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104827, "question": "What is an example of a literary magazine?", "tool": "book/magazine_genre/magazines_in_this_genre", "param": "Literary magazine", "result": "The New York Times Book Review"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104825, "question": "What is an example of a political magazine?", "tool": "book/magazine_genre/magazines_in_this_genre", "param": "Political magazine", "result": "Political Affairs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104839, "question": "Which stop is part of the Orange Line in the metropolitan transit system?", "tool": "metropolitan_transit/transit_line/stops", "param": "Orange Line", "result": "Roxbury Crossing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104838, "question": "What are the names of the transit stops on the Seoul Subway Line 2?", "tool": "metropolitan_transit/transit_line/stops", "param": "Seoul Subway Line 2", "result": "Jamsil Station"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104851, "question": "Who is the inventor of wireless telegraphy?", "tool": "law/invention/inventor", "param": "Wireless telegraphy", "result": "Heinrich Hertz"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104847, "question": "Who was the inventor of the internal combustion engine?", "tool": "law/invention/inventor", "param": "Internal combustion engine", "result": "Nikolaus Otto"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104863, "question": "What is the next book in the Hunger Games series?", "tool": "book/written_work/next_in_series", "param": "The Hunger Games", "result": "Catching Fire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104854, "question": "What is the next book in the series after \"Fight Club\"?", "tool": "book/written_work/next_in_series", "param": "Fight Club", "result": "Survivor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104864, "question": "What type of fish is found in Lake Wallenpaupack?", "tool": "schemastaging/body_of_water_extra/fish", "param": "Lake Wallenpaupack", "result": "Muskellunge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104865, "question": "What type of fish can be found in Lake Mendota?", "tool": "schemastaging/body_of_water_extra/fish", "param": "Lake Mendota", "result": "Northern pike"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104876, "question": "Name an island in the Kurii Islands group.", "tool": "geography/island_group/islands_in_group", "param": "Kuril Islands", "result": "Iturup"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104879, "question": "What is one of the islands that can be found in the Near Islands group?", "tool": "geography/island_group/islands_in_group", "param": "Near Islands", "result": "Shemya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104887, "question": "What are the main subjects covered in the computer video game \"Hidden & Dangerous\"?", "tool": "cvg/computer_videogame/subjects", "param": "Hidden & Dangerous", "result": "World War II"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104893, "question": "What are the main subjects covered in the computer video game MiG-29: Soviet Fighter?", "tool": "cvg/computer_videogame/subjects", "param": "MiG-29: Soviet Fighter", "result": "Mikoyan MiG-29"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104896, "question": "Which game engine is utilized by the computer video game Spec Ops: The Line?", "tool": "cvg/computer_videogame/uses_game_engine", "param": "Spec Ops: The Line", "result": "Unreal Engine 3"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104897, "question": "Which game engine is utilized in the computer video game Rune?", "tool": "cvg/computer_videogame/uses_game_engine", "param": "Rune", "result": "Unreal Engine 1"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104912, "question": "What genre specifies the magazine Adweek?", "tool": "book/magazine/genre", "param": "Adweek", "result": "Trade magazine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104907, "question": "What genre does PC Advisor belong to?", "tool": "book/magazine/genre", "param": "PC Advisor", "result": "Computer magazine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104921, "question": "What area of research is Chung-Pei Ma involved in?", "tool": "education/academic/research_areas", "param": "Chung-Pei Ma", "result": "Cosmology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104916, "question": "What are Kristian Birkeland's research areas within the field of education or academia?", "tool": "education/academic/research_areas", "param": "Kristian Birkeland", "result": "Physics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104931, "question": "Which country contains the Valencian Community?", "tool": "location/administrative_division/first_level_division_of", "param": "Valencian Community", "result": "Spain"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104928, "question": "What is the first-level administrative division of the British Virgin Islands?", "tool": "location/administrative_division/first_level_division_of", "param": "British Virgin Islands", "result": "United Kingdom, with Dependencies and Territories"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104937, "question": "What sport is played in the 2013 NRL Grand Final?", "tool": "sports/sports_championship_event/championship", "param": "2013 NRL Grand Final", "result": "NRL Grand Final"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104935, "question": "What championship was the Super Bowl XXXV a part of?", "tool": "sports/sports_championship_event/championship", "param": "Super Bowl XXXV", "result": "Super Bowl"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104950, "question": "What kind of transit service does the N9 - Downtown/Coquitlam Station Nightbus provide?", "tool": "metropolitan_transit/transit_line/service_type", "param": "N9 - Downtown/Coquitlam Station Nightbus", "result": "Bus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104947, "question": "What type of transport does the Trenton Line provide?", "tool": "metropolitan_transit/transit_line/service_type", "param": "Trenton Line", "result": "Train"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104954, "question": "What is the lineage or family tree of Philip III of Spain?", "tool": "royalty/monarch/royal_line", "param": "Philip III of Spain", "result": "House of Habsburg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104956, "question": "What is the royal lineage of Henri, Grand Duke of Luxembourg?", "tool": "royalty/monarch/royal_line", "param": "Henri, Grand Duke of Luxembourg", "result": "House of Nassau-Weilburg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104972, "question": "What programming languages influenced Lua?", "tool": "computer/programming_language/influenced_by", "param": "Lua", "result": "Scheme"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104969, "question": "What programming languages influenced the design or syntax of Ratfor?", "tool": "computer/programming_language/influenced_by", "param": "Ratfor", "result": "Fortran"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104979, "question": "Who is the producing company behind the theater production \"Tamburlaine the Great\"?", "tool": "theater/theater_production/producing_company", "param": "Tamburlaine the Great", "result": "Royal National Theatre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104977, "question": "Which producing company produced the theater production Bedroom Farce?", "tool": "theater/theater_production/producing_company", "param": "Bedroom Farce", "result": "Royal National Theatre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104986, "question": "Who was the author of the literary series \"Shannara\"?", "tool": "book/literary_series/author_s", "param": "Shannara", "result": "Terry Brooks"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104991, "question": "Who is the author of the Sword and Sorceress series?", "tool": "book/literary_series/author_s", "param": "Sword and Sorceress series", "result": "Pat Murphy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 104995, "question": "Who is a female character from the Death Note comic book series?", "tool": "comic_books/comic_book_series/featured_characters", "param": "Death Note", "result": "Kiyomi Takada"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105003, "question": "What character is featured in Superman: Red Son?", "tool": "comic_books/comic_book_series/featured_characters", "param": "Superman: Red Son", "result": "Superman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105012, "question": "What is Evita's gender?", "tool": "givennames/given_name/gender", "param": "Evita", "result": "Female"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105007, "question": "What is the gender associated with the given name Kayla?", "tool": "givennames/given_name/gender", "param": "Kayla", "result": "Female"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105013, "question": "Which products are associated with the brand Barbie?", "tool": "business/brand/products", "param": "Barbie", "result": "Sapphire Dream Barbie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105017, "question": "What are the various occupations that Barbie dolls can have?", "tool": "business/brand/products", "param": "Barbie", "result": "The Artist Barbie Doll"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105026, "question": "Who is responsible for the interior illustrations of the book \"Snow White and the Seven Dwarfs\"?", "tool": "book/book/interior_illustrations_by", "param": "Snow White and the Seven Dwarfs", "result": "Wanda Gág"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105028, "question": "Who was the illustrator for the interior illustrations of the book \"Tom Tit Tot: An English Folk Tale\"?", "tool": "book/book/interior_illustrations_by", "param": "Tom Tit Tot: An English Folk Tale", "result": "Evaline Ness"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105036, "question": "What is the subgenre of New Romanticism?", "tool": "music/genre/subgenre", "param": "New Romanticism", "result": "Romo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105032, "question": "What is the subgenre of Fluxus?", "tool": "music/genre/subgenre", "param": "Fluxus", "result": "Industrial music"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105047, "question": "What languages use the Malayalam alphabet?", "tool": "language/language_writing_system/languages", "param": "Malayalam script", "result": "Tulu Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105043, "question": "What languages use Traditional Chinese characters in their writing system?", "tool": "language/language_writing_system/languages", "param": "Traditional Chinese characters", "result": "Taiwanese Mandarin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105051, "question": "What is the significance level of the Prague hotel?", "tool": "usnris/nris_listing/significance_level", "param": "Prague Hotel", "result": "Local"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105056, "question": "What is the significance level of Quincy Market among USNRIs/NRIs listings?", "tool": "usnris/nris_listing/significance_level", "param": "Quincy Market", "result": "National"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105063, "question": "Is the Auburn 852 produced as a 4-door or convertible?", "tool": "classiccars/classic_car/body_styles_produced", "param": "Auburn 852", "result": "Convertible"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105060, "question": "What body style is the Talbot K78 classic car?", "tool": "classiccars/classic_car/body_styles_produced", "param": "Talbot K78", "result": "Convertible"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105073, "question": "What aircraft models were made by North American Aviation?", "tool": "aviation/aircraft_manufacturer/aircraft_models_made", "param": "North American Aviation", "result": "North American F-86D Sabre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105072, "question": "What are some aircraft models made by Kawasaki Heavy Industries?", "tool": "aviation/aircraft_manufacturer/aircraft_models_made", "param": "Kawasaki Heavy Industries", "result": "Kawasaki Ki-100"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105081, "question": "What country produced the 2005 Angeline Sonoma County Cabernet Sauvignon?", "tool": "wine/wine/country", "param": "2005 Angeline Sonoma County Cabernet Sauvignon", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105080, "question": "What country produces the 2004 Chatom Sierra Foothills Estate Zinfandel?", "tool": "wine/wine/country", "param": "2004 Chatom Sierra Foothills Estate Zinfandel", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105091, "question": "Which architecture firm designed 25 Bank Street?", "tool": "architecture/structure/architecture_firm", "param": "25 Bank Street", "result": "César Pelli and Associates"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105085, "question": "Which architecture firm was responsible for designing the Monsanto House of the Future?", "tool": "architecture/structure/architecture_firm", "param": "Monsanto House of the Future", "result": "Walt Disney Imagineering"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105100, "question": "What symptom is accompanied with a blood disorder?", "tool": "people/cause_of_death/includes_causes_of_death", "param": "Blood disorder", "result": "Gastrointestinal bleeding"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105094, "question": "What type of deadly cancer is associated with the person's cause of death?", "tool": "people/cause_of_death/includes_causes_of_death", "param": "Cancer", "result": "Mesothelioma"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105108, "question": "Is Michael Martin, the philosopher, associated with the modern era or an older period in philosophy?", "tool": "philosophy/philosopher/era", "param": "Michael Martin", "result": "Contemporary philosophy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105104, "question": "What era of philosophy is associated with John Broome?", "tool": "philosophy/philosopher/era", "param": "John Broome", "result": "Contemporary philosophy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105116, "question": "What is a famous horse from Germany in thoroughbred racing?", "tool": "thoroughbredracing/thoroughbred_racehorse_origin/horses_from_this_location", "param": "Germany", "result": "Danedream"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105117, "question": "What is the list of thoroughbred racehorses originating from this location?", "tool": "thoroughbredracing/thoroughbred_racehorse_origin/horses_from_this_location", "param": "United States of America", "result": "Alleged"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105123, "question": "What are some examples of governmental bodies in Germany?", "tool": "government/governmental_jurisdiction/government_bodies", "param": "Germany", "result": "Bundestag"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105121, "question": "What are the various governmental bodies within the jurisdiction of Scotland?", "tool": "government/governmental_jurisdiction/government_bodies", "param": "Scotland", "result": "Scottish Parliament"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105130, "question": "What is a more general term for a plum tomato?", "tool": "food/ingredient/more_general_ingredient", "param": "Plum tomato", "result": "Tomato"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105132, "question": "What is the broader category of Splenda?", "tool": "food/ingredient/more_general_ingredient", "param": "Splenda", "result": "Sweetener"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105147, "question": "What accommodation type is the Dominion Hotel?", "tool": "travel/accommodation/accommodation_type", "param": "The Dominion Hotel", "result": "Hotel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105139, "question": "What types of accommodation are available at Historical Residence Hotel I Pini?", "tool": "travel/accommodation/accommodation_type", "param": "Historical Residence Hotel I Pini", "result": "Boutique hotel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105151, "question": "What team finished as the runner-up in the 1965 NBA Finals?", "tool": "sports/sports_championship_event/runner_up", "param": "1965 NBA Finals", "result": "Los Angeles Lakers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105148, "question": "Who was the runner-up for the 2003 UEFA Champions League final?", "tool": "sports/sports_championship_event/runner_up", "param": "2003 UEFA Champions League Final", "result": "Juventus F.C."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105161, "question": "What overarching concept or theory does the Mersenne Twister fall under in the realm of science and concepts?", "tool": "science/concepts_theories/parent_concept", "param": "Mersenne Twister", "result": "Mathematics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105159, "question": "What is the parent concept of the scientific concept \"complex manifold\"?", "tool": "science/concepts_theories/parent_concept", "param": "Complex manifold", "result": "Differential topology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105167, "question": "What are some historical societies in Nebraska?", "tool": "organization/organization_type/organizations_of_this_type", "param": "Historical society", "result": "Nebraska State Historical Society"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105166, "question": "What type of organization is the subsidiary of this organization?", "tool": "organization/organization_type/organizations_of_this_type", "param": "Subsidiary", "result": "Bonneville International"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105183, "question": "What country is the Wyandotte breed of chicken native to?", "tool": "biology/animal_breed/place_of_origin", "param": "Wyandotte chicken", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105178, "question": "What country is the Boxer breed of dog from?", "tool": "biology/animal_breed/place_of_origin", "param": "Boxer", "result": "Germany"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105184, "question": "What is the predominant color associated with a Thoroughbred racehorse?", "tool": "thoroughbredracing/thoroughbred_racehorse/color", "param": "Boston", "result": "Chestnut"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105189, "question": "What is the predominant color associated with Judge Himes, a Thoroughbred racehorse?", "tool": "thoroughbredracing/thoroughbred_racehorse/color", "param": "Judge Himes", "result": "Chestnut"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105195, "question": "What are some sites protected by the United States Forest Service?", "tool": "protected_sites/governing_body_of_protected_sites/protected_sites_governed", "param": "United States Forest Service", "result": "Black Fork Mountain Wilderness"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105199, "question": "What part is protected by the Florida Department of Environmental Protection?", "tool": "protected_sites/governing_body_of_protected_sites/protected_sites_governed", "param": "Florida Department of Environmental Protection", "result": "Eden Gardens State Park"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105209, "question": "Name a monarch from the Valentinian dynasty.", "tool": "royalty/royal_line/monarchs_from_this_line", "param": "Valentinian dynasty", "result": "Valentinian I"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105205, "question": "Who are the monarchs from the Antigonid dynasty family line?", "tool": "royalty/royal_line/monarchs_from_this_line", "param": "Antigonid dynasty", "result": "Perseus of Macedon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105216, "question": "What cameras are compatible with a Secure Digital (SD) card for storage?", "tool": "digicams/camera_storage_type/compatible_cameras", "param": "Secure Digital", "result": "Kodak EasyShare M753"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105215, "question": "What is the name of a digital camera that uses SDHC card for storage?", "tool": "digicams/camera_storage_type/compatible_cameras", "param": "SDHC Card", "result": "Pentax K20D"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105224, "question": "Who are the associated authors within the symbolism movement, particularly focusing on Ukrainian poets?", "tool": "book/school_or_movement/associated_authors", "param": "Symbolism", "result": "Pavlo Tychyna"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105227, "question": "Who are the associated authors with the literary movement of modernism?", "tool": "book/school_or_movement/associated_authors", "param": "Modernism", "result": "Maria Banuş"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105235, "question": "Which Olympic events has Poland participated in?", "tool": "olympics/olympic_participating_country/olympics_participated_in", "param": "Poland", "result": "1980 Winter Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105234, "question": "What Olympic Games has New Zealand participated in?", "tool": "olympics/olympic_participating_country/olympics_participated_in", "param": "New Zealand", "result": "2000 Summer Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105245, "question": "What are the names of environmental disasters that have occurred in Italy?", "tool": "event/disaster_type/disasters_of_this_type", "param": "Environmental disaster", "result": "Bhopal disaster"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105240, "question": "What was a pandemic that took place in England?", "tool": "event/disaster_type/disasters_of_this_type", "param": "Pandemic", "result": "Derby plague of 1665"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105252, "question": "What platforms is Lode Runner available on?", "tool": "cvg/computer_videogame/platforms", "param": "Lode Runner", "result": "BBC Micro"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105253, "question": "What platforms is the Gumball video game available on?", "tool": "cvg/computer_videogame/platforms", "param": "Gumball", "result": "Commodore 64"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105258, "question": "What is the title of a science fiction story?", "tool": "media_common/literary_genre/stories_in_this_genre", "param": "Science Fiction", "result": "Neutron Tide"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105256, "question": "What are some literary works within the horror genre?", "tool": "media_common/literary_genre/stories_in_this_genre", "param": "Horror", "result": "Nona"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105265, "question": "Who uploaded the content about the Hundred Years' War to Freebase?", "tool": "type/content/uploaded_by", "param": "Hundred Years' War", "result": "Freebase Data Team"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105264, "question": "Who uploaded the content related to Barbados?", "tool": "type/content/uploaded_by", "param": "Barbados", "result": "Freebase Data Team"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105272, "question": "Who published the comic book series Rurouni Kenshin?", "tool": "comic_books/comic_book_series/publisher", "param": "Rurouni Kenshin", "result": "Victor Gollancz Ltd"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105275, "question": "Who published the comic book series Annihilation?", "tool": "comic_books/comic_book_series/publisher", "param": "Annihilation", "result": "Marvel Comics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105282, "question": "What is the title of the video game featuring the soundtrack \"Dig\"?", "tool": "cvg/video_game_soundtrack/video_game", "param": "The Dig", "result": "The Dig"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105281, "question": "What is the title of the video game that featured the Hellgate: London soundtrack?", "tool": "cvg/video_game_soundtrack/video_game", "param": "Hellgate: London: Official Game Soundtrack", "result": "Hellgate: London"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105290, "question": "What group can people of Uzbek ethnicity in Pakistan be involved in?", "tool": "people/ethnicity/included_in_group", "param": "Uzbeks in Pakistan", "result": "Uzbeks"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105291, "question": "What are the ethnicities included in the Apache tribe?", "tool": "people/ethnicity/included_in_group", "param": "Apache", "result": "Mescalero"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105301, "question": "What collection category does the Hard Rock Barbie Doll #G7915 belong to?", "tool": "interests/collectable_item/collection_category", "param": "Hard Rock Barbie Doll #G7915", "result": "Barbie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105297, "question": "What collection category does \"Barbie as Swan Ballerina from Swan Lake\" belong to?", "tool": "interests/collectable_item/collection_category", "param": "Barbie As Swan Ballerina From Swan Lake", "result": "Barbie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105308, "question": "What are the transit lines serving Liverpool Street Station?", "tool": "metropolitan_transit/transit_stop/transit_lines", "param": "Liverpool Street station", "result": "Metropolitan line"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105302, "question": "What transit line serves the Haymarket transit stop?", "tool": "metropolitan_transit/transit_stop/transit_lines", "param": "Haymarket", "result": "Green Line"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105315, "question": "What is the official language of the Kingdom of England?", "tool": "location/country/official_language", "param": "Kingdom of England", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105314, "question": "What language is spoken in Buganda?", "tool": "location/country/official_language", "param": "Buganda", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105322, "question": "Name a natural history museum in San Antonio, Texas.", "tool": "architecture/type_of_museum/museums", "param": "Natural history museum", "result": "Witte Museum"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105323, "question": "What is the type of architecture of science museums in North Carolina?", "tool": "architecture/type_of_museum/museums", "param": "Science museum", "result": "North Carolina Museum of Natural Sciences"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105328, "question": "What television series does Peppa Pig - Season 2 belong to?", "tool": "tv/tv_series_season/series", "param": "Peppa Pig - Season 2", "result": "Peppa Pig"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105326, "question": "What television series does MTV Roadies - Season 8 belong to?", "tool": "tv/tv_series_season/series", "param": "MTV Roadies - Season 8", "result": "MTV Roadies"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105337, "question": "What is the classification of Muir Woods National Monument?", "tool": "usnationalparks/us_national_park/classification", "param": "Muir Woods National Monument", "result": "National Monument"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105340, "question": "What is the classification of Poverty Point in terms of U.S. national parks or monuments?", "tool": "usnationalparks/us_national_park/classification", "param": "Poverty Point", "result": "National Monument"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105342, "question": "Who is someone that is proficient in the field of poliomyelitis?", "tool": "education/field_of_study/academics_in_this_field", "param": "Poliomyelitis", "result": "Albert Sabin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105347, "question": "Who is an academic of visualization and what institutions, research, and publications are associated with this field of study?", "tool": "education/field_of_study/academics_in_this_field", "param": "Visualization", "result": "TJ Jankun-Kelly"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105354, "question": "What storyline did Cyclops appear in comic books?", "tool": "comic_books/comic_book_character/story_specific_appearances", "param": "Cyclops", "result": "Deadly Genesis!"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105350, "question": "What are the specific appearances of Two-Face within a particular storyline or arc in comic books?", "tool": "comic_books/comic_book_character/story_specific_appearances", "param": "Two-Face", "result": "Double Image"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105358, "question": "What is the predecessor to the Peugeot 604?", "tool": "automotive/model/predecessor", "param": "Peugeot 604", "result": "Peugeot 601"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105362, "question": "What is the model that preceded the Plymouth Reliant?", "tool": "automotive/model/predecessor", "param": "Plymouth Reliant", "result": "Plymouth Road Runner"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105368, "question": "What chromosome contains the gene for 2,3-cyclic nucleotide 3 phosphodiesterase in biology?", "tool": "biology/gene/chromosome", "param": "2',3'-cyclic nucleotide 3' phosphodiesterase", "result": "Chromosome 17 (human)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105370, "question": "Which chromosome is associated with the gene for hyaluronan-mediated motility receptor (RHAMM) in biology?", "tool": "biology/gene/chromosome", "param": "hyaluronan-mediated motility receptor (RHAMM)", "result": "Chromosome 5"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105377, "question": "What organization does the fictional character Albert Wesker belong to?", "tool": "fictional_universe/fictional_character/organizations", "param": "Albert Wesker", "result": "STARS"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105374, "question": "Which military organization does Robert L. Budahas belong to within the fictional universe?", "tool": "fictional_universe/fictional_character/organizations", "param": "Robert L. Budahas", "result": "United States Department of the Air Force"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105384, "question": "What is Robin Singh's bowling style?", "tool": "cricket/cricket_bowler/bowling_style", "param": "Robin Singh", "result": "Right-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105389, "question": "What is Abey Kuruvilla's bowling style in cricket?", "tool": "cricket/cricket_bowler/bowling_style", "param": "Abey Kuruvilla", "result": "Right-handed"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105396, "question": "What is a national park in Wyoming that falls under the IUCN category of protected sites?", "tool": "protected_sites/iucn_category/protected_areas", "param": "National park", "result": "Encampment River Wilderness"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105393, "question": "What are some specific protected areas classified under the IUCN category of protected sites?", "tool": "protected_sites/iucn_category/protected_areas", "param": "National park", "result": "Nikkō National Park"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105404, "question": "What is the name of a unit in the Confederate States Army?", "tool": "military/armed_force/units", "param": "Confederate States Army", "result": "2nd Kentucky Cavalry Regiment (Duke's)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105403, "question": "Name a unit of the Confederate States Army.", "tool": "military/armed_force/units", "param": "Confederate States Army", "result": "35th Regiment Alabama Infantry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105409, "question": "What is the type of disaster that occurred during the 2013 New South Wales bushfires?", "tool": "event/disaster/type_of_disaster", "param": "2013 New South Wales bushfires", "result": "Wildfire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105412, "question": "What type of disaster was the 1918 flu pandemic?", "tool": "event/disaster/type_of_disaster", "param": "1918 flu pandemic", "result": "Pandemic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105414, "question": "What is the rank of Arthas Menethil within the fictional universe?", "tool": "fictional_universe/fictional_character/rank", "param": "Arthas Menethil", "result": "Crown prince"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105419, "question": "What is Prince Caspian's rank within his fictional universe?", "tool": "fictional_universe/fictional_character/rank", "param": "Prince Caspian", "result": "Crown prince"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105429, "question": "What is the number of occurrences of the Juno Award ceremony?", "tool": "time/recurring_event/instances", "param": "Juno Award Ceremony", "result": "Juno Awards of 2007"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105422, "question": "What is the number of occurrences of the Cannes Film Festival over a specified period of time?", "tool": "time/recurring_event/instances", "param": "Cannes Film Festival", "result": "1947 Cannes Film Festival"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105431, "question": "What is the IUCN category of Skaftafell National Park?", "tool": "protected_sites/protected_site/iucn_category", "param": "Skaftafell", "result": "National park"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105434, "question": "What is the IUCN category of Ellis Island?", "tool": "protected_sites/protected_site/iucn_category", "param": "Ellis Island", "result": "III: Natural Monument"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105443, "question": "Name a famous thoroughbred mare.", "tool": "thoroughbredracing/thoroughbred_racehorse_sex/horses_of_this_sex", "param": "Mare", "result": "Reel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105444, "question": "What was \"Fantasy\" released on?", "tool": "thoroughbredracing/thoroughbred_racehorse_sex/horses_of_this_sex", "param": "Filly", "result": "Fairy Chant"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105453, "question": "What subjects or themes are covered in the quotation \"I must decide if you deserve to die\"?", "tool": "media_common/quotation/subjects", "param": "\"I must decide if you deserve to die.\"", "result": "Revenge"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105451, "question": "What are the subjects or themes covered in the quotation \"More Human Than Human\"?", "tool": "media_common/quotation/subjects", "param": "More human than human", "result": "Artificial intelligence"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105457, "question": "What field of study is structural engineering a subdiscipline of?", "tool": "education/field_of_study/subdiscipline_of", "param": "Structural engineering", "result": "Engineering Science"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105456, "question": "What field of study is zoology a subdiscipline of?", "tool": "education/field_of_study/subdiscipline_of", "param": "Zoology", "result": "Biology"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105467, "question": "Which comic book series did Greg Rucka create?", "tool": "comic_books/comic_book_creator/series_created", "param": "Greg Rucka", "result": "Superman: World of New Krypton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105468, "question": "What series did Louise Simonson create?", "tool": "comic_books/comic_book_creator/series_created", "param": "Louise Simonson", "result": "Cable & Deadpool"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105476, "question": "What is the highest grade taught at Johnnie Cochran, Jr., Middle School?", "tool": "education/school/highest_grade_taught", "param": "Johnnie Cochran, Jr., Middle School", "result": "Eighth grade"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105470, "question": "What is the highest grade taught at Legend High School?", "tool": "education/school/highest_grade_taught", "param": "Legend High School", "result": "Ninth grade"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105485, "question": "What is the newspaper affiliated with Dartmouth College?", "tool": "education/educational_institution/newspaper", "param": "Dartmouth College", "result": "The Dartmouth Review"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105481, "question": "What is the name of the newspaper for the University of Texas at Arlington?", "tool": "education/educational_institution/newspaper", "param": "University of Texas at Arlington", "result": "The Shorthorn"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105486, "question": "Which Olympic Games have featured shooting sports?", "tool": "olympics/olympic_sport/olympic_games_contested", "param": "Shooting sport", "result": "1912 Summer Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105492, "question": "Which Olympic Games has freestyle skiing been contested in?", "tool": "olympics/olympic_sport/olympic_games_contested", "param": "Freestyle skiing", "result": "1994 Winter Olympics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105501, "question": "What institution has the Hampton Pirates men's basketball team?", "tool": "sports/school_sports_team/school", "param": "Hampton Pirates men's basketball", "result": "Hampton University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105495, "question": "What is the name of the school associated with the Texas State Bobcats football team?", "tool": "sports/school_sports_team/school", "param": "Texas State Bobcats football", "result": "Texas State University"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105506, "question": "What plays has the Shubert Organization produced?", "tool": "theater/theater_company/plays_produced", "param": "The Shubert Organization", "result": "Sherlock Holmes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105507, "question": "Which plays were produced by the New York Shakespeare Festival in 1983?", "tool": "theater/theater_company/plays_produced", "param": "Shakespeare in the Park", "result": "Orgasmo Adulto Escapes from the Zoo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105510, "question": "Which teams are part of the Southeastern Conference?", "tool": "basketball/basketball_conference/teams", "param": "Southeastern Conference", "result": "LSU Tigers men's basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105515, "question": "Which basketball teams are part of the Southland Conference?", "tool": "basketball/basketball_conference/teams", "param": "Southland Conference", "result": "Lamar Cardinals Men's Basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105518, "question": "What is the parent cause of death of macroglobulinemia?", "tool": "people/cause_of_death/parent_cause_of_death", "param": "Waldenström's macroglobulinemia", "result": "Cancer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105521, "question": "How does viral hepatitis start?", "tool": "people/cause_of_death/parent_cause_of_death", "param": "Viral hepatitis", "result": "Liver disease"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105533, "question": "What are the fictional representations of Krystyna Skarbek within various works of fiction?", "tool": "fictional_universe/person_in_fiction/representations_in_fiction", "param": "Krystyna Skarbek", "result": "Vesper Lynd"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105532, "question": "How is Telemachus represented in fiction?", "tool": "fictional_universe/person_in_fiction/representations_in_fiction", "param": "Telemachus", "result": "Telemachus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105535, "question": "Which lake can be called a reservoir?", "tool": "geography/lake_type/lakes_of_this_type", "param": "Reservoir", "result": "Lake Oliver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105534, "question": "What type of body of water is a reservoir?", "tool": "geography/lake_type/lakes_of_this_type", "param": "Reservoir", "result": "Lac d'Icogne"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105543, "question": "What condition or illness is abdominal pain a symptom of in animals?", "tool": "pethealth/symptom/symptom_of", "param": "Abdominal pain", "result": "Pancreatitis in cats and dogs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105547, "question": "What condition or illness is a sore throat a symptom of in a pet's health?", "tool": "pethealth/symptom/symptom_of", "param": "Sore throat", "result": "Infectious canine hepatitis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105554, "question": "What is the title of the book that precedes \"The Garden of Eden\" in its series?", "tool": "book/written_work/previous_in_series", "param": "The Garden of Eden", "result": "The Dangerous Summer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105553, "question": "What is the title of the book preceding \"Wife of Bath\" in the series?", "tool": "book/written_work/previous_in_series", "param": "The Wife of Bath's Tale", "result": "The Man of Law's Tale"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105557, "question": "Who is the illustrator for Frank Miller's books?", "tool": "book/illustrator/books_illustrated", "param": "Frank Miller", "result": "Batman: The Dark Knight Returns"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105560, "question": "What is the name of a book that was illustrated by David Shannon?", "tool": "book/illustrator/books_illustrated", "param": "David Shannon", "result": "How I Became a Pirate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105564, "question": "What is the name of a concert tour by Judas Priest?", "tool": "music/artist/concert_tours", "param": "Judas Priest", "result": "Judas Priest 2008/2009 World Tour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105567, "question": "What is the name of Carrie Underwood's concert tour?", "tool": "music/artist/concert_tours", "param": "Carrie Underwood", "result": "Carnival Ride Tour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105570, "question": "What US state region is the wine 2003 Trinitas Russian River Valley Zinfandel from?", "tool": "wine/wine/region", "param": "2003 Trinitas Russian River Valley Zinfandel", "result": "California"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105571, "question": "What region is the wine 2005 Castoro Paso Robles Cabernet Sauvignon from?", "tool": "wine/wine/region", "param": "2005 Castoro Paso Robles Cabernet Sauvignon", "result": "California"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105580, "question": "What country practices theocracy?", "tool": "government/form_of_government/countries", "param": "Theocracy", "result": "Emirate of Bukhara"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105582, "question": "What countries implement a parliamentary system of government?", "tool": "government/form_of_government/countries", "param": "Parliamentary system", "result": "Barbados"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105588, "question": "Who created the comic book character Molecule Man?", "tool": "comic_books/comic_book_character/created_by", "param": "Molecule Man", "result": "Jack Kirby"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105585, "question": "Who created the comic book character Invisible Woman?", "tool": "comic_books/comic_book_character/created_by", "param": "Susan Storm", "result": "Jack Kirby"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105596, "question": "What championships have the New England Patriots won?", "tool": "sports/sports_team/championships", "param": "New England Patriots", "result": "2002 AFC Championship Game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105597, "question": "What championships did the New York Giants win?", "tool": "sports/sports_team/championships", "param": "New York Giants", "result": "Super Bowl XXV"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105601, "question": "Who was the composer of the theater play \"The Garden of Earthly Delights\"?", "tool": "theater/play/composer", "param": "The Garden of Earthly Delights", "result": "Richard Peaslee"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105599, "question": "Who was the composer of the theater play Andy Capp?", "tool": "theater/play/composer", "param": "Andy Capp", "result": "Alan Price"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105609, "question": "What is the brand that created the Trace of Lace Barbie Doll #G7212B?", "tool": "business/consumer_product/brand", "param": "Trace of Lace Barbie Doll #G7212b", "result": "Barbie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105607, "question": "Who is the brand behind Twinkie?", "tool": "business/consumer_product/brand", "param": "Twinkie", "result": "Hostess"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105618, "question": "Who was the ruler of Moldavia from 1457 to 1504?", "tool": "royalty/kingdom/rulers", "param": "Moldavia", "result": "Stephen III of Moldavia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105616, "question": "Who was the ruler of the Bahamas?", "tool": "royalty/kingdom/rulers", "param": "Bahamas", "result": "Elizabeth II"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105620, "question": "Who distributed the game Splatterhouse?", "tool": "cvg/game_version/distributed_through", "param": "Splatterhouse", "result": "Virtual Console"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105622, "question": "Where was Light Trax distributed through?", "tool": "cvg/game_version/distributed_through", "param": "Light Trax", "result": "WiiWare"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105632, "question": "Which sports teams are associated with Furman University?", "tool": "education/educational_institution/sports_teams", "param": "Furman University", "result": "Furman Paladins men's basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105631, "question": "What sports teams are associated with the University of Maryland, College Park?", "tool": "education/educational_institution/sports_teams", "param": "University of Maryland, College Park", "result": "Maryland Terrapins men's basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105635, "question": "What variant is the De Havilland Comet aircraft model?", "tool": "aviation/aircraft_model/variants", "param": "De Havilland Comet", "result": "Hawker Siddeley Nimrod"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105639, "question": "What are some variations of the F-8 Crusader aircraft model?", "tool": "aviation/aircraft_model/variants", "param": "Vought F-8 Crusader", "result": "LTV A-7 Corsair II"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105644, "question": "What is a breed of cat that originated in Egypt?", "tool": "biology/breed_origin/breeds_originating_here", "param": "Egypt", "result": "Abyssinian cat"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105642, "question": "What is a breed of animals that originated in Wales?", "tool": "biology/breed_origin/breeds_originating_here", "param": "Wales", "result": "Welsh Sheepdog"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105647, "question": "Who was the producer of the broadcast content for the Dr. Oz Show?", "tool": "broadcast/content/producer", "param": "The Dr. Oz Show", "result": "Harpo Productions"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105652, "question": "Who oversees the creation, development, and execution of the content for the broadcast of NPR's \"Wait Wait... Don't Tell Me!\" podcast?", "tool": "broadcast/content/producer", "param": "Wait Wait... Don't Tell Me!", "result": "NPR"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105656, "question": "What country did Edgar Towner pledge allegiance to as a military person?", "tool": "military/military_person/allegiance", "param": "Edgar Towner", "result": "Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105657, "question": "What country did Hector Waller pledge his allegiance to?", "tool": "military/military_person/allegiance", "param": "Hector Waller", "result": "Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105665, "question": "Where did Spider-Man take place?", "tool": "fictional_universe/work_of_fiction/setting", "param": "Spider-Man!", "result": "Queens"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105664, "question": "Where does the fictional work \"Griffin's Egg\" take place?", "tool": "fictional_universe/work_of_fiction/setting", "param": "Griffin's Egg", "result": "Moon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105674, "question": "What sport was included in the 1900 Summer Olympics?", "tool": "default_domain/olympic_games/sports", "param": "1900 Summer Olympics", "result": "Sailing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105673, "question": "What is a sport that was played during the 1912 Summer Olympics?", "tool": "default_domain/olympic_games/sports", "param": "1912 Summer Olympics", "result": "Tug of war"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105675, "question": "What rides are available at Disneyland?", "tool": "amusement_parks/park/rides", "param": "Disneyland", "result": "PeopleMover"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105679, "question": "What rides are available at Busch Gardens Tampa Bay?", "tool": "amusement_parks/park/rides", "param": "Busch Gardens Tampa Bay", "result": "Kumba"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105683, "question": "What is the sequel to the computer/video game Sonic Riders?", "tool": "cvg/computer_videogame/sequel", "param": "Sonic Riders", "result": "Sonic Riders: Shooting Star Story"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105682, "question": "What is the sequel to the computer/video game Zoo Tycoon 2?", "tool": "cvg/computer_videogame/sequel", "param": "Zoo Tycoon 2", "result": "Zoo Tycoon 2: Endangered Species"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105694, "question": "Which lighthouse was constructed using concrete?", "tool": "architecture/lighthouse_construction_material/used_on_lighthouse", "param": "Concrete", "result": "Round Island Light"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105695, "question": "What material is used on a lighthouse for its construction?", "tool": "architecture/lighthouse_construction_material/used_on_lighthouse", "param": "Concrete slab", "result": "Crowdy Head Light"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105697, "question": "Which species of animals are exhibited in the Minnesota Zoo exhibit located at which farm?", "tool": "zoos/zoo_exhibit/species", "param": "Minnesota Zoo", "result": "Wells Fargo Family Farm"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105702, "question": "What species are exhibited in the penguin exhibit at the zoo?", "tool": "zoos/zoo_exhibit/species", "param": "Penguin Exhibit", "result": "Southern rockhopper penguin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105706, "question": "In which committee does the U.S. Representative Virginia Foxx work?", "tool": "us_congress/us_representative/committee_memberships", "param": "Virginia Foxx", "result": "House Committee on Agriculture"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105709, "question": "To what committee is John Linder a member?", "tool": "us_congress/us_representative/committee_memberships", "param": "John Linder", "result": "House Committee on Ways and Means"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105713, "question": "What is the primary language of the film Calacán?", "tool": "film/film/primary_language", "param": "Calacán", "result": "Spanish Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105715, "question": "What was the primary language spoken in the film \"Warren\"?", "tool": "film/film/primary_language", "param": "Warren", "result": "English Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105720, "question": "What type of engine does the Nakajima Ki-27 aircraft model have?", "tool": "aviation/aircraft_model/engine_type", "param": "Nakajima Ki-27", "result": "Radial engine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105718, "question": "Which aircraft models utilize the Mil Mi-26 engine?", "tool": "aviation/aircraft_model/engine_type", "param": "Mil Mi-26", "result": "Turboshaft"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105725, "question": "What programming languages were influenced by Visual Basic?", "tool": "computer/programming_language/influenced", "param": "Visual Basic", "result": "Visual Basic .NET"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105729, "question": "What programming languages were influenced by Haskell?", "tool": "computer/programming_language/influenced", "param": "Haskell", "result": "Generic Java"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105736, "question": "Which country was the Hunyadi family from?", "tool": "people/family/country", "param": "Hunyadi family", "result": "Hungary"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105731, "question": "What country is the house of Nassau-Weilburg from?", "tool": "people/family/country", "param": "House of Nassau-Weilburg", "result": "Germany"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105741, "question": "For what play did Sammy Cahn write lyrics?", "tool": "theater/theatrical_lyricist/play_lyrics_written", "param": "Sammy Cahn", "result": "Those Were the Days"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105743, "question": "What play lyrics were written by Neil Bartram?", "tool": "theater/theatrical_lyricist/play_lyrics_written", "param": "Neil Bartram", "result": "The Story of My Life"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105748, "question": "What universe does the work of fiction \"The Stone Men from Saturn!\" belong to?", "tool": "fictional_universe/work_of_fiction/part_of_these_fictional_universes", "param": "The Stone Men From Saturn!", "result": "Marvel Universe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105747, "question": "What fictional universe does \"Star Trek: Deep Space Nine\" belong to?", "tool": "fictional_universe/work_of_fiction/part_of_these_fictional_universes", "param": "Star Trek: Deep Space Nine", "result": "Star Trek Expanded Universe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105754, "question": "During what literary or artistic movement was the book \"The Passionate Shepherd to His Love\" released?", "tool": "book/written_work/school_or_movement", "param": "The Passionate Shepherd to His Love", "result": "English Renaissance"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105752, "question": "What artistic, literary, or philosophical movement is associated with the book \"Angel of Better Days to Come\"?", "tool": "book/written_work/school_or_movement", "param": "Angel of Better Days to Come", "result": "Mysticism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105765, "question": "What plays has Richard M. Sherman composed?", "tool": "theater/theatrical_composer/plays_composed", "param": "Richard M. Sherman", "result": "Mary Poppins"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105762, "question": "What plays were composed by Pyotr Ilyich Tchaikovsky?", "tool": "theater/theatrical_composer/plays_composed", "param": "Pyotr Ilyich Tchaikovsky", "result": "The Sleeping Beauty"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105767, "question": "What are the non-profit art museums classified under the category of SchemaStaging/Non_Profit_Classification/Organizations?", "tool": "schemastaging/non_profit_classification/organizations", "param": "Art Museums", "result": "Portland Art Museum"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105772, "question": "What is a general hospital?", "tool": "schemastaging/non_profit_classification/organizations", "param": "General Hospital", "result": "Trinity Medical Center"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105777, "question": "What is the parent classification of thalassemia according to the ICD-9-CM classification for medicine?", "tool": "medicine/icd_9_cm_classification/parent_classification", "param": "Thalassemia", "result": "Hereditary hemolytic anemias"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105775, "question": "What larger class of disorders does Expressive Language Disorder belong to within the parent classification of medicine?", "tool": "medicine/icd_9_cm_classification/parent_classification", "param": "Expressive language disorder", "result": "Developmental speech or language disorder"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105783, "question": "What position does Donté Stallworth play in fantasy football?", "tool": "fantasy_football/player/position", "param": "Donté Stallworth", "result": "Wide receiver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105784, "question": "What position does Antonio Chatman play in fantasy football?", "tool": "fantasy_football/player/position", "param": "Antonio Chatman", "result": "Wide receiver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105789, "question": "What is the primary language of the content regarding Shrewsbury?", "tool": "type/content/language", "param": "Shrewsbury", "result": "English"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105790, "question": "What is the primary language of the content for Clix figures?", "tool": "type/content/language", "param": "Clix figure", "result": "English"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105798, "question": "What genre of game is Dune?", "tool": "games/game/genre", "param": "Dune", "result": "Collectible card game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105794, "question": "What is the genre of the game \"Perfection\"?", "tool": "games/game/genre", "param": "Perfection", "result": "Children's game"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105799, "question": "What broader category does Total Raisin Bran fall under?", "tool": "schemastaging/food_extra/broader", "param": "Total Raisin Bran", "result": "Cereal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105800, "question": "What broader type, category, or classification does Camembert belong to in terms of food?", "tool": "schemastaging/food_extra/broader", "param": "Camembert", "result": "Cheese"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105809, "question": "Who is the eighth avatar in Hinduism?", "tool": "religion/religion/deities", "param": "Hinduism", "result": "Rishabha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105808, "question": "What is the name of an Egyptian mythological deity?", "tool": "religion/religion/deities", "param": "Egyptian mythology", "result": "Min"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105816, "question": "What type of campaign is the Gagosian ad campaign?", "tool": "advertising/ad_campaign/type_of_campaign", "param": "Gagosian", "result": "Branded content"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105811, "question": "What type of advertising campaign is the State Farm micro film \"Of Love and Rain\" considered?", "tool": "advertising/ad_campaign/type_of_campaign", "param": "State Farm Micro Film \"\"Of Love And Rain\"", "result": "Branded content"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105817, "question": "Who is a horse bred by Samuel D. Riddle?", "tool": "thoroughbredracing/thoroughbred_racehorse_breeder/horses_bred", "param": "Samuel D. Riddle", "result": "War Relic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105822, "question": "Which horse was bred by Charles Wood, 2nd Earl of Halifax?", "tool": "thoroughbredracing/thoroughbred_racehorse_breeder/horses_bred", "param": "Charles Wood, 2nd Earl of Halifax", "result": "Shirley Heights"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105823, "question": "Which award is presented by the Geological Society of London?", "tool": "award/award_presenting_organization/awards_presented", "param": "Geological Society of London", "result": "Murchison Medal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105826, "question": "What awards does GLAAD hand out?", "tool": "award/award_presenting_organization/awards_presented", "param": "GLAAD", "result": "GLAAD Media Award"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105830, "question": "What hair color did Bianca Gonzalez, the fashion model, have?", "tool": "fashionmodels/fashion_model/hair_color", "param": "Bianca Gonzalez", "result": "Black"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105833, "question": "What color hair does Natasha Poly have?", "tool": "fashionmodels/fashion_model/hair_color", "param": "Natasha Poly", "result": "Dark Blonde"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105836, "question": "What are the featured songs in the soundtrack of Battlestar Galactica?", "tool": "tv/tv_program/soundtrack", "param": "Battlestar Galactica", "result": "Battlestar Galactica: Season 3: Original Soundtrack From the Sci Fi Channel Television Series"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105837, "question": "Which soundtrack was released for the TV program \"Schoolhouse Rock\"?", "tool": "tv/tv_program/soundtrack", "param": "Schoolhouse Rock", "result": "Schoolhouse Rock: America Rock"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105842, "question": "What is the name of a spacecraft constructed by CNES?", "tool": "spaceflight/satellite_manufacturer/spacecraft_manufactured", "param": "CNES", "result": "COROT"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105844, "question": "What is the name of a spacecraft made by Thales Alenia Space?", "tool": "spaceflight/satellite_manufacturer/spacecraft_manufactured", "param": "Thales Alenia Space", "result": "Albert Einstein ATV"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105848, "question": "Where did the fictional character Magma live throughout their storyline?", "tool": "fictional_universe/fictional_character/places_lived", "param": "Magma", "result": "Nova Roma"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105852, "question": "Where did the fictional character Ezio Auditore da Firenze live throughout his storyline?", "tool": "fictional_universe/fictional_character/places_lived", "param": "Ezio Auditore da Firenze", "result": "Monteriggioni"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105855, "question": "What disasters did Stanley Lord survive?", "tool": "event/disaster_survivor/survived_disasters", "param": "Stanley Lord", "result": "Sinking of the Titanic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105858, "question": "Which disasters did Laureen Nussbaum survive?", "tool": "event/disaster_survivor/survived_disasters", "param": "Laureen Nussbaum", "result": "The Holocaust"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105860, "question": "What type of permission does the last song have?", "tool": "type/object/permission", "param": "The Last Song", "result": "Entertainment Weekly permission"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105859, "question": "What are the permissions associated with Jay Leno?", "tool": "type/object/permission", "param": "JAY LENO", "result": "Entertainment Weekly permission"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105868, "question": "What types of media or content are produced by Hearst Corporation?", "tool": "broadcast/producer/produces", "param": "Hearst Corporation", "result": "Chronicle Podcasts: 49ers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105867, "question": "What types of media or content does the New York Times Company produce?", "tool": "broadcast/producer/produces", "param": "The New York Times Company", "result": "New York Times: Music Popcast"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105872, "question": "What is the tissue location where ascorbic acid is predominantly found?", "tool": "default_domain/metabolite/tissue_location", "param": "Ascorbic acid", "result": "Muscle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105876, "question": "Where in the body is pyruvic acid predominantly found?", "tool": "default_domain/metabolite/tissue_location", "param": "Pyruvic acid", "result": "Muscle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105879, "question": "Which congressional caucus memberships does Gregory Meeks belong to?", "tool": "us_congress/us_representative/congressional_caucus_memberships", "param": "Gregory Meeks", "result": "Congressional Black Caucus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105878, "question": "To what caucus does Laura Richardson have membership?", "tool": "us_congress/us_representative/congressional_caucus_memberships", "param": "Laura Richardson", "result": "Congressional Black Caucus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105885, "question": "Where is Romulus and Remus from in the fictional universe or setting of the particular work or series?", "tool": "fictional_universe/fictional_setting/universe", "param": "Romulus and Remus", "result": "Star Trek"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105884, "question": "What fictional story does Wallasey belong to?", "tool": "fictional_universe/fictional_setting/universe", "param": "Wallasey", "result": "The Hector Hornsmith Pirate Chronicles"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105889, "question": "What is an associated disorder related to epinephrine?", "tool": "default_domain/metabolite/associated_disorder", "param": "None", "result": "Cardiac arrhythmia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105893, "question": "What is the associated disorder of pregnenolone?", "tool": "default_domain/metabolite/associated_disorder", "param": "Pregnenolone", "result": "Arthritis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105898, "question": "What calendar system is used to represent August 14?", "tool": "time/day_of_year/calendar_system", "param": "August 14", "result": "Gregorian calendar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105895, "question": "What type of calendar system does the date April 26 fall under?", "tool": "time/day_of_year/calendar_system", "param": "April 26", "result": "Gregorian calendar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105906, "question": "What are some competitions of this type for a talent show season?", "tool": "award/competition_type/competitions_of_this_type", "param": "Talent show", "result": "America's Got Talent - Season 4"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105903, "question": "What's an example of a competitive eating competition?", "tool": "award/competition_type/competitions_of_this_type", "param": "Competitive eating", "result": "2013 Nathan's Hot Dog Eating Contest"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105907, "question": "What is the prequel of the computer game Sonic Rush?", "tool": "cvg/computer_videogame/prequel", "param": "Sonic Rush", "result": "Sonic Jump"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105909, "question": "What is the prequel to the computer or video game Monkey Island 2: LeChuck's Revenge?", "tool": "cvg/computer_videogame/prequel", "param": "Monkey Island 2: LeChuck's Revenge", "result": "The Secret of Monkey Island"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105915, "question": "Who is the manufacturer of the Avatar Airbender amusement park ride?", "tool": "amusement_parks/ride/manufacturer", "param": "Avatar Airbender", "result": "Intamin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105917, "question": "Who was the manufacturer of the amusement park ride Sea Viper?", "tool": "amusement_parks/ride/manufacturer", "param": "Sea Viper", "result": "Arrow Dynamics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105922, "question": "What type of chemical species is isopropyl alcohol?", "tool": "default_domain/metabolite/chemical_species", "param": "Isopropyl alcohol", "result": "secondary alcohol"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105919, "question": "What is the chemical species of ribose?", "tool": "default_domain/metabolite/chemical_species", "param": "Ribose", "result": "hemiacetal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105925, "question": "What is one of the ISO settings on the Nikon D3?", "tool": "digicams/digital_camera/iso_setting", "param": "Nikon D3", "result": "1000"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105929, "question": "What is the ISO setting found on the Olympus E-510?", "tool": "digicams/digital_camera/iso_setting", "param": "Olympus E-510", "result": "800"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105936, "question": "Where was Ingrid Washinawatok murdered?", "tool": "misc/murdered_person/place_murdered", "param": "Ingrid Washinawatok", "result": "Colombia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105934, "question": "Where was Albrecht von Wallenstein murdered?", "tool": "misc/murdered_person/place_murdered", "param": "Albrecht von Wallenstein", "result": "Cheb"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105940, "question": "Who is a driver for Penske Racing?", "tool": "nascar/nascar_racing_organization/drivers", "param": "Team Penske", "result": "Sam Hornish Jr."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105938, "question": "Who drives for Stewart-Haas Racing in NASCAR racing?", "tool": "nascar/nascar_racing_organization/drivers", "param": "Stewart-Haas Racing", "result": "Scott Riggs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105944, "question": "Who is the creator of the comic book series Young Avengers?", "tool": "comic_books/comic_book_series/created_by", "param": "Young Avengers", "result": "Jim Cheung"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105947, "question": "Who created the comic book series \"The Sandman\" (Vertigo)?", "tool": "comic_books/comic_book_series/created_by", "param": "The Sandman", "result": "Neil Gaiman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105952, "question": "What is the more specific ingredient in cidofovir?", "tool": "medicine/drug_ingredient/more_specific_ingredient", "param": "Cidofovir", "result": "Cidofovir"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105951, "question": "What is the more specific ingredient of hydroxyzine?", "tool": "medicine/drug_ingredient/more_specific_ingredient", "param": "Hydroxyzine", "result": "Hydroxyzine Hydrochloride"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105960, "question": "What type of government was in place in Francoist Spain?", "tool": "location/country/form_of_government", "param": "Francoist Spain", "result": "Authoritarianism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105955, "question": "What type of government system was implemented in South Vietnam?", "tool": "location/country/form_of_government", "param": "South Vietnam", "result": "Republic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105962, "question": "What is the pregnancy category of doxycycline?", "tool": "medicine/drug/pregnancy_category", "param": "Doxycycline", "result": "Pregnancy Category D (FDA)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105964, "question": "What pregnancy category does flucytosine fall under?", "tool": "medicine/drug/pregnancy_category", "param": "Flucytosine", "result": "Pregnancy Category C (FDA)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105967, "question": "Which operating brand is the Venezuela Marriott Hotel Playa Grande associated with?", "tool": "travel/hotel/operating_brand", "param": "Venezuela Marriott Hotel Playa Grande", "result": "Marriott International"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105968, "question": "What brand operates the Drake Hotel in Chicago?", "tool": "travel/hotel/operating_brand", "param": "Drake Hotel", "result": "Hilton Hotels & Resorts"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105977, "question": "What type of diet does Pippa Black follow?", "tool": "eating/practicer_of_diet/diet", "param": "Pippa Black", "result": "Vegetarianism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105974, "question": "What diet does Andrew Günsberg follow?", "tool": "eating/practicer_of_diet/diet", "param": "Osher Günsberg", "result": "Veganism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105980, "question": "What is the language associated with the given name Kainen?", "tool": "givennames/given_name/language", "param": "Kainen", "result": "Irish"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105979, "question": "What language is the given name Florence associated with?", "tool": "givennames/given_name/language", "param": "Florence", "result": "Latin Language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105988, "question": "What was a sport held at the 1912 Summer Olympics?", "tool": "olympics/olympic_games/sports", "param": "1912 Summer Olympics", "result": "Tennis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105989, "question": "What sport was played at the 1932 Summer Olympics?", "tool": "olympics/olympic_games/sports", "param": "1932 Summer Olympics", "result": "Track and field athletics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105995, "question": "Where was the piano concerto No. 9 in E-flat major composed?", "tool": "music/composition/place_composed", "param": "Piano Concerto No.9 in E-flat major", "result": "Salzburg"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105994, "question": "Which city was \"Not in Love At All\" composed in?", "tool": "music/composition/place_composed", "param": "Not in Love at All", "result": "Miami Beach"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 105997, "question": "Which emperor ruled over the specified region during the Roman Empire?", "tool": "roman_empire/roman_emperor/emperor_of", "param": "Domitian", "result": "Roman Empire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106001, "question": "Which emperor ruled over the specified region during the Roman Empire?", "tool": "roman_empire/roman_emperor/emperor_of", "param": "Didius Julianus", "result": "Roman Empire"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106003, "question": "What are the major cities in the Empire of Japan?", "tool": "location/country/capital", "param": "Empire of Japan", "result": "Tokyo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106005, "question": "What is the capital of Saint Kitts and Nevis?", "tool": "location/country/capital", "param": "Saint Kitts and Nevis", "result": "Basseterre"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106014, "question": "Who is the producer of the play \"Jerusalem\"?", "tool": "theater/theater_production/producer", "param": "Jerusalem", "result": "Stephanie P. McClelland"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106009, "question": "Who is the producer responsible for overseeing the financial and managerial aspects of the theater production of Sweeney Todd?", "tool": "theater/theater_production/producer", "param": "Sweeney Todd", "result": "Robert Stigwood"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106015, "question": "Who performed the song \"The Sound of Music\" in the film?", "tool": "film/film_featured_song/performed_by", "param": "The Sound of Music", "result": "Julie Andrews"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106018, "question": "Who performed the featured song \"You'll Be in My Heart\" in the film?", "tool": "film/film_featured_song/performed_by", "param": "You'll Be in My Heart", "result": "Phil Collins"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106022, "question": "What is a famous literary work set in La Mancha?", "tool": "fictional_universe/fictional_setting/works_set_here", "param": "La Mancha", "result": "Don Quijote de la Mancha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106025, "question": "What chapter of the fictional universe indicates Smallville?", "tool": "fictional_universe/fictional_setting/works_set_here", "param": "Smallville", "result": "K Chapter 4: WSDs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106027, "question": "Name a country that participated in the 1952 Summer Olympics.", "tool": "olympics/olympic_games/participating_countries", "param": "1952 Summer Olympics", "result": "Sweden"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106032, "question": "What countries participated in the 1952 Summer Olympics?", "tool": "olympics/olympic_games/participating_countries", "param": "1952 Summer Olympics", "result": "Japan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106033, "question": "What is the category of the Alex Awards?", "tool": "award/award_category/category_of", "param": "Alex Awards", "result": "Alex Awards"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106034, "question": "Which award is part of the BSFA Award for Best Non-Fiction?", "tool": "award/award_category/category_of", "param": "BSFA Award for best non-fiction", "result": "BSFA Award"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106042, "question": "Where was Charin Chai Jafai cremated?", "tool": "people/deceased_person/place_of_cremation", "param": "Charnchai Jaofai", "result": "Bangkok"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106044, "question": "What species does the gene Dishevelled, Dsh homolog 1 (Drosophila) belong to?", "tool": "default_domain/gene/species", "param": "dishevelled, dsh homolog 1 (Drosophila)", "result": "Homo sapiens"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106052, "question": "What kind of aircraft are considered fighter-bombers?", "tool": "aviation/aircraft_type/aircraft_of_this_type", "param": "Fighter-bomber", "result": "Northrop F-5"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106057, "question": "Who owns the San Francisco 49ers?", "tool": "sports/professional_sports_team/owner_s", "param": "San Francisco 49ers", "result": "John York"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106062, "question": "Who was the champion of the 1993 NCAA Men's Division I Basketball Tournament?", "tool": "sports/sports_championship_event/champion", "param": "1993 NCAA Men's Division I Basketball Tournament", "result": "North Carolina Tar Heels men's basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106065, "question": "What is the original TV program from which House Hunters International was spun off?", "tool": "tv/tv_program/spun_off_from", "param": "House Hunters International", "result": "House Hunters"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106069, "question": "What hotel chains offer rooms with refrigerators as a feature?", "tool": "travel/accommodation_feature/accommodation_with_this_feature", "param": "Refrigerator", "result": "Fairfield Inn & Suites Key West"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106078, "question": "What is the focus of the blog Paradigm Dancing?", "tool": "internet/blog/focus", "param": "Paradigm Dancing", "result": "Contemporary literature"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106083, "question": "What is the first level division in the Dominican Republic?", "tool": "location/country/first_level_divisions", "param": "Dominican Republic", "result": "Monte Cristi Province"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106088, "question": "Who serves as one of Silver Spring Networks' advisors?", "tool": "organization/organization/advisors", "param": "Silver Spring Networks", "result": "John Doerr"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106091, "question": "What company is involved in working to cure prostate cancer in the field of bioventurism?", "tool": "bioventurist/bv_medical_condition/company_involved", "param": "Prostate cancer", "result": "ARIAD Pharmaceuticals, Inc."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106094, "question": "What type of planetographic feature is Wallace classified as in astronomy/extraterrestrial_location?", "tool": "astronomy/extraterrestrial_location/type_of_planetographic_feature", "param": "Wallace", "result": "Impact crater"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106100, "question": "What are some recurring festivals of the type of event known as a LAN party?", "tool": "events/type_of_festival/recurring_festivals_of_this_type", "param": "LAN party", "result": "QuakeCon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106104, "question": "What is an exhibition created about Canaletto?", "tool": "exhibitions/exhibition_subject/exhibitions_created_about_this_subject", "param": "Canaletto", "result": "Venice: Canaletto and His Rivals"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106110, "question": "What are the medical specialties practiced at Advocate Lutheran General Hospital?", "tool": "medicine/hospital/medical_specialties", "param": "Advocate Lutheran General Hospital", "result": "Internal medicine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106114, "question": "Which lake can striped bass be found in?", "tool": "schemastaging/fish/found_in", "param": "Striped bass", "result": "Smith Mountain Lake"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106119, "question": "Who were the competitors in the Miss World 2008 competition?", "tool": "award/competition/competitors", "param": "Miss World 2008", "result": "Marelize Robberts"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106125, "question": "What NFL team was Chris Perry associated with in fantasy football?", "tool": "fantasy_football/player/nfl_team", "param": "Chris Perry", "result": "Cincinnati Bengals"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106132, "question": "What is the broader category of potassium gluconate in terms of drug ingredient?", "tool": "medicine/drug_ingredient/more_general_ingredient", "param": "Potassium gluconate", "result": "Potassium"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106138, "question": "Who was the musical guest on the Saturday Night Live episode featuring SNL 13.7?", "tool": "saturdaynightlive/snl_episode/musical_guest", "param": "SNL - 13.7", "result": "David Gilmour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106139, "question": "Who is a member of the Blue Dog Coalition among the current House members of the United States Congress?", "tool": "us_congress/congressional_caucus/current_house_members", "param": "Blue Dog Coalition", "result": "Patrick Murphy"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106145, "question": "Which amusement park hosts the Enchanted Tiki Room (Under New Management)?", "tool": "amusement_parks/ride/park", "param": "The Enchanted Tiki Room (Under New Management)", "result": "Magic Kingdom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106152, "question": "What type of movie theater is the Michigan Theater?", "tool": "movietheatres/movie_theatre/type_of_movietheatre", "param": "Michigan Theater", "result": "Movie palace"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106158, "question": "What features does Hotel Del Sol offer for travelers' accommodation?", "tool": "travel/accommodation/features", "param": "Hotel Del Sol", "result": "Cable television"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106159, "question": "What is a list of works set in the Monk universe?", "tool": "fictional_universe/fictional_universe/works_set_here", "param": "Monk Universe", "result": "Monk"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106166, "question": "What are the names of the rowing events in the Olympics?", "tool": "olympics/olympic_sport/events", "param": "Rowing", "result": "Men's Single sculls"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106169, "question": "What type of content is broadcast by WESH?", "tool": "broadcast/broadcast/content", "param": "WESH", "result": "Television"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106175, "question": "Which product line contains the Nikon Coolpix L15 within the business's consumer product category?", "tool": "business/consumer_product/product_line", "param": "Nikon Coolpix L15", "result": "Nikon Coolpix series"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106182, "question": "What type of milk is used to create Langres cheese?", "tool": "food/cheese/source_of_milk", "param": "Langres cheese", "result": "Cattle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106188, "question": "What is the composition of the album \"Vasoline\"?", "tool": "music/composition/recorded_as_album", "param": "Vasoline", "result": "Vasoline"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106192, "question": "What film featured the song \"Honey, Honey\"?", "tool": "film/film_featured_song/featured_in_film", "param": "Honey, Honey", "result": "Mamma Mia!"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106197, "question": "What are the subjects covered in the TV program \"RiffTrax\"?", "tool": "tv/tv_program/subjects", "param": "RiffTrax", "result": "Humour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106201, "question": "What types or varieties of wines are produced in San Luis Obispo County?", "tool": "wine/wine_sub_region/wines", "param": "San Luis Obispo County", "result": "2005 Toucan Arroyo Grande Valley Estate Zinfandel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106207, "question": "What state is Altamonte Springs, Florida located in?", "tool": "biblioness/bibs_location/state", "param": "Altamonte Springs", "result": "Florida"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106212, "question": "What division is the Western Illinois Leathernecks men's basketball team in?", "tool": "basketball/basketball_team/division", "param": "Western Illinois Leathernecks men's basketball", "result": "Division I (NCAA)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106216, "question": "What are some African American characters in fiction?", "tool": "fictional_universe/ethnicity_in_fiction/characters_of_this_ethnicity", "param": "African American", "result": "Prowler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106222, "question": "What projects did Pei Cobb Freed & Partners work on?", "tool": "architecture/architecture_firm/projects", "param": "Pei Cobb Freed & Partners", "result": "United States Holocaust Memorial Museum"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106227, "question": "What's a newspaper owned by GateHouse Media?", "tool": "book/newspaper_owner/newspapers_owned", "param": "GateHouse Media", "result": "The State Journal-Register"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106233, "question": "What sport does men's team archery belong to in the Olympics?", "tool": "olympics/olympic_event/sport", "param": "Men's Archery, team", "result": "Archery"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106235, "question": "Which state contains the broadcast or content of Piano Jazz?", "tool": "broadcast/content/location", "param": "Piano Jazz", "result": "Washington, D.C."}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106239, "question": "What cases have the High Court of Australia decided on?", "tool": "law/court/legal_cases", "param": "High Court of Australia", "result": "Melbourne Corporation v Commonwealth"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106246, "question": "Who are the current members of the United States House Committee on the Judiciary?", "tool": "us_congress/house_committee/current_members", "param": "House Committee on the Judiciary", "result": "Jerrold Nadler"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106250, "question": "What transit lines are part of the OC Transpo metropolitan transit system?", "tool": "metropolitan_transit/transit_system/transit_lines", "param": "OC Transpo", "result": "OC Transpo Route 524"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106254, "question": "What colors are associated with the fraternity or sorority Iota Nu Delta?", "tool": "education/fraternity_sorority/colors", "param": "Iota Nu Delta", "result": "Green"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106260, "question": "Who are the supporting artists collaborating with Japanese singer Miyavi?", "tool": "music/artist/supporting_artists", "param": "Miyavi", "result": "Maya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106264, "question": "How is oxytetracycline administered?", "tool": "medicine/drug/route_of_administration", "param": "Oxytetracycline", "result": "Eye drop"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106271, "question": "What is one type of gene found in human genome?", "tool": "biology/genome/gene", "param": "Human genome", "result": "aldolase C, fructose-bisphosphate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106273, "question": "In which football season did the Washington Redskins play against the Detroit Lions on October 26th, 2008?", "tool": "american_football/football_game/season", "param": "Washington Redskins at Detroit Lions, 2008-10-26", "result": "2008 NFL season"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106277, "question": "What mountain passes are found within the Alps mountain range?", "tool": "geography/mountain_range/passes", "param": "Alps", "result": "Col Ferret"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106282, "question": "Which computer games utilize the Ogre game engine?", "tool": "cvg/computer_game_engine/used_for_computer_games", "param": "OGRE", "result": "Venetica"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106284, "question": "What medical condition does the fictional character Gwen Munch have?", "tool": "fictional_universe/fictional_character/medical_conditions", "param": "Gwen Munch", "result": "Schizophrenia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106288, "question": "What type of dish is minestrone?", "tool": "food/dish/type_of_dish1", "param": "Minestrone", "result": "Soup"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106294, "question": "Who is the owner of the shopping center known as Alderwood Mall?", "tool": "business/shopping_center/owner", "param": "Alderwood Mall", "result": "General Growth Properties"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106297, "question": "Who is the innovator credited with originating the original idea for argument maps?", "tool": "argumentmaps/original_idea/innovator", "param": "Pythagoreanism", "result": "Pythagoras"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106300, "question": "What photo format does the Leica Digilux 4.3 shoot in?", "tool": "digicams/digital_camera/compressed_formats", "param": "Leica Digilux 4.3", "result": "JPEG"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106306, "question": "Who manufactures the Intel 4040 computer processor?", "tool": "computer/computer_processor/manufacturers", "param": "Intel 4040", "result": "Intel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106311, "question": "What type of distributor does ONN use for its broadcasts?", "tool": "broadcast/broadcast/distributor", "param": "ONN", "result": "Over-the-air programming"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106312, "question": "Where was Sigma Alpha Epsilon founded?", "tool": "education/fraternity_sorority/founded_location", "param": "Sigma Alpha Epsilon", "result": "University of Alabama"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106317, "question": "What disease does Bioventurist, a science or technology company, develop treatments for?", "tool": "bioventurist/science_or_technology_company/develops_treatments_for_disease", "param": "Intellikine Inc.", "result": "Cancer"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106323, "question": "What regions were affected by the May 18–21, 2013 tornado outbreak?", "tool": "event/disaster/areas_affected", "param": "May 18–21, 2013 tornado outbreak", "result": "Midwestern United States"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106325, "question": "What specific type of crime occurred in the Watergate scandal?", "tool": "crime/crime/crime_type", "param": "Watergate scandal", "result": "Sabotage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106330, "question": "Why did BTR plc cease operations?", "tool": "business/defunct_company/reason_for_ceasing_operations", "param": "BTR plc", "result": "Merger"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106332, "question": "What genre of internet video or web series is Cutbacks?", "tool": "webvideo/internet_video/genre", "param": "Cutbacks", "result": "Sitcom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106338, "question": "The region of release for LEGO Star Wars III: The Clone Wars is what?", "tool": "cvg/game_version/regions", "param": "LEGO Star Wars III: The Clone Wars", "result": "North America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106341, "question": "What are the endpoints of the transit line Route 10 - Parr/TMCC within the metropolitan area?", "tool": "metropolitan_transit/transit_line/terminuses", "param": "Route 10 - Parr/TMCC", "result": "Truckee Meadows Community College"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106345, "question": "What Nintendo game features the sport of tennis?", "tool": "cvg/computer_game_subject/games", "param": "Tennis", "result": "Wii Sports"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106351, "question": "Who plays in the defensive unit position in fantasy football?", "tool": "fantasy_football/position/player", "param": "Defensive Unit", "result": "Buffalo Bills"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106354, "question": "Who were the victims affected by the Holocaust?", "tool": "event/disaster/victims", "param": "The Holocaust", "result": "Greta Stein"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106356, "question": "What are the constituent bodies or departments within the Illinois General Assembly?", "tool": "government/governmental_body/component_bodies", "param": "Illinois General Assembly", "result": "Illinois House of Representatives"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106360, "question": "Which breed of animal is Shadeed?", "tool": "biology/pedigreed_animal/breed", "param": "Shadeed", "result": "Thoroughbred"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106365, "question": "What is the input interface for the Nokia 3250?", "tool": "mobile_phones/mobile_phone/input_interface", "param": "Nokia 3250", "result": "Keypad"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106369, "question": "What cuisine is crab typically found in?", "tool": "food/ingredient/cuisine", "param": "Crab", "result": "Singaporean cuisine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106374, "question": "What is the parent industry of the lessors of real estate?", "tool": "business/industry/parent_industry", "param": "Lessors of Real Estate", "result": "Real Estate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106379, "question": "What is Levon Helm's vocal range?", "tool": "music/group_member/vocal_range", "param": "Levon Helm", "result": "Tenor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106382, "question": "What specific permissions or access controls does Entertainment Weekly offer?", "tool": "type/permission/controls", "param": "Entertainment Weekly permission", "result": "8 Mile"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106384, "question": "Which teams played in the 2010 FIFA World Cup Group B match between Greece and Argentina?", "tool": "soccer/football_match/teams", "param": "2010 FIFA World Cup Group B - GRE ./. ARG", "result": "Argentina national football team"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106388, "question": "What is an ethnic group that falls into the Asian category?", "tool": "people/ethnicity/includes_groups", "param": "Asian people", "result": "Indian American"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106394, "question": "What is one of the Division I basketball teams within the NCAA?", "tool": "basketball/basketball_division/teams", "param": "Division I (NCAA)", "result": "Savannah State Tigers basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106398, "question": "What genre best describes the opera \"1984\"?", "tool": "opera/opera/genre", "param": "1984", "result": "Science fiction opera"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106403, "question": "Who were the biological parents of the famous horse Cincinnati?", "tool": "biology/organism/parents", "param": "Cincinnati", "result": "Lexington"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106404, "question": "What mobile carriers are associated with the HTC Juno?", "tool": "mobile_phones/mobile_phone/carriers", "param": "HTC Juno", "result": "T-Mobile"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106411, "question": "What group does the Shih Tzu belong to in terms of dog breeds?", "tool": "petbreeds/dog_breed/group", "param": "Shih Tzu", "result": "Toy Group"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106413, "question": "What was the subject of the review of \"Star Trek\" on www.variety.com?", "tool": "reviews/review/reviewed_topic", "param": "Review of Star Trek at www.variety.com", "result": "Star Trek"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106419, "question": "What pet health issue is adrenalectomy used to treat?", "tool": "pethealth/treatment/used_to_treat", "param": "Adrenalectomy", "result": "Hyperadrenocorticism in Animals"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106423, "question": "What are the total cover appearances of Jean Grey in comic books?", "tool": "comic_books/comic_book_character/cover_appearances", "param": "Jean Grey", "result": "X-Men #101"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106427, "question": "Who was the editor of the Oxford Book of American Detective Stories?", "tool": "book/written_work/editor", "param": "The Oxford Book of American Detective Stories", "result": "Tony Hillerman"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106430, "question": "What mountain range is Granite Pass located in?", "tool": "geography/mountain_pass/range", "param": "Granite Pass", "result": "Rocky Mountains"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106433, "question": "Which school publishes the Tertangala newspaper?", "tool": "education/school_newspaper/school", "param": "Tertangala", "result": "University of Wollongong"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106437, "question": "Which organization presents the Chern Medal?", "tool": "award/award/presented_by", "param": "Chern Medal", "result": "International Mathematical Union"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106443, "question": "What stage of development is the product Xyrem in?", "tool": "bioventurist/product/stage_of_development", "param": "Sodium oxybate", "result": "In development"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106444, "question": "What are locations on the moon called in astronomy?", "tool": "astronomy/celestial_object/locations", "param": "Moon", "result": "Pallas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106451, "question": "What is an accident involving an Airbus A310?", "tool": "aviation/aircraft_model/accidents", "param": "Airbus A310", "result": "Thai Airways International Flight 311"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106453, "question": "What was the advertised product, service, or concept in the advertising campaign?", "tool": "advertising/ad_campaign/advertised_thing", "param": "Story Campaign", "result": "Lubbock Independent School District"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106459, "question": "What specific gene is found in chromosome 5 in biology?", "tool": "biology/chromosome/gene", "param": "Chromosome 5", "result": "fibroblast growth factor 1 (acidic)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106462, "question": "What area of activism does the National Socialist Movement of Denmark focus on?", "tool": "activism/organization/area_of_activism", "param": "National Socialist Movement of Denmark", "result": "Nazism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106464, "question": "What administrative category does the Costa Rican province pertain to?", "tool": "schema/administrative_area_type/pertains_to", "param": "Costa Rican province", "result": "Costa Rica"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106471, "question": "Who are the architects associated with postmodern architecture?", "tool": "architecture/architectural_style/architects", "param": "Postmodern architecture", "result": "Steven Izenour"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106472, "question": "What airports are closest to Shenandoah National Park?", "tool": "usnationalparks/us_national_park/closest_airports", "param": "Shenandoah National Park", "result": "Shenandoah Valley Regional Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106479, "question": "Who operates the Hubli airport?", "tool": "aviation/airport/operator", "param": "Hubli Airport", "result": "Airports Authority of India"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106481, "question": "Where were the filming locations for The Golden Girls?", "tool": "tv/tv_program/filming_locations", "param": "The Golden Girls", "result": "Sunset Gower Studios"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106487, "question": "Where is Tamil cuisine from, and what variety of dishes does it encompass?", "tool": "dining/cuisine/dishes", "param": "Tamil food", "result": "Samosa"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106490, "question": "What practice is associated with the Satori religion?", "tool": "religion/religious_practice/practice_of", "param": "Satori", "result": "Zen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106493, "question": "In what city is the Arabic language media source, Meedan, based?", "tool": "meedan/arabic_language_media_source/city", "param": "BBC Arabic Television", "result": "London"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106497, "question": "What is the latest individual competition within the recurring Miss America competition series?", "tool": "award/recurring_competition/individual_competitions", "param": "Miss America", "result": "Miss America 2014"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106505, "question": "What country was Burma's state created when the Japanese occupied it?", "tool": "schema/administrative_area_type/iso_country", "param": "Burmese state", "result": "Myanmar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106508, "question": "What are the potential side effects associated with prednisone?", "tool": "medicine/medical_treatment/side_effects", "param": "Prednisone", "result": "Hives"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106512, "question": "What is the fetish portrayed in Kamikaze Girls Vol.12?", "tool": "adultentertainment/adult_media/sexual_fetishes_portrayed", "param": "Kamikaze Girls vol.12", "result": "Breast fetishism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106518, "question": "Which genome does the gene \"gap junction protein, alpha 8, 50kDa\" belong to?", "tool": "biology/gene/genome", "param": "gap junction protein, alpha 8, 50kDa", "result": "Human genome"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106522, "question": "What ingredient cannot be consumed in veganism?", "tool": "food/dietary_restriction/incompatible_ingredients", "param": "Veganism", "result": "Ris de veau"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106526, "question": "What religion prominently celebrates St. John's Eve?", "tool": "time/holiday/featured_in_religions", "param": "St John's Eve", "result": "Christianity"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106530, "question": "What disaster was Max Ament killed in?", "tool": "event/disaster_victim/killed_in_disaster", "param": "Max Ament", "result": "The Holocaust"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106531, "question": "What is an example of a ship in the clipper class?", "tool": "boats/ship_class/ships_in_class", "param": "Clipper", "result": "Cutty Sark"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106537, "question": "Name an official involved in baseball.", "tool": "sports/sport/officials", "param": "Baseball", "result": "Charlie Williams"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106542, "question": "What characters were killed by Achilles in the fictional universe?", "tool": "fictionaluniverse/fictional_killer/characters_killed", "param": "Achilles", "result": "Troilus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106544, "question": "Which breed of beef cattle is an example of a breed in the field of biology/domesticated_animal/breeds?", "tool": "biology/domesticated_animal/breeds", "param": "Beef cattle", "result": "Highland cattle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106547, "question": "What is the overarching category for sunglasses within a collection category?", "tool": "interests/collection_category/parent_category", "param": "Sunglasses", "result": "Sports memorabilia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106554, "question": "What are the names of comic book characters created by Brian K. Vaughan?", "tool": "comic_books/comic_book_creator/characters_created", "param": "Brian K. Vaughan", "result": "Chase Stein"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106557, "question": "What websites are owned by Wikia?", "tool": "internet/website_owner/websites_owned", "param": "Wikia", "result": "Memory Alpha"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106561, "question": "What wines are produced in California?", "tool": "wine/wine_region/wines", "param": "California", "result": "2005 Screw Kappa Napa Napa Valley Zinfandel"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106563, "question": "Which matches did Deportivo de la Coruña participate in?", "tool": "soccer/football_team/matches", "param": "Deportivo de La Coruña", "result": "1995 Copa del Rey Final"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106569, "question": "What day of the year does Lughnasadh take place?", "tool": "time/holiday/day_of_year", "param": "Lughnasadh", "result": "August 1"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106571, "question": "What's the capital of Ayacucho Partido?", "tool": "location/ar_department/capital", "param": "Ayacucho Partido", "result": "Ayacucho, Buenos Aires"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106578, "question": "What organization is the Roman Catholic Diocese of Regensburg affiliated with?", "tool": "religion/religious_leadership_jurisdiction/organisation", "param": "Roman Catholic Diocese of Regensburg", "result": "Roman Catholic Church"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106580, "question": "In which court does Judge Louis Lebel preside?", "tool": "morelaw/canadian_judge/court", "param": "Louis LeBel", "result": "Supreme Court of Canada"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106586, "question": "What kind of technological platform supports the Nokia N78 in terms of broadband technology?", "tool": "mobile_phones/mobile_phone/broadband_technology_supported", "param": "Nokia N78", "result": "High-Speed Downlink Packet Access"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106590, "question": "What is a non-SLR digital camera manufactured by Nikon?", "tool": "digicams/digital_camera_manufacturer/cameras", "param": "Nikon Corporation", "result": "Nikon Coolpix 7600"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106591, "question": "What organization discovered 10789 Mikeread?", "tool": "astronomy/astronomical_discovery/discovery_organization", "param": "10789 Mikeread", "result": "Spacewatch"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106597, "question": "What is the river that flows into Lake Tekapo?", "tool": "geography/lake/inflow", "param": "Lake Tekapo", "result": "Mistake River"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106600, "question": "Who was a philosopher that focused on metaphysics?", "tool": "philosophy/subject/philosophers", "param": "Metaphysics", "result": "Democritus"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106604, "question": "What television program is the Yo Gabba Gabba! soundtrack for?", "tool": "tv/tv_soundtrack/tv_program", "param": "Yo Gabba Gabba!", "result": "Yo Gabba Gabba!"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106608, "question": "Who are some graduates of Pennsylvania State University?", "tool": "fictional_universe/school_in_fiction/students_graduates", "param": "Pennsylvania State University", "result": "Hingle McCringleberry"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106612, "question": "What breed of dog has red fur?", "tool": "biology/breed_coloring/breeds", "param": "Red", "result": "Volpino Italiano"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106616, "question": "What works are associated with the literary movement of surrealism?", "tool": "book/school_or_movement/associated_works", "param": "Surrealism", "result": "白のアルバム"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106619, "question": "What star sign does Michael Stephenson belong to?", "tool": "cinemainspector/person_sign/star_sign", "param": "Michael Stephenson", "result": "Pisces"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106623, "question": "Who was the opponent and what was the date of a home game played by the Tampa Bay Buccaneers?", "tool": "american_football/football_team/home_games", "param": "Tampa Bay Buccaneers", "result": "New York Jets at Tampa Bay Buccaneers, 2009-12-13"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106629, "question": "What is the chemical compound of an alpha blocker drug?", "tool": "medicine/drug_mechanism_of_action/drugs_with_this_mechanism_of_action", "param": "Alpha blocker", "result": "Terazosin hydrochloride"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106633, "question": "What is the space agency associated with Robert L. Gibson's involvement in spaceflight?", "tool": "spaceflight/astronaut/space_agency", "param": "Robert L. Gibson", "result": "NASA"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106635, "question": "What's one tournament that had a girls' tennis doubles bracket?", "tool": "sports/tournament_event/tournaments_contested_in", "param": "Girls' Tennis, doubles", "result": "2008 Australian Open"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106500, "question": "What was the segment suggested for the Hughes Brothers?", "tool": "dataworld/gardening_hint/split_to", "param": "Hughes brothers", "result": "Allen Hughes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106641, "question": "What are some sub-genres of simulation video games?", "tool": "media_common/media_genre/child_genres", "param": "Simulation video game", "result": "Dating sim"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106642, "question": "What core beliefs are associated with Conservative Judaism?", "tool": "religion/religion/beliefs", "param": "Conservative Judaism", "result": "Kabbalah"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106647, "question": "What is the current frequency of Bestival?", "tool": "time/recurring_event/current_frequency", "param": "Bestival", "result": "Yearly"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106649, "question": "What are some games published by White Wolf, Inc.?", "tool": "games/game_publisher/games_published", "param": "White Wolf Publishing", "result": "Hunter: The Reckoning"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106651, "question": "What are some subdisciplines of computational science and engineering?", "tool": "education/field_of_study/subdisciplines", "param": "Computational Science and Engineering", "result": "Computational fluid dynamics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106654, "question": "What are the characters in \"The Coldest Man on Earth\" comic book story?", "tool": "comic_books/comic_book_story/characters", "param": "The Coldest Man On Earth!", "result": "Captain Cold"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106659, "question": "In which division does the Michigan Wolverines football team compete?", "tool": "american_football/football_team/division", "param": "Michigan Wolverines football", "result": "Division I (NCAA)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106662, "question": "What type of harp is traditionally found in Ireland?", "tool": "music/instrument/variation", "param": "Harp", "result": "Celtic harp"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106664, "question": "What are some comic book series within the fantasy genre?", "tool": "comic_books/comic_book_genre/comic_book_series_in_this_genre", "param": "Fantasy", "result": "Basara"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106666, "question": "What mountain did Halford Mackinder make his first ascent on?", "tool": "geography/mountaineer/first_ascents", "param": "Halford Mackinder", "result": "Mount Kenya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106671, "question": "What type of cuisine does Chef Kunal Kapur specialize in?", "tool": "dining/chef/cuisines", "param": "Kunal Kapur", "result": "Indian cuisine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106673, "question": "Which country is the Arabic language media source Al Ghad from?", "tool": "meedan/arabic_language_media_source/country", "param": "Al Ghad", "result": "Jordan"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106677, "question": "Which programming paradigms does NewtonScript utilize?", "tool": "computer/programming_language/language_paradigms", "param": "NewtonScript", "result": "Prototype-based programming"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106680, "question": "Where does Swiss cheese originate from?", "tool": "food/cheese/country_of_origin", "param": "Swiss cheese", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106682, "question": "What are the disputed territories within Azerbaijan claimed by the schemastaging/disputed_location_claimant/disputed_territories?", "tool": "schemastaging/disputed_location_claimant/disputed_territories", "param": "Azerbaijan", "result": "Tartar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106684, "question": "What type of transit service is provided by the Seoul Metropolitan Subway?", "tool": "metropolitan_transit/transit_system/transit_service_types", "param": "Seoul Metropolitan Subway", "result": "Commuter rail"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106689, "question": "Who was a fictional character that experienced a miscarriage in a given fictional universe?", "tool": "fictional_universe/medical_condition_in_fiction/characters_with_this_condition", "param": "Miscarriage", "result": "June Butcher"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106692, "question": "What property is associated with the Swiss constituency?", "tool": "type/type/properties", "param": "Swiss constituency", "result": "Canton"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106694, "question": "What are some traditional native seafood dishes for the Melanau people?", "tool": "food/type_of_dish/dishes", "param": "Seafood", "result": "Umai"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106698, "question": "What is the name of a hurricane that occurred during the 2001 Atlantic hurricane season?", "tool": "meteorology/tropical_cyclone_season/tropical_cyclones", "param": "2001 Atlantic hurricane season", "result": "Tropical Storm Dean"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106701, "question": "What type of holiday is Christmas?", "tool": "time/holiday/type_of_holiday", "param": "Christmas", "result": "Bank holiday"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106703, "question": "What was Lavender Brown's cause of death?", "tool": "fictionaluniverse/deceased_fictional_character/cause_of_death", "param": "None", "result": "Murder"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106707, "question": "What recreational drug did John Lennon use?", "tool": "qualia/recreational_drug_user/drug_s", "param": "John Lennon", "result": "Lysergic acid diethylamide"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106709, "question": "Who are the singers with a baritone voice?", "tool": "music/voice/singers", "param": "Baritone", "result": "Antonio Scotti"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106711, "question": "What Swedish fashion model has blue eyes?", "tool": "fashionmodels/eye_color/fashion_models_with_this_eye_color", "param": "Blue", "result": "Helen Svedin"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106716, "question": "Which team played as the away team in the Denver Broncos versus San Diego Chargers game on October 19, 2009?", "tool": "american_football/football_game/away_team", "param": "Denver Broncos at San Diego Chargers, 2009-10-19", "result": "Denver Broncos"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106717, "question": "What genre of programs are able to read 7z files?", "tool": "computer/file_format/genre", "param": "7z", "result": "File archiver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106721, "question": "What language is spoken in the Lemurian Citadel?", "tool": "fictional_universe/fictional_setting/languages", "param": "Lemurian citadel", "result": "Akkadian language"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106723, "question": "What is a variation of paradise?", "tool": "skosbase/skos_concept/narrower_topic", "param": "Paradise", "result": "Elysium"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106728, "question": "Who is this Los Angeles native musician who toured with Elton John?", "tool": "music/group_member/artists_supported", "param": "Elton John", "result": "Dino Soldo"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106731, "question": "What is a poker-like card game that belongs to the board game genre?", "tool": "games/game_genre/boardgames", "param": "Card game", "result": "Chicago"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106732, "question": "What were some original ideas of Konstantin Tsiolkovsky, the innovator in argument maps?", "tool": "argumentmaps/innovator/original_ideas", "param": "Konstantin Tsiolkovsky", "result": "Space elevator"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106735, "question": "What is the name of the theme song from the TV program \"The Mentalist\"?", "tool": "tv/tv_program/theme_song", "param": "The Mentalist", "result": "Believe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106738, "question": "What narrower concepts related to a specific SKOS concept can you provide for painting?", "tool": "skosbase/skos_concept/narrower", "param": "Painting", "result": "Futurism (Art)"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106743, "question": "Which tropical storm season did Tropical Storm Beryl (2006) appear in?", "tool": "meteorology/tropical_cyclone/tropical_cyclone_season", "param": "Tropical Storm Beryl", "result": "2006 Atlantic hurricane season"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106745, "question": "What are the exercise requirements for a Whippet?", "tool": "petbreeds/dog_breed/exercise_requirement", "param": "Whippet", "result": "Medium Exercise Requirement"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106749, "question": "What is the country of origin of \"The Moment of Truth\" web video or internet video?", "tool": "webvideo/internet_video/country_of_origin", "param": "The Moment of Truth", "result": "United States of America"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106751, "question": "Where is the geographic scope of the National Institute of Statistics?", "tool": "statistics/statistics_agency/geographic_scope", "param": "National Institute of Statistics", "result": "Romania"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106754, "question": "Who developed the product tiagabine?", "tool": "bioventurist/product/developed_by", "param": "Tiagabine", "result": "Cephalon"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106757, "question": "What is Eddie Guerrero's gender?", "tool": "freebase/valuenotation/is_reviewed", "param": "Eddie Guerrero", "result": "Gender"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106759, "question": "What department was Arthur Lewis in?", "tool": "education/academic/departments_old", "param": "W. Arthur Lewis", "result": "Princeton University Department of Economics"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106763, "question": "What chemical is associated with the thiol?", "tool": "default_domain/chemical_species/chemicals", "param": "Thiol", "result": "Homocysteine"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106766, "question": "What is the closest city to Grouse Mountain?", "tool": "skiing/ski_area/closest_city", "param": "Grouse Mountain", "result": "North Vancouver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106768, "question": "What is a hotel near IAD airport that provides accommodation of this type?", "tool": "travel/accommodation_type/accommodation_of_this_type", "param": "Hotel", "result": "Washington Dulles Marriott Suites"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106772, "question": "What type of credit card does Golden Benefits Insurance Services accept for payment?", "tool": "services/local_business/payment_accepted", "param": "Golden Benefits Insurance Services", "result": "American Express"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106774, "question": "Who designed the Messerschmitt Me 209 aircraft model?", "tool": "aviation/aircraft_model/designed_by", "param": "Messerschmitt Me 209", "result": "Willy Messerschmitt"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106778, "question": "What subcategory is Roseville Pottery classified as within interests/collection_category/sub_categories?", "tool": "interests/collection_category/sub_categories", "param": "Roseville pottery", "result": "Roseville Artcraft"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106782, "question": "What architectures does the operating system Backtrack support?", "tool": "computer/operating_system/supported_architectures", "param": "BackTrack", "result": "x86"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106784, "question": "What is the broader category of Chinese New Year?", "tool": "skosbase/vocabulary_equivalent_topic/broader_concept", "param": "Chinese New Year", "result": "Holidays"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106786, "question": "What television stations does Tribune Broadcasting own?", "tool": "broadcast/tv_station_owner/tv_stations", "param": "Tribune Broadcasting", "result": "WDCW"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106790, "question": "Where is the city-state set within the fictional universe or story?", "tool": "fictional_universe/type_of_fictional_setting/settings", "param": "City-state", "result": "Nisibis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106793, "question": "What kind of processor did the MSX2 computer have?", "tool": "computer/computer/processor", "param": "MSX2", "result": "Zilog Z80"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106797, "question": "What kingdoms were ruled by the House of Hanover?", "tool": "royalty/royal_line/kingdom_s_ruled", "param": "House of Hanover", "result": "Kingdom of Hanover"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106800, "question": "What food additive category categorizes the acidity regulator used in cooking?", "tool": "food/food_additive_category/categorizes", "param": "Acidity regulator", "result": "Potassium sulfate"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106802, "question": "What camera has an ISO of 1200?", "tool": "digicams/camera_iso/cameras", "param": "1200", "result": "Nikon D80"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106804, "question": "What is a metabolic intermediate or component of androgen and estrogen metabolism?", "tool": "default_domain/biofunction/metabolites", "param": "Component of Androgen and estrogen metabolism", "result": "Dehydroepiandrosterone"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106808, "question": "Which Korean Air flight was involved in an accident?", "tool": "aviation/airline/accidents", "param": "Korean Air", "result": "Korean Air Flight 85"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106812, "question": "Name the artist who recorded \"Beat It.\"", "tool": "music/recording/featured_artists", "param": "Beat It", "result": "Chris Brown"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106814, "question": "What type of rugby does Craig Bellamy coach?", "tool": "rugby/rugby_coach/type_of_rugby", "param": "Craig Bellamy", "result": "Rugby league"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106818, "question": "What are the expected codes for administrative area types in New Zealand cities?", "tool": "schema/administrative_area_type/expected_codes", "param": "New Zealand city", "result": "FIPS 10-4"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106820, "question": "Which sports team is owned by Burlington?", "tool": "sports/sports_team_owner/teams_owned", "param": "Burlington", "result": "Burlington Bees"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106824, "question": "What type of airport is Lyon Airport?", "tool": "aviation/airport/airport_type", "param": "Lyon–Saint-Exupéry Airport", "result": "Public airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106825, "question": "What type of harbor is Pond Inlet?", "tool": "ports/port_of_call/harbor_type", "param": "Pond Inlet", "result": "Open Roadstead Harbor"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106829, "question": "What is the superior court of Wisconsin?", "tool": "law/court/superior_courts", "param": "Wisconsin Supreme Court", "result": "Supreme Court of the United States"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106833, "question": "Where does the jurisdiction of the Secretary of State of South Dakota reach?", "tool": "government/government_office_or_title/jurisdiction", "param": "Secretary of State of South Dakota", "result": "South Dakota"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106834, "question": "What are the baseball teams in the Midwest League?", "tool": "baseball/baseball_league/teams", "param": "Midwest League", "result": "Great Lakes Loons"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106837, "question": "What episode was hosted by Elliott Gould on Saturday Night Live?", "tool": "saturdaynightlive/snl_host/episodes_hosted", "param": "Elliott Gould", "result": "Elliott Gould/Anne Murray"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106840, "question": "What major religion encompasses Eastern Christianity?", "tool": "religion/religion/is_part_of", "param": "Eastern Christianity", "result": "Christianity"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106843, "question": "What branches or sects emerged within Islam?", "tool": "religion/religion/branched_into", "param": "Islam", "result": "Sunni Islam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106847, "question": "What music videos were directed by Spike Jonze?", "tool": "music/music_video_director/music_videos_directed", "param": "Spike Jonze", "result": "Otis"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106851, "question": "In which court did the case of He Kaw Teh v R take place?", "tool": "law/legal_case/court", "param": "He Kaw Teh v The Queen", "result": "High Court of Australia"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106853, "question": "Which comic books are written by Alan Moore?", "tool": "comic_books/comic_book_writer/comic_books_written", "param": "Alan Moore", "result": "Batman: The Killing Joke"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106855, "question": "What protocols does SeaMonkey use?", "tool": "computer/software/protocols_used", "param": "SeaMonkey", "result": "Internet Relay Chat"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106859, "question": "Where was the film \"UK: 12A\" featured?", "tool": "film/content_rating/country", "param": "UK: 12a", "result": "United Kingdom"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106862, "question": "What ad campaign was released by Dove?", "tool": "advertising/advertised_thing/ad_campaigns", "param": "Dove", "result": "The Dove Ad Makeover"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106866, "question": "In what conference were the Marquette Golden Eagles men's basketball team?", "tool": "basketball/basketball_team/conference", "param": "Marquette Golden Eagles men's basketball", "result": "Big East Conference"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106867, "question": "What are the public holidays in Nepal?", "tool": "time/holiday_category/holidays", "param": "Public Holiday in Nepal", "result": "Christmas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106871, "question": "What type of organization does the Gryffindor Quidditch team belong to?", "tool": "fictional_universe/fictional_organization/type_of_organization", "param": "Gryffindor Quidditch Team", "result": "Quidditch"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106875, "question": "What type of ride is the Swamp Fox?", "tool": "amusement_parks/ride/ride_type", "param": "Swamp Fox", "result": "Roller coaster"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106878, "question": "Which type of diet does Rikki Rockett follow?", "tool": "food/diet_follower/follows_diet", "param": "Rikki Rockett", "result": "Veganism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106881, "question": "Which basketball team does Bob Huggins coach?", "tool": "basketball/basketball_coach/team", "param": "Bob Huggins", "result": "West Virginia Mountaineers men's basketball"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106882, "question": "What is the sensor type of the Kodak EasyShare Z1015 IS digital camera?", "tool": "digicams/digital_camera/sensor_type", "param": "Kodak EasyShare Z1015 IS", "result": "Charge-coupled device"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106886, "question": "Who is the academic individual within the University of Chicago Department of Anthropology?", "tool": "education/department/academics_old", "param": "University of Chicago Department of Anthropology", "result": "Alfred Radcliffe-Brown"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106888, "question": "Who awarded immunity to Danielle DiLorenzo on Survivor?", "tool": "survivor/survivor_contestant/awarded_immunity", "param": "Danielle DiLorenzo", "result": "The Final Showdown"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106891, "question": "What was a student under James Mitose in the realm of martial arts?", "tool": "martial_arts/martial_artist/martial_arts_students", "param": "James Mitose", "result": "William Kwai Sun Chow"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106896, "question": "What type of fashion Barbie dolls adhere to the Barbie theme?", "tool": "barbie/barbie_theme/dolls_with_this_theme", "param": "Fashion", "result": "Trench Setter Barbie"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106899, "question": "What is the manufacturer of the Panasonic Lumix DMC-GH3 film camera?", "tool": "filmcameras/camera/manufacturer", "param": "Panasonic Lumix DMC-GH3", "result": "Panasonic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106901, "question": "Which sports did Mark Cross coach?", "tool": "sports/sports_team_coach/sports_coached", "param": "Mark Cross", "result": "Australian rules football"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106903, "question": "What were the subjects featured in Jan van Eyck's Annunciation exhibition?", "tool": "exhibitions/exhibition/subjects", "param": "Jan van Eyck's Annunciation", "result": "Jan van Eyck"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106906, "question": "Which plays were choreographed by Jerry Mitchell?", "tool": "theater/theater_choreographer/plays_choreographed", "param": "Jerry Mitchell", "result": "Legally Blonde: The Musical"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106911, "question": "Who are the people with the hobby of football?", "tool": "interests/hobby/people_with_this_hobby", "param": "Soccer", "result": "Philip Crothers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106913, "question": "What are some examples of forced migration crimes?", "tool": "fight/crime_type/crimes_of_this_type", "param": "Forced migration", "result": "Persecution of Zoroastrians"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106917, "question": "What type of thoroughbred racehorses have the color chestnut?", "tool": "thoroughbredracing/thoroughbred_racehorse_color/horses_of_this_color", "param": "Chestnut", "result": "Judge Himes"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106918, "question": "What classification does 206P/Barnard–Boattini hold as a near-Earth object?", "tool": "astronomy/near_earth_object/near_earth_object_classification", "param": "206P/Barnard–Boattini", "result": "Comet"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106921, "question": "What is the theme of the amusement park ride Body Wars?", "tool": "amusement_parks/ride/theme", "param": "Body Wars", "result": "Human body"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106924, "question": "Which wine sub-region is the 2004 Nichelini Chiles Valley Estate Zinfandel from?", "tool": "wine/wine/wine_sub_region", "param": "2004 Nichelini Chiles Valley Estate Zinfandel", "result": "Napa County"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106927, "question": "What variety of candy bars does the Hershey Company produce?", "tool": "food/candy_bar_manufacturer/candy_bars", "param": "The Hershey Company", "result": "Mounds"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106932, "question": "What is a chemical of estrogen?", "tool": "chemistry/chemical_classification/chemicals_of_this_type", "param": "Estrogen", "result": "Phytoestrogens"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106935, "question": "Who was the winner of the Miss America 1982 competition?", "tool": "award/competition/winner", "param": "Miss America 1982", "result": "Elizabeth Gracen"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106937, "question": "What episode of Saturday Night Live featured Jennifer Warnes as a musical guest?", "tool": "saturdaynightlive/snl_musical_guest/episodes_as_musical_guest", "param": "Jennifer Warnes", "result": "Shelley Duvall/Joan Armatrading"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106940, "question": "What were the main themes or topics explored in the song \"Medhed\"?", "tool": "music/composition/subjects", "param": "MedHed", "result": "Prescription drug"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106942, "question": "Which subcategory within the geographical feature category would a stream fall under?", "tool": "geography/geographical_feature_category/subcategory_of", "param": "Stream", "result": "Hydrographic"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106947, "question": "What advertising campaigns have Univision Communications run?", "tool": "advertising/advertiser/ad_campaigns", "param": "Univision Communications", "result": "Destino 2012 – Univision Election Coverage"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106948, "question": "Who is the breeder of the Thoroughbred racehorse Azamour?", "tool": "thoroughbredracing/thoroughbred_racehorse/breeder", "param": "Azamour", "result": "Aga Khan IV"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106951, "question": "Which TV show features the theme song \"Soul Man\"?", "tool": "tv/tv_theme_song/theme_song_for", "param": "Soul Man", "result": "Hangin' with Mr. Cooper"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106955, "question": "What is an example of a projectile weapon that falls under the category of phylogeny?", "tool": "onephylogeny/type_of_thing/includes", "param": "Projectile weapon", "result": "Blowgun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106959, "question": "Which NASCAR team is Scott Riggs affiliated with?", "tool": "nascar/nascar_driver/team", "param": "Scott Riggs", "result": "Phil Parsons Racing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106961, "question": "Which American novelist follows veganism?", "tool": "eating/diets/people_who_follow_this_diet", "param": "Veganism", "result": "T Cooper"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106963, "question": "Which airline alliance does hop! belong to?", "tool": "aviation/airline/alliance", "param": "HOP!", "result": "SkyTeam"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106966, "question": "What country is Fry's Turkish Delight sold in?", "tool": "food/candy_bar/sold_in", "param": "Fry's Turkish Delight", "result": "New Zealand"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106970, "question": "Who were the victims of this type of crime?", "tool": "fight/crime_type/victims_of_this_crime_type", "param": "Murder", "result": "Stephen Mayhle"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106972, "question": "What category does sodium bisulfite belong to as a food additive?", "tool": "food/food_additive/category", "param": "Sodium bisulfite", "result": "Preservative"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106975, "question": "What is the parent genre of track racing?", "tool": "media_common/media_genre/parent_genre", "param": "Track racing", "result": "Motorcycle racing"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106979, "question": "What programming languages are associated with the declarative programming language paradigm?", "tool": "computer/programming_language_paradigm/languages", "param": "Declarative programming", "result": "AMPL"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106983, "question": "In what country was the organism Kenmare Sorceress born?", "tool": "biology/organism/place_of_birth", "param": "Kenmare Sorceress", "result": "Wales"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106985, "question": "Name a child industry within the information technology sector.", "tool": "business/industry/child_industry", "param": "Information technology", "result": "Wired Telecommunications Carriers"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106987, "question": "What rides are associated with the theme of Toy Story?", "tool": "amusement_parks/ride_theme/rides", "param": "Toy Story", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106990, "question": "Is the website Gawker currently active?", "tool": "internet/website/status", "param": "Gawker", "result": "Active"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106995, "question": "What are the football teams within Division I (NCAA)?", "tool": "american_football/football_division/teams", "param": "Division I (NCAA)", "result": "Georgia Tech Yellow Jackets football"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106997, "question": "Where was the 2006 Dono Dal Cielo Sierra Foothills Zinfandel produced?", "tool": "wine/wine/appellation", "param": "2006 Dono dal Cielo Sierra Foothills Zinfandel", "result": "Sierra Foothills AVA"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 106999, "question": "What soundtracks are associated with the theater play?", "tool": "theater/play/soundtracks", "param": "Grease", "result": "None"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107003, "question": "What site does Lance Ulanoff blog for?", "tool": "internet/blogger/blog", "param": "Lance Ulanoff", "result": "Mashable"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107005, "question": "Who was the developer of the operating system OpenVMS?", "tool": "computer/operating_system/developer", "param": "OpenVMS", "result": "Dick Hustvedt"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107010, "question": "What religion is the Bhagavad Gita important for?", "tool": "religion/religious_text/religious_text_of", "param": "Bhagavad Gita", "result": "Hinduism"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107011, "question": "Where was Pan Am Flight 812 departing from?", "tool": "aviation/airliner_accident/flight_origin", "param": "Pan Am Flight 812", "result": "Kai Tak Airport"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107014, "question": "What category does a shotgun belong to?", "tool": "onephylogeny/type_of_thing/included_in", "param": "Shotgun", "result": "Gun"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107018, "question": "Which anime did Yuki Nagato appear in?", "tool": "animemanga/anime_manga_character/anime_appearances", "param": "Yuki Nagato", "result": "The Melancholy of Haruhi Suzumiya"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107021, "question": "What companies has Serafim Batzoglou provided consultation or advice to as a business advisor?", "tool": "business/company_advisor/companies_advised", "param": "Serafim Batzoglou", "result": "23andMe"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107025, "question": "What chemical series does chromium belong to?", "tool": "chemistry/chemical_element/chemical_series", "param": "Chromium", "result": "Transition metal"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107027, "question": "What are the typical behavioral traits and characteristics of the Persian cat breed?", "tool": "petbreeds/cat_breed/temperament", "param": "Persian cat", "result": "Communicative"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107031, "question": "Who is the producer of the exhibitions produced by the Hirshhorn Museum and Sculpture Garden?", "tool": "exhibitions/exhibition_producer/exhibitions_produced", "param": "Hirshhorn Museum and Sculpture Garden", "result": "Yves Klein"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107032, "question": "Which hotels are operated by the hotel operator, Hyatt?", "tool": "travel/hotel_operator/hotels_operated", "param": "Hyatt", "result": "Hyatt Regency Dallas"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107036, "question": "Who is a chef known for Italian cuisine?", "tool": "dining/cuisine/chefs", "param": "Italian food", "result": "Jamie Oliver"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107039, "question": "What are the TV episodes of the show \"Terry Fox\"?", "tool": "tv/tv_subject/tv_episodes", "param": "Terry Fox", "result": "Into the Wind"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107041, "question": "What is the broader classification of instruments that the marimba belongs to based on shared characteristics?", "tool": "music/instrument/family", "param": "Marimba", "result": "Tuned percussion"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107044, "question": "What is an example of opera seria, and what are some operas in this genre?", "tool": "opera/opera_genre/operas_in_this_genre", "param": "Opera seria", "result": "Ariodante"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107047, "question": "What teams participated in the 2014 ICC World Twenty20 cricket tournament?", "tool": "cricket/cricket_tournament_event/teams", "param": "2014 ICC World Twenty20", "result": "Ireland cricket team"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107051, "question": "What is the sports team that the Akron Pros were later known as?", "tool": "sports/defunct_sports_team/later_known_as", "param": "Akron Pros", "result": "Akron Indians"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107054, "question": "What genre does the comic book series Naruto fall into?", "tool": "comic_books/comic_book_series/genre", "param": "Naruto", "result": "Action"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107058, "question": "What diseases can be diagnosed using echocardiography?", "tool": "pethealth/diagnosis/used_to_diagnose", "param": "Echocardiography", "result": "Congestive Heart Failure in Dogs"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107060, "question": "Name an active website.", "tool": "internet/website_status/sites", "param": "Active", "result": "MSN Games"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107062, "question": "What broader concept does the term \"Italian\" belong to?", "tool": "skosbase/skos_concept/broader", "param": "Italian language", "result": "Romance languages"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107065, "question": "What is the game 20Q derived from?", "tool": "games/game/derived_from", "param": "20Q", "result": "Twenty Questions"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107068, "question": "What types of practices are associated with Islam in terms of dietary habits?", "tool": "religion/religion/practices", "param": "Islam", "result": "Halal food"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107072, "question": "What type of aircraft was involved in the Delta Air Lines Flight 191 airliner accident?", "tool": "aviation/airliner_accident/aircraft_type", "param": "Delta Air Lines Flight 191", "result": "Lockheed L-1011 TriStar"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107076, "question": "What is the pertinent type of the administrative area \"Kingdom of the Netherlands\"?", "tool": "schema/administrative_area/pertinent_type", "param": "Kingdom of the Netherlands", "result": "Dutch constituent country"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107077, "question": "What type of planetographic feature on the moon is an impact crater?", "tool": "astronomy/type_of_planetographic_feature/planetographic_features_of_this_type", "param": "Impact crater", "result": "Ramsay"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107080, "question": "Where is the Southern Cross Travel Insurance Australia organization centered?", "tool": "organization/organization/locations", "param": "Southern Cross Travel Insurance Australia", "result": "New Zealand"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107085, "question": "Which mountains are listed in the Adirondack High Peaks?", "tool": "geography/mountain_listing/mountains", "param": "Adirondack High Peaks", "result": "Cliff Mountain"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107087, "question": "What listings or directories related to the significance level are available for USNRIs?", "tool": "usnris/significance_level/listings", "param": "Local", "result": "Monroe Avenue Commercial Buildings"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107090, "question": "Who manufactured the Next Computer?", "tool": "computer/computer/manufacturer", "param": "NeXT Computer", "result": "NeXT"}
{"dataset_name": "SimpleQuestionsv2", "case_idx": 107093, "question": "Who was the grandsire for the racing horse Viva Pataca?", "tool": "thoroughbredracing/thoroughbred_racehorse/grandsire", "param": "Viva Pataca", "result": "Last Tycoon"}
|