File size: 31,208 Bytes
b877d14 | 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 | [
{
"id": 4903,
"uuid": "bd226bc4-4f88-42e0-a421-18fe06b0564d",
"hitokoto": "你总会遇到一个人 恰如其分的适合你 不用刻意迁就,任意撒娇,你们相爱,并且默契。",
"type": "j",
"from": "网易云热评",
"from_who": "相爱十年",
"creator": "QIQI",
"creator_uid": 494,
"reviewer": 1,
"commit_from": "web",
"created_at": "1574512325",
"length": 40
},
{
"id": 4905,
"uuid": "59359c1b-1d1f-47bb-8c79-67599d7dee48",
"hitokoto": "一旬败给年少轻狂的理想,二旬败给青涩无知的爱情,三旬败给沧桑寂寥的现实。",
"type": "j",
"from": "网易云热评",
"from_who": "理想三旬",
"creator": "卿书",
"creator_uid": 4289,
"reviewer": 1,
"commit_from": "web",
"created_at": "1573825095",
"length": 36
},
{
"id": 4981,
"uuid": "7d23ea19-b8d9-4b08-ac03-ca28613e5ecb",
"hitokoto": "冲动的红色终究是败在了白玫瑰的平淡和冷静上,狠狠的跌了一个大跟头,看着更加刺眼。",
"type": "j",
"from": "红玫瑰和白玫瑰",
"from_who": null,
"creator": "我爱的曾经",
"creator_uid": 4897,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1581589896",
"length": 40
},
{
"id": 5071,
"uuid": "83b37c46-f6b0-4c18-984a-0f269fea81e4",
"hitokoto": "如果忘记你那么容易,那我爱你干嘛!",
"type": "j",
"from": "原创",
"from_who": null,
"creator": "赵西湘",
"creator_uid": 4950,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1581866804",
"length": 17
},
{
"id": 5108,
"uuid": "a9f006a9-8af6-4f2b-a4d7-03f50c70ffd6",
"hitokoto": "多巴胺不等于爱情,爱情却一定有多巴胺!",
"type": "j",
"from": "网易热评",
"from_who": "不在爱里迷失",
"creator": "小忧忧",
"creator_uid": 4701,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1582646685",
"length": 19
},
{
"id": 5109,
"uuid": "0b9533fc-3850-43f6-bb03-423a5dbf2fa5",
"hitokoto": "荷尔蒙决定一见钟情,多巴胺决定天长地久。",
"type": "j",
"from": "网易云",
"from_who": "不自爱里迷失",
"creator": "小忧忧",
"creator_uid": 4701,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1582646766",
"length": 20
},
{
"id": 5116,
"uuid": "638b83e6-88d1-4499-a091-b9569f53dc14",
"hitokoto": "要保持希望在每天清晨太阳升起。",
"type": "j",
"from": "自己",
"from_who": null,
"creator": "惜于顾",
"creator_uid": 4929,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1581739852",
"length": 15
},
{
"id": 5165,
"uuid": "cc5d4eca-b4fb-4da8-aa1c-7f69d8cea9fb",
"hitokoto": "恰沐春风共同游,终只叹,木已舟。",
"type": "j",
"from": "网易云",
"from_who": null,
"creator": "悬日",
"creator_uid": 5126,
"reviewer": 1044,
"commit_from": "app",
"created_at": "1582871417",
"length": 16
},
{
"id": 5209,
"uuid": "abb4784d-5790-4c1b-be3f-b23025fd69a6",
"hitokoto": "因为痛苦太有价值,因为回忆太珍贵,所以我们更要继续往前走。",
"type": "j",
"from": "五月天",
"from_who": null,
"creator": "MayDay",
"creator_uid": 5129,
"reviewer": 1044,
"commit_from": "app",
"created_at": "1583345015",
"length": 29
},
{
"id": 5229,
"uuid": "e50068ca-c13b-4f28-a9ee-0e53d6776b10",
"hitokoto": "所谓有趣的灵魂,实际上就是这个人的信息密度和知识层面,都远高于你,并愿意俯下身去听你说那毫无营养的废话和你交流,提出一些你没有听过的观点,颠覆了你短浅的想象力及三观。",
"type": "j",
"from": "网易云音乐",
"from_who": null,
"creator": "Miko",
"creator_uid": 5305,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1583727209",
"length": 83
},
{
"id": 5311,
"uuid": "a316bec6-0f9d-4c66-a3d2-6dda48588ca9",
"hitokoto": "私は 根拠も 証明も ないような 現状世界くらいがお似合いだ。",
"type": "j",
"from": "ライラック",
"from_who": "美博",
"creator": "dd斩首",
"creator_uid": 5577,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1584884275",
"length": 31
},
{
"id": 5312,
"uuid": "8f7adef7-d229-468e-bb47-8732f0db98d3",
"hitokoto": "人のエゴで造られた 虚にだけはなりたくはなくて。",
"type": "j",
"from": "ライラック",
"from_who": "美波",
"creator": "dd斩首",
"creator_uid": 5577,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1584884340",
"length": 24
},
{
"id": 5324,
"uuid": "4b01d901-0574-4dab-afa8-215cf5c82db6",
"hitokoto": "我们总是喜欢拿“顺其自然”来敷衍人生道路上的荆棘坎坷,却很少承认,真正的顺其自然,其实是竭尽所能之后的不强求,而非两手一摊的不作为。",
"type": "j",
"from": "网易云 花びらの刻",
"from_who": null,
"creator": "莽红尘觅知嘤",
"creator_uid": 5611,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1585216455",
"length": 66
},
{
"id": 5342,
"uuid": "47ec2535-2384-4bee-b3b7-b4879bdcc182",
"hitokoto": "愿生活不太拥挤,愿笑容不必刻意。愿孤独不再长久,愿碎镜终有重圆。",
"type": "j",
"from": "网易云音乐",
"from_who": "风来了呀_",
"creator": "lzt",
"creator_uid": 5623,
"reviewer": 1,
"commit_from": "web",
"created_at": "1585139991",
"length": 32
},
{
"id": 5960,
"uuid": "46f53268-b0ac-4921-a49a-53bcfd935bc3",
"hitokoto": "就像那句狠话:有一天,我一定会后悔的。",
"type": "j",
"from": "网易云",
"from_who": "此账号已注销",
"creator": "破晓之雪",
"creator_uid": 5882,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586821497",
"length": 19
},
{
"id": 5967,
"uuid": "bad64921-c8b6-433f-b058-8120906eeef2",
"hitokoto": "世界之大为何我们相遇,难道是缘分,难道是天意。",
"type": "j",
"from": "我的歌声里",
"from_who": "曲婉婷",
"creator": "陈树凤",
"creator_uid": 5678,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1587181370",
"length": 23
},
{
"id": 6054,
"uuid": "36d1f4a5-2a34-4489-b776-f2857c8baf47",
"hitokoto": "想一个人有多想念,那又是文字失效瞬间。",
"type": "j",
"from": "仓颉",
"from_who": "五月天",
"creator": "小杨",
"creator_uid": 5943,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587639189",
"length": 19
},
{
"id": 6063,
"uuid": "5022c874-6065-4dab-8cca-576e584f5e37",
"hitokoto": "“浪漫”源于骑士文学,形容中世纪骑士阶级和贵妇人之间注定无法有结果的爱情;“Romance”的本意就是知其不可而为之,是明知不会有结果却无法停止爱你。",
"type": "j",
"from": "网易云",
"from_who": "此账号已注销",
"creator": "破晓之雪",
"creator_uid": 5882,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587877950",
"length": 75
},
{
"id": 6064,
"uuid": "102e669d-3f7a-49e3-88e3-5a571756c747",
"hitokoto": "让我们惊艳过的星辰,流淌在失眠的音阶,落足仲夏的暗沉之夜,蚊虫都进化成坦然的旅客。未结清的烂账堆满前半生,旅馆的钨丝灯阔然开朗,我惊恐的闭上双眼,从此再没有睁开。",
"type": "j",
"from": "网易云",
"from_who": "unlighted",
"creator": "破晓之雪",
"creator_uid": 5882,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587878094",
"length": 81
},
{
"id": 6065,
"uuid": "44931e26-6f34-4ebb-9217-9f193d2858fc",
"hitokoto": "——什么是孤独?——心里明明空荡荡的,却什么也装不下。",
"type": "j",
"from": "网易云",
"from_who": "此账号已注销",
"creator": "破晓之雪",
"creator_uid": 5882,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587878121",
"length": 27
},
{
"id": 6091,
"uuid": "4e25fa6a-35f7-450d-8381-5f087c9d4e43",
"hitokoto": "隔着屏幕轻易产生感情的你,肯定很孤独吧。",
"type": "j",
"from": "you're somebody else",
"from_who": null,
"creator": "xiaoz",
"creator_uid": 6104,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1588497019",
"length": 20
},
{
"id": 6126,
"uuid": "fe327dae-bbf7-49f4-9684-1f31897b4a5f",
"hitokoto": "流萤漫天花共舞,闲蝉栖柳风奏湖。十年一梦不觉醒,夏祭花火终成空。",
"type": "j",
"from": "夏祭り、夢花火",
"from_who": "旋土浮尘",
"creator": "Liak",
"creator_uid": 6141,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1588760942",
"length": 32
},
{
"id": 6128,
"uuid": "7257297b-5995-4506-adf9-efa24f6abb2b",
"hitokoto": "幽幽轻音入梦来,淡淡忧伤曲中闻。似乐又皮更轻音,原是梦入幻想乡。",
"type": "j",
"from": "蓬莱传说(蓬莱伝説)",
"from_who": "千茗猫",
"creator": "Liak",
"creator_uid": 6141,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1588772123",
"length": 32
},
{
"id": 6136,
"uuid": "19b6b09d-b85f-40ac-b4b8-6601b34c464b",
"hitokoto": "Grab the air, We can try to fly. 抓住空气我们可以尝试飞翔。",
"type": "j",
"from": "Grab the air",
"from_who": "milet",
"creator": "dd斩首",
"creator_uid": 5577,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1591522114",
"length": 46
},
{
"id": 6148,
"uuid": "9cf55246-80d0-452a-938e-f8dc136e5d58",
"hitokoto": "See I was blind to the sun by my thunder.",
"type": "j",
"from": "I Feel Human",
"from_who": "Vicetone",
"creator": "foreversama",
"creator_uid": 3576,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1589112295",
"length": 41
},
{
"id": 6182,
"uuid": "cd536441-c25d-4091-9b9e-40ca2e189ef5",
"hitokoto": "每个人的心里,都有一个忘不记,却无法拥抱珍惜的人。",
"type": "j",
"from": "热评",
"from_who": null,
"creator": "青羊",
"creator_uid": 6284,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1590349622",
"length": 25
},
{
"id": 6212,
"uuid": "e4c6a54a-be51-4cdd-88ab-3df273dbaa87",
"hitokoto": "在不同的遭遇里我发现你的瞬间,有种不可言说的温柔直觉。",
"type": "j",
"from": "保留",
"from_who": "郭顶",
"creator": "陨星、若芜芫",
"creator_uid": 6317,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1590718236",
"length": 27
},
{
"id": 6259,
"uuid": "874496cc-f3f9-4c5f-bab8-4cc290d6a99d",
"hitokoto": "真正走掉那次,关门声最小。",
"type": "j",
"from": "网易云",
"from_who": "@-南得你-",
"creator": "Irony",
"creator_uid": 4464,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1592125903",
"length": 13
},
{
"id": 6339,
"uuid": "3fb5d9e3-548e-4161-ae4d-1c8e6283bf0a",
"hitokoto": "有的人,终生都在怀念那个夏天。最好的我们,始终会留在那年八月。前程似锦是一句离别时说的话 ,祝你前程似锦也祝我前途无量。这首歌的评论刷的这么快,就让这条评论,带着我对你祝福沉下去吧。",
"type": "j",
"from": "网易云热评",
"from_who": null,
"creator": "HuiGuo",
"creator_uid": 6591,
"reviewer": 1,
"commit_from": "web",
"created_at": "1593434605",
"length": 91
},
{
"id": 6379,
"uuid": "210abe14-2bd9-483a-9d49-216dd8e28701",
"hitokoto": "得你一个,不要花火,无需经历从未遗憾过,冒险生活从未适合我,得你得我若无其事渡过,难得的是你不讨厌我。",
"type": "j",
"from": "我得你",
"from_who": "张学友",
"creator": "PaulWong",
"creator_uid": 6535,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1595523386",
"length": 51
},
{
"id": 6396,
"uuid": "b45da923-686d-45cb-8343-a4b53b44d607",
"hitokoto": "你是否真的可以feel my pain,还是你和他们一样都会变。",
"type": "j",
"from": "intro-我",
"from_who": "泥鳅",
"creator": "你有多久没有看过星星",
"creator_uid": 6840,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1596107216",
"length": 32
},
{
"id": 6457,
"uuid": "0e763da0-7eda-431f-9712-0accf900edb9",
"hitokoto": "我希望兜兜转转之后那个人还是你。",
"type": "j",
"from": "网易云音乐",
"from_who": "不要半夜躲在被子里哭了",
"creator": "VenomSnake",
"creator_uid": 7323,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1601639030",
"length": 16
},
{
"id": 6527,
"uuid": "fddf5bb3-f3ec-499b-b637-0ea093250c76",
"hitokoto": "哪有顷刻之间的心灰意冷,有的,只是日积月累的看透罢了。",
"type": "j",
"from": "觅楽-语录",
"from_who": "觅楽",
"creator": "悟空",
"creator_uid": 7256,
"reviewer": 6844,
"commit_from": "web",
"created_at": "1601175266",
"length": 27
},
{
"id": 6611,
"uuid": "b00dd7cf-2ed5-4458-b96c-f5f620822ed6",
"hitokoto": "无论在什么时候,在这世间的角落都会有一些人逆着光而来,将温暖洒落人间。",
"type": "j",
"from": "网易云音乐",
"from_who": "网友",
"creator": "Tesla",
"creator_uid": 7585,
"reviewer": 5198,
"commit_from": "web",
"created_at": "1603885340",
"length": 35
},
{
"id": 6686,
"uuid": "ad547d28-109c-408d-bb71-099ac786f125",
"hitokoto": "来人间一趟 你要看看太阳。",
"type": "j",
"from": "海底",
"from_who": "薯味博饼",
"creator": "fengbujue",
"creator_uid": 7736,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1605261525",
"length": 13
},
{
"id": 6714,
"uuid": "0167e1d0-02f7-4399-9a56-0631b307fad0",
"hitokoto": "她去世时,自己并没有想象中那么悲伤,只是感到很失落。现在才知道,原来是那份悲伤被分散到我的整个余生了。",
"type": "j",
"from": "网易云",
"from_who": "@LeePlusPlus",
"creator": "Irony",
"creator_uid": 4464,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1605011811",
"length": 51
},
{
"id": 6740,
"uuid": "fa5dc1da-4765-4b80-92fa-ad5303481856",
"hitokoto": "我在最没有能力的年纪,遇见了最想照顾一生的人。",
"type": "j",
"from": "网易云音乐",
"from_who": null,
"creator": "小透明",
"creator_uid": 7788,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1605768847",
"length": 23
},
{
"id": 6786,
"uuid": "3d26c536-37c5-40e0-8db5-03fc069cf28e",
"hitokoto": "人与人的相遇,不是恩赐就是劫。",
"type": "j",
"from": "网易云",
"from_who": "ShimmerLS",
"creator": "ShimmerLS",
"creator_uid": 7868,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1606420861",
"length": 15
},
{
"id": 6834,
"uuid": "2ffb27d4-a24c-48cc-bd17-acb575fe2712",
"hitokoto": "我有故人抱剑去,斩尽春风未曾归。",
"type": "j",
"from": "孤山不孤",
"from_who": "鸾歌",
"creator": "Yousazoe",
"creator_uid": 7945,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607219032",
"length": 16
},
{
"id": 6894,
"uuid": "55eb86a8-b0e5-4e35-986d-45db57c48b19",
"hitokoto": "成熟的人眼里满是前途,稚嫩的人眼里满是爱恨情仇。",
"type": "j",
"from": "网易云热评",
"from_who": null,
"creator": "星空下的约定",
"creator_uid": 7959,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607433993",
"length": 24
},
{
"id": 6984,
"uuid": "7a83ff07-faf8-4d14-b0cc-efaf296ecadb",
"hitokoto": "搞怪的不是红绿灯,而是我数不清的犹豫。",
"type": "j",
"from": "请回答1998",
"from_who": null,
"creator": "情话.",
"creator_uid": 7164,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1611794293",
"length": 19
},
{
"id": 7126,
"uuid": "b89d162c-e3aa-412a-aaac-ff19aa0cb3a6",
"hitokoto": "我也想杀死伤痛,让那恩怨有始有终。",
"type": "j",
"from": "县城",
"from_who": "刘森",
"creator": "Hacbox",
"creator_uid": 8608,
"reviewer": 1,
"commit_from": "web",
"created_at": "1616907034",
"length": 17
},
{
"id": 7311,
"uuid": "9a17c193-9922-4bce-baea-d4c27caf17cc",
"hitokoto": "有些人光是遇到就已经赚到了。",
"type": "j",
"from": "网易云",
"from_who": "赵紫骅",
"creator": "James",
"creator_uid": 9109,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1619272123",
"length": 14
},
{
"id": 7362,
"uuid": "54f7cf49-b228-428c-8ef9-f12e0e2eb2df",
"hitokoto": "人间忽晚,山河已秋。",
"type": "j",
"from": "人间忽晚",
"from_who": "亦沫不吃鱼",
"creator": "GL",
"creator_uid": 9589,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1624861348",
"length": 10
},
{
"id": 7368,
"uuid": "02843d42-4018-4e3c-811a-f86332508d04",
"hitokoto": "我喝过你喝的西北风,这算不算很穷。",
"type": "j",
"from": "网易云",
"from_who": "妤儿_moon",
"creator": "cookie1038",
"creator_uid": 9607,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1625134833",
"length": 17
},
{
"id": 7437,
"uuid": "b4b49262-8ad0-4ad6-a30d-9463c16245aa",
"hitokoto": "抽烟的人永远闻不到身上的烟味,就像被爱的人,永远不知道爱他的人有多累。",
"type": "j",
"from": "网易云",
"from_who": "James",
"creator": "James",
"creator_uid": 9109,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619272172",
"length": 35
},
{
"id": 7512,
"uuid": "40797401-d20f-4160-b61d-758e833db0d5",
"hitokoto": "停下脚步才注意到 世界被染得雪白。",
"type": "j",
"from": "雪降り、メリクリ",
"from_who": "A39&沙包P&初音ミク",
"creator": "hbyang233",
"creator_uid": 10440,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1632098732",
"length": 17
},
{
"id": 7690,
"uuid": "8546be88-4c93-4baf-9d34-dcd6b4180895",
"hitokoto": "你在我规划的航程上,我在你投射的视线里。",
"type": "j",
"from": "歌曲《人生苦短》歌词",
"from_who": "周佳顺",
"creator": "xiongfie ng",
"creator_uid": 9233,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1620565835",
"length": 20
},
{
"id": 7691,
"uuid": "33aafd1e-8889-4ce8-b154-8d8083f444a4",
"hitokoto": "如果你在看,我就是你的风景。如果你在听,我该有多幸运。",
"type": "j",
"from": "歌曲《人生苦短》歌词",
"from_who": "周佳顺",
"creator": "xiongfie ng",
"creator_uid": 9233,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1620565888",
"length": 27
},
{
"id": 7751,
"uuid": "0e3ad659-bf2f-4031-9cf9-ae43605618be",
"hitokoto": "这世界太大,勇敢的少年奔赴天涯。",
"type": "j",
"from": "荣耀同行",
"from_who": "陈可心",
"creator": "异想之旅",
"creator_uid": 11403,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1643780116",
"length": 16
},
{
"id": 7780,
"uuid": "b6bf7099-9125-47b0-bb08-c9206660f6db",
"hitokoto": "如此生活30年,直到大厦崩塌。",
"type": "j",
"from": "杀死那个石家庄人",
"from_who": "万能青年旅店",
"creator": "青风之语",
"creator_uid": 11598,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1645861847",
"length": 15
},
{
"id": 7783,
"uuid": "c27b6e8e-e062-4929-a87f-d60253ec7331",
"hitokoto": "要是追不上光,那就变成光吧。",
"type": "j",
"from": "网易云评论",
"from_who": "小白想做你的唯一",
"creator": "LanXi",
"creator_uid": 11644,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1646388974",
"length": 14
},
{
"id": 7800,
"uuid": "209ca635-156c-431f-9a75-687e548545ab",
"hitokoto": "在这个世界上,失恋了就失恋了。反正没有比我更爱你的人。以前是,现在是,将来不是了。",
"type": "j",
"from": "比你更爱我的人",
"from_who": "陈壹千",
"creator": "茶褐",
"creator_uid": 11611,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1646832418",
"length": 41
},
{
"id": 7836,
"uuid": "3e6f0c71-c9a8-4cfd-aabe-49132f89fc54",
"hitokoto": "飒爽英姿闯江湖,诗酒茶话莫孤独。",
"type": "j",
"from": "飒",
"from_who": "是二智呀",
"creator": "陈弋函",
"creator_uid": 10950,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1648354499",
"length": 16
},
{
"id": 7909,
"uuid": "fc58a33e-3923-4869-aca6-a93843847563",
"hitokoto": "若是你所期望的,那定会得到强烈的回应。",
"type": "j",
"from": "M八七",
"from_who": "米津玄师",
"creator": "罗飞",
"creator_uid": 12636,
"reviewer": 1,
"commit_from": "web",
"created_at": "1658001207",
"length": 19
},
{
"id": 8143,
"uuid": "c8f8f2f5-cc9b-49ea-854b-ea4559739034",
"hitokoto": "希望你别像风,在我这里面掀起万翻般波澜,却又跟云去了远方。",
"type": "j",
"from": "网易云",
"from_who": "如风过境",
"creator": "Rose",
"creator_uid": 10234,
"reviewer": 1,
"commit_from": "web",
"created_at": "1630105846",
"length": 29
},
{
"id": 8246,
"uuid": "ad78b211-ec0a-4ed8-a266-03faf966bc6c",
"hitokoto": "不努力就只能听到别人的好消息。",
"type": "j",
"from": "网易云音乐热评",
"from_who": "佚名",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653642620",
"length": 15
},
{
"id": 8247,
"uuid": "0c0030d1-eed7-4a19-b499-32ccc3e9a032",
"hitokoto": "慢也好,步伐小也罢,是往前走就好。",
"type": "j",
"from": "网易云音乐热评",
"from_who": "佚名",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653642582",
"length": 17
},
{
"id": 8248,
"uuid": "4d919677-189f-4328-832f-66028c54f54e",
"hitokoto": "要优秀啊,不然怎么遇见优秀的人!",
"type": "j",
"from": "网易云音乐热评",
"from_who": "佚名",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653642541",
"length": 16
},
{
"id": 8302,
"uuid": "918dc313-dead-4708-b15a-0a6325ff3e66",
"hitokoto": "一辈子,能坚持做好一件事就很伟大了!",
"type": "j",
"from": "网易云音乐",
"from_who": "柯钊",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653643136",
"length": 18
},
{
"id": 8303,
"uuid": "e0da5bce-55b6-44b0-82e0-d8a92681dfe4",
"hitokoto": "变好的过程都不太舒服,试试再努力点。",
"type": "j",
"from": "网易云音乐",
"from_who": "pony",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653642510",
"length": 18
},
{
"id": 8304,
"uuid": "42396512-6aa1-49e0-bd26-44c9cbb4b457",
"hitokoto": "慢慢来,谁还没有一个努力的过程。",
"type": "j",
"from": "网易云音乐",
"from_who": "pony",
"creator": "collin",
"creator_uid": 12365,
"reviewer": 1,
"commit_from": "web",
"created_at": "1653642489",
"length": 16
},
{
"id": 8456,
"uuid": "41a20cd6-d30e-4044-90cd-f0b3d04a3bc7",
"hitokoto": "晦暗的宇宙,我们找不到光,看不见尽头,但我们永远都不会被黑色打倒。",
"type": "j",
"from": "自由 Part II评论",
"from_who": "佚名",
"creator": "fhq_treap",
"creator_uid": 9986,
"reviewer": 1,
"commit_from": "web",
"created_at": "1650463117",
"length": 33
},
{
"id": 8480,
"uuid": "7b6bc15e-cf71-405c-9ab8-4028078384e0",
"hitokoto": "墓碑下是我们的小宝贝,他既不哭也不闹,只活了二十一天 ,花掉我们四十块钱。他来到这世上,四处看了看,不太满意,就回去了。",
"type": "j",
"from": "网易云",
"from_who": "不详",
"creator": "某猫崽",
"creator_uid": 10791,
"reviewer": 1,
"commit_from": "web",
"created_at": "1660393918",
"length": 60
},
{
"id": 8608,
"uuid": "742294d9-bf48-4198-80d1-27b56c9a5e90",
"hitokoto": "所有大张旗鼓的离开其实都是试探,真正的离开是没有告别的,真正想要离开的人,只是挑了一个风和日丽的早晨,裹了一件最常穿的大衣,悄悄地关上门然后再也没有回来。",
"type": "j",
"from": "你还要我怎样",
"from_who": "佚名",
"creator": "小苏不酥",
"creator_uid": 11338,
"reviewer": 1,
"commit_from": "web",
"created_at": "1643176095",
"length": 77
},
{
"id": 8613,
"uuid": "d8d14b24-1926-43c2-a982-f37d7c44278e",
"hitokoto": "暧昧是什么?是所有人都以为你们在一起了,只有你清楚地知道你们的距离。",
"type": "j",
"from": "说谎",
"from_who": "佚名",
"creator": "小苏不酥",
"creator_uid": 11338,
"reviewer": 1,
"commit_from": "web",
"created_at": "1643176229",
"length": 34
},
{
"id": 8622,
"uuid": "fbb770c4-52d9-4c3f-af48-2283dcb61635",
"hitokoto": "永远不要熄灭心中的火,哪怕别人只看见烟。",
"type": "j",
"from": "网易云",
"from_who": "佚名",
"creator": "Anoxia",
"creator_uid": 10724,
"reviewer": 1,
"commit_from": "web",
"created_at": "1636094973",
"length": 20
},
{
"id": 8771,
"uuid": "6b148481-deec-45cb-9d05-d0682604b7e9",
"hitokoto": "后来,错过也成了人间常态。",
"type": "j",
"from": "网易云音乐",
"from_who": "焦糖and瓜子",
"creator": "焦糖and瓜子",
"creator_uid": 12043,
"reviewer": 1,
"commit_from": "web",
"created_at": "1650085799",
"length": 13
},
{
"id": 8914,
"uuid": "1157e1b8-41b2-43e9-89e6-526a4c43585f",
"hitokoto": "等到梅子黄时,我再为你落最后一次笔,写你眼里泅泳的鲸和脚踝的痣。",
"type": "j",
"from": "网易云",
"from_who": null,
"creator": "CyumEwOari_",
"creator_uid": 13482,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1668604154",
"length": 32
},
{
"id": 9051,
"uuid": "7e374cb5-d1a9-40de-9409-163aec08ada7",
"hitokoto": "Say less sing loud, echo endlessly. Head up feet down, rushing recklessly (少些抱怨,多些高歌,让余音绕梁长久些。仰望星空,脚踏实地;无问西东,向前奔跑)。",
"type": "j",
"from": "Say Less",
"from_who": "Puppet",
"creator": "155T",
"creator_uid": 13188,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1665298724",
"length": 115
},
{
"id": 9061,
"uuid": "d75feac1-1dd8-4480-95ef-4cf864beb91f",
"hitokoto": "风月折断杨柳枝,琴瑟朝露挥掷成诗。",
"type": "j",
"from": "昨日死",
"from_who": "龙小套",
"creator": "明年丶明月",
"creator_uid": 13255,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666156212",
"length": 17
},
{
"id": 9071,
"uuid": "5d6f1efd-9133-4b48-85ff-fd69675bf48a",
"hitokoto": "“你失去了”\r\n“我从未拥有”",
"type": "j",
"from": "网易云评论",
"from_who": null,
"creator": "Rene8028",
"creator_uid": 10606,
"reviewer": 1044,
"commit_from": "app",
"created_at": "1666178755",
"length": 15
},
{
"id": 9143,
"uuid": "ebff95d0-7ab1-4a2f-8b4e-54a7ec40a1f7",
"hitokoto": "我想要说的,前人们都说过了。我想要做的,有钱人都做过了。",
"type": "j",
"from": "烂泥",
"from_who": "草东没有派对",
"creator": "Xun",
"creator_uid": 13941,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1672836292",
"length": 28
},
{
"id": 9188,
"uuid": "52ec0e71-e9e2-4f63-8b35-cff1abcda4f4",
"hitokoto": "跨越光年,归来任是你。",
"type": "j",
"from": "臆影",
"from_who": null,
"creator": "风易尘",
"creator_uid": 14039,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1674031519",
"length": 11
},
{
"id": 9202,
"uuid": "ec779b5b-3274-47e2-975f-6ec3a89db0c1",
"hitokoto": "这个世界很大,告别的方式有多少种,人生的正确答案就有多少个。",
"type": "j",
"from": "南唐闲人",
"from_who": null,
"creator": "return2017",
"creator_uid": 12976,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1675477095",
"length": 30
},
{
"id": 9247,
"uuid": "f4895b1a-6da2-4f23-ae25-43f0598666a5",
"hitokoto": "起来!歌唱!我们走向胜利!",
"type": "j",
"from": "团结人民永不被击溃",
"from_who": null,
"creator": "XDQK",
"creator_uid": 14376,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1678535023",
"length": 13
},
{
"id": 9264,
"uuid": "eedbcb29-c581-4647-a172-8b75410981fc",
"hitokoto": "眼泪无法洗去痛苦,但岁月可以抹去一切。",
"type": "j",
"from": "网易云音乐",
"from_who": "@路人威",
"creator": "wcz1459",
"creator_uid": 13629,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1696064485",
"length": 19
}
] |