File size: 109,652 Bytes
a6976f4 | 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 | id_label_in_documents,name,english (X Huy 1-400),english (Ngọc Linh 400-700),english (Trung Khánh 700-1000),url,id_label_in_documents
1,bãi cỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00082.mp4?autoplay=true,1
2,bực mình,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0036.mp4?autoplay=true,2
3,ông bà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0151B.mp4?autoplay=true,3
4,hay là (hoặc là),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0243B.mp4?autoplay=true,4
5,không cho,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0033B.mp4?autoplay=true,5
6,bên trên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00240.mp4?autoplay=true,6
7,cùng / với (giới từ),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0166.mp4?autoplay=true,7
8,họ (2 người) (đại từ),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0136.mp4?autoplay=true,8
9,làm được,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0438.mp4?autoplay=true,9
10,ở ngoài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02580B.mp4?autoplay=true,10
11,tuần này,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0416B.mp4?autoplay=true,11
12,từ chối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0103B.mp4?autoplay=true,12
13,nhưng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0242B.mp4?autoplay=true,13
14,một ít/ một chút,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0184.mp4?autoplay=true,14
15,là gì?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01911B.mp4?autoplay=true,15
16,còn bạn?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0121.mp4?autoplay=true,16
17,hoặc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0188B.mp4?autoplay=true,17
18,có … không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0098.mp4?autoplay=true,18
19,các bạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00400.mp4?autoplay=true,19
20,để (đặt),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01173.mp4?autoplay=true,20
21,trong khoảng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0290.mp4?autoplay=true,21
22,chúng tôi (2 người) (đại từ),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0130.mp4?autoplay=true,22
23,ra ngoài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02825B.mp4?autoplay=true,23
24,khác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01757.mp4?autoplay=true,24
25,làm việc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01928.mp4?autoplay=true,25
26,thời gian biểu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03303.mp4?autoplay=true,26
27,nói chuyện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02523.mp4?autoplay=true,27
28,mỗi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02237.mp4?autoplay=true,28
29,không có,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0112.mp4?autoplay=true,29
30,vui mừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03889B.mp4?autoplay=true,30
31,muốn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02221B.mp4?autoplay=true,31
32,không khí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01841.mp4?autoplay=true,32
33,cũng vậy/cũng thế,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0118.mp4?autoplay=true,33
34,chơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00639B.mp4?autoplay=true,34
35,nhỏ/ nhỏ bé,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02500.mp4?autoplay=true,35
36,cuối tuần,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0419.mp4?autoplay=true,36
37,nhà vệ sinh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0485.mp4?autoplay=true,37
38,đọc sách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01239.mp4?autoplay=true,38
39,tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03090.mp4?autoplay=true,39
40,cổng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00854.mp4?autoplay=true,40
41,to lớn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03466.mp4?autoplay=true,41
42,chính tả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00619.mp4?autoplay=true,42
43,thêm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03240.mp4?autoplay=true,43
44,đất,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01135.mp4?autoplay=true,44
45,phải không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0120B.mp4?autoplay=true,45
46,cao (người),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00415.mp4?autoplay=true,46
47,rộng lớn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02872.mp4?autoplay=true,47
48,theo dõi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03228.mp4?autoplay=true,48
49,hành động,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01554.mp4?autoplay=true,49
50,xin lỗi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03990.mp4?autoplay=true,50
51,đi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01190.mp4?autoplay=true,51
52,tóm tắt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03482.mp4?autoplay=true,52
53,phân loại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02615.mp4?autoplay=true,53
54,cần không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0122B.mp4?autoplay=true,54
55,trang điểm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0445.mp4?autoplay=true,55
56,cha mẹ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00482.mp4?autoplay=true,56
57,gần gũi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01397.mp4?autoplay=true,57
58,tự (tự làm),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03568.mp4?autoplay=true,58
59,gấp đôi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0247.mp4?autoplay=true,59
60,gấp ba,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0248.mp4?autoplay=true,60
61,quan sát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0256.mp4?autoplay=true,61
62,xảy ra,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0258.mp4?autoplay=true,62
63,đói không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0371.mp4?autoplay=true,63
64,mệt không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0370.mp4?autoplay=true,64
65,chiên/rán (1)(2),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0373.mp4?autoplay=true,65
66,nướng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0374.mp4?autoplay=true,66
67,luộc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0375.mp4?autoplay=true,67
68,xào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0376.mp4?autoplay=true,68
69,lẩu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0377.mp4?autoplay=true,69
70,thối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0381.mp4?autoplay=true,70
71,thiu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0382.mp4?autoplay=true,71
72,nguội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0383.mp4?autoplay=true,72
73,đồ ăn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0444.mp4?autoplay=true,73
74,luộc rau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0455.mp4?autoplay=true,74
75,nước mắm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0457.mp4?autoplay=true,75
76,sáng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00024.mp4?autoplay=true,76
77,áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00028.mp4?autoplay=true,77
78,ăn uống,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00042.mp4?autoplay=true,78
79,ấm áp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00051.mp4?autoplay=true,79
80,ẩm ướt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00050.mp4?autoplay=true,80
81,ban đêm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00086B.mp4?autoplay=true,81
82,bản thân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00104.mp4?autoplay=true,82
83,bạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00110B.mp4?autoplay=true,83
84,bánh mì,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00137B.mp4?autoplay=true,84
85,bao giờ?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00145B.mp4?autoplay=true,85
86,báo động,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00163.mp4?autoplay=true,86
87,bắp ngô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00196B.mp4?autoplay=true,87
88,bắt tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00202.mp4?autoplay=true,88
89,bóc vỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00300.mp4?autoplay=true,89
90,buổi tối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00369B.mp4?autoplay=true,90
91,buổi chiều,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00366.mp4?autoplay=true,91
92,buổi trưa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00370B.mp4?autoplay=true,92
93,bức tranh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00386B.mp4?autoplay=true,93
94,cặp sách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00428.mp4?autoplay=true,94
95,cặp tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00429.mp4?autoplay=true,95
96,chảo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00493B.mp4?autoplay=true,96
97,chạy nhanh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00504.mp4?autoplay=true,97
98,chạy chậm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00503.mp4?autoplay=true,98
99,chăn (cái chăn),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00509B.mp4?autoplay=true,99
100,chặt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00513B.mp4?autoplay=true,100
101,chị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00570B.mp4?autoplay=true,101
102,chiếc gối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00584B.mp4?autoplay=true,102
103,chìa khóa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00583.mp4?autoplay=true,103
104,chiếm đoạt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00585.mp4?autoplay=true,104
105,chiều cao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00594.mp4?autoplay=true,105
106,chiều dài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00595.mp4?autoplay=true,106
107,chiều rộng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00596.mp4?autoplay=true,107
108,chiều tối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00597.mp4?autoplay=true,108
109,chín,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00616.mp4?autoplay=true,109
110,chuẩn bị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00662B.mp4?autoplay=true,110
111,chúc mừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00663B.mp4?autoplay=true,111
112,chúc tết,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00664B.mp4?autoplay=true,112
113,chính xác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00620B.mp4?autoplay=true,113
114,chứng cớ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00718.mp4?autoplay=true,114
115,chứng minh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00719.mp4?autoplay=true,115
116,coi thường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00731.mp4?autoplay=true,116
117,chức năng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00710.mp4?autoplay=true,117
118,máy vi tính,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00732.mp4?autoplay=true,118
119,con cá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00737B.mp4?autoplay=true,119
120,con chó,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00739B.mp4?autoplay=true,120
121,con chim,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00738.mp4?autoplay=true,121
122,con chuột,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00742B.mp4?autoplay=true,122
123,con lợn (con heo),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00770B.mp4?autoplay=true,123
124,con muỗi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00773B.mp4?autoplay=true,124
125,con mèo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00772B.mp4?autoplay=true,125
126,con người,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00777B.mp4?autoplay=true,126
127,cô giáo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00812B.mp4?autoplay=true,127
128,côn trùng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00837.mp4?autoplay=true,128
129,công sức,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00844.mp4?autoplay=true,129
130,công tắc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00845.mp4?autoplay=true,130
131,công cụ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00841.mp4?autoplay=true,131
132,công cộng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00840.mp4?autoplay=true,132
133,công viên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00850B.mp4?autoplay=true,133
134,cơ hội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00868B.mp4?autoplay=true,134
135,cởi áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00876.mp4?autoplay=true,135
136,cơm hộp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00877.mp4?autoplay=true,136
137,cúi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00895.mp4?autoplay=true,137
138,củ cà rốt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00901.mp4?autoplay=true,138
139,củ khoai tây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00905.mp4?autoplay=true,139
140,củ nghệ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00906.mp4?autoplay=true,140
141,củ tỏi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00908.mp4?autoplay=true,141
142,củ gừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00903.mp4?autoplay=true,142
143,cục tẩy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00914.mp4?autoplay=true,143
144,cuộn giấy vệ sinh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00925.mp4?autoplay=true,144
145,cửa sổ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00939.mp4?autoplay=true,145
146,dạy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00979.mp4?autoplay=true,146
147,cửa hàng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00935B.mp4?autoplay=true,147
148,cứu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00947.mp4?autoplay=true,148
149,cướp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00943B.mp4?autoplay=true,149
150,dán,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00972.mp4?autoplay=true,150
151,dầu ăn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00993.mp4?autoplay=true,151
152,dầu gội đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00994.mp4?autoplay=true,152
153,dễ thương,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01027.mp4?autoplay=true,153
154,dịch vụ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01033B.mp4?autoplay=true,154
155,dòng sông,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01058.mp4?autoplay=true,155
156,dốc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01060.mp4?autoplay=true,156
157,dốt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01061.mp4?autoplay=true,157
158,đăng ký,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01126.mp4?autoplay=true,158
159,đăng nhập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01127.mp4?autoplay=true,159
160,đằng sau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01128.mp4?autoplay=true,160
161,đập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01134.mp4?autoplay=true,161
162,đèn điện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01155B.mp4?autoplay=true,162
163,đi học,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01191.mp4?autoplay=true,163
164,đèn pin,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01159B.mp4?autoplay=true,164
165,đẹp đẽ (như đẹp),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01170.mp4?autoplay=true,165
166,đều đặn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01188.mp4?autoplay=true,166
167,điện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01205B.mp4?autoplay=true,167
168,điện thoại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01208.mp4?autoplay=true,168
169,điều khiển,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01214.mp4?autoplay=true,169
170,điều kiện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01215.mp4?autoplay=true,170
171,điều hòa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01213B.mp4?autoplay=true,171
172,đối diện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01257.mp4?autoplay=true,172
173,đôi dép,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01255.mp4?autoplay=true,173
174,nhiệt độ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01298.mp4?autoplay=true,174
175,đợi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01304B.mp4?autoplay=true,175
176,đơn giản,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01305.mp4?autoplay=true,176
177,đun nấu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01321.mp4?autoplay=true,177
178,găng tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01393.mp4?autoplay=true,178
179,gắp thức ăn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01394.mp4?autoplay=true,179
180,đi vệ sinh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0486.mp4?autoplay=true,180
181,nhầm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0060B.mp4?autoplay=true,181
182,mỳ tôm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0080B.mp4?autoplay=true,182
183,không quen,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0109B.mp4?autoplay=true,183
184,không có chi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0113.mp4?autoplay=true,184
185,đúng không?,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0119B.mp4?autoplay=true,185
186,mệt mỏi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0369.mp4?autoplay=true,186
187,đau mắt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0355.mp4?autoplay=true,187
188,đau bụng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0356.mp4?autoplay=true,188
189,đau tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0357.mp4?autoplay=true,189
190,đau chân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0358.mp4?autoplay=true,190
191,đau tai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0359.mp4?autoplay=true,191
192,xem,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0192B.mp4?autoplay=true,192
193,giấy ăn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01471B.mp4?autoplay=true,193
194,hứa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0165B.mp4?autoplay=true,194
195,lâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0167.mp4?autoplay=true,195
196,vẫn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0168B.mp4?autoplay=true,196
197,mỗi ngày,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0169B.mp4?autoplay=true,197
198,không ngon,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0198.mp4?autoplay=true,198
199,đánh răng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0414.mp4?autoplay=true,199
200,tuần trước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0418B.mp4?autoplay=true,200
201,cuối tháng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0420.mp4?autoplay=true,201
202,cuối năm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0421.mp4?autoplay=true,202
203,mục tiêu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0422.mp4?autoplay=true,203
204,mô tả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0426.mp4?autoplay=true,204
205,tay chân sạch sẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0432B.mp4?autoplay=true,205
206,sờ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0434.mp4?autoplay=true,206
207,dịu dàng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0436.mp4?autoplay=true,207
208,đùa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0437B.mp4?autoplay=true,208
209,đồ uống,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0443.mp4?autoplay=true,209
210,đau mắt đỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0446.mp4?autoplay=true,210
211,họp nhóm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0452B.mp4?autoplay=true,211
212,muối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0456.mp4?autoplay=true,212
213,trẻ con/con nít,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0464B.mp4?autoplay=true,213
214,cạnh tranh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0466.mp4?autoplay=true,214
215,phóng viên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0469.mp4?autoplay=true,215
216,phong toả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0475.mp4?autoplay=true,216
217,khu vực cách ly,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0474.mp4?autoplay=true,217
218,kết luận,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0483.mp4?autoplay=true,218
219,internet,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0484.mp4?autoplay=true,219
220,ác độc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00002.mp4?autoplay=true,220
221,ác mộng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00003.mp4?autoplay=true,221
222,anh dũng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00012B.mp4?autoplay=true,222
223,áo ấm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00029.mp4?autoplay=true,223
224,áo đồng phục,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00032B.mp4?autoplay=true,224
225,áo phao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00034.mp4?autoplay=true,225
226,áo phông,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00035B.mp4?autoplay=true,226
227,ăn diện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00039.mp4?autoplay=true,227
228,ăn vặt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00043.mp4?autoplay=true,228
229,ăn xin,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00044.mp4?autoplay=true,229
230,âm thanh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00045.mp4?autoplay=true,230
231,ầm ĩ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00048.mp4?autoplay=true,231
232,ẩm mốc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00049.mp4?autoplay=true,232
233,ấm đun nước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00052.mp4?autoplay=true,233
234,ấm trà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00055.mp4?autoplay=true,234
235,ân hận,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00057B.mp4?autoplay=true,235
236,ấn tượng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00061.mp4?autoplay=true,236
237,bài báo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00071.mp4?autoplay=true,237
238,bài thơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00075B.mp4?autoplay=true,238
239,bãi cát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00081.mp4?autoplay=true,239
240,bãi cỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00082.mp4?autoplay=true,240
241,bãi đỗ xe (ô tô),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00083.mp4?autoplay=true,241
242,bãi tắm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00084.mp4?autoplay=true,242
243,bàn chải đánh răng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00092.mp4?autoplay=true,243
244,bàn chân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00093.mp4?autoplay=true,244
245,bàn ghế,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00094.mp4?autoplay=true,245
246,bàn là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00095.mp4?autoplay=true,246
247,bàn phím (máy vi tính),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00096.mp4?autoplay=true,247
248,bàn tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00097.mp4?autoplay=true,248
249,bàn tán,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00098.mp4?autoplay=true,249
250,bản nhạc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00102.mp4?autoplay=true,250
251,bản sao (chỉ người),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00103.mp4?autoplay=true,251
252,bán hàng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00107B.mp4?autoplay=true,252
253,bạn gái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00111B.mp4?autoplay=true,253
254,bạn trai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00112B.mp4?autoplay=true,254
255,bảng chỉ dẫn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00116.mp4?autoplay=true,255
256,bảng đen,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00121B.mp4?autoplay=true,256
257,hãng máy bay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00122.mp4?autoplay=true,257
258,hãng xe máy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00125.mp4?autoplay=true,258
259,e thẹn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01348B.mp4?autoplay=true,259
260,gan dạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01378N.mp4?autoplay=true,260
261,gạo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01384B.mp4?autoplay=true,261
262,gặp gỡ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01395.mp4?autoplay=true,262
263,gấp quần áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01399.mp4?autoplay=true,263
264,giám sát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01426.mp4?autoplay=true,264
265,giao thông,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01430B.mp4?autoplay=true,265
266,giá trị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01433B.mp4?autoplay=true,266
267,giải lao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01437.mp4?autoplay=true,267
268,giải quyết,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01438.mp4?autoplay=true,268
269,giàu có,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01459.mp4?autoplay=true,269
270,giấc ngủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01462.mp4?autoplay=true,270
271,bảo tàng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00156.mp4?autoplay=true,271
272,tồn tại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00158.mp4?autoplay=true,272
273,bảo vệ môi trường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00159B.mp4?autoplay=true,273
274,báo cáo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00161.mp4?autoplay=true,274
275,bát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00170.mp4?autoplay=true,275
276,băng dính,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00190.mp4?autoplay=true,276
277,bắt đền,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00198.mp4?autoplay=true,277
278,bắt giữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00199.mp4?autoplay=true,278
279,bắt nạt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00200.mp4?autoplay=true,279
280,bậc thang,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00203.mp4?autoplay=true,280
281,bất hiếu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00207.mp4?autoplay=true,281
282,bật đèn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00209.mp4?autoplay=true,282
283,bật lửa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00210.mp4?autoplay=true,283
284,bầu trời,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00212.mp4?autoplay=true,284
285,bẻ ngô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00216B.mp4?autoplay=true,285
286,bé trai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00220B.mp4?autoplay=true,286
287,bé gái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00217.mp4?autoplay=true,287
288,béo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00225.mp4?autoplay=true,288
289,bê tông,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00228.mp4?autoplay=true,289
290,bể bơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00230.mp4?autoplay=true,290
291,bể cá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00231.mp4?autoplay=true,291
292,bệ xí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00235.mp4?autoplay=true,292
293,bên cạnh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00236.mp4?autoplay=true,293
294,bên dưới,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00237.mp4?autoplay=true,294
295,bên phải,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00238.mp4?autoplay=true,295
296,bên trái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00239.mp4?autoplay=true,296
297,bên trong,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00241.mp4?autoplay=true,297
298,bệnh nhân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00248.mp4?autoplay=true,298
299,bến xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00245.mp4?autoplay=true,299
300,bìa sách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00254.mp4?autoplay=true,300
301,bìa vở,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00255B.mp4?autoplay=true,301
302,bịa đặt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00256.mp4?autoplay=true,302
303,hóa đơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00258.mp4?autoplay=true,303
304,biển hiệu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00261.mp4?autoplay=true,304
305,biện pháp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00263.mp4?autoplay=true,305
306,biểu thị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00270.mp4?autoplay=true,306
307,bình an,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00274B.mp4?autoplay=true,307
308,bình thường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00286B.mp4?autoplay=true,308
309,bít tất,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00287.mp4?autoplay=true,309
310,bò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00288.mp4?autoplay=true,310
311,bỏ hoang,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00292.mp4?autoplay=true,311
312,bỏ phiếu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00293.mp4?autoplay=true,312
313,bỏ qua,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00294.mp4?autoplay=true,313
314,bỏ rơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00295.mp4?autoplay=true,314
315,bó đũa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00297.mp4?autoplay=true,315
316,bó hoa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00298.mp4?autoplay=true,316
317,bóc lột,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00299.mp4?autoplay=true,317
318,bón phân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00304B.mp4?autoplay=true,318
319,bỏng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00305.mp4?autoplay=true,319
320,bỏng ngô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00306.mp4?autoplay=true,320
321,bóng bay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00308.mp4?autoplay=true,321
322,bọt xà phòng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00314.mp4?autoplay=true,322
323,bốc hơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00330.mp4?autoplay=true,323
324,bốc thăm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00331.mp4?autoplay=true,324
325,bồi bàn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00332.mp4?autoplay=true,325
326,bồi thường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00333.mp4?autoplay=true,326
327,bồn hoa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00334.mp4?autoplay=true,327
328,bồn rửa bát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00335.mp4?autoplay=true,328
329,bông hoa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00336B.mp4?autoplay=true,329
330,bốt cảnh sát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00337B.mp4?autoplay=true,330
331,bốt điện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00338B.mp4?autoplay=true,331
332,bột màu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00341B.mp4?autoplay=true,332
333,bột ngọt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00342N.mp4?autoplay=true,333
334,bờ biển,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00344.mp4?autoplay=true,334
335,bơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00347.mp4?autoplay=true,335
336,bơm (cái bơm),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00349.mp4?autoplay=true,336
337,bơm nước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00350.mp4?autoplay=true,337
338,bơm xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00351.mp4?autoplay=true,338
339,bụi phấn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00359B.mp4?autoplay=true,339
340,buộc dây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00363.mp4?autoplay=true,340
341,buộc tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00364.mp4?autoplay=true,341
342,buồn nôn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00372.mp4?autoplay=true,342
343,buông màn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00374B.mp4?autoplay=true,343
344,búp bê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00378.mp4?autoplay=true,344
345,bút,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00380.mp4?autoplay=true,345
346,bút màu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00383B.mp4?autoplay=true,346
347,bức tường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00387.mp4?autoplay=true,347
348,cá kho,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00398B.mp4?autoplay=true,348
349,cãi nhau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00401.mp4?autoplay=true,349
350,cái gương,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00404B.mp4?autoplay=true,350
351,chú ý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00654.mp4?autoplay=true,351
352,chúc thọ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00665B.mp4?autoplay=true,352
353,chui,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00669.mp4?autoplay=true,353
354,chùm vải,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00677.mp4?autoplay=true,354
355,chuông,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00683.mp4?autoplay=true,355
356,chuyên cần,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00690.mp4?autoplay=true,356
357,chuyên gia,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00691B.mp4?autoplay=true,357
358,chuyền bóng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00692.mp4?autoplay=true,358
359,chuyển giao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00700.mp4?autoplay=true,359
360,chuyển hướng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00701.mp4?autoplay=true,360
361,chữ hoa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00706.mp4?autoplay=true,361
362,chữa cháy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00709.mp4?autoplay=true,362
363,chứng kiến,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00712.mp4?autoplay=true,363
364,chương trình,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00713.mp4?autoplay=true,364
365,chức vụ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00717.mp4?autoplay=true,365
366,cầu vượt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00455.mp4?autoplay=true,366
367,chai nước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00486.mp4?autoplay=true,367
368,chào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00489.mp4?autoplay=true,368
369,chào mừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00492.mp4?autoplay=true,369
370,cháu gái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00495B.mp4?autoplay=true,370
371,cháu ngoại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00496B.mp4?autoplay=true,371
372,cháu nội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00497B.mp4?autoplay=true,372
373,cháu trai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00498B.mp4?autoplay=true,373
374,chăm học,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00507.mp4?autoplay=true,374
375,chăm sóc sức khỏe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00508B.mp4?autoplay=true,375
376,chặn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00512.mp4?autoplay=true,376
377,chặt chẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00514.mp4?autoplay=true,377
378,châm cứu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00516B.mp4?autoplay=true,378
379,chấm dứt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00519.mp4?autoplay=true,379
380,chấm điểm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00520.mp4?autoplay=true,380
381,chân dung,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00522.mp4?autoplay=true,381
382,chất thải,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00539.mp4?autoplay=true,382
383,chậu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00545.mp4?autoplay=true,383
384,chèn ép,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00552.mp4?autoplay=true,384
385,chép bài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00555.mp4?autoplay=true,385
386,khó tiêu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00562.mp4?autoplay=true,386
387,chi tiết,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00563.mp4?autoplay=true,387
388,chỉ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00564.mp4?autoplay=true,388
389,chỉ dẫn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00565.mp4?autoplay=true,389
390,chia tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00582.mp4?autoplay=true,390
391,chia sẻ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00581.mp4?autoplay=true,391
392,chiếu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00598.mp4?autoplay=true,392
393,chiếu phim,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00599.mp4?autoplay=true,393
394,chỉnh sửa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00615.mp4?autoplay=true,394
395,chọn lọc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00628.mp4?autoplay=true,395
396,chọn lựa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00629.mp4?autoplay=true,396
397,chống đối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00633B.mp4?autoplay=true,397
398,chớp mắt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00640.mp4?autoplay=true,398
399,chủ đề,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00642.mp4?autoplay=true,399
400,thích nghi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00653.mp4?autoplay=true,400
400,Ma Cao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0006.mp4?autoplay=true,400
401,ai cho,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0032.mp4?autoplay=true,401
402,mù chữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0038.mp4?autoplay=true,402
403,hú vía,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0070.mp4?autoplay=true,403
404,cá voi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0073.mp4?autoplay=true,404
405,súp lơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0079.mp4?autoplay=true,405
406,bún ốc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0086.mp4?autoplay=true,406
407,xôi gà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0089.mp4?autoplay=true,407
408,rực rỡ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0107.mp4?autoplay=true,408
409,xử lý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0115.mp4?autoplay=true,409
410,một là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0146.mp4?autoplay=true,410
411,hai là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0147.mp4?autoplay=true,411
412,ba là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0148.mp4?autoplay=true,412
413,bốn là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0149.mp4?autoplay=true,413
414,năm là,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0150.mp4?autoplay=true,414
415,chị họ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0152B.mp4?autoplay=true,415
416,em họ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0153B.mp4?autoplay=true,416
417,đi dạo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0157B.mp4?autoplay=true,417
418,sa mạc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0191.mp4?autoplay=true,418
419,xem đã,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0196.mp4?autoplay=true,419
420,sụp đổ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0205.mp4?autoplay=true,420
421,tận số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0221.mp4?autoplay=true,421
422,vỗ về,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0235.mp4?autoplay=true,422
423,đại sứ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0253.mp4?autoplay=true,423
424,dự án,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0259.mp4?autoplay=true,424
425,đầu tư,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0260.mp4?autoplay=true,425
426,năn nỉ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0261.mp4?autoplay=true,426
427,tải về,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0264.mp4?autoplay=true,427
428,kéo co,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0294.mp4?autoplay=true,428
429,lý do,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0296.mp4?autoplay=true,429
430,tự hào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0333.mp4?autoplay=true,430
431,ăn bám,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0338.mp4?autoplay=true,431
432,trà đá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0403.mp4?autoplay=true,432
433,Socola,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0406.mp4?autoplay=true,433
434,ăn đủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0440.mp4?autoplay=true,434
435,ăn vừa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0441.mp4?autoplay=true,435
436,ăn ít,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0442.mp4?autoplay=true,436
437,cây cọ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0473.mp4?autoplay=true,437
438,ăn cóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0600.mp4?autoplay=true,438
439,ác cảm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00001.mp4?autoplay=true,439
440,anh em,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00013B.mp4?autoplay=true,440
441,anh họ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00014N.mp4?autoplay=true,441
442,anh rể,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00018B.mp4?autoplay=true,442
443,anh vợ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00020.mp4?autoplay=true,443
444,áo len,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00033.mp4?autoplay=true,444
445,ấm no,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00053.mp4?autoplay=true,445
446,Âu Cơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00062.mp4?autoplay=true,446
447,Bà Nà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00067.mp4?autoplay=true,447
448,bản lề,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00101.mp4?autoplay=true,448
449,bao la,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00146.mp4?autoplay=true,449
450,Bắc bộ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00181.mp4?autoplay=true,450
451,bắn bi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00186B.mp4?autoplay=true,451
452,bé hơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00218.mp4?autoplay=true,452
453,bế em,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00232.mp4?autoplay=true,453
454,bệ hạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00234B.mp4?autoplay=true,454
455,bí ngô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00252.mp4?autoplay=true,455
456,bò sát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00289.mp4?autoplay=true,456
457,bò tót,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00290.mp4?autoplay=true,457
458,bồ kết,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00315.mp4?autoplay=true,458
459,bổ ích,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00316.mp4?autoplay=true,459
460,bổ ngữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00317.mp4?autoplay=true,460
461,bổ trợ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00318.mp4?autoplay=true,461
462,bố trí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00320.mp4?autoplay=true,462
463,bố mẹ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00327.mp4?autoplay=true,463
464,bộ đội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00328B.mp4?autoplay=true,464
465,bờ rào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00345.mp4?autoplay=true,465
466,bớt đi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00354.mp4?autoplay=true,466
467,bút bi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00381.mp4?autoplay=true,467
468,bút dạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00382.mp4?autoplay=true,468
469,bưu tá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00393.mp4?autoplay=true,469
470,ca nô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00396.mp4?autoplay=true,470
471,Cà Mau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00397.mp4?autoplay=true,471
472,cái bè,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00402.mp4?autoplay=true,472
473,cao độ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00418.mp4?autoplay=true,473
474,cau có,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00425.mp4?autoplay=true,474
475,câu cá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00438.mp4?autoplay=true,475
476,câu đố,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00440.mp4?autoplay=true,476
477,cầu kì,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00449.mp4?autoplay=true,477
478,cây đa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00462.mp4?autoplay=true,478
479,cây gỗ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00464.mp4?autoplay=true,479
480,cây sả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00471.mp4?autoplay=true,480
481,cây số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00473.mp4?autoplay=true,481
482,chả cá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00484B.mp4?autoplay=true,482
483,chiêng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00593.mp4?autoplay=true,483
484,cá mập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00601.mp4?autoplay=true,484
485,chó xù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00624.mp4?autoplay=true,485
486,chu vi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00641.mp4?autoplay=true,486
487,chú hề,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00650.mp4?autoplay=true,487
488,chú rể,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00651.mp4?autoplay=true,488
489,chuồng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00685.mp4?autoplay=true,489
490,co dãn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00721.mp4?autoplay=true,490
491,cỏ may,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00724.mp4?autoplay=true,491
492,có ích,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00726.mp4?autoplay=true,492
493,con bê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00734B.mp4?autoplay=true,493
494,con bò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00735B.mp4?autoplay=true,494
495,con cò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00745.mp4?autoplay=true,495
496,con dê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00753.mp4?autoplay=true,496
497,con dế,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00754.mp4?autoplay=true,497
498,con đẻ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00755.mp4?autoplay=true,498
499,con gà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00759.mp4?autoplay=true,499
500,con ốc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00782.mp4?autoplay=true,500
501,con sò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00789.mp4?autoplay=true,501
502,con số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00793.mp4?autoplay=true,502
503,cô dâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00809.mp4?autoplay=true,503
504,cô đơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00811.mp4?autoplay=true,504
505,cổ áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00815.mp4?autoplay=true,505
506,cổ đại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00817.mp4?autoplay=true,506
507,cổ tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00822.mp4?autoplay=true,507
508,cổ vũ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00824.mp4?autoplay=true,508
509,Paris,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00852.mp4?autoplay=true,509
510,cốp xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00859.mp4?autoplay=true,510
511,cơ bắp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00867.mp4?autoplay=true,511
512,cơ sở,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00871.mp4?autoplay=true,512
513,cơ thể,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00872.mp4?autoplay=true,513
514,cờ vua,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00882.mp4?autoplay=true,514
515,cởi mở,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00883.mp4?autoplay=true,515
516,củ đậu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00889.mp4?autoplay=true,516
517,củ từ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00892.mp4?autoplay=true,517
518,cụ thể,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00893.mp4?autoplay=true,518
519,cúc áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00894.mp4?autoplay=true,519
520,củ sả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00909.mp4?autoplay=true,520
521,cụ đồ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00911.mp4?autoplay=true,521
522,cụ già,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00912.mp4?autoplay=true,522
523,cụm từ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00918.mp4?autoplay=true,523
524,cứu hộ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00948.mp4?autoplay=true,524
525,dãy số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00977.mp4?autoplay=true,525
526,dặn dò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00980.mp4?autoplay=true,526
527,dân ca,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00982.mp4?autoplay=true,527
528,dân số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00987.mp4?autoplay=true,528
529,dầu mỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00997.mp4?autoplay=true,529
530,dê con,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01024.mp4?autoplay=true,530
531,dê mẹ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01025.mp4?autoplay=true,531
532,du học,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01062.mp4?autoplay=true,532
533,đại số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01085.mp4?autoplay=true,533
534,đại tá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01086.mp4?autoplay=true,534
535,đại úy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01089.mp4?autoplay=true,535
536,đám ma,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01093.mp4?autoplay=true,536
537,đắt đỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01131.mp4?autoplay=true,537
538,đầy đủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01150.mp4?autoplay=true,538
539,đầy tớ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01151.mp4?autoplay=true,539
540,đèn đỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01156.mp4?autoplay=true,540
541,đề tài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01179.mp4?autoplay=true,541
542,địa lí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01199.mp4?autoplay=true,542
543,đô thị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01248.mp4?autoplay=true,543
544,đối xử,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01280.mp4?autoplay=true,544
545,em dâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01349.mp4?autoplay=true,545
546,em gái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01350.mp4?autoplay=true,546
547,em rể,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01351B.mp4?autoplay=true,547
548,em út,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01353.mp4?autoplay=true,548
549,email,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01354.mp4?autoplay=true,549
550,ga tàu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01364B.mp4?autoplay=true,550
551,gà mái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01365N.mp4?autoplay=true,551
552,gà tây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01367.mp4?autoplay=true,552
553,gan lì,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01379.mp4?autoplay=true,553
554,gặm cỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01390.mp4?autoplay=true,554
555,gắn bó,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01392.mp4?autoplay=true,555
556,gật gù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01401.mp4?autoplay=true,556
557,giả sử,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01419.mp4?autoplay=true,557
558,giường,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01498.mp4?autoplay=true,558
559,góc tù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01506.mp4?autoplay=true,559
560,góp ý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01513.mp4?autoplay=true,560
561,gốm sứ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01517.mp4?autoplay=true,561
562,gợi ý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01518.mp4?autoplay=true,562
563,gương,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01523.mp4?autoplay=true,563
564,hát ru,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01560.mp4?autoplay=true,564
565,họa sỹ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01638.mp4?autoplay=true,565
566,hòn đá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01661.mp4?autoplay=true,566
567,hồ dán,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01682.mp4?autoplay=true,567
568,hối lộ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01693.mp4?autoplay=true,568
569,hỗn số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01701.mp4?autoplay=true,569
570,hợp lí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01708.mp4?autoplay=true,570
571,huyện,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01721B.mp4?autoplay=true,571
572,ít hơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01731.mp4?autoplay=true,572
573,kẻ cắp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01734.mp4?autoplay=true,573
574,kẻ thù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01737.mp4?autoplay=true,574
575,khách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01758.mp4?autoplay=true,575
576,khiêng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01800.mp4?autoplay=true,576
577,khoan,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01815.mp4?autoplay=true,577
578,kì lạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01862.mp4?autoplay=true,578
579,kí tên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01872B.mp4?autoplay=true,579
580,la bàn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01909.mp4?autoplay=true,580
581,la hét,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01910.mp4?autoplay=true,581
582,lá cây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01912B.mp4?autoplay=true,582
583,lá thư,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01913.mp4?autoplay=true,583
584,lễ hội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01978B.mp4?autoplay=true,584
585,lễ vật,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01984.mp4?autoplay=true,585
586,lên xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01989.mp4?autoplay=true,586
587,lí do,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01992.mp4?autoplay=true,587
588,lo sợ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02016.mp4?autoplay=true,588
589,lò xo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02018.mp4?autoplay=true,589
590,lọ hoa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02019.mp4?autoplay=true,590
591,lọ mực,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02020.mp4?autoplay=true,591
592,lối đi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02037.mp4?autoplay=true,592
593,dự trữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02097.mp4?autoplay=true,593
594,lưu ý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02098.mp4?autoplay=true,594
595,ma quỷ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02106.mp4?autoplay=true,595
596,ma sát,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02107.mp4?autoplay=true,596
597,ma túy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02108.mp4?autoplay=true,597
598,màu đỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02134.mp4?autoplay=true,598
599,máy in,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02148B.mp4?autoplay=true,599
600,địa chỉ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0001B.mp4?autoplay=true,600
601,Do Thái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0007.mp4?autoplay=true,601
602,Tuy Hoà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0015.mp4?autoplay=true,602
603,hấp dẫn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0017.mp4?autoplay=true,603
604,ghen tị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0019B.mp4?autoplay=true,604
605,hói đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0021.mp4?autoplay=true,605
606,tham ăn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0024B.mp4?autoplay=true,606
607,tự giác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0037.mp4?autoplay=true,607
608,vô tình,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0039.mp4?autoplay=true,608
609,bối rối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0069.mp4?autoplay=true,609
610,cá kiếm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0074.mp4?autoplay=true,610
611,đuôi cá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0075.mp4?autoplay=true,611
612,bún mắm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0083.mp4?autoplay=true,612
613,bún chả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0084.mp4?autoplay=true,613
614,bún đậu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0087B.mp4?autoplay=true,614
615,xôi gấc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0088.mp4?autoplay=true,615
616,kỹ năng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0097.mp4?autoplay=true,616
617,khờ dại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0100.mp4?autoplay=true,617
618,cực khổ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0101.mp4?autoplay=true,618
619,may mắn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0102.mp4?autoplay=true,619
620,xoa đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0105.mp4?autoplay=true,620
621,dân chủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0114.mp4?autoplay=true,621
622,căm thù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0127.mp4?autoplay=true,622
623,cháu họ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0154B.mp4?autoplay=true,623
624,núi cao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0193.mp4?autoplay=true,624
625,má hồng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0200.mp4?autoplay=true,625
626,dám làm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0209B.mp4?autoplay=true,626
627,ung thư,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0213B.mp4?autoplay=true,627
628,mũi tên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0219.mp4?autoplay=true,628
629,chó cắn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0229.mp4?autoplay=true,629
630,mèo cào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0230.mp4?autoplay=true,630
631,đi tuần,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0234.mp4?autoplay=true,631
632,cái gùi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0239.mp4?autoplay=true,632
633,hùng vĩ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0240.mp4?autoplay=true,633
634,chia ba,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0250B.mp4?autoplay=true,634
635,ăn vụng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0257.mp4?autoplay=true,635
636,háo hức,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0262.mp4?autoplay=true,636
637,rắc rối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0263.mp4?autoplay=true,637
638,đen đủi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0267B.mp4?autoplay=true,638
639,xui xẻo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0268N.mp4?autoplay=true,639
640,nhổ tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0273.mp4?autoplay=true,640
641,nhổ râu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0274.mp4?autoplay=true,641
642,răng hô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0278.mp4?autoplay=true,642
643,mọc tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0281.mp4?autoplay=true,643
644,mọc râu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0282.mp4?autoplay=true,644
645,cách ly,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0286.mp4?autoplay=true,645
646,ria mép,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0289.mp4?autoplay=true,646
647,tiến bộ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0315.mp4?autoplay=true,647
648,máy xúc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0318.mp4?autoplay=true,648
649,đùm bọc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0324.mp4?autoplay=true,649
650,vải lụa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0326B.mp4?autoplay=true,650
651,lượt đi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0327.mp4?autoplay=true,651
652,chia rẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0335.mp4?autoplay=true,652
653,lấm lem,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0341.mp4?autoplay=true,653
654,năm tới,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0349.mp4?autoplay=true,654
655,cả ngày,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0372.mp4?autoplay=true,655
656,gỏi/nộm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0378.mp4?autoplay=true,656
657,nhà kho,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0379.mp4?autoplay=true,657
658,tôm hùm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0385.mp4?autoplay=true,658
659,con hàu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0387.mp4?autoplay=true,659
660,hải sản,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0388.mp4?autoplay=true,660
661,trà sữa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0405.mp4?autoplay=true,661
662,rửa mặt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0413.mp4?autoplay=true,662
663,đôi/cặp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0424.mp4?autoplay=true,663
664,mũm mĩm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0427.mp4?autoplay=true,664
665,tóc dài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0428.mp4?autoplay=true,665
666,cây nến,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0435.mp4?autoplay=true,666
667,đua đòi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0460.mp4?autoplay=true,667
668,đòi hỏi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0463.mp4?autoplay=true,668
669,hoa hậu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0467.mp4?autoplay=true,669
670,cái neo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0468.mp4?autoplay=true,670
671,chõ xôi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0472.mp4?autoplay=true,671
672,hoa mai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0488.mp4?autoplay=true,672
673,dấu sắc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0525B.mp4?autoplay=true,673
674,dấu hỏi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0526B.mp4?autoplay=true,674
675,dấu ngã,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/D0527B.mp4?autoplay=true,675
676,an ninh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00007.mp4?autoplay=true,676
677,anh chị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00010B.mp4?autoplay=true,677
678,áo cánh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00030.mp4?autoplay=true,678
679,bàn bạc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00091.mp4?autoplay=true,679
680,bán đảo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00106.mp4?autoplay=true,680
681,bánh đa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00131.mp4?autoplay=true,681
682,bánh xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00144.mp4?autoplay=true,682
683,bảo đảm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00152.mp4?autoplay=true,683
684,bảo thủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00157.mp4?autoplay=true,684
685,báo thù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00166.mp4?autoplay=true,685
686,Bắc Kạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00183.mp4?autoplay=true,686
687,bắc nam,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00184N.mp4?autoplay=true,687
688,băng bó,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00188.mp4?autoplay=true,688
689,bến phà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00242.mp4?autoplay=true,689
690,bến tàu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00243.mp4?autoplay=true,690
691,Bến Tre,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00244.mp4?autoplay=true,691
692,bị động,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00253.mp4?autoplay=true,692
693,biểu đồ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00265.mp4?autoplay=true,693
694,bom đạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00302.mp4?autoplay=true,694
695,bốc vác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00322.mp4?autoplay=true,695
696,bộ sách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00329.mp4?autoplay=true,696
697,bơi lội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00348.mp4?autoplay=true,697
698,bờm tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00352.mp4?autoplay=true,698
700,bụi đời,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00358.mp4?autoplay=true,700
701,bút máy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00384.mp4?autoplay=true,701
702,bữa cơm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00385.mp4?autoplay=true,702
703,cái túi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00406.mp4?autoplay=true,703
704,cao quý,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00420.mp4?autoplay=true,704
705,cao tốc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00423.mp4?autoplay=true,705
706,cấp cứu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00432.mp4?autoplay=true,706
707,cất giữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00435.mp4?autoplay=true,707
708,câu đối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00441.mp4?autoplay=true,708
709,câu đơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00442.mp4?autoplay=true,709
710,câu thơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00444B.mp4?autoplay=true,710
711,câu văn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00445.mp4?autoplay=true,711
712,cầu cứu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00447.mp4?autoplay=true,712
713,cầu thủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00451.mp4?autoplay=true,713
714,cầu tre,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00452.mp4?autoplay=true,714
715,cây cối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00460.mp4?autoplay=true,715
716,cây khế,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00465.mp4?autoplay=true,716
717,cây ngô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00469B.mp4?autoplay=true,717
718,cây tre,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00476.mp4?autoplay=true,718
719,cấy lúa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00480.mp4?autoplay=true,719
720,chào cờ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00490.mp4?autoplay=true,720
721,che chở,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00546.mp4?autoplay=true,721
722,che phủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00547.mp4?autoplay=true,722
723,chi hội,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00561.mp4?autoplay=true,723
724,chỉ huy,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00567.mp4?autoplay=true,724
725,chị dâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00572.mp4?autoplay=true,725
726,sĩ quan,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00590.mp4?autoplay=true,726
727,mắc áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02155.mp4?autoplay=true,727
728,mặc kệ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02159.mp4?autoplay=true,728
729,mắng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02164B.mp4?autoplay=true,729
730,mặt nạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02173.mp4?autoplay=true,730
731,mẫu số,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02191.mp4?autoplay=true,731
732,mê tín,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02203.mp4?autoplay=true,732
733,móc áo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02218.mp4?autoplay=true,733
734,mồ côi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02229.mp4?autoplay=true,734
735,mồ hôi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02231.mp4?autoplay=true,735
736,mơ ngủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02255.mp4?autoplay=true,736
737,mơ ước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02256.mp4?autoplay=true,737
738,mở cửa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02258.mp4?autoplay=true,738
739,mở đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02259.mp4?autoplay=true,739
740,mở màn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02260.mp4?autoplay=true,740
741,mớ rau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02262.mp4?autoplay=true,741
742,mua vé,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02267.mp4?autoplay=true,742
743,mùa hè,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02270B.mp4?autoplay=true,743
744,mui xe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02280.mp4?autoplay=true,744
745,muộn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02281.mp4?autoplay=true,745
746,ngã ba,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02325.mp4?autoplay=true,746
747,ngắn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02343.mp4?autoplay=true,747
748,nghe,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02353.mp4?autoplay=true,748
749,nghé,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02354B.mp4?autoplay=true,749
750,nghĩ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02368.mp4?autoplay=true,750
751,ngói,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02387.mp4?autoplay=true,751
752,ngồi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02400B.mp4?autoplay=true,752
753,nhà tù,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02456.mp4?autoplay=true,753
754,nhận,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02485.mp4?autoplay=true,754
755,nhìn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02499.mp4?autoplay=true,755
756,nhóm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02503.mp4?autoplay=true,756
757,nhọn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02504.mp4?autoplay=true,757
758,nô lệ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02528.mp4?autoplay=true,758
759,nổ mìn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02530.mp4?autoplay=true,759
760,ô tô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02561.mp4?autoplay=true,760
761,ốc vít,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02564.mp4?autoplay=true,761
762,ốm đau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02567.mp4?autoplay=true,762
763,ôn tập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02570.mp4?autoplay=true,763
764,pha lê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02586.mp4?autoplay=true,764
765,phao,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02602.mp4?autoplay=true,765
766,phễu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02644.mp4?autoplay=true,766
767,phô tô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02685.mp4?autoplay=true,767
768,phố cổ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02690.mp4?autoplay=true,768
769,phổi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02693.mp4?autoplay=true,769
770,quả lê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02744.mp4?autoplay=true,770
771,quả na,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02747.mp4?autoplay=true,771
772,quả ổi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02750.mp4?autoplay=true,772
773,quả ớt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02751.mp4?autoplay=true,773
774,quận,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02790B.mp4?autoplay=true,774
775,quên,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02798.mp4?autoplay=true,775
776,rách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02828.mp4?autoplay=true,776
777,rạch,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02831.mp4?autoplay=true,777
778,răng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02848.mp4?autoplay=true,778
779,reo hò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02855.mp4?autoplay=true,779
780,rễ cây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02856.mp4?autoplay=true,780
781,rễ cọc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02858.mp4?autoplay=true,781
782,ru ngủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02876.mp4?autoplay=true,782
783,rưỡi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02897B.mp4?autoplay=true,783
784,rượu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02898B.mp4?autoplay=true,784
785,sách,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02900.mp4?autoplay=true,785
786,san hô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02903.mp4?autoplay=true,786
787,san sẻ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02906.mp4?autoplay=true,787
788,Sapa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02925.mp4?autoplay=true,788
789,sâu bọ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02944.mp4?autoplay=true,789
790,sổ tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02974.mp4?autoplay=true,790
791,số bé,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02975.mp4?autoplay=true,791
792,số đo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02987.mp4?autoplay=true,792
793,số lẻ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02989.mp4?autoplay=true,793
794,số lớn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02992.mp4?autoplay=true,794
795,sơ đồ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03010N.mp4?autoplay=true,795
796,sơ mi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03011B.mp4?autoplay=true,796
797,suối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03024.mp4?autoplay=true,797
798,sữa bò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03036B.mp4?autoplay=true,798
799,sữa dê,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03038B.mp4?autoplay=true,799
800,sừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W03046.mp4?autoplay=true,800
801,chim sẻ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00611.mp4?autoplay=true,801
802,chó sói,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00623.mp4?autoplay=true,802
803,chọi gà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00625.mp4?autoplay=true,803
804,chợ nổi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00635.mp4?autoplay=true,804
805,chủ ngữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00646.mp4?autoplay=true,805
806,chú tễu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00652.mp4?autoplay=true,806
807,chữ cái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00705.mp4?autoplay=true,807
808,co giật,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00722.mp4?autoplay=true,808
809,con cóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00746.mp4?autoplay=true,809
810,con cọp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00747B.mp4?autoplay=true,810
811,con cua,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00749.mp4?autoplay=true,811
812,con cừu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00751.mp4?autoplay=true,812
813,con dâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00752.mp4?autoplay=true,813
814,con ếch,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00758B.mp4?autoplay=true,814
815,con gái,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00760.mp4?autoplay=true,815
816,con gấu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00761.mp4?autoplay=true,816
817,con ghẹ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00762.mp4?autoplay=true,817
818,con khỉ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00767.mp4?autoplay=true,818
819,con mực,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00774.mp4?autoplay=true,819
820,con nai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00775.mp4?autoplay=true,820
821,con ong,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00781N.mp4?autoplay=true,821
822,con quạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00783.mp4?autoplay=true,822
823,con rắn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00784.mp4?autoplay=true,823
824,con rối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00785.mp4?autoplay=true,824
825,con rùa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00787N.mp4?autoplay=true,825
826,con sâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00788.mp4?autoplay=true,826
827,con sóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00790.mp4?autoplay=true,827
828,con sói,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00791.mp4?autoplay=true,828
829,con tem,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00795.mp4?autoplay=true,829
830,con thỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00796.mp4?autoplay=true,830
831,con tôm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00797B.mp4?autoplay=true,831
832,con trỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00800.mp4?autoplay=true,832
833,con vẹt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00801.mp4?autoplay=true,833
834,con vịt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00802.mp4?autoplay=true,834
835,con voi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00803B.mp4?autoplay=true,835
836,cổ chân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00816.mp4?autoplay=true,836
837,cổ họng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00818.mp4?autoplay=true,837
838,cổ kính,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00819.mp4?autoplay=true,838
839,cố gắng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00820B.mp4?autoplay=true,839
840,cố định,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00827.mp4?autoplay=true,840
841,cổ tích,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00830.mp4?autoplay=true,841
842,cối giã,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00833.mp4?autoplay=true,842
843,cột đèn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00862.mp4?autoplay=true,843
844,cột nhà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00865.mp4?autoplay=true,844
845,cơ quan,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00870.mp4?autoplay=true,845
846,cùi chỏ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00915.mp4?autoplay=true,846
847,cử động,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00930.mp4?autoplay=true,847
848,cướp cờ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00945.mp4?autoplay=true,848
849,dài hạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00953.mp4?autoplay=true,849
850,dài hơn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00954.mp4?autoplay=true,850
851,dàn bài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00959.mp4?autoplay=true,851
852,danh bạ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00963.mp4?autoplay=true,852
853,danh dự,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00964.mp4?autoplay=true,853
854,danh từ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00970.mp4?autoplay=true,854
855,dãy nhà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00975.mp4?autoplay=true,855
856,dãy núi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00976.mp4?autoplay=true,856
857,dân tộc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00988B.mp4?autoplay=true,857
858,dầu hoả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00995.mp4?autoplay=true,858
859,dầu khí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W00996.mp4?autoplay=true,859
860,dễ chịu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01026.mp4?autoplay=true,860
861,hăm dọa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01050.mp4?autoplay=true,861
862,dòng họ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01056.mp4?autoplay=true,862
863,dụng cụ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01069.mp4?autoplay=true,863
864,đá bóng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01078.mp4?autoplay=true,864
865,đài sen,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01080.mp4?autoplay=true,865
866,đám mây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01094.mp4?autoplay=true,866
867,đàn bầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01098.mp4?autoplay=true,867
868,đào tạo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01115.mp4?autoplay=true,868
869,Đắk Lắk,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01125.mp4?autoplay=true,869
870,đất nặn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01138.mp4?autoplay=true,870
871,đầu gối,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01141.mp4?autoplay=true,871
872,đầu tàu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01143.mp4?autoplay=true,872
873,đấu vật,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01148.mp4?autoplay=true,873
874,đề nghị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01177B.mp4?autoplay=true,874
875,đĩa DVD,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01193.mp4?autoplay=true,875
876,địa cầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01194.mp4?autoplay=true,876
877,định vị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01226.mp4?autoplay=true,877
878,đoàn tụ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01232.mp4?autoplay=true,878
879,đồ chơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01249.mp4?autoplay=true,879
880,độc hại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01254.mp4?autoplay=true,880
881,đồng hồ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01265.mp4?autoplay=true,881
882,đổ nước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01268.mp4?autoplay=true,882
883,độc lập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01272.mp4?autoplay=true,883
884,đôi tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01274.mp4?autoplay=true,884
885,đổi mới,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01277.mp4?autoplay=true,885
886,rơm rớm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01297.mp4?autoplay=true,886
887,động cơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01299.mp4?autoplay=true,887
888,sa thải,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01324.mp4?autoplay=true,888
889,đưa đón,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01325.mp4?autoplay=true,889
890,em trai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01352B.mp4?autoplay=true,890
891,gà rừng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01366.mp4?autoplay=true,891
892,gạo nếp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01385.mp4?autoplay=true,892
893,gãy tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01388.mp4?autoplay=true,893
894,gặt lúa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01396.mp4?autoplay=true,894
895,gật đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01400.mp4?autoplay=true,895
896,ghi chú,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01411.mp4?autoplay=true,896
897,ghi nhớ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01413.mp4?autoplay=true,897
898,Gia Lai,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01415.mp4?autoplay=true,898
899,giả mạo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01418.mp4?autoplay=true,899
900,giáo sĩ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01458.mp4?autoplay=true,900
901,giận dữ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01465.mp4?autoplay=true,901
902,giấy tờ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01474.mp4?autoplay=true,902
903,giẻ lau,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01476.mp4?autoplay=true,903
904,gió Lào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01482.mp4?autoplay=true,904
905,giơ tay,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01491.mp4?autoplay=true,905
906,giúp đỡ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01497B.mp4?autoplay=true,906
907,góc bẹt,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01501.mp4?autoplay=true,907
908,góc bếp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01502.mp4?autoplay=true,908
909,gửi quà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01520.mp4?autoplay=true,909
910,gửi thư,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01522.mp4?autoplay=true,910
911,Hạ Long,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01530.mp4?autoplay=true,911
912,hải đảo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01534.mp4?autoplay=true,912
913,hạn hán,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01537.mp4?autoplay=true,913
914,hành vi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01559.mp4?autoplay=true,914
915,hạt lạc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01566.mp4?autoplay=true,915
916,hạt lúa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01567.mp4?autoplay=true,916
917,hắt hơi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01571.mp4?autoplay=true,917
918,hậu quả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01573.mp4?autoplay=true,918
919,hi sinh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01583B.mp4?autoplay=true,919
920,hi vọng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01584B.mp4?autoplay=true,920
921,hình vẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01618.mp4?autoplay=true,921
922,hoa cúc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01620.mp4?autoplay=true,922
923,hoa đào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01621.mp4?autoplay=true,923
924,hoa sen,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01629B.mp4?autoplay=true,924
925,hoán vị,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01643.mp4?autoplay=true,925
926,hỏi han,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01660.mp4?autoplay=true,926
927,hót rác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01662.mp4?autoplay=true,927
928,học kém,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01666.mp4?autoplay=true,928
929,học phí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01669.mp4?autoplay=true,929
930,học tập,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01670.mp4?autoplay=true,930
931,học trò,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01671.mp4?autoplay=true,931
932,hồ nước,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01686.mp4?autoplay=true,932
933,hồi hộp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01690B.mp4?autoplay=true,933
934,hối hận,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01692B.mp4?autoplay=true,934
935,hộp bút,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01703.mp4?autoplay=true,935
936,hộp sữa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01704.mp4?autoplay=true,936
937,hợp tác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01709.mp4?autoplay=true,937
938,hung ác,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01711.mp4?autoplay=true,938
939,ích lợi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01727.mp4?autoplay=true,939
940,in (ấn),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01728B.mp4?autoplay=true,940
941,ít nhất,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01732.mp4?autoplay=true,941
942,kết bạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01750.mp4?autoplay=true,942
943,kết hợp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01751.mp4?autoplay=true,943
944,kết quả,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01754B.mp4?autoplay=true,944
945,kêu gọi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01756.mp4?autoplay=true,945
946,khâu vá,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01784.mp4?autoplay=true,946
947,khe cửa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01787.mp4?autoplay=true,947
948,khe núi,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01788.mp4?autoplay=true,948
949,khí cầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01794.mp4?autoplay=true,949
950,bụi tre,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01827.mp4?autoplay=true,950
951,khô héo,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01828.mp4?autoplay=true,951
952,khổ thơ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01829.mp4?autoplay=true,952
953,vực sâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01852.mp4?autoplay=true,953
954,kì diệu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01861.mp4?autoplay=true,954
955,kỉ niệm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01866B.mp4?autoplay=true,955
956,kí hiệu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01867.mp4?autoplay=true,956
957,kỉ luật,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01871.mp4?autoplay=true,957
958,Kon Tum,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01908.mp4?autoplay=true,958
959,thổ dân,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01943.mp4?autoplay=true,959
960,lão già,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01947.mp4?autoplay=true,960
961,lau khô,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01949.mp4?autoplay=true,961
962,lau nhà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01950.mp4?autoplay=true,962
963,lắc đầu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01951.mp4?autoplay=true,963
964,lặng lẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01957.mp4?autoplay=true,964
965,lắp ráp,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01960.mp4?autoplay=true,965
966,lẫn lộn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01962.mp4?autoplay=true,966
967,lễ phép,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W01983.mp4?autoplay=true,967
968,lon bia,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02026.mp4?autoplay=true,968
969,Long An,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02027.mp4?autoplay=true,969
970,lỗi lầm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02036.mp4?autoplay=true,970
971,lông gà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02040.mp4?autoplay=true,971
972,lơ lửng,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02046.mp4?autoplay=true,972
973,lời nói,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02048.mp4?autoplay=true,973
974,lợi ích,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02049.mp4?autoplay=true,974
975,lớp phó,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02055.mp4?autoplay=true,975
976,lũ quét,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02059.mp4?autoplay=true,976
977,luật lệ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02065.mp4?autoplay=true,977
978,lúc nào,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02066B.mp4?autoplay=true,978
979,lục địa,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02067.mp4?autoplay=true,979
980,lũy tre,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02073.mp4?autoplay=true,980
981,lựu đạn,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02100.mp4?autoplay=true,981
982,mã vạch,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02109.mp4?autoplay=true,982
983,mái nhà,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02118.mp4?autoplay=true,983
984,mái tóc,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02119.mp4?autoplay=true,984
985,mạnh mẽ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02131.mp4?autoplay=true,985
986,màu cam,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02132.mp4?autoplay=true,986
987,màu đen,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02133B.mp4?autoplay=true,987
988,màu nâu,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02137B.mp4?autoplay=true,988
989,máy ảnh,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02145.mp4?autoplay=true,989
990,máy bơm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02146.mp4?autoplay=true,990
991,mặt đất,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02171.mp4?autoplay=true,991
992,mặt dài,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02175.mp4?autoplay=true,992
993,mâm cơm,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02177.mp4?autoplay=true,993
994,mầm cây,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02180.mp4?autoplay=true,994
995,mầm non,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02181.mp4?autoplay=true,995
996,mất ngủ,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02182.mp4?autoplay=true,996
997,mất trí,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02183.mp4?autoplay=true,997
998,mật ong,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02189.mp4?autoplay=true,998
999,mét (m),,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02197.mp4?autoplay=true,999
1000,mềm mại,,,,https://minio.aiotlab-annotation.com/documents/videos_samples/W02204.mp4?autoplay=true,1000
|