File size: 39,180 Bytes
3881076 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 |
1
00:00:04,940 --> 00:00:08,860
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ูุงูุตูุงุฉ ูุงูุณูุงู
ุนูู ุณูุฏูุง
2
00:00:08,860 --> 00:00:12,600
ู
ุญู
ุฏ ุณูุฏ ุงูู
ุฑุณูููุ ุงูููู
ู
ุญุงุถุฑุชูุง ุงุณุชูู
ุงู ูู
3
00:00:12,600 --> 00:00:17,120
skeletal systemุ ูู ุฌุฒุก ู
ูู
ูู ุงูู skeletal systemุ
4
00:00:17,120 --> 00:00:22,120
ูุงุฒู
ูุชุนุฑู ุนูููุ ูู ุงูู joints ุฃู ุงูู articulations
5
00:00:22,610 --> 00:00:27,030
ุทุจุนูุง ูุธููุฉ ุงูู joints ูู ุฃููุง ุชุฑุจุท ุจูู two adjacent
6
00:00:27,030 --> 00:00:31,250
bonesุ ู ุชุนุฑูู ุงูู joints ูุนูู ุงููู ูู ุงูู wrap between two
7
00:00:31,250 --> 00:00:37,070
adjacent bonesุ ูุนูู ุนุธู
ุชูู ูููููุง ุจุดูู ู
ูุตู ุนู
8
00:00:37,070 --> 00:00:42,010
ุทุฑูู ุงูุชูุงุญู
ุ ูุทุจุนูุง ุงูุชูุงุญู
ูุฐุง ุจูููู ุญุณุจ ุดูู
9
00:00:42,010 --> 00:00:46,450
ุงูู
ูุตูุ ุจุชุนุทููุง ููุน ุงูุญุฑูุฉุ ูุจูู ุฃูู ุญุงุฌุฉ ุงูู joints
10
00:00:46,450 --> 00:00:49,350
ูู ุงููู ุจุชุฑุจุท ุงูุนุธุงู
ู
ุน ุจุนุถูุง ูุจุชุฎูููุง ุงุญูุง
11
00:00:49,350 --> 00:00:53,450
ูุงูููู ูููุ ุงุญูุง ูู ู
ุง ูุงูุด ููู ุนูุฏูุง joints ูุจูููู
12
00:00:53,450 --> 00:00:56,750
ุงุญูุง ุจูุดุชุบู ุฒู ุงูู robotุ ู
ุง ููุด ุฅู
ูุงููุฉ ุฅู ุงุญูุง ูุง
13
00:00:56,750 --> 00:00:59,970
ูุชุญุฑู ุฃูุฏููุง ููุง ูุชุญุฑู ุฃุฑุฌููุง ููุง ูุชุญุฑูุ ุญุฑูุฉ
14
00:00:59,970 --> 00:01:06,460
ุจุตูุฑุฉ ุฎูููุง ูููู ู
ุชุตูุจุฉุ ูุงูู ... ูุจูู ุงูู articulations
15
00:01:06,460 --> 00:01:14,120
ุจุชุณุงุนุฏูู ุนูู ุงูุญุฑูุฉุ ููู
ุงู ุจุชุณุงุนุฏ ุนูู ุงููู
ูุ ูููุ ูู
16
00:01:14,120 --> 00:01:18,600
ุงุญูุง ููุฏูุง ุจููุณ ุงูุญุฌู
ูุฐุงุ ููุงู ุทุจุนูุง ู
ุณุชุญูู ุนู
ููุฉ
17
00:01:18,600 --> 00:01:21,040
ุงูุญู
ู ูุงูููุงุฏุฉ ูุฐู ุชุตูุฑุ ูุนุดุงู ููู ุงุญูุง ููุฏูุง
18
00:01:21,040 --> 00:01:25,880
ุจุงุญุฌุงู
ุตุบูุฑุฉุ ููุงู ูุงุฒู
ุนู
ููุฉ ุงููู
ู ุงูุทุจูุนู ูุฐู ุชููู
19
00:01:25,880 --> 00:01:31,600
ูุนุดุงู ููู ูุงู ูู ููุงูุฉ ุงูุนุธู
ุฉ ูุจู ู
ุง ูุจุฏุฃ ุงูู
ูุตู
20
00:01:31,600 --> 00:01:35,280
ูู ุนูุฏูุง ูู ุงูู epiphysis ูู ุนูุฏูุง ุงูู epiphysial
21
00:01:35,280 --> 00:01:43,290
growthุ ููุงู ููู ุนู
ููุฉ ูู
ู ููุนุธุงู
ุ ูู
ุงู ุจุชุณุงุนุฏูุง ุนูู
22
00:01:43,290 --> 00:01:51,230
ุงูุชุบููุฑ ุดูู ุงูุนุธุงู
ุฃุซูุงุก ุงููู
ูุ ููู
ุงู ุจุชุณุงุนุฏ ุนูู
23
00:01:51,230 --> 00:01:55,430
ุงูู movement ู
ู ุฎูุงู ุงูู articulationsุ ู
ู ุฎูุงู
24
00:01:55,430 --> 00:01:58,990
ุงูุนุถูุงุช ุงููู ุจุชููู ุญูุงูู ุงูู
ูุตูุ ุทูุจ
25
00:02:03,070 --> 00:02:06,350
ููู ุงุญูุง ุณู
ููุง ูุฐู ุงูู
ูุงุตูุ ุฃู ููู ุงูุนูู
ุงุก ุณู
ูุง
26
00:02:06,350 --> 00:02:14,410
ูุฐู ุงูู
ูุงุตูุ ุทุจุนูุง ุงูุงุณู
ุฏุงุฆู
ูุง derived ู
ู ุงูู
27
00:02:14,410 --> 00:02:19,230
articulating bonesุ ูุนูู ุงูู tibia ู
ุน ุงูู femur
28
00:02:19,230 --> 00:02:24,570
ูุชุนุทููู ุงูู kneeุ ุงูู humerus and ulna ู
ุน ุงูู radius
29
00:02:24,570 --> 00:02:31,090
ูุชุนุทููู ุงูู elbowุ ูููุฐุงุ ุงููู ูุฏู ุญุณุจ ุชุฑุชูุจู ูุชููู
30
00:02:31,090 --> 00:02:35,630
ุฃุณู
ุงุก ุงูู articulationsุ ุญุชู ููู
ุงู ุฃููุงุนูุง ุงููู
31
00:02:35,630 --> 00:02:40,570
ุจุชุนุชู
ุฏ ุนูู shape of the articular surfacesุ ุทุจุนูุง
32
00:02:40,570 --> 00:02:41,910
ุชูุณูู
ุชูุง
33
00:02:44,110 --> 00:02:51,330
ุจุชููุณู
ุจุตุฑุงุญุฉ ุญุณุจ ุงูุญุฑูุฉ ูุญุณุจ ุดูู ุงูู
ูุตูุ ูุฑูุญ ููู
34
00:02:51,330 --> 00:02:57,550
fibrous jointsุ ูู ุนุจุงุฑุฉ ุนู dense connective tissue
35
00:02:57,550 --> 00:03:04,650
ุจุชุฌู
ุน ุงูู bones togetherุ ุงูู bones ุจูููููุง ู
ุชูุงุตูุฉ ุฌุฏูุงุ
36
00:03:04,650 --> 00:03:08,090
ูุนูู ุจูููู ู
ุง ููุด ูุฑุงุบุงุช ุจูู ุงูู bonesุ ูุนูู ู
ุง ููุด real
37
00:03:08,090 --> 00:03:13,270
articulationุ ุงูุญูููุฉ two bones adjacent ู
ุฑุชุจุทูู ู
ุน
38
00:03:13,270 --> 00:03:18,070
ุจุนุถูู
ุ ููู ู
ุง ููุด ูุชูุฑ ู
ููุง movementุ ุฃู
ุง ุงูู
39
00:03:18,070 --> 00:03:22,750
cartilaginousุ ููู ุนุจุงุฑุฉ ุนู ูุงููู ูุงุฑุชููุงุฌ ูููุจุฑู
40
00:03:22,750 --> 00:03:26,250
ูุงุฑุชููุงุฌุ connected bonesุ ูู ูุฐุง ุงูุดููุ ูุนูู ุฎูููุง
41
00:03:26,250 --> 00:03:29,430
ูููู ุงูู fibersุ ูููู ูู ุนุธู
ุชูู ุฌูุจ ุจุนุถุ ุงูุญุฑูุฉ
42
00:03:29,430 --> 00:03:33,630
ูููู
ู
ุด ุถุฑูุฑูุฉุ ููู ูุงุฒู
ูููู ูู ุฎูููุง ูููู
43
00:03:33,630 --> 00:03:38,110
ุงูุงูุชุตุงู ุชุจุน ุงูุนุธุงู
ุฃู ุงูู stability ุชุจุน ุงูุนุธู
ุชูู
44
00:03:38,110 --> 00:03:43,160
ู
ุน ุจุนุถุ ุงููุงุฑุชููุงุฌ ูุฃุ ุจุชุฎุชูู ุดููุฉุ ุฅู ูู ุนูุฏูุง
45
00:03:43,160 --> 00:03:47,360
ุงูุชุตุงู ููุนุธุงู
ุ ููู ู
ุด ู
ุจุงุดุฑุ ูู ุนูุฏูุง cartilage ุฃู
46
00:03:47,360 --> 00:03:53,660
fibrocartilage ุฃู ุฃู discุ ุฃู ุฅุฐุง ูููู ุงูู disc ูู
47
00:03:53,660 --> 00:03:56,180
ุนูุฏูุง ุงูู annulus fibrosusุ ููู ุนูุฏูุง ุงูู nucleus ุงููู
48
00:03:56,180 --> 00:04:00,940
ูู ุจุชุณุงุนุฏ ุนูู ุงูู fabrication ููู
ูุตู ูุจุชุณุงุนุฏ
49
00:04:00,940 --> 00:04:04,500
ุนูู ุงูุญุฑูุฉ ุงูุจุณูุทุฉุ ุฃู
ุง ุงูู synovial jointsุ ููุฐู ุงูู
50
00:04:04,500 --> 00:04:06,900
joints ุงููุจูุฑุฉ ุงููู ู
ูุฌูุฏุฉุ ุงูู
ูุงุตู ุงููุจูุฑุฉ ุฒู ุงูู
51
00:04:06,900 --> 00:04:11,220
elbow ูุงูู hipุ ูุฏูู ุจูููู ุฃูู ุญุงุฌุฉ ุงูู complex ูุฃู
52
00:04:11,220 --> 00:04:13,520
ุชุฑููุจูุงุ ูุงูู articular shared surfaceุ ูุงูู synovial
53
00:04:13,520 --> 00:04:17,060
fluidุ ูุงูู ligaments ุฌูุงุ ูุงูู ligaments ุจุฑุงุ ูุจุชููู
54
00:04:17,060 --> 00:04:20,680
ู
ุญุงุทุฉ ุจุงูู synovial membraneุ ูููุฐุงุ ูุฐู ูู ุงูู
ูุงุตู
55
00:04:20,680 --> 00:04:24,740
ุงููู ุงุญูุง ุจุชุณุงุนุฏ ุนูู ุงูุญุฑูุฉ ุงููุจูุฑุฉ ุงููู ุงุญูุง
56
00:04:24,740 --> 00:04:28,580
ุจูุชุญุฑููุง ุณูุงุก ูู ุงูู ambulation ุฃู ุงูู locomotion ุฃู
57
00:04:28,580 --> 00:04:34,660
ูู ุงูู
ุตูู ููุฃุดูุงุกุ ุงูุฃููุงุน ูู... ูู ุฅุฌููุง ุงุชููู
ูุง
58
00:04:34,660 --> 00:04:39,560
ุนูู ุงูู... ูุนูู ุตูููุงูุง according to the movement
59
00:04:39,560 --> 00:04:42,960
ูุจููุงูู ุฅูู ุฅููุง ุชุตููู ุซุงููุ ูู ุงูู syn
60
00:04:42,960 --> 00:04:47,120
arthrosisุ ุงูู immovable bonesุ ูุงูู amphiarthrosisุ ุงูู
61
00:04:47,120 --> 00:04:50,300
slightly movable jointุ ูุงูู diarthrosis ุงููู ูู ุฒู
62
00:04:50,300 --> 00:04:54,800
ุงูู synovial jointsุ ููู freely movable joints
63
00:04:57,100 --> 00:05:00,600
ูุงุฎุฏ ุฃููุงุน ุฃู ุฃุดูุงู ุงูู fibrous jointsุ ูููุงูููุง
64
00:05:00,600 --> 00:05:04,940
three typesุ ุจูุณู
ููุง ุงูู syndesmosisุ ูุงูุณูุชุดุฑุ
65
00:05:04,940 --> 00:05:09,680
ูุงูgomphosisุ ุทูุจ ุฅูุด ุงููุฑู ู
ุง ุจูููู
ุ ุงูู syndesmosis
66
00:05:09,680 --> 00:05:14,080
ููู ุนุจุงุฑุฉ ุนู sheet ุจูู two bonesุ ุฒู ู
ุง ุงุญูุง
67
00:05:14,080 --> 00:05:20,020
ุดุงูููู ูู ุงูุตูุฑุฉ ุงููู ุนูู ุงููู
ูู ููุง ุฃู ุนูู ูุณุงุฑ
68
00:05:20,020 --> 00:05:25,260
ุงูุตูุฑุฉุ ุฅู ููู ุฅู ุงูู tibia and fibula ู
ูุฌูุฏ ูู
69
00:05:25,260 --> 00:05:28,600
ุจูููู
ูุฏู ุบุดุงุกุ ุงูุบุดุงุก ูุฐุง ุฑุงุจุท ูุฏูู ุงูุนุธู
ุชูู ุนุดุงู
70
00:05:28,600 --> 00:05:32,400
ูููููุง ุฃูุซุฑ stabilityุ ูู
ุง ุงูุนุธู
ุชูู ู
ุฑุชุจุทูู ู
ู ุชุญุช
71
00:05:32,400 --> 00:05:37,380
ุงูู
ูุตู ูู
ู ููู ุงูู
ูุตูุ ุงูู
ูุตููู ูุฏูู ู
ุด ู
ุชุญุฑูููุ
72
00:05:37,380 --> 00:05:43,010
ุชู
ุงู
ุ ูู sheet or bundle of fibrous tissue connects
73
00:05:43,010 --> 00:05:46,570
the bones ููุงุ ุฃู
ุง ูู ุงูู suturesุ ูุนูู slightly movable
74
00:05:46,570 --> 00:05:49,910
jointsุ ู
ุง ุจุชุชุญุฑูุด ูุชูุฑุ ูุนูู ูู ุจุชุณู
ุญ ุจุงูุญุฑูุฉ
75
00:05:49,910 --> 00:05:55,210
ุงูููููุฉ ุฌุฏูุงุ ูุฏุงูู
ูุง ูุนูู ุฃูุซุฑ ู
ุซุงู ูุถุฑุจ ุนููู ุงููู
76
00:05:55,210 --> 00:05:59,810
ูู ุงูู joints ุจูู tibia ู fibulaุ ุงูู suture
77
00:05:59,810 --> 00:06:04,350
ุทุจุนูุง ุงุญูุง ูููุง ุจูุนุฑู ุฅู ุงูู skull ู
ุฌู
ูุนุฉ ู
ู ุงูู
78
00:06:04,350 --> 00:06:07,590
bonesุ ุฒู ู
ุง ุงุชููู
ูุง ูููุ ุนููุฉ frontal ู parietal ู
79
00:06:07,590 --> 00:06:11,150
temporal ู occipitalุ ูุฏูู ุจูุดููููุง ุงูู skullุ ููุง
80
00:06:11,150 --> 00:06:15,090
ููู ูู ุงูุฃูู ูู ุจูููู
ููู foramenุ ุชู
ุงู
ุ ุญุงูุชูุง ูู
ุง
81
00:06:15,090 --> 00:06:18,790
ุจูุชุญู
ูุฐุง ุงูู foramen ุจูุตูุฑ ุนูู ุดูู suture ุฒู ุงููู
82
00:06:18,790 --> 00:06:23,290
ุงุญูุง ุดุงูููููุง ุจุงูุฑุณู
ุ ูุฃูู ู
ุฎูุทุฉ ุฎูุงุทุฉุ ูุฐู ุฎูุงุทุฉ
83
00:06:23,290 --> 00:06:27,560
ุฑุจุงููุฉุ ูู ุชุฑุจุทุ ูุจูู ุงูู suture ุชุฑุจุท ุจูู ุงูู
84
00:06:27,560 --> 00:06:31,660
flat bonesุ ููู synarthrosisุ synarthrosis ูุนูู ุฅููุง
85
00:06:31,660 --> 00:06:35,640
immovable jointsุ thin layer of connective tissue
86
00:06:35,640 --> 00:06:38,600
connects the bonesุ ูุฒู ู
ุง ุงุญูุง ุดุงูููููุ ุฃู
ุง
87
00:06:38,600 --> 00:06:46,200
ุงูู gomphosisุ ูู ุนุจุงุฑุฉ ุนู ุฌุฐุฑ ุชุจุน ุงูู teethุ ูู cone
88
00:06:46,200 --> 00:06:50,940
shaped bone process in a socketุ ูุนูู ูู ุฌูุจ ุดูู
89
00:06:50,940 --> 00:06:56,320
ู
ุฎุฑูุทู ุงูุดููุ ู
ุฒุฑูุนุฉ ูููุ ู
ุฒุฑูุนุฉ ูู
90
00:06:56,320 --> 00:07:01,200
ู
ูุงู ู
ุนููุ ูู ุฌูุจ ู
ุนููุ ุฒู ุงูู tooth in the jawboneุ
91
00:07:01,200 --> 00:07:04,920
ุทุจุนูุง ุงุญูุง ุจูุนุฑู ุฅู ูู ุณู ููู ุฌุฐุฑุ ุงูุฌุฐุฑ ูุฐุง ู
ูุฌูุฏ
92
00:07:04,920 --> 00:07:08,780
ูู ุงููุซุฉุ ููุฐู synarthrosisุ ูุนูู ุชุฎููู ุฅู ูู ุฅููุง
93
00:07:08,780 --> 00:07:12,200
movableุ ูุงู ุงุญูุง ุนู
ุฑูุง ู
ุง ุนุฑููุง ูู
ุถุบ ุฃู ูุงููุ ูุจูู
94
00:07:12,200 --> 00:07:16,900
ุงูุฃุณูุงู ู
ุซุจุชุฉุ ูุงุญูุง ุจูุฑู ูู ูุฐุง ุงูู
ูุตู ุตุงุฑ ูุนูู
95
00:07:16,900 --> 00:07:22,360
ู
ุชุฑุงุฎ ุดููุฉุ ุจูุนูู ุฅู ุงูููู
ุงูุฌุฐุฑู ุจููุฏุฑ ูุฎูุน ูุฐุง ุงูุณูุ
96
00:07:22,360 --> 00:07:28,100
ููู synarthrosisุ no movementุ ุฒู ูุฐุง ุงูุดูู
97
00:07:28,100 --> 00:07:34,080
ุงููู ุงุญูุง ุดุงูููููุ ุฌุฐุฑ ุงูุณูุ ุฃู
ุง ุงูู cartilaginous ููู
98
00:07:34,080 --> 00:07:39,500
synchondrosisุ ู
ุด ู
ุชุญุฑูุฉุ ุฒู ุงูู... ุงูู... ุงูู... ุงูู...
99
00:07:39,500 --> 00:07:42,800
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
100
00:07:42,800 --> 00:07:43,740
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
101
00:07:43,740 --> 00:07:43,780
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
102
00:07:43,780 --> 00:07:45,800
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
103
00:07:45,800 --> 00:07:45,860
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
104
00:07:45,860 --> 00:07:46,700
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
105
00:07:46,700 --> 00:07:46,760
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
106
00:07:46,760 --> 00:07:46,840
ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู... ุงูู...
107
00:07:46,840 --> 00:07:54,010
ุงูู... ุงูู... ุงูู... ูุจูู synchondrosisุ bones of
108
00:07:54,010 --> 00:07:56,870
hyaline cartilageุ joined to boneุ ูุนูู ุงุญูุง
109
00:07:56,870 --> 00:08:00,830
ุจููุงูู ูู rib ูู ููุงูุชูุง ุฒู ู
ุง ุงุญูุง ุดุงูููู ูู ุนูุฏูุง
110
00:08:00,830 --> 00:08:03,750
cartilageุ ุจูุณู
ูู costal cartilageุ ุจูุนู
ู
111
00:08:03,750 --> 00:08:06,610
attachments ู
ุน ุงูู sternum
112
00:08:07,990 --> 00:08:11,750
ูู ุงูู epiphysis ููู ribsุ ุทุจุนูุง ูุฐุง ุงูู ribs ุงููู ุจูุณู
ุญ
113
00:08:11,750 --> 00:08:16,290
ุจุนู
ููุฉ ุงููู
ูุ ุนุดุงู ุฅู ูู ู
ุง ุจููุจุฑ ูู ู
ุง ุจููุจุฑุ ูุฐุง
114
00:08:16,290 --> 00:08:22,130
ุจูุตูุฑ ossificationุ ูุจูุณุงุนุฏ ุนูู ุทูู ุงูุนุธุงู
ูู
ุงูุ
115
00:08:22,130 --> 00:08:29,090
ูุฏูู synarthrosisุ ูุนูู ุบูุฑ ู
ุชุญุฑูุฉ ุฃู immovable
116
00:08:31,330 --> 00:08:34,730
ุฃู
ุง ุงูู symphysisุ ูุฐุง ุงูููุน ุงูุซุงููุ ููู band of
117
00:08:34,730 --> 00:08:37,830
fibrocartilage between the bonesุ ุดููุงูุง ูู
118
00:08:37,830 --> 00:08:41,130
ุงูู
ุญุงุถุฑุฉ ุงููู ูุงุชุชุ ูู ุงูู pubic symphysis ุงููู
119
00:08:41,130 --> 00:08:47,610
ุจูุนู
ู articulation to pubic bonesุ ูู ุงูู pelvic bonesุ joints
120
00:08:47,610 --> 00:08:50,710
between bodies of adjacent vertebraeุ ูููุง each
121
00:08:50,710 --> 00:08:55,210
vertebra ุจูู two adjacent vertebraeุ ูู ุนูุฏูุง ุงูู
122
00:08:55,210 --> 00:08:59,030
intervertebral discุ ู
ูุถูุญ ุจุงูุฑุณู
ุ ููู ุฏู ุงูู
123
00:08:59,030 --> 00:09:03,250
amphiarthrosisุ means ุฅูู slightly movable joints
124
00:09:03,250 --> 00:09:04,830
ุนุดุงู ุชุณู
ุญ ุจุงูุญุฑูุฉ
125
00:09:07,150 --> 00:09:10,790
ุฃู
ุง ุงูู synovialุ ููู ุงูู most complicated joints
126
00:09:10,790 --> 00:09:16,710
ูู ู
ูุชุดุฑุฉ ุนูู ู
ุนุธู
ู
ูุงุตู ุงูุฌุณู
ุงููู ูููุง real
127
00:09:16,710 --> 00:09:21,190
movementุ a basic featureุ ุฃูู ุญุงุฌุฉ ุฅููุง ุจุชุญุชูู ุนูู
128
00:09:21,190 --> 00:09:27,670
articular capsuleุ ูู ุฌูุจ ูุฏู ุฃู ุบุดุงุก ู
ุญูุท ุจุงูู
ูุตู
129
00:09:28,410 --> 00:09:33,450
ุฃูุถูุง ูููุง synovial cavityุ ุจุชุจูู full of synovial
130
00:09:33,450 --> 00:09:37,090
fluidุ ุนุดุงู ูุณุงุนุฏ ุนูู ุชุบุฐูุฉ ุงูู cartilage ููุณุงุนุฏ
131
00:09:37,090 --> 00:09:40,510
ูู
ุงู ุนูู ุงูู movement ููุนู
ู ููุน ู
ู ุงูู lubricant
132
00:09:40,510 --> 00:09:44,550
inside the jointุ ููุนูู ุงูู articular cartilage
133
00:09:44,550 --> 00:09:48,830
ุงููู ูู covering ุงูู heads ุฃู ุฎูููุง ูููู ุงูู
134
00:09:48,830 --> 00:09:53,550
epiphysisุ ุงูู contact bones ู
ุน ุงูู other bonesุ ูุงุฒู
135
00:09:53,550 --> 00:09:58,530
ุชููู ู
ุงุฏุฉ ูุงุนู
ุฉ ุฌุฏูุง ู
ุซู ุงูู cartilageุ ู ุฃู ุฎุดููุฉ ูู ูุฐุง
136
00:09:58,530 --> 00:10:01,990
ุงูู... ูู ูุฐุง ุงูู cartilage ู
ู
ูู ุชุคุฏู
137
00:10:01,990 --> 00:10:05,990
ุฅูู... ุฅูู painุ ู ligamentsุ ููุดุ ุงูู ligaments ูู
138
00:10:05,990 --> 00:10:10,470
ุงูุฃุฑุจุทุฉ ุงููู ุจุชุฑุจุท ูุฏูู ุงูุนุธู
ุชูู ู
ุน ุจุนุถ ุญุชู ุชู
ูุน
139
00:10:10,470 --> 00:10:14,670
ุงูุงุฒุฏูุงุฏ ุงูู
ูุตูุ ููู
ุงู nerves ู blood vesselsุ ุงูู
140
00:10:14,670 --> 00:10:20,270
nerves ุนุดุงู ุชุนุทููู sensory orderุ ูู
ุงู ุจูููู ุงูู... ุงูู
141
00:10:20,270 --> 00:10:26,170
bones ุงุญูุง ุญูููุง innervatedุ ุฃู
ุง ุงูู cartilage ูุฃุ ู
142
00:10:26,170 --> 00:10:28,590
ุงูู blood vesselsุ ูููุง ุงูู cartilage is not
143
00:10:28,590 --> 00:10:29,890
vascularized
144
00:10:33,590 --> 00:10:39,210
ูุฑูุญ ููู Anatomy of the synovial jointุ ุงูู Accessory
145
00:10:39,210 --> 00:10:42,930
Structures ูููุง ุฅู ุญุงุฌุฉ ุงุณู
ูุง ุงูู bursaeุ ุงูู bursae
146
00:10:42,930 --> 00:10:49,010
ูู ุนุจุงุฑุฉ ุนู sacุ ุฌูุจุฉ ูููุง synovial fluidุ ูุฐู
147
00:10:49,010 --> 00:10:52,530
ุจุชููู ู
ูุฌูุฏุฉ ูู ุฃู
ุงูู ุงูุงุญุชูุงู ุนุดุงู ุชู
ูุน
148
00:10:52,530 --> 00:10:55,090
ุงูุงุญุชูุงู ุฃุซูุงุก ุงูุญุฑูุฉุ ูุจูู ูู
149
00:11:03,670 --> 00:11:07,150
ุฃู
ุง ูู ูู
ุงู ููุน ุซุงูู ู
ู ุงูู
ุฎุฏุงุชุ ุฎูููุง ูุณู
ููู
ู
ุฎุฏุงุช
150
00:11:07,150 --> 00:11:10,870
ุงุญูุงุ ุงููู ูู ุงูู fat padsุ ุฏุงุฆู
ูุง distributed along
151
00:11:10,870 --> 00:11:14,170
the periphery of the synovial jointุ ูู ุฌูุงูุจ ุงูู
152
00:11:14,170 --> 00:11:19,280
periphery jointุ act as padding materialุ and it
153
00:11:19,280 --> 00:11:23,320
provides some protectionุ ุจุชุณุงุนุฏ ุนูู ุญู
ุงูุฉ ูุฐุง
154
00:11:23,320 --> 00:11:30,520
ุงูู
ูุตูุ ุฏุงุฆู
ูุง ุจุชู
ูุฃ ุงููุฑุงุบุงุช ุจูู ุงูุนุธุงู
ุนุดุงู ุชุณุงุนุฏ
155
00:11:30,520 --> 00:11:34,720
ุนูู ุงูู stability ูุจุชุญุณูู ู
ู ุงูู congruence of the
156
00:11:34,720 --> 00:11:39,280
jointุ ุฅูุด ุงูู congruenceุ ุงููู ูู ุชุทุงุจู ุงูู joints
157
00:11:39,280 --> 00:11:44,960
ููุณูุ ุฃู
ุง ุงูู tendon sheaths ููู ููุงูุงุช ุงูู muscles ุงููู
158
00:11:44,960 --> 00:11:47,940
ุจุชุนู
ู attachment ู
ุน ุงูู boneุ ุฏุงุฆู
ูุง ุจุงูู
159
00:11:47,940 --> 00:11:54,180
stabilization of the jointุ ููุฐุง ุฎูููุง ูููู ุดูู ุงูู
160
00:11:54,180 --> 00:11:58,680
knee joint ูู ุชูุฑูุจูุง ุงูู most complicated joint in
161
00:11:58,680 --> 00:12:05,050
the bodyุ ูุฃูู ููู ูุชูุฑ ู
ู ุงูู... ุฎูููุง ูููู ุงูุฃุฌุฒุงุก
162
00:12:05,050 --> 00:12:10,370
ุฒู ุงูู articular surfacesุ ุฒู ุงูู patellaุ ูู ุนูุฏูุง
163
00:12:10,370 --> 00:12:16,250
ุงูู... ุงูู intervertebral menisciุ ูู ุนูุฏูุง ุงูู
164
00:12:16,250 --> 00:12:18,490
ligamentsุ ูู ุนูุฏูุง ุงูู bursaeุ ุงูู ligamentsุ ุงููู
165
00:12:18,490 --> 00:12:23,550
ููุดุฑุญูู
ูุงุญุฏ ูุงุญุฏุ ููู ุงูู bursa ูู ูุฐู ุนุดุงู ุชุนู
ู
166
00:12:23,550 --> 00:12:27,650
passages ููุชุงูุฏููุ ุฒู ุงูุชุงูุฏูู ุจุชุงุน patellaุ ุจูููู ูู ุนูุฏูุง
167
00:12:27,650 --> 00:12:34,970
ุงูู bursa ูู ุฃุณุงุณูุง ุฅููุง ุชุณุงุนุฏ ูู ุงูุญุฑูุฉุ ูุฐุง ููุดุฑุญู
168
00:12:34,970 --> 00:12:40,240
ุนูุฏู
ุง ูุตู ููู
ูุตู ุงูุฑุถููุ ููุฐุง ุดูู ุซุงูู ููู tendon
169
00:12:40,240 --> 00:12:43,820
sheathsุ ุงููู ู
ูุฌูุฏุฉ ูู ุงูู wristุ ูุฐู ุงูู sheaths
170
00:12:43,820 --> 00:12:49,320
ุจุชุณุงุนุฏ ุนูู ุฅู ุชุฎูู ุงูู tendonsุ ูุฐู ุงูุฃูุชุงุฑ ูุฐู ูู
171
00:12:49,320 --> 00:12:52,400
ุฃู
ุงูููุงุ ูู ูุงู ุงูุชุฑุถูุง ุฅู ููู ู
ุดููุฉ ูู ูุงุญุฏ ู
ู
172
00:12:52,400 --> 00:12:56,620
ูุฐู ุงูู sheaths ูุฐูุ ูุฐุง ู
ู
ูู ูุคุฏู ูุฅูู ุงูู tendon
173
00:12:56,620 --> 00:13:00,460
ู
ุง ููููุด stableุ ููุนููุ ูุนูู ู
ุซู ุงูู trigger fingersุ
174
00:13:00,460 --> 00:13:03,340
223
00:17:14,290 --> 00:17:19,350
Socket ุงููู ูู ู
ู ุงูู
ูุงุตู ุงูู freely movable
224
00:17:19,350 --> 00:17:24,910
joints ููููุง movement in the three planes ุฒู ุงูู
225
00:17:24,910 --> 00:17:32,010
shoulder and hip joint ุทูุจ ูุดูู ุฃู ุนูู ุงูุดูู ููุง
226
00:17:32,010 --> 00:17:36,290
ุงูู hip ู
ูู
ูู ุนูู ุงูู acetabulum ููู ุนูู ุงูู head of
227
00:17:36,290 --> 00:17:49,150
femur ุนุงู
ููู ุฒู ูุฃููุง ูุฑุฉ ุฌูุงุช ูุนูู ุญุงููุฉ ููู
228
00:17:49,150 --> 00:17:54,210
ุนูุฏูุง ุงูููุทุฉ
229
00:17:54,210 --> 00:17:58,360
ุงูุซุงููุฉ ุฒู ู
ุง ุงุญูุง ุดุงูููู ุงูู Condyloid Joint ุจูุฐุง
230
00:17:58,360 --> 00:18:01,540
ุงูุดูู ุงูู Condyloid ุจุฑุถู ุจูุนุทููุง movement ุจุณ in
231
00:18:01,540 --> 00:18:05,080
two planes ุฃู by axial plane ุฒู ุงูู
232
00:18:05,080 --> 00:18:07,960
Metacarpophalangeal Joints ุงููู ูุถุญูุงูุง ูุจู ุดููุฉ
233
00:18:07,960 --> 00:18:13,500
ุงูู Condyloid ุจูู ุงูู Metacarpophalangeal Joints ุฃู
ุง
234
00:18:13,500 --> 00:18:20,330
ุงูู gliding joint ููู ุนุจุงุฑุฉ ุนู movement of gliding
235
00:18:20,330 --> 00:18:25,890
between the tarsal and carpal bones ุฅุฐุง ุจุชุฐูุฑูุง ูู
236
00:18:25,890 --> 00:18:29,910
ุงููinternet ุจูููููุง ูู ุนูุฏูุง two rows of carpal bones ุงูู
237
00:18:29,910 --> 00:18:33,030
proximal row ู ุงูู distal row ุงูู movement ู
ุง ุจูููู
238
00:18:33,030 --> 00:18:37,690
ุจุชููู ููุท gliding ุจุณ ุฅุฒุงุญุฉ ุนู
ููุฉ ุฅุฒุงุญุฉ ุฃู
ุง ุงูู
239
00:18:37,690 --> 00:18:44,750
hinge joint ููู ุนุจุงุฑุฉ ุนู ุงูู elbow and knee ููู
ุงู
240
00:18:44,750 --> 00:18:48,450
between the phalanges ุฃู ุงูู interphalangeal joints
241
00:18:50,030 --> 00:18:53,350
ุทุจุนุง ุงูุดูุก ุงููู ุจูุญุฏุฏ ุงูุญุฑูุฉ ูููุง ุดูู ุงูู
ูุตู
242
00:18:53,350 --> 00:18:56,610
ุชุฎูููุง ุดูู ุงูู
ูุตู ุญุณุจ ุงูุตูุฑุฉ ุจููุงูู ุฃู ุดูู ุงูู
ูุตู
243
00:18:56,610 --> 00:19:01,550
ู
ุง ุจูุณู
ุญ ุฅูุง ุจุญุฑูุฉ ุจูุฐุง ุงูุงุชุฌุงู ุฃู
ุง ุงูู pivot ููู
244
00:19:01,550 --> 00:19:06,290
ุนุจุงุฑุฉ ุนู ุญุฑูุฉ ุฏูุฑุงู ุญูุงูู ู
ุญูุฑ ุงูุญุฑูุฉ ูุฐู ุฅุฐุง ู
ุง
245
00:19:06,290 --> 00:19:09,670
ุงุชุฐูุฑ ูู
ุง ุงุชููู
ูุง ุนู ุงูู Atlas ู ุงูู Axis ุงููู ูู
ุง
246
00:19:09,670 --> 00:19:14,090
ุงูู first and second cervical vertebrae ููููุง ุงูู
247
00:19:14,090 --> 00:19:18,470
Axis ููู ุฅููุง ุงูู Odontoid process ูุฐู process
248
00:19:18,470 --> 00:19:23,910
ู
ูุฌูุฏุฉ ูู ุงููุชุญุฉ ุฃู ูู ุงูู foramen ูู ุงูู Axis ูุฃู ูู
ุง
249
00:19:23,910 --> 00:19:28,290
ูุงูุช ุฃุดูุงููู
ูุงูุช ู
ุฎุชููุฉ ุฅุฐุง ุจุชุฐูุฑูุง ูุฅููุง ุจุชุณู
ุญ
250
00:19:28,290 --> 00:19:35,980
ุจุญุฑูุฉ ุงูู rotation ูุฐู ุจุชุดูู pivot joint ุฃู
ุง ุงูู
251
00:19:35,980 --> 00:19:41,040
ุงูุฌูู ูู ุนุงู
ู ุฒู ุญุฏูุซ ุงููุฑุณ ุฃู ุฒู ุณุฑุฌ ุงูุญุตุงู ุชู
ุงู
ุ
252
00:19:41,040 --> 00:19:48,400
ูุฐุง ุจูุณู
ุญ ุจุญุฑูุฉ ุจุฑุถู ุจูู ุฃูุซุฑ ู
ู axis ุงุญูุง ุจููุงุญุธ
253
00:19:48,400 --> 00:19:51,840
ุฃู ุงูู thumb flexion, extension, abduction, adduction
254
00:19:51,840 --> 00:19:55,320
ูุญุงุฌุฉ ุจูุณู
ููุง opposition opposition ูุนูู ุญุฑูุฉ
255
00:19:55,320 --> 00:19:58,460
ุฏูุฑุงู ุงููู ุงุญูุง ุญููุฉ ุงูุชุณุจูุญ ูุฐู ูุง ุฌู
ุงุนุฉ ุฅุฐุง
256
00:19:58,460 --> 00:20:02,970
ุงูุชูุง ูุนูู ุจุชุณุจุญูุง ุงูุญุฑูุฉ ุงูุชุณุจุญ ูู ุนุจุงุฑุฉ ุนู
257
00:20:02,970 --> 00:20:08,670
opposition of the metacarpophalangeal joint of the
258
00:20:08,670 --> 00:20:09,470
thumb
259
00:20:15,620 --> 00:20:20,480
ููุง ุฅุฐุง ุงุญูุง ุดุงูููู ูู ุงูู slide ูุฐู ุงูุญุฑูุฉ ุงูู
260
00:20:20,480 --> 00:20:25,020
planar joints between the navicular and the second
261
000:20:25,020 --> 00:20:29,840
and third cuneiform of the tarsal bones ูุฌุฏ ุฃู
262
00:20:29,840 --> 00:20:33,940
ุงูุฑุณู
ุฃูู ููู ู
ูุงุตู ููู ุงูุญุฑูุฉ ูููู
ุจุณูุทุฉ ุจุชุตูุฑ
263
00:20:33,940 --> 00:20:37,040
ุฃุซูุงุก ุงูู weight bearing ู ุงูู
ุดู
264
00:20:39,400 --> 00:20:43,580
ููุชููู
ูุง ุนู ุงูู Stability ูุงุญูุง ุจู .. ูุนูู ุงูุฑุณู
265
00:20:43,580 --> 00:20:46,800
ุงูุชูุถูุญู ุงููู ู
ูุฌูุฏ ูุงุญูุง ุจูุนุฑู ูุงุนุฏุฉ ุฃุณุงุณูุฉ ูู
266
00:20:46,800 --> 00:20:49,040
ุงูู Biomechanics ุฅุฐุง ูู ุญุฏุง ู
ููุง ุฏุฑุณ ุงูู
267
00:20:49,040 --> 00:20:54,040
Biomechanics ุฃูู ูู ู
ุง ูุงู ุงูุฌุณู
mobile ุฃูุซุฑ ูู ู
ุง
268
00:20:54,040 --> 00:20:58,540
ููุช ุงูู Stability ุจู
ุนูู ุฃูู ูู ุชูุงุณุจ ุนูุณู ุจูู ุงูู
269
00:20:58,540 --> 00:21:04,380
mobility ู ุงูู stability ูู ู
ุง ูุงู ุงูุฌุณู
270
00:21:05,590 --> 00:21:09,730
ุฃูู ุญุฑูุฉ ุฃู ุญุฑูุชู ุฃูู ููู ู
ุง ูุงูุช stability ุชุจุนุชู
271
00:21:09,730 --> 00:21:13,810
ุฃุนูู ููู ุชุฏุฑุฌูุง ุจุงูู
ูุงุตู ุจููุงูู ุงูู
ูุงุตู ูู ุฌุณู
272
00:21:13,810 --> 00:21:18,130
ุงูุฅูุณุงู ุจุชุจุฏุฃ ู
ู ุงูุฃูู stability ูุฃูุซุฑูู
273
00:21:18,130 --> 00:21:22,470
mobility ูู ุงูู shoulder joint ูุฃู ุจูุนู
ู 180 flexion
274
00:21:22,470 --> 00:21:28,550
ู 180 abduction ูุจูุงุฎุฏ ุญุฑูุฉ ุงูู rotation ุจุชูุตู ูู 90
275
00:21:30,140 --> 00:21:35,320
ููู ููุณ stable ููู
ุงู ุดูู ุงูู
ูุตู ูู ุจูููู ูุนูู ุจู
276
00:21:35,320 --> 00:21:38,320
.. ูุนูู ุดูู ุงูู
ูุตู ููุณู ุฃูู ู
ุงููุด ููู congruency
277
00:21:38,320 --> 00:21:41,940
ูุซูุฑ ู
ุงููุด ููู ุชุทุงุจู ูุซูุฑ ูุจูุญุชุงุฌ ูุจุงุฏู ูุซูุฑ ูู
278
00:21:41,940 --> 00:21:47,280
ุญุงุฌุฉ ุงุณู
ูุง labrum ุญูุงููู ุงูู glenoid cavity ูู ุงููุชู
279
00:21:47,280 --> 00:21:51,100
ุจุชุณุงุนุฏ ุนูู ุงูู congruence ููู ุฃูู stable ูู
ุงู ุงูู
280
00:21:51,100 --> 00:21:55,260
hip ูู ูุนูู ุงูู stability ุงููู ุจูุณุชู
ุฏูุง ู
ู ูู
ูุฉ ุงูู
281
00:21:55,260 --> 00:21:59,600
ligaments ุงููู ู
ูุฌูุฏุฉ ุนููู ููู ูู ูู
ุงู less stable
282
00:21:59,600 --> 00:22:06,320
ุฌูู ุงูููุจู ุจูุชุฏุฑุฌ ูู ุจูุฑูุญ ูุงุญูุฉ ุงูู stability ุฃูุซุฑ
283
00:22:06,320 --> 00:22:10,700
ููููุง ุงูู amphiarthrosis joints ุฒู ุงูู intervertebral
284
00:22:10,700 --> 00:22:13,920
ุงููู ูุนุชุจุฑ stable ูู
ุงู ุฃูุซุฑ ูู
ุง ุงูุฃูุซุฑ ุงุณุชูุฑุงุฑุง
285
00:22:13,920 --> 00:22:16,380
ุงููู ูู ุงูุฃูู ุญุฑูุฉ ุงููู ู
ุงููุด ููู movement
286
00:22:16,380 --> 00:22:20,260
ุฒู ุงูู sutures of the skull ุทุจ ุฃูู ุฏู ุงูู type of
287
00:22:20,260 --> 00:22:25,670
movementุ ุงูู type of movement ููุง ุฃูุง ุดุฑุญุชูุง ูุจู
288
00:22:25,670 --> 00:22:28,390
ุดููุฉ ูุฃูุง ูุงููุฉ ุฃููู ุฃู ูู ุนูุฏูุง abduction ู
289
00:22:28,390 --> 00:22:32,110
adduction ูู ุนูุฏูุง dorsiflexion ู plantar flexion
290
00:22:32,110 --> 00:22:37,270
ูู
ุง ุจูุชููู
ุนู ุงููุฏู
ุจูุชููู
ุนู dorsiflexion ุงููู
291
00:22:37,270 --> 00:22:40,530
ูู flexion and extension plantar ุงููู ุฃูุง ุจุฑูุญ
292
00:22:40,530 --> 00:22:45,830
ุจู ุฑุฌูู ูุงุญูุฉ ุงูู plantar surface of the foot ููู
293
00:22:45,830 --> 00:22:51,980
ุนูุฏูุง flexion ู extension ู hyperextension ูู
ุงู ูู
294
00:22:51,980 --> 00:22:55,400
ุนูุฏูุง ุงูู rotation ู circumduction ููู ุฏู ูุถุญูุง
295
00:22:55,400 --> 00:23:01,820
ุงุญูุง ูู
ุง ููุง ุจูุชููู
ุนู ุฃููุงุน ุงูู
ูุงุตู ุงูู uniaxial ู
296
00:23:01,820 --> 00:23:04,340
ุงูู multiaxial ุฃู ุงูู biaxial
297
00:23:07,170 --> 00:23:09,950
ูู ุนูุฏูุง ุญุฑูุฉ ุงูู rotation ููู ุนูุฏูุง ุงูู
298
00:23:09,950 --> 00:23:13,590
circumduction ููู ูู
ุงู ุญุฑูุฉ ูููุง supination ู
299
00:23:13,590 --> 00:23:19,070
pronation ูุฐู ู
ุชู
ุซูุฉ ูู ุงูู radioulnar joints
300
00:23:19,070 --> 00:23:24,670
ูู ุนูุฏูุง ุญุฑูุงุช ูู ุงููุฏู
ูู ุนุจุงุฑุฉ ุนู ุงูู eversion ู
301
00:23:24,670 --> 00:23:25,650
ุงูู inversion ูุฐู
302
00:23:25,650 --> 00:23:46,670
ุจุงููุฏู
๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ๏ปฟ
303
00:23:47,240 --> 00:23:50,320
ุงูู head of the humerus ู ุงูู glenoid cavity ุงููู
304
00:23:50,320 --> 00:23:53,620
ู
ูุฌูุฏุฉ ูู ุงูู scapula ุงููู ูู ุนุจุงุฑุฉ ุนู ball and
305
00:23:53,620 --> 00:23:58,300
socket ููู ูุฑุฉ ููู ุฌูู ูู loose joint capsule
306
00:23:58,300 --> 00:24:02,620
ุนุดุงู ููู ูู ุนูุฏูุง ูู mostly free joint ุฃู freely
307
00:24:02,620 --> 00:24:06,640
movable joint ููู ุนูุฏูุง bursae ุนุดุงู ุจุชุนู
ู
308
00:24:06,640 --> 00:24:13,260
ู
ุฎูุฏูุงุช ุฃู ุจุชู
ูุน ุงูุงุญุชูุงู ู
ุง ุจูู ุงูุนุถูุงุช
309
00:24:13,260 --> 00:24:17,930
ุงููู ูู ุจุชููู
ุจุงูุญุฑูุฉ ูู ูุฐุง ุงูู
ูุงู ูุทุจุนุง ุงูู
310
00:24:17,930 --> 00:24:22,250
ligaments ูุธููุชูุง ุฃููุง ุชููู ู
ู ุงูู risk of
311
00:24:22,250 --> 00:24:25,770
displacement ู ุชู
ุณู ุงูู two ends of bones ูุฏูู ูู
312
00:24:25,770 --> 00:24:31,870
ุงูู
ูุงู ููู ุทุจุนุง very movable joint ุฃู
ุง ุงูู
313
00:24:31,870 --> 00:24:39,590
shoulder joint ุทุจุนุง ูู ุนูุฏูุง ุญุงุฌุฉ ..
314
00:24:43,630 --> 00:24:49,590
ุงูู shoulder joint ูู ุนุจุงุฑุฉ ุนู ู
ูุตู ู
ุญุงุท ุจุงูุนุฏูุฏ ู
ู ุงูู
315
00:24:49,590 --> 00:24:54,070
ligaments ุญุชู ุชุณุงุนุฏ ุนูู ุญู
ุงูุฉ ูุฐุง ุงูู
ูุตู ู
ู
316
00:24:54,070 --> 00:24:57,590
ุงูุฒูุงุบุงุช ููู ุชูุฑูุจุง ู
ู ุฃูุซุฑ ุงูู
ูุงุตู ู
ู
ูู ูููู ู
ุนุฑุถ
317
00:24:57,590 --> 00:25:04,230
ูู dislocation ูุชูุฌุฉ ุญูุงุฏุซ ุงูุทุฑู ู
ู
ูู ุดุฏ ูุนูู ู
ู
ูู
318
00:25:04,230 --> 00:25:06,950
ุทูู ุตุบูุฑ ุจุณ ู
ุฌุฑุฏ ุจูู
ุณูู ู
ู ุฃูุฏูู ูููู ูุฑูุญ ูุญุตู
319
00:25:06,950 --> 00:25:09,650
ุนูุฏู ููุชูู ูุญุชุงุฌ ุฅูู reduction ูุจูุดูู ุฃู
320
00:25:09,650 --> 00:25:13,790
ุงููุงุนุจูู ุงููู ุจู
ุตุงุฑุนุฉ ุชุนุฑุถูุง ูุซูุฑ ูู shoulder
321
00:25:13,790 --> 00:25:18,970
dislocation ูุฃูู ููุณ stable joint ููู ุทุจุนุง
322
00:25:18,970 --> 00:25:24,570
ู
ุญุงุท ุจุนุฏุฏ ู
ู ุงูู ligaments ู ุงูู bursae ูุบูุฑู ุฃู
ุง ุงูู
323
00:25:24,570 --> 00:25:32,970
ุงูู elbow joint ููู ู
ูุตู ูููู ู
ู ุงูู humerus ุงูู humerus
324
00:25:32,970 --> 00:25:37,930
ุงูู lower end of humerus ูููุง trochlea ูุงูู upper
325
00:25:37,930 --> 00:25:42,780
end of humerus ูููุง ุงููู ุงุณู
ูุง capitulum ุทุจุนุง ูููุง
326
00:25:42,780 --> 00:25:45,780
ุฃู ุขุฎุฑ ุงูู
ุฌู
ูุนุงุช ุงูู
ูุฌูุฏุฉ radial joint ู
ูุฌูุฏ ุจูู
327
00:25:45,780 --> 00:25:50,080
ุงูู capitulum ูุงูู
ูุงู ุงูู
ุฎุตุต ููู head of radius ุนูู
328
00:25:50,080 --> 00:25:55,980
ุงูู humerus ุทุจุนุง ุจูุณู
ุญ ุจุงูุญุฑูุฉ ูู one axis ูู
329
00:25:55,980 --> 00:26:01,580
ุณุทุญ ุงููู ุญูู ู ุฎููููุง ูููู frontal axis ูู
330
00:26:01,580 --> 00:26:06,380
flexion and extension ู ู
ูู reinforcing ู
ูู
331
00:26:06,380 --> 00:26:09,920
reinforcing ligaments ููู stable joint ููุด stable
332
00:26:09,920 --> 00:26:14,150
ูุฃูู less movable ููุณ ู
ุณุชูุฑุง ูุฃู ุงูุญุฑูุฉ ููู
333
00:26:14,150 --> 00:26:17,830
ููููุฉ ูู
ุญุงุท ุจุงูุนุฏูุฏ ู
ู ุงูู ligaments ู ุงูู articular
334
00:26:17,830 --> 00:26:25,460
surfaces ุชุจุนุชู ูููุง congruency ุทุจุนุง ูุฐุง ุดูู ุงูู
335
00:26:25,460 --> 00:26:30,220
elbow joint ูู ูู ุนูุฏูุง ูู ุงูู humerus ููู ุงูู head
336
00:26:30,220 --> 00:26:34,180
of radius ููู ู
ุญุงุทุฉ ูู ุงูู annular ligament ุนุดุงู
337
00:26:34,180 --> 00:26:36,400
ูุจูู ุงูู head of radius ูุซูุฑ ู
ู ุงูุฃุทูุงู ูู
ุง ูุฌูุจ
338
00:26:36,400 --> 00:26:38,720
ููุดุฏูู
ููู
ุณููู
ู
ู ุฃูุฏููู
ุจุชูุงูู ุจุชุทูุน ุงูู head of
339
00:26:38,720 --> 00:26:43,060
radius ู
ู ุงูู annular ligament ููุฐุง ุจูุนู
ู ููู
ุฃูู
340
00:26:43,060 --> 00:26:47,020
ุจูุญุชุงุฌ ุฃูู ูุนู
ููู
ุญุฑูุฉ ุฎูููุฉ ุนุดุงู ูุฑุฌุน ุงูู
ูุตู ูุทุจุนุง
341
00:26:47,020 --> 00:26:50,040
ุนูู ุฌุงูุจู ุงูู
ูุตู ูู ุนูุฏูุง radial collateral
342
00:26:50,040 --> 00:26:55,510
ligament ูุงูู .. ู ุงูู .. ุงูู ulnar collateral
343
00:26:55,510 --> 00:26:58,730
ligament ูุญู
ุงูุฉ ูุฐุง ุงูู
ูุตู
344
00:27:00,880 --> 00:27:04,580
ุฃู
ุง ุงูู hip joint ุทุจุนุง ูุฐุง ู
ู ุงูู joints ุงููุจูุฑุฉ ู
345
00:27:04,580 --> 00:27:07,860
ุงููู ุจุชุชุญู
ู weight bearing ุทุจุนุง ูุซูุฑ ููู ball and
346
00:27:07,860 --> 00:27:12,480
socket ุจุชููู ู
ู ุงูู head of femur ู ุงูู acetabulum
347
00:27:12,480 --> 00:27:17,000
of the pelvis ุงููู ู
ูุฌูุฏุฉ ู
ู ุงูู .. ุงูู pelvic bone ูู
348
00:27:17,000 --> 00:27:21,320
heavy joint capsule ูุฃูู ุจูุชุญู
ู weight bearing ูู
349
00:27:21,320 --> 00:27:25,540
ูุฒู ุงูุฌุณู
ุจูููู ู
ุญู
ู ุนูู ุงูู two hips ุนุดุงู ููู
350
00:27:25,540 --> 00:27:30,600
ุจุชุญุชุงุฌ ุฅูู ุงููุซูุฑ ู
ู ุงูุญู
ุงูุฉ ุทุจุนุง ุงูู reinforcement
351
00:27:30,600 --> 00:27:35,400
ุจุชุฌู ู
ู ุงูู ligaments ูุทุจุนุง ุงูู freedom ุฃูุซุฑ ู
ุด ุฃูู
352
00:27:35,400 --> 00:27:38,940
ููู ูู movement in three planes ูุนูู ุจูุนู
ู flexion,
353
00:27:39,040 --> 00:27:42,100
extension, hyperextension, abduction, adduction,
354
00:27:42,300 --> 00:27:43,820
medial rotation, lateral rotation ู
355
00:27:43,820 --> 00:27:44,720
circumduction
356
00:27:46,880 --> 00:27:50,100
ุญูููุง ุฃูู ball and socket ูุจูุนู
ู movement in the
357
00:27:50,100 --> 00:27:53,080
three planes ุทุจุนุง ูู ุนูุฏูุง ุงูุนุฏูุฏ ู
ู ุงูู ligaments ุงุญูุง
358
00:27:53,080 --> 00:27:56,780
ุนุงุฑููู ุฃู ุนุธุงู
ุงูุญูุถ ุนุจุงุฑุฉ ุนู ุงูู ilium ู ุงูู
359
00:27:56,780 --> 00:28:00,500
ischium ู ุงูู pubis ุฏู ุงููู ุงุญูุง ุดุงููููู ููุง ููุงุฒู
ุฃูู
360
00:28:00,500 --> 00:28:06,030
ุจูููู ูู ุนูุฏูุง ligaments ุจุชุฑุจุท ุงูู femur ู
ุน ูุฏูู
361
00:28:06,030 --> 00:28:09,750
ุงูุนุธุงู
ูุจูุดูู ููุง ู
ุชุดุงุจูุฉ ูุจุฌุงูุจ ุฃู ูู
362
00:28:09,750 --> 00:28:13,970
ู
ูุงู ูุงู ู
ูุฌูุฏ ุฏุงุฎู ู
ู ุงูู head ููุณู ุฅูู ุงูู
363
00:28:13,970 --> 00:28:18,190
acetabulum ูุฐุง ุนุงู
ู ุฒู ูุฃูู ุฒู ู
ุณู
ุงุฑ ูุฏู ุจุณ ูู ุฑุจุงุท
364
00:28:18,190 --> 00:28:24,860
ู
ูู ุทุจุนุง ู
ูุฌูุฏ ุจูุฑุจุท ุงูู head ู
ุน ุงูู acetabulum ู
365
00:28:24,860 --> 00:28:30,980
ุญูุงููู ูู ุงูู iliofemoral ligament ููู ุงูู ischiofemoral
366
00:28:30,980 --> 00:28:35,340
ligament ููู ุงูู pubofemoral ligament ููุฏูู ligaments
367
00:28:35,340 --> 00:28:41,480
ูููุฉ ุฌุฏุง ู
ู ูู dense tissue ุทุจุนุง dense
368
00:28:41,480 --> 00:28:45,780
fibrous tissue ุนุดุงู ุชุณุงุนุฏ ูู ุงูู stability ุฃู
ุง
369
00:28:45,780 --> 00:28:48,640
ุงูู knee joint ุจุชููููุง ูู most complex joint ู ุงูู
370
00:28:48,640 --> 00:28:53,480
largest joint of the body ุทุจุนุง ุจูุญู
ู ูุฒู ุฃูุซุฑ ูู
ุงู
371
00:28:53,480 --> 00:28:56,520
ู
ู ุงููุฒู ุงููู ุจูุญู
ูู ุงูู head ูุฃู ูู ุจูุงุฎุฏ ูุฒู
372
00:28:56,520 --> 00:29:01,440
ุงูุฌุณู
ููู ุงูุฌุฒุก ุงูุณููู ููู ูู ุนูุฏูุง medial ู lateral
373
00:29:01,440 --> 00:29:05,940
condyle of the femur ูู ู
ุฑุถ ุชูุชุญู
ุงูู medial ู
374
00:29:05,940 --> 00:29:10,480
lateral condyles of the proximal end of the tibia
375
00:29:10,480 --> 00:29:14,360
,femur articulates anteriorly with ุงูุนุธู
ุฉ ุงูุณุงููุฉ
376
00:29:14,360 --> 00:29:18,420
ุงููู ุจูุณู
ููุง ุงูุดุธูุฉ ุงููู ูู tibia,modified
377
00:29:18,420 --> 00:29:21,700
hinge joint ุทุจุนุง ููุด modified ูุฃูู ุจูุณู
ุญ
378
00:29:21,700 --> 00:29:24,930
ุจู flexion, extension ู ุงููููู ู
ู ุงูู rotation ููู
379
00:29:24,930 --> 00:29:28,310
flexion position ุทุจุนุง strengthened by many
380
00:29:28,310 --> 00:29:32,810
ligaments ู ุงูู menisci ุงููู ูู ุงูู menisci ุนุจุงุฑุฉ
381
00:29:32,810 --> 00:29:35,910
ุนู ุงูู
ุฎุฏุงุช ุงูู
ูุฌูุฏุฉ ูู ุงูู
ูุตู ุนุดุงู ุชุณุงุนุฏ ุงูู
382
00:29:35,910 --> 00:29:39,650
congruence ูู ุงูู
ูุตู ูุชุณุงุนุฏ ุนูู ุงูู stability ู
383
00:29:39,650 --> 00:29:43,290
many ligaments ุฒู ู
ุง ุงุญูุง ุดุงูููู ุนุดุงู ุชุณูู ุนู
ููุฉ
384
00:29:43,290 --> 00:29:48,270
ุงูุญุฑูุฉ ููู ุงูู movement ุชุจุนุชู ุจุชููู ูู ุงูู sagittal
385
00:29:48,270 --> 00:29:53,110
plane ุทุจุนุง ุงูู complexity ุจุชุฒูุฏ ู
ู ุนุฏุฏ ู
ู ุงูู
386
00:29:53,110 --> 00:29:56,750
ligaments ุงููู ู
ูุฌูุฏุฉุ ูู ุนูุฏูุง ุญุงุฌุฉ ุงุณู
ูุง ุฅูุฑุงุดูุฉ
387
00:29:56,750 --> 00:29:59,350
ูู ุงูู ligamentsุ ูู ุนูุฏูุง two menisci medial ู
388
00:29:59,350 --> 00:30:01,830
lateralุ ูู ุนูุฏูุง ุงูู lateral collateral ligamentุ
389
00:30:01,830 --> 00:30:05,700
ูู ุนูุฏูุง ุงูู medial collateral ligament ู ุงูู
390
00:30:05,700 --> 00:30:09,500
ุงูู fibular ุทุจุนุง ุงูู fibular ุนูู ูุงุญูุฉ ุงูู fibula
391
00:30:09,500 --> 00:30:13,400
ุงูู lateral ูุงูู medial collateral ligament ูู ุนูู
392
00:30:13,400 --> 00:30:16,880
ุงูู tibia ุจูุณู
ูู tibial collateral ligament ูุฐู ูููุง
393
00:30:16,880 --> 00:30:22,280
ุงูู .. ุงูู .. ุงูู ligaments ูุชุณุงุนุฏ ุนูู ุงูู stability
394
00:30:22,280 --> 00:30:27,820
of the knee joint ู ุชุณู
ุญ ุทุจุนุง ุจุงูุญุฑูุฉ ุงูุชุบูุฑุงุช ุงููู
395
00:30:27,820 --> 00:30:31,580
ุจุชุตูุฑ joint stiffness ุฏุงุฆู
ุง ูู early sign of
396
00:30:31,580 --> 00:30:34,520
aging ุจุชุจูู ุฃู ุงูู flexibility ุจุชุงุนุช ุงูุฌูุงูุช
397
00:30:34,520 --> 00:30:37,600
ุจุชููุ ุงูู fibrous tissues ุทุจุนุง ุฃูู ุญุงุฌุฉ ุจุชุตูุฑ
398
00:30:37,600 --> 00:30:42,980
strengthening ูุฃููุง ุจุชูู ู
ุฑููุชูุง ุทุจุนุง ูู ุงูู
399
00:30:42,980 --> 00:30:46,630
synovial joints ู ุงูู vertebral column ูููุง
400
00:30:46,630 --> 00:30:49,470
ุจุชุตูุฑ diminished flexibility ู
445
00:34:02,140 --> 00:34:08,340
ุนูู ุงูู
ูุงุตู ููุฐู ุชูุฑูุจุงู ุงูุตูุฑุฉ ูุจุนุฏ ุงูู
ูุงุตู ุงูุชู
446
00:34:08,340 --> 00:34:11,950
ู
ู
ูู ุชูููุ ูุนูู ุงููุฑู ุจูู ุงูู normal joints ู ุจูู ุงูู
447
00:34:11,950 --> 00:34:16,190
osteoarthritic joints. ูุฅุญูุง ูู ููุงูุฉ ู
ุญุงุถุฑุชูุง
448
00:34:16,190 --> 00:34:19,710
ููููู
ุ ุฅุญูุง ุงุชููู
ูุง ูููุง ุนู ุงูู articulations ุฃู ุงูู
449
00:34:19,710 --> 00:34:22,750
joints of the... of the bodyุ ููููุง ุชุนุฑูููุง ุนูู
450
00:34:22,750 --> 00:34:27,830
ุฃูู
ูุชูุงุ ููู
ุงู ุนูู ุฃููุงุนูุงุ ูุนุฑููุง ุงููุฑู ุจูู ุงูู
451
00:34:27,830 --> 00:34:31,930
uniaxial ูุงูู biaxial ูุงูู multiaxial jointsุ ู
452
00:34:31,930 --> 00:34:36,150
ุนุฑููุง ุฃู ุฃูู
ุดูุก ุฃูู ุงู... ุงู... ุงู... ุงู...
453
00:34:36,150 --> 00:34:40,530
ุงูุชูุงุณุจ ุงูุนูุณู ู
ุง ุจูู ุงูู mobility and stability of
454
00:34:40,530 --> 00:34:43,710
the jointsุ ูุฅู ุดุงุก ุงููู ูู ุงูู
ุญุงุถุฑุฉ ุงููุงุฏู
ุฉ ููููู
455
00:34:43,710 --> 00:34:46,390
ู
ูุถูุนูุง ุนู ุงูู nervous system. ููู
ุ ุฅู ุดุงุก ุงูููุ ูู
456
00:34:46,390 --> 00:34:47,250
ุงูู
ุญุงุถุฑุฉ ุงููุงุฏู
ุฉ.
|