File size: 42,702 Bytes
e3b8bf9 |
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 |
{
"zh": {
"人物": {
"别名": [
"[X]亦称作[Y]",
"[X]的译名的[Y]",
"[X]的别名是[Y]"
],
"出生地点": [
"[X]出生于[Y]",
"[X]的出生地是[Y]",
"[X]诞生于[Y]"
],
"出生日期": [
"[X]出生于[Y]",
"[X]的生日是[Y]",
"[X]的出生时间是[Y]"
],
"死亡地点": [
"[X]逝世于[Y]",
"[X]的死亡地点是[Y]",
"[X]在[Y]去世"
],
"国籍": [
"[X]的国籍是[Y]",
"[X]持有[Y]国籍",
"[X]是[Y]国的公民"
],
"职业": [
"[X]的职业是[Y]",
"[X]从事[Y]工作",
"[X]的工作领域是[Y]"
],
"作品": [
"[X]的作品包括[Y]",
"[X]创作了[Y]",
"[X]的作品有[Y]"
],
"成就": [
"[X]的成就包括[Y]",
"[X]以[Y]而闻名",
"[X]获得了[Y]等荣誉"
],
"籍贯": [
"[X]的籍贯是[Y]",
"[X]来自[Y]",
"[X]原籍[Y]"
],
"职务": [
"[X]担任[Y]",
"[X]任职[Y]",
"[X]的职位是[Y]"
],
"配偶": [
"[X]的配偶是[Y]",
"[X]与[Y]结婚",
"[X]的夫妻是[Y]"
],
"父母": [
"[X]的父母是[Y]",
"[X]是[Y]的子女",
"[X]由[Y]抚养成人"
],
"所属组织": [
"[X]属于[Y]组织",
"[X]是[Y]的成员",
"[X]毕业或就读于[Y]"
],
"死亡日期": [
"[X]逝世于[Y]",
"[X]在[Y]过世",
"[X]的死亡日期是[Y]"
],
"兄弟姊妹": [
"[X]的兄弟姐妹包括[Y]",
"[X]与[Y]是兄弟姐妹",
"[X]的兄弟姐妹有[Y]"
]
},
"地理地区": {
"位于": [
"[X]位于[Y]",
"[X]位于[Y]之内",
"[X]地处[Y]"
],
"别名": [
"[X]也被称作[Y]",
"[X]的译名的[Y]",
"[X]的别名是[Y]"
],
"人口": [
"[X]的人口数量为[Y]",
"[X]有[Y]人口",
"[X]的居民有[Y]人"
],
"行政中心": [
"[X]的行政中心是[Y]",
"[X]的政治中心位于[Y]",
"[X]的行政管理中心在[Y]"
],
"面积": [
"[X]的面积为[Y]",
"[X]占地[Y]",
"[X]的总面积达到[Y]"
],
"长度": [
"[X]的长度是[Y]",
"[X]长[Y]",
"[X]的纵向距离为[Y]"
],
"宽度": [
"[X]的宽度是[Y]",
"[X]宽[Y]",
"[X]的横向距离为[Y]"
],
"海拔": [
"[X]的海拔高度为[Y]",
"[X]位于海拔[Y]高度",
"[X]的平均海拔是[Y]"
]
},
"建筑结构": {
"位于": [
"[X]位于[Y]",
"[Y]是[X]的所在地",
"[X]坐落在[Y]"
],
"别名": [
"[X]也被叫做[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"创建时间": [
"[X]创建于[Y]",
"[X]建成于[Y]",
"[X]的建筑年代是[Y]"
],
"宽度": [
"[X]的宽度为[Y]",
"[X]宽[Y]",
"[X]横跨[Y]"
],
"长度": [
"[X]的长度为[Y]",
"[X]长[Y]",
"[X]的纵向距离是[Y]"
],
"创建者": [
"[X]的创建者是[Y]",
"[X]由[Y]设计或建造",
"[X]的建造者包括[Y]"
],
"高度": [
"[X]的高度达到[Y]",
"[X]高[Y]",
"[X]的垂直高度是[Y]"
],
"面积": [
"[X]占地面积为[Y]",
"[X]的占地面积是[Y]",
"[X]的总面积约为[Y]"
],
"成就": [
"[X]因[Y]而知名",
"[X]的成就包括[Y]",
"[X]以其[Y]赢得了赞誉"
],
"名称由来": [
"[X]的名字来源于[Y]",
"[X]得名于[Y]",
"[X]的名称由[Y]而来"
]
},
"作品": {
"作者": [
"[X]的作者是[Y]",
"[X]由[Y]编写",
"[Y]创作了[X]"
],
"出版时间": [
"[X]出版于[Y]",
"[X]在[Y]发布",
"[X]的发行时间是[Y]"
],
"别名": [
"[X]也称作[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"产地": [
"[X]产自[Y]",
"[X]的产地是[Y]",
"[X]在[Y]制造"
],
"改编自": [
"[X]改编自[Y]",
"[X]是基于[Y]的改编作品",
"[X]由[Y]改编而成"
],
"演员": [
"[X]的演员包括[Y]",
"[Y]出演了[X]",
"[X]由[Y]主演"
],
"出版商": [
"[X]由[Y]出版",
"[Y]是[X]的出版商",
"[X]的发行商是[Y]"
],
"成就": [
"[X]获得了[Y]",
"[X]因[Y]而知名",
"[X]的成就包括[Y]"
],
"表演者": [
"[X]的演出者包括[Y]",
"[Y]表演了[X]",
"[X]的表演由[Y]完成"
],
"导演": [
"[X]的导演是[Y]",
"[Y]执导了[X]",
"[X]由[Y]导演"
],
"制片人": [
"[X]的制片人包括[Y]",
"[Y]制片了[X]",
"[X]由[Y]制作"
],
"编剧": [
"[X]的编剧是[Y]",
"[Y]编写了[X]的剧本",
"[X]的剧本由[Y]创作"
],
"曲目": [
"[X]包含曲目[Y]",
"[Y]是[X]的曲目之一",
"[X]的音乐包括[Y]"
],
"作曲者": [
"[X]的作曲者是[Y]",
"[Y]为[X]作曲",
"[X]的音乐由[Y]创作"
],
"首播电视台": [
"[X]首播于[Y]",
"[Y]首播了[X]",
"[X]的首播电视台是[Y]"
],
"开发者": [
"[X]由[Y]开发",
"[Y]开发了[X]",
"[X]的开发团队是[Y]"
],
"作词者": [
"[X]的作词者是[Y]",
"[Y]为[X]填词",
"[X]的歌词由[Y]编写"
],
"制作商": [
"[X]由[Y]制作",
"[X]的制作方是[Y]",
"[Y]制作了[X]"
],
"票房": [
"[X]的票房为[Y]",
"[X]赚得了[Y]票房",
"[X]的票房收入达[Y]"
],
"时长": [
"[X]的时长是[Y]",
"[X]持续[Y]",
"[X]的播放时间为[Y]"
],
"平台": [
"[X]在[Y]上发布",
"[X]通过[Y]平台推出",
"[X]在[Y]平台可用"
]
},
"生物": {
"分布": [
"[X]分布于[Y]",
"[X]主要生活在[Y]",
"[Y]是[X]的主要栖息地"
],
"父级分类单元": [
"[X]属于[Y]分类",
"[X]是[Y]的下级生物分类单元",
"[Y]是[X]的父级分类"
],
"长度": [
"[X]的身体长度为[Y]",
"[X]长约[Y]",
"[X]的全长可以达到[Y]"
],
"别名": [
"[X]也被称为[Y]",
"[X]的别称包括[Y]",
"[X]的译名的[Y]"
],
"学名": [
"[X]的学名是[Y]",
"[Y]是[X]的科学名称",
"学术界将[X]称为[Y]"
],
"重量": [
"[X]的体重大约为[Y]",
"[X]的平均重量是[Y]",
"[X]重约[Y]"
],
"宽度": [
"[X]的宽度是[Y]",
"[X]的体宽可以达到[Y]",
"[X]宽约[Y]"
],
"高度": [
"[X]的高度为[Y]",
"[X]高约[Y]",
"[X]的身高可以达到[Y]"
],
"主要食物来源": [
"[X]主要以[Y]为食",
"[X]的食物来源主要是[Y]",
"[Y]是[X]的主要食物"
]
},
"人造物件": {
"别名": [
"[X]也称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"长度": [
"[X]的长度为[Y]",
"[X]长[Y]",
"[X]的全长是[Y]"
],
"宽度": [
"[X]的宽度为[Y]",
"[X]宽[Y]",
"[X]的宽度达到[Y]"
],
"品牌": [
"[X]属于[Y]品牌",
"[X]是[Y]品牌的产品",
"[Y]是[X]的品牌"
],
"材料": [
"[X]使用的材料包括[Y]",
"[X]由[Y]材料制成",
"[X]的主要材料是[Y]"
],
"产地": [
"[X]产自[Y]",
"[X]在[Y]制造",
"[X]的产地是[Y]"
],
"制造商": [
"[X]由[Y]制造",
"[X]的制造商是[Y]",
"[Y]制作了[X]"
],
"发现者或发明者": [
"[X]由[Y]发现或发明",
"[X]的发明者是[Y]",
"[Y]发现或创造了[X]"
]
},
"自然科学": {
"别名": [
"[X]也被称作[Y]",
"[X]的译名的[Y]",
"[X]的别名包括[Y]"
],
"组成": [
"[X]由[Y]组成",
"[X]的成分包括[Y]",
"[X]含有[Y]"
],
"生成物": [
"[X]产生[Y]",
"[X]的生成物包括[Y]",
"由[X]生成的物质是[Y]"
],
"产地": [
"[X]来源于[Y]",
"[X]在[Y]发现或提取",
"[X]的产地是[Y]"
],
"发现者或发明者": [
"[X]由[Y]发现或发明",
"[X]的发现者或发明者是[Y]",
"[Y]首次发现或创造了[X]"
],
"名称由来": [
"[X]的名称来源于[Y]",
"[X]得名自[Y]",
"[X]的命名由[Y]而来"
],
"用途": [
"[X]用于[Y]",
"[X]的用途包括[Y]",
"[X]主要用作[Y]"
]
},
"组织": {
"位于": [
"[X]位于[Y]",
"[X]的总部位于[Y]",
"[Y]是[X]的所在地"
],
"别名": [
"[X]也被称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"子组织": [
"[X]下属有[Y]",
"[X]包含子组织[Y]",
"[Y]是[X]的分支机构"
],
"成立时间": [
"[X]成立于[Y]",
"[X]创立时间是[Y]",
"[X]自[Y]起开始运营"
],
"产品": [
"[X]生产的产品包括[Y]",
"[X]的产品有[Y]",
"[Y]是[X]推出的产品"
],
"成员": [
"[X]的成员包括[Y]",
"[Y]是[X]的一部分",
"[X]由[Y]组成"
],
"创办者": [
"[X]由[Y]创办",
"[X]的创始人是[Y]",
"[Y]成立了[X]"
],
"解散时间": [
"[X]解散于[Y]",
"[X]在[Y]停止运营",
"[X]于[Y]正式解散"
]
},
"运输": {
"位于": [
"[X]位于[Y]",
"[X]设在[Y]",
"[Y]是[X]的所在地"
],
"成立或创建时间": [
"[X]成立于[Y]",
"[X]创建时间是[Y]",
"[X]于[Y]建立"
],
"线路": [
"[X]包括线路[Y]",
"[X]运行线路[Y]",
"[Y]是[X]的一条线路"
],
"开通时间": [
"[X]在[Y]开通",
"[X]的开通时间是[Y]",
"[X]自[Y]起开始服务"
],
"途经": [
"[X]途经[Y]",
"[X]经过[Y]",
"[X]的路线包括[Y]"
],
"面积": [
"[X]占地面积[Y]",
"[X]的面积达到[Y]",
"[X]拥有[Y]的占地面积"
],
"别名": [
"[X]也称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"长度": [
"[X]的长度为[Y]",
"[X]长[Y]",
"[X]全长[Y]"
],
"宽度": [
"[X]的宽度为[Y]",
"[X]宽[Y]",
"[X]的横向宽度为[Y]"
],
"车站等级": [
"[X]的等级为[Y]",
"[X]是[Y]级车站",
"[X]被评为[Y]级"
]
},
"事件": {
"参与者": [
"[X]的参与者包括[Y]",
"[Y]参与了[X]",
"[X]涉及[Y]"
],
"发生地点": [
"[X]发生在[Y]",
"[X]在[Y]举行",
"[Y]是[X]的发生地"
],
"发生时间": [
"[X]发生于[Y]",
"[X]在[Y]时发生",
"[Y]是[X]的发生时间"
],
"别名": [
"[X]也被称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"赞助者": [
"[X]由[Y]赞助",
"[X]的赞助者包括[Y]",
"[Y]资助了[X]"
],
"伤亡人数": [
"[X]的伤亡人数为[Y]",
"[X]造成了[Y]的伤亡",
"[X]中有[Y]人伤亡"
],
"起因": [
"[X]的起因是[Y]",
"[X]由[Y]引发",
"[X]源于[Y]"
],
"导致": [
"[X]导致了[Y]",
"[X]引起了[Y]",
"[X]的结果是[Y]"
],
"主办方": [
"[X]由[Y]主办",
"[X]的主办方是[Y]",
"[Y]组织了[X]"
],
"所获奖项": [
"[X]获得了[Y]",
"[X]荣获[Y]",
"[X]因[Y]而受奖"
],
"获胜者": [
"[X]的获胜者是[Y]",
"[Y]在[X]中获胜",
"[X]的赢家是[Y]"
]
},
"天文对象": {
"别名": [
"[X]也称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"属于": [
"[X]属于[Y]",
"[X]是[Y]的一部分",
"[X]隶属于[Y]系统"
],
"发现时间": [
"[X]发现于[Y]",
"[X]在[Y]被发现",
"[X]的发现时间是[Y]"
],
"发现者或发明者": [
"[X]由[Y]发现",
"[X]的发现者是[Y]",
"[Y]发现了[X]"
],
"名称由来": [
"[X]的名字源自[Y]",
"[X]的名称来自[Y]",
"[X]得名于[Y]"
],
"绝对星等": [
"[X]的绝对星等为[Y]",
"[X]具有绝对星等[Y]",
"[X]的亮度等级是[Y]"
],
"直径": [
"[X]的直径为[Y]",
"[X]直径达[Y]",
"[X]的横截面直径是[Y]"
],
"质量": [
"[X]的质量为[Y]",
"[X]重[Y]",
"[X]具有[Y]的质量"
]
},
"医学": {
"症状": [
"[X]的症状包括[Y]",
"[X]表现为[Y]症状",
"患有[X]可能会出现[Y]"
],
"别名": [
"[X]也称为[Y]",
"[X]的译名的[Y]",
"[X]的别称是[Y]"
],
"发病部位": [
"[X]主要影响[Y]部位",
"[X]的发病部位是[Y]",
"[Y]是[X]的主要发病区域"
],
"可能后果": [
"[X]可能导致[Y]",
"[X]的潜在后果包括[Y]",
"如果不治疗[X],可能会引起[Y]"
],
"病因": [
"[X]的病因包括[Y]",
"[X]可能由[Y]引起",
"[Y]是[X]的常见原因之一"
],
"用药": [
"治疗[X]的药物包括[Y]",
"[X]可用[Y]进行治疗",
"[Y]是治疗[X]的药物"
],
"疗法": [
"[X]的治疗方法包括[Y]",
"针对[X]的疗法有[Y]",
"[X]可以通过[Y]治疗"
],
"传播方式": [
"[X]通过[Y]传播",
"[X]的传播途径包括[Y]",
"[Y]是[X]的传播方式"
]
}
},
"en": {
"Person": {
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alias is [Y]"
],
"place of birth": [
"[X] was born in [Y]",
"[X]'s birthplace is [Y]",
"[X] was birthed in [Y]"
],
"date of birth": [
"[X] was born on [Y]",
"[X]'s birthday is [Y]",
"[X]'s birth date is [Y]"
],
"place of death": [
"[X] died in [Y]",
"[X]'s death place is [Y]",
"[X] passed away in [Y]"
],
"country of citizenship": [
"[X]'s nationality is [Y]",
"[X] holds [Y] nationality",
"[X] is a citizen of [Y]"
],
"occupation": [
"[X]'s profession is [Y]",
"[X] works in [Y]",
"[X]'s field of work is [Y]"
],
"work": [
"[X]'s works include [Y]",
"[X] created [Y]",
"[X]'s works feature [Y]"
],
"achievement": [
"[X]'s achievements include [Y]",
"[X] is famous for [Y]",
"[X] has received honors such as [Y]"
],
"ancestral home": [
"[X]'s place of origin is [Y]",
"[X] comes from [Y]",
"[X] is originally from [Y]"
],
"position held": [
"[X] holds the position of [Y]",
"[X] is employed as [Y]",
"[X]'s position is [Y]"
],
"spouse": [
"[X]'s spouse is [Y]",
"[X] is married to [Y]",
"[X]'s partner is [Y]"
],
"parent": [
"[X]'s parents are [Y]",
"[X] is the child of [Y]",
"[X] was raised by [Y]"
],
"member of": [
"[X] is affiliated with the [Y] organization",
"[X] is a member of [Y]",
"[X] graduated or studied at [Y]"
],
"date of death": [
"[X] died on [Y]",
"[X] passed away on [Y]",
"[X]'s date of death is [Y]"
],
"sibling": [
"[X]'s siblings include [Y]",
"[X] and [Y] are siblings",
"[X]'s siblings are [Y]"
]
},
"Geographic_Location": {
"located in": [
"[X] is located in [Y]",
"[X] is situated within [Y]",
"[X] is positioned in [Y]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alias is [Y]"
],
"population": [
"[X] has a population of [Y]",
"[X] has [Y] inhabitants",
"[X]'s resident population is [Y]"
],
"capital": [
"[X]'s administrative center is [Y]",
"[X]'s political center is located in [Y]",
"[X]'s center of administration is in [Y]"
],
"area": [
"[X] covers an area of [Y]",
"[X] spans [Y]",
"[X]'s total area reaches [Y]"
],
"length": [
"[X]'s length is [Y]",
"[X] is [Y] long",
"[X]'s longitudinal distance is [Y]"
],
"width": [
"[X]'s width is [Y]",
"[X] is [Y] wide",
"[X]'s lateral distance is [Y]"
],
"elevation above sea level": [
"[X]'s elevation is [Y]",
"[X] is at an elevation of [Y]",
"[X]'s average elevation is [Y]"
]
},
"Building": {
"located in": [
"[X] is located in [Y]",
"[Y] is the location of [X]",
"[X] is situated in [Y]"
],
"alternative name": [
"[X] is also called [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternative name is [Y]"
],
"creation time": [
"[X] was created in [Y]",
"[X] was constructed in [Y]",
"[X]'s building era is [Y]"
],
"width": [
"[X] has a width of [Y]",
"[X] is [Y] wide",
"[X] spans [Y]"
],
"length": [
"[X] has a length of [Y]",
"[X] is [Y] long",
"[X]'s longitudinal distance is [Y]"
],
"creator": [
"[X] was created by [Y]",
"[X] was designed or constructed by [Y]",
"[X]'s builders include [Y]"
],
"height": [
"[X] has a height of [Y]",
"[X] is [Y] tall",
"[X]'s vertical height is [Y]"
],
"area": [
"[X] covers an area of [Y]",
"[X]'s floor area is [Y]",
"[X]'s total area is approximately [Y]"
],
"achievement": [
"[X] is famous for [Y]",
"[X]'s achievements include [Y]",
"[X] has gained acclaim for its [Y]"
],
"named after": [
"[X]'s name derives from [Y]",
"[X] is named after [Y]",
"[X]'s name comes from [Y]"
]
},
"Works": {
"author": [
"The author of [X] is [Y]",
"[X] was written by [Y]",
"[Y] created [X]"
],
"publication date": [
"[X] was published in [Y]",
"[X] was released in [Y]",
"The release date of [X] is [Y]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternate name is [Y]"
],
"country of origin": [
"[X] originates from [Y]",
"The origin of [X] is [Y]",
"[X] was produced in [Y]"
],
"based on": [
"[X] is adapted from [Y]",
"[X] is an adaptation of [Y]",
"[X] was adapted from [Y]"
],
"cast member": [
"The cast of [X] includes [Y]",
"[Y] starred in [X]",
"[X] features [Y] in the lead role"
],
"publisher": [
"[X] was published by [Y]",
"[Y] is the publisher of [X]",
"The distributor of [X] is [Y]"
],
"achievement": [
"[X] has achieved [Y]",
"[X] is known for [Y]",
"[X]'s achievements include [Y]"
],
"performer": [
"The performers of [X] include [Y]",
"[Y] performed in [X]",
"The performance of [X] was done by [Y]"
],
"director": [
"The director of [X] is [Y]",
"[Y] directed [X]",
"[X] was directed by [Y]"
],
"producer": [
"The producers of [X] include [Y]",
"[Y] produced [X]",
"[X] was produced by [Y]"
],
"screenwriter": [
"The screenwriter of [X] is [Y]",
"[Y] wrote the screenplay for [X]",
"The script of [X] was written by [Y]"
],
"tracklist": [
"[X] includes the track [Y]",
"[Y] is a track in [X]",
"The music of [X] features [Y]"
],
"composer": [
"The composer of [X] is [Y]",
"[Y] composed the music for [X]",
"The music of [X] was composed by [Y]"
],
"original broadcaster": [
"[X] premiered on [Y]",
"[Y] was the first to broadcast [X]",
"The premiere channel for [X] is [Y]"
],
"developer": [
"[X] was developed by [Y]",
"[Y] developed [X]",
"The development team for [X] is [Y]"
],
"lyrics by": [
"The lyricist of [X] is [Y]",
"[Y] wrote the lyrics for [X]",
"The lyrics of [X] were penned by [Y]"
],
"production company": [
"[X] was produced by [Y]",
"The production company for [X] is [Y]",
"[Y] produced [X]"
],
"box office": [
"The box office of [X] is [Y]",
"[X] earned a box office of [Y]",
"The box office earnings of [X] reached [Y]"
],
"duration": [
"The duration of [X] is [Y]",
"[X] lasts [Y]",
"The running time of [X] is [Y]"
],
"platform": [
"[X] was released on [Y]",
"[X] launched on the [Y] platform",
"[X] is available on [Y]"
]
},
"Creature": {
"distribution": [
"[X] is distributed in [Y]",
"[X] mainly lives in [Y]",
"[Y] is the primary habitat of [X]"
],
"parent taxon": [
"[X] belongs to the [Y] classification",
"[X] is a subordinate taxonomic unit of [Y]",
"[Y] is the higher taxonomic unit of [X]"
],
"length": [
"The body length of [X] is [Y]",
"[X] measures approximately [Y] in length",
"[X] can reach a total length of [Y]"
],
"alternative name": [
"[X] is also called [Y]",
"[X]'s aliases include [Y]",
"[X]'s translated name is [Y]"
],
"taxon name": [
"The scientific name of [X] is [Y]",
"[Y] is the scientific name of [X]",
"In academic circles, [X] is referred to as [Y]"
],
"weight": [
"The average weight of [X] is about [Y]",
"[X] has an average weight of [Y]",
"[X] weighs approximately [Y]"
],
"width": [
"The width of [X] is [Y]",
"[X]'s body width can reach [Y]",
"[X] is about [Y] wide"
],
"height": [
"The height of [X] is [Y]",
"[X] is approximately [Y] tall",
"[X] can reach a height of [Y]"
],
"main food source": [
"[X] primarily feeds on [Y]",
"The main food source of [X] is [Y]",
"[Y] is the primary diet of [X]"
]
},
"Artificial_Object": {
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternative name is [Y]"
],
"length": [
"The length of [X] is [Y]",
"[X] measures [Y] in length",
"The total length of [X] is [Y]"
],
"width": [
"The width of [X] is [Y]",
"[X] is [Y] wide",
"The width of [X] reaches [Y]"
],
"brand": [
"[X] is a [Y] brand",
"[X] is a product of the [Y] brand",
"[Y] is the brand of [X]"
],
"made from material": [
"The materials used for [X] include [Y]",
"[X] is made of [Y] material",
"The main material of [X] is [Y]"
],
"country of origin": [
"[X] originates from [Y]",
"[X] is manufactured in [Y]",
"The place of origin of [X] is [Y]"
],
"manufacturer": [
"[X] is manufactured by [Y]",
"The manufacturer of [X] is [Y]",
"[Y] manufactured [X]"
],
"discoverer or inventor": [
"[X] was discovered or invented by [Y]",
"The inventor of [X] is [Y]",
"[Y] discovered or created [X]"
]
},
"Natural_Science": {
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s aliases include [Y]"
],
"composition": [
"[X] is composed of [Y]",
"The components of [X] include [Y]",
"[X] contains [Y]"
],
"product": [
"[X] produces [Y]",
"The products of [X] include [Y]",
"The substances generated by [X] include [Y]"
],
"country of origin": [
"[X] originates from [Y]",
"[X] is discovered or extracted in [Y]",
"The source of [X] is [Y]"
],
"discoverer or inventor": [
"[X] was discovered or invented by [Y]",
"The discoverer or inventor of [X] is [Y]",
"[Y] first discovered or created [X]"
],
"named after": [
"The name of [X] derives from [Y]",
"[X] is named after [Y]",
"The naming of [X] comes from [Y]"
],
"has use": [
"[X] is used for [Y]",
"The uses of [X] include [Y]",
"[X] is primarily used as [Y]"
]
},
"Organization": {
"located in": [
"[X] is located in [Y]",
"The headquarters of [X] is in [Y]",
"[Y] is the location of [X]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternative name is [Y]"
],
"has subsidiary": [
"[X] has subsidiary [Y]",
"[X] includes sub-organization [Y]",
"[Y] is a branch of [X]"
],
"date of incorporation": [
"[X] was established in [Y]",
"The founding date of [X] is [Y]",
"[X] has been operating since [Y]"
],
"product or material produced": [
"The products of [X] include [Y]",
"[X]'s products feature [Y]",
"[Y] is a product released by [X]"
],
"member": [
"The members of [X] include [Y]",
"[Y] is a part of [X]",
"[X] is composed of [Y]"
],
"founded by": [
"[X] was founded by [Y]",
"The founder of [X] is [Y]",
"[Y] established [X]"
],
"dissolution time": [
"[X] was dissolved in [Y]",
"[X] ceased operations in [Y]",
"[X] was officially dissolved on [Y]"
]
},
"Transport": {
"located in": [
"[X] is located in [Y]",
"[X] is situated in [Y]",
"[Y] is the location of [X]"
],
"inception": [
"[X] was established in [Y]",
"The creation date of [X] is [Y]",
"[X] was founded in [Y]"
],
"connecting line": [
"[X] includes route [Y]",
"[X] operates route [Y]",
"[Y] is a route of [X]"
],
"date of official opening": [
"[X] opened in [Y]",
"The opening date of [X] is [Y]",
"[X] began service from [Y]"
],
"pass": [
"[X] passes through [Y]",
"[X] goes through [Y]",
"The route of [X] includes [Y]"
],
"area": [
"[X] covers an area of [Y]",
"The area of [X] reaches [Y]",
"[X] has a land area of [Y]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternate name is [Y]"
],
"length": [
"The length of [X] is [Y]",
"[X] measures [Y] in length",
"[X] has a total length of [Y]"
],
"width": [
"The width of [X] is [Y]",
"[X] is [Y] wide",
"[X]'s horizontal width is [Y]"
],
"class of station": [
"The class of [X] is [Y]",
"[X] is a [Y] class station",
"[X] has been rated as [Y] class"
]
},
"Event": {
"participant": [
"The participants of [X] include [Y]",
"[Y] participated in [X]",
"[X] involves [Y]"
],
"scene": [
"[X] took place in [Y]",
"[X] was held in [Y]",
"[Y] is the location of [X]"
],
"occurrence time": [
"[X] occurred on [Y]",
"[X] happened during [Y]",
"[Y] is the date of [X]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternate name is [Y]"
],
"sponsor": [
"[X] was sponsored by [Y]",
"The sponsors of [X] include [Y]",
"[Y] funded [X]"
],
"casualties": [
"The number of casualties in [X] is [Y]",
"[X] resulted in [Y] casualties",
"There were [Y] casualties in [X]"
],
"has cause": [
"The cause of [X] is [Y]",
"[X] was triggered by [Y]",
"[X] originated from [Y]"
],
"has effect": [
"[X] led to [Y]",
"[X] caused [Y]",
"The result of [X] is [Y]"
],
"organizer": [
"[X] was organized by [Y]",
"The organizer of [X] is [Y]",
"[Y] organized [X]"
],
"awards": [
"[X] received [Y]",
"[X] was honored with [Y]",
"[X] was awarded [Y]"
],
"winner": [
"The winner of [X] is [Y]",
"[Y] won in [X]",
"The victor of [X] is [Y]"
]
},
"Astronomy": {
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternate name is [Y]"
],
"of": [
"[X] belongs to [Y]",
"[X] is a part of [Y]",
"[X] is part of the [Y] system"
],
"time of discovery": [
"[X] was discovered in [Y]",
"[X] was found in [Y]",
"The discovery date of [X] is [Y]"
],
"discoverer or inventor": [
"[X] was discovered by [Y]",
"The discoverer of [X] is [Y]",
"[Y] discovered [X]"
],
"named after": [
"The name of [X] originates from [Y]",
"The name of [X] comes from [Y]",
"[X] is named after [Y]"
],
"absolute magnitude": [
"The absolute magnitude of [X] is [Y]",
"[X] has an absolute magnitude of [Y]",
"The brightness level of [X] is [Y]"
],
"diameter": [
"The diameter of [X] is [Y]",
"[X] has a diameter of [Y]",
"The cross-sectional diameter of [X] is [Y]"
],
"mass": [
"The mass of [X] is [Y]",
"[X] weighs [Y]",
"[X] has a mass of [Y]"
]
},
"Medicine": {
"symptoms and signs": [
"The symptoms of [X] include [Y]",
"[X] manifests as [Y] symptoms",
"Having [X] may result in symptoms such as [Y]"
],
"alternative name": [
"[X] is also known as [Y]",
"[X]'s translated name is [Y]",
"[X]'s alternate name is [Y]"
],
"pathogenic site": [
"[X] mainly affects the [Y] area",
"The affected area of [X] is [Y]",
"[Y] is the primary area affected by [X]"
],
"possible consequences": [
"[X] may lead to [Y]",
"Potential consequences of [X] include [Y]",
"Untreated [X] may cause [Y]"
],
"etiology": [
"The causes of [X] include [Y]",
"[X] may be caused by [Y]",
"[Y] is one of the common causes of [X]"
],
"drug or therapy used for treatment": [
"Medications for treating [X] include [Y]",
"[X] can be treated with [Y]",
"[Y] is a medication for treating [X]"
],
"possible treatment": [
"Treatment methods for [X] include [Y]",
"Therapies for [X] include [Y]",
"[X] can be treated through [Y]"
],
"disease transmission process": [
"[X] is transmitted via [Y]",
"The transmission routes of [X] include [Y]",
"[Y] is a mode of transmission for [X]"
]
}
}
} |