File size: 58,916 Bytes
6cd6a2b | 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 | [
{
"sentence":"The object is based on Mjölnir, the weapon of the mythological Thor.",
"entity1":"Q193813",
"entity2":"Q42952",
"entity1_indices":[
23,
30
],
"entity2_indices":[
50,
67
],
"relation":"P127",
"relation_name":"owned by",
"category":"P127"
},
{
"sentence":"The channel boasted a policy of not running R-rated feature films (predating the launch of family-oriented multiplex services by HBO and Showtime that also omitted R-rated films from their schedules), and marketed itself as a lower-priced alternative to HBO, Cinemax, Showtime (which Group W later owned in part, making HTN a \"de facto\" sister network to Showtime from 1982, when it acquired TelePrompTer Corporation, to 1983) and The Movie Channel.",
"entity1":"Q249892",
"entity2":"Q23633",
"entity1_indices":[
259,
266
],
"entity2_indices":[
129,
132
],
"relation":"P127",
"relation_name":"owned by",
"category":"P127"
},
{
"sentence":"It received an aggregated score of 82% on GameRankings based on 32 reviews and 82\/100 on Metacritic based on 32 reviews.",
"entity1":"Q40160",
"entity2":"Q150248",
"entity1_indices":[
42,
54
],
"entity2_indices":[
89,
99
],
"relation":"P127",
"relation_name":"owned by",
"category":"P127"
},
{
"sentence":"The Casio G-Shock DW-5600C and 5600E, DW 6900, and DW 5900 are Flight-Qualified for NASA space travel.",
"entity1":"Q1047701",
"entity2":"Q217338",
"entity1_indices":[
10,
17
],
"entity2_indices":[
4,
9
],
"relation":"P127",
"relation_name":"owned by",
"category":"P127"
},
{
"sentence":"It received a score of 73.12% on GameRankings and 70\/100 on Metacritic.",
"entity1":"Q40160",
"entity2":"Q150248",
"entity1_indices":[
33,
45
],
"entity2_indices":[
60,
70
],
"relation":"P127",
"relation_name":"owned by",
"category":"P127"
},
{
"sentence":"Those Mongols allied with the nomadic Buddhist, Christian and Shamanist rebels of the Issyk Kul and Isi areas against the Chagatai Khan Tarmashirin in the 1330s upon his conversion to Islam.",
"entity1":"Q685545",
"entity2":"Q432",
"entity1_indices":[
136,
147
],
"entity2_indices":[
184,
189
],
"relation":"P140",
"relation_name":"religion",
"category":"P140"
},
{
"sentence":"Buddhist Monks Buddhabadra and Bodhidharma travelled from Tamizhagam to China and established the Shaolin Monastery to spread Zen Buddhism.",
"entity1":"Q187172",
"entity2":"Q7953",
"entity1_indices":[
31,
42
],
"entity2_indices":[
126,
138
],
"relation":"P140",
"relation_name":"religion",
"category":"P140"
},
{
"sentence":"This was chiefly due to the concern that secular nationalism would replace the Jewish faith and the observance of religion, and the view that it was forbidden for the Jews to re-constitute Jewish rule in the Land of Israel before the arrival of the Messiah.",
"entity1":"Q7325",
"entity2":"Q9268",
"entity1_indices":[
167,
171
],
"entity2_indices":[
79,
91
],
"relation":"P140",
"relation_name":"religion",
"category":"P140"
},
{
"sentence":"Today, the Vaishnavite sect considers Vishnu to be the supreme god, while Shaivites consider Shiva to be the supreme god.",
"entity1":"Q11378",
"entity2":"Q234953",
"entity1_indices":[
93,
98
],
"entity2_indices":[
74,
83
],
"relation":"P140",
"relation_name":"religion",
"category":"P140"
},
{
"sentence":"Josh's father is a descendant of Jewish immigrants from Poland and Ukraine, and converted from Judaism to Christianity upon marrying Josh's mother.",
"entity1":"Q7325",
"entity2":"Q9268",
"entity1_indices":[
33,
39
],
"entity2_indices":[
95,
102
],
"relation":"P140",
"relation_name":"religion",
"category":"P140"
},
{
"sentence":"For instance, some species of the subfamily Danainae feed on various species of the Asclepiadoideae in the family Apocynaceae, which render them poisonous and emetic to most predators.",
"entity1":"Q8206302",
"entity2":"Q173756",
"entity1_indices":[
84,
99
],
"entity2_indices":[
114,
125
],
"relation":"P171",
"relation_name":"parent taxon",
"category":"P171"
},
{
"sentence":"Philydrosaurus\" is closely related to the choristodere \"Monjurosuchus\", and both have been placed in the same family Monjurosuchidae. \"",
"entity1":"Q3010132",
"entity2":"Q5196741",
"entity1_indices":[
56,
69
],
"entity2_indices":[
117,
132
],
"relation":"P171",
"relation_name":"parent taxon",
"category":"P171"
},
{
"sentence":"As well as fossils of enantiornithine birds including juveniles and partial wings and preserved feet, including a diagnostic taxon, \"Elektorornis\". \"",
"entity1":"Q66057522",
"entity2":"Q132268",
"entity1_indices":[
133,
145
],
"entity2_indices":[
22,
37
],
"relation":"P171",
"relation_name":"parent taxon",
"category":"P171"
},
{
"sentence":"Nowadays, \"Mauicetus parki\" is considered a stem-balaenopteroid, while \"M. lophocephalus\" and \"M. waitakiensis\" have been reclassified in Eomysticetidae, with \"M. lophocephalus\" and \"M. waitakiensis\" being assigned to \"Tokarahia\" and \"Tohoraata\".",
"entity1":"Q22286578",
"entity2":"Q19760078",
"entity1_indices":[
219,
228
],
"entity2_indices":[
138,
152
],
"relation":"P171",
"relation_name":"parent taxon",
"category":"P171"
},
{
"sentence":"It is classified in the subfamily Bombacoideae of the family Malvaceae.",
"entity1":"Q532007",
"entity2":"Q156551",
"entity1_indices":[
34,
46
],
"entity2_indices":[
61,
70
],
"relation":"P171",
"relation_name":"parent taxon",
"category":"P171"
},
{
"sentence":"His Army friends gave him many nicknames: \"Little Creole\", \"Bory\", \"Little Frenchman\", \"Felix\", and \"Little Napoleon\".",
"entity1":"Q517",
"entity2":"Q121842",
"entity1_indices":[
108,
116
],
"entity2_indices":[
75,
84
],
"relation":"P172",
"relation_name":"ethnic group",
"category":"P172"
},
{
"sentence":"While the title character will be able to become the leader of the Huns, he is not yet in power at the start of the campaign.",
"entity1":"Q36724",
"entity2":"Q45813",
"entity1_indices":[
6,
25
],
"entity2_indices":[
67,
71
],
"relation":"P172",
"relation_name":"ethnic group",
"category":"P172"
},
{
"sentence":"Likewise, kings of the Frankish Carolingian dynasty frequently connected themselves to David; Charlemagne himself occasionally used the name of David as his pseudonym.",
"entity1":"Q3044",
"entity2":"Q43482",
"entity1_indices":[
94,
105
],
"entity2_indices":[
23,
31
],
"relation":"P172",
"relation_name":"ethnic group",
"category":"P172"
},
{
"sentence":"Qazi would later reveal that he had spent this time being sheltered by fellow Pashtun tribesmen, in the border regions of Afghanistan, making only brief visits to Pakistan.",
"entity1":"Q889",
"entity2":"Q2556103",
"entity1_indices":[
122,
133
],
"entity2_indices":[
78,
85
],
"relation":"P172",
"relation_name":"ethnic group",
"category":"P172"
},
{
"sentence":"When on November 8, 1942, a hurricane struck northern Belize causing a great deal of destruction of buildings, Rice shared his experience from Iraq where he had taught the Arabs to construct the modern buildings of Baghdad College.",
"entity1":"Q796",
"entity2":"Q35323",
"entity1_indices":[
143,
147
],
"entity2_indices":[
172,
177
],
"relation":"P172",
"relation_name":"ethnic group",
"category":"P172"
},
{
"sentence":"It had been recorded in April 1997 with Magoo (Regurgitator, Tu-plang) producing at Paradise Studios.",
"entity1":"Q7850481",
"entity2":"Q7309724",
"entity1_indices":[
61,
69
],
"entity2_indices":[
47,
59
],
"relation":"P175",
"relation_name":"performer",
"category":"P175"
},
{
"sentence":"There have been four instances in which one artist or group was nominated for two works in the same year: the group Aerosmith was nominated for both \"Cryin'\" and \"Livin' on the Edge\" in 1994, Melissa Etheridge received nominations for \"Come to My Window\" and \"I'm the Only One\" in 1995, Jakob Dylan of The Wallflowers won for \"One Headlight\" and was also nominated for \"The Difference\" in 1998, and U2 was nominated for the songs \"Elevation\" and \"Walk On\" in 2002.",
"entity1":"Q2722094",
"entity2":"Q126826",
"entity1_indices":[
150,
156
],
"entity2_indices":[
116,
125
],
"relation":"P175",
"relation_name":"performer",
"category":"P175"
},
{
"sentence":"His work on \"Doctor Who\" was primarily for the Doctors played by Matt Smith and Peter Capaldi.",
"entity1":"Q34358",
"entity2":"Q312385",
"entity1_indices":[
47,
54
],
"entity2_indices":[
65,
75
],
"relation":"P175",
"relation_name":"performer",
"category":"P175"
},
{
"sentence":"At the 1996 ARIA Awards, the album was nominated for \"Breakthrough Artist - Album\" and \"Highest Selling Album\", but lost to \"Tu-Plang\" by Regurgitator and \"Don't Ask\" by Tina Arena respectively.",
"entity1":"Q7850481",
"entity2":"Q7309724",
"entity1_indices":[
125,
133
],
"entity2_indices":[
138,
150
],
"relation":"P175",
"relation_name":"performer",
"category":"P175"
},
{
"sentence":"MTV Raps\" and the former is credited by Nas as being influential on his song \"N.Y. State of Mind\" from his critically acclaimed album \"Illmatic\".",
"entity1":"Q847541",
"entity2":"Q194220",
"entity1_indices":[
135,
143
],
"entity2_indices":[
40,
43
],
"relation":"P175",
"relation_name":"performer",
"category":"P175"
},
{
"sentence":"It is included as a master track in the Xbox 360, PlayStation 3, and Nintendo Wii versions of the music video game \"Rock Revolution\", though this version is heavily censored.",
"entity1":"Q8079",
"entity2":"Q8093",
"entity1_indices":[
78,
81
],
"entity2_indices":[
69,
77
],
"relation":"P176",
"relation_name":"manufacturer",
"category":"P178_P176"
},
{
"sentence":"He is known on the show for his flashy lifestyle — he drives a silver Mercedes-Benz SL500, is fond of impeccably tailored suits and made-to-measure shirts that are perfectly color co-ordinated, and often carries a 'walking-around' money roll of several thousand dollars.",
"entity1":"Q975213",
"entity2":"Q36008",
"entity1_indices":[
84,
89
],
"entity2_indices":[
70,
83
],
"relation":"P176",
"relation_name":"manufacturer",
"category":"P178_P176"
},
{
"sentence":"That same year, the game was purchased by gaming giant Zynga, inspiring other later titles like FarmVille and CityVille.",
"entity1":"Q719337",
"entity2":"Q245772",
"entity1_indices":[
96,
105
],
"entity2_indices":[
55,
60
],
"relation":"P178",
"relation_name":"developer",
"category":"P178_P176"
},
{
"sentence":"The W3C\/WHATWG Encoding Standard used by HTML5 incorporates the Unified Hangul Code extensions into its definition of EUC-KR.",
"entity1":"Q2053",
"entity2":"Q37033",
"entity1_indices":[
41,
46
],
"entity2_indices":[
4,
7
],
"relation":"P178",
"relation_name":"developer",
"category":"P178_P176"
},
{
"sentence":"Steve invited Ozzie Osborne, General Manager of IBM Speech Systems, to demo ViaVoice.",
"entity1":"Q4116861",
"entity2":"Q37156",
"entity1_indices":[
76,
84
],
"entity2_indices":[
48,
51
],
"relation":"P178",
"relation_name":"developer",
"category":"P178_P176"
},
{
"sentence":"The work, which was originally dedicated to Grand Duke of Lithuania Sigismund II Augustus, survived only in ten fragments that were first published in 1615 by Johann Jacob Grasser in Basel, Switzerland.",
"entity1":"Q78",
"entity2":"Q39",
"entity1_indices":[
183,
188
],
"entity2_indices":[
190,
201
],
"relation":"P17",
"relation_name":"country",
"category":"P17_P131_P150_P706"
},
{
"sentence":"The 1999 and 2000 winner, Jean-Louis Schlesser, switched from a petrol powered vehicle to a diesel powered one in a bid to make the vehicle lighter However, he was forced to retire from the rally during the sixth stage from Er-Rachidia to Ouarzazate in Morocco while lying 11th overall when his vehicle caught fire.",
"entity1":"Q1980885",
"entity2":"Q1028",
"entity1_indices":[
224,
235
],
"entity2_indices":[
253,
260
],
"relation":"P17",
"relation_name":"country",
"category":"P17_P131_P150_P706"
},
{
"sentence":"Hemadpant wrote the Sai Satcharita at his residence called \"Sai Niwas\" in Bandra, Mumbai.",
"entity1":"Q257622",
"entity2":"Q1156",
"entity1_indices":[
74,
80
],
"entity2_indices":[
82,
88
],
"relation":"P131",
"relation_name":"located in the administrative territorial entity",
"category":"P17_P131_P150_P706"
},
{
"sentence":"In 1792, Frettenheim lay under French administration and belonged to the Department of Mont-Tonnerre (or Donnersberg in German).",
"entity1":"Q568751",
"entity2":"Q142",
"entity1_indices":[
87,
100
],
"entity2_indices":[
31,
37
],
"relation":"P17",
"relation_name":"country",
"category":"P17_P131_P150_P706"
},
{
"sentence":"He recorded the album in Osaka, Japan while writing a script for a horror film set in the BBC Radiophonic Workshop. \"",
"entity1":"Q35765",
"entity2":"Q17",
"entity1_indices":[
25,
30
],
"entity2_indices":[
32,
37
],
"relation":"P17",
"relation_name":"country",
"category":"P17_P131_P150_P706"
},
{
"sentence":"He tells the story of Thales, a poor philosopher from Miletus who developed a \"financial device, which involves a principle of universal application\".",
"entity1":"Q36303",
"entity2":"Q169460",
"entity1_indices":[
22,
28
],
"entity2_indices":[
54,
61
],
"relation":"P19",
"relation_name":"place of birth",
"category":"P19"
},
{
"sentence":"He claimed as early as 1924 that the Jews were not really descended from the tribe of Judah, but were instead the descendants of Esau or Canaanites.",
"entity1":"Q220822",
"entity2":"Q163329",
"entity1_indices":[
129,
133
],
"entity2_indices":[
137,
147
],
"relation":"P19",
"relation_name":"place of birth",
"category":"P19"
},
{
"sentence":"It refers to the Albanian Declaration of Independence on 28 November 1912 and the rise of the Albanian flag in Vlora, coinciding with the day in which Skanderbeg raised the same flag in Krujë, on 28 November 1443.",
"entity1":"Q160614",
"entity2":"Q194164",
"entity1_indices":[
151,
161
],
"entity2_indices":[
186,
191
],
"relation":"P19",
"relation_name":"place of birth",
"category":"P19"
},
{
"sentence":"She based her first published novel, \"Child of the Morning\", on the historical figure of Hatshepsut, Egypt’s only female pharaoh.",
"entity1":"Q129234",
"entity2":"Q79",
"entity1_indices":[
89,
99
],
"entity2_indices":[
101,
106
],
"relation":"P19",
"relation_name":"place of birth",
"category":"P19"
},
{
"sentence":"The name was taken from the Biblical Book of Judges (13:25): \"And the spirit of the Lord began to move him (Samson) at times in the camp of Dan between Zorah and Eshtaol.\"",
"entity1":"Q214648",
"entity2":"Q2916162",
"entity1_indices":[
108,
114
],
"entity2_indices":[
152,
157
],
"relation":"P19",
"relation_name":"place of birth",
"category":"P19"
},
{
"sentence":"If he dared molest Peter and his entourage and refuse Christianisation, he would quickly be led before Charlemagne's throne in fetters, abandoned by Odin (Waten) and Thor (Thonar).",
"entity1":"Q42952",
"entity2":"Q43610",
"entity1_indices":[
166,
170
],
"entity2_indices":[
149,
153
],
"relation":"P22",
"relation_name":"father",
"category":"P22"
},
{
"sentence":"Moses called on God to remember Abraham, Isaac, and Jacob, and God's oath to make their offspring as numerous as the stars, and God renounced the planned punishment.",
"entity1":"Q671872",
"entity2":"Q9181",
"entity1_indices":[
41,
46
],
"entity2_indices":[
32,
39
],
"relation":"P22",
"relation_name":"father",
"category":"P22"
},
{
"sentence":"Two years into his reign, Fíachu Tolgrach was killed in battle against Airgetmar, son of Sírlám.",
"entity1":"Q1271427",
"entity2":"Q1260088",
"entity1_indices":[
71,
80
],
"entity2_indices":[
89,
95
],
"relation":"P22",
"relation_name":"father",
"category":"P22"
},
{
"sentence":"It was here, the ancient authors tell us, that Diktaian Zeus (the youthful Cretan equivalent of the classical Greek god Dionysos and Egyptian Osiris) was born and where this young god founded his holy city.",
"entity1":"Q41680",
"entity2":"Q34201",
"entity1_indices":[
120,
128
],
"entity2_indices":[
56,
60
],
"relation":"P22",
"relation_name":"father",
"category":"P22"
},
{
"sentence":"He is sometimes numbered among the Figurists, the Jesuit missionaries who came to think that Christianity had been the ancient religion of China, brought there by Noah's son Shem.",
"entity1":"Q200902",
"entity2":"Q81422",
"entity1_indices":[
174,
178
],
"entity2_indices":[
163,
167
],
"relation":"P22",
"relation_name":"father",
"category":"P22"
},
{
"sentence":"When the Pandavas came with their mother Kunti in the course of their exile, Bhima had a duel with Hidimba.",
"entity1":"Q3651886",
"entity2":"Q844424",
"entity1_indices":[
77,
82
],
"entity2_indices":[
41,
46
],
"relation":"P25",
"relation_name":"mother",
"category":"P25"
},
{
"sentence":"Python, who had been sent by Hera, had attempted to prevent Leto, while she was pregnant with Apollo and Artemis, from giving birth.",
"entity1":"Q39503",
"entity2":"Q103107",
"entity1_indices":[
105,
112
],
"entity2_indices":[
60,
64
],
"relation":"P25",
"relation_name":"mother",
"category":"P25"
},
{
"sentence":"He married Rhoeo and became the father of Anius.",
"entity1":"Q374275",
"entity2":"Q1782599",
"entity1_indices":[
42,
47
],
"entity2_indices":[
11,
16
],
"relation":"P25",
"relation_name":"mother",
"category":"P25"
},
{
"sentence":"He had the Lady of the Lake present the Prince with a shield, rather than the more usual and typical sword, like the shield given by Thetis to Achilles in the \"Iliad\".",
"entity1":"Q41746",
"entity2":"Q184437",
"entity1_indices":[
143,
151
],
"entity2_indices":[
133,
139
],
"relation":"P25",
"relation_name":"mother",
"category":"P25"
},
{
"sentence":"He was a son of Ahmose I and Ahmose-Nefertari, but had at least two elder brothers, Ahmose-ankh and Ahmose Sapair, and was not expected to inherit the throne.",
"entity1":"Q835492",
"entity2":"Q239626",
"entity1_indices":[
84,
95
],
"entity2_indices":[
29,
45
],
"relation":"P25",
"relation_name":"mother",
"category":"P25"
},
{
"sentence":"His music softened the hearts of Hades and Persephone, who agreed to allow Eurydice to return with him to earth on one condition: he should walk in front of her and not look back until they both had reached the upper world.",
"entity1":"Q41410",
"entity2":"Q45967",
"entity1_indices":[
33,
38
],
"entity2_indices":[
43,
53
],
"relation":"P26",
"relation_name":"spouse",
"category":"P26"
},
{
"sentence":"At the foot of the panel, God creates Eve from the rib of Adam.",
"entity1":"Q830183",
"entity2":"Q70899",
"entity1_indices":[
38,
41
],
"entity2_indices":[
58,
62
],
"relation":"P26",
"relation_name":"spouse",
"category":"P26"
},
{
"sentence":"In it are three deities- Shiva, Kali-ka, and Gorakh Nath.",
"entity1":"Q132127",
"entity2":"Q11378",
"entity1_indices":[
32,
36
],
"entity2_indices":[
25,
30
],
"relation":"P26",
"relation_name":"spouse",
"category":"P26"
},
{
"sentence":"An inscription referring to the temple mentions \"Serapis, Isis, Harpocrates, Osiris, Apis, Helios on a horse ... Ares and the Dioskouroi\".",
"entity1":"Q214554",
"entity2":"Q79876",
"entity1_indices":[
49,
56
],
"entity2_indices":[
58,
62
],
"relation":"P26",
"relation_name":"spouse",
"category":"P26"
},
{
"sentence":"The female Nüwa fashioned people from loess and mud (in early myths) or from procreating with her brother\/husband Fuxi (in later versions).",
"entity1":"Q641632",
"entity2":"Q236972",
"entity1_indices":[
11,
15
],
"entity2_indices":[
114,
118
],
"relation":"P26",
"relation_name":"spouse",
"category":"P26"
},
{
"sentence":"This massive earthwork, stretching from Chepstow in the south to Prestatyn in the north, was constructed in the late 8th century by Offa, king of Mercia, as a boundary between Saxon Mercia and Celtic Wales.",
"entity1":"Q233573",
"entity2":"Q105092",
"entity1_indices":[
132,
136
],
"entity2_indices":[
146,
152
],
"relation":"P27",
"relation_name":"country of citizenship",
"category":"P27"
},
{
"sentence":"Additionally, two of Pace's backing singers were also solo entrants in their own right - Sahlene, performing under her real name, would go on to represent Estonia with \"Runaway\" and Gabriel Forss had previously represented Sweden as a member of Blond with \"Bara hon älskar mig\".",
"entity1":"Q297842",
"entity2":"Q191",
"entity1_indices":[
89,
96
],
"entity2_indices":[
155,
162
],
"relation":"P27",
"relation_name":"country of citizenship",
"category":"P27"
},
{
"sentence":"This word was widely used as a Greek title for Byzantine nobles as late as 1465, such as in the letters of Cardinal Bessarion concerning the children of Thomas Paleologus.",
"entity1":"Q299446",
"entity2":"Q12544",
"entity1_indices":[
116,
125
],
"entity2_indices":[
47,
56
],
"relation":"P27",
"relation_name":"country of citizenship",
"category":"P27"
},
{
"sentence":"The tie against Benfica in the European Cup in 1965 remained memorable for the Eusébio versus Georgi Asparuhov clash, and the recognition that the Portuguese great gave to his Bulgarian counterpart.",
"entity1":"Q162043",
"entity2":"Q45",
"entity1_indices":[
79,
86
],
"entity2_indices":[
147,
157
],
"relation":"P27",
"relation_name":"country of citizenship",
"category":"P27"
},
{
"sentence":"The Brazilian legend compared Alkan to his former Brazil teammate, Cafu.",
"entity1":"Q178683",
"entity2":"Q155",
"entity1_indices":[
67,
71
],
"entity2_indices":[
4,
10
],
"relation":"P27",
"relation_name":"country of citizenship",
"category":"P27"
},
{
"sentence":"This new contact language soon incorporated other dialects, such as Haryanvi, Panjabi, and in the 17th century the dialect of the new capital at Delhi.",
"entity1":"Q1353",
"entity2":"Q33410",
"entity1_indices":[
145,
150
],
"entity2_indices":[
68,
76
],
"relation":"P2936",
"relation_name":"language used",
"category":"P2936"
},
{
"sentence":"What is called \"Hindi\" in India is frequently Standard Hindi, the Sanskritized register of the colloquial Hindustani spoken in the Delhi area, while the other register being Urdu.",
"entity1":"Q1353",
"entity2":"Q1568",
"entity1_indices":[
131,
136
],
"entity2_indices":[
16,
21
],
"relation":"P2936",
"relation_name":"language used",
"category":"P2936"
},
{
"sentence":"The followers of Imam Shafi in Fiji are the descendants of Muslims of Malayalam origin who came to Fiji under the indenture system from Kerala (Malabar) in South India between 1903 and 1916.",
"entity1":"Q1186",
"entity2":"Q36236",
"entity1_indices":[
136,
142
],
"entity2_indices":[
70,
79
],
"relation":"P2936",
"relation_name":"language used",
"category":"P2936"
},
{
"sentence":"He grew up in the somnolent town of Kanhangad, in northern Kerala, where he watched many Malayalam-language films.",
"entity1":"Q1186",
"entity2":"Q36236",
"entity1_indices":[
59,
65
],
"entity2_indices":[
89,
107
],
"relation":"P2936",
"relation_name":"language used",
"category":"P2936"
},
{
"sentence":"He was a 12th-century Hindu philosopher, statesman, Kannada poet in the Shiva-focused Bhakti movement and a social reformer during the reign of the Kalachuri king Bijjala II (reigned 1157–1167) in Karnataka, India.",
"entity1":"Q1185",
"entity2":"Q33673",
"entity1_indices":[
197,
206
],
"entity2_indices":[
52,
59
],
"relation":"P2936",
"relation_name":"language used",
"category":"P2936"
},
{
"sentence":"It has become particularly popular in the Netherlands, which now hosts its own annual version of the tournament, attracting participants from throughout Europe.",
"entity1":"Q55",
"entity2":"Q46",
"entity1_indices":[
42,
53
],
"entity2_indices":[
153,
159
],
"relation":"P30",
"relation_name":"continent",
"category":"P30"
},
{
"sentence":"As an MP he focused on matters of foreign policy (Middle East, Russia and Asia) and the armed forces of the Netherlands.",
"entity1":"Q159",
"entity2":"Q48",
"entity1_indices":[
63,
69
],
"entity2_indices":[
74,
78
],
"relation":"P30",
"relation_name":"continent",
"category":"P30"
},
{
"sentence":"This phenomenon at that time was first only thought to affect Swiss people until this was revised, probably caused by big migration streams across Europe suggesting the same symptoms and thus homesickness found its way into general German medical literature in the 19th century.",
"entity1":"Q183",
"entity2":"Q46",
"entity1_indices":[
232,
238
],
"entity2_indices":[
147,
153
],
"relation":"P30",
"relation_name":"continent",
"category":"P30"
},
{
"sentence":"It contains only one known species, Manniophyton fulvum, native to tropical western and central Africa from Guinea to Angola.",
"entity1":"Q1006",
"entity2":"Q15",
"entity1_indices":[
108,
114
],
"entity2_indices":[
96,
102
],
"relation":"P30",
"relation_name":"continent",
"category":"P30"
},
{
"sentence":"It is found in most of Europe, then Turkey, Iran, Transcaucasus and into the east Palearctic (Central Asia, Siberia).",
"entity1":"Q200173",
"entity2":"Q46",
"entity1_indices":[
50,
63
],
"entity2_indices":[
23,
29
],
"relation":"P30",
"relation_name":"continent",
"category":"P30"
},
{
"sentence":"It is based on the Scintilla editor component, and is written in C++ with only Win32 API calls using only the STL to increase performance and reduce program size.",
"entity1":"Q828191",
"entity2":"Q165194",
"entity1_indices":[
79,
84
],
"entity2_indices":[
85,
88
],
"relation":"P31",
"relation_name":"instance of",
"category":"P31"
},
{
"sentence":"In his favourite sketch, his puppet double goes to the Heavenly Gates and confronts God as if he were a crooked estate agent who promised land to the Jews, only to offer the same land to the Arabs under the name of Allah.",
"entity1":"Q234801",
"entity2":"Q190",
"entity1_indices":[
215,
220
],
"entity2_indices":[
84,
87
],
"relation":"P31",
"relation_name":"instance of",
"category":"P31"
},
{
"sentence":"The principal image in each temple is Kannon, known to Westerners as the Bodhisattva of Compassion (or sometimes mistranslated as 'Goddess of Mercy') ; however, there is some variation among the images and the powers they possess.",
"entity1":"Q715162",
"entity2":"Q178149",
"entity1_indices":[
38,
44
],
"entity2_indices":[
73,
84
],
"relation":"P31",
"relation_name":"instance of",
"category":"P31"
},
{
"sentence":"In this it is related that God first ordered Archangel Gabriel to shave Adam.",
"entity1":"Q81989",
"entity2":"Q178342",
"entity1_indices":[
55,
62
],
"entity2_indices":[
45,
54
],
"relation":"P31",
"relation_name":"instance of",
"category":"P31"
},
{
"sentence":"It is named after the Coptic Saint, Simon the Tanner, who lived at the end of the 10th century, when Egypt was ruled by the Muslim Fatimid Caliph Al-Muizz Lideenillah.",
"entity1":"Q160307",
"entity2":"Q131401",
"entity1_indices":[
131,
138
],
"entity2_indices":[
139,
145
],
"relation":"P31",
"relation_name":"instance of",
"category":"P31"
},
{
"sentence":"The others were Cedd, Chad, and Cynibil.",
"entity1":"Q1052577",
"entity2":"Q5199948",
"entity1_indices":[
16,
20
],
"entity2_indices":[
32,
39
],
"relation":"P3373",
"relation_name":"sibling",
"category":"P3373"
},
{
"sentence":"Bhima defeated Karna and when Bhima was about to stab Karna, Karna's son Banasena came in aid of his father.",
"entity1":"Q2727397",
"entity2":"Q3651886",
"entity1_indices":[
15,
20
],
"entity2_indices":[
30,
35
],
"relation":"P3373",
"relation_name":"sibling",
"category":"P3373"
},
{
"sentence":"The committee also introduced, for the first time, the matriarchs, Sarah, Rebekah, Rachel and Leah, into the liturgy, a practice adopted by all Reform siddurim since \"Vetaher Libenu's\" publication, as well as by some Conservative siddurim.",
"entity1":"Q207389",
"entity2":"Q128847",
"entity1_indices":[
83,
89
],
"entity2_indices":[
94,
98
],
"relation":"P3373",
"relation_name":"sibling",
"category":"P3373"
},
{
"sentence":"In chapter 34 of the book \"Gylfaginning\", Hel is listed by High as one of the three children of Loki and Angrboða; the wolf Fenrir, the serpent Jörmungandr, and Hel.",
"entity1":"Q182560",
"entity2":"Q181227",
"entity1_indices":[
124,
130
],
"entity2_indices":[
144,
155
],
"relation":"P3373",
"relation_name":"sibling",
"category":"P3373"
},
{
"sentence":"If Belus was his father, he had Anchinoe, daughter of Nilus as mother, and Danaus, Aegyptus and Phineus as brothers.",
"entity1":"Q210883",
"entity2":"Q404844",
"entity1_indices":[
75,
81
],
"entity2_indices":[
83,
91
],
"relation":"P3373",
"relation_name":"sibling",
"category":"P3373"
},
{
"sentence":"In theory, the \"Oberkommando der Wehrmacht\" (OKW) served as the military General Staff for the German Reich's armed forces, coordinating the \"Wehrmacht\" (\"Heer\", \"Kriegsmarine\", and the \"Luftwaffe\") operations.",
"entity1":"Q151701",
"entity2":"Q128781",
"entity1_indices":[
163,
175
],
"entity2_indices":[
142,
151
],
"relation":"P361",
"relation_name":"part of",
"category":"P361"
},
{
"sentence":"Much later, ezov\/za'atar appears in the 2nd century CE Mishnah as an ingredient in food at that time in Judea ('Uktzin 2:2), while elsewhere in the Talmud there is mention of herbs ground into oil (a preparation called \"mish'cha t'china\" in Aramaic, משחא טחינא), but it is not specified whether this was like the za'atar mix known today.",
"entity1":"Q191825",
"entity2":"Q43290",
"entity1_indices":[
55,
62
],
"entity2_indices":[
148,
154
],
"relation":"P361",
"relation_name":"part of",
"category":"P361"
},
{
"sentence":"It preserves fossils dating back to the Paleogene period, particularly many well-preserved fossil plants from Oligocene strata.",
"entity1":"Q101873",
"entity2":"Q55810",
"entity1_indices":[
110,
119
],
"entity2_indices":[
40,
49
],
"relation":"P361",
"relation_name":"part of",
"category":"P361"
},
{
"sentence":"Their historical areas of settlement were on the Iranian plateau (mainly Iran, Azerbaijan and Afghanistan) and certain neighbouring areas of Asia (such as parts of the Caucasus, Eastern Turkey, Northeast Syria, Uzbekistan, Tajikistan, Bahrain, Oman, northern Iraq, Northwestern and Western Pakistan) reflecting changing geopolitical range of the Persian empires and the Iranian history.",
"entity1":"Q227",
"entity2":"Q18869",
"entity1_indices":[
79,
89
],
"entity2_indices":[
168,
176
],
"relation":"P361",
"relation_name":"part of",
"category":"P361"
},
{
"sentence":"The Zunghar had recently converted to Mahayana Buddhism and their Erdeni Batur believed he could reestablish the 13th-century empire of Genghis Khan.",
"entity1":"Q48362",
"entity2":"Q748",
"entity1_indices":[
38,
46
],
"entity2_indices":[
47,
55
],
"relation":"P361",
"relation_name":"part of",
"category":"P361"
},
{
"sentence":"The National Highway 61 (India) runs from Kohima, the capital of the state of Nagaland and ends at Jhanji.",
"entity1":"Q234056",
"entity2":"Q1599",
"entity1_indices":[
42,
48
],
"entity2_indices":[
78,
86
],
"relation":"P1376",
"relation_name":"capital of",
"category":"P36_P1376"
},
{
"sentence":"Deerfoot-Bad Meat was entered to run against the favourite J.W. Strokes of Birmingham, England and George Irvine of Winnipeg, Manitoba.",
"entity1":"Q2135",
"entity2":"Q1948",
"entity1_indices":[
116,
124
],
"entity2_indices":[
126,
134
],
"relation":"P1376",
"relation_name":"capital of",
"category":"P36_P1376"
},
{
"sentence":"Originally, Craig owned only two stations in Manitoba: CKX-TV, a CBC Television affiliate in Brandon; and CHMI-TV, an independent station (branded as the \"Manitoba Television Network\", or MTN) in Portage la Prairie and serving Winnipeg.",
"entity1":"Q1948",
"entity2":"Q2135",
"entity1_indices":[
45,
53
],
"entity2_indices":[
227,
235
],
"relation":"P36",
"relation_name":"capital",
"category":"P36_P1376"
},
{
"sentence":"It is at Dehradun in Uttarakhand.",
"entity1":"Q199528",
"entity2":"Q1499",
"entity1_indices":[
9,
17
],
"entity2_indices":[
21,
32
],
"relation":"P1376",
"relation_name":"capital of",
"category":"P36_P1376"
},
{
"sentence":"Those lines go all around of the four catalan provinces and some of them go to Zaragoza (Aragón) and Castelló de la Plana and València in País Valencià.",
"entity1":"Q10305",
"entity2":"Q4040",
"entity1_indices":[
79,
87
],
"entity2_indices":[
89,
95
],
"relation":"P1376",
"relation_name":"capital of",
"category":"P36_P1376"
},
{
"sentence":"It was a very ancient place, and is said to have derived its name from Nauplius, the son of Poseidon and Amymone, and the father of Palamedes, though it more probably owed its name, as Strabo has observed, to its harbour.",
"entity1":"Q41127",
"entity2":"Q482096",
"entity1_indices":[
92,
100
],
"entity2_indices":[
105,
112
],
"relation":"P451",
"relation_name":"partner",
"category":"P451"
},
{
"sentence":"Mythological scenes are dominated by images of Dionysos and Aphrodite.",
"entity1":"Q41680",
"entity2":"Q35500",
"entity1_indices":[
47,
55
],
"entity2_indices":[
60,
69
],
"relation":"P451",
"relation_name":"partner",
"category":"P451"
},
{
"sentence":"In the New 52's \"Earth-2\" continuity, Robin is Helena Wayne, daughter of Batman and Catwoman, who was stranded on the Earth of the main continuity and takes the name Huntress.",
"entity1":"Q2695156",
"entity2":"Q158952",
"entity1_indices":[
73,
79
],
"entity2_indices":[
84,
92
],
"relation":"P451",
"relation_name":"partner",
"category":"P451"
},
{
"sentence":"The title characters, Spider-Man and Deadpool, shared the focus of the book.",
"entity1":"Q1631090",
"entity2":"Q79037",
"entity1_indices":[
37,
45
],
"entity2_indices":[
22,
32
],
"relation":"P451",
"relation_name":"partner",
"category":"P451"
},
{
"sentence":"In \"Aeneas Relating to Dido the Disasters of Troy\" (Louvre), Guérin adopted a more sensuous, picturesque style.",
"entity1":"Q82732",
"entity2":"Q905162",
"entity1_indices":[
4,
10
],
"entity2_indices":[
23,
27
],
"relation":"P451",
"relation_name":"partner",
"category":"P451"
},
{
"sentence":"would heavily influence not only Ice-T, but also Eazy-E and N.W.A (most notably in the song \"Boyz-n-the-Hood\") as well as the Beastie Boys on their seminal hardcore hip hop inspired album \"Licensed to Ill\" (1986).",
"entity1":"Q36804",
"entity2":"Q216856",
"entity1_indices":[
49,
55
],
"entity2_indices":[
60,
65
],
"relation":"P463",
"relation_name":"member of",
"category":"P463"
},
{
"sentence":"Too Short, Eazy-E, N.W.A, Keyshia Cole, Digital Underground, JJ Fad, Barry White, The Pointer Sisters and Kendrick Lamar.",
"entity1":"Q36804",
"entity2":"Q216856",
"entity1_indices":[
11,
17
],
"entity2_indices":[
19,
24
],
"relation":"P463",
"relation_name":"member of",
"category":"P463"
},
{
"sentence":"Schiffmacher has claimed members of the Red Hot Chili Peppers and Pearl Jam, as well as Nirvana frontman Kurt Cobain and Motörhead frontman Lemmy, to be amongst his clients.",
"entity1":"Q309926",
"entity2":"Q19697",
"entity1_indices":[
140,
145
],
"entity2_indices":[
121,
130
],
"relation":"P463",
"relation_name":"member of",
"category":"P463"
},
{
"sentence":"During his tenure as the United States Ambassador to Bulgaria from 2002-2005, Bulgaria became a full member of NATO and completed all accession negotiations for European Union membership.",
"entity1":"Q219",
"entity2":"Q7184",
"entity1_indices":[
53,
61
],
"entity2_indices":[
111,
115
],
"relation":"P463",
"relation_name":"member of",
"category":"P463"
},
{
"sentence":"In March 2004, Bulgaria, Romania and Slovenia have become members of NATO.",
"entity1":"Q219",
"entity2":"Q7184",
"entity1_indices":[
15,
23
],
"entity2_indices":[
69,
73
],
"relation":"P463",
"relation_name":"member of",
"category":"P463"
},
{
"sentence":"It manufactured Pattern 1914 Enfield rifles for British forces, and Mosin–Nagant rifles for Russia.",
"entity1":"Q154321",
"entity2":"Q159",
"entity1_indices":[
68,
80
],
"entity2_indices":[
92,
98
],
"relation":"P495",
"relation_name":"country of origin",
"category":"P495"
},
{
"sentence":"Recent intelligence that China is developing targetable anti-ship ballistic missiles based on the DF-21 appears to be shaping the Navy's thinking on the CG(X)'s capabilities, when previously \"Zumwalt\"s air defense was believed to be good enough to justify delaying the introduction of the CG(X).",
"entity1":"Q425558",
"entity2":"Q148",
"entity1_indices":[
98,
103
],
"entity2_indices":[
25,
30
],
"relation":"P495",
"relation_name":"country of origin",
"category":"P495"
},
{
"sentence":"Founded on February 1 1906, ALO spent a number of years in the top divisions of the Dutch Korfball league.",
"entity1":"Q192937",
"entity2":"Q55",
"entity1_indices":[
90,
98
],
"entity2_indices":[
84,
89
],
"relation":"P495",
"relation_name":"country of origin",
"category":"P495"
},
{
"sentence":"Moreover there is also Skiltron who play Scottish Celtic metal who hail from Argentina, Conrad a folk metal band from Barbados, Nine Treasures from China, Orphaned Land from Israel, Myrath from Tunisia, Tengger Cavalry and The Hu from Mongolia.",
"entity1":"Q60042",
"entity2":"Q948",
"entity1_indices":[
182,
188
],
"entity2_indices":[
194,
201
],
"relation":"P495",
"relation_name":"country of origin",
"category":"P495"
},
{
"sentence":"Between 1987 and 1992, Billy worked with Swiss avant-garde outfit Yello.",
"entity1":"Q639301",
"entity2":"Q39",
"entity1_indices":[
66,
71
],
"entity2_indices":[
41,
46
],
"relation":"P495",
"relation_name":"country of origin",
"category":"P495"
},
{
"sentence":"Both Strabo and Pausanias describe Cleonae as a small place; and the former writer, who saw it from the Acrocorinthus, says that it is situated upon a hill surrounded on all sides by buildings, and well walled, so as to deserve the epithet given to it by Homer in the Catalogue of Ships in the \"Iliad\" – ἐϋκτιμένας Κλεωνάς ('well-built Cleonae').",
"entity1":"Q8275",
"entity2":"Q6691",
"entity1_indices":[
295,
300
],
"entity2_indices":[
255,
260
],
"relation":"P50",
"relation_name":"author",
"category":"P50"
},
{
"sentence":"His entire contribution to written history is contained in a single chapter of the \"Annals\" of the historian Tacitus, who describes the plot to kill Agrippina through the mechanism of a collapsing boat.",
"entity1":"Q564358",
"entity2":"Q2161",
"entity1_indices":[
84,
90
],
"entity2_indices":[
109,
116
],
"relation":"P50",
"relation_name":"author",
"category":"P50"
},
{
"sentence":"The album title comes from the Shakespeare play \"Othello\".) \"",
"entity1":"Q26833",
"entity2":"Q692",
"entity1_indices":[
49,
56
],
"entity2_indices":[
31,
42
],
"relation":"P50",
"relation_name":"author",
"category":"P50"
},
{
"sentence":"Pierre Bayle's \"Dictionnaire historique et critique\" (1695–1697; enlarged 1702), with its multiplicity of marginalia and interpretations, offered a uniquely discursive and multifaceted view of knowledge (distinctly at odds with French classicism); it would be a major inspiration for the Enlightenment and Diderot's \"Encyclopédie\".",
"entity1":"Q447",
"entity2":"Q448",
"entity1_indices":[
317,
329
],
"entity2_indices":[
306,
313
],
"relation":"P50",
"relation_name":"author",
"category":"P50"
},
{
"sentence":"Phasis\" is first recorded in Hesiod's \"Theogony\" (c. 700 BC) as a name of the river, not a town.",
"entity1":"Q156498",
"entity2":"Q44233",
"entity1_indices":[
39,
47
],
"entity2_indices":[
29,
35
],
"relation":"P50",
"relation_name":"author",
"category":"P50"
},
{
"sentence":"It has been used in ancient Vedic texts and also the epic Ramayana where the protagonist Rama is said to Dharma manifest in human form.",
"entity1":"Q37293",
"entity2":"Q160213",
"entity1_indices":[
58,
66
],
"entity2_indices":[
89,
93
],
"relation":"P674",
"relation_name":"characters",
"category":"P674"
},
{
"sentence":"Saxo has combined motives from the original Danish poem with motives from the second song in the \"Æneid\", known as the \"nyktomakhi\", where Æneas tells Dido about the battle between the Greeks and the Trojans in Troy.",
"entity1":"Q60220",
"entity2":"Q82732",
"entity1_indices":[
98,
103
],
"entity2_indices":[
139,
144
],
"relation":"P674",
"relation_name":"characters",
"category":"P674"
},
{
"sentence":"The wife of main character Leopold Bloom, she roughly corresponds to Penelope in the \"Odyssey\".",
"entity1":"Q35160",
"entity2":"Q165769",
"entity1_indices":[
86,
93
],
"entity2_indices":[
69,
77
],
"relation":"P674",
"relation_name":"characters",
"category":"P674"
},
{
"sentence":"Lakshmana kills Ravana in the end(deviating from the Ramayana where the hero Rama slays Ravana) and Vibhishana becomes the king of Lanka.",
"entity1":"Q37293",
"entity2":"Q160213",
"entity1_indices":[
53,
61
],
"entity2_indices":[
77,
81
],
"relation":"P674",
"relation_name":"characters",
"category":"P674"
},
{
"sentence":"According to the Byzantine historian Anna Comnena, she was \"like another Pallas, if not a second Athena,\" and, in the \"Alexiad\", Anna attributes to her a quote from the \"Iliad\".",
"entity1":"Q8275",
"entity2":"Q37122",
"entity1_indices":[
170,
175
],
"entity2_indices":[
97,
103
],
"relation":"P674",
"relation_name":"characters",
"category":"P674"
},
{
"sentence":"The former Bundeswehr tower was rented to the firm of Mannesmann (now Vodafone) for mobile phone use.",
"entity1":"Q674911",
"entity2":"Q122141",
"entity1_indices":[
54,
64
],
"entity2_indices":[
70,
78
],
"relation":"P749",
"relation_name":"parent organization",
"category":"P749"
},
{
"sentence":"Boekhoorn's major feat was the €300 million acquisition of Dutch mobile operator Telfort (co-owned by the railways) in 2005 and its subsequent sale nine months later to incumbent telco and Dutch market leader KPN at a valuation of €1.2 billion.",
"entity1":"Q2659137",
"entity2":"Q338633",
"entity1_indices":[
81,
88
],
"entity2_indices":[
209,
212
],
"relation":"P749",
"relation_name":"parent organization",
"category":"P749"
},
{
"sentence":"He first played in an unofficial friendly against the national team of Brittany, France, a side not affiliated with FIFA or UEFA on 28 May 2013.",
"entity1":"Q35572",
"entity2":"Q253414",
"entity1_indices":[
124,
128
],
"entity2_indices":[
116,
120
],
"relation":"P749",
"relation_name":"parent organization",
"category":"P749"
},
{
"sentence":"In his role as Chairman of the convention, he found himself - especially in view of the threats of the Rosenberg party - forced to cooperate with the Ahnenerbe of the SS.",
"entity1":"Q160394",
"entity2":"Q44687",
"entity1_indices":[
150,
159
],
"entity2_indices":[
167,
169
],
"relation":"P749",
"relation_name":"parent organization",
"category":"P749"
},
{
"sentence":"Since the Dayton Agreement in 1996, the airport has a commercial flight business which includes Austrian Airlines, Lufthansa, Air Serbia, Croatia Airlines, Turkish Airlines, Germanwings, and others.",
"entity1":"Q155038",
"entity2":"Q9325",
"entity1_indices":[
174,
185
],
"entity2_indices":[
115,
124
],
"relation":"P749",
"relation_name":"parent organization",
"category":"P749"
}
] |