File size: 260,942 Bytes
444c449 | 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 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 | {"query": "Q: Was the Louisiana Purchase made with bitcoin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is someone more likely to survive having breast cancer in Japan than in Sweden?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are you likely to hear Rammstein playing in smooth jazz clubs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the moon fit inside the Black Sea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Arnold Schwarzenegger deadlift an adult Black rhinoceros?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is there a popular Broadway character who is a missionary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Jack Sparrow know any sea shantys?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a woman on average have a baby before wheat seed blooms?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a mongoose have natural camouflage for desert?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are all limbs required for jujutsu?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the operating system of a Samsung Galaxy 1 sound edible?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is entire Common Era minuscule to lifespan of some trees?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is groundhog day used as a global season indicator? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a honey badger's dentures be different from a wolverine's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jack Dempsey have most title fight wins in either of his weight classes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Nine Inch Nails's lead singer associated with David Lynch?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Johns Hopkins University always treated subjects ethically?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Woody Allen await the Second Coming?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Cynthia Powell celebrate a silver anniversary with John Lennon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is CEO of Nissan an internationally wanted fugitive?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Saint Augustine use the Julian calendar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do worshipers of Shiva make a pilgrimage to the Holy Land?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could jockey win Triple Crown between Eid al-Fitr endpoints?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the Great Depression be treated with Prozac?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do the telescopes at Goldstone Deep Space Communications Complex work the night shift?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a felony jury enough people for a Bunco game?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Woodrow Wilson consider Blacks to be equal members of society?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it best to avoid kola nuts with colitis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can photography be considered abstract art?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be unusual to find a yellow perch in the Red Sea?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the density of helium cause voices to sound deeper?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Hydrogen's atomic number squared exceeds number of Spice Girls?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a honey bee sting a human more than once?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do movies always show nerds as the losers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are sesame seeds glued onto hamburger buns?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Roman Gallic Wars army struggle to build the pyramids faster?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do American teams in National Hockey League outnumber Canadian teams?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a human following a hyena diet be unwelcome at a vegan festival?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the tunnels at CERN fit onto the High Speed 1 rails?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If you have black hair and want red hair, do you need bleach?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is winter solstice in Northern Hemisphere closer to July than in Southern Hemisphere? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Bern located east of Paris?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do silicone suits make judo difficult?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: 4 Krispy Kreme glazed doughnuts exceed AHA daily sugar allowance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it safe to wear sandals in snow?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was hippie culture encouraged by the government in the Soviet Union?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is RoboCop director from same country as Gaite Jansen?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Sartre write a play about Hell?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an American feel lost due to language barriers at Disneyland Paris?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should cactus soil always be damp?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an Orthodox Presbyterian object to 1700s judge's attire?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will a person survive a fever of NY's highest recorded temperature?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could ABBA play a mixed doubles tennis game against each other?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is cow methane safer for environment than cars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does autopilot rely on fossil fuels?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can paresthesia be caused by a white pigment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would members of Blue Lives Matter support every element of Grand Theft Auto III?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would food made with black salt smell of sulfur?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do mollymawks live where albatrosses cannot?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a tool used for Martin Luther's Reformation opening salvo aid in a crucifixion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can The Hobbit be read in its entirety in four minutes?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Easter Bunny popular in September?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should oysters be avoided by people with ADHD?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Van Gogh suffer from a mental disorder?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are birds important to badminton?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were any members of Canidae in Aesop's Fables?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would World War II have been the same without Alan Turing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a giant green lady stand in New York Harbor?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are some Brazilian Navy ships built in Britian?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a hundred thousand lolcats fit on a first generation iPhone?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Christina Aguilera born in the forgotten borough?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could every citizen of Samoa send a letter to a unique JPMorgan Chase employee?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Queen Elizabeth The Queen Mother and her daughter share name with Tudor queen?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a fever cured by listening to a cowbell?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the band Led Zeppelin own a prime number of gilded gramophones?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Final Fantasy VI require electricity to play?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are any letters directly before and after H missing from Roman numerals?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Sam Harris worship Shiva?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Emperor Commodus paid tribute in Pound sterling?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are monks forbidden from engaging in warfare?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Rhode Island sink into the Bohai Sea?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the saltwater crocodile less endangered than the European otter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an adult male stand on top Donatello's bronze David and touch the Sistine Chapel ceiling?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the first Vice President of the United States an Ottoman descendant?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Lines on the Antiquity of Microbes briefer than any haiku?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do citizens of Cheshire sing La Marseillaise?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you were at an Apple store, would most of the computers be running Ubuntu?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does ontology require a scalpel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you need to worry about Zika virus in Antarctica? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would alligator best saltwater crocodile in hypothetical Lake Urmia battle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is tobacco use made to seem enjoyable in Alice's Adventures in Wonderland?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a newborn look over the top of a fully grown horseradish plant?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is nickel dominant material in US 2020 nickels?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Phobos part of the Andromeda galaxy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a dog easily notice ammonia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Mozart ever buy anything from Dolce & Gabbana?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can pancreas removal cause bankruptcy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Communist Party of the Soviet Union get a perfect all kill?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do seven McDonald's hamburgers exceed USDA recommended fat allowance?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is zoology unconcerned with strigoi?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did England win any Olympic gold medals in 1800?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do some home remedies result in your skin color turning blue?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a Boeing 737 cost covered by Wonder Woman (2017 film) box office receipts?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did University of Pittsburgh founder have great deal in common with Judith Sheindlin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a member of the United States Air Force get a discount at Dunkin Donuts?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: After viewing the Mona Lisa, could you get lunch nearby on foot?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are kayaks used at the summit of Mount Everest?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Lupita Nyongo have citizenship in paternal Family of Barack Obama's origin country?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did any killer Manson band members were named for exceed Charles Manson's kills?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Hades have a loose grip on the Underworld?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Hobbit more profitable for proofreader than Constitution of the United States?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a snowy owl survive in the Sonoran?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Antarctica have a lot of problems relating to homelessness?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can second row of QWERTY keyboard spell Abdastartus's kingdom?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is an espresso likely to assuage fear?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Goofy have counted nine planets in his first year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would keelhauling be a fair punishment under the Eighth Amendment?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Gujarati script the same category of script as Kanji?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the letter D influenced by the shape of ancient doors?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Donald Duck hypothetically purchase bell-bottoms for himself?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Elijah Cummings vote for Joe Biden in the next presidential elections?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you measure a Caracal with a protractor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Chinese mountain cat survive in the orbit? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Fiat Chrysler gaining a new overall corporate identity?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can actress Danica McKellar skip astronaut education requirements?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Elizabeth I of England own any viscose fiber?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Bonanza marathon end before WWE Heat marathon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a fan of the Botany Swarm vote for John Key?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it unusual to eat spaghetti without a fork?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a snake swallow an M60 Patton?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would four shoes be insufficient for a set of octuplets?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a kindergarten teacher make a lesson of the New Testament?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is there a full Neptunian orbit between the first two burials of women in the Panthéon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Planned Parenthood tell your University that you have Herpes simplex virus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a moose hypothetically be too much for a minotaur to devour whole?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a silicon shortage be bad for Intel's sales?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Subway involved in a pedophilia scandal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the father of social security system serving in the white house during the Panic of 1907?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Marco Rubio have a close relationship with Allah?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can children be hurt by jalapeno peppers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Super Mario mainly focus on a man in green?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Masaharu Morimoto rely on glutamic acid?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is an Eastern chipmunk likely to die before seeing two leap years?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Statue of Liberty be visible if submerged in Bohai Sea?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did origin dynasty of Go precede Jia Sidao?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are any of the words that CAPTCHA stands for palindromes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Olivia Newton-John hyphenated celebrity name with most letters?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can whole genome sequencing be used for COVID-19?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the best tasting part of the papaya in the center?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has CNES planted a French flag on the lunar surface?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Evander Holyfield eat pork products?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Snoop Dogg's debut studio album released on the weekend?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did DARPA influence Albert Einstein? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is letter C crucial to spelling the two most common words in English language?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Illuminati card game still popular?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are any of the destinations of Japan Airlines former Axis Powers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could B be mistaken for an Arabic numeral?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Robert Downey Jr. possess same caliber gun as Resident Evil's Barry Burton?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it difficult to conduct astrophotography in the summer in Sweden?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Adam Sandler skip celebrating Easter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do you need to schedule separate preventive healthcare and sickness visits? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was The Little Prince's titular character allergic to flowers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can French Toast hypothetically kill a Lannister?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a jumping spider need over half a dozen contact lenses?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does USA fail separation of church and state in multiple ways?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Joan Crawford guest star on JAG (TV series)?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would characters in Harry Potter and the Philosopher's Stone be persecuted as pagans?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can 200 men end to end cover Great Pyramid of Giza's base?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the French Revolution televised?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could all People's Volunteer Army hypothetically be transported on Symphony of the Seas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Fraktur have a sordid history?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the Titanic be well preserved at the bottom of the Gulf of Finland?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Moliere Queen Margot's ill fated lover?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you house a giant squid at Soldier Field?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the chef at La Grenouille find salsa to be a strange request?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is radioactive waste a plot device for many shows?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would stargazers prefer binoculars over a telescope?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do hyenas appear in a Broadway musical?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Hades appear in a Disney Channel musical movie?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Gorillaz creator been in more bands than Bernard Sumner?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an Evander Holyfield 2020 boxing return set age record?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Cyril Ramaphosa become Secretary General of NATO?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does frost mean that it will be a snowy day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Olympia, Washington part of \"Ish river country\"?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Amy Winehouse always perform live perfectly?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is myocardial infarction a brain problem?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Bactrian Camel most impressive animal when it comes to number of humps?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is shrimp scampi definitely free of plastic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Home Depot a one stop shop for crucifixion supplies?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there any chives hypothetically good for battling vampires?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Guam have a state capital?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could eating Chinook salmon help Ryan Reynolds?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Aerosmith fit in a 2020 Mitsubishi Outlander?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can someone from New England profit by growing coffee?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are selfies more dangerous than plague in modern times?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do shrimp taste best when cooked for a long time?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could ten gallons of seawater crush a six year old?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is an internet connection essential for someone using Chrome OS?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a fairy more prevalent in world myths than a valkyrie?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a sniper shoot a fish past Bathypelagic Zone in ocean?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an ethics professor teach a class on Cezanne?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone on Venus be unlikely to experience hypothermia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Yeti be likely to have prehensile limbs?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Elizabeth II reign over the Balearic Islands?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there tearjerkers about United Airlines flights?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Miami a city on the American West Coast?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the Pixar film Brave feature Scottish people?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In order to work in district management, does one need a car?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can crane slamdunk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can surgery prevent an existential crisis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a firewall be destroyed by a hammer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you find a railroad engineer on TNT?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Elle Fanning play an essential part in ending apartheid?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will you see peach blossoms and Andromeda at the same time?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Shinto practitioners keep to a kosher diet?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Autumn a good time to collect bear pelts in US?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be impossible to keep an ocean sunfish and a goldfish in the same tank?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Ice make people rich?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jane Austen suffer from middle child syndrome?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is 3D printing able to make adenovirus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Cherokee people send a delegation to oppose allotment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Modafinil be effective in completing a suicide?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Downton Abbey finale viewership defeat every Kazakhstan citizen in tug of war?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is double duty an incorrect phrase for host of Dancing With The Stars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can first letter row of QWERTY keyboard spell a palindrome?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Dustin Hoffman likely vote for Trump in 2020?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Ganymede in the Milky Way galaxy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the Euro used in Prussia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was San Antonio the site of a major battle in the 19th century?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can dementia be cured with a cast?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it wise to feed a Snickers bar to a poodle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the letter B's place in alphabet exceed number of 2008 total lunar eclipses?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could casualties from deadliest war rival France's population?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Javier Sotomayor jump over the head of the average giraffe?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will someone die without white blood cells?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Walt Disney dominated his amusement park peers at Academy Awards?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Mike Tyson train to use the gogoplata?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a northern fur seal pass a driving test?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Aldi's foods discounted due to being out of date?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a snake wear a snowshoe?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does James Webb Space Telescope fail astronomer in locating planet Krypton?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Powerpuff Girls form a complete tag team wrestling match?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is snoring a sign of good breathing while sleeping?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a delicious recipe be made with The Onion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is dopamine snorted nasally by drug users?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Hermione Granger eligible for the Order of the British Empire?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Larry King's marriages be counted on two feet?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Sojourner Truth use the elevator at the Washington Monument?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is capsaicin associated with cooking?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will electric car struggle to finish Daytona 500?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Richard Wagner support the Nazis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does an organ donor need to be dead to donate a kidney?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a traffic collision make someone a millionaire?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Santa Claus hypothetically give Joffrey Baratheon presents?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Michael Phelps be good at pearl hunting?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are some chiropractic manipulations dangerous?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a monolingual American read Lenovo's native name?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is University of Pittsburgh easier to enter than FBI?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is xenophobia hypothetically unimportant between Saladin and Ali Askari?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the city of Miami fit inside Uppsala?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can music be used as a weapon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would vegans consider chickpeas for a tuna substitute?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you buy Hershey's Kisses in red foil with farthings after 1960?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Lemon enhance the flavor of milk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Jean Harris's victim have avoided lentils?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is MIX a word and a roman numeral?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Football War last at least a month?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was only woman to serve as U.S. Speaker of the House alive during the attack on Pearl Harbor?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a Jujutsu expert hypothetically defeat a Janissary?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is greed the most prevalent of the Seven Deadly Sins?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you find a tibia beside parsley on a holiday plate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was dynamite used during Middle Ages warfare?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Modern Family win a Slammy award?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a crocodile survive longer in Great Salt Lake than alligator?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the author of Little Women have remembered the ratification of the 13th Amendment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would New Year's Eve hypothetically be Bacchus's favorite holiday?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it normal to see a red panda in Shanghai outside of a zoo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it safe to eat kidney?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Heracles famous labors exceed a baker's dozen?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Herpes simplex virus spread on Venus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Y2K relevant to the plot of The Godfather?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone pay for a coffee in NYC with Euros?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does coding rely on Boolean algebra characters?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Hurricane Harvey catch a Peregrine falcon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Land of Israel in possession of an Islamic empire in 16th century?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do the anchors on Rede Globo speak Chinese?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Ronda Rousey hypothetically defeat X-Men's Colossus in a fight?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Gremlins sequels tie number of Matrix sequels?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Justin Bieber vote in October?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you worship Ahura Mazda at a mosque?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is sternum connected to any of the bones mentioned in James Weldon Johnson's Dem Bones?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be uncommon for a high schooler to use the yellow pages?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a ten-pin bowling pin be a deadly weapon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are fossil fuels reducing jobs in the Gulf of Mexico?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Steve Carell's character on The Office portrayed as one with tremendous leadership skills?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can telescopes hear noise?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there special traffic laws associated with funerals?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would most school children in New York be wearing jackets on groundhog day?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Berlin University of the Arts a Baroque period relic?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Gandalf hypothetically a formidable foe for Charmed's Barbas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Lord Voldemort taught by Professor Dumbledore?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Nine Inch Nails a good guest for students in earliest grade to take Iowa tests?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Common warthog starve in a greenhouse?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Los Angeles Memorial Sports Arena hypothetically inadequate for hosting Coachella?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were Jackson Pollock's parents not required to say The Pledge of Allegiance as children?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the largest city in New Mexico also known as Yootó?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most college students own a fax machine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you transport a coin along a sea of mercury?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the tibia required for floor exercises?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Edgar Allan Poe obscure in the world of horror fiction?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Bandy be likely to become popular in Texas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is immersion in virtual reality testable on cnidarians before humans?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Argon near Neon on the periodic table of elements?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Malcolm X use Unicode?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Benito Mussolini wear bigger shoes than Hafþór Björnsson?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can parachuting amateurs ignore hurricane force winds bulletins?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a sophist use an épée?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: In isopropyl alcohol, is the solubility of salt low?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the majority of vowels be typed on the first line of a QWERTY keyboard?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are some Do It Yourself projects potentially lethal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there enough people in the Balkans to match the population of Japan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is there a Harry Potter character named after Florence?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do anatomical and symbolic hearts look remarkably different?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Freya a combination of Athena and Aphrodite?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Jean Valjean imprisoned due to hunger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Monoamine Oxidase candy bar cheer up a depressed friend?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is March named after Jupiter's son in Roman mythology?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a German Shepherd be welcome in an airport?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do American wheelchair users know what the ADA is?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is coal needed to practice parachuting?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is being 5 year Capital One Venture member more cost effective than being in Church of Satan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Social Democratic Party of Germany help Frederick II become King of Prussia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do mail carriers need multiple uniforms?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was a woman Prime Minister directly before or after Stanley Baldwin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Amazon afford The Mona Lisa?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do you have to pass through circle of lust to find Saladin in Dante's Inferno?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the crew of Apollo 15 have difficulty riding a unicycle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is watermelon safe for people with a tricarboxylic acid allergy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would John the Baptist be invited to a hypothetical cephalophore reunion in heaven?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Subway have a sex offender as a spokesperson?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Immanuel Kant ever meet the 14th president of the United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you buy a fair trade laptop?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do beeswax alternatives to cling wrap use plsatic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a CEO typically clean the toilets in a company's building?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Superhero fiction invented in the digital format?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be wise to bring a robusto into Central Park Zoo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has the creator of Futurama lived in multiple centuries?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Guitar Hero Beatles inappropriate for a US third grader?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did France win the French Revolution?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Cardi B. benefit from soy milk?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do all cancer patients get disability?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a Generation Y member satisfy NYPD police officer age requirement?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Berlin Wall prevent any athletes from competing in the 1936 Summer Olympics?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does title of Van Morrison's most played song apply to a minority of women worldwide?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does New York Harbor sit on a craton without volcanic activity?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Eighth Amendment to the United States Constitution popular in court?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Long John Silver's serve sea otter?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the anatomy of a camel lend itself to jokes on Wednesdays?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is pickled cucumber ever red?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Jesse W. Moore a potential recipient of a Snoopy-themed award from NASA?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the United States Department of Education oversee services benefiting undocumented migrants? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Hanuman associated with a Norse god?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Saint Peter watch television?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Republic of Korea Navy dominate Eritrea navy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does New Year's Day always occur on a Wednesday?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would United States Air Force consider Return of the Jedi's Han Solo bad hypothetical candidate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Harry Houdini's wife make psychics look foolish?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a Toyota Supra make a vlog?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Norman Oklahoma named after a viking?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the son of Tsar Nicholas a daredevil?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the span in C-SPAN named after Alan Greenspan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are tumors in the lymph nodes ignorable?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone with a nosebleed benefit from Coca?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are most books written as a Haiku?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are some types of pancakes named after coins?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the Dalai Lama believe in the divine barzakh?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a greyhound be able to outrun a greyhound bus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people of the Iyer caste eat meat?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Chick-fil-A hypothetically refuse to sponsor a Pride parade?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a human eat an entire 12-lb roast turkey in an hour? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is helium the cause of the Hindenburg explosion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the 10th doctor enjoy a dish of stuffed pears?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Biochemistry study gluons?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is chaff produced by hydropower?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Hanuman ever experience an orgasm?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Iphone have more iterations than Samsung Galaxy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Brussels sprout particularly good for adrenal fatigue?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Cleopatra have ethnicity closer to Egyptians than Greeks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do the directors of The Matrix advocate for transgender rights?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could morphine cure HIV?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Muslims have a different idea of Seraphim than Christians?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did either side score a touchdown during the Football War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Albany, Georgia the most populous US Albany?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Leopard cats in less dire straits than Bornean Orangutan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Al Capone have read works from the Harlem Renaissance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you watch Rick and Morty in Mariana Trench?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Batman (1989 film) likely to be shown on flight from NY to Kansas City?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Lorenzo de Medici's patronage of Da Vinci exclusive?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the United States Navy create radioactive waste?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would nickel boil in the outer core of the earth?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Pope be on an episode of Pimp My Ride?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would King Leonidas have succeeded with an army the size of Mozart's compositions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does acupuncture cause pain in many people?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were some people afraid of New Years Day coming in 1999?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did The Who have to cancel tours due to World War II?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the death of Helen Palmer have a significant effect on Dr. Seuss?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are parodies of the President of the United States illegal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did a gladiator kill his opponent with a shotgun?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Bern a poor choice for a xenophobic Swiss citizen to live?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Peak of the Andes hidden from the view of the Colossus of Rhodes?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will The Exorcist stimulate limbic system?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do you need a large room if you want to get into 3D printing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is average number of peas in a pod enough commas for a billion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could someone in a coma experience fear?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an Alfa Romeo vehicle fit inside a barn?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are common carp sensitive to their environments?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Tom and Jerry featured in a ride at Disneyland?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a carrot receive an organ transplant?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Mercury make for good Slip N Slide material?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it expected that Charla Nash would be anxious near a gorilla?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you conduct surveillance from a teddy bear?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the founders of the biggest city in Orange County, California speak Italian?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Africanized bees be considered multicultural?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you hunt Iberian wolves in the Southern United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do depressed people travel to the Golden Gate Bridge often?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Walt Disney ever interviewed by Anderson Cooper?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Australians ride Kangaroos to work?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the tibia necessary to win the Stanley Cup?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a person need a college degree to become a bartender?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the United States Capitol located near the White House?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Moscow Kremlin fit inside Disney Land?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Austrian casualties from Seven Years' War fit in Indianapolis Motor Speedway?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has cannabis been a big influence in rap music genre?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is strep throat harmless to singer Rita Ora after her 2020 tonsilitis surgery?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a kangaroo incubate its offspring?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Lord Voldemort hypothetically be an effective fighter after Final Fantasy silence is cast?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Jews believe in any New Testament angels?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Ronda Rousey avoid BBQ restaraunts?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would WWF be angrier if you killed koala instead of black swan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are gorillas closely related to humans?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did U2 play a concert at the Polo Grounds?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you hide a basketball in a sand cat's ear?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you see the moon in Wembley Arena?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Beatles write any music in the Disco genre?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was a person sold a Creative Commons License for Boticelli's The Birth of Venus ripped off?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would 2020 Toyota Supra lag behind at a Nascar rally?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Gladiator's weapon of choice require less hands than Soul Calibur's Faust?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is B's place in alphabet same as Prince Harry's birth order?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Drow tower over The Hobbit's hero?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is \"A Tale of Two Cities\" a parody of the Bible?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are the majority of Reddit users familiar with the Pledge of Allegiance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do moths that live on sloths have family dinners?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Lamborghini's fastest model win a race against a Porsche 911?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Terence Tao outperform Eminem in a math competition?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone go to San Francisco for a nature escape?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a game engine have a fuel injector?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the owners of the company Peter Griffin works for need barley?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Benito Mussolini hypothetically play well in the NBA?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Immersion Baptism lead to a death like Jeff Buckley's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does ABBA have similar gender configuration to The Mamas & The Papas?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Cesar Millan ever tamed a short-eared dog?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can someone with dermatitis be a hand model?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a modern central processing unit circuit chip fit on a housekey?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could you windsurf in Puerto Rico during Hurricane Maria?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can oysters be preserved without refrigeration? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Qwerty keyboard layout predate computers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Europa (moon) name origin related to Amunet?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Britney Spears' breakdown attributed to bipolar disorder?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Newt Gingrich's nickname a type of Reptile?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Republicans reject all forms of welfare?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is an inappropriate lullaby Love Song from November 11, 2000?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Eric Clapton's mother hypothetically be unable to legally purchase cigarettes in the USA at his birth?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Watergate scandal help the Republican party?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Nepalese Civil War take place near India?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Spiderman fight against Falcon in the MCU?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Medieval English lords engage in fair trade with peasants?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Michael J Fox qualify for the Army Rangers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do children send their Christmas letters to the South Pole?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are classic nintendo games for emulator legal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would P. G. Wodehouse be taught in second grade?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you need both hot and cold water to peel a tomato?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could one Amazon share ever buy twenty year Netflix subscription?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does an individual oceanographer study many sciences?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Florence a Theocracy during Italian Renaissance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In most Mennonite homes, would children know of The Powerpuff Girls?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Amazon involved in the lunar landing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a dolphin keep a diary?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a geographer use biochemistry in their work?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the CIA part of the Department of Defense?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could an NBA game be completed within the span of the Six-Day War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a 2019 Toyota Hilux hypothetically support weight of thirty Big John Studd clones?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does selling a 2020 Chevrolet Corvette almost pay for a year at Columbia University?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the MLB World Series held in Newcastle, New South Wales?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do German Shepherds worry about the Abitur?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Spartina Patens thrive in the Sahara Desert?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Al-Farabi a student of the Great Sheikh?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does March begin on the same day of the week as February during leap years?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are leaves from coca good for gaining weight?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will AC/DC album sales buy more B-52 bombers than Lil Wayne's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Moulin Rouge have been hypothetically used as Spain's Spanish American War triage center?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a microwave melt a Toyota Prius battery?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Melania Trump have same profession as Olga Kurylenko?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Rusev have to worry about human overpopulation in his homeland?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: In geometry terms, is the Royal Observatory in Greenwich similar to a yield sign?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can jackfruit be used as a weapon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are the colors on Marlboro package found on French flag?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you put bitcoin in your pocket?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: During the time immediately after 9/11, was don't ask don't tell still in place?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Donkeys part of Christmas celebrations?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were the Great Pyramids built by a theocratic government?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Arnold Schwarzenegger hypothetically defeat Hafþór Björnsson in a powerlifting competition if both are at their peak strength?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would most children be up past their bedtime if they were watching Conan O'Brien?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Cholera alive?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Tony Stark be considered a polymath?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Jackson Pollock straight edge?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was song of Roland protagonist friendly with group that had sagas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Bill Gates achieve Latin honors?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did earth complete at least one orbit around the sun during the Napoleonic Wars?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Ariana Grande inspired by Imogen Heap?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can vitamin C rich fruits be bad for health?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Robert Downey Jr. a good role model as a young man?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Mercedes-Benz associated with the Nazis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Islamophobia against Cyprus majority religion misdirected?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did any of Maya Angelou's children follow in her footsteps?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a stool be useful for a Lusotitan to reach the top of an almond tree?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did President William Howard Taft read DC Comics?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Gandalf hypothetically defeats Rincewind in a wizard battle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Hades and Osiris hypothetically compete for real estate in the Underworld?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a vegan eat a traditional Paella dish?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the tree species that the name Leipzig refers to an evergeen tree?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a paleo dieter unlikely to color beverages green for St. Patrick's Day?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the United States the largest exporter of Fair Trade products?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has type of political association Pompey had with Caesar influenced reality TV?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are thetan levels found in the New Testament?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a bodybuilder choose maize over chicken breast for dinner?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Matt Damon be afraid of parachuting?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you fit every resident of Auburn, New York, in Tropicana Field?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Darth Vader hypothetically outdunk Bill Walton without using The Force?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the population of the Warsaw Ghetto record secret police on cell phones?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will speed reader devour The Great Gatsby before the Raven?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Joker an enemy of the Avengers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a beard is moss that grows on a human?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Bugs Bunny known for carrying a root vegetable around with him?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Rand Paul frequently swim in Lake Michigan during his undergraduate years?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could an ocelot subsist on a single bee hummingbird per day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can COVID-19 spread to maritime pilots?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Super Mario require electricity to play?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Alan Alda old enough to have fought in the Vietnam War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Ahura Mazda have to look down to see Abaddon's dwelling??\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is pig meat considered inedible within the cuisine of Hawaii?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the original name of the zucchini be typed on the top row of a QWERTY keyboard?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Eddie Murphy dial 911 in a car as a young child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are all characters in Legend of Robin Hood fictional?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are pirate lieutenants like navy lieutenants?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the FDA require sell by dates using Roman Numerals?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Confederate States Army influence West Point fashion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can lobster breathe in the desert?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would most grand masters know what the French Defense is?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Shakespeare famous because of the infinitive form?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an ancient visitor to Persia probably consume crocus threads?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is white light the absence of color?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Holy Saturday 2019 have special significance to pot smokers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do many fans of J.K Rowling know who Alan Rickman is?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be unusual to use paypal for drug deals?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Princess Peach's dress resemble a peach fruit?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the children of Greek hero Jason hypothetically fill a polo team?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you buy spinal cord at Home Depot?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Have jokes killed more people than rats in history?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the texture of leaves remain the same independent of their coloring changing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do all shooting sports involve bullets?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it impossible to tell if someone is having a stroke?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could $1 for each 2009 eclipse buy a copy of TIME magazine in 2020?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Edward Snowden have visited the headquarters of United Nations Conference on Trade and Development?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Othello be Shakespeare's play to buy Scheherazade most time with king?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be impossible to use an Iwato scale for a twelve-tone technique composition?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could James Brown's ex-wives hold a doubles game of tennis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Johann Sebastian Bach leave his first wife for his second wife?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was John George Bice's birthplace near Cornwall?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are honey badgers and hyenas anatomically dissimilar? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was being a mail carrier considered one of the most dangerous jobs?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Chuck Norris be a nonagenarian by time next leap year after 2020 happens?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you carry a Chrysler in a laptop bag?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can spiders help eggplant farmers control parasites?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does welding with acetylene simulate the temperature of a star?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the subject of Parsifal taken from British folklore?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did King James I despise fairy beings?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did eggs need to be kept cold in the middle ages?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a minotaur hypothetically injure a tibia playing football?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an American black bear swallow a sun bear whole?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the Very Large Telescope observe the largest mountain on Earth?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does actress Leila George lack the height to be a model?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can I build a house on an asteroid?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Snoop Dogg advocate a straight edge lifestyle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can ham make a cut seal up quicker?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Alaska part of the Northern Army during the Civil War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does US brand Nice depend on Western honey bee?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Billie Eilish afford a Porsche?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Cosmic Girls play League of Legends alone?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: At Christmastime, do some films remind us that groundhog day is approaching?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could John Key issue an executive order in the USA?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can printing books in kanji instead of the Roman alphabet save trees?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Ludacris in same music genre as 2000's Binaural?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will the Albany in Georgia reach a hundred thousand occupants before the one in New York?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Glenn Beck known for his mild temper?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Lorem ipsum backwards fail to demonstrate alliteration?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you transport a primate in a backpack?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Shivambu practitioners believe ammonia is unhealthy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Cantonese spoken in Japan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you give at least one word from the Torah to all residents of Bunkie Louisiana?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can brewing occur in a prison environment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can depression be mistaken for laziness?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a diet of ice eventually kill a person?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If your skin was turning the color of a zombie, could it be because of nickel?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Pablo Escobar's nickname collection outshine Robert Moses Grove's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would George Fox support stoning?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be typical for a Rede Globo anchor to say Konnichiwa to the viewers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Tokyo Tower designers appreciate Stephen Sauvestre?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Supreme Court of Canada fight a Lucha trios match?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Florence Nightingale's death more painful than Saint Peter's?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the actress who played Elizabeth II speak fluent Arabic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the skull formed as one whole bone?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the Powepuff Girls make the background to the Azerbaijani flag?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Michael Crichton ever in danger of flunking out of Harvard as an undergraduate?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a sea turtle play tennis using a tennis racket?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: For bone growth, is kale more beneficial than spinach?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Christopher Nolan indebted to Bob Kane?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do bald eagles nest on Mount Sharp?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Jackie Kennedy wear Dolce & Gabbana to her husband's inauguration?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Arnold Schwarzenegger be unable to run for President of the US?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a retail associate envy the retailer's CEO's pay?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does store bought milk have cream at the top?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Homer Simpson need two hands worth of fingers to count to 5?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Richard Dawkins hypothetically refuse an offering of the Last rites?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it dangerous to consume chlorine when mixed with sodium?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a person using tonsure have hair at the top of their scalp?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a Sphynx cat be used for wool?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the United States of America touch the Indian Ocean?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would human race go extinct without chlorophyll?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are LinkedIn and LeafedIn related companies?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Robert Stack have been interested in Tower of London during 1400s for his 14 season show?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a model be likely to frequently enjoy the menu at Cookout?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If a baby was born on Halloween would they be a Scorpio?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Glycol something United Airlines would buy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are pennies commonly used in Canada?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Scottish people descended from Mary, Queen of Scots part French?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did J. P. Morgan have healthy lungs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Achilles a direct descendent of Gaia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Kelly Clarkson outsold season 4 American Idol winner?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the cuisine of Hawaii embrace foods considered gross in the continental US?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is surfing popular in Des Moines, Iowa?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there multiple American government holidays during winter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the fastest tortoise win a race against a Chicago \"L\"?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would J.K Rowling's top sellers be on a fantasy shelf?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will parma ham be ready for New Year's if the pig is slaughtered in December?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a bodybuilder enjoy wearing a cast for several weeks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Stephen King join the NASA Astronaut Corps?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does meat from cows fed only grass taste more like wild game?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Christmas trees dissimilar to deciduous trees?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a person be diagnosed with a Great Depression?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can members of the Green Party of England and Wales vote in the USA?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most religious people in Quebec refer to the Quran?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Dr. Seuss make himself famous?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Golden eagle considered a scavenger bird?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Morocco an ideal location for water skiing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Godfrey of Bouillon an Islamaphobe?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the bull shark more bull than shark?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Garfield known for hating italian cuisine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the Toyota Hilux tip the scales against Mr. Ed?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Bobby Jindal's high school mascot eat kibble?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a lemon aggravate dyspepsia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it normal to blow out candles during a funeral?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Eddie Murphy's father see his first stand up show?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Marco Rubio ride the Candymonium roller coaster at Hershey Park?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there a popular Disney character made from living ice?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Port of Baltimore handle the entire world's cargo production of ginger each year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a fungal life-form be threatened by a pigment from copper?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Carl Friedrich Gauss speak to someone 100 miles away?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Lil Wayne's children ride in a Chevrolet Corvette ZR1 together?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Kelly Clarkson's voice shake glass?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the theory of cultural hegemony explain global warming?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Conan the Barbarian hypothetically last a short time inside of Call of Duty?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: When Hugh Jackman was a teacher, would he have taught The Great Gatsby?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Dr. Seuss a liar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do all parts of the aloe vera plant taste good?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the United Nations Framework Convention on Climate Change be held at the Javits Center?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Route 66 generally unknown to Americans?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is November a bad time for a photographer to take pictures of a plum tree in bloom?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Mozambique Drill an easy shot for United States Army Ranger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Christopher Walken close to achieving EGOT status?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Linus Torvalds make money off of DirectX?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Recep Tayyip Erdoğan be unfamiliar with börek?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it possible for biologist Rachel Carson to have flown to the moon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Hundred Years' War a misnomer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Amtrak's Acela Express break the sound barrier?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are any mollusks on Chinese New Year calendar?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are right wing Amreicans opposed to marxism?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Elon Musk be more likely to know about astrology than physics?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Rick and Morty considered an anime?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a Starbucks passion tea have ginger in it?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Darth Vader monogamous?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In the world of Harry Potter, would a snake and skull tattoo be good luck?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the largest crustacean stretch out completely on a king-sized mattress?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was animal in You're a Good Sport, Charlie Brown, hypothetically a hound?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could someone with fine motor control issues benefit from an altered keyboard layout?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are twins always born during the same year?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is jalapeno heat outclassed by Bhut jolokia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Snoop Dogg an adult when Tickle Me Elmo was popular?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Harry Potter and the Philosopher's Stone popular during the great depression?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Wehrmacht affect the outcome of the War to End All Wars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are emus related to elks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can children be soldiers in the US Army?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Drew Carey important to the history of wrestling?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the language used in Saint Vincent and the Grenadines rooted in English?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were items released from Pandora's box at least two of the names of Four Horsemen?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a doctorate required to teach at a SUNY School?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do spider wasps have eight legs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Saddam Hussein witness the inauguration of Donald Trump?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an Olympic athlete be tired out after running a mile?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does walking across Amazonas put a person's life at risk?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Christianity better for global warming than Satanism?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there winged statuettes in the home of the creator of Law & Order?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would lumberjacks get full after eating three dosa?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Christopher Nolan's movies finance Cyprus's entire GDP?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Michael Jordan become a professional cook in America? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Bing (search engine) searches earn the searcher more than competitors do?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there a jukebox musical about a sweet transvestite from Transexual, Transylvania?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has a neanderthal ever served on the Supreme Court of the United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people watching Coen brothers films in Guinea Bissau need subtitles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone in CHE101 require a Maya Angelou book?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is silicon important in California?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Leafhoppers compete with Log Cabin syrup producers for resources?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a hypothetical Yeti be towered over by Andre the Giant?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did J. Edgar Hoover take his calls in Langley, Virginia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Rumi spend his time in a state of euphoria?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an adult human skull hypothetically pass through the birth canal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Native American tribes teach Spaniards how to cultivate maize?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is nickel a better payout than mercury if given a dollar per atomic number?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it normally unnecessary to wear a coat in Hollywood in July?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would bald eagle deliver an urgent message before B-52?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there multiple Disney Zorro?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Dorothea Wendling from same place Porsche originated?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do mountain goats inhabit the summit of Mount Sharp?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Ada Lovelace die tragically young for her era?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did anyone in the 1912 election take a majority of the popular vote?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will more people go in and out of Taco Bell than a Roy Rogers each year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do gorillas fight with panda bears?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the Taco Bell kitchen contain cinnamon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an ostrich fit into the nest of a swallow?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an average American Public University be welcoming to Ku Klux Klan members?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: While on a liquid diet, are there some types of soup you cannot eat?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can United States Secretary of State do crimes in U.K. without being arrested?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Mozart accused of stealing from Richard Wagner?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Anthony Quinn more prolific at making children than J.D. Salinger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a single honey bee sting multiple humans?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the original Metroid groundbreaking for its polygons?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a snakebite hypothetically be a threat to T-1000?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Elmo an original muppet character on Sesame Street?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Nikola Tesla's home country involved in the American Civil War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Aerosmith legally drive in the carpool lane?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Kane challenge Joe Biden in this year's primaries?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Dean Cain have less days to birthday than Will Ferrell every 4th of July?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Apollo and Baldur share similar interests?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are pancakes typically prepared in a pot?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Elizabeth II the Queen during the Persian Gulf War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jay-Z ever collaborate with Louis Armstrong?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was disc jockey Jay Thomas enemies with Clayton Moore?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Ukrainian Greek Catholic Church recognize Alexander Nevsky as a saint?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Bengal cat be afraid of catching a fish?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can your psychologist say hello to you while you are out at the supermarket?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Justin Timberlake ever written a song about Britney Spears?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a single bitcoin ever cover cost of a Volkswagen Jetta?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a bumblebee have to worry about spider veins?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a cow produce Harvey Milk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a cell fit inside of a shoebox?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Amtrak run from NYC directly to the Moai location?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the use of the word Gypsy by non-Romani people considered okay?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were the Ten commandments the part of the bible that Jewish people do not believe in?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could someone listen to the entire U2 debut studio album during an episode of Peppa Pig?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an aerodynamic cactus benefit from more frequently closed stomata?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you order an Alfa Romeo at Starbucks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Durian fruits an olfactory delight?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is polyamory allowed in the Catholic Church?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is calling ABBA the Swedish Beatles a preposterous claim?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was proofreading Edgar Allan Poe works lucrative?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could largest asteroid crush a whole city?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would early Eastern Canadian Natives language have use of the letter B?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are potatoes native to the European continent?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Nicole Kidman despise Roman Josi?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could someone in Tokyo take a taxi to the The Metropolitan Museum of Art?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you chew argon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Jehovah's witness approve of Alice's Adventures in Wonderland?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Solomon make up bigger percentage of Islamic prophets than Kings of Judah?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Jamie Brewer have attended the United States Naval Academy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Isaac's father almost commit similar crime as Marvin Gay Sr.?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you buy furniture and meatballs in the same store?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is hanging a viable execution method on a ship at sea?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do restaurants associate meatballs with the wrong country of origin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did James Watson's partner in studying the double helix outlive him? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Gordon Ramsey use uranium as a seasoning?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Newspeak considered very straightforward?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Samsung accountable to shareholders?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are fresh garlic cloves as easy to eat as roasted garlic cloves?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Emma Stone pursue a higher education?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could amoebas have played a part in the Black Death?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jackson 5 members exceed number in The Osmonds?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a rabbi save the soul of a Christian?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do some people soak in olive oil and water?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were paparazzi directly responsible for the death of Amy Winehouse?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a model be appropriate to star in a LA Femme Nikita remake?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Eve involved in an incestuous relationship?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Mark Twain a struggling inventor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Christopher Columbus break the fifth commandment in Christianity?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would ramen be bad for someone with heart failure?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Have the Israelis played the Hammerstein Ballroom?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone on antidepressants need to be cautious of some citrus fruits?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did mercenaries fight for England in the Glorious Revolution?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Tame Impala's studio band play a proper game of Hot Potato?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a jellyfish safe from atherosclerosis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a duck ever need a Caesarean section?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is an ammonia fighting cleaner good for pet owners?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a vegan prefer a natural bongo drum over a synthetic one?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Hanuman have some of the same duties as Athena?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a goat be used for one of the ingredients in French toast?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a prime number be represented by the number of days in a week?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Christopher Columbus condone multiple deadly sins?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Larry King's ex-wives form a water polo team?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Hillary Clinton's deputy chief of staff in 2009 baptised?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did J. D. Salinger ever ask his father for a quinceañera?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Dolce & Gabbana suit wearer be shunned by their Amish cousins?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Cuba Libre consumption help with insomnia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the high school class of 2010 have lived through the Presidency of Richard Nixon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did polio medicine save the life of polio vaccine creator?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the kayak a traditional boat in New Zealand?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a platypus immune from cholera?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Do It Yourself channels online always show realistic projects?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Dale Jr.'s father crash his car due to a stroke?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it foolish to stand on giraffe's head to see over Eiffel Tower?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is The Invisible Man more prevalent in films than Picnic at Hanging Rock?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is CAS number 8009-03-8 harmful for a rash?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Ford F-350 tow entire Yale University student body?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Communion be denied to Wednesday name origin followers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a greyhound walk on two legs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could ancient Tony Bennett have a baby in 2020?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a bee hummingbird balance a scale with a single pea on it?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a student at the University of Houston see a caracal on campus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does being good at guitar hero make you a good guitarist?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would moon cakes be easy to find in Chinatown, Manhattan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Black Lives Matter connected with capsaicin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Rockette look odd with a moustache? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Reza Shah be related to Queen Elizabeth I?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an environmentalist advocate for preventing domestic canine reproduction?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the phone Alexander Graham Bell use have call waiting?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would only warm weather attire be a good idea on Mercury?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the tongue part of a creature's head?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Ivan the Terrible use the Byzantine calendar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Brad Peyton need to know about seismology?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Disney get most of Rudyard Kipling's The Jungle Book profits?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Malcolm X avoid eating ham?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it hard for Rahul Dravid to order food at a restaurant in Aurangabad?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Eddie Hall hypothetically deadlift the world's largest cheeseburger?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you write a whole Haiku in a single tweet?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Elon Musk's hairline changed?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did a Mediterranean Sea creature kill Steve Irwin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Mayors safe from harm from the federal government?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does menthol make cigarettes less addictive?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do storks need golden toads to survive?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was The Canterbury Tales written before One Thousand and One Nights?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Demi Lovato's ancestors help turn maize into popcorn?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Julius Caesar read books on Pharmacology?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does conservatism repulse Blaire White?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Bill Gates the wealthiest of the Baby Boomers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was 1941 Operation Barbarossa related to The Crusades?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are cucumbers often found in desert?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a wheelbarrow full of starch kill hyperglycemics?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a student from Smithtown's Cleary School understand the speech of a French person?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: When en route from China to France, must pilots know their altitude in the imperial foot?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Louvre's pyramid known for being unbreakable? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do the Ubuntu people speak Ubuntu?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Jackson Pollock trained by Leonardo da Vinci?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has mummification in the Andes been prevented by rainfall?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Francois Mitterrand ever meet Barak Obama while they both held the position of President?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the art from Family Guy look a lot like the art in American Dad?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is eating a Dicopomorpha echmepterygis size Uranium pellet fatal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Sophist's have hypothetically made good lawyers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the British car, the Mini, the first car manufactured?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: As of 2020 have more women succeeded John Key than preceded him?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would East India Company prefer China's modern trade?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can eating grapefruit kill besides allergies or choking?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there enough Jonny Cash records in the world to give one to each French citizen?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Tange Sazen hypothetically an ideal choice for a secretary job?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people remember Lucille Ball's winemaking as successful?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a binge watch of entire Young and the Restless take longer than a leap year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Snoopy look like Chance from Homeward Bound?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Maruti Suzuki Baleno an efficient car for Linus Torvald's family?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Larry King sign the Magna Carta?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will a 2 Euro coin float across the Red Sea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a giant squid fit aboard the deck of the titanic?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a 75 degree Fahrenheit day be unusual on the Antarctic Peninsula? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can I hold Bing in a basket?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Menthol associated with Thanksgiving?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the foot part of the metric system?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If one of your feet is in a leg cast, should the other be in a sandal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are you more likely to find bipolar disorder in a crowd than diabetes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Adobe Suite have video game engine coding?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did any citizen of San Antonio vote for Boris Johnson?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would dual-energy X-ray absorptiometry be useful if performed on a crab?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Charlemagne have a bar mitzvah?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Thomas Greenhill's parents violate the concept of monogamy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Mona Lisa in the same museum as the Venus de Milo?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a Kia Rio fit inside the Oval Office?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is video surveillance of a room possible without an obvious camera or new item?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jeremy Irons master sweep picking as a child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Hulk's alter ego explain atomic events?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were deaths from Apollo 13 mission eclipsed by other space missions?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the Roman god Vulcan have a Greek equivalent?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do human sacrums have more fused vertebrae than an Alaskan Malamute?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you watch a new Seinfeld episode every day for a year?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a human heart last from NYC to Raleigh NC by Toyota Hiux?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has a tumulus been discovered on Mars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you have to put on glasses to read a QR code?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could George Washington's own speeches have been recorded live to a compact disc?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Snoopy transmit rabies?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you see live harbor seals in Washington DC?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Flat Earthers doubt the existence of Earth's magnetic field?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If someone is a vegan, would they eat honey?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could an infant solve a sudoku puzzle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Matrix a standalone movie?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the E.T. the Extra-Terrestrial Atari Landfill story an urban legend?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you buy chlorine at a dollar store?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the BBC World Service hosted in Europe?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Europa linked to Viennese waltzes?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Saddam Hussein hypothetically choose Saladin as ally over Idris I?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does table tennis use prime numbers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an Asian black bear use chopsticks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Black fly upstaged by another insect in Jeff Goldblum's 1986 film?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the chef at Carmine's restaurant panic if there was no basil?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jesus go to school to study railroad engineering?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a rabbi worship martyrs Ranavalona I killed?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are psychiatric patients welcome to join the United States Air Force?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an art dealer prize a print of a Van Goh? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Linnaeus edit Darwin's draft of Origin of Species?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a vegetarian be able to eat something at Chick-fil-A?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will every resident of Los Angeles County, California go to Jehovah Witnesses's heaven?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Hapshetsut be considered a monarch?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does 2015 have more unlucky Friday's than usual?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Michael Vick on People for the Ethical Treatment of Animals's hypothetical blacklist?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Olympia Washington share name with Hephaestus's workshop location?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the Red Sea have biblical significance? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is winter associated with hot temperatures?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most middle class families have butlers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you were on a diet, would you have to skip lunch at McDonald's?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a sea otter eat spiders?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Dustin Hoffman one of the B'nei Yisrael?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Pearl Harbor attack occur during autumn?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a lapidary work with items that are studied by geologists?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Hamlet's author use email?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can an emu chase a bogan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Maroon 5 have hypothetically held a concert at Roman Colosseum?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Paulo Coelho's wife make a living through speech?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a firewall protect against a short circuit?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people associate greyhounds with the movie 'Homeward Bound'?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a snake have reasons to fear a honey badger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Harry Truman's presidency unaffected by the twenty-third Amendment to the US Constitution?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were gladiators associated with the Coloseum?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the average bulk carrier ideal for transporting bromine at room temperature?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do more anchovy live in colder temperature waters than warmer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Eastern Orthodox Church and the Byzantine Empire ever use the same calendar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do black swan cygnets typically know both of their genetic parents?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the President of Mexico vote in New Mexico primaries?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the number 666 appear in a church?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the land in close proximity to beaver dams suffer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Koalas prefer Eucalyptus over meat?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Hammurabi's Code violate Christians Golden Rule?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Benjamin Franklin a prime candidate to have his statues removed by Black Lives Matter movement?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a blind person tell time by Big Ben?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could someone mistake the smell of your brussels sprouts for a fart?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is an ocelot a good present for a kindergartener?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is The Joy of Painting TV show still producing new episodes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is material from an aloe plant sometimes enclosed in petroleum-derived products?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Glen Beck and Stephen Colbert be likely to tour together?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Elementary School students typically need graphing calculators?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was P. G. Wodehouse's favorite book The Hunger Games?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do solo pianists require a conductor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you're pregnant, might you be recommended ginger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does The Doctor keep his ship in his childhood home?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can food be cooked in the cosmic microwave background?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Final Fantasy VI closer to beginning than end of its franchise?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do flying fish have good eyesight?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Edward II crucial to England's victory at Battle of Falkirk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Pedubastis I know Japanese people?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Curiosity take samples of rocks from Lacus Temporis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Donald Trump the target of Islamophobia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can I ski in Steamboat Springs, Colorado in August?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Muslim world hostile to Israel?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Chinese successor to Chevrolet Cruze name a town far from Milan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is most coffee produced South of the Equator?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could someone have arrived at Wrestlemania X in a Toyota Prius?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Northern fur seal make good pet for six year old?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the swastika have positive uses?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Krishna similar to Holy Spirit?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are twinkies considered artisan made products?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Viper Room concert hypothetically be held at National Diet building?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does ancient Olympics crown fail to hide tonsure?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you go to New York Public Library and the Six Flags Great Escape in the same day?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a person need to be a parent to become a grandparent?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are banana trees used by judges for maintaining order?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a duke hypothetically be subservient to a Tsar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Charlie Bucket be a hotel manager?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Millard Fillmore help to establish the University of Pittsburgh?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a Porsche 992 Turbo S defeat Usain Bolt in a 100 meter sprint?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Dave Chappelle pray over a Quran?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Sony definitively win the video game war against Sega?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Donatello use a smartphone?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the cuisine of Hawaii suitable for a vegan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do giraffes require special facilities at zoos?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Clark Gable appear in any movies scored by John Williams?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Edward Snowden in hiding from the United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can DRL Racer X drone get across Brooklyn Bridge in 18 seconds?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Vice President of the United States kill with impunity?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a spider wasp be more effective than a bullet ant to stop a criminal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could all of the 2008 Summer Olympics women find a hookup athlete partner?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Carmen Electra own a junk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Coen brothers ever collaborate with the Brothers Grimm?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Operation Barbarossa or Barbarossa's last expedition succeed?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Intel products be purchased at McDonald's?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Dungeons and Dragons a game well suited for solo play?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Mother Theresa a follower of atheism?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has numerology helped shape hotel layouts?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Hypothetically, will an African elephant be crushed by Hulk on its back?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the surface of Europa fry an egg?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the title of Shirley Bassey's 1971 diamond song a true statement?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Taylor Swift refer to Snoopy as oppa?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a teacher still have their job if they called a black student an ape?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: When the shuttle Columbia 11 landed, was it the season for Christmas carols?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Jolly Green Giant's largest monument look impressive next to Pyrenees?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Shiva's divine dance an ancient physical fitness pose?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Rand Paul guilty of catch-phrase used to attack John Kerry in 2004?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In a hypothetical race between a Swallow and an American Woodcock, would the Swallow win?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Poseidon similar to the god Vulcan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Alistair Darling in favor of Scottish independence?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are moose used for work near the kingdom of Arendelle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Oculudentavis more dangerous than Allosaurus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Polar Bears roam around in Ancient Greece?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does it seem like the Gorillaz is composed of more members than they have?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can someone sell their time through the Toronto Star?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are all United States Aldi locations owned by the same company?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does butter industry survive cow extinction?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Durian be dangerous if it fell on your head?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has the Subway restaurant franchise had any connections with child abusers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the lead singer of Led Zepplin ever perform with Ernest Chataway?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a northern fur seal needing emergency surgery in July likely a safe anesthesia candidate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are ground bell peppers the main ingredient of black pepper?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Mixed martial arts totally original from Roman Colosseum games?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Kim Kardashian a guru?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Scooby Doo fit in a kangaroo pouch?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Easy Rider make a profit at the theater when it was released?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Carrie Poppy be likely to trust a psychic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do calico cat patterns cover every drain fly color variety?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are looks the easiest way to tell rosemary from lavender? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a nymph tick pass through a standard hole punch?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can lettuce result in spontaneous abortion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Rahul Dravid ever kick a field goal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are those incapable of reproduction incapable of parenthood?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were the Spice Girls inspired by Little Mix?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the Prime Minister of the United Kingdom have poor job security?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Krishna skilled at using the bow?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could two newborn American Black Bear cubs fit on a king size bed?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there any official American knights?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Adam Sandler get a reference to Cole Spouse and a scuba man doll?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Pict be confused by Old English?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Lionel Richie believe in holistic medicine?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Swiss Guard defeat the Marines?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a clouded leopard encounter an awake pangolin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Al Unser Jr. win the Space Race?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Queen Elizabeth be buried in the Pantheon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Yellow Pages the fastest way to find a phone number?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Richard Wagner compose the theme songs for two television series?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone typically confuse a sweet potato with a pineapple?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a krabby patty similar to a cheeseburger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If you add water to rice pudding is it horchata?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Disney's seven dwarves the original ones?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you cure hepatitis with a tonsillectomy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Fibonacci number sequence longer than every number discovered in Pi?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Thiago Moises May 13 2020 submission move hypothetically hurt Achilles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In Doctor Who, did the war doctor get more screen time than his successor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can petroleum jelly be used as fuel in a car?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an eleventh-grader be eligible for Medicare?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does horseradish have a fetlock?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a baby gray whale fit in a tractor-trailer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are vinegar pickled cucumbers rich in lactobacillus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Jerry Seinfeld hang out at the Budweiser Party Deck?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Dodo hypothetically tower over Ma Petite?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are the Vietnamese people a great untapped resource for NBA players?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the AK-47 used in the Seven Years' War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can people die from brake failure?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an anchovy born in 2020 survive 25th US census?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you need a farmer to make a circuit board?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Osama bin Laden put a wafer on his tongue every Sunday?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Paleography hypothetically helps to understand Cthulhu?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are implants from an ORIF surgery affected by the magnetic field of the Earth?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Rupert Murdoch's alma mater have more history than the USA?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Disney have an ice princess?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can paratroopers be used in a vacuum?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a watchmaker likely to be able to fix an Apple Watch?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Christmas celebrated during winter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Hodor hypothetically be a good math mathematician?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a Coca plant farm likely to be found in Yakutsk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a hippie hypothetically be bummed out by Augustus's Pax Romana?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can every digit in Pi be memorized?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Neville Longbottom have more courage as a child than as an adult?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has spinach been a source of power in a comic movie?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are quadrupeds represented on Chinese calendar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: For Hostas to look their best, do they need lots of chlorophyll?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Kit & Kaboodle hypothetically help someone past the Underworld gates?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Frigatebird in Ontario be a strange sight?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are rainbows devoid of color made by mixing yin and yang colors?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is San Diego County the home of a Shamu?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Eric Clapton's children play a regulation game of basketball among themselves?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could JPMorgan Chase give every American $10?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Maroon 5 go on tour with Nirvana?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Persephone be a good consultant to a landscape architect?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a Liebherr LTM 11200-9.1 hypothetically lift Mount Emei?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is US route 1 dominated by historically red states?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can 1980 United States presidential election result be considered a photo finish?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Bill Gates help to develop the PlayStation 4?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Happy Gilmore Productions CEO own a Torah?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Nintendo's link ever see an astronomer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do the Egyptian pyramids look the same from outside as they did when new?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are you likely to find a crucifix in Karachi?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Noah concerned with buoyancy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a cory catfish likely to eat another living fish?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are two cans of Campbell's Soup a day good for hypertension?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you buy bananas for tostones?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are hippos dangerous to humans?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Bob Marley's children hypothetically win tug of war against Kublai Khan's children?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is All Purpose Flour safe for someone who has celiac disease?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is H's most common two letter pair partner a freebie in Wheel of Fortune bonus round?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Dante Alighieri hypothetically place Rupert Murdoch in 8th Circle of Hell?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Eddie Murphy's children hypothetically fill a basketball court by themselves?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Pig Latin related to real Latin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a chipmunk fit 100 chocolate chips in his mouth?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Bugs Bunny harm an olive tree in the real world?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Futurama surpass the number of episodes of The Simpsons by the end of 2020?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are any of J.K. Rowling's books in the genre of And Then There Were None?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does James Watson believe that Africans are inferior to Europeans?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can amoebas get cancer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: In Hey Arnold, did any characters stay on a porch all the time?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a snow leopard eat twice its own body weight?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jack Dempsey fight the current WBC heavyweight champion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do pediatricians perform abortions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an astrologer focus on the densest terrestrial planet for a Friday horoscope?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Elizabeth II frequently visit Queen Victoria?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can sunlight travel to the deepest part of the Black Sea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you find glutamic acid in a severed finger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Amy Winehouse familiar with Brexit?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Linus Torvalds' wife unable to physically defend herself?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Beethoven enjoy listening to EDM?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Rurouni Kenshin from same country as lead character in Nobunaga's Ambition?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you purchase General Motors products at a movie theater?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were there eight humans on Noah's Ark?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Saudi Aramco started due to an assassination?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Kylee Jenner ask for no cream in her coffee?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Nike shoebox be too small to fit a swan in?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Alan Turing suffer the same fate as Abraham Lincoln?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Saturn's famous rings solid?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Toyota stadium house people suffering homelessness in Michigan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Superbowl Football Game be crowded on the Gettysburg Battlefield?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Antarctica a good location for Groundhog Day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Southwest Airlines use bulk carriers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Anakin Skywalker from Star Wars associated with the color black?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is eggplant deadly to most atopic individuals? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Presidency of Bill Clinton conclude with his impeachment?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are goldfish more difficult to care for than isopods?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Johann Sebastian Bach ever win a Grammy Award?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a veteran of the Phillippine-American War come home craving SPAM?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a physician be unlikely to recommend Reiki?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do the James Bond and Doctor Who series have a similarity in format?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a compact disc melt in magma?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were Depeche Mode heavily influenced by blues music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a Reconstruction era coin buy DJI Mavic Pro Drone?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are amoebas safe from breast cancer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Disney's Alice in Wonderland involve the celebration of a holiday?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were French people involved in the American Civil War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can native wolverines be found in Miami?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Aretha Franklin ever collaborated with a suicidal person?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you listen to the entire Itunes song catalog in one year?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a person suffering from Thalassophobia enjoy oceanography?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Goofy hypothetically enjoy Nylabone?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Alfred Nobel write a banned book?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a week be enough time to watch every episode of Ugly Betty?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did either Kublai Khan or his grandfather practice monogamy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Julia Roberts lose the prolific acting contest in her family?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are eagles and young bears both used as labels for skills-training youth groups?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Should you wrap a gift for a mother of a stillborn in stork wrapping paper?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Julia Roberts practice blast beats as a child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does highest US Court have enough seats for every Prime Minister of the United Kingdom since 1952?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Mike Tyson do something very different than McGruff's slogan to Evander Holyfield in 1997?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do sun bears stay active during winter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did goddess Friday is named after despise felines?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Sugar Ray Robinson win a fight against Canelo Alvarez?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Al Capone carry a smartphone?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a honey badger fit inside an oven?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Squidward Tentacles and Alan Greenspan have different musical passions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is there historic graffiti on Alcatraz?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Leonardo da Vinci lack contemporary peers in his home city?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are seasons of Survivor surpassed by number of Ancient Greek letters?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can an art dealer buy Boeing 737-800 with a Da Vinci painting?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Al-Farabi ever meet Mohammed?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the endowment of Johns Hopkins University pay off the MBTA debt?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were there under 150,000 American troops in Vietnam in 1965?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Eiffel Tower be completely submerged at the Arctic Ocean's deepest point?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Monty Python write the Who's on First sketch?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Darth Vader hypothetically catch the Coronavirus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Emmanuel Macron celebrate Cinco de Mayo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Naruto escape the Temple of Doom?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is cactus fruit an important menu item for a restaurant based on Cuauhtémoc?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Aretha Franklin vote for a president when her second child was born?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Donald Trump come up with the idea for the New York Harbor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the history of art be learned by an amoeba?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would eliminating competition in the Japanese bulk carrier market be profitable for a steel company?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Great Wall of China connect the Dodgers to the White Sox?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In American society, will a bachelor's degree often include a leap year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a New Yorker get their eyes checked by Rand Paul legally?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it safe to share silverware with an HIV positive person?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Justin Timberlake ride Shipwreck Falls at Six Flags?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is metal a type of folk music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Sirius part of a constellation of an animal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can I find my home with latitude and longitude?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Canon Inc. a Kabushiki gaisha?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Federal Reserve a quick walk from Space Needle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does chlorine inhibit photosynthesis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could pickled cucumbers from 1,000 years ago be good still?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was milliner in Alice in Wonderland (1951 film) likely in need of succimer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Saturn named after king of gods in Greek mythology?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Santa Claus work during summer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are peaches best eaten when firm?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Lil Wayne similar real name rapper has over quadruple Wayne's Grammy awards?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the US Secretary of State similar to an administrative secretary of an office?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is viscosity unimportant in making jello shots?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can an African Elephant get pregnant twice in a year?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people take laxatives because they enjoy diarrhea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Eminem perform well at the International Mathematical Olympiad?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Stephen King fans be likely to own an image of a clown?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the average Hawaiian male experience more days on Earth compared to a wild cane toad?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the crew of Apollo 15 take pictures of Mount Sharp?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does a Disney princess on Broadway have red hair?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you find Bob Marley's face in most smoke shops?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Firefighters be included in a September 11th memorial?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did George W. Bush grow up speaking Cantonese?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are all types of pottery safe to cook in?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a cat ride Panzer VIII Maus tank missile from Barcelona to Madrid?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Jesus know anyone who spoke Estonian?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a cauliflower farmer prosper at a latitude of 75° N?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the yearly precipitation on Snowdon submerge an upright bowling pin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Snow White dwarves best The Hobbit dwarves in battle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are flag of Gabon colors found in rainbow?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Coud every wife of Stone Cold Steve Austin fit in Audi TT?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would John Muir not likely have a vitamin D deficiency?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Jehovah's Witnesses celebrate day before New Year's Day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is most store bought rice pudding made with brown rice?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can someone in Uberlandia work for Mitsubishi?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Tom Cruise ever insult L. Ron Hubbard?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is accountant a difficult profession for a person suffering from Dyscalculia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were plants crucial for The King of Rock'n Roll's snack with bananas?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there Pink music videos that are triggering for eating disorder patients?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Robert Downey Jr's Marvel Cinematic Universe character survive the Infinity War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will the Stanford Linear Accelerator fit on the Golden Gate Bridge?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were all the materials to make a cannon known during the bronze age?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be difficult for Will Ferrell to win Empire Award for Best Newcomer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do all of the African regions that participated in the Portugese Colonial War share an official language?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the original lead guitarist of Metallica fail after parting from the band?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Shaggy and Redenbacher popcorn founder both raise hand during first name roll call?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is August a winter month for part of the world?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were mollusks an ingredient in the color purple?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Should you ask a neighbor for candy on New Year's Eve?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a pottery kiln inappropriate for use with glass blowing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the country that received the most gold medals during the 1976 Olympics still exist?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Snickers helpful for weight loss?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are tampons a good 24 hour solution for mentruation?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you spend less on your food at Aldi than at Whole Foods?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would ISIS agree with Al-Farabi's religious sect?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would downloading Mario 64 on an emulator be legal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do inanimate objects come alive in Beauty and the Beast?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is sound barrier too much for Audi R8 V-10 Plus to break?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Robert Wadlow hypothetically see Frankenstein's monster's bald spot from above?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Royal Air Force fight in the Boxer Rebellion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Jurassic era a tourist destination?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could boolean algebra be described as binary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Dominican Order hypothetically defeat Blessed Gerard's order?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Donatello crucifix identified in 2020 life size?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could you drive from New England to a Sainsbury's?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the leader of Heaven's Gate consider himself a prophet?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Klingons appear in the movie The Last Jedi?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the New York Public Library sell Alpo products?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there Americans still enlisted in the Confederate States Army?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Ibn Saud tolerate salsa music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Fakir be surprised if they saw a comma in their religious book?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do manta rays live in water above the safe temperature for cold food storage?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Super Mario protagonist hypothetically not need continuing education classes in Illinois?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a llama birth twice during War in Vietnam (1945-46)?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you're reducing salt intake, are olives a healthy snack?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the Dalai Lama fit in a car?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Paramount leader produce Titanic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would 2019 Natalie Portman avoid a Snickers bar due to her diet?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone with leukophobia enjoy looking at the Flag of the United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Democratic Party's nominee for President of the U.S. in 1908 watch TV?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will 2020 elephant pregnancy last past next year with 4 solar eclipses?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a body builder prefer an elk burger over a beef burger?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would 7 zucchini's satisfy potassium USDA daily recommendation?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Elijah part of a Jewish holiday?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Josh Blue participate in Paralympics Games? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is slitting your wrists an unreliable suicide method?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Alexander Hamilton have known about koalas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be impossible to get to Burning Man on the Mayflower?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would drinking a glass of lemonade provide Vitamin C?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Ringo Starr been in a relatively large number of bands?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will a rock float in the atmosphere of Earth?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can someone with celiac disease have potato vodka?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Kane (wrestler) banned from WCW headquarters city?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a responsible bartender make a drink for Millie Bobby Brown?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Phobos (moon) name origin similar to Roman god Pavor?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the Space Race use relay batons?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can nitric acid break the Louvre?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Jack Black's height enough to satisfy Coronavirus distancing?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was a Tiny House ceiling out of Osama bin Laden's reach?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an owl monkey enjoy a strawberry?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were there footprints on the moon in 1960?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Mario use mushrooms to run faster?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is electricity necessary to balance an account in Microsoft Excel?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would you find olives at a heladeria?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Harry Houdini appear on Chris Angel Mindfreak?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Tata Hexa can accomodate every Spice Girl?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do members of the Supreme Court of the United States have longer terms than most senators?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Lil Wayne legally operate a vehicle on his own at the beginning of his career?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is narcissism's origin a rare place to get modern words from?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Ahura Mazda have a rivalry with Zeus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Noah's Ark an upgrade for Golden Age of Piracy pirates?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Alexander Graham Bell hypothetically support Nazi eugenics?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does crucifixion violate US eighth amendment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Zelda Williams have any cousins on her father's side?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is dysphoria around one's pelvis treatable without surgery?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Alan Rickman have an improperly functioning organ?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can monkeys use QWERTY keyboards?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Surfing popular when pogs came out?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did François Mitterrand serve under Napoleon Bonapart in the French army?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do onions have a form that resembles the inside of a tree?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Have any murderers outlasted Kane's Royal Rumble record?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Raphael's paintings influenced by the country of Guam?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Supernatural break 2001 CW debuting shows seasons record?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Atlantic readers fill 500 battalions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was King Kong (2005 film) solvent?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do sand cats avoid eating all of the prey of eels?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would students at Marist have to petition to get a rowing team?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a computer be programmed entirely in Boolean algebra?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were all of Heracles's children present for his funeral pyre?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you find Bugs Bunny at Space Mountain?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is ABBA's 1970's genre still relevant today?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do more Cauliflower grow in Arizona than California?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can the Persian Gulf fit in New Jersey?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it possible to get killed walking to the Very Large Telescope?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did compact discs make computer gaming more popular?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Iceland lose to Amazon in a bidding war?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the trees in Auburn, New York be changing colors in September?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Should a finished website have lorem ipsum paragraphs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Godzilla's image likely grounds for a lawsuit in 2050?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Christopher Hitchens be very unlikely to engage in tonsure?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Ariana Grande's signature style combine comfort items and high fashion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Palace of Westminster tell time in the dark?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a software engineer work during a power outage?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could all Tahiti hotels hypothetically accommodate US D-Day troops?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Hamlet more common on IMDB than Comedy of Errors?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Jimmy Vee be eligible to compete in the Paralympic Games?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Harvey Milk ever run for governor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Mentalist filmed in black and white?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Carl Linnaeus share the same final resting place as Michael Jackson?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do carpenters understand geometry?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is an astronomer interested in drosophila?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a snow leopard swim?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a packed Wembley stadium be likely to have a descendant of the Mongols inside?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a railroad engineer needed during NASCAR events?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most high school head coaches make as much as the Head Coach at NCSU?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can dessert be made with vegetables?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are slime lilies in a different scientific family than asparagus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Wednesday have something to do with Thor?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do suburbs encourage the use of cars?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are queen bees unnecessary for growing apples?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do ants outperform apes on language ability?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Richard III know his grandson?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be common to find a penguin in Miami?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Christopher Nolan borrow pants from Danny Devito?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do guitarists need both hands to play?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Alan Greenspan lived through at least a baker's dozen of president's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Curiosity (rover) kill a cat?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Royal Air Force ensign on the moon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Mesopotamia part of what is now China?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Freemasonry been represented on the Moon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Plato have agreed with the beliefs of Jainism?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a blooming onion be possible with a shallot?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Mary, mother of Jesus have hypothetically prayed to Artemis if she was Greek?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Kim Il-sung network on LinkedIn?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a black widow woman have use for peaches?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are red legs a sign of failing health in those with Anorexia Nervosa?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the members of The Police perform lawful arrests?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a kaffir lime be a good ingredient for making a candle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there people who are men who experience menstruation?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Billy Graham support agnosticism?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did breakdancing grow in popularity during WW2?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Lee Sedol understand the complexities of the Sicilian Defence?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did George Washington drive a Lexus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is shoe soup innocuous?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are all Wednesdays in a year enough to read Bible 15 times?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could an escapee swim nonstop from Alcatraz island to Siberia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is starving Hamas agent eating pig bad?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: NATO doesn't recognize double triangle flag countries?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Carmine's kitchen staff be panicked if they had no olive oil?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were veterans of the War in Vietnam (1945–46) given free education by the Soviet Union?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Sweet Potatoes prevent other plants from growing in their place?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did villain that killed Superman murder Robin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would three commas be sufficient for displaying US 2018 GDP?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Al Pacino act in a movie during World War II?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Bombyx mori have a monopoly over silk production?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is overfeeding Lactobacillus unwise for people without dental insurance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Dante have hypothetically placed Nostradamus in 3rd Circle of Hell?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Arnold Schwarzenegger have a hard time picking up a red fox in 1967?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a believer in agnosticism become pope?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Karachi was a part of Alexander the Great's success?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Alice's Adventures in Wonderland inspire Macbeth?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Clouded leopards chase down many Pronghorn antelopes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do skeletons have hair?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: WIll Noah's Ark hypothetically sail through flooded Lincoln Tunnel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a false pope become a saint?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were muskets used in the Pacific War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does cell biology teach about the life cycle of Al Qaeda?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the 1980 presidential election won by a member of the Grand Old Party?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Lionel Richie related to Sheila E?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Felix Potvin have a position on a dodgeball team?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are black and white prison uniforms made to resemble a zebra?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Douglas Adams use email as a child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does The Hague border multiple bodies of water?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were Walkman's used in the Kingdom of Hungary?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was it typical to see Johnny Cash on stage in a rainbow-colored outfit?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is breakdancing safe for people with tendonitis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there options for students who struggle to understand the writing style of Othello?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Metallica band members cutting their hair hurt their sales?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Jackson 5 play a full game of rugby with each other?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a recruit for the United States Marine Corps be turned away for self harm?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Harvey Milk have approved of Obama?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do tourists prefer Tuvalu to Niue?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Immanuel Kant be disgusted by the Black Lives Matter movement?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will bumblebees derail the United States presidential election?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Drew Carey outshined Doug Davidson's tenure?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is popular science used to peer review papers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Mickey Mouse appear in a cartoon with Bugs Bunny in 1930?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Jabberwocky be considered a sonnet?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the sable depicted in Marvel comics anthropomorphic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Katharine Hepburn have ridden the AirTrain JFK?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can rowing competitions take place indoors?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Ludacris perform classical music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Eiffel Tower contribute to a war victory?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Christmas trees typically deciduous?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did pirates who had scurvy need more Vitamin C?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are most mall Santa Claus actors white?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Terry Pratchett write about quantum mechanics?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Snowboarding is a rarity in Hilo?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it okay to lie after taking an oath in a court of law?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is clementine pith highly sought after?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a pescatarian be unable to eat anchovy pizza?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can an elite runner circle the Pyrenees in one day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Edward II of England have been born without Vikings?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you get a fever from consuming meat?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the Boy Who Cried Wolf hypothetically have reason to pray to Pan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does giant panda have colors that differ from yin yang?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Dale Jr hug his dad after their last Daytona 500 together?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Northwest Airlines' longevity surpass Betty White?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you bottle your own milk, would there be cream on top of it?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would costumes with robes and pointy hats be helpful for Macbeth?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is one blast from double-barreled shotgun likely to kill all squid brains?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are there multiple Star Wars TV shows produced by Disney?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Archduke Franz Ferdinand of Austria participate in the Pacific War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the Toyota Stadium sit a tenth of the population of Gotheburg?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a psychic who admits to hot reading be trustworthy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Palm Beach be held in the palm of your hand?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Family Guy take place on the American West Coast?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Johnny Carson win enough Emmy's to fill a carton if Emmy's were eggs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was there fear leading up to the year 2000?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would toast for a vegan have margarine instead of butter?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In star rating systems, is 5 stars considered good?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it possible that June got its name from mythology?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Orange County, California require airplanes to be quiet?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Pikachu like Charles Darwin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an Arvanite Greek understand some of the Albanian Declaration of Independence?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the first European visitor to Guam been friends with Queen Victoria?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can horseradish be eaten in a religious context?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the average American family find Adam Sandler's home to be too small?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does United Airlines have a perfect operation record?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a monkey outlive a human being on average?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were Beauty and the Beast adaptations devoid of Kurt Sutter collaborators?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are any minor league baseball teams named after felines?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there any absolute way to prevent abortion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can black swan's formation type help spell longest word in Dictionary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are the brooms from curling good for using on house floors?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Mount Wycheproof be a breeze for Edmund Hillary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is cycling a high-risk activity for pelvis fractures?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Bulgarian priest eat a four-course meal on Christmas Eve?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be impossible to seat every Chief Justice of the United States on a Boeing 737?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If someone loves buffalo wings do they enjoy capsaicin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Chinese Americans face discrimination at a Federal level in the US?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Centurylink max internet plan upload 1000GB in a fortnight?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Casio's founding year a composite number?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Alfred Hitchcock include internet slang in his films?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Phineas and Ferb enjoy winter?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can giant pandas sell out a Metallica show?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can eating your weight in celery prevent diabetes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do salmon mate in the Caspian Sea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Dr. Seuss live a tragedy free life?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Johann Sebastian Bach influence heavy metal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Methuselah live at least 800 years as long as Sarah?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a Hwasong-15 missile hypothetically reach Voyager 2?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are coopers required in the beverage industry?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Iggy Pop travel with Justin Bieber?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is shrimp prevalent in Ethiopian cuisine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the central processing unit usually have a dedicated fan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would you take a photo of a Saltwater crocodile in Memphis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Gomer Pyle salute a lieutenant?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Mona Lisa based on a real person?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are all the elements plants need for photosynthesis present in atmosphere of Mars?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the US branch of government that has power over the military also have the power to veto?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the human stomach destroy a bee if ingested?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Dioskourides a lapidary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Soylent use Pea for their source of protein? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a compass attuned to Earth's magnetic field be a bad gift for a Christmas elf??\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a wandering albatross fly from Bucharest to New York City without a rest?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Switzerland support the United States in the Spanish–American War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do white blood cells outnumber red blood cells in the human body?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Burger King contributed to a decrease in need for snowshoes?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Oscar Wilde have operated a motor vehicle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you see Stonehenge from a window in Dusseldorf?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Dragon Ball shows and movies fall short of Friday 13th number of projects?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an oil painter avoid reds from scale insects that live on a cactus?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a TMNT coloring book have pizza in it?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Jerry Seinfeld have reason to cheer in 1986?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: In baseball, is a \"Homer\" named after the poet Homer who wrote the Odyssey?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Germaphobia be able to participate in Judo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the judo rank system reach the triple digits?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was The Great Gatsby inspired by the novel 1984?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did any Golden Globe winners attend John Kerry's alma mater?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would JPEG be a good format for saving an image of Da Vinci's Vitruvian Man?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do any video games about the end of civilization have slot machines?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Rosalind Franklin contribute to work that led to Whole Genome Sequencing?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Oprah Winfrey buy dozens of her staff Bugatti luxury cars?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did any country in Portuguese Colonial War share Switzerlands role in WWII?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the name C-SPAN refer to a form of telecommunications that utilizes outer space?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a Cassowary safer pet than a crane?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most people only memorize slightly over half of their ZIP code?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are the knights in the Medieval Times show not authentic knights?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would half muggle wizards fear Lord Voldemort?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has categories of Nobel prizes remained same since Alfred Nobel established them?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it understandable to compare a blood spatter pattern to a Jackson Pollock piece?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does someone from Japan need a passport to go to a Nordic country?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Columbus have discovered Durian trees during his 1492 expedition?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a sesame seed grow in the human body?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Windows or Android smartphones run newer versions of Linux?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is LG Electronics located in a city with an official bird that has a purplish/blue tail?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Teri Hatcher last twice as many episodes on Desperate Housewives as her Superman show?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are swastikas used in the most common religion in India?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there bones in an anchovy pizza?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would you hire someone with dyscalculia to do surveying work?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can all of Snow White's dwarfs play a game of 7 Wonders simultaneously?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Ludacris have Greek heritage?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a lullaby be enough to wake Hellen Keller up?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was King Kong (2005 film) the lead actress's biggest box office role?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are goats found on abyssal plains?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Flying Spaghetti Monster part of an ancient pantheon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does water have viscosity?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Marco Polo travel with Christopher Columbus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Very Large Telescope the most productive telescope in the world?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you have to wear a coat when on Phobos?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do people in middle school usually get breast exams?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you use the T-Mobile tuesdays app if you aren't a T-Mobile customer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will the producer of Easy Rider become an octogenarian in 2021?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Paprika be made without a dehydrator?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the leader of Heaven's Gate save images in JPEG format?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is British Airways the air force of the United Kingdom?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Nicole Kidman ideal choice to play Psylocke based on height and weight?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Isaac Newton buried at the same church as the author of Great Expectations?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Carolina Reaper decrease sales if added to all US salsa?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the Constitution of the Philippines copy text from the British constitution?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Chipotle Cinnamon Pork Chops appropriate for a Seder?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does monster name in West African Folklore that witches send into villages set Scrabble record?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Osama bin Laden likely abstain from alcohol?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is watching Star Wars necessary to know who Darth Vader is?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Fiat Chrysler associated with Japanese cars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Lamarck and Darwin agree about the origin of species diversity?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do bodies movie during hanging?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: While viewing \"Scary Movie\" is the viewer likely to experience an increase in adrenaline?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a goblin shark eat at Crossroads Kitchen?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did original Nintendo have games in same format as Playstation 3?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the tenth Amendment to the Constitution written using Pitman shorthand?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Eric Clapton have similar taste in women to one of the Beatles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the Second Amendment to the United States Constitution written without consideration for black Americans?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: On August 20, 2020, does The Tonight Show Starring Jimmy Fallon air after moonset EST?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone buying crickets be likely to own pets?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would many meals heavy in brussels sprouts benefit someone on Coumadin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are the events of Star Trek: The Next Generation in the history of the world?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the amount of spinach Popeye ate unhealthy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was ship that recovered Apollo 13 named after a World War II battle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Stone Cold Steve Austin apply his finisher to a mule deer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there five different single-digit Fibonacci numbers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a sloth hypothetically watch an entire episode of Scrubs underwater?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Catholic priest commend someone's pride?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the historic Hattori Hanzō admire Naruto?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did US President during Spanish-American War suffer similar demise to Abraham Lincoln?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Naruhito's ancestors the focus of Romance of the Three Kingdoms?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the current Chief Justice of the United States forbidden from buying alcohol?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were the first missionaries required to attend mass on Sundays?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Tokyo Tower be repainted only once during President Trump's first term?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Electronic Arts profit from Metroid sales?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can E6000 cure before a hoverboard finishes the Daytona 500? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will a Holstein cow and the Liberty Bell balance out a giant scale?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Big Ben's bells currently rung on their normal schedule at the Palace of Westminster?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Rime of the Ancient Mariner make a good sonnet?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Temujin hypothetically be jealous of Charlemagne's conquests?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Daniel thrown into the lion's den in the New Testament?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a monarch butterfly rule a kingdom?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Metallica use Soulseek?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a banana get a virus?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Oprah Winfrey have a degree from an Ivy League university?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Kurt Cobain have benefited from Project Semicolon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do any Islamic dominated countries have a Starbucks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Zorro carve his name into items regularly?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Chick Fil A be open on Halloween 2021?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the United States Secretary of State answer the phones for the White House?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an actuary be confused about what prime numbers are?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Iowa be hidden in the English Channel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Louvre in billionaire George Soros's price range?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has the Indian Ocean garbage patch not completed two full rotations of debris since its discovery?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the referee at a soccer match highly visible against the field?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Billy Joel sold out Astana Arena?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Supreme Court of the United States analogous to High Courts of Justice of Spain?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is ID required to get all medications from all pharmacies?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would three newborn kittens fit on a standard Amtrak coach seat?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Hannah Nixon be proud of Richard Nixon following the Watergate scandal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Durian cause someone's stomach to feel unwell?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Noah associated with a dove?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Chuck Norris ride a horse?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a caracal be defeated by Javier Sotomayor in a high jump competition?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was 847 Pope Leo same iteration of his name as Ivan the Terrible?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you find a snow leopard in the Yucatan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were paparazzi involved in the death of a member of the royal family?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the JPEG acronym stand for a joint committee?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would baker's dozen of side by side Mac Trucks jam up Golden Gate Bridge?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Constitution of the United States paper offend PETA?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would somebody leave reiki with bruises?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Seroquel be the first treatment recommended by a doctor to someone with depression?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did producer of Easy Rider ever star in a movie with Dean Cain's Princeton girlfriend?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a markhor give birth three times in a single year?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can musicians become knights?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a camel fit in a dog house?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was latest Republican governor of New Jersey as of 2020 heftiest politician ever?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Great Pyramid of Giza the last wonder of its kind?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a person who knows only English read Kanji?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the history of Europe include the age of dinosaurs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Little Women have been a book read by veterans of the civil war?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Irish mythology inspire Washington Irving?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Mickey Mouse blend in with the American flag?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are all twins the same gender?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Morris County named after a chief justice?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Home Depot sell item in late September zodiac sign symbol?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it unusual to play Happy hardcore music at a funeral?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you buy Reddit at Walmart?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a slime mold safe from cerebral palsy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a student of the class of 2017 have amnesia about 9/11?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Quartz be useful to humans if plants died off and there was no oxygen?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you drive a Rowe 550 to the 2008 Summer Olympics?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a dog respond to bell before Grey seal?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are System of a Down opposed to globalization?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a martyr saint have been excommunicated?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is menthol associated with Christmas?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there some countries where waiting staff need no tip?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the man who played the male lead in Mrs. Doubtfire known for his humour?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Reiki be stored in a bottle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will a Euro sink in water?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did children read Harry Potter and the Philosopher's Stone during the Albanian Civil War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do all crustaceans live in the ocean?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Romeo and Juliet an unusual title to teach high schoolers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you have a serious injury in Bangladesh, would you probably dial a Fibonacci number?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Wolverine and a Lynx be hard to tell apart?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Doctor Strange like the Pittsburgh Steelers logo?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Janet Jackson avoid a dish with ham?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would hypothermia be a concern for a human wearing zoot suit on Triton?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did John Lennon listen to Compact discs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Al Pacino and Margaret Qualley score same amount of Bacon Number points?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a house full of aloe vera hypothetically be ideal for Unsinkable Sam?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Foreign and Commonwealth Office a European political agency?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Kenny G hold the qualifications to be a tax collector?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Charles Manson's body unwanted?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Citizens of Bern Switzerland are descendants of Genghis Khan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was historical Dracula from a town in Bucharest?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is number of different US President's in 1800s a lucky number in Hong Kong?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Earth Day celebrated in summer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did William Shaespeare read the Daily Mirror?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Evander Holyfield compete in an Olympics hosted in the western hemisphere?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do drag kings take testosterone to look masculine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do some religions look forward to armageddon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Rosemary outclassed as plant found in most song titles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you swim to Miami from New York?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the Who concert in international space station be audible?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you watch Naruto and Puzzle Place on the same channel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has the Holy Grail been featured in at least five films?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Columbus obtain his funding from the rulers of the Portugese Empire?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can bottlenose dolphins hypothetically outbreed human women?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the butler Eugene Allen retire the same year a centuries-old war ended?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Doctors of Homeopathy more likely than Doctors of Internal Medicine to recommend Quartz as a treatment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Buzz Aldrin have owned a computer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Amy Winehouse's death have been prevented with Narcan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are more people today related to Genghis Khan than Julius Caesar?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Brian Warner be a good singer for a soul music band?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would The Dark Knight be appropriate for a preschool class?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has every astronaut survived their space journey?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Jason Voorhees hypothetically fail at being a martyr?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the original James Bond actor born near the Washington Monument?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Asian black bear multicolored?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Ivan the Terrible flown to Europe?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Neanderthals use arithmetic?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Magnus Carlsen enjoy KFC?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a Gladiator's weapon crush a diamond?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a viewer of Monday Night Football be able to catch WWE Raw during commercial breaks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Metallica protective over their music?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can an asteroid be linked with virginity?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are Scottish people Albidosi?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did U.S. soldiers listen to Justin Bieber's Believe album during the Battle of Baghdad?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would multiple average rulers be necessary to measure the length of a giant armadillo?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If someone is lactose intolerant, do they have to avoid cream?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Saint Vincent and the Grenadines named by an Italian explorer?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you find Depala's race in World of Warcraft?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can atheism surpass Christianity in American black communities by 2021?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Armenians tend to dislike System of a Down?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Gandalf present at the death of Eomer?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Moon Jae-in's residence exist when the World Trade Center was completed?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Richard III's father have greater longevity than him?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it common to see frost during some college commencements?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Gray Whale fit easily in an above ground pool?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Amtrak operate four wheel vehicles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could chives be mistaken for grass?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would fans of Jonathan Larson be unaware of HIV?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Achilles dominate Legolas in a hypothetical fight?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a copy of The Daily Mirror sustain a campfire?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Topa Inca Yupanqui have encountered the western honey bee?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should someone prone to jealousy be in a polyamorous relationship?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you get Raclette in YMCA headquarters city?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be difficult to host Stanley Cup Finals at Rock in Rio?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do some psychotherapy patients have no mental illness?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a bengal fox likely to see the Superbowl?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Eid al-Fitr holiday inappropriate to watch entire US Office?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Holy Land important to Eastern religions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a Muslim eat a McRib sandwich?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did P. G. Wodehouse like the internet as a child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will twenty pea pods contents cover entire chess board?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would the current president of Ohio University hypothetically wear a jockstrap?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would E.T. the Extra-Terrestrial alien hypothetically love Friendly's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do children's bicycles often have extra wheels?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you buy Casio products at Petco?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were there fifty English kings throughout the Middle Ages?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Atlantic Salmon be within David Duchovny's dietary guidelines?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a 900,000 pound net worth person be an American billionaire if they exchange currency June 2020?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Department of Defense perform a solo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the most recent Democrat President in the US known for his painting practice?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a thesis paper be unusual to assign to kindergartners? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an uninsured person be more likely than an insured person to decline a CT scan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the QWERTY keyboard layout meant to be slow?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do people with swallowing disorders need high viscosity drinks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Capricorn the hypothetical zodiac sign of Satanism?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Casio's first invention be worn around the ankle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are some adherents to Christianity in China historic enemies of Catholic Church?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do people with mood disorders need permanent institutionalization?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Pan a symbol of virtue and virginity in women?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a dandelion suffer from hepatitis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does parsley sink in milk?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Edward Snowden join MENSA?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Barron Trump have lived through the Mexican Revolution?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you brew beer from start to finish in the month of September?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone in Boston not receive the Toronto Star?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Rumi's work serialized in a magazine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are the Great Lakes part of an international border?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a Rabbi celebrate Christmas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do hamsters provide food for any animals?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the Japanese street aesthetic once illuminated by noble gasses?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there radiation where Nikola Tesla once worked?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: At midnight in Times Square on New Years Eve, are you likely to meet people in diapers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the name of a mythical creature also the name of a Small Solar System body?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Oscar Wilde's most famous character ever been in an Eva Green project?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Ivan the Terrible's father and grandfather have nicer nicknames?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do oak trees have leaves during winter?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should you bring your own bags to Aldi?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a curling iron necessary in curling?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do pirates care about vitamin C?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are aggressive bumblebees suicidal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should you be skeptical of a 21 year old claiming to have a doctorate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Steven Spielberg's 1998 film take place in a period after War Horse setting?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Christopher Walken enlist in the United States Marine Corps?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should Peter Griffin be an expert at the craft of brewing?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is number of stars in Milky Way at least ten times earth's population?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there a warthog on Broadway?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does the book Revolutionary Road give a glimpse at life in a suburb?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it hard to get a BLT in Casablanca?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Atlantic cod found in a vegemite sandwich?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Tom Bosley enjoy video games on the PlayStation 4?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the host of The Colbert Report be likely to vote for Trump?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is grief always obvious when it is being experienced?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can children become lieutenants?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would LeBron James hypothetically glance upwards at Yuri Gagarin?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a Bengal cat survive eating only pancakes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Mark Cuban able to visit Northern Mariana Islands without a passport?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone with back pain enjoy picking strawberries?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a white belt defeat Jon Jones in a Brazilian jiu-jitsu match?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a loudspeaker be useful for most Gallaudet students?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If you're running focal fossa, are you using linux?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could common warthog be useful for scrimshaw?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is \"A Tale of Two Cities\" a popular science novel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can numerologists become members of Royal Society?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Bernie Sanders visit the Metropolitan Museum of Art twenty times for under two hundred dollars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are saltwater crocodiles related to alligators?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do women often need new shoes during their pregnancy?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is capturing giant squid in natural habitat impossible with no gear?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is MF Doom a Fantastic Four villain?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Brian Cranston and Saoirse Ronan's combined Emmy Awards a prime number?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are people more likely than normal to get sunburn at Burning Man?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were there greater landslides than 1980 United States presidential election?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Eye surgery on a fly be in vain?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was John Lennon known to be a good friend to Sasha Obama?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Martin Luther believe in Satan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Elijah Cummings cast a vote in the 2020 presidential election?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a person with St. Vitus's Dance likely to win a ballet competition?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it impossible for pigs to use pig latin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Ringo Starr avoid the pot roast at a restaurant?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is 1936 Summer Olympics venue too small for a Superbowl crowd?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are brown rock fish found in the waters surrounding Saint Kitts and Nevis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is growing seedless cucumber good for a gardener with entomophobia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If Martin Luther did one theses a day would he run out in half a year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is waltz less injurious than slam dance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would 1943-S penny be good for making silverware?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be difficult to snowboard on Venus?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Charlemagne's father instrumental in outcome of the Battle of Tours?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do workers at Nissan's headquarters eat with chopsticks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Hermes equivalent to the Roman god Vulcan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: At a presentation about post traumatic stress disorder, would Ariana Grande be a topic of relevance?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Jack Black unlikely to compete with Bear McCreary for an award?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are all cucumbers the same texture?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Rich and Morty be triggered for children of alcoholics?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Simon Cowell vote for the next Supreme Court judge?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Jack Dempsey ever witness Conor McGregor's fights?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Amy Winehouse a fan of Star Wars: Rogue One?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is euphoria associated with drug addiction?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could all of the famous Apollo's hypothetically defeat all of the famous D'Artagnan's?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is sunscreen unhelpful for the condition that killed Bob Marley?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can French Defence initial move defend against four move checkmate?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is week old chlorine water safe to drink?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a dichromat probably easily distinguish chlorine gas from neon gas?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Elizabeth I of England have seen the play Dido, Queen of Carthage ?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you avoid internet trolls on reddit?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are sea turtles enjoying life during quarantine?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Jesus understand the Easter Bunny?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could an elephant easily defeat a male macaque?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Augustus his real name?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the confederate states speak Old English before the Civil War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Robert Wadlow tower over a German Shepherd?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was ethanol beneficial to Jack Kerouac's health?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the most expensive color in the world Blue?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Ryan Crouser throw a bengal fox with ease?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Lord Voldemort have been barred from Hogwarts under his own rules?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was The Jackson 5 bigger family band than The Isley Brothers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do you need lactobacillus to make pickles?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Wall Street Crash of 1929 hurt the stocks of robotics companies?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Moon Jae-in born outside of Khanbaliq?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a person with Anorexia nervosa be more likely to break a bone than a regular person?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did travelers sing sea shanties on the Oregon Trail?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can shooting bald eagle get a person more prison time than Michael Vick?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Gandhi watch the television show Bonanza?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do hornets provide meaningful data for oceanographers?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it comfortable to wear sandals outside Esperanza Base?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a grey seal swim in the same water as the subject of Moby Dick?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a Trek 9000 require an anchor in order to park?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you only see hippopotamus in Africa?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people celebrate Earth Day with a ceremonial tire fire?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Buddy The Elf know anyone who works in publishing?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a hamster experience two leap years?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Rahul Dravid belong to the family Gryllidae?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the 23rd amendment give Puerto Ricans the right to vote for president?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could William Franklyn-Miller win a 2020 Nascar Cup Series race?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Jacques Duèze have been friends with Richard Dawkins?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you hide a pet macaque under your desk?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Justin Bieber take over Mike Pence's position in 2020?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do Youtube viewers get unsolicited audiobook advice often?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are lengths measured in metres in the UK?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did brother of Goofy creator's employer commit an excommunicable offense?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are there mental disorders you can hide?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Paul Bunyan hypothetically be a poor choice for an urban planner?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it normal to find parsley in multiple sections of the grocery store?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be possible to fit a football field in Alcatraz Island?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would kaffir lime be good in a White Russian?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a Goblin shark hypothetically ride a bike if it had limbs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Kurt Cobain's music genre survive after his death?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a spice grinder ueseless for the cheapest cinnamon sticks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a slingshot be improperly classified as artillery?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can soup be eaten with the hands?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do most fans follow Katy Perry for gospel music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Capricorn astrology symbol have all of the parts of a chimera?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can actress Dafne Keen win the Eurovision Song Contest finals in 2020?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Iris (mythology) and Hermes hypothetically struggle at a UPS job?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Cookie Monster's diet Paleo friendly?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is pi in excess of square root of 5?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is breast cancer associated with a ribbon?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it bad to have lactic acid in your body?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Gunpowder plot eliminate Mary, Queen of Scots bloodline?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could the main character of \"Alice's Adventures in Wonderland\" join a Masonic Lodge?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does bull shark bite hurt worse than crocodile bite?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Snow White an example of good consent?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Avengers Comics be out of place in a DC Comics store?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Have rhinoceroses been killed to improve human sex lives?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do members of NFL teams receive infantry training?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Bruce Lee absent from the 1964 University of Washington graduation ceremony?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would an adherent of Zoroastrianism consult the Quran for religious guidance?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Brooke Shields succeed at University of Pennsylvania?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a quarter fit inside of a human kidney?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Bruce Gandy be an odd choice for Messiah (Handel)?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has a baby ever had a moustache?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the Treaty of Versailles settled over blueberry scones?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a customer be happy if their grocery store meat tasted like game?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are the founders of Skype from Asia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Sockington enjoy onions?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you be likely to see storks at a baby shower?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Greek alphabet as common as Sumerian cuneiform?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Secretariat win a Formula One championship?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a cattle farmer be useful to a drum maker?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Star Wars fans say \"beam me up\" often?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If it socially acceptable to wear an icon depicting crucifixion? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can the Swiss Guard fill the Virginia General Assembly chairs?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do placozoa get learning disabilities?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Bart Simpson have owned comics with The Joker?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does 50 Cent get along with Jeffrey Atkins?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will a celibate cleric likely suffer a stoning in Somalia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Riksdag a political entity in Scandinavia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Should spaghetti be slick when cooked?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Issac Newton often associated with a red fruit?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be safe to have a jackfruit thrown at your head?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If he were poor, would Christopher Reeve have lived?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is unanimously elected president's birthday a break for mail carriers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is dyslexia the most common intellectual disability in US?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Jackie Chan have trouble communicating with a deaf person?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would you be more likely to die of hypothermia in New York than Florida?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did John Kerry run in the 2010 United Kingdom general election?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can binary numbers and standard alphabet satisfy criteria for a strong password?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is lunch on the beach a good activity to spot the full circle of a rainbow?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Abdulqawi Yusuf go to the Hague on a typical work day?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Emma Roberts's Nancy Drew be considered a private investigator?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Nancy Pelosi have hypothetically been on same side as Gerald Ford?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an explosion at a gunpowder storage facility result in a supersonic shock wave?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people put creatures from the Black Sea on their pizza?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Bill Nye vote for Franklin Delano Roosevelt?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Canada have a relationship with a monarch?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do guitarist's have fingers that can handle pain better than average?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be difficult for Kami Rita to climb Mount Emei?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Roman numerals fill the normal number of Sudoku box options?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it dark is Basel during the day in Los Angeles?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a broadcast from Spirit make the news in 2020?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are pancakes a bad snack for cats?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Nine Inch Nails inspire Aretha Franklin's sound?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Jon Brower Minnoch suffer from anorexia nervosa?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did H.G. Wells' \"War of the Worlds\" include cosmic rays?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do you need different colored pens for sudoku?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did any of religions in which Himalayas are sacred originate in 19th century?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could white rice go rancid before sesame seeds?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does penicillin cure a learning disability?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can cancer cause excess adrenaline production?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did occupants of Vellore Fort need to defend themselves from Grizzly Bears?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: is the brain located in the torso?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is 500GB USB device enough to save 10 hours of Netflix shows a day?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Jon Brower Minnoch break a chair before Voyager 2 launch mass?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a hedgehog avoid animals without a spinal cord?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the iPhone usher in the scientific revolution?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does handedness determine how you use American Sign Language?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is purchasing food for a Lolcat unnecessary?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Garfield like canid food?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will silicon wedding rings outsell bromine wedding rings?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it normal for people to sing when the YMCA is mentioned?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was United Airlines blameless in worst crash in history?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Liberty Bell still in its original location?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you substitute the pins in a bowling alley lane with Dustin Hoffman's Oscars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Beaver's teeth rival that of a Smilodon?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the rise of agriculture attributed to rivers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is art prioritized in the US education system?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Kurt Cobain's death indirectly caused by Daniel LeFever?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a two-year old win a Scrabble tournament?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Harry Potter book a flight on Asiana Airlines?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Steven Spielberg send emails as a child?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the color green help Theodor Geisel become famous?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Were Greeks essential to crafting Egyptian Lighthouse of Alexandria?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does rock star Keith Richards play a captain of a boat in a movie?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can preventive healthcare reduce STI transmission?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was story of Jesus inspired by Egyptian myth?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Methuselah hypothetically hold a record in the Common Era?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Burundi's communicate with citizens of New Brunswick?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a pacifist be opposed to hunting?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can voice actors for Goofy and Bugs Bunny each get one stripe from American flag?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is SnapCap an example of a retail store?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you see the Statue of Freedom from the Statue of Liberty?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Jason have anything in common with Dr. Disrespect?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are deaf people left out of enjoying music?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are human footprints absent from Mount Sharp?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Lionel Richie ever have dinner with Abraham Lincoln?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is honey associated with queens?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was the Eiffel tower used as a symbol of the French Revolution?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will the torso be safe from blows to the largest and smallest bones in body?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Şerafeddin Sabuncuoğlu have eaten Börek?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was King Kong climbing at a higher altitude than Eiffel Tower visitors?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is dessert eaten before breakfast?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Disney's second film rip off a prophet story?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Mercury help detect coronavirus?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Alec Baldwin have more children than Clint Eastwood?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the word swastika have meaning in sanskrit?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the voice of the Genie from Disney's Aladdin still alive?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Karl Marx influence the communist party of China?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Should a Celiac sufferer avoid spaghetti?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Michael Bloomberg fund the debt of Micronesia for a decade?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are the names of The Powerpuff Girls alliterative? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would someone on a keto diet be able to eat Dosa?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Andy Warhol influence Art Deco style?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would someone in Mumbai refer to Solanum melongena as an eggplant?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the top of Mount Fuji stick out of the Sea of Japan? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a chess board be converted to a Shogi board?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an anxious person benefit from receiving courage from the Wizard of Oz?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Steve Martin someone who would refuse a dish of shrimp pasta?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Cape Town south of the Equator?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would 1996 leap year baby technically be 1 year old in 2000?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Kobe's famous animal product used in a BLT?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Clark Gable marry more women once than Richard Burton?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be unusual to see frost in September in Texas?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Mickey Mouse hypothetically unlikely to make a purchase at Zazzle?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are any animals in Chinese calendar Chordata?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a Halloween cruise in the Gulf of Mexico likely to be safe from storms?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Phileas Fogg's around the world would be difficult to achieve during Pope John Paul I's reign?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Spice Girls compete against ŽRK Kumanovo?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are raw carrots better for maximizing vitamin A intake?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is eleventh grade required to get a driver's licence?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Iggy Pop named after his father?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Cyndi Lauper use milk substitute in her rice pudding?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can olive oil kill rabies?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are chinchillas cold-blooded?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do the Eskimos sunbathe frequently?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can chemicals in onion help create a thermonuclear bomb?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Communist Party of the Soviet Union hypothetically support Trickle Down Economics?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a student in eleventh grade be unable to run for president of the United States?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there a Marvel villain with the same name as a kind of citrus fruit?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is 2018 Ashland, Oregon population inadequate to be a hypothetical military division?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Disney associated with Los Angeles County?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Christopher Columbus sail representing a different country than his original home?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are ropes required to operate a frigate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Library of Alexandria need less shelf space than Library of Congress?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are paratroopers good at mountain rescue?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Quiet from Metal Gear be a poor hypothetical choice for lecturer at Haub?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are more watermelons grown in Brazil than Antarctica?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could SNL be why Jenny McCarthy does not get along with her cousin?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would it be hard to get toilet paper if there were no loggers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a silverfish reach the top of the Empire State Building?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could someone theoretically use an armadillo as a shield?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Siri know geometry?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could someone in the Canary Islands fish for largemouth bass?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will a sloth explode if it's not upside down?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it possible to binge entire EastEnders series without water?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Sea World hazardous to leopard seal's health?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did a Polish poet write sonnets about Islamic religion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Coast to Coast AM have more longevity than the Rush Limbaugh show?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is a pound sterling valuable?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is the Forbidden City host to a wooden rollercoaster?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Felicity Huffman vote for Mike DeWine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did people in Korea under Japanese Rule watch a lot of Iron Chef?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a thousand dollars per Days of Our Lives episodes preferred to other soaps?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do black-tailed jackrabbits fear the European wildcat?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are people banned from entering the Forbidden City?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Thanksgiving sometimes considered a day of mourning?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was England directly involved in the Arab-Israeli conflict?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you drown in a Swan Lake performance?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can furniture be made of hair?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Tony Bennett's middle name shared by a former UFC champion?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did land owners elect their rulers in the Kingdom of Hungary?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: If Goofy were a pet, would he need heartworm prevention?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was a USB flash drive used in The Godfather?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are blue lips normal?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are the headquarters of All Nippon Airways near a beach?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does the Eighth Amendment to the United States Constitution protect freedom of speech?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a triples tandem bike support Apollo 15 crew?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Stone Cold Steve Austin wrestle in three different centuries?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Parc des Princes fully operational during June of 2020?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Walt Disney able to email his illustrations to people living far away?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is latitude required to determine the coordinates of an area?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are a dozen pickles good for easing hypertension?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Franz Ferdinand have survived with armadillo armor?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Helen Keller ever read a novel by J. K. Rowling?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Woodrow Wilson sandwiched between two presidents from the opposing party?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Statue of Unity hypothetically more level with Statue of Liberty than Lighthouse of Alexandria?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Moon Jae-in earn the Abitur as a teenager?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Tom Cruise explain mental auditing?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are grapes essential to winemaking?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Doctor Strange creators also make Batman?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should wool be hand washed only?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did number of Imams Reza Shah believed in exceed number of Jesus's disciples?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are multiple Christmas Carol's named after Saints?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Robert De Niro use a microscope at work?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Julio Gonzalez like acetylene?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you watch the Borgia's World of Wonders before Ludacris's Release Therapy finishes?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could all the unemployed people due to 1933 Great Depression fit in Tiger Stadium?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is clerk of Supreme Court of Canada safe profession for someone with seismophobia?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Oscar Wilde's treatment under the law be considered fair in the US now?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can Family of Barack Obama ride comfortably in 2020 Jaguar F Type?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is World of Warcraft heavier than a loaf of bread?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did mongoose come from later period than rhinos?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Joker in a healthy romantic relationship?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a minor replicate the double-slit experiment?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Jennifer Lawrence's middle name similar to the name of a Scorsese collaborator?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are anchovies associated with Italian food?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can any person with a driver's license work in transport of aviation fuel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: In teenagers and young adults with depression, are SSRI medications less safe than they are for adults?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do Christians anticipate an existence in Sheol after death?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Lil Jon's top ranked Billboard song a collaboration with a member of The Lox?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the first Duke of Valentinois play a key role in the Hundred Years' War?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the United States Military Academy reject an applicant with multiple sclerosis?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would a nickel fit inside a koala pouch?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could the Powerpuff Girls hypothetically attend the Camden Military Academy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a strawberry get worms similar to dogs?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Bucharest located south of Egypt?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could a Diwali celebration feature a crustacean?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Christina Aguilera turn her chair around for Kelly Clarkson on The Voice?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would menu at Chinese Starbucks be familiar to an American?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would General Zod prefer an iPhone over a Samsung Galaxy S4?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could all of the people who pass through 30th Street Station every day fit in Dorton Arena?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a construction worker required to build a portfolio?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were karaoke and the turtle power tiller patented in the same country?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Nigella Lawson care about solubility?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did any cultures associate celery with death?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Paul the Apostle's cause of death violate the tenets of Ahimsa?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Muhammed a member of the Uniting Church in Australia?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did any of the amazons on Xena: Warrior Princess star on later shows?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you get a ride on Amtrak to the Underworld?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do drummers need spare strings?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can oysters be used in guitar manufacturing?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Barack Obama participate in the Reformation?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are all students guaranteed lunch at school in the US?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you taste Law & Order?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Snoop Dogg refuse to make music with rival gang members?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Düsseldorf have only a small number of smoggy days each year?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could an ocelot outrun a kindergartner? \nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Nancy Pelosi publicly denounce abortion?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Richard III ruler of Adelaide?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could you make the kitchen 'holy trinity' without celery?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could largest ship from Voyages of Christopher Columbus haul Statue of Liberty?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Holy Land belong to Adamu's tribe?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it safe to use Ammonia with Clorox?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a pear sink in water?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do embalmed bodies feel different at funerals?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can too many oranges cause diarrhea?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is blonde hair green eyed Sara Paxton considered a Latino?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will Oasis cruise boat traverse the Lincoln Tunnel?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Gauss have a normal brain structure?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the Ku Klux Klan welcome Opal Tometi into their group?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people still see Henry Ford's last name often?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Has Don King killed more people than Charles Manson did with his own hands in 1971?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a young Wizard of Oz Scarecrow have gotten Cerebral palsy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were any of despised Pope Alexander VI's descendants canonized?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was a nuclear bomb used in the Napoleonic Wars?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Marvel's Gateway be envious of the Doctor (Doctor Who)'s TARDIS machine?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could you watch all of JAG in six months?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will the small intenstine break down a cotton ball?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it safe to eat hair?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: During the Cuban revolution, did the US experience a population boom?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Sainsbury's buy Tesco?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Should children be kept from \"special brownies\"?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Poland Spring make money in the Sahara?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Pope Alexander VI's origin country least represented in papal history?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Nicole Kidman know any Scientologists?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you save every HD episode of Game of Thrones on Samsung Galaxy A10e?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it common for women to have moustaches?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Central Park Zoo located on an island?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: If your electric stove has a glass top, should you use cast iron skillets?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Pantheon in Paris have a unique name?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a diamond float on water?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were weather phenomena avoided when naming minor league baseball teams?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could R. Kelly write a college thesis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would the Cookie Monster decline an offer of free Keebler products?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are sables related to wolverines?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the writer of Christmas carol fast during Ramadan? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would Dale Earnhardt Jr. be considered a newbie?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do urban legends always have to occur in cities?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Cambodia too expensive for 2020 richest billionaire to own?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the 40th president of the United States forward lolcats to his friends?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Were number of states in Ancient Greece underwhelming compared to US states in 1900?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Have Douglas fir been used to fight wars?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is basil safe from Hypervitaminosis D?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Christopher Columbus go to Antarctica? \nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a sofer be a bad job for a vegan?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Aristotle a member of the House of Lords?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a Chinchilla breed of felis catus a type of rodent?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did the Nazis use the Hammer and sickle flag?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the death of Heath Ledger caused by his work on The Dark Knight?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does having lip piercings lead to more expensive dental bills?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: During the pandemic, is door to door advertising considered inconsiderate?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Alexander the Great baptized?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could an American confuse breakfast in British cuisine for dinner?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a white cockatoo have lived through the entire Thirty Years' War?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can a lifeboat rescue people in the Hooke Sea?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Disney own a major comic book publisher?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is the Sea of Japan landlocked within Japan?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a birdwatcher pursue their hobby at a Philadelphia Eagles game?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it impossible for Cheb Mami to win a Pulitzer Prize for musical composition?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did the swallow play a role in a famous film about King Arthur?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you make an MP3 from the Golden Gate Bridge?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is it more expensive to run for President of India than to buy a new iPhone 11?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a Deacon be likely to be a fan of the podcast 'God Awful Movies'?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are both founders of Ben & Jerry's still involved in the company?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Brazilian jiu-jitsu Gracie founders have at least a baker's dozen of kids between them?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Brooklyn known for its bread products?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Christmas always celebrated on a Sunday?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do quadragenarian's have little memory capacity?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Harry Potter a better investment than The Matrix for Warner Bros.?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can professional boxers expect to have low dental bills?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Queen Elizabeth I read the works of Jean-Paul Sartre?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does open heart surgery finish before entirety of American Ballet Theatre's Swan Lake?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a jet plane be made without society?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do astronomers write horoscopes?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Will Lhamo Thondup be considered by Catholic Church to be a saint?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would a sesame seed be mistaken for a wood frog egg?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Pink Floyd have a song about the French Riviera?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Have Jamie Lee Curtis been the subject of fake news?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Godzilla have been killed by the Tohoku earthquake?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does taking ukemi halt kinetic energy?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Have any members of the 2020 British royal family allegedly committed a felony?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Will NY Stock Exchange closing bell be heard in Universal Music Group's headquarters?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does The Jungle Book contain racist subtext?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was Pi an acceptable number of children in 1980s China?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Bruiser Brody wrestle on WWE Raw?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Are Sable's a good choice of Mustelidae to weigh down a scale?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does American Independence Day occur during autumn?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would James Cotton's instrument be too strident for a smooth jazz band?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is there a Yeti associated with Disney theme parks?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do people who smoke Djarum's like cloves?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can Kate Gosselin's household fill out a Bandy team?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Great Recession the period of severest unemployment?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is anyone at the Last Supper celebrated in Islam?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Japanese serfdom have higher status than English counterpart?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Andrew Johnson's presidential number exceed Elagabalus's Emperor number?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is J.D. Salinger's most successful work influential to killers?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is Disneyland Paris the largest Disney resort?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can you go water skiing on Venus?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do people with DID have a good memory?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was the Carnation Revolution the deadliest revolution in Europe?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would it be very difficult for Nuno Gomes to dive to the Red Sea's deepest point?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does Post Malone have a fear of needles?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can methane be seen by the naked eye?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did King of Portuguese people in 1515 have familial ties to the Tudors?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could Johnny Carson's children fill out a water polo team?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Has Nikola Tesla's name inspired multiple brands?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Does a dentist treat Bluetooth problems?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Would an expensive tailor use adhesive to create a shorter hem on slacks?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could Sugar Ray Robinson box if he stole in Iran?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Can a cheetah generate enough force to topple Big Show?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Do you often hear Marco Polo's name shouted near water?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can citrus grow in Ulaanbaatar?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Do frogs feel disgust?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Woodrow Wilson support Plessy v. Ferguson decision?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could you read The Atlantic magazine during the Games of the XXII Olympiad?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Are months based on the solar cycle?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was Martin Luther same sect as Martin Luther King Jr.?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Pearl Harbor the mythical home of a shark goddess?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Was King Arthur at the beheading of Anne Boleyn?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is a paraplegic suitable for conducting an orchestra?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Snowdon mountain be a piece of cake for Tenzing Norgay?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Could a Bengal cat hypothetically best Javier Sotomayor's record?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Did Tony Bennett have more children than he had wives?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can fish get Tonsillitis?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Did Boris Yeltsin watch the 2008 Summer Olympics?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Does Darth Vader's character resemble Severus Snape?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it legal for a licensed child driving Mercedes-Benz to be employed in US?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Would Donald Duck be allowed into most grocery stores?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is it true that gay male couples cannot naturally reproduce?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Michael an unpopular name in the United States?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Was John Gall from same city as Stanford University?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Is retail a job anybody can be suited for?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Could modern Brazilian Navy have hypothetically turned the tide in Battle of Actium?\nA:", "choices": ["Yes", "No"], "gold": 0}
{"query": "Q: Can you purchase a dish with injera at Taco Bell?\nA:", "choices": ["Yes", "No"], "gold": 1}
{"query": "Q: Is Lord Voldemort associated with a staff member of Durmstrang?\nA:", "choices": ["Yes", "No"], "gold": 0}
|