File size: 76,720 Bytes
945a5ac |
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 |
{"relation": "IsA", "head": "baseball", "tail": "sport"}
{"relation": "IsA", "head": "yo-yo", "tail": "toy"}
{"relation": "CapableOf", "head": "dog", "tail": "bark"}
{"relation": "UsedFor", "head": "pen", "tail": "write"}
{"relation": "HasProperty", "head": "something that be very good", "tail": "good"}
{"relation": "IsA", "head": "dog", "tail": "mammal"}
{"relation": "IsA", "head": "polo", "tail": "game"}
{"relation": "MadeOf", "head": "bottle", "tail": "plastic"}
{"relation": "MadeOf", "head": "book", "tail": "paper"}
{"relation": "HasProperty", "head": "sex", "tail": "fun"}
{"relation": "IsA", "head": "gold", "tail": "metal"}
{"relation": "IsA", "head": "sushi", "tail": "food"}
{"relation": "UsedFor", "head": "telephone", "tail": "communicate"}
{"relation": "HasSubevent", "head": "sleep", "tail": "dream"}
{"relation": "IsA", "head": "soccer", "tail": "sport"}
{"relation": "AtLocation", "head": "fish", "tail": "water"}
{"relation": "IsA", "head": "rose", "tail": "flower"}
{"relation": "AtLocation", "head": "cloud", "tail": "sky"}
{"relation": "IsA", "head": "linux", "tail": "operate system"}
{"relation": "AtLocation", "head": "child", "tail": "school"}
{"relation": "IsA", "head": "fly", "tail": "insect"}
{"relation": "AtLocation", "head": "computer", "tail": "office"}
{"relation": "HasProperty", "head": "apple", "tail": "red"}
{"relation": "AtLocation", "head": "clothe", "tail": "closet"}
{"relation": "AtLocation", "head": "book", "tail": "shelf"}
{"relation": "IsA", "head": "violin", "tail": "string instrument"}
{"relation": "MadeOf", "head": "bottle", "tail": "glass"}
{"relation": "AtLocation", "head": "coat", "tail": "closet"}
{"relation": "AtLocation", "head": "computer", "tail": "library"}
{"relation": "UsedFor", "head": "key", "tail": "open lock"}
{"relation": "CapableOf", "head": "cat", "tail": "hunt mouse"}
{"relation": "UsedFor", "head": "camera", "tail": "take picture"}
{"relation": "HasProperty", "head": "basketball player", "tail": "tall"}
{"relation": "IsA", "head": "bass", "tail": "fish"}
{"relation": "UsedFor", "head": "spoon", "tail": "eat"}
{"relation": "AtLocation", "head": "paper clip", "tail": "desk"}
{"relation": "PartOf", "head": "keyboard", "tail": "computer"}
{"relation": "MadeOf", "head": "paper", "tail": "wood"}
{"relation": "UsedFor", "head": "computer", "tail": "work"}
{"relation": "AtLocation", "head": "shark", "tail": "any ocean"}
{"relation": "CapableOf", "head": "chicken", "tail": "cross road"}
{"relation": "UsedFor", "head": "hammer", "tail": "drive nail"}
{"relation": "AtLocation", "head": "word", "tail": "book"}
{"relation": "UsedFor", "head": "keyboard", "tail": "type"}
{"relation": "AtLocation", "head": "animal", "tail": "zoo"}
{"relation": "UsedFor", "head": "water", "tail": "drink"}
{"relation": "MadeOf", "head": "window", "tail": "glass"}
{"relation": "UsedFor", "head": "net", "tail": "catch fish"}
{"relation": "AtLocation", "head": "dog", "tail": "kennel"}
{"relation": "IsA", "head": "dog", "tail": "animal"}
{"relation": "HasSubevent", "head": "attend school", "tail": "learn"}
{"relation": "AtLocation", "head": "librarian", "tail": "library"}
{"relation": "IsA", "head": "football", "tail": "game"}
{"relation": "AtLocation", "head": "water", "tail": "lake"}
{"relation": "CapableOf", "head": "car", "tail": "go fast"}
{"relation": "HasProperty", "head": "sky", "tail": "blue"}
{"relation": "IsA", "head": "football", "tail": "sport"}
{"relation": "IsA", "head": "love", "tail": "emotion"}
{"relation": "CapableOf", "head": "knife", "tail": "spread butter"}
{"relation": "HasProperty", "head": "music", "tail": "soothe"}
{"relation": "HasProperty", "head": "ball", "tail": "round"}
{"relation": "IsA", "head": "see", "tail": "tool"}
{"relation": "Causes", "head": "do housework", "tail": "clean house"}
{"relation": "IsA", "head": "dog", "tail": "pet"}
{"relation": "IsA", "head": "tennis", "tail": "sport"}
{"relation": "IsA", "head": "lion", "tail": "animal"}
{"relation": "IsA", "head": "statue of liberty", "tail": "gift from france"}
{"relation": "HasA", "head": "bird", "tail": "feather"}
{"relation": "CapableOf", "head": "teacher", "tail": "school student"}
{"relation": "UsedFor", "head": "pool", "tail": "swim"}
{"relation": "UsedFor", "head": "wing", "tail": "fly"}
{"relation": "AtLocation", "head": "shoe", "tail": "closet"}
{"relation": "HasSubevent", "head": "sleep", "tail": "snore"}
{"relation": "CapableOf", "head": "human", "tail": "die only once"}
{"relation": "HasPrerequisite", "head": "have checkup", "tail": "go to doctor"}
{"relation": "HasPrerequisite", "head": "have haircut", "tail": "go to barber"}
{"relation": "UsedFor", "head": "bus stop", "tail": "wait for bus"}
{"relation": "UsedFor", "head": "book", "tail": "learn"}
{"relation": "AtLocation", "head": "chair", "tail": "office"}
{"relation": "UsedFor", "head": "see", "tail": "cut wood"}
{"relation": "HasA", "head": "plant", "tail": "leave"}
{"relation": "ReceivesAction", "head": "book", "tail": "read"}
{"relation": "CapableOf", "head": "pilot", "tail": "land plane"}
{"relation": "HasProperty", "head": "doctor", "tail": "smart"}
{"relation": "HasPrerequisite", "head": "see exhibit", "tail": "go to museum"}
{"relation": "CapableOf", "head": "cup", "tail": "hold liquid"}
{"relation": "AtLocation", "head": "food", "tail": "refrigerator"}
{"relation": "MadeOf", "head": "car", "tail": "metal"}
{"relation": "IsA", "head": "trout", "tail": "fish"}
{"relation": "MadeOf", "head": "cheese", "tail": "milk"}
{"relation": "HasProperty", "head": "sunset", "tail": "pretty"}
{"relation": "HasPrerequisite", "head": "see band", "tail": "buy ticket"}
{"relation": "HasA", "head": "car", "tail": "seat"}
{"relation": "CapableOf", "head": "boy", "tail": "date girl"}
{"relation": "Causes", "head": "read", "tail": "learn"}
{"relation": "Causes", "head": "do housework", "tail": "have clean house"}
{"relation": "UsedFor", "head": "bed", "tail": "have sex"}
{"relation": "IsA", "head": "turtle", "tail": "reptile"}
{"relation": "UsedFor", "head": "match", "tail": "start fire"}
{"relation": "UsedFor", "head": "carpet", "tail": "cover floor"}
{"relation": "AtLocation", "head": "knife", "tail": "kitchen"}
{"relation": "HasSubevent", "head": "eat", "tail": "chew"}
{"relation": "IsA", "head": "sex", "tail": "activity"}
{"relation": "IsA", "head": "vegetable", "tail": "food"}
{"relation": "PartOf", "head": "toe", "tail": "foot"}
{"relation": "UsedFor", "head": "book", "tail": "read"}
{"relation": "CapableOf", "head": "pilot", "tail": "fly airplane"}
{"relation": "IsA", "head": "statue of liberty", "tail": "in new york"}
{"relation": "HasPrerequisite", "head": "maintain muscle strength", "tail": "exercise"}
{"relation": "HasA", "head": "guitar", "tail": "six string"}
{"relation": "CapableOf", "head": "magician", "tail": "fool audience"}
{"relation": "HasPrerequisite", "head": "listen to music", "tail": "turn on radio"}
{"relation": "IsA", "head": "doll", "tail": "toy"}
{"relation": "HasA", "head": "ocean", "tail": "salt water"}
{"relation": "HasPrerequisite", "head": "commit perjury", "tail": "lie"}
{"relation": "UsedFor", "head": "cloth", "tail": "clean"}
{"relation": "CapableOf", "head": "key", "tail": "open door"}
{"relation": "UsedFor", "head": "cloth", "tail": "make clothe"}
{"relation": "Causes", "head": "smoke", "tail": "lung cancer"}
{"relation": "HasPrerequisite", "head": "buy something", "tail": "have money"}
{"relation": "HasPrerequisite", "head": "sleep", "tail": "close your eye"}
{"relation": "AtLocation", "head": "pen", "tail": "office"}
{"relation": "IsA", "head": "rock", "tail": "music"}
{"relation": "UsedFor", "head": "pan", "tail": "cook"}
{"relation": "Causes", "head": "exercise", "tail": "sweat"}
{"relation": "CapableOf", "head": "student", "tail": "study"}
{"relation": "AtLocation", "head": "car", "tail": "park lot"}
{"relation": "AtLocation", "head": "bird", "tail": "sky"}
{"relation": "AtLocation", "head": "book", "tail": "library"}
{"relation": "IsA", "head": "venus", "tail": "planet"}
{"relation": "HasA", "head": "swiss cheese", "tail": "hole"}
{"relation": "HasProperty", "head": "fruit", "tail": "good for you"}
{"relation": "UsedFor", "head": "boat", "tail": "travel on water"}
{"relation": "AtLocation", "head": "seven day", "tail": "week"}
{"relation": "HasPrerequisite", "head": "have physical exam", "tail": "go to doctor"}
{"relation": "IsA", "head": "rain", "tail": "water"}
{"relation": "CapableOf", "head": "host", "tail": "welcome guest"}
{"relation": "CapableOf", "head": "key", "tail": "open lock"}
{"relation": "UsedFor", "head": "saddle", "tail": "ride horse"}
{"relation": "CausesDesire", "head": "love", "tail": "kiss someone"}
{"relation": "HasSubevent", "head": "tickle", "tail": "laugh"}
{"relation": "AtLocation", "head": "bookshelf", "tail": "library"}
{"relation": "AtLocation", "head": "carpet", "tail": "house"}
{"relation": "AtLocation", "head": "glass", "tail": "cupboard"}
{"relation": "AtLocation", "head": "shirt", "tail": "closet"}
{"relation": "HasProperty", "head": "apple", "tail": "green"}
{"relation": "IsA", "head": "peach", "tail": "fruit"}
{"relation": "UsedFor", "head": "book", "tail": "study"}
{"relation": "IsA", "head": "silver", "tail": "metal"}
{"relation": "IsA", "head": "finch", "tail": "bird"}
{"relation": "CapableOf", "head": "cat", "tail": "drink water"}
{"relation": "HasA", "head": "tree", "tail": "leave"}
{"relation": "HasA", "head": "horse", "tail": "four leg"}
{"relation": "AtLocation", "head": "seven continent", "tail": "earth"}
{"relation": "IsA", "head": "corn", "tail": "vegetable"}
{"relation": "IsA", "head": "murder", "tail": "crime"}
{"relation": "AtLocation", "head": "shingle", "tail": "roof"}
{"relation": "HasPrerequisite", "head": "diminish your own hunger", "tail": "eat"}
{"relation": "AtLocation", "head": "someone", "tail": "hospital"}
{"relation": "HasSubevent", "head": "start family", "tail": "have sex"}
{"relation": "UsedFor", "head": "fruit", "tail": "eat"}
{"relation": "HasPrerequisite", "head": "have checkup", "tail": "make doctor appointment"}
{"relation": "AtLocation", "head": "bicycle", "tail": "garage"}
{"relation": "AtLocation", "head": "money", "tail": "bank"}
{"relation": "AtLocation", "head": "cat", "tail": "bed"}
{"relation": "AtLocation", "head": "water", "tail": "river"}
{"relation": "IsA", "head": "golden retriever", "tail": "dog"}
{"relation": "IsA", "head": "blue", "tail": "color"}
{"relation": "CapableOf", "head": "chicken", "tail": "lie egg"}
{"relation": "AtLocation", "head": "bed", "tail": "bedroom"}
{"relation": "IsA", "head": "iron", "tail": "metal"}
{"relation": "IsA", "head": "java", "tail": "program language"}
{"relation": "IsA", "head": "ostrich", "tail": "bird"}
{"relation": "IsA", "head": "ant", "tail": "insect"}
{"relation": "HasA", "head": "house", "tail": "window"}
{"relation": "HasA", "head": "car", "tail": "four wheel"}
{"relation": "AtLocation", "head": "jellyfish", "tail": "most ocean"}
{"relation": "CapableOf", "head": "dog", "tail": "guide blind person"}
{"relation": "AtLocation", "head": "boat", "tail": "water"}
{"relation": "HasA", "head": "earth", "tail": "one moon"}
{"relation": "HasA", "head": "bicycle", "tail": "two wheel"}
{"relation": "HasPrerequisite", "head": "go to sport event", "tail": "buy ticket"}
{"relation": "HasPrerequisite", "head": "dream", "tail": "sleep"}
{"relation": "IsA", "head": "music", "tail": "sound"}
{"relation": "IsA", "head": "saxophone", "tail": "musical instrument"}
{"relation": "Causes", "head": "light match", "tail": "fire"}
{"relation": "CapableOf", "head": "dealer", "tail": "deal card"}
{"relation": "HasPrerequisite", "head": "go to bed", "tail": "turn off light"}
{"relation": "IsA", "head": "chicken", "tail": "food"}
{"relation": "UsedFor", "head": "voice", "tail": "sing"}
{"relation": "UsedFor", "head": "computer", "tail": "play game"}
{"relation": "HasProperty", "head": "earth", "tail": "spherical"}
{"relation": "AtLocation", "head": "elephant", "tail": "zoo"}
{"relation": "AtLocation", "head": "prisoner", "tail": "jail"}
{"relation": "UsedFor", "head": "key", "tail": "open door"}
{"relation": "IsA", "head": "apple", "tail": "fruit"}
{"relation": "AtLocation", "head": "airplane", "tail": "sky"}
{"relation": "Desires", "head": "child", "tail": "play with toy"}
{"relation": "Causes", "head": "go to get haircut", "tail": "your hair will be short"}
{"relation": "MotivatedByGoal", "head": "play", "tail": "have some fun"}
{"relation": "CapableOf", "head": "man", "tail": "father child"}
{"relation": "IsA", "head": "biology", "tail": "science"}
{"relation": "HasPrerequisite", "head": "exercise", "tail": "energy"}
{"relation": "CapableOf", "head": "dog", "tail": "guard house"}
{"relation": "AtLocation", "head": "tile", "tail": "roof"}
{"relation": "IsA", "head": "telephone", "tail": "communication device"}
{"relation": "AtLocation", "head": "plate", "tail": "cupboard"}
{"relation": "HasA", "head": "fruit", "tail": "seed"}
{"relation": "IsA", "head": "mastercard", "tail": "credit card"}
{"relation": "Causes", "head": "fall", "tail": "injury"}
{"relation": "HasSubevent", "head": "stop your bicycle", "tail": "apply brake"}
{"relation": "IsA", "head": "mushroom", "tail": "fungus"}
{"relation": "MotivatedByGoal", "head": "read newspaper", "tail": "be inform"}
{"relation": "CapableOf", "head": "clock", "tail": "tell time"}
{"relation": "HasSubevent", "head": "run", "tail": "sweat"}
{"relation": "CapableOf", "head": "cat", "tail": "eat mouse"}
{"relation": "IsA", "head": "pistol", "tail": "gun"}
{"relation": "UsedFor", "head": "glass", "tail": "drink"}
{"relation": "UsedFor", "head": "play sport", "tail": "fun"}
{"relation": "AtLocation", "head": "human", "tail": "school"}
{"relation": "AtLocation", "head": "literature", "tail": "library"}
{"relation": "AtLocation", "head": "glass", "tail": "cabinet"}
{"relation": "AtLocation", "head": "cat", "tail": "lap"}
{"relation": "UsedFor", "head": "jump rope", "tail": "exercise"}
{"relation": "Causes", "head": "play", "tail": "fun"}
{"relation": "IsA", "head": "poodle", "tail": "dog"}
{"relation": "IsA", "head": "dolphin", "tail": "mammal"}
{"relation": "AtLocation", "head": "nurse", "tail": "hospital"}
{"relation": "IsA", "head": "pineapple", "tail": "fruit"}
{"relation": "Causes", "head": "kill", "tail": "death"}
{"relation": "PartOf", "head": "finger", "tail": "hand"}
{"relation": "PartOf", "head": "page", "tail": "book"}
{"relation": "AtLocation", "head": "star", "tail": "space"}
{"relation": "HasSubevent", "head": "bury cat", "tail": "dig hole"}
{"relation": "IsA", "head": "goldfish", "tail": "carp"}
{"relation": "HasA", "head": "dice", "tail": "six side"}
{"relation": "HasSubevent", "head": "light fire", "tail": "strike match"}
{"relation": "HasSubevent", "head": "wash your car", "tail": "get wet"}
{"relation": "AtLocation", "head": "chimney", "tail": "roof"}
{"relation": "AtLocation", "head": "bicycle", "tail": "street"}
{"relation": "AtLocation", "head": "lawn mower", "tail": "garage"}
{"relation": "Causes", "head": "go on vacation", "tail": "relaxation"}
{"relation": "HasProperty", "head": "circle", "tail": "round"}
{"relation": "AtLocation", "head": "tablecloth", "tail": "table"}
{"relation": "HasPrerequisite", "head": "pray", "tail": "believe in god"}
{"relation": "HasProperty", "head": "sex", "tail": "enjoyable"}
{"relation": "CapableOf", "head": "pilot", "tail": "land airplane"}
{"relation": "AtLocation", "head": "galaxy", "tail": "universe"}
{"relation": "CapableOf", "head": "person", "tail": "voice opinion"}
{"relation": "HasA", "head": "cat", "tail": "whisker"}
{"relation": "HasPrerequisite", "head": "find lose item", "tail": "search"}
{"relation": "HasSubevent", "head": "use computer", "tail": "type on keyboard"}
{"relation": "AtLocation", "head": "cat", "tail": "windowsill"}
{"relation": "AtLocation", "head": "bride", "tail": "wed"}
{"relation": "HasProperty", "head": "water", "tail": "essential to all life"}
{"relation": "HasPrerequisite", "head": "watch movie", "tail": "buy ticket"}
{"relation": "UsedFor", "head": "needle", "tail": "sew"}
{"relation": "CapableOf", "head": "pilot", "tail": "fly plane"}
{"relation": "HasPrerequisite", "head": "go to opera", "tail": "buy ticket"}
{"relation": "CapableOf", "head": "doctor", "tail": "help sick person"}
{"relation": "UsedFor", "head": "bicycle storage area", "tail": "store bicycle"}
{"relation": "IsA", "head": "computer", "tail": "electronic device"}
{"relation": "AtLocation", "head": "star", "tail": "sky"}
{"relation": "AtLocation", "head": "bread", "tail": "breadbox"}
{"relation": "AtLocation", "head": "dresser", "tail": "bedroom"}
{"relation": "AtLocation", "head": "toilet", "tail": "bathroom"}
{"relation": "AtLocation", "head": "window", "tail": "house"}
{"relation": "IsA", "head": "tuba", "tail": "musical instrument"}
{"relation": "IsA", "head": "orchid", "tail": "flower"}
{"relation": "UsedFor", "head": "kettle", "tail": "boil water"}
{"relation": "HasProperty", "head": "water", "tail": "liquid"}
{"relation": "CapableOf", "head": "person", "tail": "eat"}
{"relation": "IsA", "head": "badminton", "tail": "sport"}
{"relation": "IsA", "head": "golf", "tail": "sport"}
{"relation": "IsA", "head": "canada", "tail": "country"}
{"relation": "RelatedTo", "head": "home", "tail": "family"}
{"relation": "Causes", "head": "sex", "tail": "child"}
{"relation": "Causes", "head": "read", "tail": "learn something"}
{"relation": "CapableOf", "head": "gardener", "tail": "water plant"}
{"relation": "AtLocation", "head": "neighbour", "tail": "door"}
{"relation": "IsA", "head": "parakeet", "tail": "bird"}
{"relation": "Causes", "head": "have haircut", "tail": "have short hair"}
{"relation": "HasPrerequisite", "head": "go for drive", "tail": "get into car"}
{"relation": "CapableOf", "head": "dog", "tail": "be pet"}
{"relation": "AtLocation", "head": "pickle", "tail": "jar"}
{"relation": "AtLocation", "head": "opera singer", "tail": "opera"}
{"relation": "AtLocation", "head": "something", "tail": "something else"}
{"relation": "HasA", "head": "bottle", "tail": "liquid"}
{"relation": "Causes", "head": "tickle", "tail": "laughter"}
{"relation": "HasPrerequisite", "head": "go to bed", "tail": "turn out light"}
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "apply brake"}
{"relation": "AtLocation", "head": "bird", "tail": "roof"}
{"relation": "AtLocation", "head": "plate", "tail": "table"}
{"relation": "UsedFor", "head": "saw", "tail": "cut wood"}
{"relation": "CapableOf", "head": "girl", "tail": "wear dress"}
{"relation": "HasPrerequisite", "head": "pretend", "tail": "imagine"}
{"relation": "UsedFor", "head": "table", "tail": "put thing on"}
{"relation": "CapableOf", "head": "bomb", "tail": "destroy city"}
{"relation": "IsA", "head": "yoyo", "tail": "toy"}
{"relation": "CapableOf", "head": "chicken", "tail": "produce egg"}
{"relation": "HasSubevent", "head": "commit perjury", "tail": "lie"}
{"relation": "AtLocation", "head": "key", "tail": "pocket"}
{"relation": "AtLocation", "head": "jellyfish", "tail": "aquarium"}
{"relation": "AtLocation", "head": "potato", "tail": "kitchen"}
{"relation": "AtLocation", "head": "sink", "tail": "kitchen"}
{"relation": "AtLocation", "head": "wallet", "tail": "pocket"}
{"relation": "AtLocation", "head": "money", "tail": "wallet"}
{"relation": "IsA", "head": "horn", "tail": "musical instrument"}
{"relation": "AtLocation", "head": "build", "tail": "city"}
{"relation": "MadeOf", "head": "snowman", "tail": "snow"}
{"relation": "IsA", "head": "tree", "tail": "plant"}
{"relation": "AtLocation", "head": "book", "tail": "bookshelf"}
{"relation": "Causes", "head": "smoke", "tail": "cancer"}
{"relation": "CapableOf", "head": "person", "tail": "love"}
{"relation": "UsedFor", "head": "weapon", "tail": "kill"}
{"relation": "PartOf", "head": "tire", "tail": "car"}
{"relation": "IsA", "head": "baseball", "tail": "game"}
{"relation": "HasProperty", "head": "horse", "tail": "brown"}
{"relation": "HasA", "head": "cat", "tail": "four leg"}
{"relation": "HasProperty", "head": "glue", "tail": "sticky"}
{"relation": "HasProperty", "head": "world", "tail": "round"}
{"relation": "HasPrerequisite", "head": "make person laugh", "tail": "tell joke"}
{"relation": "AtLocation", "head": "human", "tail": "love"}
{"relation": "HasSubevent", "head": "gather energy for tomorrow", "tail": "sleep"}
{"relation": "AtLocation", "head": "car", "tail": "freeway"}
{"relation": "HasSubevent", "head": "read", "tail": "turn page"}
{"relation": "UsedFor", "head": "guitar", "tail": "make music"}
{"relation": "AtLocation", "head": "frisbee", "tail": "park"}
{"relation": "HasPrerequisite", "head": "read newspaper", "tail": "get newspaper"}
{"relation": "HasProperty", "head": "wheel", "tail": "round"}
{"relation": "HasPrerequisite", "head": "go for haircut", "tail": "go to barber"}
{"relation": "HasSubevent", "head": "breathe", "tail": "inhale"}
{"relation": "CapableOf", "head": "comb", "tail": "part hair"}
{"relation": "IsA", "head": "eiffel tower", "tail": "in paris"}
{"relation": "CapableOf", "head": "person", "tail": "catch cold"}
{"relation": "AtLocation", "head": "stapler", "tail": "your desk"}
{"relation": "HasProperty", "head": "sex", "tail": "pleasurable"}
{"relation": "IsA", "head": "sushi", "tail": "japanese food"}
{"relation": "HasProperty", "head": "paper", "tail": "crumple"}
{"relation": "IsA", "head": "ping pong", "tail": "game"}
{"relation": "UsedFor", "head": "double edge razor", "tail": "shave"}
{"relation": "HasPrerequisite", "head": "rest", "tail": "lie down"}
{"relation": "CapableOf", "head": "person", "tail": "cross street"}
{"relation": "UsedFor", "head": "go to sleep", "tail": "rest"}
{"relation": "UsedFor", "head": "chess board", "tail": "play chess"}
{"relation": "UsedFor", "head": "park area", "tail": "park car"}
{"relation": "AtLocation", "head": "student", "tail": "classroom"}
{"relation": "AtLocation", "head": "human", "tail": "country"}
{"relation": "AtLocation", "head": "human", "tail": "home"}
{"relation": "AtLocation", "head": "potato", "tail": "restaurant"}
{"relation": "AtLocation", "head": "state", "tail": "country"}
{"relation": "AtLocation", "head": "stapler", "tail": "desk"}
{"relation": "PartOf", "head": "book", "tail": "library"}
{"relation": "IsA", "head": "gravity", "tail": "force"}
{"relation": "IsA", "head": "woodwind", "tail": "instrument"}
{"relation": "IsA", "head": "piano", "tail": "instrument"}
{"relation": "IsA", "head": "guitar", "tail": "string instrument"}
{"relation": "IsA", "head": "anger", "tail": "emotion"}
{"relation": "ReceivesAction", "head": "food", "tail": "eat"}
{"relation": "CapableOf", "head": "cat", "tail": "catch mouse"}
{"relation": "AtLocation", "head": "toilet paper", "tail": "bathroom"}
{"relation": "AtLocation", "head": "giraffe", "tail": "zoo"}
{"relation": "IsA", "head": "china", "tail": "country"}
{"relation": "HasProperty", "head": "day", "tail": "bright"}
{"relation": "IsA", "head": "banana", "tail": "fruit"}
{"relation": "AtLocation", "head": "pillow", "tail": "bedroom"}
{"relation": "UsedFor", "head": "horse", "tail": "ride"}
{"relation": "IsA", "head": "christianity", "tail": "religion"}
{"relation": "AtLocation", "head": "food", "tail": "supermarket"}
{"relation": "AtLocation", "head": "eiffel tower", "tail": "paris"}
{"relation": "AtLocation", "head": "food", "tail": "table"}
{"relation": "AtLocation", "head": "grass", "tail": "park"}
{"relation": "NotIsA", "head": "earth", "tail": "perfect sphere"}
{"relation": "AtLocation", "head": "milk", "tail": "fridge"}
{"relation": "IsA", "head": "plastic", "tail": "material"}
{"relation": "AtLocation", "head": "black hole", "tail": "space"}
{"relation": "AtLocation", "head": "criminal", "tail": "jail"}
{"relation": "AtLocation", "head": "car", "tail": "car show"}
{"relation": "Causes", "head": "play game with your friend", "tail": "fun"}
{"relation": "AtLocation", "head": "creek", "tail": "forest"}
{"relation": "AtLocation", "head": "bowl", "tail": "cupboard"}
{"relation": "HasPrerequisite", "head": "contemplate", "tail": "think"}
{"relation": "AtLocation", "head": "coffee cup", "tail": "desk"}
{"relation": "CapableOf", "head": "paint", "tail": "coat wall"}
{"relation": "UsedFor", "head": "school", "tail": "learn"}
{"relation": "UsedFor", "head": "wine", "tail": "drink"}
{"relation": "AtLocation", "head": "peanut butter", "tail": "jar"}
{"relation": "AtLocation", "head": "seat", "tail": "theatre"}
{"relation": "HasPrerequisite", "head": "pass your university exam", "tail": "study"}
{"relation": "UsedFor", "head": "canvas", "tail": "paint on"}
{"relation": "HasA", "head": "book", "tail": "knowledge"}
{"relation": "HasSubevent", "head": "climb", "tail": "fall"}
{"relation": "HasSubevent", "head": "listen to music", "tail": "dance"}
{"relation": "CausesDesire", "head": "be tire", "tail": "have rest"}
{"relation": "Causes", "head": "apply for job", "tail": "get job"}
{"relation": "AtLocation", "head": "someone", "tail": "museum"}
{"relation": "AtLocation", "head": "letter", "tail": "post office"}
{"relation": "HasPrerequisite", "head": "get up early", "tail": "set alarm clock"}
{"relation": "Causes", "head": "maintain good health", "tail": "long life"}
{"relation": "HasPrerequisite", "head": "go see play", "tail": "buy ticket"}
{"relation": "CapableOf", "head": "horse", "tail": "jump fence"}
{"relation": "HasSubevent", "head": "have rest", "tail": "close your eye"}
{"relation": "UsedFor", "head": "chest of drawer", "tail": "store clothe"}
{"relation": "AtLocation", "head": "motherboard", "tail": "computer"}
{"relation": "AtLocation", "head": "7 continent", "tail": "earth"}
{"relation": "AtLocation", "head": "capital", "tail": "country"}
{"relation": "IsA", "head": "college", "tail": "place"}
{"relation": "CapableOf", "head": "child", "tail": "share toy"}
{"relation": "IsA", "head": "kiss", "tail": "sign of affection"}
{"relation": "HasProperty", "head": "fruit", "tail": "healthy"}
{"relation": "HasProperty", "head": "puppy", "tail": "cute"}
{"relation": "UsedFor", "head": "wrench", "tail": "tighten bolt"}
{"relation": "CapableOf", "head": "ball", "tail": "bounce"}
{"relation": "IsA", "head": "necklace", "tail": "jewelry"}
{"relation": "HasProperty", "head": "sex", "tail": "good"}
{"relation": "IsA", "head": "lion", "tail": "carnivore"}
{"relation": "IsA", "head": "dog", "tail": "man best friend"}
{"relation": "HasPrerequisite", "head": "jump out of window", "tail": "open window"}
{"relation": "UsedFor", "head": "tissue holder", "tail": "hold tissue"}
{"relation": "Desires", "head": "person", "tail": "clothe"}
{"relation": "HasPrerequisite", "head": "pass course", "tail": "study"}
{"relation": "AtLocation", "head": "water", "tail": "pool"}
{"relation": "AtLocation", "head": "snow", "tail": "mountain"}
{"relation": "AtLocation", "head": "lizard", "tail": "dessert"}
{"relation": "PartOf", "head": "cpu", "tail": "computer"}
{"relation": "AtLocation", "head": "whale", "tail": "ocean"}
{"relation": "IsA", "head": "elementary school", "tail": "school"}
{"relation": "IsA", "head": "soup", "tail": "food"}
{"relation": "AtLocation", "head": "student", "tail": "school"}
{"relation": "UsedFor", "head": "pencil", "tail": "write"}
{"relation": "CapableOf", "head": "dog", "tail": "run"}
{"relation": "CapableOf", "head": "plane", "tail": "fly"}
{"relation": "PartOf", "head": "nose", "tail": "face"}
{"relation": "IsA", "head": "chess", "tail": "game"}
{"relation": "IsA", "head": "rabbit", "tail": "mammal"}
{"relation": "IsA", "head": "cat", "tail": "animal"}
{"relation": "IsA", "head": "butterfly", "tail": "insect"}
{"relation": "HasPrerequisite", "head": "go for drive", "tail": "get car"}
{"relation": "ReceivesAction", "head": "hat", "tail": "wear on head"}
{"relation": "IsA", "head": "rifle", "tail": "gun"}
{"relation": "IsA", "head": "robin", "tail": "bird"}
{"relation": "HasA", "head": "woman", "tail": "baby"}
{"relation": "ReceivesAction", "head": "car", "tail": "drive"}
{"relation": "HasProperty", "head": "planet earth", "tail": "round"}
{"relation": "HasSubevent", "head": "walk in rain", "tail": "get wet"}
{"relation": "HasProperty", "head": "coffee", "tail": "serve hot"}
{"relation": "IsA", "head": "highway", "tail": "road"}
{"relation": "IsA", "head": "ball", "tail": "toy"}
{"relation": "UsedFor", "head": "hammer", "tail": "pound nail"}
{"relation": "AtLocation", "head": "telephone", "tail": "your desk"}
{"relation": "CapableOf", "head": "teacher", "tail": "teach student"}
{"relation": "HasSubevent", "head": "awake", "tail": "yawn"}
{"relation": "AtLocation", "head": "door", "tail": "build"}
{"relation": "CapableOf", "head": "cat", "tail": "corner mouse"}
{"relation": "AtLocation", "head": "dust bunny", "tail": "bed"}
{"relation": "IsA", "head": "butter", "tail": "food"}
{"relation": "AtLocation", "head": "student", "tail": "university"}
{"relation": "Causes", "head": "procreate", "tail": "have child"}
{"relation": "AtLocation", "head": "chair", "tail": "desk"}
{"relation": "IsA", "head": "bottle", "tail": "container"}
{"relation": "AtLocation", "head": "slide", "tail": "park"}
{"relation": "HasSubevent", "head": "play game", "tail": "fun"}
{"relation": "HasA", "head": "guitar", "tail": "6 string"}
{"relation": "HasPrerequisite", "head": "sleep", "tail": "close eye"}
{"relation": "HasProperty", "head": "basketball", "tail": "round"}
{"relation": "AtLocation", "head": "rock", "tail": "mountain"}
{"relation": "Causes", "head": "go to zoo", "tail": "see animal"}
{"relation": "CapableOf", "head": "brake", "tail": "slow car"}
{"relation": "HasPrerequisite", "head": "pass class", "tail": "study"}
{"relation": "HasPrerequisite", "head": "see old thing", "tail": "go to museum"}
{"relation": "HasSubevent", "head": "meet person", "tail": "shake their hand"}
{"relation": "HasProperty", "head": "needle", "tail": "sharp"}
{"relation": "HasSubevent", "head": "play game", "tail": "win"}
{"relation": "UsedFor", "head": "ocean", "tail": "sail"}
{"relation": "CapableOf", "head": "passenger", "tail": "board airplane"}
{"relation": "HasSubevent", "head": "get job", "tail": "interview"}
{"relation": "CapableOf", "head": "car", "tail": "crash"}
{"relation": "UsedFor", "head": "bank", "tail": "store money"}
{"relation": "HasSubevent", "head": "commit suicide", "tail": "die"}
{"relation": "HasA", "head": "triangle", "tail": "three side"}
{"relation": "ReceivesAction", "head": "book", "tail": "write"}
{"relation": "CapableOf", "head": "miner", "tail": "mine coal"}
{"relation": "AtLocation", "head": "tool", "tail": "garage"}
{"relation": "HasSubevent", "head": "enjoy film", "tail": "laugh"}
{"relation": "HasSubevent", "head": "dream", "tail": "sleep"}
{"relation": "CapableOf", "head": "shovel", "tail": "dig hole"}
{"relation": "HasProperty", "head": "cookie", "tail": "sweet"}
{"relation": "MotivatedByGoal", "head": "urinate", "tail": "your bladder be full"}
{"relation": "Causes", "head": "go to laundromat", "tail": "clean clothe"}
{"relation": "Causes", "head": "play violin", "tail": "music"}
{"relation": "UsedFor", "head": "write instrument", "tail": "write"}
{"relation": "HasProperty", "head": "tack", "tail": "sharp"}
{"relation": "UsedFor", "head": "pub", "tail": "have drink"}
{"relation": "HasSubevent", "head": "agree with someone", "tail": "nod"}
{"relation": "AtLocation", "head": "sand", "tail": "desert"}
{"relation": "IsA", "head": "restaurant", "tail": "place"}
{"relation": "UsedFor", "head": "meat", "tail": "eat"}
{"relation": "HasPrerequisite", "head": "go to movie", "tail": "buy ticket"}
{"relation": "CapableOf", "head": "screwdriver", "tail": "turn screw"}
{"relation": "Causes", "head": "stay healthy", "tail": "long life"}
{"relation": "CapableOf", "head": "tongue", "tail": "taste food"}
{"relation": "CapableOf", "head": "pianist", "tail": "play piano"}
{"relation": "IsA", "head": "salad", "tail": "food"}
{"relation": "HasSubevent", "head": "die", "tail": "stop breathe"}
{"relation": "HasProperty", "head": "school bus", "tail": "yellow"}
{"relation": "CapableOf", "head": "gun", "tail": "kill person"}
{"relation": "AtLocation", "head": "mouse", "tail": "garage"}
{"relation": "AtLocation", "head": "lock", "tail": "door"}
{"relation": "AtLocation", "head": "crab", "tail": "sand"}
{"relation": "AtLocation", "head": "corner cupboard", "tail": "kitchen"}
{"relation": "AtLocation", "head": "water", "tail": "waterfall"}
{"relation": "CapableOf", "head": "bomb", "tail": "explode"}
{"relation": "PartOf", "head": "cornea", "tail": "eye"}
{"relation": "IsA", "head": "tomato", "tail": "vegetable"}
{"relation": "HasFirstSubevent", "head": "wake up", "tail": "open your eye"}
{"relation": "MotivatedByGoal", "head": "sleep", "tail": "rest"}
{"relation": "IsA", "head": "egg", "tail": "food"}
{"relation": "UsedFor", "head": "chair", "tail": "sit"}
{"relation": "AtLocation", "head": "leaf", "tail": "tree"}
{"relation": "MadeOf", "head": "bread", "tail": "flour"}
{"relation": "UsedFor", "head": "fry pan", "tail": "cook"}
{"relation": "PartOf", "head": "arm", "tail": "body"}
{"relation": "CapableOf", "head": "tree", "tail": "grow"}
{"relation": "CapableOf", "head": "carpenter", "tail": "build house"}
{"relation": "IsA", "head": "green", "tail": "color"}
{"relation": "UsedFor", "head": "bed", "tail": "sleep"}
{"relation": "UsedFor", "head": "blanket", "tail": "sleep"}
{"relation": "CapableOf", "head": "baby", "tail": "cry"}
{"relation": "AtLocation", "head": "lion", "tail": "zoo"}
{"relation": "PartOf", "head": "monitor", "tail": "computer"}
{"relation": "IsA", "head": "islam", "tail": "religion"}
{"relation": "CapableOf", "head": "human", "tail": "eat"}
{"relation": "PartOf", "head": "usenet newsgroup", "tail": "usenet"}
{"relation": "IsA", "head": "san francisco", "tail": "city"}
{"relation": "HasSubevent", "head": "have sex", "tail": "have orgasm"}
{"relation": "IsA", "head": "boat", "tail": "on water"}
{"relation": "CapableOf", "head": "man", "tail": "date woman"}
{"relation": "HasProperty", "head": "sport", "tail": "fun"}
{"relation": "UsedFor", "head": "computer", "tail": "communication"}
{"relation": "HasA", "head": "dog", "tail": "four leg"}
{"relation": "CapableOf", "head": "farmer", "tail": "farm land"}
{"relation": "CapableOf", "head": "match", "tail": "light candle"}
{"relation": "IsA", "head": "air", "tail": "gas"}
{"relation": "HasPrerequisite", "head": "snore", "tail": "sleep"}
{"relation": "HasPrerequisite", "head": "drive", "tail": "get in car"}
{"relation": "AtLocation", "head": "brain", "tail": "head"}
{"relation": "HasA", "head": "pen", "tail": "ink"}
{"relation": "HasPrerequisite", "head": "visit other country", "tail": "travel"}
{"relation": "IsA", "head": "dentist", "tail": "doctor"}
{"relation": "IsA", "head": "hockey", "tail": "sport"}
{"relation": "HasPrerequisite", "head": "empty your bladder", "tail": "go to bathroom"}
{"relation": "CapableOf", "head": "thief", "tail": "case house"}
{"relation": "ReceivesAction", "head": "apple", "tail": "eat"}
{"relation": "AtLocation", "head": "neighbor", "tail": "door"}
{"relation": "CapableOf", "head": "passenger", "tail": "board plane"}
{"relation": "AtLocation", "head": "hanger", "tail": "closet"}
{"relation": "HasSubevent", "head": "read magazine", "tail": "turn page"}
{"relation": "CapableOf", "head": "babysitter", "tail": "mind baby"}
{"relation": "CapableOf", "head": "boy", "tail": "kiss girl"}
{"relation": "HasSubevent", "head": "skate", "tail": "fall down"}
{"relation": "IsA", "head": "french", "tail": "language"}
{"relation": "UsedFor", "head": "bar stool", "tail": "sit on"}
{"relation": "HasSubevent", "head": "play tennis", "tail": "hit ball"}
{"relation": "Causes", "head": "see your favorite show", "tail": "laugh"}
{"relation": "Causes", "head": "go to play", "tail": "be entertain"}
{"relation": "AtLocation", "head": "program", "tail": "television"}
{"relation": "Causes", "head": "sing", "tail": "sore throat"}
{"relation": "AtLocation", "head": "teacher", "tail": "classroom"}
{"relation": "CapableOf", "head": "person", "tail": "wind clock"}
{"relation": "CapableOf", "head": "thief", "tail": "case joint"}
{"relation": "HasSubevent", "head": "have fun", "tail": "smile"}
{"relation": "AtLocation", "head": "book", "tail": "your desk"}
{"relation": "CausesDesire", "head": "love", "tail": "propose to woman"}
{"relation": "HasSubevent", "head": "rest", "tail": "sleep"}
{"relation": "AtLocation", "head": "commercial", "tail": "television"}
{"relation": "HasSubevent", "head": "reproduce", "tail": "have sex"}
{"relation": "CapableOf", "head": "horse", "tail": "carry person"}
{"relation": "HasPrerequisite", "head": "get up early", "tail": "set your alarm clock"}
{"relation": "CapableOf", "head": "cook", "tail": "prepare meal"}
{"relation": "CapableOf", "head": "person", "tail": "taste food"}
{"relation": "UsedFor", "head": "internet", "tail": "research"}
{"relation": "CausesDesire", "head": "cold", "tail": "light fire"}
{"relation": "UsedFor", "head": "fan", "tail": "move air"}
{"relation": "HasProperty", "head": "chair", "tail": "comfortable"}
{"relation": "CapableOf", "head": "author", "tail": "write book"}
{"relation": "CapableOf", "head": "artist", "tail": "paint portrait"}
{"relation": "UsedFor", "head": "highway", "tail": "travel"}
{"relation": "CapableOf", "head": "person", "tail": "thank another person"}
{"relation": "UsedFor", "head": "play game", "tail": "have fun"}
{"relation": "HasSubevent", "head": "bathe", "tail": "use soap"}
{"relation": "UsedFor", "head": "bathtub", "tail": "bathe"}
{"relation": "UsedFor", "head": "chalk", "tail": "write on blackboard"}
{"relation": "AtLocation", "head": "someone", "tail": "post office"}
{"relation": "UsedFor", "head": "floor", "tail": "walk on"}
{"relation": "AtLocation", "head": "weasel", "tail": "zoo"}
{"relation": "AtLocation", "head": "lizard", "tail": "bush"}
{"relation": "AtLocation", "head": "mouse", "tail": "laboratory"}
{"relation": "Desires", "head": "man", "tail": "woman"}
{"relation": "HasSubevent", "head": "take shower", "tail": "wash your hair"}
{"relation": "PartOf", "head": "death", "tail": "life"}
{"relation": "IsA", "head": "drum", "tail": "percussion instrument"}
{"relation": "UsedFor", "head": "scissor", "tail": "cut"}
{"relation": "AtLocation", "head": "grass", "tail": "lawn"}
{"relation": "UsedFor", "head": "soap", "tail": "clean"}
{"relation": "UsedFor", "head": "food", "tail": "eat"}
{"relation": "HasProperty", "head": "cake", "tail": "sweet"}
{"relation": "IsA", "head": "viola", "tail": "instrument"}
{"relation": "PartOf", "head": "wheel", "tail": "car"}
{"relation": "CapableOf", "head": "person", "tail": "sleep"}
{"relation": "IsA", "head": "human", "tail": "mammal"}
{"relation": "IsA", "head": "rice", "tail": "food"}
{"relation": "MadeOf", "head": "eraser", "tail": "rubber"}
{"relation": "UsedFor", "head": "chopstick", "tail": "eat"}
{"relation": "UsedFor", "head": "knife", "tail": "cut"}
{"relation": "IsA", "head": "saturn", "tail": "planet"}
{"relation": "IsA", "head": "mar", "tail": "planet"}
{"relation": "IsA", "head": "mouse", "tail": "mammal"}
{"relation": "PartOf", "head": "galaxy", "tail": "universe"}
{"relation": "HasProperty", "head": "exercise", "tail": "good for you"}
{"relation": "IsA", "head": "jack", "tail": "child game"}
{"relation": "IsA", "head": "jack", "tail": "game"}
{"relation": "HasProperty", "head": "build", "tail": "big"}
{"relation": "AtLocation", "head": "your tooth", "tail": "your mouth"}
{"relation": "HasSubevent", "head": "ride horse", "tail": "fall off"}
{"relation": "HasProperty", "head": "gamble", "tail": "addictive"}
{"relation": "AtLocation", "head": "food", "tail": "oven"}
{"relation": "HasPrerequisite", "head": "cut your hair", "tail": "go to barber"}
{"relation": "CapableOf", "head": "person", "tail": "captain ship"}
{"relation": "AtLocation", "head": "computer", "tail": "your house"}
{"relation": "UsedFor", "head": "refrigerator", "tail": "keep food cold"}
{"relation": "HasProperty", "head": "lizard", "tail": "cold blood"}
{"relation": "UsedFor", "head": "disco", "tail": "dance"}
{"relation": "HasPrerequisite", "head": "bathe", "tail": "take your clothe off"}
{"relation": "HasPrerequisite", "head": "reproduce", "tail": "have sex"}
{"relation": "AtLocation", "head": "seat", "tail": "theater"}
{"relation": "AtLocation", "head": "car", "tail": "city"}
{"relation": "HasPrerequisite", "head": "fly in airplane", "tail": "buy ticket"}
{"relation": "HasPrerequisite", "head": "swim", "tail": "get into water"}
{"relation": "Causes", "head": "cross street", "tail": "get to other side"}
{"relation": "IsA", "head": "colorado", "tail": "state"}
{"relation": "IsA", "head": "california", "tail": "state"}
{"relation": "HasA", "head": "dog", "tail": "fur"}
{"relation": "HasPrerequisite", "head": "get something", "tail": "ask for it"}
{"relation": "UsedFor", "head": "flask", "tail": "hold liquid"}
{"relation": "HasPrerequisite", "head": "get pay", "tail": "work"}
{"relation": "UsedFor", "head": "quill", "tail": "write"}
{"relation": "AtLocation", "head": "food", "tail": "fridge"}
{"relation": "IsA", "head": "marijuana", "tail": "drug"}
{"relation": "AtLocation", "head": "computer", "tail": "school"}
{"relation": "AtLocation", "head": "fish", "tail": "ocean"}
{"relation": "UsedFor", "head": "wristwatch", "tail": "tell time"}
{"relation": "AtLocation", "head": "book", "tail": "classroom"}
{"relation": "HasSubevent", "head": "write", "tail": "think"}
{"relation": "HasSubevent", "head": "go for swim", "tail": "get wet"}
{"relation": "UsedFor", "head": "pepper and salt", "tail": "season food"}
{"relation": "CapableOf", "head": "person", "tail": "water plant"}
{"relation": "HasPrerequisite", "head": "pretend", "tail": "use your imagination"}
{"relation": "UsedFor", "head": "cereal bowl", "tail": "eat cereal"}
{"relation": "HasA", "head": "human", "tail": "five finger on each hand"}
{"relation": "HasSubevent", "head": "compete", "tail": "win"}
{"relation": "IsA", "head": "box", "tail": "container"}
{"relation": "IsA", "head": "coke", "tail": "soda"}
{"relation": "Causes", "head": "chew your food", "tail": "good digestion"}
{"relation": "IsA", "head": "brain", "tail": "head"}
{"relation": "AtLocation", "head": "floor", "tail": "table"}
{"relation": "HasA", "head": "library", "tail": "book"}
{"relation": "HasA", "head": "book", "tail": "story"}
{"relation": "AtLocation", "head": "can food", "tail": "pantry"}
{"relation": "HasSubevent", "head": "play guitar", "tail": "sing"}
{"relation": "HasA", "head": "cat", "tail": "fur"}
{"relation": "CapableOf", "head": "lawyer", "tail": "object in court"}
{"relation": "AtLocation", "head": "something", "tail": "school"}
{"relation": "AtLocation", "head": "telephone", "tail": "office"}
{"relation": "CapableOf", "head": "hummingbird", "tail": "hover"}
{"relation": "IsA", "head": "cat", "tail": "curious animal"}
{"relation": "HasPrerequisite", "head": "drink", "tail": "open your mouth"}
{"relation": "IsA", "head": "star trek", "tail": "popular television show"}
{"relation": "MotivatedByGoal", "head": "read", "tail": "learn"}
{"relation": "CapableOf", "head": "radio", "tail": "play music"}
{"relation": "UsedFor", "head": "literature", "tail": "read"}
{"relation": "HasSubevent", "head": "attend lecture", "tail": "take note"}
{"relation": "HasPrerequisite", "head": "read news", "tail": "buy newspaper"}
{"relation": "UsedFor", "head": "stage", "tail": "play"}
{"relation": "UsedFor", "head": "fur", "tail": "keep animal warm"}
{"relation": "HasPrerequisite", "head": "answer question", "tail": "think"}
{"relation": "AtLocation", "head": "fork", "tail": "table"}
{"relation": "UsedFor", "head": "baseball field", "tail": "play baseball"}
{"relation": "HasProperty", "head": "winter", "tail": "cold"}
{"relation": "HasSubevent", "head": "drink alcohol", "tail": "get drunk"}
{"relation": "HasPrerequisite", "head": "dream", "tail": "fall asleep"}
{"relation": "CapableOf", "head": "finger", "tail": "push button"}
{"relation": "PartOf", "head": "person", "tail": "society"}
{"relation": "MotivatedByGoal", "head": "compete", "tail": "win"}
{"relation": "CausesDesire", "head": "full bladder", "tail": "urinate"}
{"relation": "CapableOf", "head": "human", "tail": "die"}
{"relation": "HasSubevent", "head": "play poker", "tail": "bluff"}
{"relation": "UsedFor", "head": "pillow case", "tail": "cover pillow"}
{"relation": "CapableOf", "head": "person", "tail": "believe in god"}
{"relation": "AtLocation", "head": "star", "tail": "night sky"}
{"relation": "AtLocation", "head": "bird", "tail": "air"}
{"relation": "AtLocation", "head": "pantry", "tail": "kitchen"}
{"relation": "AtLocation", "head": "towel rack", "tail": "bathroom"}
{"relation": "Causes", "head": "open gift", "tail": "surprise"}
{"relation": "UsedFor", "head": "telephone", "tail": "communication"}
{"relation": "Desires", "head": "monkey", "tail": "eat banana"}
{"relation": "UsedFor", "head": "violin", "tail": "play music"}
{"relation": "CapableOf", "head": "computer", "tail": "compute"}
{"relation": "UsedFor", "head": "salt", "tail": "melt ice"}
{"relation": "AtLocation", "head": "drawer", "tail": "desk"}
{"relation": "HasProperty", "head": "banana", "tail": "yellow"}
{"relation": "IsA", "head": "physic", "tail": "science"}
{"relation": "IsA", "head": "wine", "tail": "beverage"}
{"relation": "AtLocation", "head": "tiger", "tail": "zoo"}
{"relation": "IsA", "head": "cucumber", "tail": "vegetable"}
{"relation": "CapableOf", "head": "person", "tail": "think"}
{"relation": "UsedFor", "head": "eye", "tail": "see"}
{"relation": "IsA", "head": "red", "tail": "color"}
{"relation": "HasSubevent", "head": "study", "tail": "read"}
{"relation": "IsA", "head": "denim", "tail": "fabric"}
{"relation": "IsA", "head": "metal", "tail": "music"}
{"relation": "IsA", "head": "france", "tail": "country"}
{"relation": "IsA", "head": "frog", "tail": "amphibian"}
{"relation": "IsA", "head": "novel", "tail": "book"}
{"relation": "IsA", "head": "brazil", "tail": "country"}
{"relation": "AtLocation", "head": "information", "tail": "internet"}
{"relation": "Causes", "head": "have sex", "tail": "baby"}
{"relation": "NotHasProperty", "head": "work", "tail": "fun"}
{"relation": "UsedFor", "head": "bicycle", "tail": "transportation"}
{"relation": "UsedFor", "head": "shoe", "tail": "protect foot"}
{"relation": "MotivatedByGoal", "head": "have rest", "tail": "you be very tire"}
{"relation": "HasA", "head": "most pizza", "tail": "cheese on it"}
{"relation": "UsedFor", "head": "paper", "tail": "make paper airplane"}
{"relation": "HasPrerequisite", "head": "sit down", "tail": "bend your knee"}
{"relation": "CapableOf", "head": "atheist", "tail": "doubt existence of god"}
{"relation": "Desires", "head": "person", "tail": "dance"}
{"relation": "AtLocation", "head": "something", "tail": "library"}
{"relation": "CapableOf", "head": "detective", "tail": "piece together clue"}
{"relation": "HasSubevent", "head": "play sport", "tail": "run"}
{"relation": "ReceivesAction", "head": "horse", "tail": "ride"}
{"relation": "CapableOf", "head": "alcohol", "tail": "cloud judgement"}
{"relation": "AtLocation", "head": "something", "tail": "store"}
{"relation": "HasProperty", "head": "some car", "tail": "expensive"}
{"relation": "IsA", "head": "pony", "tail": "horse"}
{"relation": "HasA", "head": "house", "tail": "door"}
{"relation": "CapableOf", "head": "teacher", "tail": "help student"}
{"relation": "AtLocation", "head": "your neighbor", "tail": "door"}
{"relation": "UsedFor", "head": "gun", "tail": "kill someone"}
{"relation": "HasA", "head": "wine", "tail": "alcohol"}
{"relation": "IsA", "head": "poker", "tail": "card game"}
{"relation": "HasPrerequisite", "head": "remember phone number", "tail": "repeat it to yourself"}
{"relation": "AtLocation", "head": "food", "tail": "kitchen"}
{"relation": "HasPrerequisite", "head": "visit other country", "tail": "get passport"}
{"relation": "AtLocation", "head": "moon", "tail": "space"}
{"relation": "AtLocation", "head": "flower", "tail": "park"}
{"relation": "HasPrerequisite", "head": "take bus", "tail": "go to bus stop"}
{"relation": "HasProperty", "head": "frisbee", "tail": "round"}
{"relation": "CapableOf", "head": "alcohol", "tail": "cloud your judgement"}
{"relation": "HasA", "head": "rose", "tail": "thorn"}
{"relation": "AtLocation", "head": "human", "tail": "park"}
{"relation": "AtLocation", "head": "jewish person", "tail": "synagogue"}
{"relation": "UsedFor", "head": "kitchen", "tail": "cook food"}
{"relation": "AtLocation", "head": "human", "tail": "workplace"}
{"relation": "AtLocation", "head": "mirror", "tail": "bedroom"}
{"relation": "IsA", "head": "oxygen", "tail": "gas"}
{"relation": "CapableOf", "head": "train", "tail": "arrive late"}
{"relation": "CapableOf", "head": "woman", "tail": "chair committee"}
{"relation": "AtLocation", "head": "girl", "tail": "school"}
{"relation": "IsA", "head": "cheese", "tail": "food"}
{"relation": "AtLocation", "head": "someone", "tail": "zoo"}
{"relation": "AtLocation", "head": "submarine", "tail": "water"}
{"relation": "Causes", "head": "move car", "tail": "accident"}
{"relation": "CapableOf", "head": "blacksmith", "tail": "shoe horse"}
{"relation": "HasA", "head": "duck", "tail": "bill"}
{"relation": "AtLocation", "head": "hamburger", "tail": "fast-food restaurant"}
{"relation": "HasPrerequisite", "head": "get drunk", "tail": "drink alcohol"}
{"relation": "CapableOf", "head": "person", "tail": "laugh at joke"}
{"relation": "AtLocation", "head": "carpet pad", "tail": "carpet"}
{"relation": "UsedFor", "head": "condominium", "tail": "live in"}
{"relation": "HasPrerequisite", "head": "sate your hunger", "tail": "eat"}
{"relation": "ReceivesAction", "head": "shoe", "tail": "wear on foot"}
{"relation": "HasPrerequisite", "head": "cross street", "tail": "look both way"}
{"relation": "AtLocation", "head": "someone", "tail": "lake"}
{"relation": "IsA", "head": "bicycle", "tail": "two wheel vehicle"}
{"relation": "IsA", "head": "shirt", "tail": "clothe"}
{"relation": "AtLocation", "head": "something", "tail": "beach"}
{"relation": "HasPrerequisite", "head": "play piano", "tail": "take lesson"}
{"relation": "CapableOf", "head": "fire", "tail": "burn thing"}
{"relation": "CapableOf", "head": "stopwatch", "tail": "time race"}
{"relation": "HasPrerequisite", "head": "attend classical concert", "tail": "buy ticket"}
{"relation": "CapableOf", "head": "usher", "tail": "seat guest"}
{"relation": "UsedFor", "head": "cup", "tail": "drink from"}
{"relation": "CapableOf", "head": "person", "tail": "talk to each other"}
{"relation": "Causes", "head": "walk in rain", "tail": "you get wet"}
{"relation": "CapableOf", "head": "bomb", "tail": "destroy build"}
{"relation": "UsedFor", "head": "fan", "tail": "circulate air"}
{"relation": "CapableOf", "head": "parent", "tail": "name child"}
{"relation": "IsA", "head": "raisin", "tail": "dry grape"}
{"relation": "AtLocation", "head": "bird", "tail": "forest"}
{"relation": "AtLocation", "head": "traveller", "tail": "airport"}
{"relation": "AtLocation", "head": "something", "tail": "tree"}
{"relation": "AtLocation", "head": "something", "tail": "mall"}
{"relation": "HasSubevent", "head": "go to school", "tail": "learn"}
{"relation": "HasA", "head": "man", "tail": "penis"}
{"relation": "UsedFor", "head": "bomb", "tail": "blow thing up"}
{"relation": "CapableOf", "head": "mechanic", "tail": "service car"}
{"relation": "AtLocation", "head": "someone", "tail": "theater"}
{"relation": "HasSubevent", "head": "jump out of window", "tail": "die"}
{"relation": "AtLocation", "head": "cake", "tail": "oven"}
{"relation": "HasPrerequisite", "head": "read magazine", "tail": "buy magazine"}
{"relation": "CapableOf", "head": "mother", "tail": "care for her child"}
{"relation": "HasSubevent", "head": "play sport", "tail": "have fun"}
{"relation": "IsA", "head": "tv", "tail": "abbreviation for television"}
{"relation": "UsedFor", "head": "pipe", "tail": "smoke tobacco"}
{"relation": "CapableOf", "head": "water", "tail": "reflect image"}
{"relation": "Causes", "head": "go to bed", "tail": "sleep"}
{"relation": "Causes", "head": "tickle", "tail": "laugh"}
{"relation": "UsedFor", "head": "tool", "tail": "fix thing"}
{"relation": "HasSubevent", "head": "study", "tail": "read book"}
{"relation": "IsA", "head": "saxophone", "tail": "instrument"}
{"relation": "UsedFor", "head": "bomb", "tail": "kill person"}
{"relation": "HasProperty", "head": "plant", "tail": "green"}
{"relation": "IsA", "head": "skyscraper", "tail": "build"}
{"relation": "UsedFor", "head": "soap", "tail": "wash your hand"}
{"relation": "CapableOf", "head": "person", "tail": "thank god"}
{"relation": "HasProperty", "head": "fruit", "tail": "sweet"}
{"relation": "CapableOf", "head": "person", "tail": "sail boat"}
{"relation": "CapableOf", "head": "person", "tail": "pay bill"}
{"relation": "UsedFor", "head": "master bedroom", "tail": "sleep"}
{"relation": "HasPrerequisite", "head": "have asthma attack", "tail": "have asthma"}
{"relation": "UsedFor", "head": "ticket office", "tail": "buy ticket"}
{"relation": "UsedFor", "head": "bookstore", "tail": "buy book"}
{"relation": "UsedFor", "head": "diner", "tail": "eat"}
{"relation": "CapableOf", "head": "sailor", "tail": "sail ship"}
{"relation": "UsedFor", "head": "have food", "tail": "eat"}
{"relation": "CapableOf", "head": "student", "tail": "fail test"}
{"relation": "UsedFor", "head": "tooth", "tail": "chew food"}
{"relation": "UsedFor", "head": "classroom", "tail": "teach"}
{"relation": "Causes", "head": "propose to woman", "tail": "marriage"}
{"relation": "CapableOf", "head": "ruler", "tail": "measure distance"}
{"relation": "UsedFor", "head": "airplane", "tail": "travel"}
{"relation": "UsedFor", "head": "dresser", "tail": "store clothe"}
{"relation": "UsedFor", "head": "feather", "tail": "tickle someone"}
{"relation": "UsedFor", "head": "window", "tail": "look outside"}
{"relation": "IsA", "head": "submarine", "tail": "ship"}
{"relation": "UsedFor", "head": "bagpipe", "tail": "play music"}
{"relation": "HasSubevent", "head": "listen to radio", "tail": "hear music"}
{"relation": "HasPrerequisite", "head": "find lose item", "tail": "look for it"}
{"relation": "UsedFor", "head": "pulpit", "tail": "preach"}
{"relation": "HasSubevent", "head": "live", "tail": "breathe"}
{"relation": "IsA", "head": "dog", "tail": "loyal friend"}
{"relation": "AtLocation", "head": "fish", "tail": "river"}
{"relation": "AtLocation", "head": "salt", "tail": "ocean"}
{"relation": "AtLocation", "head": "card catalog", "tail": "library"}
{"relation": "AtLocation", "head": "cd", "tail": "cd player"}
{"relation": "AtLocation", "head": "planet", "tail": "space"}
{"relation": "AtLocation", "head": "clarinet", "tail": "orchestra"}
{"relation": "AtLocation", "head": "wine list", "tail": "restaurant"}
{"relation": "AtLocation", "head": "mouthwash", "tail": "bathroom"}
{"relation": "AtLocation", "head": "rosebush", "tail": "backyard"}
{"relation": "AtLocation", "head": "elephant", "tail": "circus"}
{"relation": "HasSubevent", "head": "play game", "tail": "have fun"}
{"relation": "UsedFor", "head": "sheet", "tail": "cover bed"}
{"relation": "CapableOf", "head": "computer", "tail": "process information"}
{"relation": "IsA", "head": "potato", "tail": "vegetable"}
{"relation": "UsedFor", "head": "bread", "tail": "eat"}
{"relation": "UsedFor", "head": "music stand", "tail": "hold music"}
{"relation": "UsedFor", "head": "razor", "tail": "shave"}
{"relation": "AtLocation", "head": "student", "tail": "at school"}
{"relation": "UsedFor", "head": "ball", "tail": "throw"}
{"relation": "IsA", "head": "dinner", "tail": "meal"}
{"relation": "AtLocation", "head": "notebook", "tail": "desk"}
{"relation": "UsedFor", "head": "ear", "tail": "hear"}
{"relation": "IsA", "head": "chocolate", "tail": "food"}
{"relation": "PartOf", "head": "son", "tail": "family"}
{"relation": "IsA", "head": "gun", "tail": "weapon"}
{"relation": "IsA", "head": "lettuce", "tail": "vegetable"}
{"relation": "IsA", "head": "car", "tail": "vehicle"}
{"relation": "UsedFor", "head": "fork", "tail": "eat"}
{"relation": "IsA", "head": "human", "tail": "animal"}
{"relation": "IsA", "head": "fall", "tail": "season"}
{"relation": "HasProperty", "head": "night", "tail": "dark"}
{"relation": "IsA", "head": "steel", "tail": "metal"}
{"relation": "HasProperty", "head": "sword", "tail": "sharp"}
{"relation": "IsA", "head": "chocolate", "tail": "candy"}
{"relation": "PartOf", "head": "leaf", "tail": "tree"}
{"relation": "IsA", "head": "crappie", "tail": "fish"}
{"relation": "IsA", "head": "salamander", "tail": "amphibian"}
{"relation": "IsA", "head": "table tennis", "tail": "sport"}
{"relation": "IsA", "head": "pelican", "tail": "bird"}
{"relation": "UsedFor", "head": "pencil", "tail": "write something on paper"}
{"relation": "PartOf", "head": "god", "tail": "religion"}
{"relation": "UsedFor", "head": "library", "tail": "do research"}
{"relation": "IsA", "head": "paris", "tail": "city"}
{"relation": "IsA", "head": "music", "tail": "form of art"}
{"relation": "HasProperty", "head": "most person", "tail": "right hand"}
{"relation": "HasProperty", "head": "most person", "tail": "right-handed"}
{"relation": "HasA", "head": "car", "tail": "headlight"}
{"relation": "IsA", "head": "girl", "tail": "hold puppy"}
{"relation": "IsA", "head": "bicycle", "tail": "form of transportation"}
{"relation": "AtLocation", "head": "nose", "tail": "face"}
{"relation": "IsA", "head": "there", "tail": "food at grocery store"}
{"relation": "MotivatedByGoal", "head": "propose to woman", "tail": "you love her"}
{"relation": "HasSubevent", "head": "have sex", "tail": "sweat"}
{"relation": "HasA", "head": "house", "tail": "room"}
{"relation": "AtLocation", "head": "clothe", "tail": "drawer"}
{"relation": "IsA", "head": "sushi", "tail": "raw fish"}
{"relation": "AtLocation", "head": "sock", "tail": "drawer"}
{"relation": "CapableOf", "head": "student", "tail": "master subject"}
{"relation": "HasPrerequisite", "head": "eat breakfast", "tail": "wake up"}
{"relation": "HasProperty", "head": "apple", "tail": "good for you"}
{"relation": "UsedFor", "head": "soap", "tail": "wash yourself"}
{"relation": "IsA", "head": "corn", "tail": "food"}
{"relation": "HasProperty", "head": "glass", "tail": "half full"}
{"relation": "IsA", "head": "high rise", "tail": "build"}
{"relation": "UsedFor", "head": "go to party", "tail": "fun"}
{"relation": "HasPrerequisite", "head": "program", "tail": "learn program language"}
{"relation": "CreatedBy", "head": "music", "tail": "composer"}
{"relation": "AtLocation", "head": "sock", "tail": "sock drawer"}
{"relation": "CapableOf", "head": "policeman", "tail": "direct traffic"}
{"relation": "HasProperty", "head": "paper", "tail": "recyclable"}
{"relation": "IsA", "head": "chicken", "tail": "meat"}
{"relation": "IsA", "head": "sofa", "tail": "sit on"}
{"relation": "HasPrerequisite", "head": "see art", "tail": "go to museum"}
{"relation": "HasPrerequisite", "head": "go for haircut", "tail": "find barber"}
{"relation": "CapableOf", "head": "knife", "tail": "spread peanut butter"}
{"relation": "IsA", "head": "classroom", "tail": "in school"}
{"relation": "AtLocation", "head": "floor", "tail": "carpet"}
{"relation": "CapableOf", "head": "clerk", "tail": "stock shelve"}
{"relation": "AtLocation", "head": "bunsen burner", "tail": "chemistry lab"}
{"relation": "AtLocation", "head": "horse", "tail": "race track"}
{"relation": "AtLocation", "head": "rope", "tail": "boat"}
{"relation": "CapableOf", "head": "police officer", "tail": "direct traffic"}
{"relation": "HasProperty", "head": "dog", "tail": "very loyal"}
{"relation": "HasSubevent", "head": "read", "tail": "learn"}
{"relation": "UsedFor", "head": "bridge", "tail": "cross river"}
{"relation": "HasA", "head": "cat", "tail": "claw"}
{"relation": "AtLocation", "head": "puck", "tail": "hockey game"}
{"relation": "AtLocation", "head": "bill", "tail": "mail box"}
{"relation": "CapableOf", "head": "grocer", "tail": "stock shelve"}
{"relation": "CapableOf", "head": "person", "tail": "shoulder burden"}
{"relation": "HasPrerequisite", "head": "watch even news", "tail": "turn on tv"}
{"relation": "HasSubevent", "head": "have epileptic fit", "tail": "fall down"}
{"relation": "AtLocation", "head": "bell", "tail": "church"}
{"relation": "HasPrerequisite", "head": "reproduce", "tail": "find mate"}
{"relation": "AtLocation", "head": "book", "tail": "backpack"}
{"relation": "AtLocation", "head": "movie", "tail": "theater"}
{"relation": "HasSubevent", "head": "have nervous breakdown", "tail": "cry"}
{"relation": "HasPrerequisite", "head": "get some money from someone", "tail": "ask"}
{"relation": "UsedFor", "head": "floor", "tail": "walk"}
{"relation": "CapableOf", "head": "woman", "tail": "mother child"}
{"relation": "HasSubevent", "head": "go for swim", "tail": "drown"}
{"relation": "AtLocation", "head": "actor", "tail": "movie"}
{"relation": "CapableOf", "head": "match", "tail": "light fire"}
{"relation": "HasPrerequisite", "head": "empty your bladder", "tail": "go to toilet"}
{"relation": "ReceivesAction", "head": "tank", "tail": "use in war"}
{"relation": "CapableOf", "head": "car", "tail": "slow down"}
{"relation": "CapableOf", "head": "nurse", "tail": "care for patient"}
{"relation": "CapableOf", "head": "detective", "tail": "tail suspect"}
{"relation": "UsedFor", "head": "contraceptive", "tail": "prevent pregnancy"}
{"relation": "HasProperty", "head": "grain of sand", "tail": "very small"}
{"relation": "Causes", "head": "wait in line", "tail": "boredom"}
{"relation": "CapableOf", "head": "visitor", "tail": "ring doorbell"}
{"relation": "AtLocation", "head": "knife", "tail": "drawer"}
{"relation": "AtLocation", "head": "gideon bible", "tail": "motel"}
{"relation": "UsedFor", "head": "towel bar", "tail": "hang towel"}
{"relation": "ReceivesAction", "head": "some plastic", "tail": "recycle"}
{"relation": "CapableOf", "head": "passenger", "tail": "board train"}
{"relation": "HasPrerequisite", "head": "sew", "tail": "thread needle"}
{"relation": "HasPrerequisite", "head": "think", "tail": "brain"}
{"relation": "AtLocation", "head": "clothe", "tail": "store"}
{"relation": "UsedFor", "head": "typewriter", "tail": "type letter"}
{"relation": "AtLocation", "head": "rack", "tail": "oven"}
{"relation": "HasProperty", "head": "party", "tail": "fun"}
{"relation": "HasProperty", "head": "fire engine", "tail": "red"}
{"relation": "IsA", "head": "dog", "tail": "canine"}
{"relation": "HasPrerequisite", "head": "watch television show", "tail": "turn on tv"}
{"relation": "HasSubevent", "head": "go to hairdresser", "tail": "get haircut"}
{"relation": "AtLocation", "head": "something", "tail": "sea"}
{"relation": "AtLocation", "head": "something", "tail": "refrigerator"}
{"relation": "IsA", "head": "soda", "tail": "drink"}
{"relation": "UsedFor", "head": "spanish restaurant", "tail": "eat spanish food"}
{"relation": "IsA", "head": "pocket knife", "tail": "useful tool"}
{"relation": "HasSubevent", "head": "enjoy film", "tail": "eat popcorn"}
{"relation": "HasPrerequisite", "head": "ski", "tail": "snow"}
{"relation": "HasA", "head": "two person", "tail": "sex"}
{"relation": "Causes", "head": "chat with friend", "tail": "laughter"}
{"relation": "CapableOf", "head": "vintner", "tail": "bottle wine"}
{"relation": "IsA", "head": "love", "tail": "feel"}
{"relation": "AtLocation", "head": "someone", "tail": "shop"}
{"relation": "CapableOf", "head": "dog", "tail": "guard your house"}
{"relation": "HasSubevent", "head": "watch tv", "tail": "fall asleep"}
{"relation": "CapableOf", "head": "plane", "tail": "crash"}
{"relation": "HasProperty", "head": "canada", "tail": "north of unite state"}
{"relation": "Causes", "head": "relax", "tail": "sleep"}
{"relation": "IsA", "head": "banjo", "tail": "string instrument"}
{"relation": "IsA", "head": "guitare", "tail": "instrument"}
{"relation": "HasSubevent", "head": "diminish your own hunger", "tail": "eat"}
{"relation": "HasSubevent", "head": "express how funny something", "tail": "be laugh"}
{"relation": "HasPrerequisite", "head": "chop firewood", "tail": "axe"}
{"relation": "HasSubevent", "head": "play frisbee", "tail": "catch frisbee"}
{"relation": "HasPrerequisite", "head": "stop your car", "tail": "press brake"}
{"relation": "Causes", "head": "bathe", "tail": "be clean"}
{"relation": "IsA", "head": "stone", "tail": "another word for rock"}
{"relation": "IsA", "head": "baseball", "tail": "american pastime"}
{"relation": "IsA", "head": "beanie", "tail": "hat"}
{"relation": "MadeOf", "head": "cowboy boot", "tail": "leather"}
{"relation": "HasProperty", "head": "rubber duck", "tail": "yellow"}
{"relation": "HasProperty", "head": "baby animal", "tail": "cute"}
{"relation": "IsA", "head": "fedora", "tail": "hat"}
{"relation": "HasSubevent", "head": "play ball", "tail": "catch ball"}
{"relation": "IsA", "head": "shotgun", "tail": "gun"}
{"relation": "HasPrerequisite", "head": "gather energy for tomorrow", "tail": "sleep"}
{"relation": "HasPrerequisite", "head": "have examination", "tail": "see doctor"}
{"relation": "CapableOf", "head": "plane", "tail": "arrive at airport"}
{"relation": "HasPrerequisite", "head": "get up early", "tail": "go to bed early"}
{"relation": "HasPrerequisite", "head": "make friend", "tail": "smile"}
{"relation": "Desires", "head": "person", "tail": "laugh"}
{"relation": "IsA", "head": "new york", "tail": "state"}
{"relation": "IsA", "head": "clarinet", "tail": "instrument"}
{"relation": "Causes", "head": "reproduce", "tail": "child"}
{"relation": "IsA", "head": "bean", "tail": "vegetable"}
{"relation": "HasSubevent", "head": "play basketball", "tail": "dribble"}
{"relation": "CapableOf", "head": "camper", "tail": "sleep in tent"}
{"relation": "HasPrerequisite", "head": "hear news", "tail": "turn on tv"}
{"relation": "UsedFor", "head": "hill", "tail": "climb"}
{"relation": "UsedFor", "head": "comb", "tail": "style hair"}
{"relation": "CapableOf", "head": "turtle", "tail": "live long time"}
{"relation": "UsedFor", "head": "tie your shoelace", "tail": "keep your shoe on"}
{"relation": "HasPrerequisite", "head": "paint house", "tail": "ladder"}
{"relation": "CapableOf", "head": "woman", "tail": "wear dress"}
{"relation": "CapableOf", "head": "president", "tail": "govern country"}
{"relation": "UsedFor", "head": "piggy bank", "tail": "save money"}
{"relation": "UsedFor", "head": "think", "tail": "solve problem"}
{"relation": "HasPrerequisite", "head": "watch television", "tail": "turn television on"}
{"relation": "UsedFor", "head": "sofa bed", "tail": "sleep on"}
{"relation": "HasPrerequisite", "head": "buy food", "tail": "go to store"}
{"relation": "UsedFor", "head": "towel rack", "tail": "hold towel"}
{"relation": "UsedFor", "head": "brownstone", "tail": "live in"}
{"relation": "CapableOf", "head": "lawyer", "tail": "settle lawsuit"}
{"relation": "UsedFor", "head": "fork", "tail": "eat food"}
{"relation": "AtLocation", "head": "egg", "tail": "supermarket"}
{"relation": "AtLocation", "head": "sun", "tail": "center of solar system"}
{"relation": "AtLocation", "head": "tenor", "tail": "opera"}
{"relation": "AtLocation", "head": "audience", "tail": "theatre"}
{"relation": "AtLocation", "head": "human", "tail": "church"}
{"relation": "AtLocation", "head": "staple", "tail": "stapler"}
{"relation": "AtLocation", "head": "key", "tail": "purse"}
{"relation": "AtLocation", "head": "trash", "tail": "dumpster"}
{"relation": "AtLocation", "head": "city", "tail": "county"}
{"relation": "AtLocation", "head": "shop basket", "tail": "supermarket"}
{"relation": "AtLocation", "head": "science", "tail": "university"}
{"relation": "AtLocation", "head": "closet", "tail": "bedroom"}
{"relation": "AtLocation", "head": "foot", "tail": "shoe"}
{"relation": "AtLocation", "head": "cavity", "tail": "tooth"}
{"relation": "AtLocation", "head": "statue", "tail": "museum"}
{"relation": "Desires", "head": "person", "tail": "feel important"}
{"relation": "CreatedBy", "head": "book", "tail": "writer"}
{"relation": "IsA", "head": "xylophone", "tail": "percussion instrument"}
{"relation": "UsedFor", "head": "broom", "tail": "sweep"}
{"relation": "UsedFor", "head": "knife", "tail": "stab"}
{"relation": "IsA", "head": "english", "tail": "language"}
{"relation": "HasProperty", "head": "lemon", "tail": "sour"}
{"relation": "PartOf", "head": "trigger", "tail": "gun"}
{"relation": "UsedFor", "head": "baseball", "tail": "play baseball"}
{"relation": "AtLocation", "head": "table", "tail": "kitchen"}
{"relation": "HasProperty", "head": "oil", "tail": "slippery"}
{"relation": "UsedFor", "head": "cup", "tail": "drink"}
{"relation": "AtLocation", "head": "tree", "tail": "forest"}
{"relation": "MadeOf", "head": "pencil", "tail": "wood"}
{"relation": "IsA", "head": "london", "tail": "city"}
{"relation": "IsA", "head": "swim", "tail": "sport"}
{"relation": "CapableOf", "head": "child", "tail": "play"}
{"relation": "PartOf", "head": "door", "tail": "house"}
{"relation": "UsedFor", "head": "pot", "tail": "cook"}
{"relation": "HasProperty", "head": "rock", "tail": "heavy"}
{"relation": "PartOf", "head": "palm", "tail": "hand"}
{"relation": "MadeOf", "head": "coffee", "tail": "coffee bean"}
{"relation": "HasProperty", "head": "paper", "tail": "white"}
{"relation": "IsA", "head": "fish", "tail": "animal"}
{"relation": "MadeOf", "head": "jean", "tail": "denim"}
{"relation": "HasProperty", "head": "fruit", "tail": "edible"}
{"relation": "IsA", "head": "robot", "tail": "machine"}
{"relation": "CapableOf", "head": "pilot", "tail": "fly helicopter"}
{"relation": "IsA", "head": "backgammon", "tail": "game"}
{"relation": "IsA", "head": "jupiter", "tail": "planet"}
{"relation": "IsA", "head": "lake", "tail": "body of water"}
{"relation": "IsA", "head": "spider", "tail": "arachnid"}
{"relation": "IsA", "head": "whale", "tail": "mammal"}
{"relation": "IsA", "head": "beaver", "tail": "mammal"}
{"relation": "IsA", "head": "pheasant", "tail": "bird"}
{"relation": "IsA", "head": "crow", "tail": "bird"}
{"relation": "IsA", "head": "hawk", "tail": "bird"}
{"relation": "IsA", "head": "goose", "tail": "bird"}
{"relation": "IsA", "head": "perl", "tail": "program language"}
{"relation": "IsA", "head": "c", "tail": "program language"}
{"relation": "CapableOf", "head": "bird", "tail": "sing"}
{"relation": "Causes", "head": "sex", "tail": "orgasm"}
{"relation": "AtLocation", "head": "fish", "tail": "aquarium"}
{"relation": "Desires", "head": "dog", "tail": "chew on bone"}
{"relation": "IsA", "head": "cat", "tail": "carnivore"}
{"relation": "HasPrerequisite", "head": "buy present for others", "tail": "have money"}
{"relation": "AtLocation", "head": "twenty four hour", "tail": "day"}
{"relation": "AtLocation", "head": "phone", "tail": "your desk"}
{"relation": "UsedFor", "head": "dog", "tail": "companionship"}
{"relation": "AtLocation", "head": "college", "tail": "city"}
{"relation": "AtLocation", "head": "feather", "tail": "bird"}
{"relation": "UsedFor", "head": "shovel", "tail": "dig hole"}
{"relation": "UsedFor", "head": "soap", "tail": "clean something"}
{"relation": "HasProperty", "head": "apple", "tail": "good to eat"}
{"relation": "HasSubevent", "head": "eat breakfast in bed", "tail": "watch tv"}
{"relation": "HasSubevent", "head": "commit to memory", "tail": "repeat"}
{"relation": "HasPrerequisite", "head": "learn", "tail": "study"}
{"relation": "IsA", "head": "unix", "tail": "operate system"}
{"relation": "IsA", "head": "unix", "tail": "system"}
{"relation": "HasPrerequisite", "head": "write term paper", "tail": "research"}
{"relation": "ReceivesAction", "head": "sailboat", "tail": "propel by wind"}
{"relation": "DefinedAs", "head": "kitten", "tail": "baby cat"}
{"relation": "HasSubevent", "head": "pray", "tail": "kneel down"}
{"relation": "HasPrerequisite", "head": "shop", "tail": "have money"}
{"relation": "HasProperty", "head": "kill", "tail": "wrong"}
{"relation": "UsedFor", "head": "bottle", "tail": "store liquid"}
{"relation": "HasPrerequisite", "head": "sleep", "tail": "get in bed"}
{"relation": "HasProperty", "head": "music", "tail": "relax"}
{"relation": "HasProperty", "head": "men and woman", "tail": "different"}
{"relation": "AtLocation", "head": "tongue", "tail": "your mouth"}
{"relation": "AtLocation", "head": "plate", "tail": "kitchen"}
{"relation": "HasPrerequisite", "head": "become inebriate", "tail": "drink alcohol"}
{"relation": "HasProperty", "head": "sail", "tail": "fun"}
{"relation": "IsA", "head": "boy", "tail": "young man"}
{"relation": "IsA", "head": "beer", "tail": "alcoholic beverage"}
{"relation": "HasPrerequisite", "head": "study", "tail": "concentration"}
{"relation": "IsA", "head": "city", "tail": "place"}
{"relation": "Causes", "head": "fart", "tail": "bad smell"}
{"relation": "Causes", "head": "smoke cigarette", "tail": "lung cancer"}
{"relation": "HasPrerequisite", "head": "compete against someone", "tail": "enter competition"}
{"relation": "AtLocation", "head": "roof tile", "tail": "roof"}
{"relation": "UsedFor", "head": "toothbrush", "tail": "clean your tooth"}
{"relation": "HasPrerequisite", "head": "go to performance", "tail": "buy ticket"}
{"relation": "HasPrerequisite", "head": "create idea", "tail": "think"}
{"relation": "HasPrerequisite", "head": "surprise someone", "tail": "hide"}
{"relation": "HasSubevent", "head": "meet interest person", "tail": "talk to them"}
{"relation": "HasPrerequisite", "head": "take phone call", "tail": "pick up phone"}
{"relation": "HasPrerequisite", "head": "reach tentative agreement", "tail": "compromise"}
{"relation": "HasSubevent", "head": "lie", "tail": "you feel guilty"}
{"relation": "UsedFor", "head": "key chain", "tail": "keep key together"}
{"relation": "AtLocation", "head": "foot", "tail": "desk"}
{"relation": "IsA", "head": "pea", "tail": "vegetable"}
{"relation": "HasSubevent", "head": "compete", "tail": "you lose"}
{"relation": "CapableOf", "head": "submarine", "tail": "travel under water"}
{"relation": "HasPrerequisite", "head": "watch even news", "tail": "turn on television"}
{"relation": "HasSubevent", "head": "play", "tail": "have fun"}
{"relation": "HasPrerequisite", "head": "have bath", "tail": "fill tub with water"}
{"relation": "AtLocation", "head": "apple", "tail": "apple tree"}
{"relation": "IsA", "head": "slave", "tail": "person"}
{"relation": "HasSubevent", "head": "drive", "tail": "listen to radio"}
{"relation": "UsedFor", "head": "restaurant", "tail": "eat out"}
{"relation": "HasA", "head": "chess board", "tail": "64 square"}
{"relation": "AtLocation", "head": "school", "tail": "city"}
{"relation": "HasSubevent", "head": "chat with friend", "tail": "laugh"}
{"relation": "HasSubevent", "head": "have bath", "tail": "get wet"}
{"relation": "AtLocation", "head": "baggage", "tail": "airport"}
{"relation": "HasSubevent", "head": "paint picture", "tail": "look at model"}
{"relation": "HasSubevent", "head": "relax", "tail": "sleep"}
{"relation": "AtLocation", "head": "cookie", "tail": "jar"}
{"relation": "CapableOf", "head": "baby", "tail": "cry loud"}
{"relation": "Causes", "head": "strike match", "tail": "fire"}
{"relation": "CapableOf", "head": "banker", "tail": "lend money"}
{"relation": "HasPrerequisite", "head": "bury cat", "tail": "dig hole"}
{"relation": "HasPrerequisite", "head": "earn live", "tail": "work"}
{"relation": "AtLocation", "head": "twenty-four hour", "tail": "day"}
{"relation": "CapableOf", "head": "person", "tail": "board plane"}
{"relation": "AtLocation", "head": "furnace", "tail": "basement"}
{"relation": "UsedFor", "head": "play sport", "tail": "competition"}
{"relation": "UsedFor", "head": "stair", "tail": "climb"}
{"relation": "UsedFor", "head": "park lot", "tail": "park car"}
{"relation": "CapableOf", "head": "terrorist", "tail": "arm bomb"}
{"relation": "UsedFor", "head": "wood", "tail": "fence in property"}
{"relation": "UsedFor", "head": "pool", "tail": "get out of heat"}
{"relation": "HasPrerequisite", "head": "play game", "tail": "learn rule"}
{"relation": "HasA", "head": "duck", "tail": "web foot"}
{"relation": "HasSubevent", "head": "play basketball", "tail": "score point"}
{"relation": "CapableOf", "head": "ball", "tail": "roll down hill"}
{"relation": "AtLocation", "head": "stethoscope", "tail": "doctor"}
{"relation": "HasSubevent", "head": "make patchwork quilt", "tail": "sew"}
{"relation": "AtLocation", "head": "leave", "tail": "tree"}
{"relation": "HasA", "head": "plant", "tail": "green leave"}
{"relation": "HasPrerequisite", "head": "pay bill", "tail": "have money"}
{"relation": "UsedFor", "head": "skin", "tail": "cover body"}
{"relation": "IsA", "head": "spanish", "tail": "language"} |