File size: 70,621 Bytes
c65a5eb c35b554 63973e5 cac5f89 90b60cb 677e157 a475098 24f5620 f01630f c8f36da 2b0c160 2cf468a 81dd330 45207e7 f059739 787d919 da75ae1 a310217 8efaff5 d6a1064 98d2f5b cb799bb 5b938ce 690a084 db35b18 1904a52 b8ebeaf 56dfe8f 8bdbb26 24815b4 21ff428 5a3dffd e08661c 515775e 32d434d 0633d5f be2f10e c476d9c 716c049 f0a3b15 f48073f 36a2e64 a734bcb 34b4629 ac35c67 5386ee1 ae4829c e970286 3db887f 031f11c d38bc5e c9f205d f091ee3 d5acb3e 1b1386f 6a3db23 bebd3d7 1effad8 1399e2b 9cfc58c b400b77 555b5f5 44f3534 4a85d2e 275a766 f997992 e96a493 9645130 8c2bc09 84f5bfe 763a594 aeb7750 9d70180 5c5de43 dd20925 bfed6bf 270bd77 337e178 504a892 3e7534c cbbd66d 7465eea 36b23d9 5e15f28 0a0aeac 2056388 0b8fa42 4973144 e0fbbff 9b2fe88 02cf962 406e049 a36a1d8 2be0237 a732cdf 01fc5a6 fe02eb2 e20db11 6376041 6e6e867 500d76d df3b4b9 0da1599 0958700 cf225c4 11b91e0 a5fbdfb 3aa0568 e675bda 075f038 f4dffef ff29a67 3e7a954 |
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 |
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.lz4 filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
# Audio files - uncompressed
*.pcm filter=lfs diff=lfs merge=lfs -text
*.sam filter=lfs diff=lfs merge=lfs -text
*.raw filter=lfs diff=lfs merge=lfs -text
# Audio files - compressed
*.aac filter=lfs diff=lfs merge=lfs -text
*.flac filter=lfs diff=lfs merge=lfs -text
*.mp3 filter=lfs diff=lfs merge=lfs -text
*.ogg filter=lfs diff=lfs merge=lfs -text
*.wav filter=lfs diff=lfs merge=lfs -text
# Image files - uncompressed
*.bmp filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.tiff filter=lfs diff=lfs merge=lfs -text
# Image files - compressed
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:00:00-00:01:07.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:02:59-00:04:19.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:06:35-00:13:30.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:16:47-00:18:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:21:07-00:22:17.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:24:41-00:26:12.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:30:08-00:32:38.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:36:21-00:38:18.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_19-00:39:23-00:42:43.344000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:00:00-00:10:59.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:12:02-00:14:33.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:17:11-00:19:55.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:20:14-00:27:37.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:28:53-00:33:25.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:33:44-00:36:11.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_11-00:36:42-00:41:52.469000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:00:00-00:01:37.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:02:00-00:05:09.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:05:42-00:07:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:07:36-00:08:36.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:10:52-00:12:07.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:12:41-00:14:49.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:15:05-00:17:26.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:19:08-00:21:24.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:23:28-00:28:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:29:47-00:31:43.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:32:29-00:35:17.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:35:40-00:38:11.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_3-00:40:51-00:41:28.065000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:01:10-00:04:39.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:07:02-00:08:18.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:08:33-00:10:09.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:11:08-00:12:11.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:13:42-00:17:01.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:18:51-00:22:24.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:24:35-00:27:27.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:29:19-00:30:50.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:31:10-00:34:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:34:26-00:36:00.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_15-00:40:44-00:42:39.815000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:00:03-00:02:47.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:04:29-00:14:10.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:14:34-00:21:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:21:30-00:22:36.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:27:08-00:29:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_17-00:36:32-00:42:07.585000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:00:00-00:01:40.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:06:51-00:08:09.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:10:35-00:12:16.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:13:49-00:15:30.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:16:06-00:19:00.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:24:56-00:27:24.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:27:29-00:30:12.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:33:31-00:34:51.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:35:26-00:38:46.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_8-00:40:59-00:42:53.561000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:06:18-00:07:27.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:07:29-00:09:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:09:56-00:19:35.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:21:08-00:22:54.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:23:10-00:38:50.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_1-00:40:11-00:41:25.488000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:00:00-00:01:02.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:10:14-00:16:46.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:19:20-00:25:57.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:28:04-00:29:36.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:32:04-00:35:40.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:36:35-00:39:44.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_14-00:43:07-00:45:02.385000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:01:35-00:04:01.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:06:29-00:08:14.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:08:34-00:11:46.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:12:07-00:14:59.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:15:34-00:20:02.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:20:44-00:27:24.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:28:32-00:31:19.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:32:43-00:34:04.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:34:24-00:37:48.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:38:59-00:40:06.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_9-00:40:49-00:42:58.066000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:00:00-00:04:59.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:07:30-00:09:17.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:10:05-00:11:46.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:15:14-00:17:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:23:22-00:29:44.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:30:38-00:32:21.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:33:43-00:36:40.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:38:07-00:39:22.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_12-00:40:07-00:42:39.908000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_7-00:00:50-00:03:49.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_7-00:04:10-00:09:02.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_7-00:10:21-00:16:47.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_7-00:23:36-00:31:55.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_7-00:31:59-00:42:08.143000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:02:39-00:04:34.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:04:47-00:06:09.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:07:56-00:09:30.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:10:12-00:14:27.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:15:14-00:18:12.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:19:03-00:22:29.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:25:25-00:29:18.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:30:09-00:33:02.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:36:02-00:38:28.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_20-00:39:54-00:42:58.135000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:00:00-00:00:57.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:01:07-00:02:10.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:03:33-00:05:45.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:08:05-00:11:27.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:13:12-00:14:57.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:16:25-00:19:47.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:21:03-00:23:33.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:27:07-00:28:48.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:31:07-00:33:29.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:34:08-00:38:51.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_13-00:41:16-00:43:11.185000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:01:13-00:05:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:05:50-00:09:00.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:11:20-00:12:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:13:42-00:16:14.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:17:14-00:19:51.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_23-00:42:15-00:44:09.490000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:00:00-00:03:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:04:58-00:06:16.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:06:24-00:07:47.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:11:17-00:15:41.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:18:52-00:20:56.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:21:03-00:22:40.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:28:48-00:31:13.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:32:49-00:34:22.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:34:50-00:38:21.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_25-00:41:59-00:43:54.304000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:00:48-00:12:07.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:13:05-00:15:21.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:15:40-00:17:39.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:24:30-00:26:06.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:28:22-00:34:23.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:37:19-00:39:52.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_18-00:40:41-00:42:46.131000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:03:55-00:06:48.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:07:55-00:09:24.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:09:32-00:10:55.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:28:36-00:31:44.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:32:03-00:35:03.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_21-00:35:29-00:42:28.298000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:06:22-00:08:16.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:14:47-00:15:53.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:19:17-00:21:21.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:21:57-00:23:48.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:29:10-00:33:12.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:37:03-00:39:46.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_24-00:40:07-00:43:54.931000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:03:36-00:07:02.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:07:51-00:10:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:14:51-00:19:28.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:19:31-00:23:12.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:23:21-00:27:39.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:29:05-00:35:20.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_26-00:36:49-00:42:10.302000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:01:16-00:03:54.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:04:10-00:10:07.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:12:38-00:13:38.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:14:16-00:15:16.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:16:31-00:21:37.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:21:51-00:25:00.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:26:06-00:31:35.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_2-00:32:38-00:43:28.461000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_27-00:01:21-00:05:43.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_27-00:12:26-00:14:31.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_27-00:17:23-00:19:42.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_27-00:24:13-00:37:44.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_27-00:40:22-00:42:17.106000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:00:00-00:05:09.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:08:43-00:10:11.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:12:26-00:13:35.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:14:51-00:24:04.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:26:01-00:31:41.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:33:26-00:39:32.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_4-00:40:55-00:42:35.055000.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:04:30-00:06:49.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:07:15-00:09:20.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:10:20-00:13:26.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:15:05-00:16:21.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:17:11-00:18:47.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:20:18-00:21:41.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:21:53-00:23:40.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:24:28-00:26:41.mp4 filter=lfs diff=lfs merge=lfs -text
TTMV/output/2_splitted/videos/TTMV_TAP_28-00:30:08-00:41:53.468000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_31-00:13:21-00:17:09.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_31-00:25:45-00:28:03.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_31-00:40:54-00:42:55.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_1-00:08:18-00:12:57.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_1-00:14:14-00:23:53.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_1-00:30:44-00:32:52.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_1-00:33:11-00:39:05.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:03:38-00:05:48.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:10:42-00:13:58.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:17:44-00:21:30.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:22:29-00:25:53.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:32:51-00:34:52.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_20-00:45:42-00:49:57.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_26-00:02:20-00:09:12.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_26-00:16:37-00:23:38.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_26-00:35:00-00:37:57.971000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_36-00:01:55-00:15:30.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_36-00:22:34-00:31:38.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_13-00:20:42-00:22:44.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_13-00:24:21-00:26:37.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_13-00:27:02-00:29:42.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_13-00:31:27-00:34:47.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_13-00:36:10-00:38:10.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:00:00-00:05:07.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:09:33-00:11:52.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:14:16-00:17:02.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:21:31-00:23:37.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:26:05-00:28:08.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_27-00:39:16-00:40:49.868000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_12-00:08:09-00:11:24.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_12-00:13:39-00:18:29.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_12-00:18:36-00:21:28.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_12-00:27:22-00:36:48.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_7-00:05:29-00:07:29.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_7-00:14:07-00:16:07.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_7-00:25:54-00:27:54.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_7-00:28:45-00:37:17.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_7-00:39:40-00:47:53.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:00:00-00:01:25.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:03:04-00:05:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:05:48-00:07:48.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:09:53-00:11:56.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:23:13-00:25:34.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_22-00:48:36-00:50:36.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:01:42-00:06:03.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:07:39-00:10:30.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:17:53-00:20:55.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:22:56-00:24:56.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:25:16-00:28:13.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_30-00:28:31-00:30:31.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_15-00:12:27-00:14:27.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_15-00:25:10-00:29:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:01:51-00:03:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:09:35-00:13:22.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:13:28-00:17:18.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:19:40-00:33:09.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:37:24-00:39:24.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_19-00:44:17-00:46:25.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:01:12-00:03:17.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:18:43-00:20:43.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:26:06-00:28:07.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:28:13-00:34:49.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:36:00-00:38:00.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:38:40-00:44:26.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_3-00:45:25-00:48:20.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_23-00:01:26-00:03:26.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_23-00:06:28-00:08:28.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_23-00:18:12-00:22:10.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_23-00:23:51-00:25:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_28-00:20:06-00:27:24.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_28-00:48:14-00:50:14.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_32-00:07:25-00:09:55.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_32-00:14:10-00:31:39.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_32-00:33:11-00:38:13.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_32-00:39:43-00:41:43.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:08:06-00:13:28.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:19:04-00:21:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:21:08-00:27:06.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:27:37-00:36:52.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:40:31-00:42:31.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_21-00:47:17-00:49:17.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:00:00-00:01:23.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:06:16-00:09:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:09:51-00:11:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:12:47-00:16:17.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:17:07-00:19:08.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:22:31-00:36:17.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_34-00:38:17-00:39:35.773000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:00:00-00:09:02.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:10:32-00:21:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:22:51-00:25:09.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:26:06-00:29:22.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:29:26-00:31:26.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_8-00:35:56-00:41:24.048000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_35-00:00:00-00:03:01.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_35-00:09:57-00:14:04.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_35-00:17:07-00:19:07.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_35-00:22:56-00:27:16.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_35-00:28:06-00:31:41.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_33-00:17:59-00:20:14.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_33-00:25:48-00:28:39.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_33-00:29:45-00:31:57.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_17-00:11:40-00:18:27.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_17-00:26:29-00:41:05.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_4-00:01:41-00:08:27.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_4-00:08:31-00:10:31.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_4-00:20:33-00:22:34.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_4-00:26:19-00:43:26.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_18-00:06:04-00:09:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_18-00:12:40-00:16:41.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_18-00:19:37-00:28:48.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_18-00:36:32-00:38:32.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_18-00:44:17-00:47:41.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_14-00:11:51-00:13:53.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_14-00:14:21-00:17:18.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_14-00:35:28-00:37:28.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_16-00:07:47-00:12:02.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_16-00:20:49-00:27:56.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_16-00:27:58-00:33:38.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_29-00:05:27-00:14:57.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:02:14-00:07:13.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:11:55-00:14:25.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:17:15-00:20:06.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:22:50-00:25:34.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:27:34-00:30:57.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:33:29-00:35:29.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_25-00:40:12-00:43:52.749000.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_24-00:10:05-00:23:07.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_9-00:01:25-00:05:02.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_9-00:05:54-00:10:39.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_9-00:13:35-00:16:54.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_9-00:28:43-00:33:55.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_9-00:44:25-00:46:25.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:00:51-00:02:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:20:23-00:22:23.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:23:00-00:25:58.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:26:26-00:31:34.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:39:42-00:41:43.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_10-00:47:39-00:50:08.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:02:23-00:04:23.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:09:38-00:15:51.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:16:34-00:18:55.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:19:46-00:26:19.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:29:14-00:31:14.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_6-00:37:37-00:43:43.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_11-00:26:39-00:29:25.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_11-00:34:37-00:41:42.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_5-00:01:08-00:03:15.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_5-00:04:05-00:06:05.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_5-00:20:40-00:22:40.mp4 filter=lfs diff=lfs merge=lfs -text
VDVK/output/2_splitted/videos/VDVK_TAP_5-00:41:57-00:43:57.mp4 filter=lfs diff=lfs merge=lfs -text
TEST/output/2_splitted/videos/TTMV_TAP_26-00:00:00-00:00:42.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:00:20-00:09:56.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:16:56-00:19:56.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:21:12-00:23:42.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:26:33-00:29:04.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:30:29-00:32:57.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:34:56-00:37:10.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:38:28-00:40:14.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_3-00:41:18-00:43:48.207000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:00:20-00:02:22.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:02:52-00:06:10.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:08:38-00:10:45.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:15:55-00:18:57.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:21:11-00:23:46.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:30:15-00:34:24.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:38:18-00:39:31.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_19-00:39:52-00:43:05.242000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:00:20-00:02:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:05:13-00:07:49.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:08:14-00:09:15.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:09:40-00:15:31.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:15:36-00:18:50.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:18:54-00:25:53.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:28:20-00:29:52.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:30:00-00:31:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:35:07-00:36:43.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_9-00:43:11-00:45:41.018000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_15-00:00:20-00:04:39.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_15-00:06:40-00:08:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_15-00:10:37-00:11:38.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_15-00:24:38-00:27:48.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_15-00:41:46-00:44:16.708000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:00:20-00:04:32.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:04:37-00:06:26.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:06:58-00:10:14.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:15:15-00:17:56.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:19:20-00:25:43.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:28:42-00:31:24.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:34:07-00:39:16.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:41:52-00:44:51.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_20-00:45:40-00:48:08.154000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:00:20-00:02:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:03:50-00:06:50.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:16:05-00:18:41.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:19:14-00:22:18.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:35:01-00:39:55.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:40:09-00:41:09.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_14-00:41:43-00:42:36.954000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:00:20-00:02:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:03:08-00:05:16.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:07:27-00:09:05.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:09:38-00:11:48.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:13:56-00:17:36.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:19:40-00:28:47.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:31:10-00:35:07.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_2-00:35:13-00:43:57.572000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:00:20-00:02:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:08:44-00:17:03.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:21:12-00:31:34.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:34:12-00:36:28.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:36:37-00:39:14.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:40:06-00:44:18.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_5-00:44:57-00:46:33.818000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:00:20-00:06:02.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:06:20-00:08:09.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:09:00-00:10:34.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:11:24-00:13:49.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:14:00-00:20:56.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:21:01-00:23:37.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:25:45-00:26:46.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:27:33-00:30:26.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:35:30-00:38:48.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_7-00:40:20-00:42:50.202000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:03:24-00:07:04.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:11:13-00:16:58.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:20:16-00:23:21.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:25:06-00:26:25.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:28:48-00:37:24.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_1-00:37:51-00:43:31.482000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:00:20-00:02:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:03:04-00:04:19.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:07:59-00:11:14.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:11:34-00:13:33.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:19:28-00:25:23.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_13-00:27:22-00:41:44.474000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:00:20-00:02:20.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:05:16-00:06:16.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:09:06-00:15:47.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:17:40-00:20:06.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:20:23-00:23:29.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:32:09-00:33:40.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:36:28-00:39:24.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_8-00:44:18-00:46:10.415000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:00:22-00:02:12.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:02:15-00:03:33.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:04:08-00:06:22.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:09:59-00:13:23.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:13:39-00:27:02.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:29:47-00:36:13.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_12-00:39:05-00:42:02.415000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:00:20-00:06:09.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:06:26-00:24:28.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:24:36-00:26:37.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:28:44-00:31:14.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:32:55-00:37:40.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_17-00:40:23-00:44:39.407000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:00:20-00:01:28.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:10:28-00:13:09.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:13:13-00:19:50.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:23:08-00:25:01.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:27:28-00:31:15.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:31:40-00:33:31.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_16-00:42:48-00:45:18.319000.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:00:20-00:08:31.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:08:32-00:13:57.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:15:28-00:34:19.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:35:51-00:36:52.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:37:02-00:42:59.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:43:06-00:45:57.mp4 filter=lfs diff=lfs merge=lfs -text
KHMT/output/2_splitted/videos/KHMT_TAP_21-00:46:02-00:47:37.754000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:00:00-00:01:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:01:20-00:02:50.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:03:42-00:07:58.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:08:37-00:09:54.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:11:10-00:12:11.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:12:25-00:16:53.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:23:09-00:44:02.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_22-00:44:13-00:49:37.003000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:00:00-00:10:31.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:10:46-00:16:58.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:17:32-00:19:58.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:24:30-00:29:32.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:30:41-00:33:29.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:34:07-00:35:41.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:36:04-00:37:12.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:40:22-00:41:38.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_14-00:44:00-00:48:03.265000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_04-00:00:00-00:02:57.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_04-00:03:06-00:18:18.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_04-00:18:47-00:22:33.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_04-00:23:13-00:44:32.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_04-00:47:02-00:49:24.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:00:00-00:03:49.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:05:21-00:11:47.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:12:39-00:19:20.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:19:25-00:38:06.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:38:43-00:40:23.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:40:33-00:45:25.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_18-00:45:44-00:49:19.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:00:07-00:07:02.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:09:26-00:10:49.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:19:06-00:23:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:23:47-00:29:33.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:33:50-00:37:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:40:04-00:42:27.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_11-00:43:16-00:48:29.960000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:00:00-00:04:42.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:05:06-00:13:33.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:13:54-00:18:42.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:25:37-00:26:52.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:27:36-00:36:39.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:39:22-00:42:57.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_13-00:46:25-00:48:45.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:00:07-00:03:05.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:03:20-00:04:30.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:06:08-00:14:39.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:18:13-00:22:40.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:24:44-00:29:18.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:29:57-00:31:39.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:32:42-00:35:35.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_19-00:41:29-00:49:57.014000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:00:06-00:04:43.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:08:00-00:14:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:16:34-00:19:17.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:22:44-00:24:34.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:29:29-00:32:27.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:33:39-00:37:58.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_20-00:41:36-00:46:10.006000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:00:00-00:00:58.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:03:40-00:05:40.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:10:27-00:11:34.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:11:51-00:19:54.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:22:29-00:28:33.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:32:51-00:36:18.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:38:33-00:39:39.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:39:41-00:45:28.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_16-00:45:30-00:49:21.003000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:00:01-00:02:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:02:28-00:10:29.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:11:44-00:26:09.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:29:41-00:31:32.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:35:30-00:37:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_06-00:44:02-00:48:17.003000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:00:00-00:01:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:03:13-00:06:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:07:38-00:09:56.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:13:33-00:29:04.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:30:04-00:32:10.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:33:13-00:37:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_09-00:37:25-00:49:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:00:05-00:02:52.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:04:23-00:05:43.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:10:14-00:16:20.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:16:27-00:17:44.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:18:56-00:29:04.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:30:58-00:32:47.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:33:10-00:37:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_12-00:41:51-00:48:00.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_05-00:00:05-00:09:21.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_05-00:10:20-00:18:59.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_05-00:19:14-00:30:03.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_05-00:30:04-00:37:23.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_05-00:41:09-00:49:20.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:00:00-00:04:30.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:06:33-00:08:22.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:09:54-00:12:15.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:13:15-00:23:20.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:23:28-00:26:56.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:27:48-00:38:44.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:39:30-00:40:34.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_07-00:40:51-00:47:48.011000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:00:06-00:10:42.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:17:51-00:19:26.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:22:54-00:29:05.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:29:39-00:37:25.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:37:35-00:38:54.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:39:06-00:43:28.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_24-00:48:23-00:50:53.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:00:06-00:06:13.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:06:46-00:10:08.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:11:02-00:14:15.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:14:27-00:16:16.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:17:43-00:32:51.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:33:39-00:40:46.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_15-00:42:40-00:45:32.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:00:06-00:06:11.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:06:40-00:08:13.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:09:50-00:14:40.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:14:56-00:17:20.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:19:00-00:28:29.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:28:46-00:33:16.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:34:08-00:39:04.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_08-00:40:06-00:47:38.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_17-00:00:00-00:19:11.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_17-00:26:23-00:27:50.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_17-00:31:09-00:36:37.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_17-00:41:47-00:49:45.003000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:00:05-00:03:45.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:04:11-00:06:31.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:07:06-00:08:22.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:08:47-00:17:47.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:18:55-00:21:48.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:23:26-00:25:51.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:27:37-00:36:07.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:36:46-00:43:05.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_10-00:43:45-00:48:11.009000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_02-00:00:07-00:05:59.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_02-00:07:17-00:18:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_02-00:19:22-00:41:29.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_02-00:41:56-00:49:33.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:00:00-00:03:45.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:04:12-00:05:35.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:06:51-00:09:51.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:10:44-00:16:55.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:17:07-00:19:37.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:24:12-00:30:30.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:31:33-00:33:40.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:34:16-00:37:44.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:38:57-00:42:01.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:42:44-00:44:09.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:45:16-00:47:24.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_21-00:47:32-00:48:21.014000.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_01-00:00:00-00:09:57.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_01-00:10:12-00:33:59.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_01-00:34:27-00:42:12.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_03-00:00:06-00:01:52.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_03-00:01:59-00:10:42.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_03-00:11:01-00:32:28.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_03-00:32:29-00:38:05.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_03-00:39:11-00:47:04.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:00:07-00:09:21.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:09:54-00:11:31.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:12:56-00:14:18.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:16:53-00:23:51.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:27:34-00:37:25.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:37:38-00:42:57.mp4 filter=lfs diff=lfs merge=lfs -text
NAMDY/output/2_splitted/videos/NAMDY_TAP_23-00:44:17-00:52:12.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:00:00-00:00:40.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:00:50-00:02:18.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:02:32-00:03:47.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:07:34-00:13:21.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:14:09-00:18:22.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:22:48-00:24:06.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:43:19-00:44:22.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:00:35-00:02:06.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:02:09-00:06:46.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:16:21-00:19:52.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:20:55-00:22:43.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:29:23-00:32:17.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:32:43-00:34:03.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:44:32-00:46:25.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:00:00-00:00:40.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:00:50-00:03:26.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:20:11-00:25:29.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:25:41-00:40:05.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_38-00:00:45-00:12:24.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_38-00:34:35-00:40:59.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_38-00:48:35-00:50:33.webm filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:00:00-00:00:40.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:00:50-00:02:18.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:02:32-00:03:47.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:07:34-00:13:21.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:14:09-00:18:22.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:22:48-00:24:06.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_15-00:43:19-00:44:22.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:00:35-00:02:06.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:02:09-00:06:46.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:16:21-00:19:52.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:20:55-00:22:43.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:29:23-00:32:17.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:32:43-00:34:03.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_3-00:44:32-00:46:25.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:00:00-00:00:40.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:00:50-00:03:26.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:20:11-00:25:29.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_13-00:25:41-00:40:05.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_38-00:00:45-00:12:24.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_38-00:34:35-00:40:59.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_23-00:00:00-00:01:02.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_23-00:01:19-00:02:50.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_23-00:18:12-00:27:11.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_23-00:30:22-00:32:25.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_23-00:43:29-00:45:14.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:00:35-00:02:06.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:07:35-00:09:02.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:10:19-00:13:06.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:14:38-00:19:51.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:28:37-00:30:43.mp4 filter=lfs diff=lfs merge=lfs -text
CTNH1/output/2_splitted/videos/CTNH_TAP_1-00:44:01-00:45:36.mp4 filter=lfs diff=lfs merge=lfs -text
|