File size: 292,036 Bytes
1e321b4 | 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 1456 | -,ꢂ,ꢂꢒ꣄ꢒꢬꣁꢓꢳ꣄ꢳꢿ,sourashtra,,,'ꢂꢒꢒꢬꢓꢳꢳ':1 'akkarokhalle':2 'akkarŏkhalle':3 'get':4 'interested':5 'interest':6 'அக':7 'கற':8,action|compound,अक्करा॑ खळ्ळे|அக்கரொ க2ள்ளே|akkaro'khal'l'e|akkarOkhaLLe|akkarŏkhal̤l̤e|əkkəɾokʰəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get interested,english,,english,,action|compound,,verb,
^,,அக்கறைகொள்,tamil,,tamil,'அககறகள':1 'get':2 'interested':3 'interest':4 'அக':5 'கற':6,action|compound,அக்கரொ க2ள்ளே,verb,
-,ꢂ,ꢂꢨ꣄ꢨꢶꢥꢶ ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢨꢨꢥꢦꢜ':1 'abbinipot':2 'abbinipoṭ':3 'caught':4 'catch':5 'அகப':6 'பட':7,action|compound,अब्बिनि पोट|அப்3பி3னிபோட்|abbini pot'|abbini poT|abbini poṭ|əbbɪn̪ɪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be caught,english,,english,,action|compound,,verb,
^,,அகப்படு,tamil,,tamil,'அகபபட':1 'caught':2 'catch':3 'அகப':4 'பட':5,action|compound,அப்3பி3னிபோட்,verb,
-,ꢤ,ꢤꢒ꣄ꢒꢶ ꢬꢴꢵ,sourashtra,,,'ꢤꢒꢒꢬ':1 'dhakkirhaa':2 'dhakkirha':3 'dhakkirhā':4 'afraid':5 'அச':6 'சப':7 'பட':8,action|compound,धक्कि र्हा|த4க்கி ரா:|dhakki rhaa|dhakki rhA|dhakki rhā|d̪ʰəkkɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be afraid of,english,,english,,action|compound,,verb,
^,,அச்சப்படு,tamil,,tamil,'அசசபபட':1 'afraid':2 'அச':3 'சப':4 'பட':5,action|compound,த4க்கி ரா:,verb,
-,ꢤ,ꢤꢒ꣄ꢒꢵꢜ꣄,sourashtra,,,'ꢤꢒꢒꢜ':1 'dhakkaat':2 'dhakkat':3 'dhakkāṭ':4 'horrify':5 'அச':6 'சம':7,action|compound,दक्काट|த4க்காட்|dhakkaat'|dhakkAT|dhakkāṭ|d̪ʰəkkɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,horrify,english,,english,,action|compound,,verb,
^,,அச்சமூட்டு,tamil,,tamil,'அசசமடட':1 'horrify':2 'அச':3 'சம':4,action|compound,த4க்காட்,verb,
-,ꢂ,ꢂꢗ꣄ꢗꢸ ꢡꢵꢫ꣄,sourashtra,,,'ꢂꢗꢗꢡꢫ':1 'achchutaay':2 'accutay':3 'accutāy':4 'print':5 'அச':6,action|compound,अच्चु ताय|அச்சு தாய்|achchu taay|accu tAy|accu tāy|ət͡ʃt͡ʃu t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,print,english,,english,,action|compound,,verb,
^,,அச்சிடு,tamil,,tamil,'அசசட':1 'print':2 'அச':3,action|compound,அச்சு தாய்,verb,
-,ꢪ,ꢪꢸꢣ꣄ꢬꢶꢠꢶ ꢒꢾꢬ꣄,sourashtra,,,'ꢪꢣꢬꢠꢒꢬ':1 'mudriniker':2 'mudriṇikĕr':3 'print':4 'அச':5,action|compound,मुद्रणि केर|முத்3ரிணி கேர்|mudrini ke'r|mudriNi kEr|mudriṇi kĕr|mud̪ɾɪɳɪ keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,print,english,,english,,action|compound,,verb,
^,,அச்சிடு,tamil,,tamil,'அசசட':1 'print':2 'அச':3,action|compound,முத்3ரிணி கேர்,verb,
-,ꢤ,ꢤꢵꢒ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢤꢒꢕꢭ':1 'dhaakghaal':2 'dhakghal':3 'dhākghāl':4 'terrify':5 'அச':6,action|compound,दाघ घाल|தா4க் கா4ல்|dhaak ghaal|dhAk ghAl|dhāk ghāl|d̪ʰɑːk gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,terrify,english,,english,,action|compound,,verb,
^,,அச்சுறுத்து,tamil,,tamil,'அசசறதத':1 'terrify':2 'அச':3,action|compound,தா4க் கா4ல்,verb,
-,ꢔ,ꢔꢵꢭꢸꢪ꣄ ꢢꣁꢮ꣄ꢭꢶ ꢭꢸꢨ꣄ꢨꢶ,sourashtra,,,'ꢔꢭꢪꢢꢮꢭꢭꢨꢨ':1 'gaalumthovlilubbi':2 'galumthovlilubbi':3 'gālumthŏvlilubbi':4 'ruminate':5 'chew':6 'அச':7,action|compound,गालुम थोव्लि लुब्बि|கா3லும் தொ2வ்லி லுப்3பி3|gaalum tho'vli lubbi|gAlum thOvli lubbi|gālum thŏvli lubbi|gɑːlum t̪ʰoʋlɪ lubbɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Ruminate/chew,english,,english,,action|compound,,verb,
^,,அசைபோடு,tamil,,tamil,'அசபட':1 'ruminate':2 'chew':3 'அச':4,action|compound,கா3லும் தொ2வ்லி லுப்3பி3,verb,
-,ꢆ,ꢆꢞ꣄ꢔꢞꢶ ꢢꣁꢮ꣄,sourashtra,,,'ꢆꢞꢔꢞꢢꢮ':1 'udgadithov':2 'uḍgaḍithŏv':3 'quell':4 'control':5 'அடக':6,action|compound,उड्गडि तोव|உட்3க3டி3 தோ2வ்|ud'gad'i tho'v|uDgaDi thOv|uḍgaḍi thŏv|uɖgəɖɪ t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Quell/ control,english,,english,,action|compound,,verb,
^,,அடக்கிவை,tamil,,tamil,'அடககவ':1 'quell':2 'control':3 'அடக':4,action|compound,உட்3க3டி3 தோ2வ்,verb,
-,ꢕ,ꢕꢵꢪ꣄ ꢭꢔꢳ꣄ꢳꢿ,sourashtra,,,'ꢕꢪꢭꢔꢳꢳ':1 'ghaamlagalle':2 'ghamlagalle':3 'ghāmlagalle':4 'get':5 'wounded':6 'wound':7 'அட':8 'பட':9,action|compound,घाम् लगळ्ळे|கா4ம் லக3ள்ளே|ghaam lagal'l'e|ghAm lagaLLe|ghām lagal̤l̤e|gʰɑːm ləgəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get wounded,english,,english,,action|compound,,verb,
^,,அடிபடு,tamil,,tamil,'அடபட':1 'get':2 'wounded':3 'wound':4 'அட':5 'பட':6,action|compound,கா4ம் லக3ள்ளே,verb,
-,ꢓ,ꢓꢵꢭ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢓꢭꢦꢜ':1 'khaalpot':2 'khalpot':3 'khālpoṭ':4 'become':5 'subordinate':6 'அட':7 'பண':8,action|compound,खाल्पोट्|கா2ல்போட்|khaal pot'|khAl poT|khāl poṭ|kʰɑːl poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become subordinate,english,,english,,action|compound,,verb,
^,,அடிபணி,tamil,,tamil,'அடபண':1 'become':2 'subordinate':3 'அட':4 'பண':5,action|compound,கா2ல்போட்,verb,
-,ꢨ,ꢨꢥ꣄ꢣꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢥꢣꢒꢬ':1 'bandiker':2 'enslave':3 'அட':4 'பட':5,action|compound,बन्दि केर|ப3ந்தி3கேர்|bandi ker|bandi ker|bandi ker|bən̪d̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,enslave,english,,english,,action|compound,,verb,
^,,அடிமைப்படுத்து,tamil,,tamil,'அடமபபடதத':1 'enslave':2 'அட':3 'பட':4,action|compound,ப3ந்தி3கேர்,verb,
-,ꢣ,ꢣꢵꢱ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢣꢱꢒꢬ':1 'daasker':2 'dasker':3 'dāsker':4 'enslave':5 'அட':6 'பட':7,action|compound,दास्केर|தா3ஸ் கேர்|daas ker|dAs ker|dās ker|d̪ɑːs̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,enslave,english,,english,,action|compound,,verb,
^,,அடிமைப்படுத்து,tamil,,tamil,'அடமபபடதத':1 'enslave':2 'அட':3 'பட':4,action|compound,தா3ஸ் கேர்,verb,
-,ꢲ,ꢲꢬꢸꢪ꣄ꢨꢪ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢬꢪꢨꢪꢒꢬ':1 'harumbamker':2 'set':3 'foot':4 'அட':5,action|compound,हरुम्बम केर|ஹரும்ப3ம்கேர்|harumbam ker|harumbam ker|harumbam ker|ɦəɾumbəm keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,set foot,english,,english,,action|compound,,verb,
^,,அடிவை,tamil,,tamil,'அடவ':1 'set':2 'foot':3 'அட':4,action|compound,ஹரும்ப3ம்கேர்,verb,
-,ꢦ,ꢦꢔꢸꢭ꣄ ꢢꣁꢮ꣄,sourashtra,,,'ꢦꢔꢭꢢꢮ':1 'pagulthov':2 'pagulthŏv':3 'set':4 'foot':5 'அட':6,action|compound,पगुल थोव|பகு3ல் தோ2வ்|pagul tho'v|pagul thOv|pagul thŏv|pəgul t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,set foot,english,,english,,action|compound,,verb,
^,,அடிவை,tamil,,tamil,'அடவ':1 'set':2 'foot':3 'அட':4,action|compound,பகு3ல் தோ2வ்,verb,
-,ꢙ,ꢙꢾꢡꣁꢒꢥꢶ ꢃꢮ꣄,sourashtra,,,'ꢙꢡꢒꢥꢃꢮ':1 'jetokaniaav':2 'jetokaniav':3 'jĕtŏkaniāv':4 'come':5 'ina':6 'group':7 'அண':8 'ரள':9,action|compound,जेता॑कनि आव|ஜெதொகனிஆவ்|je'to'kani aav|jEtOkani Av|jĕtŏkani āv|d͡ʒet̪okən̪ɪ ɑːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,come ina group,english,,english,,action|compound,,verb,
^,,அணிதிரள்,tamil,,tamil,'அணதரள':1 'come':2 'ina':3 'group':4 'அண':5 'ரள':6,action|compound,ஜெதொகனிஆவ்,verb,
-,ꢂ,ꢂꢡ꣄ꢒ꣄ꢫꢵꢬ ꣄ꢣꢿ,sourashtra,,,'ꢂꢡꢒꢫꢬꢣ':1 'atkyaarade':2 'atkyarade':3 'atkyārade':4 'empower':5 'அத':6 'ரம':7 'அள':8,action|compound,अत्क्यार्दे|அத்க்யார் தே3|atkyaara de|atkyAra de|atkyāra de|ət̪kjɑːɾə d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,empower,english,,english,,action|compound,,verb,
^,,அதிகாரம் அளி,tamil,,tamil,'அதகரமஅள':1 'empower':2 'அத':3 'ரம':4 'அள':5,action|compound,அத்க்யார் தே3,verb,
-,ꢨ,ꢨꢾꢣꢶꢬꢶ ꢦꣂꢜ꣄,sourashtra,,,'ꢨꢣꢬꢦꢜ':1 'bediripot':2 'bĕdiripoṭ':3 'shock':4 'அத':5 'யட':6,action|compound,ब॑दिरि पोट|பெ3தி3ரி போட்|be'diri pot'|bEdiri poT|bĕdiri poṭ|bed̪ɪɾɪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shock,english,,english,,action|compound,,verb,
^,,அதிர்ச்சியடை,tamil,,tamil,'அதரசசயட':1 'shock':2 'அத':3 'யட':4,action|compound,பெ3தி3ரி போட்,verb,
-,ꢨ,ꢨꢾꢣꢸꢬ꣄ ꢦꣁꢞꢵꢜ꣄,sourashtra,,,'ꢨꢣꢬꢦꢞꢜ':1 'bedurpodaat':2 'bedurpodat':3 'bĕdurpŏḍāṭ':4 'perplex':5 'அத':6,action|compound,ब॑दुर पा॑डाट|பெ3து3ர்பொடா3ட்|be'dur po'd'aat'|bEdur pODAT|bĕdur pŏḍāṭ|bed̪uɾ poɖɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,perplex,english,,english,,action|compound,,verb,
^,,அதிர்ச்சியூட்டு,tamil,,tamil,'அதரசசயடட':1 'perplex':2 'அத':3,action|compound,பெ3து3ர்பொடா3ட்,verb,
-,ꢲ,ꢲꢾꢞꢶ ꢡꢵꢫ꣄,sourashtra,,,'ꢲꢞꢡꢫ':1 'heditaay':2 'heditay':3 'hĕḍitāy':4 'remove':5 'அப':6 'றப':7 'பட':8,action|compound,ह॑डि ताय|ஹெடி3 தாய்|he'd'i taay|hEDi tAy|hĕḍi tāy|ɦeɖɪ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,remove,english,,english,,action|compound,,verb,
^,,அப்புறப்படுத்த்து,tamil,,tamil,'அபபறபபடததத':1 'remove':2 'அப':3 'றப':4 'பட':5,action|compound,ஹெடி3 தாய்,verb,
-,ꢱ,ꢱꢪꢵꢤꢵꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢤꢥꢒꢬ':1 'samaadhaanker':2 'samadhanker':3 'samādhānker':4 'pacify':5 'give':6 'solace':7 'அம':8 'பட':9,action|compound,समधान केर|ஸமாதா4ன்கேர்|samaadhaan ker|samAdhAn ker|samādhān ker|s̪əmɑːd̪ʰɑːn̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"pacify, give solace",english,,english,,action|compound,,verb,
^,,அமைதிப்படுத்து,tamil,,tamil,'அமதபபடதத':1 'pacify':2 'give':3 'solace':4 'அம':5 'பட':6,action|compound,ஸமாதா4ன்கேர்,verb,
-,ꢯ,ꢯꢵꢥ꣄ꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢯꢥꢡꢒꢬ':1 'shaantiker':2 'zantiker':3 'śāntiker':4 'pacify':5 'give':6 'solace':7 'அம':8 'பட':9,action|compound,शान्ति केर|ஶாந்தி கேர்|shaanti ker|zAnti ker|śānti ker|ʃɑːn̪t̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"pacify, give solace",english,,english,,action|compound,,verb,
^,,அமைதிப்படுத்து,tamil,,tamil,'அமதபபடதத':1 'pacify':2 'give':3 'solace':4 'அம':5 'பட':6,action|compound,ஶாந்தி கேர்,verb,
-,ꢱ,ꢱꢪꢵꢤꢵꢥ꣄ ꢲꣁ,sourashtra,,,'ꢱꢪꢤꢥꢲ':1 'samaadhaanho':2 'samadhanho':3 'samādhānhŏ':4 'pacified':5 'pacify':6 'அம':7 'யட':8,action|compound,समाधान हो|ஸமாதா4ன் ஹோ|samaadhaan ho'|samAdhAn hO|samādhān hŏ|s̪əmɑːd̪ʰɑːn̪ ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be pacified,english,,english,,action|compound,,verb,
^,,அமைதியடை,tamil,,tamil,'அமதயட':1 'pacified':2 'pacify':3 'அம':4 'யட':5,action|compound,ஸமாதா4ன் ஹோ,verb,
-,ꢂ,ꢂꢬ꣄ꢦꢠꣁ ꢒꢾꢬ꣄,sourashtra,,,'ꢂꢬꢦꢠꢒꢬ':1 'arpanoker':2 'arpaṇŏkĕr':3 'dedicate':4 'அர':5 'பண':6,action|compound,अर्पणा॑ केर|அர்பணொ கேர்|arpano' ke'r|arpaNO kEr|arpaṇŏ kĕr|əɾpəɳo keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,dedicate,english,,english,,action|compound,,verb,
^,,அர்ப்பணி,tamil,,tamil,'அரபபண':1 'dedicate':2 'அர':3 'பண':4,action|compound,அர்பணொ கேர்,verb,
-,ꢙ,ꢙꢭ꣄ꢦꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢙꢭꢦꢥꢒꢬ':1 'jalpanoker':2 'jalpanŏker':3 'chat':4 'leisurely':5 'அரட':6 'யட':7,action|compound,जल्पना॑ केर|ஜல்பனொ கேர்|jalpano' ker|jalpanO ker|jalpanŏ ker|d͡ʒəlpən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Chat leisurely,english,,english,,action|compound,,verb,
^,,அரட்டையடி,tamil,,tamil,'அரடடயட':1 'chat':2 'leisurely':3 'அரட':4 'யட':5,action|compound,ஜல்பனொ கேர்,verb,
-,ꢮ,ꢮꢶꢬ꣄ꢢꢵ ꢮꢡ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢬꢢꢮꢡꢡꢒꢬ':1 'virthaavattoker':2 'virthavattoker':3 'virthāvattŏker':4 'chat':5 'leisurely':6 'அரட':7 'யட':8,action|compound,विर्था वत्ता॑ केर|விர்தா2 வத்தொ கேர்|virthaa vatto' ker|virthA vattO ker|virthā vattŏ ker|ʋɪɾt̪ʰɑː ʋət̪t̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Chat leisurely,english,,english,,action|compound,,verb,
^,,அரட்டையடி,tamil,,tamil,'அரடடயட':1 'chat':2 'leisurely':3 'அரட':4 'யட':5,action|compound,விர்தா2 வத்தொ கேர்,verb,
-,ꢒ,ꢒꢾꢰ꣄ꢜꢪ꣄ꢦꢵꢜ꣄ꢦꣁꢜ꣄,sourashtra,,,'ꢒꢰꢜꢪꢦꢜꢦꢜ':1 'keshtampaatpot':2 'kestampatpot':3 'kĕṣṭampāṭpŏṭ':4 'work':5 'hard':6 'அர':7 'பட':8,action|compound,केष्टम्पाट्पोट|கெஷ்டம் பாட்போட்|ke'sht'ampaat'po't'|kESTampATpOT|kĕṣṭampāṭpŏṭ|keʂʈəmpɑːʈpoʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,work hard,english,,english,,action|compound,,verb,
^,,அரும்பாடுபடு,tamil,,tamil,'அரமபடபட':1 'work':2 'hard':3 'அர':4 'பட':5,action|compound,கெஷ்டம் பாட்போட்,verb,
-,ꢮ,ꢮꢾꢥ꣄ ꢒꢾꢰ꣄ꢜꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢮꢥꢒꢰꢜꢪꢦꢜ':1 'venkeshtampot':2 'venkestampot':3 'vĕnkĕṣṭampoṭ':4 'labour':5 'intensely':6 'அல':7,action|compound,वेन केष्टम्पोट|வேன் கெஷ்டம் போட்|ve'n ke'sht'am pot'|vEn kESTam poT|vĕn kĕṣṭam poṭ|ʋen̪ keʂʈəm poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,To labour intensely,english,,english,,action|compound,,verb,
^,,அல்லாடு,tamil,,tamil,'அலலட':1 'labour':2 'intensely':3 'அல':4,action|compound,வேன் கெஷ்டம் போட்,verb,
-,ꢱ,ꢱꢶꢖ꣄ꢔꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢖꢔꢬꢒꢬ':1 'singaarker':2 'siggarker':3 'siṅgārker':4 'decorate':5 'அலங':6 'ரம':7,action|compound,सिङ्गार् ꢒꢾꢬ꣄केर|ஸிங்கா3ர் கேர்|singaar ker|siGgAr ker|siṅgār ker|s̪ɪŋgɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,decorate,english,,english,,action|compound,,verb,
^,,அலங்காரம்செய்,tamil,,tamil,'அலஙகரமசய':1 'decorate':2 'அலங':3 'ரம':4,action|compound,ஸிங்கா3ர் கேர்,verb,
-,ꢂ,ꢂꢭꢖ꣄ꢒꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢂꢭꢖꢒꢬꢒꢬ':1 'alankaarker':2 'alagkarker':3 'alaṅkārker':4 'decorate':5 'அலங':6 'ரம':7,action|compound,अलङ्कार केर|அலங்கார் கேர்|alankaar ker|alaGkAr ker|alaṅkār ker|ələŋkɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,decorate,english,,english,,action|compound,,verb,
^,,அலங்காரம்செய்,tamil,,tamil,'அலஙகரமசய':1 'decorate':2 'அலங':3 'ரம':4,action|compound,அலங்கார் கேர்,verb,
-,ꢂ,ꢂꢮ꣄ꢱꢬ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢂꢮꢱꢬꢒꢬ':1 'avsarker':2 'hasten':3 'அவசரப':4 'பட':5,action|compound,अव्सर केर|அவ்ஸர்கேர்|avsarker|avsarker|avsarker|əʋs̪əɾkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hasten,english,,english,,action|compound,,verb,
^,,அவசரப்படுத்து,tamil,,tamil,'அவசரபபடதத':1 'hasten':2 'அவசரப':3 'பட':4,action|compound,அவ்ஸர்கேர்,verb,
-,ꢂ,ꢂꢮ꣄ꢱꢬ꣄ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢮꢱꢬꢦꢜ':1 'avsarpot':2 'avsarpoṭ':3 'hasten':4 'அவசரப':5 'பட':6,action|compound,अव्सर्पोट|அவ்ஸர்போட்|avsarpot'|avsarpoT|avsarpoṭ|əʋs̪əɾpoːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hasten,english,,english,,action|compound,,verb,
^,,அவசரப்படு,tamil,,tamil,'அவசரபபட':1 'hasten':2 'அவசரப':3 'பட':4,action|compound,அவ்ஸர்போட்,verb,
-,ꢂ,ꢂꢮ꣄ꢤꢶ ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢮꢤꢦꢜ':1 'avdhipot':2 'avdhipoṭ':3 'undergo':4 'agony':5 'அவத':6 'பட':7,action|compound,अव्धि पोट|அவ்தி4 போட்|avdhi pot'|avdhi poT|avdhi poṭ|əʋd̪ʰɪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Undergo agony,english,,english,,action|compound,,verb,
^,,அவதிப்படு,tamil,,tamil,'அவதபபட':1 'undergo':2 'agony':3 'அவத':4 'பட':5,action|compound,அவ்தி4 போட்,verb,
-,ꢥ,ꢥꢶꢪꢥ꣄ꢡ꣄ꢬꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢪꢥꢡꢬꢠꢒꢬ':1 'nimantranoker':2 'nimantraṇŏker':3 'invite':4 'அழ':5,action|compound,निमन्त्रणा॑ केर|நிமந்த்ரணொ கேர்|nimantrano' ker|nimantraNO ker|nimantraṇŏ ker|n̪ɪmən̪t̪ɾəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,invite,english,,english,,action|compound,,verb,
^,,அழைப்புவிடு,tamil,,tamil,'அழபபவட':1 'invite':2 'அழ':3,action|compound,நிமந்த்ரணொ கேர்,verb,
-,ꢨ,ꢨꣁꢮꢥ꣄ ꢤꢞ꣄ꢞꢿ,sourashtra,,,'ꢨꢮꢥꢤꢞꢞ':1 'bovandhadde':2 'bŏvandhaḍḍe':3 'invite':4 'அழ':5,action|compound,बोवन धड्डे|பொ3வன் த4ட்3டே3|bo'van dhad'd'e|bOvan dhaDDe|bŏvan dhaḍḍe|boʋən̪ d̪ʰəɖɖeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,invite,english,,english,,action|compound,,verb,
^,,அழைப்புவிடு,tamil,,tamil,'அழபபவட':1 'invite':2 'அழ':3,action|compound,பொ3வன் த4ட்3டே3,verb,
-,ꢦ,ꢦꢬꢶꢗꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢗꢫꢒꢬ':1 'parichayoker':2 'paricayoker':3 'paricayŏker':4 'introduce':5 'அற':6 'கப':7 'பட':8,action|compound,परिचया॑ केर|பரிசயொகேர்|parichayo' ker|paricayO ker|paricayŏ ker|pəɾɪt͡ʃəjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,introduce,english,,english,,action|compound,,verb,
^,,அறிமுகப்படுத்து,tamil,,tamil,'அறமகபபடதத':1 'introduce':2 'அற':3 'கப':4 'பட':5,action|compound,பரிசயொகேர்,verb,
-,ꢱ,ꢱꢶꢒ꣄ꢒꢞꢶ ꢣꢾ,sourashtra,,,'ꢱꢒꢒꢞꢣ':1 'sikkadide':2 'sikkaḍidĕ':3 'impart':4 'knowledge':5 'அற':6 'கட':7,action|compound,सिक्कडि दे|ஸிக்கடி3 தே3|sikkad'i de'|sikkaDi dE|sikkaḍi dĕ|s̪ɪkkəɖɪ d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Impart knowledge,english,,english,,action|compound,,verb,
^,,அறிவுபுகட்டு,tamil,,tamil,'அறவபகடட':1 'impart':2 'knowledge':3 'அற':4 'கட':5,action|compound,ஸிக்கடி3 தே3,verb,
-,ꢛ,ꢛꢵꢥ꣄ ꢣꢾ,sourashtra,,,'ꢛꢥꢣ':1 'nyaande':2 'jande':3 'ñāndĕ':4 'impart':5 'knowledge':6 'அற':7 'கட':8,action|compound,ञान दे|ஞான் தே3|nyaan de'|JAn dE|ñān dĕ|ɲɑːn̪ d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Impart knowledge,english,,english,,action|compound,,verb,
^,,அறிவுபுகட்டு,tamil,,tamil,'அறவபகடட':1 'impart':2 'knowledge':3 'அற':4 'கட':5,action|compound,ஞான் தே3,verb,
-,ꢦ,ꢦꢶꢒ꣄ꢒꢶꢥꢶ ꢒꢵꢜ꣄,sourashtra,,,'ꢦꢒꢒꢥꢒꢜ':1 'pikkinikaat':2 'pikkinikat':3 'pikkinikāṭ':4 'harvest':5 'அற':6 'வட':7,action|compound,प्क्किनि काट|பிக்கினி காட்|pikkini kaat'|pikkini kAT|pikkini kāṭ|pɪkkɪn̪ɪ kɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,harvest,english,,english,,action|compound,,verb,
^,,அறுவடைசெய்,tamil,,tamil,'அறவடசய':1 'harvest':2 'அற':3 'வட':4,action|compound,பிக்கினி காட்,verb,
-,ꢦ,ꢦꢷꢒ꣄ ꢒꢵꢜ꣄,sourashtra,,,'ꢦꢒꢒꢜ':1 'peekkaat':2 'pikkat':3 'pīkkāṭ':4 'harvest':5 'அற':6 'வட':7,action|compound,पीक काट|பீக் காட்|peek kaat'|pIk kAT|pīk kāṭ|piːk kɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,harvest,english,,english,,action|compound,,verb,
^,,அறுவடைசெய்,tamil,,tamil,'அறவடசய':1 'harvest':2 'அற':3 'வட':4,action|compound,பீக் காட்,verb,
-,ꢂ,ꢂꢥ꣄ꢫꣁ ꢲꣂ,sourashtra,,,'ꢂꢥꢫꢲ':1 'anyoho':2 'anyŏho':3 'get':4 'alienated':5 'alienate':6 'அன':7 'யம':8,action|compound,अन्या॑ हो|அன்யொஹோ|anyo' ho|anyO ho|anyŏ ho|ən̪jo ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Get alienated,english,,english,,action|compound,,verb,
^,,அன்னியமாகு,tamil,,tamil,'அனனயமக':1 'get':2 'alienated':3 'alienate':4 'அன':5 'யம':6,action|compound,அன்யொஹோ,verb,
-,ꢂ,ꢂꢣꢶꢱꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢣꢱꢪꢦꢜ':1 'adisampot':2 'adisampoṭ':3 'wonder':4 'ஆச':5 'சர':6 'யப':7 'பட':8,action|compound,अदिसम्पोट्|அதி3ஸம்போட்|adisam pot'|adisam poT|adisam poṭ|əd̪ɪs̪əm poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wonder,english,,english,,action|compound,,verb,
^,,ஆச்சரியப்படு,tamil,,tamil,'ஆசசரயபபட':1 'wonder':2 'ஆச':3 'சர':4 'யப':5 'பட':6,action|compound,அதி3ஸம்போட்,verb,
-,ꢃ,ꢃꢯ꣄꣄ꢗꢬ꣄ꢫꢸ ꢦꣁꢞꢵꢜ꣄,sourashtra,,,'ꢃꢯꢗꢬꢫꢦꢞꢜ':1 'aashcharyupodaat':2 'azcaryupodat':3 'āścaryupŏḍāṭ':4 'amaze':5 'ஆச':6 'சர':7 'யப':8 'பட':9,action|compound,आश्चर्यु पा॑डाट|ஆஶ்சர்யு பொடா3ட்|aashcharyu po'd'aat'|Azcaryu pODAT|āścaryu pŏḍāṭ|ɑːʃt͡ʃəɾju poɖɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,amaze,english,,english,,action|compound,,verb,
^,,ஆச்சரியப்படுத்து,tamil,,tamil,'ஆசசரயபபடதத':1 'amaze':2 'ஆச':3 'சர':4 'யப':5 'பட':6,action|compound,ஆஶ்சர்யு பொடா3ட்,verb,
-,ꢃ,ꢃꢱ꣄ꢡ ꢦꣂꢜ꣄,sourashtra,,,'ꢃꢱꢡꢦꢜ':1 'aastapot':2 'astapot':3 'āstapoṭ':4 'desire':5 'ஆச':6 'பட':7,action|compound,आस्त पोट्|ஆஸ்தபோட்|aasta pot'|Asta poT|āsta poṭ|ɑːs̪t̪ə poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,desire,english,,english,,action|compound,,verb,
^,,ஆசைப்படு,tamil,,tamil,'ஆசபபட':1 'desire':2 'ஆச':3 'பட':4,action|compound,ஆஸ்தபோட்,verb,
-,ꢂ,ꢂꢦꢸꢭ꣄ ꢒꢾꢬ꣄ꢭꢾ,sourashtra,,,'ꢂꢦꢭꢒꢬꢭ':1 'apulkerle':2 'apulkĕrlĕ':3 'take':4 'possession':5 'make':6 'one':7 'own':8 'ஆட':9,action|compound,अपुल क॑र्ले|அபுல் கெர்லே|apul ke'rle'|apul kErlE|apul kĕrlĕ|əpul keɾle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Take possession/ make one’s own,english,,english,,action|compound,,verb,
^,,ஆட்கொள்,tamil,,tamil,'ஆடகள':1 'take':2 'possession':3 'make':4 'one':5 'own':6 'ஆட':7,action|compound,அபுல் கெர்லே,verb,
-,ꢂ,ꢂꢦꢸꢭ꣄ꢒꢥꢶ ꢮꢲꢶꢭꢿ,sourashtra,,,'ꢂꢦꢭꢒꢥꢮꢲꢭ':1 'apulkanivahile':2 'take':3 'possession':4 'make':5 'one':6 'own':7 'ஆட':8,action|compound,अपुल्कनि वहिले|அபுல்கனி வஹிலே|apulkani vahile|apulkani vahile|apulkani vahile|əpulkən̪ɪ ʋəɦɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Take possession/ make one’s own,english,,english,,action|compound,,verb,
^,,ஆட்கொள்,tamil,,tamil,'ஆடகள':1 'take':2 'possession':3 'make':4 'one':5 'own':6 'ஆட':7,action|compound,அபுல்கனி வஹிலே,verb,
-,ꢂ,ꢂꢦ꣄ꢭꢵꢥ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢂꢦꢭꢥꢒꢬꢭ':1 'aplaankerle':2 'aplankerle':3 'aplānkĕrle':4 'take':5 'possession':6 'make':7 'one':8 'own':9 'ஆட':10,action|compound,अप्लान क॑र्ले|அப்லான் கெர்லே|aplaan ke'rle|aplAn kErle|aplān kĕrle|əplɑːn̪ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Take possession/ make one’s own,english,,english,,action|compound,,verb,
^,,ஆட்கொள்,tamil,,tamil,'ஆடகள':1 'take':2 'possession':3 'make':4 'one':5 'own':6 'ஆட':7,action|compound,அப்லான் கெர்லே,verb,
-,ꢱ,ꢱ꣄ꢢꢶꢬꢪ꣄ ꢥꢴꢷꢡ꣄ꢡꣁ ꢬꢴ ꢵ,sourashtra,,,'ꢱꢢꢬꢪꢥꢡꢡꢬ':1 'sthiramnheettorhaaa':2 'sthiramnhittorhaa':3 'sthiramnhīttŏrhaā':4 'shaken':5 'shake':6 'ஆட':7 'டம':8,action|compound,स्तिरम न्हीत्ता॑ र्हा|ஸ்தி2ரம் நீ:த்தொ ரா:|sthiram nheetto' rha aa|sthiram nhIttO rha A|sthiram nhīttŏ rha ā|s̪t̪ʰɪɾəm n̪ɦiːt̪t̪o ɾɦə ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be shaken,english,,english,,action|compound,,verb,
^,,ஆட்டம்காண்,tamil,,tamil,'ஆடடமகண':1 'shaken':2 'shake':3 'ஆட':4 'டம':5,action|compound,ஸ்தி2ரம் நீ:த்தொ ரா:,verb,
-,ꢲ,ꢲꢭ꣄ꢭꢥ꣄ ꢥꢶꢔꢶꢭ꣄,sourashtra,,,'ꢲꢭꢭꢥꢥꢔꢭ':1 'hallannigil':2 'shaken':3 'shake':4 'ஆட':5 'டம':6,action|compound,हल्लन निगिल|ஹல்லன் நிகி3ள்|hallan nigil|hallan nigil|hallan nigil|ɦəllən̪ n̪ɪgɪl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be shaken,english,,english,,action|compound,,verb,
^,,ஆட்டம்காண்,tamil,,tamil,'ஆடடமகண':1 'shaken':2 'shake':3 'ஆட':4 'டம':5,action|compound,ஹல்லன் நிகி3ள்,verb,
-,ꢆ,ꢆꢣ꣄ꢣꢬ꣄ ꢣꢾ,sourashtra,,,'ꢆꢣꢣꢬꢣ':1 'uddarde':2 'uddardĕ':3 'order':4 'ஆண':5 'றப':6,action|compound,उत्तर्दे|உத்தர் தே3|uddar de'|uddar dE|uddar dĕ|ud̪d̪əɾ d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,order,english,,english,,action|compound,,verb,
^,,ஆணை பிறப்பி,tamil,,tamil,'ஆணபறபப':1 'order':2 'ஆண':3 'றப':4,action|compound,உத்தர் தே3,verb,
-,ꢬ,ꢬꢵꢒ꣄ ꢂꢥ꣄꣄ꢭꢾ,sourashtra,,,'ꢬꢒꢂꢥꢭ':1 'raakanle':2 'rakanle':3 'rākanlĕ':4 'get':5 'angry':6 'ஆத':7 'ரப':8 'பட':9,action|compound,राक् अन्ले|ராக் அன்லே|raak anle'|rAk anlE|rāk anlĕ|ɾɑːk ən̪le,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get angry,english,,english,,action|compound,,verb,
^,,ஆத்திரப்படு,tamil,,tamil,'ஆததரபபட':1 'get':2 'angry':3 'ஆத':4 'ரப':5 'பட':6,action|compound,ராக் அன்லே,verb,
-,ꢬ,ꢬꢵꢒ꣄ ꢂꢮꢵꢜ꣄,sourashtra,,,'ꢬꢒꢂꢮꢜ':1 'raakavaat':2 'rakavat':3 'rākavāṭ':4 'incense':5 'ஆத':6 'ரம':7,action|compound,राक् अवाट्|ராக்அவாட்|raak avaat'|rAk avAT|rāk avāṭ|ɾɑːk əʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,incense,english,,english,,action|compound,,verb,
^,,ஆத்திரமூட்டு,tamil,,tamil,'ஆததரமடட':1 'incense':2 'ஆத':3 'ரம':4,action|compound,ராக்அவாட்,verb,
-,ꢃ,ꢃꢣꢬꣁ ꢣꢿ,sourashtra,,,'ꢃꢣꢬꢣ':1 'aadarode':2 'adarode':3 'ādarŏde':4 'support':5 'patronize':6 'ஆதரவள':7,action|compound,आदरा॑ दे|ஆத3ரொ தே3|aadaro' de|AdarO de|ādarŏ de|ɑːd̪əɾo d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"support, patronize",english,,english,,action|compound,,verb,
^,,ஆதரவளி,tamil,,tamil,'ஆதரவள':1 'support':2 'patronize':3,action|compound,ஆத3ரொ தே3,verb,
-,ꢡ,ꢡꢾꢫꢵꢬ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢡꢫꢬꢒꢬꢭ':1 'teyaarkerle':2 'teyarkerle':3 'tĕyārkĕrle':4 'get':5 'ready':6 'ஆயத':7 'தம':8,action|compound,त॑यार क॑र्ले|தெயார் கெர்லே|te'yaar ke'rle|tEyAr kErle|tĕyār kĕrle|t̪ejɑːɾ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get ready,english,,english,,action|compound,,verb,
^,,ஆயத்தமாகு,tamil,,tamil,'ஆயததமக':1 'get':2 'ready':3 'ஆயத':4 'தம':5,action|compound,தெயார் கெர்லே,verb,
-,ꢆ,ꢆꢡ꣄ꢒꢸꢬꣂꢯꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢡꢒꢬꢯꢒꢬ':1 'utkuroshoker':2 'utkurozoker':3 'utkurośŏker':4 'clamour':5 'ஆர':6 'பர':7,action|compound,उत्कुरोशा॑केर|உத்குரோஶொ கேர்|utkurosho' ker|utkurozO ker|utkurośŏ ker|ut̪kuɾoːʃo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,clamour,english,,english,,action|compound,,verb,
^,,ஆர்ப்பரி,tamil,,tamil,'ஆரபபர':1 'clamour':2 'ஆர':3 'பர':4,action|compound,உத்குரோஶொ கேர்,verb,
-,ꢬ,ꢬꢾꢗ꣄ꢗꢵ ꢬꢾꢗ꣄ꢗꣁ ꢡꢵꢫ꣄,sourashtra,,,'ꢬꢗꢗꢬꢗꢗꢡꢫ':1 'rechchaarechchotaay':2 'reccareccotay':3 'rĕccārĕccŏtāy':4 'clamour':5 'ஆர':6 'பர':7,action|compound,र॑च्चा॑ र॑च्चो ताय|ரெச்சா ரெச்சொ தாய்|re'chchaa re'chcho' taay|rEccA rEccO tAy|rĕccā rĕccŏ tāy|ɾet͡ʃt͡ʃɑː ɾet͡ʃt͡ʃo t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,clamour,english,,english,,action|compound,,verb,
^,,ஆர்ப்பரி,tamil,,tamil,'ஆரபபர':1 'clamour':2 'ஆர':3 'பர':4,action|compound,ரெச்சா ரெச்சொ தாய்,verb,
-,ꢙ,ꢙꣁꢱ꣄ꢫꢪ꣄ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢙꢱꢫꢪꢱꢖꢔ':1 'josyamsangi':2 'josyamsaggi':3 'jŏsyamsaṅgi':4 'predict':5 'ஆர':6 'டம':7,action|compound,जोस्यम सङ्गि|ஜோஸ்யம் ஸங்கி3|jo'syam sangi|jOsyam saGgi|jŏsyam saṅgi|d͡ʒos̪jəm s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,predict,english,,english,,action|compound,,verb,
^,,ஆரூடம்கூறு,tamil,,tamil,'ஆரடமகற':1 'predict':2 'ஆர':3 'டம':4,action|compound,ஜோஸ்யம் ஸங்கி3,verb,
-,ꢧ,ꢧꢸꢭ꣄ꢭꢵꢪ꣄ ꢱꢖꢔꢶ,sourashtra,,,'ꢧꢭꢭꢪꢱꢖꢔ':1 'phullaamsangagi':2 'phullamsagagi':3 'phullāmsaṅagi':4 'predict':5 'ஆர':6 'டம':7,action|compound,फुल्लाम सङ्गि|பு2ல்லாம் ஸங்கி3|phullaam sangagi|phullAm saGagi|phullām saṅagi|pʰullɑːm s̪əŋəgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,predict,english,,english,,action|compound,,verb,
^,,ஆரூடம்கூறு,tamil,,tamil,'ஆரடமகற':1 'predict':2 'ஆர':3 'டம':4,action|compound,பு2ல்லாம் ஸங்கி3,verb,
-,ꢃ,ꢃꢭꣂꢗꢥꣁ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢃꢭꢗꢥꢱꢖꢔ':1 'aalochanosangi':2 'alocanosaggi':3 'ālocanŏsaṅgi':4 'advise':5 'counsel':6 'ஆல':7 'சன':8,action|compound,आलोचना॑ सङ्गि|ஆலோசனொஸங்கி3|aalochano' sangi|AlocanO saGgi|ālocanŏ saṅgi|ɑːloːt͡ʃən̪o s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Advise/ counsel,english,,english,,action|compound,,verb,
^,,ஆலோசனைகூறு,tamil,,tamil,'ஆலசனகற':1 'advise':2 'counsel':3 'ஆல':4 'சன':5,action|compound,ஆலோசனொஸங்கி3,verb,
-,ꢤ,ꢤꢾꢫ꣄ꢬꢶꢫꢪ꣄ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢤꢫꢬꢫꢪꢱꢖꢔ':1 'dheyriyamsangi':2 'dheyriyamsaggi':3 'dhĕyriyamsaṅgi':4 'console':5 'ஆற':6 'தலள':7,action|compound,धेय्रियम सङ्गि|தெ4ய்ரியம்ஸங்கி3|dhe'yriyam sangi|dhEyriyam saGgi|dhĕyriyam saṅgi|d̪ʰejɾɪjəm s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,console,english,,english,,action|compound,,verb,
^,,ஆறுதலளி,tamil,,tamil,'ஆறதலள':1 'console':2 'ஆற':3 'தலள':4,action|compound,தெ4ய்ரியம்ஸங்கி3,verb,
-,ꢯ,ꢯꢵꢥ꣄ꢡꢶ ꢣꢾ,sourashtra,,,'ꢯꢥꢡꢣ':1 'shaantide':2 'zantide':3 'śāntidĕ':4 'console':5 'ஆற':6 'தலள':7,action|compound,शान्ति दे|ஶாந்தி தே3|shaanti de'|zAnti dE|śānti dĕ|ʃɑːn̪t̪ɪ d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,console,english,,english,,action|compound,,verb,
^,,ஆறுதலளி,tamil,,tamil,'ஆறதலள':1 'console':2 'ஆற':3 'தலள':4,action|compound,ஶாந்தி தே3,verb,
-,ꢱ,ꢱꢵꢥ꣄ꢡ꣄ꢮꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢥꢡꢮꢥꢒꢬ':1 'saantvanoker':2 'santvanoker':3 'sāntvanŏker':4 'console':5 'ஆற':6 'தலள':7,action|compound,सान्त्वना॑ केर|ஸாந்த்வனொ கேர்|saantvano' ker|sAntvanO ker|sāntvanŏ ker|s̪ɑːn̪t̪ʋən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,console,english,,english,,action|compound,,verb,
^,,ஆறுதலளி,tamil,,tamil,'ஆறதலள':1 'console':2 'ஆற':3 'தலள':4,action|compound,ஸாந்த்வனொ கேர்,verb,
-,ꢱ,ꢱꢪ꣄ꢪꢡ꣄ ꢣꢿ,sourashtra,,,'ꢱꢪꢪꢡꢣ':1 'sammatde':2 'allow':3 'இச':4,action|compound,सम्मत् दे|ஸம்மத் தே3|sammat de|sammat de|sammat de|s̪əmmət̪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,allow,english,,english,,action|compound,,verb,
^,,இசைவுகொடு,tamil,,tamil,'இசவகட':1 'allow':2 'இச':3,action|compound,ஸம்மத் தே3,verb,
-,ꢢ,ꢢꢵꢪ꣄ꢡꢔꢶ ꢢꣁꢮ꣄,sourashtra,,,'ꢢꢪꢡꢔꢢꢮ':1 'thaamtagithov':2 'thamtagithov':3 'thāmtagithŏv':4 'allocate':5 'இடம':6,action|compound,थाम्तगि थोव|தா2ம்தகி3 தோ2வ்|thaamtagi tho'v|thAmtagi thOv|thāmtagi thŏv|t̪ʰɑːmt̪əgɪ t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,allocate,english,,english,,action|compound,,verb,
^,,இடமொதுக்கு,tamil,,tamil,'இடமதகக':1 'allocate':2 'இடம':3,action|compound,தா2ம்தகி3 தோ2வ்,verb,
-,ꢢ,ꢢꢵꢪ꣄ ꢣꢿ,sourashtra,,,'ꢢꢪꢣ':1 'thaamde':2 'thamde':3 'thāmde':4 'give':5 'place':6 'இடம':7,action|compound|location,थाम्दे|தா2ம்தே3|thaam de|thAm de|thām de|t̪ʰɑːm d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""concrete""""}"
^,,give place,english,,english,,action|compound|location,,verb,
^,,இடம்கொடு,tamil,,tamil,'இடமகட':1 'give':2 'place':3 'இடம':4,action|compound|location,தா2ம்தே3,verb,
-,ꢢ,ꢢꢵꢪ꣄ ꢪꢬ꣄ꢗꢶ ꢙꢵ,sourashtra,,,'ꢢꢪꢪꢬꢗꢙ':1 'thaammarchijaa':2 'thammarcija':3 'thāmmarcijā':4 'migrate':5 'dislocate':6 'இடம':7 'யர':8,action|compound,थाम्मर्चि जा|தா2ம்மர்சி ஜா|thaam marchi jaa|thAm marci jA|thām marci jā|t̪ʰɑːm məɾt͡ʃɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Migrate/ dislocate,english,,english,,action|compound,,verb,
^,,இடம்பெயர்,tamil,,tamil,'இடமபயர':1 'migrate':2 'dislocate':3 'இடம':4 'யர':5,action|compound,தா2ம்மர்சி ஜா,verb,
-,ꢢ,ꢢꢵꢪ꣄ ꢪꢬ꣄ꢗꢶ ꢢꣁꢮ꣄,sourashtra,,,'ꢢꢪꢪꢬꢗꢢꢮ':1 'thaammarchithov':2 'thammarcithov':3 'thāmmarcithŏv':4 'migrate':5 'dislocate':6 'இடம':7 'யர':8,action|compound,थाम मर्चि थोव|தா2ம் மர்சி தோ2வ்|thaam marchi tho'v|thAm marci thOv|thām marci thŏv|t̪ʰɑːm məɾt͡ʃɪ t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Migrate/ dislocate,english,,english,,action|compound,,verb,
^,,இடம்பெயர்,tamil,,tamil,'இடமபயர':1 'migrate':2 'dislocate':3 'இடம':4 'யர':5,action|compound,தா2ம் மர்சி தோ2வ்,verb,
-,ꢢ,ꢢꢵꢪ꣄ꢪꢬ꣄ꢗꢶ,sourashtra,,,'ꢢꢪꢪꢬꢗ':1 'thaammarchi':2 'thammarci':3 'thāmmarci':4 'shift':5 'இடம':6,action|compound,थाम्मर्चि|தா2ம்மர்சி|thaammarchi|thAmmarci|thāmmarci|t̪ʰɑːmməɾt͡ʃɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shift,english,,english,,action|compound,,verb,
^,,இடமாற்று,tamil,,tamil,'இடமறற':1 'shift':2 'இடம':3,action|compound,தா2ம்மர்சி,verb,
-,ꢒ,ꢒꢾꢰ꣄ꢜꢪ꣄ ꢂꢞ꣄ꢞꢪ꣄ ꢂꢮꢵꢜ꣄,sourashtra,,,'ꢒꢰꢜꢪꢂꢞꢞꢪꢂꢮꢜ':1 'keshtamaddamavaat':2 'kestamaddamavat':3 'kĕṣṭamaḍḍamavāṭ':4 'create':5 'obstacle':6 'இடர':7,action|compound,केष्टम अड्डम अवाट|கெஷ்டம் அட்3ட3ம் அவாட்|ke'sht'am ad'd'am avaat'|kESTam aDDam avAT|kĕṣṭam aḍḍam avāṭ|keʂʈəm əɖɖəm əʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Create obstacle,english,,english,,action|compound,,verb,
^,,இடருண்டாக்கு,tamil,,tamil,'இடரணடகக':1 'create':2 'obstacle':3 'இடர':4,action|compound,கெஷ்டம் அட்3ட3ம் அவாட்,verb,
-,ꢥ,ꢥꢾꢱ꣄ꢒꢶꢥꢶ ꢦꣁꢜ꣄,sourashtra,,,'ꢥꢱꢒꢥꢦꢜ':1 'neskinipot':2 'nĕskinipŏṭ':3 'crushed':4 'crush':5 'இட':6 'பட':7,action|compound,न्स्किनि पोट|நெஸ்கினி போட்|ne'skini po't'|nEskini pOT|nĕskini pŏṭ|n̪es̪kɪn̪ɪ poʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be crushed,english,,english,,action|compound,,verb,
^,,இடிபடு,tamil,,tamil,'இடபட':1 'crushed':2 'crush':3 'இட':4 'பட':5,action|compound,நெஸ்கினி போட்,verb,
-,ꢂ,ꢂꢞ꣄ꢞꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢞꢞꢪꢦꢜ':1 'addampot':2 'aḍḍampoṭ':3 'obstruct':4 'இட':5 'மற':6,action|compound,अड्डम पोट|அட்3ட3ம் போட்|ad'd'am pot'|aDDam poT|aḍḍam poṭ|əɖɖəm poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,obstruct,english,,english,,action|compound,,verb,
^,,இடைமறி,tamil,,tamil,'இடமற':1 'obstruct':2 'இட':3 'மற':4,action|compound,அட்3ட3ம் போட்,verb,
-,ꢂ,ꢂꢮ꣄ꢞꣁꢦꣂꢜ꣄,sourashtra,,,'ꢂꢮꢞꢦꢜ':1 'avdopot':2 'avḍŏpoṭ':3 'interfere':4 'இட':5,action|compound,अव्डो पोट|அவ்டொ3போட்|avd'o'pot'|avDOpoT|avḍŏpoṭ|əʋɖopoːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,interfere,english,,english,,action|compound,,verb,
^,,இடையிடு,tamil,,tamil,'இடயட':1 'interfere':2 'இட':3,action|compound,அவ்டொ3போட்,verb,
-,ꢡ,ꢡꣁꢥ꣄ꢣꢬꢮ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢡꢥꢣꢬꢮꢒꢬ':1 'tondaravker':2 'tŏndaravker':3 'disturb':4 'இட':5,action|compound,त्न्दरव्केर|தொந்த3ரவ் கேர்|to'ndarav ker|tOndarav ker|tŏndarav ker|t̪on̪d̪əɾəʋ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,disturb,english,,english,,action|compound,,verb,
^,,இடையூறுசெய்,tamil,,tamil,'இடயறசய':1 'disturb':2 'இட':3,action|compound,தொந்த3ரவ் கேர்,verb,
-,ꢏ,ꢏꢦ꣄ꢦꢱ꣄ꢡꢶꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢏꢦꢦꢱꢡꢱꢒꢬ':1 'oppastisoker':2 'ŏppastisŏker':3 'make':4 'one':5 'accept':6 'yield':7 'இணங':8 'கவ':9,action|compound,आ॑प्पतिसा॑ केर|ஒப்பஸ்திஸொ கேர்|o'ppastiso' ker|OppastisO ker|ŏppastisŏ ker|oppəs̪t̪ɪs̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Make one accept/ yield,english,,english,,action|compound,,verb,
^,,இணங்கவை,tamil,,tamil,'இணஙகவ':1 'make':2 'one':3 'accept':4 'yield':5 'இணங':6 'கவ':7,action|compound,ஒப்பஸ்திஸொ கேர்,verb,
-,ꢂ,ꢂꢥꢸꢡꢵꢦ꣄ ꢒꢭꢵꢜ꣄,sourashtra,,,'ꢂꢥꢡꢦꢒꢭꢜ':1 'anutaapkalaat':2 'anutapkalat':3 'anutāpkalāṭ':4 'condole':5 'இரங':6 'கல':7,action|compound,अनुताप्कलाट्|அனுதாப் களாட்|anutaap kalaat'|anutAp kalAT|anutāp kalāṭ|ən̪ut̪ɑːp kəlɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,condole,english,,english,,action|compound,,verb,
^,,இரங்கல் தெரிவி,tamil,,tamil,'இரஙகலதரவ':1 'condole':2 'இரங':3 'கல':4,action|compound,அனுதாப் களாட்,verb,
-,ꢪ,ꢪꢴꢮ꣄ꢭꢶ ꢡꢵꢫ꣄,sourashtra,,,'ꢪꢮꢭꢡꢫ':1 'mhavlitaay':2 'mhavlitay':3 'mhavlitāy':4 'black':5 'out':6 'hide':7 'இர':8 'டட':9,action|compound,म्हव्लि ताय|ம:வ்லி தாய்|mhavli taay|mhavli tAy|mhavli tāy|mɦəʋlɪ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"black out, hide",english,,english,,action|compound,,verb,
^,,இருட்டடிப்பு செய்,tamil,,tamil,'இரடடடபபசய':1 'black':2 'out':3 'hide':4 'இர':5 'டட':6,action|compound,ம:வ்லி தாய்,verb,
-,ꢲ,ꢲꢥ꣄ꢢꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢥꢢꢬꢒꢬ':1 'hanthaarker':2 'hantharker':3 'hanthārker':4 'darken':5 'இர':6,action|compound,हन्दार्केर्|ஹந்தா3ர்கேர்|hanthaar ker|hanthAr ker|hanthār ker|ɦən̪t̪ʰɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,darken,english,,english,,action|compound,,verb,
^,,இருட்டாக்கு,tamil,,tamil,'இரடடகக':1 'darken':2 'இர':3,action|compound,ஹந்தா3ர்கேர்,verb,
-,ꢩ,ꢩꢮꢵꢜ꣄ ꢡꢵꢫ꣄,sourashtra,,,'ꢩꢮꢜꢡꢫ':1 'bhavaattaay':2 'bhavattay':3 'bhavāṭtāy':4 'shout':5 'இர':6 'சல':7,action|compound,भवाट्ताय्|ப4வாட்தாய்|bhavaat' taay|bhavAT tAy|bhavāṭ tāy|bʰəʋɑːʈ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shout,english,,english,,action|compound,,verb,
^,,இரைச்சலிடு,tamil,,tamil,'இரசசலட':1 'shout':2 'இர':3 'சல':4,action|compound,ப4வாட்தாய்,verb,
-,ꢱ,ꢱꢖ꣄ꢓ꣄ꢫꣁꢣꢿ,sourashtra,,,'ꢱꢖꢓꢫꢣ':1 'sankhyode':2 'sagkhyode':3 'saṅkhyŏde':4 'number':5 'இலக':6 'கம':7,action|compound,सङ्ख्या॑दे|ஸங்க்2யொதே3|sankhyo'de|saGkhyOde|saṅkhyŏde|s̪əŋkʰjod̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to number,english,,english,,action|compound,,verb,
^,,இலக்கமிடு,tamil,,tamil,'இலககமட':1 'number':2 'இலக':3 'கம':4,action|compound,ஸங்க்2யொதே3,verb,
-,ꢆ,ꢆꢥ꣄ꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢥꢥꢒꢬ':1 'unnoker':2 'unnŏker':3 'degrade':4 'இழ':5 'பட':6,action|compound,उन्ना॑ केर्|உன்னொகேர்|unno' ker|unnO ker|unnŏ ker|un̪n̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,degrade,english,,english,,action|compound,,verb,
^,,இழிவுபடுத்து,tamil,,tamil,'இழவபடதத':1 'degrade':2 'இழ':3 'பட':4,action|compound,உன்னொகேர்,verb,
-,ꢦ,ꢦꣁꢜ꣄ꢜꢳ ꢶꢩꢥ꣄ꢣꢶꢭꢿ,sourashtra,,,'ꢦꢜꢜꢳꢩꢥꢣꢭ':1 'pottalaibhandile':2 'pŏṭṭalaibhandile':3 'hug':4 'இற':5 'கத':6 'தழ':7,action|compound,पा॑ट्टळि भन्दिले|பொட்டளி ப4ந்தி3லே|po't't'al'a ibhandile|pOTTaLa ibhandile|pŏṭṭal̤a ibhandile|poʈʈəɭə ɪbʰən̪d̪ɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hug,english,,english,,action|compound,,verb,
^,,இறுகத்தழுவு,tamil,,tamil,'இறகததழவ':1 'hug':2 'இற':3 'கத':4 'தழ':5,action|compound,பொட்டளி ப4ந்தி3லே,verb,
-,ꢦ,ꢦꣁꢞꢭꢶ ꢩꢥ꣄ꢣꢶꢭꢿ,sourashtra,,,'ꢦꢞꢭꢩꢥꢣꢭ':1 'podalibhandile':2 'pŏḍalibhandile':3 'hug':4 'இற':5 'கத':6 'தழ':7,action|compound,पा॑डलि भन्दिले|பொட3லி ப4ந்தி3லே|po'd'ali bhandile|pODali bhandile|pŏḍali bhandile|poɖəlɪ bʰən̪d̪ɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hug,english,,english,,action|compound,,verb,
^,,இறுகத்தழுவு,tamil,,tamil,'இறகததழவ':1 'hug':2 'இற':3 'கத':4 'தழ':5,action|compound,பொட3லி ப4ந்தி3லே,verb,
-,ꢣ,ꢣꢿꢮꢸ ꢦꢣꢪ꣄ ꢪꢷꢭ꣄,sourashtra,,,'ꢣꢮꢦꢣꢪꢪꢭ':1 'devupadammeel':2 'devupadammil':3 'devupadammīl':4 'attain':5 'the':6 'lord':7 'sfeet':8 'இற':9 'வனட':10,action|compound,देवु पदम मील|தே3வு பத3ம் மீள்|devu padam meel|devu padam mIl|devu padam mīl|d̪eːʋu pəd̪əm miːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Attain to the Lord’sfeet,english,,english,,action|compound,,verb,
^,,இறைவனடி சேர்,tamil,,tamil,'இறவனடசர':1 'attain':2 'the':3 'lord':4 'sfeet':5 'இற':6 'வனட':7,action|compound,தே3வு பத3ம் மீள்,verb,
-,ꢔ,ꢔꢸꢬ꣄ꢡꢸ ꢒꢳꣀꢭꢿ,sourashtra,,,'ꢔꢬꢡꢒꢳꢭ':1 'gurtukalaile':2 'identity':3 'இனம':4,action|compound,गुर्तु कळैले|கு3ர்து களைலே|gurtu kal'aile|gurtu kaLaile|gurtu kal̤aile|guɾt̪u kəɭəɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,identity,english,,english,,action|compound,,verb,
^,,இனம் காண்,tamil,,tamil,'இனமகண':1 'identity':2 'இனம':3,action|compound,கு3ர்து களைலே,verb,
-,ꢱ,ꢱꢪꢪꣁ ꢲꣁꢫ꣄ꢭꢿ,sourashtra,,,'ꢱꢪꢪꢲꢫꢭ':1 'samamohoyle':2 'samamŏhŏyle':3 'become':4 'equal':5 'ஈட':6,action|compound,सममा॑ हा॑य्ले|ஸமமொ ஹொய்லே அபே4த் ஜவட்3ளே|samamo' ho'yle|samamO hOyle|samamŏ hŏyle|s̪əməmo ɦojleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become equal,english,,english,,action|compound,,verb,
^,,ஈடாகு,tamil,,tamil,'ஈடக':1 'become':2 'equal':3 'ஈட':4,action|compound,ஸமமொ ஹொய்லே அபே4த் ஜவட்3ளே,verb,
-,ꢂ,ꢂꢩꢿꢡ꣄ ꢙꢮꢞ꣄ꢳꢿ,sourashtra,,,'ꢂꢩꢡꢙꢮꢞꢳ':1 'abhetjavadle':2 'abhetjavaḍle':3 'become':4 'equal':5 'ஈட':6,action|compound,अभेत जवड्ळे|ஸமமொ ஹொய்லே அபே4த் ஜவட்3ளே|abhet javad'l'e|abhet javaDLe|abhet javaḍl̤e|əbʰeːt̪ d͡ʒəʋəɖɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become equal,english,,english,,action|compound,,verb,
^,,ஈடாகு,tamil,,tamil,'ஈடக':1 'become':2 'equal':3 'ஈட':4,action|compound,ஸமமொ ஹொய்லே அபே4த் ஜவட்3ளே,verb,
-,ꢦ,ꢦ꣄ꢬꢡꢶꢦꢹꢬ꣄ꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢡꢦꢬꢡꢒꢬ':1 'pratipoortiker':2 'pratipurtiker':3 'pratipūrtiker':4 'compensate':5 'ஈட':6,action|compound,प्रतिपूर्ति केर|ப்ரதிபூர்தி கேர்|pratipoorti ker|pratipUrti ker|pratipūrti ker|pɾət̪ɪpuːɾt̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compensate,english,,english,,action|compound,,verb,
^,,ஈடுசெய்,tamil,,tamil,'ஈடசய':1 'compensate':2 'ஈட':3,action|compound,ப்ரதிபூர்தி கேர்,verb,
-,ꢆ,ꢆꢥ꣄ꢥꢦꢥ꣄ ꢱꢾꢬ꣄ꢒꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢥꢥꢦꢥꢱꢬꢒꢒꢬ':1 'unnapanserkoker':2 'unnapansĕrkŏker':3 'compensate':4 'ஈட':5,action|compound,उन्नपन स॑र्का॑ केर|உன்னபன் ஸெர்கொ கேர்|unnapan se'rko' ker|unnapan sErkO ker|unnapan sĕrkŏ ker|un̪n̪əpən̪ s̪eɾko keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compensate,english,,english,,action|compound,,verb,
^,,ஈடுசெய்,tamil,,tamil,'ஈடசய':1 'compensate':2 'ஈட':3,action|compound,உன்னபன் ஸெர்கொ கேர்,verb,
-,ꢭ,ꢭꢔꢶꢛ꣄ꢗꢶ ꢬꢴꢵ,sourashtra,,,'ꢭꢔꢛꢗꢬ':1 'laginchirhaa':2 'lagijcirha':3 'lagiñcirhā':4 'involve':5 'ஈட':6 'பட':7,action|compound,लगिञ्चि र्हा|லகி3ஞ்சி ரா:|laginchi rhaa|lagiJci rhA|lagiñci rhā|ləgɪɲt͡ʃɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,involve,english,,english,,action|compound,,verb,
^,,ஈடுபடு,tamil,,tamil,'ஈடபட':1 'involve':2 'ஈட':3 'பட':4,action|compound,லகி3ஞ்சி ரா:,verb,
-,ꢭ,ꢭꢔꢶꢛ꣄ꢗꢞꢶ ꢬꢴꢵ,sourashtra,,,'ꢭꢔꢛꢗꢞꢬ':1 'laginchadirhaa':2 'lagijcadirha':3 'lagiñcaḍirhā':4 'engage':5 'ஈட':6 'பட':7,action|compound,ल्गिञ्चडि र्हा|லகி3ஞ்சடி3 ரா:|laginchad'i rhaa|lagiJcaDi rhA|lagiñcaḍi rhā|ləgɪɲt͡ʃəɖɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,engage,english,,english,,action|compound,,verb,
^,,ஈடுபடுத்து,tamil,,tamil,'ஈடபடதத':1 'engage':2 'ஈட':3 'பட':4,action|compound,லகி3ஞ்சடி3 ரா:,verb,
-,ꢱ,ꢱꢶꢣ꣄ꢤꢶ ꢲꣂ,sourashtra,,,'ꢱꢣꢤꢲ':1 'siddhiho':2 'fulfil':3 'ஈட':4,action|compound,सिद्धि हो|ஸித்3தி4 ஹோ|siddhi ho|siddhi ho|siddhi ho|s̪ɪd̪d̪ʰɪ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,fulfil,english,,english,,action|compound,,verb,
^,,ஈடேறு,tamil,,tamil,'ஈடற':1 'fulfil':2 'ஈட':3,action|compound,ஸித்3தி4 ஹோ,verb,
-,ꢒ,ꢒꢾꢭꢵꢪ꣄ ꢭꢵꢮ꣄,sourashtra,,,'ꢒꢭꢪꢭꢮ':1 'kelaamlaav':2 'kelamlav':3 'kĕlāmlāv':4 'coating':5 'the':6 'inner':7 'part':8 'vessel':9 'with':10 'lead':11 'coat':12 'ஈயம':13,action|compound,क॑लाम्लाव|கெலாம்லாவ்|ke'laam laav|kElAm lAv|kĕlām lāv|kelɑːm lɑːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,coating the inner part of the vessel with lead,english,,english,,action|compound,,verb,
^,,ஈயம்பூசு,tamil,,tamil,'ஈயமபச':1 'coating':2 'the':3 'inner':4 'part':5 'vessel':6 'with':7 'lead':8 'coat':9 'ஈயம':10,action|compound,கெலாம்லாவ்,verb,
-,ꢩ,ꢩꣁꢙꢥꣁ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢩꢙꢥꢒꢬꢭ':1 'bhojanokerle':2 'bhŏjanŏkĕrle':3 'take':4 'eat':5 'உட':6,action|compound,भोजना॑ क॑र्ले|போ4ஜனொகெர்லே|bho'jano' ke'rle|bhOjanO kErle|bhŏjanŏ kĕrle|bʰod͡ʒən̪o keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"take in, eat",english,,english,,action|compound,,verb,
^,,உட்கொள்,tamil,,tamil,'உடகள':1 'take':2 'eat':3 'உட':4,action|compound,போ4ஜனொகெர்லே,verb,
-,ꢩ,ꢩꢶꢡ꣄ꢡꢬ꣄ ꢢꣂꢮ꣄,sourashtra,,,'ꢩꢡꢡꢬꢢꢮ':1 'bhittarthov':2 'insert':3 'inject':4 'உட':5,action|compound,भित्तर थोव|பி4த்தர் தோ2வ்|bhittar thov|bhittar thov|bhittar thov|bʰɪt̪t̪əɾ t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"insert, inject",english,,english,,action|compound,,verb,
^,,உட்செலுத்து,tamil,,tamil,'உடசலதத':1 'insert':2 'inject':3 'உட':4,action|compound,பி4த்தர் தோ2வ்,verb,
-,ꢲ,ꢲꣁꢔꢡ꣄ ꢲꢶꢖ꣄ꢔꢵꢜ꣄,sourashtra,,,'ꢲꢔꢡꢲꢖꢔꢜ':1 'hogathingaat':2 'hogathiggat':3 'hŏgathiṅgāṭ':4 'insert':5 'inject':6 'உட':7,action|compound,होगत हिङ्गाट|ஹொக3த் ஹிங்கா3ட்|ho'gat hingaat'|hOgat hiGgAT|hŏgat hiṅgāṭ|ɦogət̪ ɦɪŋgɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"insert, inject",english,,english,,action|compound,,verb,
^,,உட்செலுத்து,tamil,,tamil,'உடசலதத':1 'insert':2 'inject':3 'உட':4,action|compound,ஹொக3த் ஹிங்கா3ட்,verb,
-,ꢱ,ꢱꢪ꣄ꢪꢡ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢱꢪꢪꢡꢦꢥꢣ':1 'sammatpondi':2 'sammatpŏndi':3 'agree':4 'உட':5 'பட':6,action|compound,स्म्मत पा॑न्दि|ஸம்மத் பொந்தி3|sammat po'ndi|sammat pOndi|sammat pŏndi|s̪əmmət̪ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,agree,english,,english,,action|compound,,verb,
^,,உட்படு,tamil,,tamil,'உடபட':1 'agree':2 'உட':3 'பட':4,action|compound,ஸம்மத் பொந்தி3,verb,
-,ꢩ,ꢩꢶꢡ꣄ꢡꢬ꣄ ꢡꢹꢬ꣄,sourashtra,,,'ꢩꢡꢡꢬꢡꢬ':1 'bhittartoor':2 'bhittartur':3 'bhittartūr':4 'penetrate':5 'உட':6,action|compound,भित्तर तूर|பி4த்தர் தூர்|bhittar toor|bhittar tUr|bhittar tūr|bʰɪt̪t̪əɾ t̪uːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,penetrate,english,,english,,action|compound,,verb,
^,,உட்புகு,tamil,,tamil,'உடபக':1 'penetrate':2 'உட':3,action|compound,பி4த்தர் தூர்,verb,
-,ꢱ,ꢱꢲꢪꢡꢶ ꢲꣁꢫ꣄ꢭꢿ,sourashtra,,,'ꢱꢲꢪꢡꢲꢫꢭ':1 'sahamatihoyle':2 'sahamatihŏyle':3 'make':4 'agreement':5 'உடன':6 'பட':7,action|compound,सहमति हा॑य्ले आ॑जनाक आ॑जना॑ आ॑प्पिले|ஸஹமதி ஹொய் லே|sahamati ho'yle|sahamati hOyle|sahamati hŏyle|s̪əɦəmət̪ɪ ɦojleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make an agreement,english,,english,,action|compound,,verb,
^,,உடன்படிக்கை செய்,tamil,,tamil,'உடனபடககசய':1 'make':2 'agreement':3 'உடன':4 'பட':5,action|compound,ஸஹமதி ஹொய் லே,verb,
-,ꢏ,ꢏꢙꢥꢵꢒ꣄ ꢏꢙꢥꣁ ꢏꢦ꣄ꢦꢶꢭꢿ,sourashtra,,,'ꢏꢙꢥꢒꢏꢙꢥꢏꢦꢦꢭ':1 'ojanaakojanooppile':2 'ojanakojanooppile':3 'ŏjanākŏjanŏŏppile':4 'make':5 'agreement':6 'உடன':7 'பட':8,action|compound,सहमति हा॑य्ले आ॑जनाक आ॑जना॑ आ॑प्पिले|ஒஜனாக் ஒஜனொ ஒப்பிலே|o'janaak o'jano' o'ppile|OjanAk OjanO Oppile|ŏjanāk ŏjanŏ ŏppile|od͡ʒən̪ɑːk od͡ʒən̪o oppɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make an agreement,english,,english,,action|compound,,verb,
^,,உடன்படிக்கை செய்,tamil,,tamil,'உடனபடககசய':1 'make':2 'agreement':3 'உடன':4 'பட':5,action|compound,ஒஜனாக் ஒஜனொ ஒப்பிலே,verb,
-,ꢨ,ꢨꣁꢜ꣄ꢜꣁ ꢲꢾꢜ꣄,sourashtra,,,'ꢨꢜꢜꢲꢜ':1 'bottohet':2 'bŏṭṭŏhĕṭ':3 'undress':4 'உட':5 'கள':6,action|compound,बा॑ट्टा॑ हेट|பொ3ட்டொ ஹேட்|bo't't'o' he't'|bOTTO hET|bŏṭṭŏ hĕṭ|boʈʈo ɦeʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,undress,english,,english,,action|compound,,verb,
^,,உடைகளை,tamil,,tamil,'உடகள':1 'undress':2 'உட':3 'கள':4,action|compound,பொ3ட்டொ ஹேட்,verb,
-,ꢨ,ꢨꣁꢜ꣄ꢜꣁ ꢱꣁꢮ꣄ꢞꢶ,sourashtra,,,'ꢨꢜꢜꢱꢮꢞ':1 'bottosovdi':2 'bŏṭṭŏsŏvḍi':3 'undress':4 'உட':5 'கள':6,action|compound,बा॑ट्टा॑ सा॑व्डि|பொ3ட்டொ ஸொவ்டி3|bo't't'o' so'vd'i|bOTTO sOvDi|bŏṭṭŏ sŏvḍi|boʈʈo s̪oʋɖɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,undress,english,,english,,action|compound,,verb,
^,,உடைகளை,tamil,,tamil,'உடகள':1 'undress':2 'உட':3 'கள':4,action|compound,பொ3ட்டொ ஸொவ்டி3,verb,
-,ꢆ,ꢆꢬ꣄ꢦꢡ꣄ꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢬꢦꢡꢡꢒꢬ':1 'urpattiker':2 'make':3 'create':4 'உண':5 'பண':6,action|compound,उत्पत्ति केर्|உத்பத்தி கேர்|urpatti ker|urpatti ker|urpatti ker|uɾpət̪t̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"make, create",english,,english,,action|compound,,verb,
^,,உண்டுபண்ணு,tamil,,tamil,'உணடபணண':1 'make':2 'create':3 'உண':4 'பண':5,action|compound,உத்பத்தி கேர்,verb,
-,ꢩ,ꢩꢵꢡ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢩꢡꢕꢭ':1 'bhaatghaal':2 'bhatghal':3 'bhātghāl':4 'feed':5 'fee':6 'உணவள':7,action|compound,भात घाल|பா4த் கா4ல்|bhaat ghaal|bhAt ghAl|bhāt ghāl|bʰɑːt̪ gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,feed,english,,english,,action|compound,,verb,
^,,உணவளி,tamil,,tamil,'உணவள':1 'feed':2 'fee':3,action|compound,பா4த் கா4ல்,verb,
-,ꢃ,ꢃꢙ꣄ꢛꣁ ꢣꢿ,sourashtra,,,'ꢃꢙꢛꢣ':1 'aajnyode':2 'ajjode':3 'ājñŏde':4 'order':5 'உத':6 'தரவ':7,action|compound,आजञो दे|ஆஜ்ஞொதே3|aajnyo' de|AjJO de|ājñŏ de|ɑːd͡ʒɲo d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,order,english,,english,,action|compound,,verb,
^,,உத்தரவிடு,tamil,,tamil,'உததரவட':1 'order':2 'உத':3 'தரவ':4,action|compound,ஆஜ்ஞொதே3,verb,
-,ꢦ,ꢦ꣄ꢬꢫꣂꢙꢥꣁ ꢦꣁꢜ꣄,sourashtra,,,'ꢦꢬꢫꢙꢥꢦꢜ':1 'prayojanopot':2 'prayojanŏpŏṭ':3 'useful':4 'உபய':5 'கப':6 'பட':7,action|compound,प्रयोजना॑ पोट|ப்ரயோஜனொ போட்|prayojano' po't'|prayojanO pOT|prayojanŏ pŏṭ|pɾəjoːd͡ʒən̪o poʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be useful,english,,english,,action|compound,,verb,
^,,உபயோகப்படு,tamil,,tamil,'உபயகபபட':1 'useful':2 'உபய':3 'கப':4 'பட':5,action|compound,ப்ரயோஜனொ போட்,verb,
-,ꢆ,ꢆꢦꢫꣂꢒ꣄ ꢲꣂ,sourashtra,,,'ꢆꢦꢫꢒꢲ':1 'upayokho':2 'useful':3 'உபய':4 'கப':5 'பட':6,action|compound,उपयोकहो|உபயோக் ஹோ|upayok ho|upayok ho|upayok ho|upəjoːk ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be useful,english,,english,,action|compound,,verb,
^,,உபயோகப்படு,tamil,,tamil,'உபயகபபட':1 'useful':2 'உபய':3 'கப':4 'பட':5,action|compound,உபயோக் ஹோ,verb,
-,ꢥ,ꢥꢸꢔꢵꢱ꣄ꢡꢶꢱꣁ ꢬꢴꢵ,sourashtra,,,'ꢥꢔꢱꢡꢱꢬ':1 'nugaastisorhaa':2 'nugastisorha':3 'nugāstisŏrhā':4 'useful':5 'உபய':6 'கப':7 'பட':8,action|compound,नुगास्तिसा॑ र्हा|நுகா3ஸ்திஸொ ரா:|nugaastiso' rhaa|nugAstisO rhA|nugāstisŏ rhā|n̪ugɑːs̪t̪ɪs̪o ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be useful,english,,english,,action|compound,,verb,
^,,உபயோகப்படு,tamil,,tamil,'உபயகபபட':1 'useful':2 'உபய':3 'கப':4 'பட':5,action|compound,நுகா3ஸ்திஸொ ரா:,verb,
-,ꢙ,ꢙꢷꢮ꣄ ꢱꣂꢜ꣄,sourashtra,,,'ꢙꢮꢱꢜ':1 'jeevsot':2 'jivsot':3 'jīvsoṭ':4 'lay':5 'down':6 'life':7 'உய':8,action|compound,जीव्सोट|ஜீவ்ஸோட்|jeev sot'|jIv soT|jīv soṭ|d͡ʒiːʋ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Lay down life,english,,english,,action|compound,,verb,
^,,உயிர்விடு,tamil,,tamil,'உயரவட':1 'lay':2 'down':3 'life':4 'உய':5,action|compound,ஜீவ்ஸோட்,verb,
-,ꢙ,ꢙꢷꢮ꣄ꢣꢾ,sourashtra,,,'ꢙꢮꢣ':1 'jeevde':2 'jivde':3 'jīvdĕ':4 'animate':5 'உய':6,action|compound,जीव्दे|ஜீவ் தே3|jeevde'|jIvdE|jīvdĕ|d͡ʒiːʋd̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,animate,english,,english,,action|compound,,verb,
^,,உயிரூட்டு,tamil,,tamil,'உயரடட':1 'animate':2 'உய':3,action|compound,ஜீவ் தே3,verb,
-,ꢙ,ꢙꢷꢮ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢙꢮꢕꢭ':1 'jeevghaal':2 'jivghal':3 'jīvghāl':4 'animate':5 'உய':6,action|compound,जीव घाल|ஜீவ் கா4ல்|jeev ghaal|jIv ghAl|jīv ghāl|d͡ʒiːʋ gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,animate,english,,english,,action|compound,,verb,
^,,உயிரூட்டு,tamil,,tamil,'உயரடட':1 'animate':2 'உய':3,action|compound,ஜீவ் கா4ல்,verb,
-,ꢨ,ꢨꣁꢭꢪ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢭꢪꢒꢬ':1 'bolamker':2 'bŏlamker':3 'strengthen':4 'உரம':5,action|compound,बा॑लम्केर|பொ3லம்கேர்|bo'lamker|bOlamker|bŏlamker|boləmkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,strengthen,english,,english,,action|compound,,verb,
^,,உரமூட்டு,tamil,,tamil,'உரமடட':1 'strengthen':2 'உரம':3,action|compound,பொ3லம்கேர்,verb,
-,ꢨ,ꢨꢵꢤ꣄ꢫꢡꣁ ꢪꢔꢶꢭꢾ,sourashtra,,,'ꢨꢤꢫꢡꢪꢔꢭ':1 'baadhyatomagile':2 'badhyatomagile':3 'bādhyatŏmagilĕ':4 'claim':5 'right':6 'உர':7,action|compound,बाध्यता॑ मगिले|பா3த்4யதொ மகி3லே|baadhyato' magile'|bAdhyatO magilE|bādhyatŏ magilĕ|bɑːd̪ʰjət̪o məgɪle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to claim right,english,,english,,action|compound,,verb,
^,,உரிமைகொண்டாடு,tamil,,tamil,'உரமகணடட':1 'claim':2 'right':3 'உர':4,action|compound,பா3த்4யதொ மகி3லே,verb,
-,ꢬ,ꢬꢹꢦ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢬꢦꢕꢭ':1 'roopghaal':2 'rupghal':3 'rūpghāl':4 'give':5 'shape':6 'உர':7,action|compound,रूप घाल|ரூப் கா4ல்|roop ghaal|rUp ghAl|rūp ghāl|ɾuːp gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give shape,english,,english,,action|compound,,verb,
^,,உருகொடு,tamil,,tamil,'உரகட':1 'give':2 'shape':3 'உர':4,action|compound,ரூப் கா4ல்,verb,
-,ꢪ,ꢪꢥꣁꢥꣁ ꢒꢾꢬ꣄ꢭꢾ,sourashtra,,,'ꢪꢥꢥꢒꢬꢭ':1 'manonokerle':2 'manŏnŏkĕrlĕ':3 'memorize':4 'உர':5,action|compound,मनना॑ केर्ले|மனனொ கெர்லே|mano'no' ke'rle'|manOnO kErlE|manŏnŏ kĕrlĕ|mən̪on̪o keɾle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,memorize,english,,english,,action|compound,,verb,
^,,உருப்போடு,tamil,,tamil,'உரபபட':1 'memorize':2 'உர':3,action|compound,மனனொ கெர்லே,verb,
-,ꢬ,ꢬꢸꢦ꣄ ꢪꢬ꣄ꢗꢶꢭꢿ,sourashtra,,,'ꢬꢦꢪꢬꢗꢭ':1 'rupmarchile':2 'rupmarcile':3 'change':4 'form':5 'உர':6,action|compound,रूप मर्चिले|ரூப் மர்சிலே|rup marchile|rup marcile|rup marcile|ɾup məɾt͡ʃɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,change form,english,,english,,action|compound,,verb,
^,,உருமாறு,tamil,,tamil,'உரமற':1 'change':2 'form':3 'உர':4,action|compound,ரூப் மர்சிலே,verb,
-,ꢱ,ꢱꢪ꣄ꢩꢵꢰꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢩꢰꢠꢒꢬ':1 'sambhaashanoker':2 'sambhasanoker':3 'sambhāṣaṇŏker':4 'converse':5 'உர':6,action|compound,सम्भाषणा॑ केर|ஸம்பா4ஷணொகேர்|sambhaashano' ker|sambhASaNO ker|sambhāṣaṇŏ ker|s̪əmbʰɑːʂəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,converse,english,,english,,action|compound,,verb,
^,,உரையாடு,tamil,,tamil,'உரயட':1 'converse':2 'உர':3,action|compound,ஸம்பா4ஷணொகேர்,verb,
-,ꢭ,ꢭꣂꢦꢸꢭꣁ ꢬꢵꢱ꣄ꢡꢶꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢭꢦꢭꢬꢱꢡꢱꢒꢬ':1 'lopuloraastisoker':2 'lopulorastisoker':3 'lopulŏrāstisŏker':4 'include':5 'உள':6 'ளடக':7,action|compound,लोपुला॑ रास्तिसा॑ केर|லோபுலொ ரா:ஸ்திஸொ கேர்|lopulo' raastiso' ker|lopulO rAstisO ker|lopulŏ rāstisŏ ker|loːpulo ɾɑːs̪t̪ɪs̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,include,english,,english,,action|compound,,verb,
^,,உள்ளடக்கு,tamil,,tamil,'உளளடகக':1 'include':2 'உள':3 'ளடக':4,action|compound,லோபுலொ ரா:ஸ்திஸொ கேர்,verb,
-,ꢭ,ꢭꣂꢦꢸꢭꣁ ꢢꣁꢮ꣄ꢭꢿ,sourashtra,,,'ꢭꢦꢭꢢꢮꢭ':1 'lopulothovle':2 'lopulŏthŏvle':3 'include':4 'உள':5 'ளடக':6,action|compound,लोपुला॑ धा॑व्ले|லோபுலொ தொ2வ்லே|lopulo' tho'vle|lopulO thOvle|lopulŏ thŏvle|loːpulo t̪ʰoʋleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,include,english,,english,,action|compound,,verb,
^,,உள்ளடக்கு,tamil,,tamil,'உளளடகக':1 'include':2 'உள':3 'ளடக':4,action|compound,லோபுலொ தொ2வ்லே,verb,
-,ꢆ,ꢆꢡ꣄ꢱꢵꢲ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢆꢡꢱꢲꢦꢥꢣ':1 'utsaahpondi':2 'utsahpondi':3 'utsāhpŏndi':4 'get':5 'enthusiasm':6 'உற':7 'கமட':8,action|compound,उत्साह पा॑न्दि|உத்ஸாஹ் பொந்தி3|utsaah po'ndi|utsAh pOndi|utsāh pŏndi|ut̪s̪ɑːɦ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Get enthusiasm,english,,english,,action|compound,,verb,
^,,உற்சாகமடை,tamil,,tamil,'உறசகமட':1 'get':2 'enthusiasm':3 'உற':4 'கமட':5,action|compound,உத்ஸாஹ் பொந்தி3,verb,
-,ꢔ,ꢔꢪ꣄ꢗꢶ ꢎꢒꢶ,sourashtra,,,'ꢔꢪꢗꢎꢒ':1 'gamchiaiki':2 'gamciaiki':3 'listen':4 'attentively':5 'உற':6,action|compound,गम्चि ऐकि|க3ம்சிஐகி|gamchi aiki|gamci aiki|gamci aiki|gəmt͡ʃɪ əɪkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Listen attentively,english,,english,,action|compound,,verb,
^,,உற்றுக்கேள்,tamil,,tamil,'உறறககள':1 'listen':2 'attentively':3 'உற':4,action|compound,க3ம்சிஐகி,verb,
-,ꢓ,ꢓꢸꢬ꣄ꢒꢥꢶ ꢱꢵ,sourashtra,,,'ꢓꢬꢒꢥꢱ':1 'khurkanisaa':2 'khurkanisa':3 'khurkanisā':4 'gaze':5 'உற':6,action|compound,खुर्कनि सा|கூ2ர்கனி ஸா|khurkani saa|khurkani sA|khurkani sā|kʰuɾkən̪ɪ s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,gaze,english,,english,,action|compound,,verb,
^,,உற்றுப்பார்,tamil,,tamil,'உறறபபர':1 'gaze':2 'உற':3,action|compound,கூ2ர்கனி ஸா,verb,
-,ꢏ,ꢏꢙꢥꢵꢒ꣄ ꢏꢙꢥꣁ ꢦ꣄ꢬꢵꢪꣁꢒꢥꢶ ꢗꢭ꣄ꢭꢾ,sourashtra,,,'ꢏꢙꢥꢒꢏꢙꢥꢦꢬꢪꢒꢥꢗꢭꢭ':1 'ojanaakojanopraamokanichalle':2 'ojanakojanopramokanicalle':3 'ŏjanākŏjanŏprāmŏkanicallĕ':4 'interact':5 'affectionately':6 'உறவ':7,action|compound,आ॑जनाक आ॑जना॑ प्रामा॑कनि चल्ले|ஒஜனாக் ஒஜனொ ப்ராமொகனி சல்லே|o'janaak o'jano' praamo'kani challe'|OjanAk OjanO prAmOkani callE|ŏjanāk ŏjanŏ prāmŏkani callĕ|od͡ʒən̪ɑːk od͡ʒən̪o pɾɑːmokən̪ɪ t͡ʃəlle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Interact affectionately,english,,english,,action|compound,,verb,
^,,உறவாடு,tamil,,tamil,'உறவட':1 'interact':2 'affectionately':3 'உறவ':4,action|compound,ஒஜனாக் ஒஜனொ ப்ராமொகனி சல்லே,verb,
-,ꢥ,ꢥꢶꢱꢰ꣄꣄꣄ꢒꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢱꢰꢒꢠꢒꢬ':1 'nisashkanoker':2 'nisaskanoker':3 'nisaṣkaṇŏker':4 'confirm':5 'உற':6 'பட':7,action|compound,निष्कणा॑ केर|நிஷ்கணொ கேர்|nisashkano' ker|nisaSkaNO ker|nisaṣkaṇŏ ker|n̪ɪs̪əʂkəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,confirm,english,,english,,action|compound,,verb,
^,,உறுதி செய் / உறுதிப்படுத்து,tamil,,tamil,'உறதசயஉறதபபடதத':1 'confirm':2 'உற':3 'பட':4,action|compound,நிஷ்கணொ கேர்,verb,
-,ꢦ,ꢦ꣄ꢬꢪꢵꢠ꣄ꢓꢳ꣄ꢳꢿ,sourashtra,,,'ꢦꢬꢪꢠꢓꢳꢳ':1 'pramaankhalle':2 'pramankhalle':3 'pramāṇkhalle':4 'take':5 'oath':6 'உற':7,action|compound,प्रमाण्खळ्ळे|ப்ரமாண்க2ள்ளே|pramaankhal'l'e|pramANkhaLLe|pramāṇkhal̤l̤e|pɾəmɑːɳkʰəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,take oath,english,,english,,action|compound,,verb,
^,,உறுதிபூண்,tamil,,tamil,'உறதபண':1 'take':2 'oath':3 'உற':4,action|compound,ப்ரமாண்க2ள்ளே,verb,
-,ꢆ,ꢆꢡ꣄ꢱꢵꢲ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢡꢱꢲꢒꢬ':1 'utsaahker':2 'utsahker':3 'utsāhker':4 'encourage':5 'ஊக':6 'கமள':7,action|compound,उत्साह्केर|உத்ஸாஹ்கேர்|utsaahker|utsAhker|utsāhker|ut̪s̪ɑːɦkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,encourage,english,,english,,action|compound,,verb,
^,,ஊக்கமளி,tamil,,tamil,'ஊககமள':1 'encourage':2 'ஊக':3 'கமள':4,action|compound,உத்ஸாஹ்கேர்,verb,
-,ꢆ,ꢆꢛ꣄ꢙꢭꣁ ꢓꢵꢳ,sourashtra,,,'ꢆꢛꢙꢭꢓꢳ':1 'unjalokhaala':2 'ujjalokhala':3 'uñjalŏkhāla':4 'oscillate':5 'swing':6 'ஊசல':7,action|compound,उञ्जला॑ खाळ्|உஞ்ஜலொ கா2ள்|unjalo' khaal'a|uJjalO khALa|uñjalŏ khāl̤a|uɲd͡ʒəlo kʰɑːɭə,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Oscillate/ swing,english,,english,,action|compound,,verb,
^,,ஊசலாடு,tamil,,tamil,'ஊசலட':1 'oscillate':2 'swing':3 'ஊசல':4,action|compound,உஞ்ஜலொ கா2ள்,verb,
-,ꢗ,ꢗꣁꢞ꣄ꢞꣁ ꢦꣁꢞꢶꢩꢶꢡ꣄ꢡꢬ꣄ ꢢꢹꢬ꣄,sourashtra,,,'ꢗꢞꢞꢦꢞꢩꢡꢡꢬꢢꢬ':1 'choddopodibhittarthoor':2 'coddopodibhittarthur':3 'cŏḍḍŏpŏḍibhittarthūr':4 'infiltrate':5 'ஊட':6,action|compound,चा॑ड्ड पा॑डिभित्तर तूर|சொட்3ட3 பொடி3பி4த்தர் தூர்|cho'd'd'o' po'd'ibhittar thoor|cODDO pODibhittar thUr|cŏḍḍŏ pŏḍibhittar thūr|t͡ʃoɖɖo poɖɪbʰɪt̪t̪əɾ t̪ʰuːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Infiltrate,english,,english,,action|compound,,verb,
^,,ஊடுருவு,tamil,,tamil,'ஊடரவ':1 'infiltrate':2 'ஊட':3,action|compound,சொட்3ட3 பொடி3பி4த்தர் தூர்,verb,
-,ꢱ,ꢱ꣄ꢢꢶꢬꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢢꢬꢒꢬ':1 'sthiroker':2 'sthirŏker':3 'establish':4 'ஊர':5 'தம':6,action|compound,स्थिरा॑ केर|ஸ்தி2ரொ கேர்|sthiro' ker|sthirO ker|sthirŏ ker|s̪t̪ʰɪɾo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,establish,english,,english,,action|compound,,verb,
^,,ஊர்ஜிதம் செய்,tamil,,tamil,'ஊரஜதமசய':1 'establish':2 'ஊர':3 'தம':4,action|compound,ஸ்தி2ரொ கேர்,verb,
-,ꢓ,ꢓꣁꢭꢵ ꢩꢮꢵꢜ꣄ ꢡꢵꢫ꣄,sourashtra,,,'ꢓꢭꢩꢮꢜꢡꢫ':1 'kholaabhavaattaay':2 'kholabhavattay':3 'khŏlābhavāṭtāy':4 'howl':5 'whistle':6 'ஊள':7,action|compound,खा॑ला भवाट ताय|கொ2லா ப4வாட் தாய்|kho'laa bhavaat' taay|khOlA bhavAT tAy|khŏlā bhavāṭ tāy|kʰolɑː bʰəʋɑːʈ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Howl/whistle,english,,english,,action|compound,,verb,
^,,ஊளையிடு,tamil,,tamil,'ஊளயட':1 'howl':2 'whistle':3 'ஊள':4,action|compound,கொ2லா ப4வாட் தாய்,verb,
-,ꢧ,ꢧꢸꢮ꣄ꢥꢶ ꢬꢾꢗ꣄ꢗꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢧꢮꢥꢬꢗꢗꢒꢬ':1 'phuvnirechchoker':2 'phuvnireccoker':3 'phuvnirĕccŏker':4 'howl':5 'whistle':6 'ஊள':7,action|compound,फव्नि र॑च्चा॑ केर|பு2வ்னி ரெச்சொ கேர்|phuvni re'chcho' ker|phuvni rEccO ker|phuvni rĕccŏ ker|pʰuʋn̪ɪ ɾet͡ʃt͡ʃo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Howl/whistle,english,,english,,action|compound,,verb,
^,,ஊளையிடு,tamil,,tamil,'ஊளயட':1 'howl':2 'whistle':3 'ஊள':4,action|compound,பு2வ்னி ரெச்சொ கேர்,verb,
-,ꢩ,ꢩꣁꢫ꣄ꢱꢸ ꢬꢾꢗ꣄ꢗꣁ ꢡꢵꢫ꣄,sourashtra,,,'ꢩꢫꢱꢬꢗꢗꢡꢫ':1 'bhoysurechchotaay':2 'bhoysureccotay':3 'bhŏysurĕccŏtāy':4 'bellow':5 'எக':6 'ளம':7,action|compound,भा॑य्सु र॑च्चा॑ ताय|பெ4ய்ஸு ரெச்சொ தாய்|bho'ysu re'chcho' taay|bhOysu rEccO tAy|bhŏysu rĕccŏ tāy|bʰojs̪u ɾet͡ʃt͡ʃo t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bellow,english,,english,,action|compound,,verb,
^,,எக்காளமிடு,tamil,,tamil,'எககளமட':1 'bellow':2 'எக':3 'ளம':4,action|compound,பெ4ய்ஸு ரெச்சொ தாய்,verb,
-,ꢲ,ꢲꢜ꣄ꢮꢶ ꢱꢵ,sourashtra,,,'ꢲꢜꢮꢱ':1 'hatvisaa':2 'hatvisa':3 'haṭvisā':4 'think':5 'எண':6 'ணம':7,action|compound,हट्वि सा|ஹட்வி ஸா|hat'vi saa|haTvi sA|haṭvi sā|ɦəʈʋɪ s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,think,english,,english,,action|compound,,verb,
^,,எண்ணமிடு,tamil,,tamil,'எணணமட':1 'think':2 'எண':3 'ணம':4,action|compound,ஹட்வி ஸா,verb,
-,ꢦ,ꢦ꣄ꢬꢡꢶꢤꣁꢥꢶꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢡꢤꢥꢒꢬ':1 'pratidhoniker':2 'pratidhŏniker':3 'echo':4 'எத':5,action|compound,प्रतिधा॑नि केर|ப்ரதிதொ4னி கேர்|pratidho'niker|pratidhOniker|pratidhŏniker|pɾət̪ɪd̪ʰon̪ɪkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,echo,english,,english,,action|compound,,verb,
^,,எதிரொலி,tamil,,tamil,'எதரல':1 'echo':2 'எத':3,action|compound,ப்ரதிதொ4னி கேர்,verb,
-,ꢮ,ꢮꢾꢣꢸꢬ꣄ ꢦꣁꢜ꣄,sourashtra,,,'ꢮꢣꢬꢦꢜ':1 'vedurpot':2 'vĕdurpŏṭ':3 'encounter':4 'meet':5 'எத':6 'பட':7,action|compound,व॑दुर्पोट|வெது3ர்போட்|ve'dur po't'|vEdur pOT|vĕdur pŏṭ|ʋed̪uɾ poʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Encounter/meet,english,,english,,action|compound,,verb,
^,,எதிர்ப்படு,tamil,,tamil,'எதரபபட':1 'encounter':2 'meet':3 'எத':4 'பட':5,action|compound,வெது3ர்போட்,verb,
-,ꢱ,ꢱꢵꢪꢸꢬ꣄ ꢃꢮ꣄,sourashtra,,,'ꢱꢪꢬꢃꢮ':1 'saamuraav':2 'samurav':3 'sāmurāv':4 'encounter':5 'meet':6 'எத':7 'பட':8,action|compound,सामुर आव|ஸாமுர் ஆவ்|saamur aav|sAmur Av|sāmur āv|s̪ɑːmuɾ ɑːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Encounter/meet,english,,english,,action|compound,,verb,
^,,எதிர்ப்படு,tamil,,tamil,'எதரபபட':1 'encounter':2 'meet':3 'எத':4 'பட':5,action|compound,ஸாமுர் ஆவ்,verb,
-,ꢮ,ꢮꢾꢣꢸꢬ꣄ ꢣꢾꢒ꣄ꢒꢶ,sourashtra,,,'ꢮꢣꢬꢣꢒꢒ':1 'vedurdekki':2 'vĕdurdĕkki':3 'encounter':4 'meet':5 'எத':6 'பட':7,action|compound,वेदुर द॑क्कि|வெது3ர் தெ3க்கி|ve'dur de'kki|vEdur dEkki|vĕdur dĕkki|ʋed̪uɾ d̪ekkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Encounter/meet,english,,english,,action|compound,,verb,
^,,எதிர்ப்படு,tamil,,tamil,'எதரபபட':1 'encounter':2 'meet':3 'எத':4 'பட':5,action|compound,வெது3ர் தெ3க்கி,verb,
-,ꢦ,ꢦ꣄ꢬꢡꢷꢒ꣄ꢯꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢡꢒꢯꢒꢬ':1 'prateekshoker':2 'pratikzoker':3 'pratīkśŏker':4 'expect':5 'எத':6,action|compound,प्रतीक्षो केर|ப்ரதீக்ஷொ கேர்|prateeksho' ker|pratIkzO ker|pratīkśŏ ker|pɾət̪iːkʃo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Expect,english,,english,,action|compound,,verb,
^,,எதிர்பார்,tamil,,tamil,'எதரபர':1 'expect':2 'எத':3,action|compound,ப்ரதீக்ஷொ கேர்,verb,
-,ꢌ,ꢌꢣꢸꢬ ꣄ꢱꢵ,sourashtra,,,'ꢌꢣꢬꢱ':1 'edurasaa':2 'edurasa':3 'ĕdurasā':4 'expect':5 'எத':6,action|compound,एदुर्सा|எது3ர் ஸா|e'dura saa|Edura sA|ĕdura sā|ed̪uɾə s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Expect,english,,english,,action|compound,,verb,
^,,எதிர்பார்,tamil,,tamil,'எதரபர':1 'expect':2 'எத':3,action|compound,எது3ர் ஸா,verb,
-,ꢬ,ꢬꢵꢒ꣄ ꢂꢮꢵꢜ꣄,sourashtra,,,'ꢬꢒꢂꢮꢜ':1 'raakavaat':2 'rakavat':3 'rākavāṭ':4 'irritate':5 'எர':6 'சல':7,action|compound,राक अवाट|ராக் அவாட்|raak avaat'|rAk avAT|rāk avāṭ|ɾɑːk əʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,irritate,english,,english,,action|compound,,verb,
^,,எரிச்சலூட்டு,tamil,,tamil,'எரசசலடட':1 'irritate':2 'எர':3 'சல':4,action|compound,ராக் அவாட்,verb,
-,ꢱ,ꢱꢷꢪꣁ ꢣꢵꢜ꣄,sourashtra,,,'ꢱꢪꢣꢜ':1 'seemodaat':2 'simodat':3 'sīmŏdāṭ':4 'exceed':5 'எல':6 'கட':7,action|compound,सीमा॑ दाट|ஸீமொ தா3ட்|seemo' daat'|sImO dAT|sīmŏ dāṭ|s̪iːmo d̪ɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,exceed,english,,english,,action|compound,,verb,
^,,எல்லைகட,tamil,,tamil,'எலலகட':1 'exceed':2 'எல':3 'கட':4,action|compound,ஸீமொ தா3ட்,verb,
-,ꢆ,ꢆꢣ꣄ꢮꢿꢒ꣄ ꢒꢾꢬ꣄,sourashtra,,,'ꢆꢣꢮꢒꢒꢬ':1 'udvekker':2 'udvekkĕr':3 'inspire':4 'motivate':5 'எழ':6,action|compound,उद्वेग केर|உத்3வேக்3 கேர்|udvek ke'r|udvek kEr|udvek kĕr|ud̪ʋeːk keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Inspire/ motivate,english,,english,,action|compound,,verb,
^,,எழுச்சியூட்டு,tamil,,tamil,'எழசசயடட':1 'inspire':2 'motivate':3 'எழ':4,action|compound,உத்3வேக்3 கேர்,verb,
-,ꢆ,ꢆꢣ꣄ꢮꢿꢔ꣄ ꢂꢮꢵꢜ꣄,sourashtra,,,'ꢆꢣꢮꢔꢂꢮꢜ':1 'udvegavaat':2 'udvegavat':3 'udvegavāṭ':4 'inspire':5 'motivate':6 'எழ':7,action|compound,उद्वेग अवाट|உத்3வேக்3 அவாட்|udveg avaat'|udveg avAT|udveg avāṭ|ud̪ʋeːg əʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Inspire/ motivate,english,,english,,action|compound,,verb,
^,,எழுச்சியூட்டு,tamil,,tamil,'எழசசயடட':1 'inspire':2 'motivate':3 'எழ':4,action|compound,உத்3வேக்3 அவாட்,verb,
-,ꢆ,ꢆꢦꢲꢵꢱ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢆꢦꢲꢱꢒꢬ':1 'upahaasker':2 'upahasker':3 'upahāsker':4 'mock':5 'ridicule':6 'எள':7 'நக':8,action|compound,उपहास केर|உபஹாஸ் கேர்|upahaas ker|upahAs ker|upahās ker|upəɦɑːs̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Mock /ridicule,english,,english,,action|compound,,verb,
^,,எள்ளிநகையாடு,tamil,,tamil,'எளளநகயட':1 'mock':2 'ridicule':3 'எள':4 'நக':5,action|compound,உபஹாஸ் கேர்,verb,
-,ꢲ,ꢲꢾꢡꣁ ꢦꣂꢜ꣄,sourashtra,,,'ꢲꢡꢦꢜ':1 'hetopot':2 'hĕtŏpoṭ':3 'long':4 'for':5 'ஏக':6 'கம':7,action|compound,ह॑ता॑पोट्|ஹெதொபோட்|he'to' pot'|hEtO poT|hĕtŏ poṭ|ɦet̪o poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,long for,english,,english,,action|compound,,verb,
^,,ஏக்கம்கொள்,tamil,,tamil,'ஏககமகள':1 'long':2 'for':3 'ஏக':4 'கம':5,action|compound,ஹெதொபோட்,verb,
-,ꢣ,ꢣꢾꢔꢵꢬ꣄ꢣꢿ,sourashtra,,,'ꢣꢔꢬꢣ':1 'degaarde':2 'degarde':3 'dĕgārde':4 'belch':5 'ஏப':6 'பம':7,action|compound,द॑गार्दे|தெ3கா3ர்தே3|de'gaarde|dEgArde|dĕgārde|d̪egɑːɾd̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,belch,english,,english,,action|compound,,verb,
^,,ஏப்பமிடு,tamil,,tamil,'ஏபபமட':1 'belch':2 'ஏப':3 'பம':4,action|compound,தெ3கா3ர்தே3,verb,
-,ꢌ,ꢌꢭꢪ꣄ ꢱꣂꢜ꣄,sourashtra,,,'ꢌꢭꢪꢱꢜ':1 'elamsot':2 'ĕlamsoṭ':3 'auction':4 'ஏலம':5,action|compound,एलम्सा॑ट्|எலம்ஸோட்|e'lam sot'|Elam soT|ĕlam soṭ|eləm s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,auction,english,,english,,action|compound,,verb,
^,,ஏலம்விடு,tamil,,tamil,'ஏலமவட':1 'auction':2 'ஏலம':3,action|compound,எலம்ஸோட்,verb,
-,ꢦ,ꢦ꣄ꢬꢨꢥ꣄ꢡꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢨꢥꢡꢒꢬ':1 'prabantuker':2 'arrange':3 'ஏற':4,action|compound,प्रबन्तु केर|ப்ரப3ந்து கேர்|prabantu ker|prabantu ker|prabantu ker|pɾəbən̪t̪u keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,arrange,english,,english,,action|compound,,verb,
^,,ஏற்பாடு செய்,tamil,,tamil,'ஏறபடசய':1 'arrange':2 'ஏற':3,action|compound,ப்ரப3ந்து கேர்,verb,
-,ꢦ,ꢦꢹꢬ꣄ꢮꢩꢶꢥꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢮꢩꢥꢫꢒꢬ':1 'poorvabhinayoker':2 'purvabhinayoker':3 'pūrvabhinayŏker':4 'rehearse':5 'ஒத':6 'நடத':7,action|compound,पूर्वाभिनया॑ केर|பூர்வாபி4னயொ கேர்|poorvabhinayo' ker|pUrvabhinayO ker|pūrvabhinayŏ ker|puːɾʋəbʰɪn̪əjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,rehearse,english,,english,,action|compound,,verb,
^,,ஒத்திகை நடத்து,tamil,,tamil,'ஒததகநடதத':1 'rehearse':2 'ஒத':3 'நடத':4,action|compound,பூர்வாபி4னயொ கேர்,verb,
-,ꢱ,ꢱꣁꢪ꣄ꢪꢬ꣄ ꢣꣁꢨ꣄ꢨꢶꢢꣁꢮ꣄,sourashtra,,,'ꢱꢪꢪꢬꢣꢨꢨꢢꢮ':1 'sommardobbithov':2 'sŏmmardŏbbithŏv':3 'postpone':4 'procrastinate':5 'ஒத':6,action|compound,सा॑म्मर दा॑ब्बिथोव|ஸொம்மர் தொ3ப்3பி3 தோ2வ்|so'mmar do'bbitho'v|sOmmar dObbithOv|sŏmmar dŏbbithŏv|s̪omməɾ d̪obbɪt̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Postpone/ procrastinate,english,,english,,action|compound,,verb,
^,,ஒத்திப்போடு,tamil,,tamil,'ஒததபபட':1 'postpone':2 'procrastinate':3 'ஒத':4,action|compound,ஸொம்மர் தொ3ப்3பி3 தோ2வ்,verb,
-,ꢣ,ꢣꣁꢨ꣄ꢨꢶꢢꣂꢮ꣄,sourashtra,,,'ꢣꢨꢨꢢꢮ':1 'dobbithov':2 'dŏbbithov':3 'adjourn':4 'ஒத':5,action|compound,दा॑ब्बिथोव|தொ3ப்3பி3தோ2வ்|do'bbithov|dObbithov|dŏbbithov|d̪obbɪt̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,adjourn,english,,english,,action|compound,,verb,
^,,ஒத்திவை,tamil,,tamil,'ஒததவ':1 'adjourn':2 'ஒத':3,action|compound,தொ3ப்3பி3தோ2வ்,verb,
-,ꢱ,ꢱꢲꢫꣂꢒ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢲꢫꢒꢒꢬ':1 'sahayokker':2 'cooperate':3 'ஒத':4,action|compound,सहयोक केर|ஸஹயோக் கேர்|sahayok ker|sahayok ker|sahayok ker|s̪əɦəjoːk keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,cooperate,english,,english,,action|compound,,verb,
^,,ஒத்துழை,tamil,,tamil,'ஒததழ':1 'cooperate':2 'ஒத':3,action|compound,ஸஹயோக் கேர்,verb,
-,ꢡ,ꢡꢶꢬꢯ꣄꣄ ꢒꢵꢬ,sourashtra,,,'ꢡꢬꢯꢒꢬ':1 'tirashkaara':2 'tirazkara':3 'tiraśkāra':4 'overrule':5 'ஒத':6 'தள':7,action|compound,तिरश्कार|திரஶ் கார்|tirash kaara|tiraz kAra|tiraś kāra|t̪ɪɾəʃ kɑːɾə,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,overrule,english,,english,,action|compound,,verb,
^,,ஒதுக்கித்தள்ளு,tamil,,tamil,'ஒதககததளள':1 'overrule':2 'ஒத':3 'தள':4,action|compound,திரஶ் கார்,verb,
-,꣄,꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢬ':1 'ker':2 'overrule':3 'ஒத':4 'தள':5,action|compound,केर|கேர்|ker|ker|ker|keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,overrule,english,,english,,action|compound,,verb,
^,,ஒதுக்கித்தள்ளு,tamil,,tamil,'ஒதககததளள':1 'overrule':2 'ஒத':3 'தள':4,action|compound,கேர்,verb,
-,ꢲ,ꢲꢾꢞꢶ ꢡꣂꢮ꣄,sourashtra,,,'ꢲꢞꢡꢮ':1 'heditov':2 'hĕḍitov':3 'reserve':4 'ஒத':5,action|compound,ह॑डिदोव्|ஹெடி3தோவ்|he'd'i tov|hEDi tov|hĕḍi tov|ɦeɖɪ t̪oːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,reserve,english,,english,,action|compound,,verb,
^,,ஒதுக்கிவை,tamil,,tamil,'ஒதககவ':1 'reserve':2 'ஒத':3,action|compound,ஹெடி3தோவ்,verb,
-,ꢮ,ꢮꢱꣁ ꢣꢾ,sourashtra,,,'ꢮꢱꢣ':1 'vasode':2 'vasŏdĕ':3 'submit':4 'handover':5 'ஒப':6 'பட':7,action|compound,वसा॑ दे|வஸொ தே3|vaso' de'|vasO dE|vasŏ dĕ|ʋəs̪o d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Submit/handover,english,,english,,action|compound,,verb,
^,,ஒப்படை,tamil,,tamil,'ஒபபட':1 'submit':2 'handover':3 'ஒப':4 'பட':5,action|compound,வஸொ தே3,verb,
-,ꢲ,ꢲꢵꢡꢸ ꢂꢒ꣄ꢰꢬ꣄ꢡꢵꢫ꣄,sourashtra,,,'ꢲꢡꢂꢒꢰꢬꢡꢫ':1 'haatuakshartaay':2 'hatuaksartay':3 'hātuakṣartāy':4 'sign':5 'ஒப':6 'பம':7,action|compound,हातु अक्षर्ताय|ஹாது அக்ஷர்தாய்|haatu akshartaay|hAtu akSartAy|hātu akṣartāy|ɦɑːt̪u əkʂəɾt̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,sign,english,,english,,action|compound,,verb,
^,,ஒப்பமிடு,tamil,,tamil,'ஒபபமட':1 'sign':2 'ஒப':3 'பம':4,action|compound,ஹாது அக்ஷர்தாய்,verb,
-,ꢱ,ꢱꢶꢖ꣄ꢔꢵꢬ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢱꢖꢔꢬꢒꢬꢭ':1 'singaarkerle':2 'siggarkerle':3 'siṅgārkĕrle':4 'make':5 'ஒப':6 'பன':7,action|compound,सिङ्गार केर्ले|ஸிங்கா3ர் கெர்லே|singaar ke'rle|siGgAr kErle|siṅgār kĕrle|s̪ɪŋgɑːɾ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,do make up,english,,english,,action|compound,,verb,
^,,ஒப்பனை செய்,tamil,,tamil,'ஒபபனசய':1 'make':2 'ஒப':3 'பன':4,action|compound,ஸிங்கா3ர் கெர்லே,verb,
-,ꢡ,ꢡꣂꢡ ꣄ꢱꢵ,sourashtra,,,'ꢡꢡꢱ':1 'totasaa':2 'totasa':3 'totasā':4 'compare':5 'ஒப':6,action|compound,तोत्सा|தோத்ஸா|tota saa|tota sA|tota sā|t̪oːt̪ə s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compare,english,,english,,action|compound,,verb,
^,,ஒப்பிடு,tamil,,tamil,'ஒபபட':1 'compare':2 'ஒப':3,action|compound,தோத்ஸா,verb,
-,ꢂ,ꢂꢥꢸꢪꢡꢶ ꢣꢿ,sourashtra,,,'ꢂꢥꢪꢡꢣ':1 'anumatide':2 'consent':3 'ஒப':4 'தலள':5,action|compound,अनुमति दे|அனுமதி தே3|anumati de|anumati de|anumati de|ən̪umət̪ɪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,consent,english,,english,,action|compound,,verb,
^,,ஒப்புதலளி,tamil,,tamil,'ஒபபதலள':1 'consent':2 'ஒப':3 'தலள':4,action|compound,அனுமதி தே3,verb,
-,ꢱ,ꢱꢪ꣄ꢫꣂꢙꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢫꢙꢥꢒꢬ':1 'samyojanoker':2 'samyojanŏker':3 'ordinate':4 'ஒர':5,action|compound,सम्योजना॑ केर|ஸம்யோஜனொ கேர்|samyojano' ker|samyojanO ker|samyojanŏ ker|s̪əmjoːd͡ʒən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,co-ordinate,english,,english,,action|compound,,verb,
^,,ஒருங்கிணை,tamil,,tamil,'ஒரஙகண':1 'ordinate':2 'ஒர':3,action|compound,ஸம்யோஜனொ கேர்,verb,
-,ꢤ,ꢤ꣄ꢫꢵꢥ꣄ ꢫꣂꢒ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢤꢫꢥꢫꢒꢒꢬ':1 'dhyaanyokker':2 'dhyanyokker':3 'dhyānyokker':4 'concentrate':5 'ஒர':6 'பட':7,action|compound,ध्यान योक केर|த்4யான் யோக் கேர்|dhyaan yok ker|dhyAn yok ker|dhyān yok ker|d̪ʰjɑːn̪ joːk keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,concentrate,english,,english,,action|compound,,verb,
^,,ஒருமுனைப்படுத்து,tamil,,tamil,'ஒரமனபபடதத':1 'concentrate':2 'ஒர':3 'பட':4,action|compound,த்4யான் யோக் கேர்,verb,
-,ꢬ,ꢬꢹꢦ꣄ ꢥꢾꢬ꣄ꢦꢶ,sourashtra,,,'ꢬꢦꢥꢬꢦ':1 'roopnerpi':2 'rupnerpi':3 'rūpnĕrpi':4 'telecast':5 'ஒள':6 'பரப':7,action|compound,रूप न॑र्पि|ரூப்நெர்பி|roop ne'rpi|rUp nErpi|rūp nĕrpi|ɾuːp n̪eɾpɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,telecast,english,,english,,action|compound,,verb,
^,,ஒளிபரப்பு,tamil,,tamil,'ஒளபரபப':1 'telecast':2 'ஒள':3 'பரப':4,action|compound,ரூப்நெர்பி,verb,
-,ꢙ,ꢙꢾꢡꣁ ꢗꢾꢬ꣄,sourashtra,,,'ꢙꢡꢗꢬ':1 'jetocher':2 'jetocer':3 'jĕtŏcĕr':4 'unite':5 'ஒன':6,action|compound,ज॑ता॑ चेर|ஜெதொ சேர்|je'to' che'r|jEtO cEr|jĕtŏ cĕr|d͡ʒet̪o t͡ʃeɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,unite,english,,english,,action|compound,,verb,
^,,ஒன்றுகூடு,tamil,,tamil,'ஒனறகட':1 'unite':2 'ஒன':3,action|compound,ஜெதொ சேர்,verb,
-,ꢙ,ꢙꢾꢡꣁ ꢗꢾꢬ꣄ꢗꢶ,sourashtra,,,'ꢙꢡꢗꢬꢗ':1 'jetocherchi':2 'jetocerci':3 'jĕtŏcĕrci':4 'unite':5 'assemble':6 'ஒன':7,action|compound,ज॑ता॑ च॑र्चि|ஜெதொ செர்சி|je'to' che'rchi|jEtO cErci|jĕtŏ cĕrci|d͡ʒet̪o t͡ʃeɾt͡ʃɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"unite, assemble",english,,english,,action|compound,,verb,
^,,ஒன்றுசேர்,tamil,,tamil,'ஒனறசர':1 'unite':2 'assemble':3 'ஒன':4,action|compound,ஜெதொ செர்சி,verb,
-,ꢤ,ꢤꢪꢶ ꢙꢵ,sourashtra,,,'ꢤꢪꢙ':1 'dhamijaa':2 'dhamija':3 'dhamijā':4 'elope':5 'ஒட':6,action|compound,धमि जा|த4மி ஜா|dhami jaa|dhami jA|dhami jā|d̪ʰəmɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,elope,english,,english,,action|compound,,verb,
^,,ஒடிப்போ,tamil,,tamil,'ஒடபப':1 'elope':2 'ஒட':3,action|compound,த4மி ஜா,verb,
-,ꢥ,ꢥꢶꢮ꣄ꢬꢸꢡꢶ ꢲꣂ,sourashtra,,,'ꢥꢮꢬꢡꢲ':1 'nivrutiho':2 'retire':3 'ஒய':4,action|compound,निव्रुति हो|நிவ்ருதி ஹோ|nivruti ho|nivruti ho|nivruti ho|n̪ɪʋɾut̪ɪ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,retire,english,,english,,action|compound,,verb,
^,,ஒய்வுபெறு,tamil,,tamil,'ஒயவபற':1 'retire':2 'ஒய':3,action|compound,நிவ்ருதி ஹோ,verb,
-,ꢗ,ꢗꢶꢡ꣄ꢬꢸ ꢭꢶꢓꢶ,sourashtra,,,'ꢗꢡꢬꢭꢓ':1 'chitrulikhi':2 'citrulikhi':3 'paint':4 'ஒவ':5 'யம':6,action|compound,चित्रु लिखि|சித்ரு லிகி2|chitru likhi|citru likhi|citru likhi|t͡ʃɪt̪ɾu lɪkʰɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,paint,english,,english,,action|compound,,verb,
^,,ஒவியம்தீட்டு,tamil,,tamil,'ஒவயமதடட':1 'paint':2 'ஒவ':3 'யம':4,action|compound,சித்ரு லிகி2,verb,
-,ꢡ,ꢡꢶꢬ꣄ꢪꢵꢥ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢡꢬꢪꢥꢒꢬꢭ':1 'tirmaankerle':2 'tirmankerle':3 'tirmānkĕrle':4 'make':5 'mind':6 'கங':7 'கணங':8 'கட':9,action|compound,तिर्मान क॑र्ले|திர்மான் கெர்லே|tirmaan ke'rle|tirmAn kErle|tirmān kĕrle|t̪ɪɾmɑːn̪ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make up mind,english,,english,,action|compound,,verb,
^,,கங்கணங்கட்டு,tamil,,tamil,'கஙகணஙகடட':1 'make':2 'mind':3 'கங':4 'கணங':5 'கட':6,action|compound,திர்மான் கெர்லே,verb,
-,ꢒ,ꢒꢿꢜ ꣄ꢩꢥ꣄ꢣꢶꢭꢿ,sourashtra,,,'ꢒꢜꢩꢥꢣꢭ':1 'ketabhandile':2 'keṭabhandile':3 'begirdle':4 'கச':5 'கட':6,action|compound,केट् भन्दिले|கேட் ப4ந்தி3லே|ket'a bhandile|keTa bhandile|keṭa bhandile|keːʈə bʰən̪d̪ɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,begirdle,english,,english,,action|compound,,verb,
^,,கச்சைகட்டு,tamil,,tamil,'கசசகடட':1 'begirdle':2 'கச':3 'கட':4,action|compound,கேட் ப4ந்தி3லே,verb,
-,ꢱ,ꢱꢸꢭ꣄ꢒꣁ ꢩꢥ꣄ꢣꢶ,sourashtra,,,'ꢱꢭꢒꢩꢥꢣ':1 'sulkobhandi':2 'sulkŏbhandi':3 'remit':4 'fee':5 'கட':6 'டணங':7,action|compound,सुल्का॑ भन्दि|ஸுல்கொ ப4ந்தி3|sulko' bhandi|sulkO bhandi|sulkŏ bhandi|s̪ulko bʰən̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,remit fee,english,,english,,action|compound,,verb,
^,,கட்டணங்கட்டு,tamil,,tamil,'கடடணஙகடட':1 'remit':2 'fee':3 'கட':4 'டணங':5,action|compound,ஸுல்கொ ப4ந்தி3,verb,
-,ꢃ,ꢃꢙ꣄ꢛꣁ ꢣꢿ,sourashtra,,,'ꢃꢙꢛꢣ':1 'aajnyode':2 'ajjode':3 'ājñŏde':4 'issue':5 'order':6 'கட':7 'டள':8 'றப':9,action|compound,आजञो दे|ஆஜ்ஞொ தே3|aajnyo' de|AjJO de|ājñŏ de|ɑːd͡ʒɲo d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to issue an order,english,,english,,action|compound,,verb,
^,,கட்டளைபிறப்பி,tamil,,tamil,'கடடளபறபப':1 'issue':2 'order':3 'கட':4 'டள':5 'றப':6,action|compound,ஆஜ்ஞொ தே3,verb,
-,ꢃ,ꢃꢙ꣄ꢛꣁꢣꢿ ꢡꢵꢫ꣄,sourashtra,,,'ꢃꢙꢛꢣꢡꢫ':1 'aajnyodetaay':2 'ajjodetay':3 'ājñŏdetāy':4 'command':5 'கட':6 'டள':7,action|compound,आजञो ताय|ஆஜ்ஞொதாய்|aajnyo'de taay|AjJOde tAy|ājñŏde tāy|ɑːd͡ʒɲod̪eː t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,command,english,,english,,action|compound,,verb,
^,,கட்டளையிடு,tamil,,tamil,'கடடளயட':1 'command':2 'கட':3 'டள':4,action|compound,ஆஜ்ஞொதாய்,verb,
-,ꢨ,ꢨꢭꢮꢥ꣄ꢡꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢭꢮꢥꢡꢒꢬ':1 'balavantuker':2 'compel':3 'கட':4 'யப':5 'பட':6,action|compound,बलवन्तु केर्|ப3ல்வந்து கேர்|balavantu ker|balavantu ker|balavantu ker|bələʋən̪t̪u keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compel,english,,english,,action|compound,,verb,
^,,கட்டாயப்படுத்து,tamil,,tamil,'கடடயபபடதத':1 'compel':2 'கட':3 'யப':4 'பட':5,action|compound,ப3ல்வந்து கேர்,verb,
-,ꢂ,ꢂꢤꢶꢒꢵꢬꢸꢪ꣄ ꢬꢴꢵ,sourashtra,,,'ꢂꢤꢒꢬꢪꢬ':1 'adhikaarumrhaa':2 'adhikarumrha':3 'adhikārumrhā':4 'under':5 'control':6 'கட':7 'கடங':8,action|compound,अधिकारुम र्हा|அதி4காரும் ரா:|adhikaarum rhaa|adhikArum rhA|adhikārum rhā|əd̪ʰɪkɑːɾum ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be under control,english,,english,,action|compound,,verb,
^,,கட்டுக்கடங்கு,tamil,,tamil,'கடடககடஙக':1 'under':2 'control':3 'கட':4 'கடங':5,action|compound,அதி4காரும் ரா:,verb,
-,ꢥ,ꢥꢶꢫꢥ꣄ꢡ꣄ꢬꢠꣁꢒꢿꢬ꣄,sourashtra,,,'ꢥꢫꢥꢡꢬꢠꢒꢬ':1 'niyantranoker':2 'niyantraṇŏker':3 'control':4 'கட':5 'பட':6,action|compound,नियन्त्रणा॑केर|நியந்த்ரணொகேர்|niyantrano'ker|niyantraNOker|niyantraṇŏker|n̪ɪjən̪t̪ɾəɳokeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,control,english,,english,,action|compound,,verb,
^,,கட்டுப்படுத்து,tamil,,tamil,'கடடபபடதத':1 'control':2 'கட':3 'பட':4,action|compound,நியந்த்ரணொகேர்,verb,
-,ꢒ,ꢒꢾꢜ꣄ꢜꢸ ꢡꢵꢫ꣄,sourashtra,,,'ꢒꢜꢜꢡꢫ':1 'kettutaay':2 'kettutay':3 'kĕṭṭutāy':4 'bandage':5 'கட':6,action|compound,केट्टु ताय|கெட்டுதாய்|ke't't'u taay|kETTu tAy|kĕṭṭu tāy|keʈʈu t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bandage,english,,english,,action|compound,,verb,
^,,கட்டுப்போடு,tamil,,tamil,'கடடபபட':1 'bandage':2 'கட':3,action|compound,கெட்டுதாய்,verb,
-,ꢲ,ꢲꢾꢳ꣄ꢳꢶꢶ ꢙꢵ,sourashtra,,,'ꢲꢳꢳꢙ':1 'helliijaa':2 'helliija':3 'hĕlliijā':4 'kidnap':5 'கடத':6,action|compound,ह॑ळ्ळि जा|ஹெள்ளி ஜா|he'l'l'ii jaa|hELLii jA|hĕl̤l̤ii jā|ɦeɭɭɪɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,kidnap,english,,english,,action|compound,,verb,
^,,கடத்திச்செல்,tamil,,tamil,'கடததசசல':1 'kidnap':2 'கடத':3,action|compound,ஹெள்ளி ஜா,verb,
-,ꢒ,ꢒꢬ꣄ꢡꢮ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢬꢡꢮꢒꢬ':1 'kartavker':2 'the':3 'duty':4 'கடம':5,action|compound,कर्तव केर|கர்தவ் கேர்|kartav ker|kartav ker|kartav ker|kəɾt̪əʋ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,do the duty,english,,english,,action|compound,,verb,
^,,கடமையாற்று,tamil,,tamil,'கடமயறற':1 'the':2 'duty':3 'கடம':4,action|compound,கர்தவ் கேர்,verb,
-,ꢬ,ꢬꢷꢠ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢬꢠꢦꢜ':1 'reenpot':2 'rinpot':3 'rīṇpoṭ':4 'get':5 'indebted':6 'கடன':7 'பட':8,action|compound,रीण पोट|ரீண் போட்|reen pot'|rIN poT|rīṇ poṭ|ɾiːɳ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Get indebted,english,,english,,action|compound,,verb,
^,,கடன்படு,tamil,,tamil,'கடனபட':1 'get':2 'indebted':3 'கடன':4 'பட':5,action|compound,ரீண் போட்,verb,
-,ꢬ,ꢬꢷꢠ꣄ ꢓꢵꢜ꣄,sourashtra,,,'ꢬꢠꢓꢜ':1 'reenkhaat':2 'rinkhat':3 'rīṇkhāṭ':4 'borrow':5 'கடன':6,action|compound,रीण खाट|ரீண்கா2ட்|reen khaat'|rIN khAT|rīṇ khāṭ|ɾiːɳ kʰɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,borrow,english,,english,,action|compound,,verb,
^,,கடன்வாங்கு,tamil,,tamil,'கடனவஙக':1 'borrow':2 'கடன':3,action|compound,ரீண்கா2ட்,verb,
-,ꢓ,ꢓꢾꢜꢶꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢓꢜꢥꢒꢬ':1 'khetinker':2 'khĕṭinker':3 'harden':4 'கட':5 'னம':6,action|compound,खेटिन्केर्|கெ2டின் கேர்|khe't'in ker|khETin ker|khĕṭin ker|kʰeʈɪn̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,harden,english,,english,,action|compound,,verb,
^,,கடினமாக்கு,tamil,,tamil,'கடனமகக':1 'harden':2 'கட':3 'னம':4,action|compound,கெ2டின் கேர்,verb,
-,ꢂ,ꢂꢥꢸꢱꢬꢶꢭꢾ,sourashtra,,,'ꢂꢥꢱꢬꢭ':1 'anusarile':2 'anusarilĕ':3 'follow':4 'கட':5,action|compound,अनुसरिले|அனுஸரிலே|anusarile'|anusarilE|anusarilĕ|ən̪us̪əɾɪle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,follow,english,,english,,action|compound,,verb,
^,,கடைபிடி,tamil,,tamil,'கடபட':1 'follow':2 'கட':3,action|compound,அனுஸரிலே,verb,
-,ꢡ,ꢡꣁꢬꢶ ꢙꢵ,sourashtra,,,'ꢡꢬꢙ':1 'torijaa':2 'torija':3 'tŏrijā':4 'follow':5 'கட':6,action|compound,ता॑रि जा|தொரி ஜா|to'ri jaa|tOri jA|tŏri jā|t̪oɾɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,follow,english,,english,,action|compound,,verb,
^,,கடைபிடி,tamil,,tamil,'கடபட':1 'follow':2 'கட':3,action|compound,தொரி ஜா,verb,
-,ꢔ,ꢔꢪ꣄ꢗꢶ ꢱꢾꢫ꣄ꢭꢿ,sourashtra,,,'ꢔꢪꢗꢱꢫꢭ':1 'gamchiseyle':2 'gamciseyle':3 'gamcisĕyle':4 'watch':5 'superintend':6 'கண':7,action|compound,गम्चि स॑य्ले|க3ம்சி ஸெய்லே|gamchi se'yle|gamci sEyle|gamci sĕyle|gəmt͡ʃɪ s̪ejleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Watch/ superintend,english,,english,,action|compound,,verb,
^,,கண்காணி,tamil,,tamil,'கணகண':1 'watch':2 'superintend':3 'கண':4,action|compound,க3ம்சி ஸெய்லே,verb,
-,ꢣ,ꢣꣁꢳꣁ ꢪꢶꢱ꣄ꢒꢶ,sourashtra,,,'ꢣꢳꢪꢱꢒ':1 'dolomiski':2 'dŏlŏmiski':3 'wink':4 'கண':5,action|compound,दा॑ळा॑ मिस्कि|தொ3ளொ மிஸ்கி|do'l'o' miski|dOLO miski|dŏl̤ŏ miski|d̪oɭo mɪs̪kɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wink,english,,english,,action|compound,,verb,
^,,கண்சிமிட்டு,tamil,,tamil,'கணசமடட':1 'wink':2 'கண':3,action|compound,தொ3ளொ மிஸ்கி,verb,
-,ꢓ,ꢓꢠ꣄ꢞꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢓꢠꢞꢠꢒꢬ':1 'khandanoker':2 'khaṇḍaṇŏker':3 'condemn':4 'கண':5 'டனம':6,action|compound,खण्डणा॑ केर्|க2ண்ட3ணொ கேர்|khand'ano' ker|khaNDaNO ker|khaṇḍaṇŏ ker|kʰəɳɖəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,condemn,english,,english,,action|compound,,verb,
^,,கண்டனம் செய்,tamil,,tamil,'கணடனமசய':1 'condemn':2 'கண':3 'டனம':4,action|compound,க2ண்ட3ணொ கேர்,verb,
-,ꢣ,ꢣꢾꢒ꣄ꢒꢶ ꢤꢿꢬ꣄,sourashtra,,,'ꢣꢒꢒꢤꢬ':1 'dekkidher':2 'dĕkkidher':3 'discover':4 'invent':5 'கண':6,action|compound,द॑क्कि धेर्|தெ3க்கிதே4ர்|de'kki dher|dEkki dher|dĕkki dher|d̪ekkɪ d̪ʰeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"discover, invent",english,,english,,action|compound,,verb,
^,,கண்டுபிடி,tamil,,tamil,'கணடபட':1 'discover':2 'invent':3 'கண':4,action|compound,தெ3க்கிதே4ர்,verb,
-,ꢣ,ꢣꣁꢳꢵꢪ꣄ꢦꢥꢶ ꢓꢵꢜ꣄,sourashtra,,,'ꢣꢳꢪꢦꢥꢓꢜ':1 'dolaampanikhaat':2 'dolampanikhat':3 'dŏlāmpanikhāṭ':4 'shed':5 'tears':6 'tear':7 'கண':8,action|compound,दा॑ळाम्पनि खाट|தொ3ளாம்பனி கா2ட்|do'l'aampani khaat'|dOLAmpani khAT|dŏl̤āmpani khāṭ|d̪oɭɑːmpən̪ɪ kʰɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shed tears,english,,english,,action|compound,,verb,
^,,கண்ணீர்சொரி,tamil,,tamil,'கணணரசர':1 'shed':2 'tears':3 'tear':4 'கண':5,action|compound,தொ3ளாம்பனி கா2ட்,verb,
-,ꢣ,ꢣꣁꢳꣁꢲꣁꢬ꣄ ꢱꢾꢫ꣄ꢭꢿ,sourashtra,,,'ꢣꢳꢲꢬꢱꢫꢭ':1 'dolohorseyle':2 'dŏlŏhŏrsĕyle':3 'see':4 'கண':5,action|compound,दा॑ळा॑होर स॑य्ले|தொ3ளொஹோர் ஸெய்லே|do'l'o'ho'r se'yle|dOLOhOr sEyle|dŏl̤ŏhŏr sĕyle|d̪oɭoɦoɾ s̪ejleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,see,english,,english,,action|compound,,verb,
^,,கண்ணுறு,tamil,,tamil,'கணணற':1 'see':2 'கண':3,action|compound,தொ3ளொஹோர் ஸெய்லே,verb,
-,ꢭ,ꢭꢴꢾꢒ꣄ꢒꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢭꢒꢒꢒꢬ':1 'lhekkoker':2 'lhĕkkŏker':3 'enumerate':4 'account':5 'கணக':6,action|compound,ल्ह॑क्को केर|லெ:க்கொ கேர்|lhe'kko' ker|lhEkkO ker|lhĕkkŏ ker|lɦekko keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"enumerate, to account",english,,english,,action|compound,,verb,
^,,கணக்கிடு,tamil,,tamil,'கணககட':1 'enumerate':2 'account':3 'கணக':4,action|compound,லெ:க்கொ கேர்,verb,
-,ꢒ,ꢒꢵꢪ꣄ ꢲꢶꢨ꣄ꢨꢵꢜ꣄,sourashtra,,,'ꢒꢪꢲꢨꢨꢜ':1 'kaamhibbaat':2 'kamhibbat':3 'kāmhibbāṭ':4 'lock':5 'out':6 'கதவட':7,action|compound,काम हिब्बाट|காம் ஹிப்3பா3ட்|kaam hibbaat'|kAm hibbAT|kām hibbāṭ|kɑːm ɦɪbbɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,lock-out,english,,english,,action|compound,,verb,
^,,கதவடை,tamil,,tamil,'கதவட':1 'lock':2 'out':3,action|compound,காம் ஹிப்3பா3ட்,verb,
-,ꢒ,ꢒꢾꢬꢥ꣄ ꢒꢭꢥꢵꢡꣁ ꢬꢴꢵ,sourashtra,,,'ꢒꢬꢥꢒꢭꢥꢡꢬ':1 'kerankalanaatorhaa':2 'kerankalanatorha':3 'kĕrankalanātŏrhā':4 'loss':5 'கத':6 'கலங':7,action|compound,क॑रन कलनाता॑ र्हा|கெரன் களனாதொ ரா:|ke'ran kalanaato' rhaa|kEran kalanAtO rhA|kĕran kalanātŏ rhā|keɾən̪ kələn̪ɑːt̪o ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Be at a loss,english,,english,,action|compound,,verb,
^,,கதிகலங்கு,tamil,,tamil,'கதகலஙக':1 'loss':2 'கத':3 'கலங':4,action|compound,கெரன் களனாதொ ரா:,verb,
-,ꢕ,ꢕꢾꢬ꣄ꢮꢵꢬ꣄ ꢬꢴꢵ,sourashtra,,,'ꢕꢬꢮꢬꢬ':1 'ghervaarrhaa':2 'ghervarrha':3 'ghĕrvārrhā':4 'conceive':5 'கர':6 'பம':7 'தர':8,action|compound,घ॑र्वार् र्हा|கெ4ர்வார் ரா:|ghe'rvaar rhaa|ghErvAr rhA|ghĕrvār rhā|gʰeɾʋɑːɾ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,conceive,english,,english,,action|compound,,verb,
^,,கர்ப்பம்தரி,tamil,,tamil,'கரபபமதர':1 'conceive':2 'கர':3 'பம':4 'தர':5,action|compound,கெ4ர்வார் ரா:,verb,
-,ꢔ,ꢔꢬ꣄ꢩꢸ ꢙꢵꢮꢵꢜ꣄,sourashtra,,,'ꢔꢬꢩꢙꢮꢜ':1 'garbhujaavaat':2 'garbhujavat':3 'garbhujāvāṭ':4 'abort':5 'கர':6,action|compound,गर्भु जवाट|க3ர்பு4 ஜவாட்|garbhu jaavaat'|garbhu jAvAT|garbhu jāvāṭ|gəɾbʰu d͡ʒɑːʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,abort,english,,english,,action|compound,,verb,
^,,கருச்சிதைவு செய்,tamil,,tamil,'கரசசதவசய':1 'abort':2 'கர':3,action|compound,க3ர்பு4 ஜவாட்,verb,
-,ꢂ,ꢂꢩꢶꢦ꣄ꢬꢵꢫꢪ꣄ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢂꢩꢦꢬꢫꢪꢱꢖꢔ':1 'abhipraayamsangi':2 'abhiprayamsaggi':3 'abhiprāyamsaṅgi':4 'opine':5 'கர':6,action|compound,अभिप्रायम्सङ्गि|அபி4ப்ராய்ஸங்கி3|abhipraayam sangi|abhiprAyam saGgi|abhiprāyam saṅgi|əbʰɪpɾɑːjəm s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,opine,english,,english,,action|compound,,verb,
^,,கருத்துரை,tamil,,tamil,'கரததர':1 'opine':2 'கர':3,action|compound,அபி4ப்ராய்ஸங்கி3,verb,
-,ꢒ,ꢒꢾꢜ꣄ꢜꢣꢞꢱ꣄ꢡꢶ ꢱꣁ ꢙꢵ,sourashtra,,,'ꢒꢜꢜꢣꢞꢱꢡꢱꢙ':1 'kettadadastisojaa':2 'kettadadastisoja':3 'kĕṭṭadaḍastisŏjā':4 'find':5 'bound':6 'bind':7 'கர':8 'ரள':9,action|compound,क॑ट्टदडास्ति सा॑ जा|கெட்டத3டா3ஸ்திஸொ ஜா|ke't't'adad'asti so' jaa|kETTadaDasti sO jA|kĕṭṭadaḍasti sŏ jā|keʈʈəd̪əɖəs̪t̪ɪ s̪o d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,find no bound,english,,english,,action|compound,,verb,
^,,கரைபுரள்,tamil,,tamil,'கரபரள':1 'find':2 'bound':3 'bind':4 'கர':5 'ரள':6,action|compound,கெட்டத3டா3ஸ்திஸொ ஜா,verb,
-,ꢩ,ꢩ꣄ꢬꢪꣁ ꢲꣂ,sourashtra,,,'ꢩꢬꢪꢲ':1 'bhramoho':2 'bhramŏho':3 'confounded':4 'confused':5 'confound':6 'confuse':7 'கலக':8 'கமட':9,action|compound,भ्रमो हो|ப்4ரமொ ஹோ|bhramo' ho|bhramO ho|bhramŏ ho|bʰɾəmo ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Be confounded/ be confused,english,,english,,action|compound,,verb,
^,,கலக்கமடை,tamil,,tamil,'கலககமட':1 'confounded':2 'confused':3 'confound':4 'confuse':5 'கலக':6 'கமட':7,action|compound,ப்4ரமொ ஹோ,verb,
-,ꢒ,ꢒꢭꢲꣁꢒꢿꢬ꣄,sourashtra,,,'ꢒꢭꢲꢒꢬ':1 'kalahoker':2 'kalahŏker':3 'riot':4 'rebel':5 'கலகம':6,action|compound,कलहा॑ केर|கலஹொ கேர்|kalaho'ker|kalahOker|kalahŏker|kələɦokeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"riot, rebel",english,,english,,action|compound,,verb,
^,,கலகம் செய்,tamil,,tamil,'கலகமசய':1 'riot':2 'rebel':3 'கலகம':4,action|compound,கலஹொ கேர்,verb,
-,ꢂ,ꢂꢬꢵꢙꢒꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢂꢬꢙꢒꢡꢒꢬ':1 'araajakatoker':2 'arajakatoker':3 'arājakatŏker':4 'riot':5 'rebel':6 'கலகம':7,action|compound,अराजकता॑ केर|அராஜகதொ கேர்|araajakato' ker|arAjakatO ker|arājakatŏ ker|əɾɑːd͡ʒəkət̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"riot, rebel",english,,english,,action|compound,,verb,
^,,கலகம் செய்,tamil,,tamil,'கலகமசய':1 'riot':2 'rebel':3 'கலகம':4,action|compound,அராஜகதொ கேர்,verb,
-,ꢒ,ꢒꢭꢲꣁ ꢒꢾꢬꢵꢜ꣄,sourashtra,,,'ꢒꢭꢲꢒꢬꢜ':1 'kalahokeraat':2 'kalahokerat':3 'kalahŏkĕrāṭ':4 'plunge':5 'into':6 'riot':7 'கலவரப':8 'பட':9,action|compound,कलहा॑ क॑राट|கலஹொ கெராட்|kalaho' ke'raat'|kalahO kErAT|kalahŏ kĕrāṭ|kələɦo keɾɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Plunge into riot,english,,english,,action|compound,,verb,
^,,கலவரப்படுத்து,tamil,,tamil,'கலவரபபடதத':1 'plunge':2 'into':3 'riot':4 'கலவரப':5 'பட':6,action|compound,கலஹொ கெராட்,verb,
-,ꢪ,ꢪꣁꢥ꣄ꢥꢸ ꢒꢮ꣄ꢭꢫꢶ ꢬꢴꢵ,sourashtra,,,'ꢪꢥꢥꢒꢮꢭꢫꢬ':1 'monnukavlayirhaa':2 'monnukavlayirha':3 'mŏnnukavlayirhā':4 'get':5 'agitated':6 'agitate':7 'கலவரமட':8,action|compound,मोन्नु कव्लयि र्हा|மொன்னு கவ்லயி ரா:|mo'nnu kavlayi rhaa|mOnnu kavlayi rhA|mŏnnu kavlayi rhā|mon̪n̪u kəʋləjɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Get agitated,english,,english,,action|compound,,verb,
^,,கலவரமடை,tamil,,tamil,'கலவரமட':1 'get':2 'agitated':3 'agitate':4,action|compound,மொன்னு கவ்லயி ரா:,verb,
-,ꢒ,ꢒꢾꢳ꣄ꢳꢸ ꢏꢜ꣄ꢗꢶ,sourashtra,,,'ꢒꢳꢳꢏꢜꢗ':1 'kelluotchi':2 'kelluotci':3 'kĕlluŏṭci':4 'brew':5 'கள':6 'றக':7,action|compound,क॑ळ्ळु आ॑ट्चि|கெள்ளு ஒட்சி|ke'l'l'u o't'chi|kELLu OTci|kĕl̤l̤u ŏṭci|keɭɭu oʈt͡ʃɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,brew,english,,english,,action|compound,,verb,
^,,கள்ளிறக்கு,tamil,,tamil,'களளறகக':1 'brew':2 'கள':3 'றக':4,action|compound,கெள்ளு ஒட்சி,verb,
-,ꢒ,ꢒꢭ꣄ꢦꢥꣁ ꢒꢾꢬ꣄,sourashtra,,,'ꢒꢭꢦꢥꢒꢬ':1 'kalpanoker':2 'kalpanŏkĕr':3 'imagine':4 'கற':5 'பன':6,action|compound,कल्पना॑ केर|கல்பனொகேர்|kalpano' ke'r|kalpanO kEr|kalpanŏ kĕr|kəlpən̪o keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,imagine,english,,english,,action|compound,,verb,
^,,கற்பனை செய்,tamil,,tamil,'கறபனசய':1 'imagine':2 'கற':3 'பன':4,action|compound,கல்பனொகேர்,verb,
-,ꢥ,ꢥꢿꢪꣁ ꢥꢵꢯ꣄꣄,sourashtra,,,'ꢥꢪꢥꢯ':1 'nemonaash':2 'nemonaz':3 'nemŏnāś':4 'corrupt':5 'stain':6 'கற':7 'பட':8,action|compound,न॑मा॑ नाश|நேமொ நாஶ்|nemo' naash|nemO nAz|nemŏ nāś|n̪eːmo n̪ɑːʃ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Corrupt/ stain,english,,english,,action|compound,,verb,
^,,கறைப்படுத்து,tamil,,tamil,'கறபபடதத':1 'corrupt':2 'stain':3 'கற':4 'பட':5,action|compound,நேமொ நாஶ்,verb,
-,ꢒ,ꢒꢵꢜ꣄ ꢦꣁꢞꢜ꣄,sourashtra,,,'ꢒꢜꢦꢞꢜ':1 'kaatpodat':2 'katpodat':3 'kāṭpŏḍaṭ':4 'corrupt':5 'stain':6 'கற':7 'பட':8,action|compound,काट पा॑डाट|காட் பொடா3ட்|kaat' po'd'at'|kAT pODaT|kāṭ pŏḍaṭ|kɑːʈ poɖəʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Corrupt/ stain,english,,english,,action|compound,,verb,
^,,கறைப்படுத்து,tamil,,tamil,'கறபபடதத':1 'corrupt':2 'stain':3 'கற':4 'பட':5,action|compound,காட் பொடா3ட்,verb,
-,ꢱ,ꢱꣁꢦ꣄ꢥꣁ ꢣꢾꢒ꣄ꢒꢶ,sourashtra,,,'ꢱꢦꢥꢣꢒꢒ':1 'sopnodekki':2 'sŏpnŏdĕkki':3 'dream':4 'கனவ':5,action|compound,सा॑प्ना॑ देक्कि|ஸொப்னொ தெ3க்கி|so'pno' de'kki|sOpnO dEkki|sŏpnŏ dĕkki|s̪opn̪o d̪ekkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,dream,english,,english,,action|compound,,verb,
^,,கனவுகாண்,tamil,,tamil,'கனவகண':1 'dream':2 'கனவ':3,action|compound,ஸொப்னொ தெ3க்கி,verb,
-,ꢣ,ꢣꢬ꣄ꢯꢥꣁ ꢣꢿ,sourashtra,,,'ꢣꢬꢯꢥꢣ':1 'darshanode':2 'darzanode':3 'darśanŏde':4 'appear':5 'யள':6,action|compound,दर्शना॑ दे|த3ர்ஶனொ தே3|darshano' de|darzanO de|darśanŏ de|d̪əɾʃən̪o d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,appear,english,,english,,action|compound,,verb,
^,,காட்சியளி,tamil,,tamil,'கடசயள':1 'appear':2 'யள':3,action|compound,த3ர்ஶனொ தே3,verb,
-,ꢣ,ꢣꢾꢒ꣄ꢒꢞꢶ ꢣꢿ,sourashtra,,,'ꢣꢒꢒꢞꢣ':1 'dekkadide':2 'dĕkkaḍide':3 'betray':4,action|compound,त॑क्कडि दे|தெ3க்கடி3தே3|de'kkad'i de|dEkkaDi de|dĕkkaḍi de|d̪ekkəɖɪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,betray,english,,english,,action|compound,,verb,
^,,காட்டிக்கொடு,tamil,,tamil,'கடடககட':1 'betray':2,action|compound,தெ3க்கடி3தே3,verb,
-,ꢪ,ꢪꣂꢱ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢪꢱꢒꢬ':1 'mosker':2 'betray':3,action|compound,मोस केर|மோஸ் கேர்|mos ker|mos ker|mos ker|moːs̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,betray,english,,english,,action|compound,,verb,
^,,காட்டிக்கொடு,tamil,,tamil,'கடடககட':1 'betray':2,action|compound,மோஸ் கேர்,verb,
-,ꢣ,ꢣꢸꢬꣂꢲ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢣꢬꢲꢒꢬ':1 'durohker':2 'betray':3,action|compound,दुरोह केर|து3ரோஹ் கேர்|duroh ker|duroh ker|duroh ker|d̪uɾoːɦ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,betray,english,,english,,action|compound,,verb,
^,,காட்டிக்கொடு,tamil,,tamil,'கடடககட':1 'betray':2,action|compound,து3ரோஹ் கேர்,verb,
-,ꢬ,ꢬꢒ꣄ꢒꢶ ꢬꢴꢵ,sourashtra,,,'ꢬꢒꢒꢬ':1 'rakkirhaa':2 'rakkirha':3 'rakkirhā':4 'wait':5,action|compound,र:क्कि र्हा|ர:க்கி ரா:|rakki rhaa|rakki rhA|rakki rhā|ɾəkkɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wait,english,,english,,action|compound,,verb,
^,,காத்திரு,tamil,,tamil,'கததர':1 'wait':2,action|compound,ர:க்கி ரா:,verb,
-,ꢦ,ꢦ꣄ꢬꢿꢮ꣄ ꢦꣁꢜ꣄,sourashtra,,,'ꢦꢬꢮꢦꢜ':1 'prevpot':2 'prevpŏṭ':3 'fall':4 'love':5 'தல':6,action|compound,प्रेव पोट|ப்ரேவ்போட்|prev po't'|prev pOT|prev pŏṭ|pɾeːʋ poʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Fall in love,english,,english,,action|compound,,verb,
^,,காதல்கொள்,tamil,,tamil,'கதலகள':1 'fall':2 'love':3 'தல':4,action|compound,ப்ரேவ்போட்,verb,
-,ꢒ,ꢒꢵꢥꢸꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢒꢥꢪꢦꢜ':1 'kaanumpot':2 'kanumpot':3 'kānumpoṭ':4 'hear':5,action|compound,कानुम पोट|கானும் போட்|kaanum pot'|kAnum poT|kānum poṭ|kɑːn̪um poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hear,english,,english,,action|compound,,verb,
^,,காதில்விழு,tamil,,tamil,'கதலவழ':1 'hear':2,action|compound,கானும் போட்,verb,
-,ꢒ,ꢒꢵꢥ꣄ ꢲꣂꢬ꣄ ꢎꢒꢶ,sourashtra,,,'ꢒꢥꢲꢬꢎꢒ':1 'kaanhoraiki':2 'kanhoraiki':3 'kānhoraiki':4 'listen':5,action|compound,कान होर ऐकि|கான் ஹோர் ஐகி|kaan hor aiki|kAn hor aiki|kān hor aiki|kɑːn̪ ɦoːɾ əɪkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,listen,english,,english,,action|compound,,verb,
^,,காதுகொடு,tamil,,tamil,'கதகட':1 'listen':2,action|compound,கான் ஹோர் ஐகி,verb,
-,ꢕ,ꢕꢵꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢕꢪꢦꢜ':1 'ghaampot':2 'ghampot':3 'ghāmpoṭ':4 'get':5 'wounded':6 'wound':7 'யம':8 'பட':9,action|compound,घाम्पोट|கா4ம் போட்|ghaam pot'|ghAm poT|ghām poṭ|gʰɑːm poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get wounded,english,,english,,action|compound,,verb,
^,,காயம்படு,tamil,,tamil,'கயமபட':1 'get':2 'wounded':3 'wound':4 'யம':5 'பட':6,action|compound,கா4ம் போட்,verb,
-,ꢕ,ꢕꢵꢪ꣄ ꢦꣁꢞꢜ꣄,sourashtra,,,'ꢕꢪꢦꢞꢜ':1 'ghaampodat':2 'ghampodat':3 'ghāmpŏḍaṭ':4 'wound':5 'wind':6 'யப':7 'பட':8,action|compound,घाम्पा॑डाट|கா4ம் பொடா3ட்|ghaam po'd'at'|ghAm pODaT|ghām pŏḍaṭ|gʰɑːm poɖəʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wound,english,,english,,action|compound,,verb,
^,,காயப்படுத்து,tamil,,tamil,'கயபபடதத':1 'wound':2 'wind':3 'யப':4 'பட':5,action|compound,கா4ம் பொடா3ட்,verb,
-,ꢒ,ꢒꢵꢭ꣄ ꢲꣁ,sourashtra,,,'ꢒꢭꢲ':1 'kaalho':2 'kalho':3 'kālhŏ':4 'expire':5 'லம':6,action|compound,काल हो|கால் ஹோ|kaal ho'|kAl hO|kāl hŏ|kɑːl ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,expire,english,,english,,action|compound,,verb,
^,,காலமாகு,tamil,,tamil,'கலமக':1 'expire':2 'லம':3,action|compound,கால் ஹோ,verb,
-,ꢣ,ꢣꢾꢮ꣄ꢒꢫꢶ ꢙꢵ,sourashtra,,,'ꢣꢮꢒꢫꢙ':1 'devkayijaa':2 'devkayija':3 'dĕvkayijā':4 'expire':5 'லம':6,action|compound,द॑व्कयि जा|தெ3வ்கயி ஜா|de'vkayi jaa|dEvkayi jA|dĕvkayi jā|d̪eʋkəjɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,expire,english,,english,,action|compound,,verb,
^,,காலமாகு,tamil,,tamil,'கலமக':1 'expire':2 'லம':3,action|compound,தெ3வ்கயி ஜா,verb,
-,ꢒ,ꢒꢵꢨꢥ꣄ꢣꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢨꢥꢣꢒꢬ':1 'kaabanduker':2 'kabanduker':3 'kābanduker':4 'guard':5 'வல':6,action|compound,काबन्दु केर|காப3ந்து3 கேர்|kaabandu ker|kAbandu ker|kābandu ker|kɑːbən̪d̪u keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,guard,english,,english,,action|compound,,verb,
^,,காவல்செய்,tamil,,tamil,'கவலசய':1 'guard':2 'வல':3,action|compound,காப3ந்து3 கேர்,verb,
-,ꢩ,ꢩꢷꢡꢶꢒꢿꢬ꣄,sourashtra,,,'ꢩꢡꢒꢬ':1 'bheetiker':2 'bhitiker':3 'bhītiker':4 'scare':5,action|compound,भीतिकेर|பீ4திகேர்|bheetiker|bhItiker|bhītiker|bʰiːt̪ɪkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,scare,english,,english,,action|compound,,verb,
^,,கிலியூட்டு,tamil,,tamil,'கலயடட':1 'scare':2,action|compound,பீ4திகேர்,verb,
-,ꢤ,ꢤꢵꢒ꣄ ꢂꢮꢵꢜ꣄,sourashtra,,,'ꢤꢒꢂꢮꢜ':1 'dhaakavaat':2 'dhakavat':3 'dhākavāṭ':4 'scare':5,action|compound,धाक अवाट|தா4க் அவாட்|dhaak avaat'|dhAk avAT|dhāk avāṭ|d̪ʰɑːk əʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,scare,english,,english,,action|compound,,verb,
^,,கிலியூட்டு,tamil,,tamil,'கலயடட':1 'scare':2,action|compound,தா4க் அவாட்,verb,
-,ꢱ,ꢱꢛ꣄ꢗꢭꢥꣁ ꢲꣂ,sourashtra,,,'ꢱꢛꢗꢭꢥꢲ':1 'sanchalanoho':2 'sajcalanoho':3 'sañcalanŏho':4 'get':5 'stimulated':6 'stimulate':7 'ளர':8 'யட':9,action|compound,सञ꣄चलना॑ हो|ஸஞ்சலனொ ஹோ|sanchalano' ho|saJcalanO ho|sañcalanŏ ho|s̪əɲt͡ʃələn̪o ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get stimulated,english,,english,,action|compound,,verb,
^,,கிளர்ச்சியடை,tamil,,tamil,'களரசசயட':1 'get':2 'stimulated':3 'stimulate':4 'ளர':5 'யட':6,action|compound,ஸஞ்சலனொ ஹோ,verb,
-,ꢱ,ꢱꢛ꣄ꢗꢭꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢛꢗꢭꢥꢒꢬ':1 'sanchalanoker':2 'sajcalanoker':3 'sañcalanŏker':4 'stimulate':5 'ளர':6,action|compound,सञ꣄चलना॑ केर|ஸஞ்சலனொ கேர்|sanchalano' ker|saJcalanO ker|sañcalanŏ ker|s̪əɲt͡ʃələn̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,stimulate,english,,english,,action|compound,,verb,
^,,கிளர்ச்சியூட்டு,tamil,,tamil,'களரசசயடட':1 'stimulate':2 'ளர':3,action|compound,ஸஞ்சலனொ கேர்,verb,
-,ꢃ,ꢃꢙ꣄ꢛꣁ ꢦꢵꢭꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢃꢙꢛꢦꢭꢥꢒꢬ':1 'aajnyopaalanoker':2 'ajjopalanoker':3 'ājñŏpālanŏker':4 'obey':5 'பட':6,action|compound,आजञो पालना॑ केर|ஆஜ்ஞொ பாலனொ கேர்|aajnyo' paalano' ker|AjJO pAlanO ker|ājñŏ pālanŏ ker|ɑːd͡ʒɲo pɑːlən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,obey,english,,english,,action|compound,,verb,
^,,கீழ்ப்படி,tamil,,tamil,'கழபபட':1 'obey':2 'பட':3,action|compound,ஆஜ்ஞொ பாலனொ கேர்,verb,
-,ꢃ,ꢃꢙ꣄ꢛꣁꢤꢵꢥꢸ ꢗꢵꢭ꣄,sourashtra,,,'ꢃꢙꢛꢤꢥꢗꢭ':1 'aajnyodhaanuchaal':2 'ajjodhanucal':3 'ājñŏdhānucāl':4 'obey':5 'பட':6,action|compound,आजञोधानु चाल|ஆஜ்ஞொதா4னு சால்|aajnyo'dhaanu chaal|AjJOdhAnu cAl|ājñŏdhānu cāl|ɑːd͡ʒɲod̪ʰɑːn̪u t͡ʃɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,obey,english,,english,,action|compound,,verb,
^,,கீழ்ப்படி,tamil,,tamil,'கழபபட':1 'obey':2 'பட':3,action|compound,ஆஜ்ஞொதா4னு சால்,verb,
-,ꢂ,ꢂꢤꢶꢒꢵꢬ꣄ ꢤꢵꢥꢸ ꢗꢭ꣄ꢭꢾ,sourashtra,,,'ꢂꢤꢒꢬꢤꢥꢗꢭꢭ':1 'adhikaardhaanuchalle':2 'adhikardhanucalle':3 'adhikārdhānucallĕ':4 'obey':5 'பட':6,action|compound,अधिकार धानु चल्ले|அதி4கார் தா4னு சல்லே|adhikaar dhaanu challe'|adhikAr dhAnu callE|adhikār dhānu callĕ|əd̪ʰɪkɑːɾ d̪ʰɑːn̪u t͡ʃəlle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,obey,english,,english,,action|compound,,verb,
^,,கீழ்ப்படி,tamil,,tamil,'கழபபட':1 'obey':2 'பட':3,action|compound,அதி4கார் தா4னு சல்லே,verb,
-,ꢓ,ꢓꢵꢭ꣄ ꢬꢴꢮꢵꢜ꣄,sourashtra,,,'ꢓꢭꢬꢮꢜ':1 'khaalrhavaat':2 'khalrhavat':3 'khālrhavāṭ':4 'subjugate':5 'பட':6,action|compound,खाल्र् र्हवाट|கா2ல் ர:வாட்|khaal rhavaat'|khAl rhavAT|khāl rhavāṭ|kʰɑːl ɾɦəʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Subjugate,english,,english,,action|compound,,verb,
^,,கீழ்ப்படுத்து,tamil,,tamil,'கழபபடதத':1 'subjugate':2 'பட':3,action|compound,கா2ல் ர:வாட்,verb,
-,ꢪ,ꢪꣁꢥ꣄ꢥꢸꢪ꣄ ꢨꢷꢱ꣄,sourashtra,,,'ꢪꢥꢥꢪꢨꢱ':1 'monnumbees':2 'monnumbis':3 'mŏnnumbīs':4 'inhabit':5,action|compound,मा॑न्नुम बीस|மொன்னும் பீ3ஸ்|mo'nnum bees|mOnnum bIs|mŏnnum bīs|mon̪n̪um biːs̪,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Inhabit,english,,english,,action|compound,,verb,
^,,குடிகொள்,tamil,,tamil,'கடகள':1 'inhabit':2,action|compound,மொன்னும் பீ3ஸ்,verb,
-,ꢒ,ꢒꢵꢦ꣄ ꢬꢴꢮꢵꢜ꣄,sourashtra,,,'ꢒꢦꢬꢮꢜ':1 'kaaprhavaat':2 'kaprhavat':3 'kāprhavāṭ':4 'form':5 'settlement':6 'யமர':7,action|compound,काप र्हवाट|காப் ர:வாட்|kaap rhavaat'|kAp rhavAT|kāp rhavāṭ|kɑːp ɾɦəʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Form a settlement,english,,english,,action|compound,,verb,
^,,குடியமர்த்து,tamil,,tamil,'கடயமரதத':1 'form':2 'settlement':3 'யமர':4,action|compound,காப் ர:வாட்,verb,
-,ꢮ,ꢮꢵꢱꢱ꣄ꢢꢭꣁ ꢥꢶꢬ꣄ꢠꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢱꢱꢢꢭꢥꢬꢠꢫꢒꢬ':1 'vaasasthalonirnayoker':2 'vasasthalonirnayoker':3 'vāsasthalŏnirṇayŏker':4 'form':5 'settlement':6 'யமர':7,action|compound,वासस्थला॑ निर्णया॑ केर|வாஸஸ்த2லொ நிர்ணயொ கேர்|vaasasthalo' nirnayo' ker|vAsasthalO nirNayO ker|vāsasthalŏ nirṇayŏ ker|ʋɑːs̪əs̪t̪ʰəlo n̪ɪɾɳəjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Form a settlement,english,,english,,action|compound,,verb,
^,,குடியமர்த்து,tamil,,tamil,'கடயமரதத':1 'form':2 'settlement':3 'யமர':4,action|compound,வாஸஸ்த2லொ நிர்ணயொ கேர்,verb,
-,ꢮ,ꢮꢵꢱ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢱꢒꢬ':1 'vaasker':2 'vasker':3 'vāsker':4 'inhabit':5,action|compound,वास्केर|வாஸ்கேர்|vaasker|vAsker|vāsker|ʋɑːs̪keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,inhabit,english,,english,,action|compound,,verb,
^,,குடியிரு,tamil,,tamil,'கடயர':1 'inhabit':2,action|compound,வாஸ்கேர்,verb,
-,ꢮ,ꢮꢵꢱ꣄ ꢒꢾꢬꢵꢜ꣄,sourashtra,,,'ꢮꢱꢒꢬꢜ':1 'vaaskeraat':2 'vaskerat':3 'vāskĕrāṭ':4 'populate':5,action|compound,वास क॑राट|வாஸ் கெராட்|vaas ke'raat'|vAs kErAT|vās kĕrāṭ|ʋɑːs̪ keɾɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,populate,english,,english,,action|compound,,verb,
^,,குடியேற்று,tamil,,tamil,'கடயறற':1 'populate':2,action|compound,வாஸ் கெராட்,verb,
-,ꢮ,ꢮꢵꢱ꣄ ꢲꣁ,sourashtra,,,'ꢮꢱꢲ':1 'vaasho':2 'vasho':3 'vāshŏ':4 'migrate':5,action|compound,वास हो|வாஸ் ஹோ|vaas ho'|vAs hO|vās hŏ|ʋɑːs̪ ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,migrate,english,,english,,action|compound,,verb,
^,,குடியேறு,tamil,,tamil,'கடயற':1 'migrate':2,action|compound,வாஸ் ஹோ,verb,
-,ꢒ,ꢒꢵꢦ꣄ ꢙꢵ,sourashtra,,,'ꢒꢦꢙ':1 'kaapjaa':2 'kapja':3 'kāpjā':4 'migrate':5,action|compound,काप जा|காப் ஜா|kaap jaa|kAp jA|kāp jā|kɑːp d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,migrate,english,,english,,action|compound,,verb,
^,,குடியேறு,tamil,,tamil,'கடயற':1 'migrate':2,action|compound,காப் ஜா,verb,
-,ꢨ,ꢨꢬꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢬꢒꢬ':1 'baroker':2 'barŏker':3 'heal':4 'ணப':5 'பட':6,action|compound,बरा॑ केर|ப3ரொ கேர்|baro' ker|barO ker|barŏ ker|bəɾo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,heal,english,,english,,action|compound,,verb,
^,,குணப்படுத்து,tamil,,tamil,'கணபபடதத':1 'heal':2 'ணப':3 'பட':4,action|compound,ப3ரொ கேர்,verb,
-,ꢦ,ꢦꢵꢄ ꢱꢦꣂꢜ꣄,sourashtra,,,'ꢦꢄꢱꢦꢜ':1 'paaisapot':2 'paisapot':3 'pāisapoṭ':4 'worship':5,action|compound,पाइ~ पोट|பாஇ~போட்|paai sapot'|pAi sapoT|pāi sapoṭ|pɑːɪ s̪əpoːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,worship,english,,english,,action|compound,,verb,
^,,கும்பிடு,tamil,,tamil,'கமபட':1 'worship':2,action|compound,பாஇ~போட்,verb,
-,ꢭ,ꢭꢸꢪ꣄ꢦ꣄ꢭꣁ ꢲꣁ,sourashtra,,,'ꢭꢪꢦꢭꢲ':1 'lumploho':2 'lumplŏhŏ':3 'confused':4 'confuse':5 'ழப':6 'பமட':7,action|compound,लुम्प्ला॑ हो|லும்ப்லொஹோ|lumplo' ho'|lumplO hO|lumplŏ hŏ|lumplo ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be confused,english,,english,,action|compound,,verb,
^,,குழப்பமடை,tamil,,tamil,'கழபபமட':1 'confused':2 'confuse':3 'ழப':4 'பமட':5,action|compound,லும்ப்லொஹோ,verb,
-,ꢭ,ꢭꢸꢪ꣄ꢦ꣄ꢭꣁꢒꢿꢬ꣄,sourashtra,,,'ꢭꢪꢦꢭꢒꢬ':1 'lumploker':2 'lumplŏker':3 'embarrass':4 'confuse':5 'ழப':6 'பம':7,action|compound,लुम्प्ला॑केर|லும்ப்லொ கேர்|lumplo'ker|lumplOker|lumplŏker|lumplokeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"embarrass, confuse",english,,english,,action|compound,,verb,
^,,குழப்பமூட்டு,tamil,,tamil,'கழபபமடட':1 'embarrass':2 'confuse':3 'ழப':4 'பம':5,action|compound,லும்ப்லொ கேர்,verb,
-,ꢦ,ꢦꣁꢭ꣄ꢭꢪ꣄ ꢒꣁꢮ꣄ꢬꢶ,sourashtra,,,'ꢦꢭꢭꢪꢒꢮꢬ':1 'pollamkovri':2 'pŏllamkŏvri':3 'defraud':4 'பற':5,action|compound,पा॑ल्लम्का॑व्रि|பொல்லம்கொவ்ரி|po'llam ko'vri|pOllam kOvri|pŏllam kŏvri|polləm koʋɾɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,defraud,english,,english,,action|compound,,verb,
^,,குழிபறி,tamil,,tamil,'கழபற':1 'defraud':2 'பற':3,action|compound,பொல்லம்கொவ்ரி,verb,
-,ꢲ,ꢲꢹꢥ꣄ꢭꢔꢳ꣄ꢳꢿ,sourashtra,,,'ꢲꢥꢭꢔꢳꢳ':1 'hoonlagalle':2 'hunlagalle':3 'hūnlagalle':4 'bask':5,action|compound,हून्लगळ्ळे|ஹூன்லக3ள்ளே|hoonlagal'l'e|hUnlagaLLe|hūnlagal̤l̤e|ɦuːn̪ləgəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bask,english,,english,,action|compound,,verb,
^,,குளிர்காய்,tamil,,tamil,'களரகய':1 'bask':2,action|compound,ஹூன்லக3ள்ளே,verb,
-,ꢲ,ꢲꢷꢪ꣄ ꢙꢮꢞ꣄ꢳꢿ,sourashtra,,,'ꢲꢪꢙꢮꢞꢳ':1 'heemjavadle':2 'himjavadle':3 'hīmjavaḍle':4 'bask':5,action|compound,हीम जव्ड्ळे|ஹீம் ஜவட்3ளே|heem javad'l'e|hIm javaDLe|hīm javaḍl̤e|ɦiːm d͡ʒəʋəɖɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bask,english,,english,,action|compound,,verb,
^,,குளிர்காய்,tamil,,tamil,'களரகய':1 'bask':2,action|compound,ஹீம் ஜவட்3ளே,verb,
-,ꢗ,ꢗꢹꢒ꣄ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢗꢒꢱꢖꢔ':1 'chooksangi':2 'cuksaggi':3 'cūksaṅgi':4 'accuse':5 'றம':6,action|compound,चूक सङ्गि|சூக் ஸங்கி3|chook sangi|cUk saGgi|cūk saṅgi|t͡ʃuːk s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,accuse,english,,english,,action|compound,,verb,
^,,குற்றம்கூறு,tamil,,tamil,'கறறமகற':1 'accuse':2 'றம':3,action|compound,சூக் ஸங்கி3,verb,
-,ꢗ,ꢗꢹꢒ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢒꢒꢬ':1 'chookker':2 'cukker':3 'cūkker':4 'mistake':5 'றம':6,action|compound,चूक केर|சூக் கேர்|chook ker|cUk ker|cūk ker|t͡ʃuːk keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,do a mistake,english,,english,,action|compound,,verb,
^,,குற்றம்புரி,tamil,,tamil,'கறறமபர':1 'mistake':2 'றம':3,action|compound,சூக் கேர்,verb,
-,ꢦ,ꢦꣁꢱ꣄ꢪꢾ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢦꢱꢪꢱꢖꢔ':1 'posmesangi':2 'posmesaggi':3 'pŏsmĕsaṅgi':4 'foretell':5,action|compound,पा॑स्म॑ सङ्गि|பொஸ்மெ ஸங்கி3|po'sme' sangi|pOsmE saGgi|pŏsmĕ saṅgi|pos̪me s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,foretell,english,,english,,action|compound,,verb,
^,,குறிசொல்,tamil,,tamil,'கறசல':1 'foretell':2,action|compound,பொஸ்மெ ஸங்கி3,verb,
-,ꢲ,ꢲꢾꢞꢶ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢲꢞꢱꢖꢔ':1 'hedisangi':2 'hedisaggi':3 'hĕḍisaṅgi':4 'denote':5 'mention':6,action|compound,ह॑डि सङ्गि|ஹெடி3ஸங்கி3|he'd'i sangi|hEDi saGgi|hĕḍi saṅgi|ɦeɖɪ s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"denote, mention",english,,english,,action|compound,,verb,
^,,குறிப்பிடு,tamil,,tamil,'கறபபட':1 'denote':2 'mention':3,action|compound,ஹெடி3ஸங்கி3,verb,
-,ꢗ,ꢗꢶꢥ꣄ꢲꢸ ꢕꢵꢭ꣄,sourashtra,,,'ꢗꢥꢲꢕꢭ':1 'chinhughaal':2 'cinhughal':3 'cinhughāl':4 'mark':5,action|compound,चिनहु घाल|சின்ஹு கா4ல்|chinhu ghaal|cinhu ghAl|cinhu ghāl|t͡ʃɪn̪ɦu gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,mark,english,,english,,action|compound,,verb,
^,,குறியிடு,tamil,,tamil,'கறயட':1 'mark':2,action|compound,சின்ஹு கா4ல்,verb,
-,ꢭ,ꢭꢾꢒ꣄ꢒꢸ ꢢꣂꢮ꣄,sourashtra,,,'ꢭꢒꢒꢢꢮ':1 'lekkuthov':2 'lĕkkuthov':3 'aim':4,action|compound,ल॑क्कु थोव|லெக்கு தோ2வ்|le'kku thov|lEkku thov|lĕkku thov|lekku t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,aim at,english,,english,,action|compound,,verb,
^,,குறிவை,tamil,,tamil,'கறவ':1 'aim':2,action|compound,லெக்கு தோ2வ்,verb,
-,ꢤ,ꢤ꣄ꢫꢿꢫꢸ ꢢꣁꢮ꣄ꢭꢿ,sourashtra,,,'ꢤꢫꢫꢢꢮꢭ':1 'dhyeyuthovle':2 'dhyeyuthŏvle':3 'aim':4,action|compound,ध्येयु था॑व्ले|த்4யேயு தொ2வ்லே|dhyeyu tho'vle|dhyeyu thOvle|dhyeyu thŏvle|d̪ʰjeːju t̪ʰoʋleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,aim at,english,,english,,action|compound,,verb,
^,,குறிவை,tamil,,tamil,'கறவ':1 'aim':2,action|compound,த்4யேயு தொ2வ்லே,verb,
-,ꢭ,ꢭꢵꢙ꣄ꢭꢔꢳ꣄ꢳꢿ,sourashtra,,,'ꢭꢙꢭꢔꢳꢳ':1 'laajlagalle':2 'lajlagalle':3 'lājlagalle':4 'feel':5 'shy':6 'சப':7 'பட':8,action|compound,लाज्ल गळ्ळे|லாஜ்ல க3ள்ளே|laajlagal'l'e|lAjlagaLLe|lājlagal̤l̤e|lɑːd͡ʒləgəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,feel shy,english,,english,,action|compound,,verb,
^,,கூச்சப்படு,tamil,,tamil,'கசசபபட':1 'feel':2 'shy':3 'சப':4 'பட':5,action|compound,லாஜ்ல க3ள்ளே,verb,
-,ꢭ,ꢭꢵꢙ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢭꢙꢦꢥꢣ':1 'laajpondi':2 'lajpondi':3 'lājpŏndi':4 'feel':5 'shy':6 'சப':7 'பட':8,action|compound,लाज पा॑न्दि|லாஜ் பொந்தி3|laaj po'ndi|lAj pOndi|lāj pŏndi|lɑːd͡ʒ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,feel shy,english,,english,,action|compound,,verb,
^,,கூச்சப்படு,tamil,,tamil,'கசசபபட':1 'feel':2 'shy':3 'சப':4 'பட':5,action|compound,லாஜ் பொந்தி3,verb,
-,ꢬ,ꢬꢾꢗ꣄ꢗꣁ ꢪꢵꢜ꣄,sourashtra,,,'ꢬꢗꢗꢪꢜ':1 'rechchomaat':2 'reccomat':3 'rĕccŏmāṭ':4 'shout':5 'சல':6,action|compound,र॑च्चा॑ माट|ரெச்சொமாட்|re'chcho' maat'|rEccO mAT|rĕccŏ māṭ|ɾet͡ʃt͡ʃo mɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shout,english,,english,,action|compound,,verb,
^,,கூச்சலிடு,tamil,,tamil,'கசசலட':1 'shout':2 'சல':3,action|compound,ரெச்சொமாட்,verb,
-,ꢪ,ꢪꢸꢔꢵꢪ꣄ ꢡꢵꢫ꣄,sourashtra,,,'ꢪꢔꢪꢡꢫ':1 'mugaamtaay':2 'mugamtay':3 'mugāmtāy':4 'camp':5 'ரமட':6,action|compound,मुगाम्ताय्|முகா3ம்தாய்|mugaam taay|mugAm tAy|mugām tāy|mugɑːm t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,camp,english,,english,,action|compound,,verb,
^,,கூடாரமடி,tamil,,tamil,'கடரமட':1 'camp':2 'ரமட':3,action|compound,முகா3ம்தாய்,verb,
-,ꢮ,ꢮꢿꢥ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢥꢒꢬ':1 'venker':2 'enhance':3 'தல':4,action|compound,वेन्केर्|வேன் கேர்|venker|venker|venker|ʋeːn̪keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,enhance,english,,english,,action|compound,,verb,
^,,கூடுதலாக்கு,tamil,,tamil,'கடதலகக':1 'enhance':2 'தல':3,action|compound,வேன் கேர்,verb,
-,ꢬ,ꢬꢸꢣ꣄ꢬꢡꢵꢠ꣄ꢜꢮ꣄ ꢓꢵꢳ꣄,sourashtra,,,'ꢬꢣꢬꢡꢠꢜꢮꢓꢳ':1 'rudrataantavkhaal':2 'rudratantavkhal':3 'rudratāṇṭavkhāl':4 'dance':5 'anger':6,action|compound,रुद्रताण्टव खाळ|ருத்3ரதாண்ட3வ் கா2ள்|rudrataant'av khaal'|rudratANTav khAL|rudratāṇṭav khāl̤|ɾud̪ɾət̪ɑːɳʈəʋ kʰɑːɭ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,dance in anger,english,,english,,action|compound,,verb,
^,,கூத்தாடு,tamil,,tamil,'கததட':1 'dance':2 'anger':3,action|compound,ருத்3ரதாண்ட3வ் கா2ள்,verb,
-,ꢗ,ꢗꢹꢔ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢗꢔꢕꢭ':1 'choogghaal':2 'cugghal':3 'cūgghāl':4 'shout':5,action|compound,कूग घाल|கூக்3கா4ல்|choog ghaal|cUg ghAl|cūg ghāl|t͡ʃuːg gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shout,english,,english,,action|compound,,verb,
^,,கூப்பாடுபோடு,tamil,,tamil,'கபபடபட':1 'shout':2,action|compound,கூக்3கா4ல்,verb,
-,ꢒ,ꢒꢾꢛ꣄ꢙꢶꢪꢵꢫ꣄,sourashtra,,,'ꢒꢛꢙꢪꢫ':1 'kenjimaay':2 'kejjimay':3 'kĕñjimāy':4 'entreat':5,action|compound,क॑ञ्जिमाय्|கெஞ்ஜிமாய்|ke'njimaay|kEJjimAy|kĕñjimāy|keɲd͡ʒɪmɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,entreat,english,,english,,action|compound,,verb,
^,,கெஞ்சிக்கேள்,tamil,,tamil,'கஞசககள':1 'entreat':2,action|compound,கெஞ்ஜிமாய்,verb,
-,ꢓ,ꢓꢾꢭ꣄ꢭꢭ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢓꢭꢭꢭꢒꢬ':1 'khellalker':2 'khĕllalker':3 'jest':4,action|compound,ख॑ल्लल्केर्|கெ2ல்லல்கேர்|khe'llalker|khEllalker|khĕllalker|kʰelləlkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,jest,english,,english,,action|compound,,verb,
^,,கேலி செய்,tamil,,tamil,'கலசய':1 'jest':2,action|compound,கெ2ல்லல்கேர்,verb,
-,ꢂ,ꢂꢮ꣄ꢪꢵꢥ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢂꢮꢪꢥꢦꢜ':1 'avmaanpot':2 'avmanpot':3 'avmānpoṭ':4 'mocked':5 'mock':6 'வலப':7 'பட':8,action|compound,अव्मान्पोट्|அவ்மான்போட்|avmaan pot'|avmAn poT|avmān poṭ|əʋmɑːn̪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be mocked,english,,english,,action|compound,,verb,
^,,கேவலப்படு,tamil,,tamil,'கவலபபட':1 'mocked':2 'mock':3 'வலப':4 'பட':5,action|compound,அவ்மான்போட்,verb,
-,ꢎ,ꢎꢒꢶꢥ ꢶꢦꣂꢜ꣄,sourashtra,,,'ꢎꢒꢥꢦꢜ':1 'aikinaipot':2 'aikinaipoṭ':3 'have':4 'heard':5 'hear':6 'பட':7,action|compound,ऐकिनि पोट्|ஐகினி போட்|aikina ipot'|aikina ipoT|aikina ipoṭ|əɪkɪn̪ə ɪpoːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,have heard of,english,,english,,action|compound,,verb,
^,,கேள்விப்படு,tamil,,tamil,'களவபபட':1 'have':2 'heard':3 'hear':4 'பட':5,action|compound,ஐகினி போட்,verb,
-,ꢲ,ꢲꢵꢡꢸꢪ꣄ ꢓꢳ꣄ꢳꢾ,sourashtra,,,'ꢲꢡꢪꢓꢳꢳ':1 'haatumkhalle':2 'hatumkhalle':3 'hātumkhallĕ':4 'take':5 'hand':6,action|compound,हातुम्खळ्ळे|ஹாதும் க2ள்ளே|haatum khal'l'e'|hAtum khaLLE|hātum khal̤l̤ĕ|ɦɑːt̪um kʰəɭɭe,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,take in hand,english,,english,,action|compound,,verb,
^,,கைக்கொள்,tamil,,tamil,'கககள':1 'take':2 'hand':3,action|compound,ஹாதும் க2ள்ளே,verb,
-,ꢲ,ꢲꢵꢡ꣄ ꢲꢭ꣄ꢮꢶ,sourashtra,,,'ꢲꢡꢲꢭꢮ':1 'haathalvi':2 'hathalvi':3 'hāthalvi':4 'shake':5 'hand':6,action|compound,हात हल्वि|ஹாத் ஹல்வி|haat halvi|hAt halvi|hāt halvi|ɦɑːt̪ ɦəlʋɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shake hand,english,,english,,action|compound,,verb,
^,,கைக்குலுக்கு,tamil,,tamil,'கககலகக':1 'shake':2 'hand':3,action|compound,ஹாத் ஹல்வி,verb,
-,ꢣ,ꢣꢷꢲꢵꢡ꣄ ꢗꢾꢬ꣄ꢗꢶꢭꢶ ꢂꢛ꣄ꢙꢭꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢣꢲꢡꢗꢬꢗꢭꢂꢛꢙꢭꢒꢬ':1 'deehaatcherchilianjaliker':2 'dihatcerciliajjaliker':3 'dīhātcĕrciliañjaliker':4 'greet':5,action|compound,दीहात च॑र्चिलि अञ्जलि केर|தீ3ஹாத்செர்சிலி அஞ்ஜலி கேர்|deehaat che'rchili anjali ker|dIhAt cErcili aJjali ker|dīhāt cĕrcili añjali ker|d̪iːɦɑːt̪ t͡ʃeɾt͡ʃɪlɪ əɲd͡ʒəlɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,greet,english,,english,,action|compound,,verb,
^,,கைகுவி,tamil,,tamil,'ககவ':1 'greet':2,action|compound,தீ3ஹாத்செர்சிலி அஞ்ஜலி கேர்,verb,
-,ꢱ,ꢱꢶꢣ꣄ꢤꢶ ꢲꣂ,sourashtra,,,'ꢱꢣꢤꢲ':1 'siddhiho':2 'fulfilled':3 'fulfil':4,action|compound,सिद्धि हो|ஸித்3தி4 ஹோ|siddhi ho|siddhi ho|siddhi ho|s̪ɪd̪d̪ʰɪ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to be fulfilled,english,,english,,action|compound,,verb,
^,,கைகூடு,tamil,,tamil,'ககட':1 'fulfilled':2 'fulfil':3,action|compound,ஸித்3தி4 ஹோ,verb,
-,ꢲ,ꢲꢵꢡ꣄ ꢡꢾꢜ꣄ꢜꢶ,sourashtra,,,'ꢲꢡꢡꢜꢜ':1 'haattetti':2 'hattetti':3 'hāttĕṭṭi':4 'clap':5,action|compound,हात्त॑ट्टि|ஹாத்தெட்டி|haat te't't'i|hAt tETTi|hāt tĕṭṭi|ɦɑːt̪ t̪eʈʈɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,clap,english,,english,,action|compound,,verb,
^,,கைகொட்டு,tamil,,tamil,'ககடட':1 'clap':2,action|compound,ஹாத்தெட்டி,verb,
-,ꢒ,ꢒꣀꢣꢸꢒꢾꢬ꣄,sourashtra,,,'ꢒꢣꢒꢬ':1 'kaiduker':2 'kaidukĕr':3 'arrest':4,action|compound,कैदुकेर|கைது3கேர்|kaiduke'r|kaidukEr|kaidukĕr|kəɪd̪ukeɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,arrest,english,,english,,action|compound,,verb,
^,,கைது செய்,tamil,,tamil,'கதசய':1 'arrest':2,action|compound,கைது3கேர்,verb,
-,ꢨ,ꢨꢥ꣄ꢣꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢥꢣꢒꢬ':1 'bandiker':2 'arrest':3,action|compound,बन्दिकेर|ப3ந்தி3 கேர்|bandi ker|bandi ker|bandi ker|bən̪d̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,arrest,english,,english,,action|compound,,verb,
^,,கைது செய்,tamil,,tamil,'கதசய':1 'arrest':2,action|compound,ப3ந்தி3 கேர்,verb,
-,ꢦ,ꢦꢵꢠꢶꢔ꣄ꢬꢲꢥꣁ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢦꢠꢔꢬꢲꢥꢒꢬꢭ':1 'paanigrahanokerle':2 'panigrahanokerle':3 'pāṇigrahanŏkĕrle':4 'marry':5 'பற':6,action|compound,पाणिगरहना॑ क॑र्ले|பாணிக்3ரஹனொ கெர்லே|paanigrahano' ke'rle|pANigrahanO kErle|pāṇigrahanŏ kĕrle|pɑːɳɪgɾəɦən̪o keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,marry,english,,english,,action|compound,,verb,
^,,கைப்பற்று,tamil,,tamil,'கபபறற':1 'marry':2 'பற':3,action|compound,பாணிக்3ரஹனொ கெர்லே,verb,
-,ꢲ,ꢲꣁꢬꢵꢜ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢲꢬꢜꢒꢬꢭ':1 'horaatkerle':2 'horatkerle':3 'hŏrāṭkĕrle':4 'marry':5 'பற':6,action|compound,हा॑राट क॑र्ले|ஹொராட் கெர்லே|ho'raat' ke'rle|hOrAT kErle|hŏrāṭ kĕrle|ɦoɾɑːʈ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,marry,english,,english,,action|compound,,verb,
^,,கைப்பற்று,tamil,,tamil,'கபபறற':1 'marry':2 'பற':3,action|compound,ஹொராட் கெர்லே,verb,
-,ꢲ,ꢲꢵꢡ꣄ ꢢꣂꢮ꣄,sourashtra,,,'ꢲꢡꢢꢮ':1 'haatthov':2 'hatthov':3 'hātthov':4 'misappropriate':5,action|compound,हात्थोव्|ஹாத்தோ2வ்|haat thov|hAt thov|hāt thov|ɦɑːt̪ t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,misappropriate,english,,english,,action|compound,,verb,
^,,கையாடு,tamil,,tamil,'கயட':1 'misappropriate':2,action|compound,ஹாத்தோ2வ்,verb,
-,ꢗ,ꢗꢭ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢭꢡꢒꢬ':1 'chaltoker':2 'caltoker':3 'caltŏker':4 'handle':5,action|compound,चल्त्ता॑ केर|சல்தொ கேர்|chalto' ker|caltO ker|caltŏ ker|t͡ʃəlt̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,handle,english,,english,,action|compound,,verb,
^,,கையாள்,tamil,,tamil,'கயள':1 'handle':2,action|compound,சல்தொ கேர்,verb,
-,ꢱ,ꢱꣁꢞ꣄ꢞꢶ ꢙꢵ,sourashtra,,,'ꢱꢞꢞꢙ':1 'soddijaa':2 'soddija':3 'sŏḍḍijā':4 'leave':5,action|compound,सा॑ड्डिजा|ஸொட்3டி3ஜா|so'd'd'i jaa|sODDi jA|sŏḍḍi jā|s̪oɖɖɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,leave,english,,english,,action|compound,,verb,
^,,கைவிடு,tamil,,tamil,'கவட':1 'leave':2,action|compound,ஸொட்3டி3ஜா,verb,
-,ꢤ,ꢤꣁꢪ꣄ꢨꢸꢭꢵꢫ꣄ ꢡꢿ,sourashtra,,,'ꢤꢪꢨꢭꢫꢡ':1 'dhombulaayte':2 'dhombulayte':3 'dhŏmbulāyte':4 'yawn':5,action|compound,धा॑म्बुलाय्द॑|தொ4ம்பு3ளாய்தே3|dho'mbulaay te|dhOmbulAy te|dhŏmbulāy te|d̪ʰombulɑːj t̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,yawn,english,,english,,action|compound,,verb,
^,,கொட்டாவிவிடு,tamil,,tamil,'கடடவவட':1 'yawn':2,action|compound,தொ4ம்பு3ளாய்தே3,verb,
-,ꢣ,ꢣꢸꢬꢵꢗꢬꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢣꢬꢗꢬꢠꢒꢬ':1 'duraacharanoker':2 'duracaranoker':3 'durācaraṇŏker':4 'ill':5 'treat':6 'பட':7,action|compound,दुराचरणा॑ केर|து3ராசரணொ கேர்|duraacharano' ker|durAcaraNO ker|durācaraṇŏ ker|d̪uɾɑːt͡ʃəɾəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,ill treat,english,,english,,action|compound,,verb,
^,,கொடுமைப்படுத்து,tamil,,tamil,'கடமபபடதத':1 'ill':2 'treat':3 'பட':4,action|compound,து3ராசரணொ கேர்,verb,
-,ꢲ,ꢲꢶꢪ꣄ꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢪꢱꢒꢬ':1 'himsoker':2 'himsŏker':3 'ill':4 'treat':5 'பட':6,action|compound,हिम्सा॑ केर|ஹிம்ஸொ கேர்|himso' ker|himsO ker|himsŏ ker|ɦɪms̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,ill treat,english,,english,,action|compound,,verb,
^,,கொடுமைப்படுத்து,tamil,,tamil,'கடமபபடதத':1 'ill':2 'treat':3 'பட':4,action|compound,ஹிம்ஸொ கேர்,verb,
-,ꢬ,ꢬꢾꢔꢡ꣄ ꢓꢾꢞ꣄,sourashtra,,,'ꢬꢔꢡꢓꢞ':1 'regatkhed':2 'rĕgatkhĕḍ':3 'boil':4,action|compound,र॑गत खेड|ரெக3த்கே2ட்3|re'gat khe'd'|rEgat khED|rĕgat khĕḍ|ɾegət̪ kʰeɖ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,boil,english,,english,,action|compound,,verb,
^,,கொதிப்புறு,tamil,,tamil,'கதபபற':1 'boil':2,action|compound,ரெக3த்கே2ட்3,verb,
-,ꢙ,ꢙꢷꢮ꣄ ꢣꢹꢱ꣄,sourashtra,,,'ꢙꢮꢣꢱ':1 'jeevdoos':2 'jivdus':3 'jīvdūs':4 'murder':5,action|compound,जिव्दूस्|ஜீவ் தூ3ஸ்|jeev doos|jIv dUs|jīv dūs|d͡ʒiːʋ d̪uːs̪,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,murder,english,,english,,action|compound,,verb,
^,,கொலை செய்,tamil,,tamil,'கலசய':1 'murder':2,action|compound,ஜீவ் தூ3ஸ்,verb,
-,ꢭ,ꢭꢹꢜ꣄ꢪꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢭꢜꢪꢬꢒꢬ':1 'lootmaarker':2 'lutmarker':3 'lūṭmārker':4 'rob':5 'plunder':6 'யட':7,action|compound,लूट्मार केर|லூட்மார் கேர்|loot'maar ker|lUTmAr ker|lūṭmār ker|luːʈmɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Rob/ plunder,english,,english,,action|compound,,verb,
^,,கொள்ளையடி,tamil,,tamil,'களளயட':1 'rob':2 'plunder':3 'யட':4,action|compound,லூட்மார் கேர்,verb,
-,ꢱ,ꢱꢹꢜ꣄ ꢲꢵꢥ꣄,sourashtra,,,'ꢱꢜꢲꢥ':1 'soothaan':2 'suthan':3 'sūṭhān':4 'rob':5 'plunder':6 'யட':7,action|compound,सूट हान|ஸூட் ஹான்|soot' haan|sUT hAn|sūṭ hān|s̪uːʈ ɦɑːn̪,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Rob/ plunder,english,,english,,action|compound,,verb,
^,,கொள்ளையடி,tamil,,tamil,'களளயட':1 'rob':2 'plunder':3 'யட':4,action|compound,ஸூட் ஹான்,verb,
-,ꢕ,ꢕꢾꢥꢪ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢕꢥꢪꢦꢥꢣ':1 'ghenampondi':2 'ghĕnampŏndi':3 'have':4 'prestige':5 'ரவம':6,action|compound,घ॑नम पा॑न्दि|கெ4னம் பொந்தி3|ghe'nam po'ndi|ghEnam pOndi|ghĕnam pŏndi|gʰen̪əm pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,have prestige,english,,english,,action|compound,,verb,
^,,கௌரவம்கொள்,tamil,,tamil,'கரவமகள':1 'have':2 'prestige':3 'ரவம':4,action|compound,கெ4னம் பொந்தி3,verb,
-,ꢱ,ꢱꢜ꣄ꢜꢪ꣄ ꢡꢵ,sourashtra,,,'ꢱꢜꢜꢪꢡ':1 'sattamtaa':2 'sattamta':3 'saṭṭamtā':4 'enframe':5 'சட':6 'டம':7,action|compound,सट्टाम्ताय्|ஸட்டம்தாய்|sat't'am taa|saTTam tA|saṭṭam tā|s̪əʈʈəm t̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,enframe,english,,english,,action|compound,,verb,
^,,சட்டம்போடு,tamil,,tamil,'சடடமபட':1 'enframe':2 'சட':3 'டம':4,action|compound,ஸட்டம்தாய்,verb,
-,ꢚ,ꢚꢾꢞꣁ ꢪꢭ꣄ꢭꢿ,sourashtra,,,'ꢚꢞꢪꢭꢭ':1 'jhedomalle':2 'jhĕḍŏmalle':3 'quarrel':4 'சண':5,action|compound,झ॑डा॑ मल्ले|ஜெ2டொ3 மல்லே|jhe'd'o' malle|jhEDO malle|jhĕḍŏ malle|d͡ʒʰeɖo məlleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,quarrel,english,,english,,action|compound,,verb,
^,,சண்டையிடு,tamil,,tamil,'சணடயட':1 'quarrel':2 'சண':3,action|compound,ஜெ2டொ3 மல்லே,verb,
-,ꢔ,ꢔꢹꢟꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢔꢟꢒꢬ':1 'goodhoker':2 'gudhoker':3 'gūḍhŏker':4 'plot':5 'against':6 'சத':7,action|compound,गूढा॑ केर्|கூ3டொ4 கேர்|good'ho' ker|gUDhO ker|gūḍhŏ ker|guːɖʰo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Plot against,english,,english,,action|compound,,verb,
^,,சதி செய்,tamil,,tamil,'சதசய':1 'plot':2 'against':3 'சத':4,action|compound,கூ3டொ4 கேர்,verb,
-,ꢱ,ꢱꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢡꢒꢬ':1 'satiker':2 'plot':3 'against':4 'சத':5,action|compound,सति केर|ஸதி கேர்|sati ker|sati ker|sati ker|s̪ət̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Plot against,english,,english,,action|compound,,verb,
^,,சதி செய்,tamil,,tamil,'சதசய':1 'plot':2 'against':3 'சத':4,action|compound,ஸதி கேர்,verb,
-,ꢱ,ꢱꣁꢥ꣄ꢡꣂꢰ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢱꢥꢡꢰꢦꢜ':1 'sontoshpot':2 'sontospot':3 'sŏntoṣpoṭ':4 'enjoy':5 'சந':6 'ஷப':7 'பட':8,action|compound,सोन्तोष पा॑ट|ஸொந்தோஷ் போட்|so'ntosh pot'|sOntoS poT|sŏntoṣ poṭ|s̪on̪t̪oːʂ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,enjoy,english,,english,,action|compound,,verb,
^,,சந்தோஷப்படு,tamil,,tamil,'சநதஷபபட':1 'enjoy':2 'சந':3 'ஷப':4 'பட':5,action|compound,ஸொந்தோஷ் போட்,verb,
-,ꢱ,ꢱꢪꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢒꢬ':1 'samoker':2 'samŏker':3 'equalize':4 'சமம':5,action|compound,समा॑ केर|ஸமொகேர்|samo' ker|samO ker|samŏ ker|s̪əmo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,equalize,english,,english,,action|compound,,verb,
^,,சமமாக்கு,tamil,,tamil,'சமமகக':1 'equalize':2 'சமம':3,action|compound,ஸமொகேர்,verb,
-,ꢱ,ꢱꢪꢤꢵꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢤꢥꢒꢬ':1 'samadhaanker':2 'samadhanker':3 'samadhānker':4 'compromise':5 'சம':6 'னப':7 'பட':8,action|compound,समधान केर|ஸமதா4ன் கேர்|samadhaan ker|samadhAn ker|samadhān ker|s̪əməd̪ʰɑːn̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compromise,english,,english,,action|compound,,verb,
^,,சமாதானப்படுத்து,tamil,,tamil,'சமதனபபடதத':1 'compromise':2 'சம':3 'னப':4 'பட':5,action|compound,ஸமதா4ன் கேர்,verb,
-,ꢲ,ꢲꢥ꣄ꢣꢶ,sourashtra,,,'ꢲꢥꢣ':1 'handi':2 'cook':3 'சம':4 'யல':5,action|compound,हन्दि|ஹந்தி3|handi|handi|handi|ɦən̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,cook,english,,english,,action|compound,,verb,
^,,சமையல் செய்,tamil,,tamil,'சமயலசய':1 'cook':2 'சம':3 'யல':4,action|compound,ஹந்தி3,verb,
-,ꢱ,ꢱꢬꢠꢵꢔꢣꢶꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢱꢬꢠꢔꢣꢦꢥꢣ':1 'saranaagadipondi':2 'saranagadipondi':3 'saraṇāgadipŏndi':4 'surrender':5 'சரணட':6,action|compound,सरणागतिपा॑न्दि|ஸரணாக3திபொந்தி3|saranaagadipo'ndi|saraNAgadipOndi|saraṇāgadipŏndi|s̪əɾəɳɑːgəd̪ɪpon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,surrender,english,,english,,action|compound,,verb,
^,,சரணடை,tamil,,tamil,'சரணட':1 'surrender':2,action|compound,ஸரணாக3திபொந்தி3,verb,
-,ꢭ,ꢭꢾꢒ꣄ꢒ ꢱꣁꢬ꣄ꢒ꣄ꢒꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢭꢒꢒꢱꢬꢒꢒꢒꢬ':1 'lekkasorkkoker':2 'lĕkkasŏrkkŏker':3 'tally':4 'சர':5 'கட':6,action|compound,ल्ह॑क्कस॑र्क्का॑ केर्|லெ:க்கஸெர்கொ கேர்|le'kka so'rkko' ker|lEkka sOrkkO ker|lĕkka sŏrkkŏ ker|lekkə s̪oɾkko keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,tally,english,,english,,action|compound,,verb,
^,,சரிக்கட்டு,tamil,,tamil,'சரககடட':1 'tally':2 'சர':3 'கட':4,action|compound,லெ:க்கஸெர்கொ கேர்,verb,
-,ꢱ,ꢱꢾꢬ꣄ꢒ꣄ꢒ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢬꢒꢒꢒꢬ':1 'serkkaker':2 'sĕrkkaker':3 'make':4 'correction':5 'சர':6 'பட':7,action|compound,स॑र्क्क केर्|ஸெர்ககேர்|se'rkka ker|sErkka ker|sĕrkka ker|s̪eɾkkə keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make correction,english,,english,,action|compound,,verb,
^,,சரிப்படுத்து,tamil,,tamil,'சரபபடதத':1 'make':2 'correction':3 'சர':4 'பட':5,action|compound,ஸெர்ககேர்,verb,
-,ꢗ,ꢗꢾꢭ꣄ꢮꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢭꢮꢒꢬ':1 'chelvoker':2 'celvoker':3 'cĕlvŏker':4 'wash':5 'சலவ':6,action|compound,च॑ल्वा॑ केर्|செல்வொகேர்|che'lvo' ker|cElvO ker|cĕlvŏ ker|t͡ʃelʋo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wash,english,,english,,action|compound,,verb,
^,,சலவை செய்,tamil,,tamil,'சலவசய':1 'wash':2 'சலவ':3,action|compound,செல்வொகேர்,verb,
-,ꢪ,ꢪꣁꢬ꣄ꢔ꣄ꢫꢵꢡ꣄ ꢒꢳꢵꢜ꣄,sourashtra,,,'ꢪꢬꢔꢫꢡꢒꢳꢜ':1 'morgyaatkalaat':2 'morgyatkalat':3 'mŏrgyātkalāṭ':4 'greet':5 'salute':6 'சல':7,action|compound,मोर्ग्यात कळाट|மொர்க்3யாத் களாட்|mo'rgyaat kal'aat'|mOrgyAt kaLAT|mŏrgyāt kal̤āṭ|moɾgjɑːt̪ kəɭɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Greet/ salute,english,,english,,action|compound,,verb,
^,,சலாமிடு,tamil,,tamil,'சலமட':1 'greet':2 'salute':3 'சல':4,action|compound,மொர்க்3யாத் களாட்,verb,
-,ꢱ,ꢱꢾꢭ꣄ꢒꢾ ꢣꢾꢒ꣄ꢒꢵꢜ꣄,sourashtra,,,'ꢱꢭꢒꢣꢒꢒꢜ':1 'selkedekkaat':2 'selkedekkat':3 'sĕlkĕdĕkkāṭ':4 'give':5 'concession':6 'சல':7,action|compound,स॑ल्क॑ देक्काट्|ஸெல்கெ தெ3க்காட்|se'lke' de'kkaat'|sElkE dEkkAT|sĕlkĕ dĕkkāṭ|s̪elke d̪ekkɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give concession,english,,english,,action|compound,,verb,
^,,சலுகைகாட்டு,tamil,,tamil,'சலககடட':1 'give':2 'concession':3 'சல':4,action|compound,ஸெல்கெ தெ3க்காட்,verb,
-,ꢦ,ꢦꢾꢫꢶꢬ꣄ ꢙꢸꢥ꣄ꢥꢶ,sourashtra,,,'ꢦꢫꢬꢙꢥꢥ':1 'peyirjunni':2 'pĕyirjunni':3 'cultivate':4 'பட':5,action|compound,प॑यिर जुन्नि|பெயிர் ஜுன்னி|pe'yir junni|pEyir junni|pĕyir junni|pejɪɾ d͡ʒun̪n̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to cultivate,english,,english,,action|compound,,verb,
^,,சாகுபடி செய்,tamil,,tamil,'சகபடசய':1 'cultivate':2 'பட':3,action|compound,பெயிர் ஜுன்னி,verb,
-,ꢦ,ꢦ꣄ꢬꢪꢵꢠ ꣄ꢣꢾ,sourashtra,,,'ꢦꢬꢪꢠꢣ':1 'pramaanade':2 'pramanade':3 'pramāṇadĕ':4 'certify':5 'றள':6,action|compound,प्रमाण्दे|ப்ரமாண்தே3|pramaana de'|pramANa dE|pramāṇa dĕ|pɾəmɑːɳə d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,certify,english,,english,,action|compound,,verb,
^,,சான்றளி,tamil,,tamil,'சனறள':1 'certify':2 'றள':3,action|compound,ப்ரமாண்தே3,verb,
-,ꢦ,ꢦ꣄ꢬꢪꢵꢠ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢪꢠꢒꢬ':1 'pramaanker':2 'pramanker':3 'pramāṇker':4 'certify':5 'றள':6,action|compound,प्रमाण केर|ப்ரமாண் கேர்|pramaan ker|pramAN ker|pramāṇ ker|pɾəmɑːɳ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,certify,english,,english,,action|compound,,verb,
^,,சான்றளி,tamil,,tamil,'சனறள':1 'certify':2 'றள':3,action|compound,ப்ரமாண் கேர்,verb,
-,ꢨ,ꢨꢸꢱ꣄ꢒꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢱꢒꢒꢬ':1 'buskoker':2 'buskŏker':3 'entangle':4 'கல':5,action|compound,बुस्का॑ केर्|பு3ஸ்கொகேர்|busko' ker|buskO ker|buskŏ ker|bus̪ko keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,entangle,english,,english,,action|compound,,verb,
^,,சிக்கலாக்கு,tamil,,tamil,'சககலகக':1 'entangle':2 'கல':3,action|compound,பு3ஸ்கொகேர்,verb,
-,ꢱ,ꢱꢪ꣄ꢜꢵꢜ꣄,sourashtra,,,'ꢱꢪꢜꢜ':1 'samtaat':2 'samtat':3 'samṭāṭ':4 'embrangle':5 'கவ':6,action|compound,सम्टाट्|ஸம்டாட்|samt'aat'|samTAT|samṭāṭ|s̪əmʈɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,embrangle,english,,english,,action|compound,,verb,
^,,சிக்கவை,tamil,,tamil,'சககவ':1 'embrangle':2 'கவ':3,action|compound,ஸம்டாட்,verb,
-,ꢱ,ꢱꢾꢜ꣄ꢜꢸꢒꢥ꣄ ꢬꢴꢵ,sourashtra,,,'ꢱꢜꢜꢒꢥꢬ':1 'settukanrhaa':2 'settukanrha':3 'sĕṭṭukanrhā':4 'economize':5 'கன':6,action|compound,स॑ट्टुकन र्हा:|ஸொட்டுகன் ரா:|se't't'ukan rhaa|sETTukan rhA|sĕṭṭukan rhā|s̪eʈʈukən̪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,economize,english,,english,,action|compound,,verb,
^,,சிக்கனைமாயிரு,tamil,,tamil,'சககனமயர':1 'economize':2 'கன':3,action|compound,ஸொட்டுகன் ரா:,verb,
-,ꢮ,ꢮꢿꢥ꣄ ꢱꢶꢳ꣄ꢳ ꢦꣂꢜ꣄,sourashtra,,,'ꢮꢥꢱꢳꢳꢦꢜ':1 'vensillapot':2 'vensillapoṭ':3 'chill':4,action|compound,वेन्सिळ्ळ पोट्|வேன்ஸிள்ளபோட்|ven sil'l'a pot'|ven siLLa poT|ven sil̤l̤a poṭ|ʋeːn̪ s̪ɪɭɭə poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be chill,english,,english,,action|compound,,verb,
^,,சில்லிடு,tamil,,tamil,'சலலட':1 'chill':2,action|compound,வேன்ஸிள்ளபோட்,verb,
-,ꢓ,ꢓ꣄ꢫꢵꢡꢶ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢓꢫꢡꢦꢥꢣ':1 'khyaatipondi':2 'khyatipondi':3 'khyātipŏndi':4 'get':5 'fame':6 'றப':7,action|compound,ख्याति पा॑न्दि|க்2யாதிபொந்தி3|khyaati po'ndi|khyAti pOndi|khyāti pŏndi|kʰjɑːt̪ɪ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get fame,english,,english,,action|compound,,verb,
^,,சிறப்புறு,tamil,,tamil,'சறபபற':1 'get':2 'fame':3 'றப':4,action|compound,க்2யாதிபொந்தி3,verb,
-,ꢪ,ꢪꢸꢡ꣄ꢡꢶ,sourashtra,,,'ꢪꢡꢡ':1 'mutti':2 'pass':3 'urine':4 'pas':5 'கழ':6,action|compound,मुत्ति|முத்தி|mutti|mutti|mutti|mut̪t̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,pass urine,english,,english,,action|compound,,verb,
^,,சிறுநீர்கழி,tamil,,tamil,'சறநரகழ':1 'pass':2 'urine':3 'pas':4 'கழ':5,action|compound,முத்தி,verb,
-,ꢂ,ꢂꢭꢖ꣄ꢔꣂꢭꢪ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢂꢭꢖꢔꢭꢪꢒꢬ':1 'alangolamker':2 'alaggolamker':3 'alaṅgolamker':4 'disorder':5,action|compound,अलङ्गोलम केर|அலங்கோ3லம் கேர்|alangolam ker|alaGgolam ker|alaṅgolam ker|ələŋgoːləm keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,disorder,english,,english,,action|compound,,verb,
^,,சீர்குலை,tamil,,tamil,'சரகல':1 'disorder':2,action|compound,அலங்கோ3லம் கேர்,verb,
-,ꢔ,ꢔꢸꢠ꣄ꢠꢸ ꢥꢴꢷꢡ꣄ꢡꣁ ꢬꢵ,sourashtra,,,'ꢔꢠꢠꢥꢡꢡꢬ':1 'gunnunheettoraa':2 'gunnunhittora':3 'guṇṇunhīttŏrā':4 'degenerate':5,action|compound,गुण्णु न्हीत्तो रा|கு3ண்ணு நீ:த்தொ ரா:|gunnu nheetto' raa|guNNu nhIttO rA|guṇṇu nhīttŏ rā|guɳɳu n̪ɦiːt̪t̪o ɾɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,degenerate,english,,english,,action|compound,,verb,
^,,சீர்கெடு,tamil,,tamil,'சரகட':1 'degenerate':2,action|compound,கு3ண்ணு நீ:த்தொ ரா:,verb,
-,ꢱ,ꢱꢹꢤꢵꢬ꣄ ꢒꢾꢬ꣄,sourashtra,,,'ꢱꢤꢬꢒꢬ':1 'soodhaarker':2 'sudharker':3 'sūdhārkĕr':4 'reform':5,action|compound,सुधार्केर्|ஸுதா4ர்கேர்|soodhaar ke'r|sUdhAr kEr|sūdhār kĕr|s̪uːd̪ʰɑːɾ keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,reform,english,,english,,action|compound,,verb,
^,,சீர்திருத்து,tamil,,tamil,'சரதரதத':1 'reform':2,action|compound,ஸுதா4ர்கேர்,verb,
-,ꢥ,ꢥꢶꢫꢪꣁ ꢥꢵꢯ꣄,sourashtra,,,'ꢥꢫꢪꢥꢯ':1 'niyamonaash':2 'niyamonaz':3 'niyamŏnāś':4 'make':5 'disorder':6 'degenerate':7 'ரழ':8,action|compound,नियमा॑ नाश|நியமொ நாஶ்|niyamo' naash|niyamO nAz|niyamŏ nāś|n̪ɪjəmo n̪ɑːʃ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Make disorder / degenerate,english,,english,,action|compound,,verb,
^,,சீரழி,tamil,,tamil,'சரழ':1 'make':2 'disorder':3 'degenerate':4 'ரழ':5,action|compound,நியமொ நாஶ்,verb,
-,ꢪ,ꢪꢶꢜ꣄ꢜꢶ ꢱꣂꢜ꣄,sourashtra,,,'ꢪꢜꢜꢱꢜ':1 'mittisot':2 'miṭṭisoṭ':3 'flip':4,action|compound,मिट्टिसोट्|மிட்டிஸோட்|mit't'i sot'|miTTi soT|miṭṭi soṭ|mɪʈʈɪ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,flip,english,,english,,action|compound,,verb,
^,,சுண்டிவிடு,tamil,,tamil,'சணடவட':1 'flip':2,action|compound,மிட்டிஸோட்,verb,
-,ꢗ,ꢗꢸꢜ꣄ꢜꢸ ꢡꢒꢶ ꢤꢿꢬ꣄,sourashtra,,,'ꢗꢜꢜꢡꢒꢤꢬ':1 'chuttutakidher':2 'cuttutakidher':3 'cuṭṭutakidher':4 'besiege':5 'வள':6,action|compound,चुट्टु तकि धेर्|சுட்டு தகி3 தே4ர்|chut't'u taki dher|cuTTu taki dher|cuṭṭu taki dher|t͡ʃuʈʈu t̪əkɪ d̪ʰeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Besiege,english,,english,,action|compound,,verb,
^,,சுற்றிவளை,tamil,,tamil,'சறறவள':1 'besiege':2 'வள':3,action|compound,சுட்டு தகி3 தே4ர்,verb,
-,ꢲ,ꢲꢸꢥ꣄ꢥ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢥꢥꢒꢬ':1 'hunnaker':2 'heatup':3,action|compound,हुन्न केर्|ஹுன்னொகேர்|hunna ker|hunna ker|hunna ker|ɦun̪n̪ə keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Heatup,english,,english,,action|compound,,verb,
^,,சூடாக்கு,tamil,,tamil,'சடகக':1 'heatup':2,action|compound,ஹுன்னொகேர்,verb,
-,ꢲ,ꢲꢸꢥ꣄ꢥ ꢲꣁ,sourashtra,,,'ꢲꢥꢥꢲ':1 'hunnaho':2 'hunnahŏ':3 'become':4 'hot':5,action|compound,हुन्नहो|ஹுன்னொ ஹோ|hunna ho'|hunna hO|hunna hŏ|ɦun̪n̪ə ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become hot,english,,english,,action|compound,,verb,
^,,சூடேறு,tamil,,tamil,'சடற':1 'become':2 'hot':3,action|compound,ஹுன்னொ ஹோ,verb,
-,ꢲ,ꢲꢸꢦꢵꢮ꣄ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢦꢮꢒꢬ':1 'hupaavker':2 'hupavker':3 'hupāvker':4 'intrigue':5,action|compound,हुपाव्केर|ஹுபாவ்கேர்|hupaavker|hupAvker|hupāvker|ɦupɑːʋkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,intrigue,english,,english,,action|compound,,verb,
^,,சூழ்ச்சி செய்,tamil,,tamil,'சழசசசய':1 'intrigue':2,action|compound,ஹுபாவ்கேர்,verb,
-,ꢱ,ꢱꢞ꣄ꢫꢥ꣄ꢡ꣄ꢬꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢞꢫꢥꢡꢬꢒꢬ':1 'sadyantruker':2 'saḍyantruker':3 'intrigue':4,action|compound,सड्यन्त्रु केर|ஸட்3யந்த்ரு கேர்|sad'yantru ker|saDyantru ker|saḍyantru ker|s̪əɖjən̪t̪ɾu keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,intrigue,english,,english,,action|compound,,verb,
^,,சூழ்ச்சி செய்,tamil,,tamil,'சழசசசய':1 'intrigue':2,action|compound,ஸட்3யந்த்ரு கேர்,verb,
-,ꢱ,ꢱꢹꢬꢾ ꢡꢵꢫ꣄,sourashtra,,,'ꢱꢬꢡꢫ':1 'sooretaay':2 'suretay':3 'sūrĕtāy':4 'forage':5,action|compound,सुरेताय्|ஸூரெதாய்|soore' taay|sUrE tAy|sūrĕ tāy|s̪uːɾe t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,forage,english,,english,,action|compound,,verb,
^,,சூறையாடு,tamil,,tamil,'சறயட':1 'forage':2,action|compound,ஸூரெதாய்,verb,
-,ꢪ,ꢪꢬꢵꢪꢡ꣄ꢡꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢪꢬꢪꢡꢡꢒꢬ':1 'maraamattuker':2 'maramattuker':3 'marāmattuker':4 'repair':5 'பம':6,action|compound,मरामत्तु केर|மராமத்துகேர்|maraamattu ker|marAmattu ker|marāmattu ker|məɾɑːmət̪t̪u keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,repair,english,,english,,action|compound,,verb,
^,,செப்பமிடு,tamil,,tamil,'சபபமட':1 'repair':2 'பம':3,action|compound,மராமத்துகேர்,verb,
-,ꢥ,ꢥꢮꢷꢒꢬꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢮꢒꢬꢠꢒꢬ':1 'naveekaranoker':2 'navikaranoker':3 'navīkaraṇŏker':4 'repair':5 'பம':6,action|compound,नवीकरणा॑ केर|நவீகரணொ கேர்|naveekarano' ker|navIkaraNO ker|navīkaraṇŏ ker|n̪əʋiːkəɾəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,repair,english,,english,,action|compound,,verb,
^,,செப்பமிடு,tamil,,tamil,'சபபமட':1 'repair':2 'பம':3,action|compound,நவீகரணொ கேர்,verb,
-,ꢱ,ꢱꢾꢬ꣄ꢒ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢬꢒꢒꢬ':1 'serkaker':2 'sĕrkaker':3 'mend':4 'பன':5,action|compound,स॑र्क केर|ஸெர்க கேர்|se'rka ker|sErka ker|sĕrka ker|s̪eɾkə keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,mend,english,,english,,action|compound,,verb,
^,,செப்பனிடு,tamil,,tamil,'சபபனட':1 'mend':2 'பன':3,action|compound,ஸெர்க கேர்,verb,
-,ꢒ,ꢒꢵꢪꢸꢪ꣄ ꢲꢸꢡ꣄ꢡꢶꢬ꣄,sourashtra,,,'ꢒꢪꢪꢲꢡꢡꢬ':1 'kaamumhuttir':2 'kamumhuttir':3 'kāmumhuttir':4 'act':5 'யல':6 'பட':7,action|compound,कामुम हुत्तिर|காமும் ஹுத்திர்|kaamum huttir|kAmum huttir|kāmum huttir|kɑːmum ɦut̪t̪ɪɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,act,english,,english,,action|compound,,verb,
^,,செயல்படு,tamil,,tamil,'சயலபட':1 'act':2 'யல':3 'பட':4,action|compound,காமும் ஹுத்திர்,verb,
-,ꢒ,ꢒꢵꢪꢸꢪ꣄ ꢭꢵꢔ꣄,sourashtra,,,'ꢒꢪꢪꢭꢔ':1 'kaamumlaag':2 'kamumlag':3 'kāmumlāg':4 'act':5 'யல':6 'பட':7,action|compound,कामुम लाग|காமும் லாக்3|kaamum laag|kAmum lAg|kāmum lāg|kɑːmum lɑːg,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,act,english,,english,,action|compound,,verb,
^,,செயல்படு,tamil,,tamil,'சயலபட':1 'act':2 'யல':3 'பட':4,action|compound,காமும் லாக்3,verb,
-,ꢮ,ꢮꢵꢣꢪꢸꢪ꣄ ꢦꣁꢞꢜ꣄,sourashtra,,,'ꢮꢣꢪꢪꢦꢞꢜ':1 'vaadamumpodat':2 'vadamumpodat':3 'vādamumpŏḍaṭ':4 'paralyse':5 'யலறச':6,action|compound,वादमुम पा॑डट|வாத3மும் பொடா3ட்|vaadamum po'd'at'|vAdamum pODaT|vādamum pŏḍaṭ|ʋɑːd̪əmum poɖəʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,paralyse,english,,english,,action|compound,,verb,
^,,செயலறச்செய்,tamil,,tamil,'சயலறசசய':1 'paralyse':2 'யலறச':3,action|compound,வாத3மும் பொடா3ட்,verb,
-,ꢗ,ꢗꢭ꣄ꢡ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢭꢡꢒꢬ':1 'chaltaker':2 'caltaker':3 'implement':4 'யற':5 'பட':6,action|compound,चल्त केर्|சல்தகேர்|chalta ker|calta ker|calta ker|t͡ʃəlt̪ə keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,implement,english,,english,,action|compound,,verb,
^,,செயற்படுத்து,tamil,,tamil,'சயறபடதத':1 'implement':2 'யற':3 'பட':4,action|compound,சல்தகேர்,verb,
-,ꢦ,ꢦ꣄ꢬꢩꢵꢮ꣄ ꢥꢴꢷꢡ꣄ꢡ ꢲꣁ,sourashtra,,,'ꢦꢬꢩꢮꢥꢡꢡꢲ':1 'prabhaavnheettaho':2 'prabhavnhittaho':3 'prabhāvnhīttahŏ':4 'lose':5 'influence':6 'இழ':7,action|compound,प्रभाव न्हीत्त हो|ப்ரபா4வ் நீ:த்த ஹோ|prabhaav nheetta ho'|prabhAv nhItta hO|prabhāv nhītta hŏ|pɾəbʰɑːʋ n̪ɦiːt̪t̪ə ɦo,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,lose influence,english,,english,,action|compound,,verb,
^,,செல்வாக்கு இழ,tamil,,tamil,'சலவககஇழ':1 'lose':2 'influence':3 'இழ':4,action|compound,ப்ரபா4வ் நீ:த்த ஹோ,verb,
-,ꢦ,ꢦ꣄ꢬꢩꢵꢮ꣄ ꢙꢮꢞ꣄ꢳꢾ,sourashtra,,,'ꢦꢬꢩꢮꢙꢮꢞꢳ':1 'prabhaavjavadle':2 'prabhavjavadle':3 'prabhāvjavaḍlĕ':4 'lose':5 'influence':6 'இழ':7,action|compound,प्रभाव जवळे|ப்ரபா4வ் ஜவட்3ளே|prabhaav javad'l'e'|prabhAv javaDLE|prabhāv javaḍl̤ĕ|pɾəbʰɑːʋ d͡ʒəʋəɖɭe,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,lose influence,english,,english,,action|compound,,verb,
^,,செல்வாக்கு இழ,tamil,,tamil,'சலவககஇழ':1 'lose':2 'influence':3 'இழ':4,action|compound,ப்ரபா4வ் ஜவட்3ளே,verb,
-,ꢱ,ꢱꣀꢒꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢒꢥꢒꢬ':1 'saikanoker':2 'saikanŏker':3 'give':4 'signal':5 'சக':6,action|compound,सैकना॑ केर|ஸைகனொ கேர்|saikano' ker|saikanO ker|saikanŏ ker|s̪əɪkən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give signal,english,,english,,action|compound,,verb,
^,,சைசகைக் காட்டு,tamil,,tamil,'சசகககடட':1 'give':2 'signal':3 'சக':4,action|compound,ஸைகனொ கேர்,verb,
-,ꢩ,ꢩꢵꢰꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢩꢰꢠꢒꢬ':1 'bhaashanoker':2 'bhasanoker':3 'bhāṣaṇŏker':4 'give':5 'talk':6 'lecture':7,action|compound,भाषणा॑ केर|பா4ஷணொகேர்|bhaashano' ker|bhASaNO ker|bhāṣaṇŏ ker|bʰɑːʂəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give talk/lecture,english,,english,,action|compound,,verb,
^,,சொற்பொழிவாற்று,tamil,,tamil,'சறபழவறற':1 'give':2 'talk':3 'lecture':4,action|compound,பா4ஷணொகேர்,verb,
-,ꢱ,ꢱꣂꢤꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢤꢥꢒꢬ':1 'sodhanoker':2 'sodhanŏker':3 'test':4 'தன':5,action|compound,सोधना॑ केर|ஸோத4னொகேர்|sodhano' ker|sodhanO ker|sodhanŏ ker|s̪oːd̪ʰən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,test,english,,english,,action|compound,,verb,
^,,சோதனை செய்,tamil,,tamil,'சதனசய':1 'test':2 'தன':3,action|compound,ஸோத4னொகேர்,verb,
-,ꢭ,ꢭꣂꢭ꣄ ꢦꣁꢞꢶ ꢲꢶꢠ꣄ꢞꢶ,sourashtra,,,'ꢭꢭꢦꢞꢲꢠꢞ':1 'lolpodihindi':2 'lolpŏḍihiṇḍi':3 'loiter':4,action|compound,लोल्पा॑डि हिण्डि|லோல் பொடி3 ஹிண்டி3|lol po'd'i hind'i|lol pODi hiNDi|lol pŏḍi hiṇḍi|loːl poɖɪ ɦɪɳɖɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,loiter,english,,english,,action|compound,,verb,
^,,சோம்பித்திரி,tamil,,tamil,'சமபததர':1 'loiter':2,action|compound,லோல் பொடி3 ஹிண்டி3,verb,
-,ꢯ,ꢯꢷꢥ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢯꢥꢦꢥꢣ':1 'sheenpondi':2 'zinpondi':3 'śīnpŏndi':4 'get':5 'tired':6 'tire':7 'வட':8,action|compound,शीन पा॑न्दि|ஶீன் பொந்தி3|sheen po'ndi|zIn pOndi|śīn pŏndi|ʃiːn̪ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,get tired,english,,english,,action|compound,,verb,
^,,சோர்வடை,tamil,,tamil,'சரவட':1 'get':2 'tired':3 'tire':4 'வட':5,action|compound,ஶீன் பொந்தி3,verb,
-,ꢒ,ꢒꢬ꣄ꢡꢮ꣄ ꢱꣂꢜ꣄,sourashtra,,,'ꢒꢬꢡꢮꢱꢜ':1 'kartavsot':2 'kartavsoṭ':3 'shirk':4 'தட':5 'கழ':6,action|compound,कर्तव सोट|கர்தவ் ஸோட்|kartav sot'|kartav soT|kartav soṭ|kəɾt̪əʋ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,shirk,english,,english,,action|compound,,verb,
^,,தட்டிக்கழி,tamil,,tamil,'தடடககழ':1 'shirk':2 'தட':3 'கழ':4,action|compound,கர்தவ் ஸோட்,verb,
-,ꢱ,ꢱꢪꢣꢭꢪ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢣꢭꢪꢒꢬ':1 'samadalamker':2 'flatten':3 'தட':4,action|compound,समदलम केर|ஸமத3ளம் கேர்|samadalam ker|samadalam ker|samadalam ker|s̪əməd̪ələm keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,flatten,english,,english,,action|compound,,verb,
^,,தட்டையாக்கு,tamil,,tamil,'தடடயகக':1 'flatten':2 'தட':3,action|compound,ஸமத3ளம் கேர்,verb,
-,ꢡ,ꢡꢾꢜ꣄ꢜꢸ ꢒꢶꢜ꣄ꢜꢶ ꢙꢵ,sourashtra,,,'ꢡꢜꢜꢒꢜꢜꢙ':1 'tettukittijaa':2 'tettukittija':3 'tĕṭṭukiṭṭijā':4 'falter':5 'தட':6,action|compound,तेट्टु किट्टि जा|தெட்டுகிட்டி ஜா|te't't'u kit't'i jaa|tETTu kiTTi jA|tĕṭṭu kiṭṭi jā|t̪eʈʈu kɪʈʈɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,falter,english,,english,,action|compound,,verb,
^,,தடுமாறு,tamil,,tamil,'தடமற':1 'falter':2 'தட':3,action|compound,தெட்டுகிட்டி ஜா,verb,
-,ꢥ,ꢥꢶꢬꣂꢤ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢬꢤꢒꢬ':1 'nirodhker':2 'impede':3 'தட':4,action|compound,निरोध केर|நிரோத்4 கேர்|nirodh ker|nirodh ker|nirodh ker|n̪ɪɾoːd̪ʰ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,impede,english,,english,,action|compound,,verb,
^,,தடை செய்,tamil,,tamil,'தடசய':1 'impede':2 'தட':3,action|compound,நிரோத்4 கேர்,verb,
-,ꢣ,ꢣꢠ꣄ꢜꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢣꢠꢜꢥꢒꢬ':1 'dantanoker':2 'daṇṭanŏker':3 'punish':4 'தண':5 'டன':6,action|compound,दण्टना॑ केर|த3ண்டனொ கேர்|dant'ano' ker|daNTanO ker|daṇṭanŏ ker|d̪əɳʈən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,punish,english,,english,,action|compound,,verb,
^,,தண்டனைவிதி,tamil,,tamil,'தணடனவத':1 'punish':2 'தண':3 'டன':4,action|compound,த3ண்டனொ கேர்,verb,
-,ꢭ,ꢭꢴꢾꢒ꣄ꢒꣁ ꢱꢾꢬ꣄ꢒꣁ ꢱꢵ,sourashtra,,,'ꢭꢒꢒꢱꢬꢒꢱ':1 'lhekkoserkosaa':2 'lhekkoserkosa':3 'lhĕkkŏsĕrkŏsā':4 'audit':5 'தண':6,action|compound,ल्ह॑क्का॑ स॑र्का॑ सा|லெ:க்கொ ஸெர்கொ ஸா|lhe'kko' se'rko' saa|lhEkkO sErkO sA|lhĕkkŏ sĕrkŏ sā|lɦekko s̪eɾko s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,audit,english,,english,,action|compound,,verb,
^,,தணிக்கை செய்,tamil,,tamil,'தணககசய':1 'audit':2 'தண':3,action|compound,லெ:க்கொ ஸெர்கொ ஸா,verb,
-,ꢡ,ꢡꣁꢪ꣄ꢗꢶ ꢙꢵꢱ꣄ꢡꢶꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢡꢪꢗꢙꢱꢡꢱꢒꢬ':1 'tomchijaastisoker':2 'tomcijastisoker':3 'tŏmcijāstisŏker':4 'let':5 'escape':6 'தப':7 'பவ':8,action|compound,ता॑म्चि जास्तिसा॑ केर|தொம்சி ஜாஸ்திஸொ கேர்|to'mchi jaastiso' ker|tOmci jAstisO ker|tŏmci jāstisŏ ker|t̪omt͡ʃɪ d͡ʒɑːs̪t̪ɪs̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Let escape,english,,english,,action|compound,,verb,
^,,தப்பவிடு,tamil,,tamil,'தபபவட':1 'let':2 'escape':3 'தப':4 'பவ':5,action|compound,தொம்சி ஜாஸ்திஸொ கேர்,verb,
-,ꢡ,ꢡꣁꢪ꣄ꢗꢶ ꢙꢵ,sourashtra,,,'ꢡꢪꢗꢙ':1 'tomchijaa':2 'tomcija':3 'tŏmcijā':4 'escape':5 'தப':6,action|compound,ता॑म्चि जा|தொம்சி ஜா|to'mchi jaa|tOmci jA|tŏmci jā|t̪omt͡ʃɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,escape,english,,english,,action|compound,,verb,
^,,தப்பிச்செல்,tamil,,tamil,'தபபசசல':1 'escape':2 'தப':3,action|compound,தொம்சி ஜா,verb,
-,ꢦ,ꢦꢱ꣄ꢡꣁꢒ꣄ꢒꢶ ꢲꢶꢨ꣄ꢨꢶ,sourashtra,,,'ꢦꢱꢡꢒꢒꢲꢨꢨ':1 'pastokkihibbi':2 'pastŏkkihibbi':3 'linger':4 'தயங':5,action|compound,पस्ता॑क्कि हिब्बि|பஸ்தொக்கி ஹிப்3பி3|pasto'kki hibbi|pastOkki hibbi|pastŏkki hibbi|pəs̪t̪okkɪ ɦɪbbɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,linger,english,,english,,action|compound,,verb,
^,,தயங்கிநில்,tamil,,tamil,'தயஙகநல':1 'linger':2 'தயங':3,action|compound,பஸ்தொக்கி ஹிப்3பி3,verb,
-,ꢱ,ꢱ꣄ꢡꢬꣁ ꢥꢶꢬ꣄ꢠꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢡꢬꢥꢬꢠꢫꢒꢬ':1 'staronirnayoker':2 'starŏnirṇayŏker':3 'standardise':4 'தரப':5 'பட':6,action|compound,स्तरा॑ निर्णया॑ केर|ஸ்தரொ நிர்ணயொ கேர்|staro' nirnayo' ker|starO nirNayO ker|starŏ nirṇayŏ ker|s̪t̪əɾo n̪ɪɾɳəjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,standardise,english,,english,,action|compound,,verb,
^,,தரப்படுத்து,tamil,,tamil,'தரபபடதத':1 'standardise':2 'தரப':3 'பட':4,action|compound,ஸ்தரொ நிர்ணயொ கேர்,verb,
-,ꢭ,ꢭꢸꢒ꣄ꢒꢶ ꢬꢴꢵ,sourashtra,,,'ꢭꢒꢒꢬ':1 'lukkirhaa':2 'lukkirha':3 'lukkirhā':4 'abscond':5 'தல':6 'மற':7,action|compound,लुक्कि र्हा|லுக்கி ரா:|lukki rhaa|lukki rhA|lukki rhā|lukkɪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,abscond,english,,english,,action|compound,,verb,
^,,தலைமறைவாகு,tamil,,tamil,'தலமறவக':1 'abscond':2 'தல':3 'மற':4,action|compound,லுக்கி ரா:,verb,
-,ꢂ,ꢂꢔ꣄ꢬꢵꢱꢥꣁ ꢓꢳ꣄ꢳꢿ,sourashtra,,,'ꢂꢔꢬꢱꢥꢓꢳꢳ':1 'agraasanokhalle':2 'agrasanokhalle':3 'agrāsanŏkhalle':4 'preside':5 'தல':6,action|compound,अग्रासना॑ खळ्ळे|அக்3ராஸனொ க2ள்ளே|agraasano' khal'l'e|agrAsanO khaLLe|agrāsanŏ khal̤l̤e|əgɾɑːs̪ən̪o kʰəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,preside,english,,english,,action|compound,,verb,
^,,தலைமைதாங்கு,tamil,,tamil,'தலமதஙக':1 'preside':2 'தல':3,action|compound,அக்3ராஸனொ க2ள்ளே,verb,
-,ꢂ,ꢂꢔ꣄ꢬꢦꢥ꣄ ꢮꢮꢶꢭꢿ,sourashtra,,,'ꢂꢔꢬꢦꢥꢮꢮꢭ':1 'agrapanvavile':2 'preside':3 'தல':4 'வக':5,action|compound,अग्रपन वविले|அக்3ரபன் வவிலே|agrapan vavile|agrapan vavile|agrapan vavile|əgɾəpən̪ ʋəʋɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,preside,english,,english,,action|compound,,verb,
^,,தலைமைவகி,tamil,,tamil,'தலமவக':1 'preside':2 'தல':3 'வக':4,action|compound,அக்3ரபன் வவிலே,verb,
-,ꢣ,ꢣꣁꢱ꣄ꢒꣁ ꢲꢭ꣄ꢮꢶ,sourashtra,,,'ꢣꢱꢒꢲꢭꢮ':1 'doskohalvi':2 'dŏskŏhalvi':3 'nod':4 'தல':5 'யச':6,action|compound,दा॑स्का॑ हल्वि|தொ3ஸ்கொ ஹல்வி|do'sko' halvi|dOskO halvi|dŏskŏ halvi|d̪os̪ko ɦəlʋɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,nod,english,,english,,action|compound,,verb,
^,,தலையசை,tamil,,tamil,'தலயச':1 'nod':2 'தல':3 'யச':4,action|compound,தொ3ஸ்கொ ஹல்வி,verb,
-,ꢣ,ꢣꣁꢱ꣄ꢒꣁ ꢣꢿ,sourashtra,,,'ꢣꢱꢒꢣ':1 'doskode':2 'dŏskŏde':3 'interfere':4 'தல':5,action|compound,दा॑स्का॑ दे|தொ3ஸ்கொ தே3|do'sko' de|dOskO de|dŏskŏ de|d̪os̪ko d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,interfere,english,,english,,action|compound,,verb,
^,,தலையீடு,tamil,,tamil,'தலயட':1 'interfere':2 'தல':3,action|compound,தொ3ஸ்கொ தே3,verb,
-,ꢣ,ꢣꣁꢱ꣄ꢒꣁ ꢥꢪ꣄ꢭꢿ,sourashtra,,,'ꢣꢱꢒꢥꢪꢭ':1 'doskonamle':2 'dŏskŏnamle':3 'bow':4 'head':5 'தல':6 'வணங':7,action|compound,दा॑स्का॑ नम्ले|தொ3ஸ்கொநம்லே|do'sko' namle|dOskO namle|dŏskŏ namle|d̪os̪ko n̪əmleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bow head,english,,english,,action|compound,,verb,
^,,தலைவணங்கு,tamil,,tamil,'தலவணஙக':1 'bow':2 'head':3 'தல':4 'வணங':5,action|compound,தொ3ஸ்கொநம்லே,verb,
-,ꢒ,ꢒꢸꢠ꣄ꢜꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢠꢜꢒꢬ':1 'kuntuker':2 'kuṇṭuker':3 'mistake':4 'தவற':5,action|compound,कुण्टु केर्|குண்டுகேர்|kunt'u ker|kuNTu ker|kuṇṭu ker|kuɳʈu keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,do mistake,english,,english,,action|compound,,verb,
^,,தவறிழை,tamil,,tamil,'தவறழ':1 'mistake':2 'தவற':3,action|compound,குண்டுகேர்,verb,
-,ꢣ,ꢣꣁꢨ꣄ꢦꢶ ꢢꣂꢮ꣄,sourashtra,,,'ꢣꢨꢦꢢꢮ':1 'dobpithov':2 'dŏbpithov':3 'postpone':4 'தள':5,action|compound,दोब्बि थोव|தொ3ப்3பி3தோ2வ்|do'bpi thov|dObpi thov|dŏbpi thov|d̪obpɪ t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,postpone,english,,english,,action|compound,,verb,
^,,தள்ளிவை,tamil,,tamil,'தளளவ':1 'postpone':2 'தள':3,action|compound,தொ3ப்3பி3தோ2வ்,verb,
-,ꢦ,ꢦꢾꢡ꣄ꢡꢾ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢡꢡꢒꢬ':1 'petteker':2 'pĕttĕker':3 'alienate':4 'தன':5 'பட':6,action|compound,पेत्ते केर|பெத்தெ கேர்|pe'tte' ker|pEttE ker|pĕttĕ ker|pet̪t̪e keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,alienate,english,,english,,action|compound,,verb,
^,,தனிப்படுத்து,tamil,,tamil,'தனபபடதத':1 'alienate':2 'தன':3 'பட':4,action|compound,பெத்தெ கேர்,verb,
-,ꢱ,ꢱ꣄ꢬꢪꣁ ꢱꢾꢒꢶꢭꢿ,sourashtra,,,'ꢱꢬꢪꢱꢒꢭ':1 'sramosekile':2 'sramŏsĕkile':3 'manage':4,action|compound,स्रमा॑ स॑किले|ஸ்ரமொ ஸெகிலே|sramo' se'kile|sramO sEkile|sramŏ sĕkile|s̪ɾəmo s̪ekɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,manage,english,,english,,action|compound,,verb,
^,,தாக்குப்பிடி,tamil,,tamil,'தககபபட':1 'manage':2,action|compound,ஸ்ரமொ ஸெகிலே,verb,
-,ꢓ,ꢓꢷꢳ꣄ ꢡꢵꢫ꣄,sourashtra,,,'ꢓꢳꢡꢫ':1 'kheeltaay':2 'khiltay':3 'khīltāy':4 'close':5,action|compound,खीळय्|கீ2ள்தாய்|kheel' taay|khIL tAy|khīl̤ tāy|kʰiːɭ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,close,english,,english,,action|compound,,verb,
^,,தாழிடு,tamil,,tamil,'தழட':1 'close':2,action|compound,கீ2ள்தாய்,verb,
-,ꢲ,ꢲꢸꢨ꣄ꢨꢱ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢲꢨꢨꢱꢦꢜ':1 'hubbaspot':2 'hubbaspoṭ':3 'suffocate':4,action|compound,हुब्बस पोट|ஹுப்3ப3ஸ் போட்|hubbas pot'|hubbas poT|hubbas poṭ|ɦubbəs̪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,suffocate,english,,english,,action|compound,,verb,
^,,திக்குமுக்காடு,tamil,,tamil,'தககமககட':1 'suffocate':2,action|compound,ஹுப்3ப3ஸ் போட்,verb,
-,ꢨ,ꢨꢾꢣꢶꢬ꣄ꢦꣂꢜ꣄,sourashtra,,,'ꢨꢣꢬꢦꢜ':1 'bedirpot':2 'bĕdirpoṭ':3 'astonished':4 'astonish':5 'லட':6,action|compound,बेदिर्पोट|பெ3தி3ர்போட்|be'dirpot'|bEdirpoT|bĕdirpoṭ|bed̪ɪɾpoːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Be astonished,english,,english,,action|compound,,verb,
^,,திகிலடை,tamil,,tamil,'தகலட':1 'astonished':2 'astonish':3 'லட':4,action|compound,பெ3தி3ர்போட்,verb,
-,ꢃ,ꢃꢯ꣄꣄ꢗꢬ꣄ꢫꢸ ꢦꣂꢜ꣄,sourashtra,,,'ꢃꢯꢗꢬꢫꢦꢜ':1 'aashcharyupot':2 'azcaryupot':3 'āścaryupoṭ':4 'stun':5,action|compound,आश्चर्यु पोट|ஆஶ்சர்யு போட்|aashcharyu pot'|Azcaryu poT|āścaryu poṭ|ɑːʃt͡ʃəɾju poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,stun,english,,english,,action|compound,,verb,
^,,திகைப்புறு,tamil,,tamil,'தகபபற':1 'stun':2,action|compound,ஆஶ்சர்யு போட்,verb,
-,ꢫ,ꢫꣂꢙꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢫꢙꢥꢒꢬ':1 'yojanoker':2 'yojanŏker':3 'plan':4 'டம':5,action|compound,योजना॑ केर|யோஜனொ கேர்|yojano' ker|yojanO ker|yojanŏ ker|joːd͡ʒən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,plan,english,,english,,action|compound,,verb,
^,,திட்டம்தீட்டு,tamil,,tamil,'தடடமதடட':1 'plan':2 'டம':3,action|compound,யோஜனொ கேர்,verb,
-,ꢱ,ꢱꢪꢬ꣄ꢡꢮꢵꢥ꣄ ꢲꣂ,sourashtra,,,'ꢱꢪꢬꢡꢮꢥꢲ':1 'samartavaanho':2 'samartavanho':3 'samartavānho':4 'have':5 'skill':6 'றன':7 'பட':8,action|compound,समर्तवान हो|ஸமர்தவான் ஹோ|samartavaan ho|samartavAn ho|samartavān ho|s̪əməɾt̪əʋɑːn̪ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,have skill,english,,english,,action|compound,,verb,
^,,திறன்படை,tamil,,tamil,'தறனபட':1 'have':2 'skill':3 'றன':4 'பட':5,action|compound,ஸமர்தவான் ஹோ,verb,
-,ꢅ,ꢅꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢅꢥꢒꢬ':1 'eenker':2 'inker':3 'īnker':4 'harm':5,action|compound,हीन केर|ஹீன் கேர்|een ker|In ker|īn ker|iːn̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,do harm,english,,english,,action|compound,,verb,
^,,தீங்கிழை,tamil,,tamil,'தஙகழ':1 'harm':2,action|compound,ஹீன் கேர்,verb,
-,ꢥ,ꢥꢶꢬ꣄ꢠꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢬꢠꢫꢒꢬ':1 'nirnayoker':2 'nirṇayŏker':3 'give':4 'judgement':5 'பள':6,action|compound,निर्णया॑ केर|நிர்ணயொகேர்|nirnayo' ker|nirNayO ker|nirṇayŏ ker|n̪ɪɾɳəjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give judgement,english,,english,,action|compound,,verb,
^,,தீர்ப்பளி,tamil,,tamil,'தரபபள':1 'give':2 'judgement':3 'பள':4,action|compound,நிர்ணயொகேர்,verb,
-,ꢪ,ꢪꢸꢞꢶꢮ꣄ ꢣꢾꢒ꣄ꢒꢶ,sourashtra,,,'ꢪꢞꢮꢣꢒꢒ':1 'mudivdekki':2 'muḍivdĕkki':3 'find':4 'solution':5,action|compound,मुडिव द॑क्कि|முடி3வ் தெ3க்கி|mud'iv de'kki|muDiv dEkki|muḍiv dĕkki|muɖɪʋ d̪ekkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,find a solution,english,,english,,action|compound,,verb,
^,,தீர்வுகாண்,tamil,,tamil,'தரவகண':1 'find':2 'solution':3,action|compound,முடி3வ் தெ3க்கி,verb,
-,ꢱ,ꢱꢪꢵꢤꢵꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢤꢥꢒꢬ':1 'samaadhaanker':2 'samadhanker':3 'samādhānker':4 'find':5 'solution':6,action|compound,समाधान केर|ஸமாதா4ன் கேர்|samaadhaan ker|samAdhAn ker|samādhān ker|s̪əmɑːd̪ʰɑːn̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,find a solution,english,,english,,action|compound,,verb,
^,,தீர்வுகாண்,tamil,,tamil,'தரவகண':1 'find':2 'solution':3,action|compound,ஸமாதா4ன் கேர்,verb,
-,ꢏ,ꢏꢡ꣄ꢡꢵꢱ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢏꢡꢡꢱꢒꢬ':1 'ottaasker':2 'ottasker':3 'ŏttāsker':4 'help':5,action|compound,आ॑त्तास्केर|ஒத்தாஸ்கேர்|o'ttaas ker|OttAs ker|ŏttās ker|ot̪t̪ɑːs̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,help,english,,english,,action|compound,,verb,
^,,துணைபுரி,tamil,,tamil,'தணபர':1 'help':2,action|compound,ஒத்தாஸ்கேர்,verb,
-,ꢨ,ꢨꢶꢱ꣄ꢱꣁ ꢲꣁꢮꢵꢜ꣄,sourashtra,,,'ꢨꢱꢱꢲꢮꢜ':1 'bissohovaat':2 'bissohovat':3 'bissŏhŏvāṭ':4 'hasten':5 'தப':6 'பட':7,action|compound,बिस्सा॑ हा॑वाट|பி3ஸ்ஸொ ஹொவாட்|bisso' ho'vaat'|bissO hOvAT|bissŏ hŏvāṭ|bɪs̪s̪o ɦoʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hasten,english,,english,,action|compound,,verb,
^,,துரிதப்படுத்து,tamil,,tamil,'தரதபபடதத':1 'hasten':2 'தப':3 'பட':4,action|compound,பி3ஸ்ஸொ ஹொவாட்,verb,
-,ꢡ,ꢡꢸꢬꢸ ꢤꢿꢬ꣄,sourashtra,,,'ꢡꢬꢤꢬ':1 'turudher':2 'rust':3,action|compound,तुरु धेर्|துருதே4ர்|turu dher|turu dher|turu dher|t̪uɾu d̪ʰeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,rust,english,,english,,action|compound,,verb,
^,,துருப்பிடி,tamil,,tamil,'தரபபட':1 'rust':2,action|compound,துருதே4ர்,verb,
-,ꢦ,ꢦꢸꢜ꣄ꢜꣁ ꢡꢵꢫ꣄,sourashtra,,,'ꢦꢜꢜꢡꢫ':1 'puttotaay':2 'puttotay':3 'puṭṭŏtāy':4 'perforate':5,action|compound,पुट्टा॑ताय्|புட்டொதாய்|put't'o' taay|puTTO tAy|puṭṭŏ tāy|puʈʈo t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,perforate,english,,english,,action|compound,,verb,
^,,துளையிடு,tamil,,tamil,'தளயட':1 'perforate':2,action|compound,புட்டொதாய்,verb,
-,ꢓ,ꢓꢾꢰ꣄ꢜꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢓꢰꢜꢪꢦꢜ':1 'kheshtampot':2 'khestampot':3 'khĕṣṭampoṭ':4 'suffer':5 'பப':6 'பட':7,action|compound,खेष्टम्पोट्|கெஷ்டம்போட்|khe'sht'am pot'|khESTam poT|khĕṣṭam poṭ|kʰeʂʈəm poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,suffer,english,,english,,action|compound,,verb,
^,,துன்பப்படு,tamil,,tamil,'தனபபபட':1 'suffer':2 'பப':3 'பட':4,action|compound,கெஷ்டம்போட்,verb,
-,ꢗ,ꢗꢾꢞ꣄ꢮꢶ ꢱꣂꢜ꣄,sourashtra,,,'ꢗꢞꢮꢱꢜ':1 'chedvisot':2 'cedvisot':3 'cĕḍvisoṭ':4 'encourage':5 'instigate':6,action|compound,च॑ड्वि सोट|செட்3வி ஸோட்|che'd'vi sot'|cEDvi soT|cĕḍvi soṭ|t͡ʃeɖʋɪ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"encourage, instigate",english,,english,,action|compound,,verb,
^,,தூண்டிவிடு,tamil,,tamil,'தணடவட':1 'encourage':2 'instigate':3,action|compound,செட்3வி ஸோட்,verb,
-,ꢩ,ꢩꢸꢬ꣄ꢒꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢩꢬꢒꢒꢬ':1 'bhurkoker':2 'bhurkŏker':3 'make':4 'powder':5,action|compound,भुर्का॑ केर|பு4ர்கொ கேர்|bhurko' ker|bhurkO ker|bhurkŏ ker|bʰuɾko keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make powder,english,,english,,action|compound,,verb,
^,,தூளாக்கு,tamil,,tamil,'தளகக':1 'make':2 'powder':3,action|compound,பு4ர்கொ கேர்,verb,
-,ꢗ,ꢗꢹꢬ꣄ꢠꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢬꢠꢒꢬ':1 'choornuker':2 'curnuker':3 'cūrṇuker':4 'make':5 'powder':6,action|compound,चूर्णु केर|சூர்ணு கேர்|choornu ker|cUrNu ker|cūrṇu ker|t͡ʃuːɾɳu keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make powder,english,,english,,action|compound,,verb,
^,,தூளாக்கு,tamil,,tamil,'தளகக':1 'make':2 'powder':3,action|compound,சூர்ணு கேர்,verb,
-,ꢮ,ꢮꢾꢒ꣄ꢒꢶ ꢲꢿꢜ꣄,sourashtra,,,'ꢮꢒꢒꢲꢜ':1 'vekkihet':2 'vĕkkiheṭ':3 'select':4 'the':5 'best':6,action|compound,वेक्किहेट्|வெக்கிஹேட்|ve'kki het'|vEkki heT|vĕkki heṭ|ʋekkɪ ɦeːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,select the best,english,,english,,action|compound,,verb,
^,,தெரிந்தெடு,tamil,,tamil,'தரநதட':1 'select':2 'the':3 'best':4,action|compound,வெக்கிஹேட்,verb,
-,ꢱ,ꢱꢥ꣄ꢣꢾꢯ꣄ ꢭꢿ ꢙꢵ,sourashtra,,,'ꢱꢥꢣꢯꢭꢙ':1 'sandeshlejaa':2 'sandezleja':3 'sandĕślejā':4 'convey':5 'யப':6 'பட':7,action|compound,सन्देश ले जा|லே ஜா|sande'sh le jaa|sandEz le jA|sandĕś le jā|s̪ən̪d̪eʃ leː d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,convey,english,,english,,action|compound,,verb,
^,,தெரியப்படுத்து,tamil,,tamil,'தரயபபடதத':1 'convey':2 'யப':3 'பட':4,action|compound,லே ஜா,verb,
-,ꢱ,ꢱꢾꢥ꣄ꢣꢿꢮ꣄ ꢥꢴꢷꢡ꣄ꢡꣁ ꢬꢴꢵ,sourashtra,,,'ꢱꢥꢣꢮꢥꢡꢡꢬ':1 'sendevnheettorhaa':2 'sendevnhittorha':3 'sĕndevnhīttŏrhā':4 'clear':5 'வட':6,action|compound,स॑न्देव न्हीत्ता॑ र्हा|ஸெந்தே3வ் நீ:த்தொ ரா:|se'ndev nheetto' rhaa|sEndev nhIttO rhA|sĕndev nhīttŏ rhā|s̪en̪d̪eːʋ n̪ɦiːt̪t̪o ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be clear,english,,english,,action|compound,,verb,
^,,தெளிவடை,tamil,,tamil,'தளவட':1 'clear':2 'வட':3,action|compound,ஸெந்தே3வ் நீ:த்தொ ரா:,verb,
-,ꢱ,ꢱꢾꢥ꣄ꢣꢿꢮ꣄ ꢙꢮꢵꢜ꣄,sourashtra,,,'ꢱꢥꢣꢮꢙꢮꢜ':1 'sendevjavaat':2 'sendevjavat':3 'sĕndevjavāṭ':4 'make':5 'clear':6 'பட':7,action|compound,स॑न्देव जवाट|ஸெந்தே3வ் ஜவாட்|se'ndev javaat'|sEndev javAT|sĕndev javāṭ|s̪en̪d̪eːʋ d͡ʒəʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make clear,english,,english,,action|compound,,verb,
^,,தெளிவுப்படுத்து,tamil,,tamil,'தளவபபடதத':1 'make':2 'clear':3 'பட':4,action|compound,ஸெந்தே3வ் ஜவாட்,verb,
-,ꢣ,ꢣꢾꢒ꣄ꢒꢶꢥꢶ ꢦꣂꢜ꣄,sourashtra,,,'ꢣꢒꢒꢥꢦꢜ':1 'dekkinipot':2 'dĕkkinipoṭ':3 'appear':4 'பட':5,action|compound,द॑क्किनि पोट|தெ3க்கினி போட்|de'kkini pot'|dEkkini poT|dĕkkini poṭ|d̪ekkɪn̪ɪ poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,appear,english,,english,,action|compound,,verb,
^,,தென்படு,tamil,,tamil,'தனபட':1 'appear':2 'பட':3,action|compound,தெ3க்கினி போட்,verb,
-,ꢦ,ꢦꢙꢾ ꢲꣂ,sourashtra,,,'ꢦꢙꢲ':1 'pajeho':2 'pajĕho':3 'require':4 'need':5 'பட':6,action|compound,पज॑ हो|பஜெஹோ|paje' ho|pajE ho|pajĕ ho|pəd͡ʒe ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"require, need",english,,english,,action|compound,,verb,
^,,தேவைப்படு,tamil,,tamil,'தவபபட':1 'require':2 'need':3 'பட':4,action|compound,பஜெஹோ,verb,
-,ꢲ,ꢲꢬꢸꢪ꣄ꢨꢪ꣄ ꢒꢾꢬꢶ ꢢꣁꢮ꣄,sourashtra,,,'ꢲꢬꢪꢨꢪꢒꢬꢢꢮ':1 'harumbamkerithov':2 'harumbamkĕrithŏv':3 'begin':4 'டங':5,action|compound,हरुम्बम्क॑रि थोव|ஹரும்ப3ம்கெரிதோ2வ்|harumbam ke'ri tho'v|harumbam kEri thOv|harumbam kĕri thŏv|ɦəɾumbəm keɾɪ t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,begin,english,,english,,action|compound,,verb,
^,,தொடங்கிவை,tamil,,tamil,'தடஙகவ':1 'begin':2 'டங':3,action|compound,ஹரும்ப3ம்கெரிதோ2வ்,verb,
-,ꢱ,ꢱꢪ꣄ꢦꢬ꣄ꢒꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢪꢦꢬꢒꢒꢬ':1 'samparkuker':2 'correspond':3 'டர':4,action|compound,सम्पर्कु केर|ஸம்பர்கு கேர்|samparku ker|samparku ker|samparku ker|s̪əmpəɾku keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,correspond,english,,english,,action|compound,,verb,
^,,தொடர்புகொள்,tamil,,tamil,'தடரபகள':1 'correspond':2 'டர':3,action|compound,ஸம்பர்கு கேர்,verb,
-,ꢱ,ꢱꢥ꣄ꢤꢶꢪ꣄ ꢢꣁꢮ꣄ꢭꢿ,sourashtra,,,'ꢱꢥꢤꢪꢢꢮꢭ':1 'sandhimthovle':2 'sandhimthŏvle':3 'correspond':4 'டர':5,action|compound,सन्धिम था॑व्ले|ஸந்தி4ம் தொ2வ்லே|sandhim tho'vle|sandhim thOvle|sandhim thŏvle|s̪ən̪d̪ʰɪm t̪ʰoʋleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,correspond,english,,english,,action|compound,,verb,
^,,தொடர்புகொள்,tamil,,tamil,'தடரபகள':1 'correspond':2 'டர':3,action|compound,ஸந்தி4ம் தொ2வ்லே,verb,
-,ꢱ,ꢱꢿꢮꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢮꢒꢬ':1 'sevoker':2 'sevŏker':3 'serve':4,action|compound,सेवा॑ केर्|ஸேவொகேர்|sevo' ker|sevO ker|sevŏ ker|s̪eːʋo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,serve,english,,english,,action|compound,,verb,
^,,தொண்டாற்று,tamil,,tamil,'தணடறற':1 'serve':2,action|compound,ஸேவொகேர்,verb,
-,ꢲ,ꢲꢶꢪ꣄ꢱꣁꢒꢿꢬ꣄,sourashtra,,,'ꢲꢪꢱꢒꢬ':1 'himsoker':2 'himsŏker':3 'disturb':4,action|compound,हिम्सा॑ केर्|ஹிம்ஸொ கேர்|himso'ker|himsOker|himsŏker|ɦɪms̪okeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,disturb,english,,english,,action|compound,,verb,
^,,தொந்தாவு செய்,tamil,,tamil,'தநதவசய':1 'disturb':2,action|compound,ஹிம்ஸொ கேர்,verb,
-,ꢥ,ꢥꢵꢯꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢯꢥꢒꢬ':1 'naashanoker':2 'nazanoker':3 'nāśanŏker':4 'destroy':5 'கட':6,action|compound,नाशना॑ केर|நாஶனொ கேர்|naashano' ker|nAzanO ker|nāśanŏ ker|n̪ɑːʃən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,destroy,english,,english,,action|compound,,verb,
^,,தொலைத்துக்கட்டு,tamil,,tamil,'தலததககடட':1 'destroy':2 'கட':3,action|compound,நாஶனொ கேர்,verb,
-,ꢏ,ꢏꢞ ꢶꢙꢵ,sourashtra,,,'ꢏꢞꢙ':1 'odaijaa':2 'odaija':3 'ŏḍaijā':4 'fail':5 'யட':6,action|compound,आ॑डि जा|ஒடி3 ஜா|o'd'a ijaa|ODa ijA|ŏḍa ijā|oɖə ɪd͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,fail,english,,english,,action|compound,,verb,
^,,தோல்வியடை,tamil,,tamil,'தலவயட':1 'fail':2 'யட':3,action|compound,ஒடி3 ஜா,verb,
-,ꢏ,ꢏꢞꢞꢶ ꢙꢮꢵꢜ꣄,sourashtra,,,'ꢏꢞꢞꢙꢮꢜ':1 'odadijavaat':2 'odadijavat':3 'ŏḍaḍijavāṭ':4 'defeat':5 'கட':6,action|compound,आ॑डडि जवाट|ஒட3டி3 ஜவாட்|o'd'ad'i javaat'|ODaDi javAT|ŏḍaḍi javāṭ|oɖəɖɪ d͡ʒəʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,defeat,english,,english,,action|compound,,verb,
^,,தோற்கடி,tamil,,tamil,'தறகட':1 'defeat':2 'கட':3,action|compound,ஒட3டி3 ஜவாட்,verb,
-,ꢲ,ꢲꣂꢬꢸ ꢲꣂꢬ꣄ ꢲꢶꢪ꣄ꢗꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢬꢲꢬꢲꢪꢗꢒꢬ':1 'horuhorhimchoker':2 'horuhorhimcoker':3 'horuhorhimcŏker':4 'annoy':5 'நச':6 'சர':7,action|compound,होरु होर् हिम्सा॑ केर्|ஹோருஹோர்ஹிம்ஸொகேர்|horu hor himcho' ker|horu hor himcO ker|horu hor himcŏ ker|ɦoːɾu ɦoːɾ ɦɪmt͡ʃo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,annoy,english,,english,,action|compound,,verb,
^,,நச்சரி,tamil,,tamil,'நசசர':1 'annoy':2 'நச':3 'சர':4,action|compound,ஹோருஹோர்ஹிம்ஸொகேர்,verb,
-,ꢮ,ꢮꢶꢒ꣄ꢒꢸ ꢕꢵꢭ꣄,sourashtra,,,'ꢮꢒꢒꢕꢭ':1 'vikkughaal':2 'vikkughal':3 'vikkughāl':4 'empoison':5 'நஞ':6,action|compound,विक्कु घाल्|விக்கு கா4ல்|vikku ghaal|vikku ghAl|vikku ghāl|ʋɪkku gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,empoison,english,,english,,action|compound,,verb,
^,,நஞ்சிடு,tamil,,tamil,'நஞசட':1 'empoison':2 'நஞ':3,action|compound,விக்கு கா4ல்,verb,
-,ꢱ,ꢱꢶꢖ꣄ꢒꢡꢶ ꢒꢾꢬ꣄ꢭꢾ,sourashtra,,,'ꢱꢖꢒꢡꢒꢬꢭ':1 'sinkatikerle':2 'sigkatikerle':3 'siṅkatikĕrlĕ':4 'make':5 'friends':6 'friend':7 'நட':8,action|compound,सिङ्कति केर्ले|ஸிங்க3தி கெர்லே|sinkati ke'rle'|siGkati kErlE|siṅkati kĕrlĕ|s̪ɪŋkət̪ɪ keɾle,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Make friends,english,,english,,action|compound,,verb,
^,,நட்புகொள்,tamil,,tamil,'நடபகள':1 'make':2 'friends':3 'friend':4 'நட':5,action|compound,ஸிங்க3தி கெர்லே,verb,
-,ꢲ,ꢲꢶꢠ꣄ꢞꢶ ꢧꢶꢬꢶꢭꢿꢡ꣄ ꢬꢴꢵ,sourashtra,,,'ꢲꢠꢞꢧꢬꢭꢡꢬ':1 'hindiphiriletrhaa':2 'hindiphiriletrha':3 'hiṇḍiphiriletrhā':4 'wander':5 'நடம':6,action|compound,हिण्टि फिरिलेत् र्हा|ஹிண்டி3 பி2ரிலேத் ரா:|hind'i phirilet rhaa|hiNDi phirilet rhA|hiṇḍi phirilet rhā|ɦɪɳɖɪ pʰɪɾɪleːt̪ ɾɦɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wander,english,,english,,action|compound,,verb,
^,,நடமாடு,tamil,,tamil,'நடமட':1 'wander':2 'நடம':3,action|compound,ஹிண்டி3 பி2ரிலேத் ரா:,verb,
-,ꢗ,ꢗꢭ꣄ꢡ ꢲꣂ,sourashtra,,,'ꢗꢭꢡꢲ':1 'chaltaho':2 'caltaho':3 'occur':4 'நட':5,action|compound,चल्त हो|சல்த ஹோ|chalta ho|calta ho|calta ho|t͡ʃəlt̪ə ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,occur,english,,english,,action|compound,,verb,
^,,நடைபெறு,tamil,,tamil,'நடபற':1 'occur':2 'நட':3,action|compound,சல்த ஹோ,verb,
-,ꢗ,ꢗꢵꢭ꣄,sourashtra,,,'ꢗꢭ':1 'chaal':2 'cal':3 'cāl':4 'walk':5 'triumphantly':6 'நட':7,action|compound,चाल|சால்|chaal|cAl|cāl|t͡ʃɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Walk triumphantly,english,,english,,action|compound,,verb,
^,,நடைபோடு,tamil,,tamil,'நடபட':1 'walk':2 'triumphantly':3 'நட':4,action|compound,சால்,verb,
-,ꢥ,ꢥꣁꢪ꣄ꢒꢾ ꢦꣁꢞꢵꢜ꣄,sourashtra,,,'ꢥꢪꢒꢦꢞꢜ':1 'nomkepodaat':2 'nomkepodat':3 'nŏmkĕpŏḍāṭ':4 'make':5 'believe':6 'நம':7,action|compound,ना॑म्क॑ पा॑डाट्|நொம்கெபொடா3ட்|no'mke' po'd'aat'|nOmkE pODAT|nŏmkĕ pŏḍāṭ|n̪omke poɖɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,make believe,english,,english,,action|compound,,verb,
^,,நம்பிக்கையூட்டு,tamil,,tamil,'நமபககயடட':1 'make':2 'believe':3 'நம':4,action|compound,நொம்கெபொடா3ட்,verb,
-,ꢥ,ꢥꣁꢪ꣄ꢒꢾ ꢣꢿ,sourashtra,,,'ꢥꢪꢒꢣ':1 'nomkede':2 'nŏmkĕde':3 'give':4 'hope':5 'நம':6 'யள':7,action|compound,ना॑म्क॑ दे|நொம்கெ தே3|no'mke' de|nOmkE de|nŏmkĕ de|n̪omke d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Give hope,english,,english,,action|compound,,verb,
^,,நம்பிக்கையளி,tamil,,tamil,'நமபககயள':1 'give':2 'hope':3 'நம':4 'யள':5,action|compound,நொம்கெ தே3,verb,
-,ꢥ,ꢥꣁꢪ꣄ꢒꢾ ꢢꣂꢮ꣄,sourashtra,,,'ꢥꢪꢒꢢꢮ':1 'nomkethov':2 'nŏmkĕthov':3 'place':4 'trust':5 'நம':6,action|compound|location,ना॑म्क॑ थोव|நொம்கெ தோ2வ்|no'mke' thov|nOmkE thov|nŏmkĕ thov|n̪omke t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""concrete""""}"
^,,Place trust,english,,english,,action|compound|location,,verb,
^,,நம்பிக்கைவை,tamil,,tamil,'நமபககவ':1 'place':2 'trust':3 'நம':4,action|compound|location,நொம்கெ தோ2வ்,verb,
-,ꢱ,ꢱ꣄ꢮꢵꢔꢡ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢱꢮꢔꢡꢒꢬ':1 'svaagatker':2 'svagatker':3 'svāgatker':4 'welcome':5 'நல':6 'வரவ':7,action|compound,स्वागत केर|ஸ்வாக3த் கேர்|svaagat ker|svAgat ker|svāgat ker|s̪ʋɑːgət̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,welcome,english,,english,,action|compound,,verb,
^,,நல்வரவு கூறு,tamil,,tamil,'நலவரவகற':1 'welcome':2 'நல':3 'வரவ':4,action|compound,ஸ்வாக3த் கேர்,verb,
-,ꢤ,ꢤꢥ꣄ꢥꢸ ꢱꢖ꣄ꢒꢶ,sourashtra,,,'ꢤꢥꢥꢱꢖꢒ':1 'dhannusanki':2 'dhannusagki':3 'dhannusaṅki':4 'give':5 'thanks':6 'thank':7 'நன':8,action|compound,धन्नु सङ्कि|த4ன்னு ஸங்கி3|dhannu sanki|dhannu saGki|dhannu saṅki|d̪ʰən̪n̪u s̪əŋkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give thanks,english,,english,,action|compound,,verb,
^,,நன்றிசொல்,tamil,,tamil,'நனறசல':1 'give':2 'thanks':3 'thank':4 'நன':5,action|compound,த4ன்னு ஸங்கி3,verb,
-,ꢔ,ꢔꢮꢸꢥ꣄ ꢣꢿ,sourashtra,,,'ꢔꢮꢥꢣ':1 'gavunde':2 'give':3 'attention':4 'டம':5,action|compound,गवुन दे|க3வுன் தே3|gavun de|gavun de|gavun de|gəʋun̪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Give attention,english,,english,,action|compound,,verb,
^,,நாட்டம்செலுத்து,tamil,,tamil,'நடடமசலதத':1 'give':2 'attention':3 'டம':4,action|compound,க3வுன் தே3,verb,
-,ꢥ,ꢥꢬ꣄ꢡꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢬꢡꢥꢒꢬ':1 'nartanoker':2 'nartanŏker':3 'dance':4 'யம':5,action|compound,नर्तना॑ केर|நர்தனொ கேர்|nartano' ker|nartanO ker|nartanŏ ker|n̪əɾt̪ən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,dance,english,,english,,action|compound,,verb,
^,,நாட்டியமாடு,tamil,,tamil,'நடடயமட':1 'dance':2 'யம':3,action|compound,நர்தனொ கேர்,verb,
-,ꢔ,ꢔꢵꢪ꣄ ꢱꣁꢜꢶꢤꢞ꣄ꢞꢾ,sourashtra,,,'ꢔꢪꢱꢜꢤꢞꢞ':1 'gaamsotidhadde':2 'gamsotidhadde':3 'gāmsŏṭidhaḍḍĕ':4 'exile':5 'கடத':6,action|compound,गाम् सा॑टि धड्डे|கா3ம்ஸொடி த4ட்3டெ3|gaam so't'idhad'd'e'|gAm sOTidhaDDE|gām sŏṭidhaḍḍĕ|gɑːm s̪oʈɪd̪ʰəɖɖe,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,exile,english,,english,,action|compound,,verb,
^,,நாடுகடத்து,tamil,,tamil,'நடகடதத':1 'exile':2 'கடத':3,action|compound,கா3ம்ஸொடி த4ட்3டெ3,verb,
-,ꢤ,ꢤ꣄ꢮꢪ꣄ꢱꢸ ꢒꢿꢬ꣄,sourashtra,,,'ꢤꢮꢪꢱꢒꢬ':1 'dhvamsuker':2 'annihilate':3 'லம':4,action|compound,ध्वम्सु केर|த்4வம்ஸு கேர்|dhvamsu ker|dhvamsu ker|dhvamsu ker|d̪ʰʋəms̪u keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,annihilate,english,,english,,action|compound,,verb,
^,,நிர்மூலமாக்கு,tamil,,tamil,'நரமலமகக':1 'annihilate':2 'லம':3,action|compound,த்4வம்ஸு கேர்,verb,
-,ꢲ,ꢲꢜ꣄ꢮꢥ꣄ ꢒꢾꢬ꣄ꢭꢿ,sourashtra,,,'ꢲꢜꢮꢥꢒꢬꢭ':1 'hatvankerle':2 'haṭvankĕrle':3 'recollect':4,action|compound,हट्वन क॑र्ले|ஹட்வன்கெர்லே|hat'van ke'rle|haTvan kErle|haṭvan kĕrle|ɦəʈʋən̪ keɾleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,recollect,english,,english,,action|compound,,verb,
^,,நினைவுகூர்,tamil,,tamil,'நனவகர':1 'recollect':2,action|compound,ஹட்வன்கெர்லே,verb,
-,ꢲ,ꢲꢜ꣄ꢮꢥ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢲꢜꢮꢥꢒꢬ':1 'hatvanker':2 'haṭvanker':3 'remind':4 'பட':5,action|compound,हट्वन्केर्|ஹட்வன் கேர்|hat'van ker|haTvan ker|haṭvan ker|ɦəʈʋən̪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,remind,english,,english,,action|compound,,verb,
^,,நினைவுபடுத்து,tamil,,tamil,'நனவபடதத':1 'remind':2 'பட':3,action|compound,ஹட்வன் கேர்,verb,
-,ꢗ,ꢗꢭ꣄ꢡ ꢲꣂ,sourashtra,,,'ꢗꢭꢡꢲ':1 'chaltaho':2 'caltaho':3 'happen':4,action|compound,चल्त हो|சல்தஹோ|chalta ho|calta ho|calta ho|t͡ʃəlt̪ə ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,happen,english,,english,,action|compound,,verb,
^,,நேரிடு,tamil,,tamil,'நரட':1 'happen':2,action|compound,சல்தஹோ,verb,
-,ꢔ,ꢔꢪ꣄ꢗꢶ ꢱꢵ,sourashtra,,,'ꢔꢪꢗꢱ':1 'gamchisaa':2 'gamcisa':3 'gamcisā':4 'look':5 'டம':6,action|compound,गम्चि सा|க3ம்சி ஸா|gamchi saa|gamci sA|gamci sā|gəmt͡ʃɪ s̪ɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,look,english,,english,,action|compound,,verb,
^,,நோட்டமிடு,tamil,,tamil,'நடடமட':1 'look':2 'டம':3,action|compound,க3ம்சி ஸா,verb,
-,ꢬ,ꢬꣂꢔꢸꢪ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢬꢔꢪꢦꢜ':1 'rogumpot':2 'rogumpoṭ':3 'fall':4 'sick':5 'பட':6,action|compound,रोगुम पोट|ரோகு3ம் போட்|rogum pot'|rogum poT|rogum poṭ|ɾoːgum poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Fall sick,english,,english,,action|compound,,verb,
^,,நோய்வாய்ப்படு,tamil,,tamil,'நயவயபபட':1 'fall':2 'sick':3 'பட':4,action|compound,ரோகு3ம் போட்,verb,
-,ꢏ,ꢏꢔꢡ꣄ꢬꢵ,sourashtra,,,'ꢏꢔꢡꢬ':1 'ogatraa':2 'ogatra':3 'ŏgatrā':4 'fast':5,action|compound,आ॑गत्रा:|ஒக3த்ரா:|o'gatraa|OgatrA|ŏgatrā|ogət̪ɾɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,fast,english,,english,,action|compound,,verb,
^,,நோன்பிரு,tamil,,tamil,'நனபர':1 'fast':2,action|compound,ஒக3த்ரா:,verb,
-,ꢮ,ꢮꢜꣁ ꢓꢳ꣄ꢳꢾ,sourashtra,,,'ꢮꢜꢓꢳꢳ':1 'vatokhalle':2 'vaṭŏkhallĕ':3 'participate':4 'பங':5,action|compound,वटा॑ खळ्ळे|வடொக2ள்ளே|vat'o' khal'l'e'|vaTO khaLLE|vaṭŏ khal̤l̤ĕ|ʋəʈo kʰəɭɭe,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,participate,english,,english,,action|compound,,verb,
^,,பங்குகொள்,tamil,,tamil,'பஙககள':1 'participate':2 'பங':3,action|compound,வடொக2ள்ளே,verb,
-,ꢩ,ꢩꢹꢒ꣄ ꢂꢠ꣄ꢗꢶꢭꢿ,sourashtra,,,'ꢩꢒꢂꢠꢗꢭ':1 'bhookanchile':2 'bhukancile':3 'bhūkaṇcile':4 'eat':5 'பச':6,action|compound,भुक अण्चिले|பூ4க்அண்சிலே|bhook anchile|bhUk aNcile|bhūk aṇcile|bʰuːk əɳt͡ʃɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,eat,english,,english,,action|compound,,verb,
^,,பசியாறு,tamil,,tamil,'பசயற':1 'eat':2 'பச':3,action|compound,பூ4க்அண்சிலே,verb,
-,ꢙ,ꢙꢦ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢙꢦꢡꢒꢬ':1 'japtoker':2 'japtŏker':3 'list':4 'பட':5 'யல':6,action|compound,जप्ता॑ केर|ஜப்தொ கேர்|japto' ker|japtO ker|japtŏ ker|d͡ʒəpt̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,list,english,,english,,action|compound,,verb,
^,,பட்டியலிடு,tamil,,tamil,'படடயலட':1 'list':2 'பட':3 'யல':4,action|compound,ஜப்தொ கேர்,verb,
-,ꢃ,ꢃꢒ꣄ꢬꢪꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢃꢒꢬꢪꢠꢒꢬ':1 'aakramanoker':2 'akramanoker':3 'ākramaṇŏker':4 'invade':5 'பட':6,action|compound,आक्रमणा॑ केर|ஆக்ரமணொ கேர்|aakramano' ker|AkramaNO ker|ākramaṇŏ ker|ɑːkɾəməɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,invade,english,,english,,action|compound,,verb,
^,,படையெடு,tamil,,tamil,'படயட':1 'invade':2 'பட':3,action|compound,ஆக்ரமணொ கேர்,verb,
-,ꢒ,ꢒꢬ꣄ꢡꢮ꣄ ꢗꢭ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢬꢡꢮꢗꢭꢡꢒꢬ':1 'kartavchaltoker':2 'kartavcaltoker':3 'kartavcaltŏker':4 'perform':5 'duty':6 'பண':7,action|compound,कर्तव चल्ता॑ केर|கர்தவ் சல்தொ கேர்|kartav chalto' ker|kartav caltO ker|kartav caltŏ ker|kəɾt̪əʋ t͡ʃəlt̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Perform duty,english,,english,,action|compound,,verb,
^,,பணியாற்று,tamil,,tamil,'பணயறற':1 'perform':2 'duty':3 'பண':4,action|compound,கர்தவ் சல்தொ கேர்,verb,
-,ꢦ,ꢦꢣꢮꢶꢡꣁꢒꢥ꣄ ꢲꢸꢡ꣄ꢬꢵꢜ꣄,sourashtra,,,'ꢦꢣꢮꢡꢒꢥꢲꢡꢬꢜ':1 'padavitokanhutraat':2 'padavitokanhutrat':3 'padavitŏkanhutrāṭ':4 'dismiss':5 'பதவ':6 'கம':7,action|compound,पदविता॑कन हुत्राट|பத3விதொகன் ஹுத்ராட்|padavito'kan hutraat'|padavitOkan hutrAT|padavitŏkan hutrāṭ|pəd̪əʋɪt̪okən̪ ɦut̪ɾɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,dismiss,english,,english,,action|compound,,verb,
^,,பதவிநீக்கம் செய்,tamil,,tamil,'பதவநககமசய':1 'dismiss':2 'பதவ':3 'கம':4,action|compound,பத3விதொகன் ஹுத்ராட்,verb,
-,ꢦ,ꢦꢣꢮꢶꢱꣁꢞꢶ ꢲꢸꢡ꣄ꢡꢶꢬ꣄,sourashtra,,,'ꢦꢣꢮꢱꢞꢲꢡꢡꢬ':1 'padavisodihuttir':2 'padavisŏḍihuttir':3 'resign':4 'பதவ':5 'லக':6,action|compound,पदविसा॑डिहुत्तिर|பத3விஸொடி3ஹுத்திர்|padaviso'd'i huttir|padavisODi huttir|padavisŏḍi huttir|pəd̪əʋɪs̪oɖɪ ɦut̪t̪ɪɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,resign,english,,english,,action|compound,,verb,
^,,பதவி விலகு,tamil,,tamil,'பதவவலக':1 'resign':2 'பதவ':3 'லக':4,action|compound,பத3விஸொடி3ஹுத்திர்,verb,
-,ꢩ,ꢩꢬ꣄ꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢩꢬꢡꢒꢬ':1 'bhartiker':2 'reply':3 'பத':4 'லள':5,action|compound,भर्ति केर|ப4ர்தி கேர்|bharti ker|bharti ker|bharti ker|bʰəɾt̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,reply,english,,english,,action|compound,,verb,
^,,பதிலளி,tamil,,tamil,'பதலள':1 'reply':2 'பத':3 'லள':4,action|compound,ப4ர்தி கேர்,verb,
-,ꢙ,ꢙꢾꢮꢵꢨ꣄ ꢣꢿ,sourashtra,,,'ꢙꢮꢨꢣ':1 'jevaabde':2 'jevabde':3 'jĕvābde':4 'reply':5 'பத':6 'லள':7,action|compound,ज॑वाप दे|ஜெவாப் தே3|je'vaab de|jEvAb de|jĕvāb de|d͡ʒeʋɑːb d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,reply,english,,english,,action|compound,,verb,
^,,பதிலளி,tamil,,tamil,'பதலள':1 'reply':2 'பத':3 'லள':4,action|compound,ஜெவாப் தே3,verb,
-,ꢩ,ꢩꢬ꣄ꢡꢶ ꢒꢿꢬ꣄,sourashtra,,,'ꢩꢬꢡꢒꢬ':1 'bhartiker':2 'substitute':3 'பத':4,action|compound,भर्ति केर|ப4ர்திகேர்|bharti ker|bharti ker|bharti ker|bʰəɾt̪ɪ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,substitute,english,,english,,action|compound,,verb,
^,,பதிலீடு செய்,tamil,,tamil,'பதலடசய':1 'substitute':2 'பத':3,action|compound,ப4ர்திகேர்,verb,
-,ꢗ,ꢗꣁꢞ꣄ꢞꢒꢥꢶ ꢱꢪ꣄ꢗꢫꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢞꢞꢒꢥꢱꢪꢗꢫꢒꢬ':1 'choddakanisamchayoker':2 'coddakanisamcayoker':3 'cŏḍḍakanisamcayŏker':4 'hoard':5 'பத':6,action|compound,चा॑ड्डकनि सम्चया॑ केर|சொட்3ட3கனி ஸம்சயொ கேர்|cho'd'd'akani samchayo' ker|cODDakani samcayO ker|cŏḍḍakani samcayŏ ker|t͡ʃoɖɖəkən̪ɪ s̪əmt͡ʃəjo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hoard,english,,english,,action|compound,,verb,
^,,பதுக்கிவை,tamil,,tamil,'பதககவ':1 'hoard':2 'பத':3,action|compound,சொட்3ட3கனி ஸம்சயொ கேர்,verb,
-,ꢦ,ꢦꣁꢠꢾ ꢩꢥ꣄ꢣꢶ,sourashtra,,,'ꢦꢠꢩꢥꢣ':1 'ponebhandi':2 'pŏṇĕbhandi':3 'bet':4 'பந':5 'தயம':6 'கட':7,action|compound,पा॑ण॑ भन्दि|பொணெப4ந்தி3|po'ne' bhandi|pONE bhandi|pŏṇĕ bhandi|poɳe bʰən̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bet,english,,english,,action|compound,,verb,
^,,பந்தயம் கட்டு,tamil,,tamil,'பநதயமகடட':1 'bet':2 'பந':3 'தயம':4 'கட':5,action|compound,பொணெப4ந்தி3,verb,
-,ꢦ,ꢦꢶꢬ꣄ꢙꢥꢪ ꣄ꢦꣂꢜ꣄,sourashtra,,,'ꢦꢬꢙꢥꢪꢦꢜ':1 'pirjanamapot':2 'pirjanamapoṭ':3 'use':4 'பயன':5 'பட':6,action|compound,पिर्जनम्पोट|பிர்ஜனம்போட்|pirjanama pot'|pirjanama poT|pirjanama poṭ|pɪɾd͡ʒən̪əmə poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be of use,english,,english,,action|compound,,verb,
^,,பயன்படு,tamil,,tamil,'பயனபட':1 'use':2 'பயன':3 'பட':4,action|compound,பிர்ஜனம்போட்,verb,
-,ꢦ,ꢦꢾꢫꢶꢬ꣄ ꢔꢵꢭ꣄,sourashtra,,,'ꢦꢫꢬꢔꢭ':1 'peyirgaal':2 'peyirgal':3 'pĕyirgāl':4 'cultivate':5 'பய':6,action|compound,प॑यिर घाल|பெயிர் கா4ல்|pe'yir gaal|pEyir gAl|pĕyir gāl|pejɪɾ gɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,cultivate,english,,english,,action|compound,,verb,
^,,பயிர் செய்,tamil,,tamil,'பயரசய':1 'cultivate':2 'பய':3,action|compound,பெயிர் கா4ல்,verb,
-,ꢤ,ꢤꢪꢵꢤꢵꢪ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢤꢪꢤꢪꢦꢥꢣ':1 'dhamaadhaampondi':2 'dhamadhampondi':3 'dhamādhāmpŏndi':4 'hurry':5 'பரபரப':6 'பட':7,action|compound,धमाधाम पा॑न्दि|த4மாதா4ம் பொந்தி3|dhamaadhaam po'ndi|dhamAdhAm pOndi|dhamādhām pŏndi|d̪ʰəmɑːd̪ʰɑːm pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hurry,english,,english,,action|compound,,verb,
^,,பரபரப்படை,tamil,,tamil,'பரபரபபட':1 'hurry':2 'பரபரப':3 'பட':4,action|compound,த4மாதா4ம் பொந்தி3,verb,
-,ꢦ,ꢦꢬꢶ ꢲꢵꢬ꣄ ꢮꢾꢒ꣄ꢒꢶ,sourashtra,,,'ꢦꢬꢲꢬꢮꢒꢒ':1 'parihaarvekki':2 'pariharvekki':3 'parihārvĕkki':4 'redeem':5 'பர':6 'ரம':7,action|compound,परिहार व॑क्कि|பரிஹார்வெக்கி|pari haar ve'kki|pari hAr vEkki|pari hār vĕkki|pəɾɪ ɦɑːɾ ʋekkɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,redeem,english,,english,,action|compound,,verb,
^,,பரிகாரம்தேடு,tamil,,tamil,'பரகரமதட':1 'redeem':2 'பர':3 'ரம':4,action|compound,பரிஹார்வெக்கி,verb,
-,ꢙ,ꢙꢿꢪ꣄ ꢣꢿ,sourashtra,,,'ꢙꢪꢣ':1 'jemde':2 'give':3 'award':4 'பர':5 'சள':6,action|compound,जेम दे|ஜேம் தே3|jem de|jem de|jem de|d͡ʒeːm d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give award,english,,english,,action|compound,,verb,
^,,பரிசளி,tamil,,tamil,'பரசள':1 'give':2 'award':3 'பர':4 'சள':5,action|compound,ஜேம் தே3,verb,
-,ꢦ,ꢦꢵꢬꢶꢡꣂꢱ꣄ ꢣꢿ,sourashtra,,,'ꢦꢬꢡꢱꢣ':1 'paaritosde':2 'paritosde':3 'pāritosde':4 'give':5 'award':6 'பர':7 'சள':8,action|compound,पारितोस दे|பாரிதோஸ் தே3|paaritos de|pAritos de|pāritos de|pɑːɾɪt̪oːs̪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give award,english,,english,,action|compound,,verb,
^,,பரிசளி,tamil,,tamil,'பரசள':1 'give':2 'award':3 'பர':4 'சள':5,action|compound,பாரிதோஸ் தே3,verb,
-,ꢩ,ꢩꣁꢔꢸꢪꢵꢥ꣄ ꢣꢾ,sourashtra,,,'ꢩꢔꢪꢥꢣ':1 'bhogumaande':2 'bhogumande':3 'bhŏgumāndĕ':4 'give':5 'award':6 'பர':7 'சள':8,action|compound,भा॑गुमान दे|பொ4கு3மான் தே3|bho'gumaan de'|bhOgumAn dE|bhŏgumān dĕ|bʰogumɑːn̪ d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give award,english,,english,,action|compound,,verb,
^,,பரிசளி,tamil,,tamil,'பரசள':1 'give':2 'award':3 'பர':4 'சள':5,action|compound,பொ4கு3மான் தே3,verb,
-,ꢦ,ꢦꢬꢶꢯꢷꢭꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢯꢭꢥꢒꢬ':1 'parisheelanoker':2 'parizilanoker':3 'pariśīlanŏker':4 'scrutinize':5 'பர':6 'லன':7,action|compound,परिशीलना॑ केर्|பரிஶீலனொகேர்|parisheelano' ker|parizIlanO ker|pariśīlanŏ ker|pəɾɪʃiːlən̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,scrutinize,english,,english,,action|compound,,verb,
^,,பரிசீலனை செய்,tamil,,tamil,'பரசலனசய':1 'scrutinize':2 'பர':3 'லன':4,action|compound,பரிஶீலனொகேர்,verb,
-,ꢦ,ꢦꢬꢶꢡꢵꢦ꣄ ꢦꣂꢜ꣄,sourashtra,,,'ꢦꢬꢡꢦꢦꢜ':1 'paritaappot':2 'paritappot':3 'paritāppoṭ':4 'show':5 'sympathy':6 'பர':7,action|compound,परिताप पोट|பரிதாப் போட்|paritaap pot'|paritAp poT|paritāp poṭ|pəɾɪt̪ɑːp poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,show sympathy,english,,english,,action|compound,,verb,
^,,பரிவுகாட்டு,tamil,,tamil,'பரவகடட':1 'show':2 'sympathy':3 'பர':4,action|compound,பரிதாப் போட்,verb,
-,ꢨ,ꢨꣁꢭꢶ ꢣꢿ,sourashtra,,,'ꢨꢭꢣ':1 'bolide':2 'bŏlide':3 'kill':4 'sacrifice':5 'பல':6,action|compound,बा॑लि दे|பொ3லிதே3|bo'li de|bOli de|bŏli de|bolɪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Kill as a sacrifice,english,,english,,action|compound,,verb,
^,,பலிகொடு,tamil,,tamil,'பலகட':1 'kill':2 'sacrifice':3 'பல':4,action|compound,பொ3லிதே3,verb,
-,ꢓ,ꢓꢠ꣄ꢞꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢓꢠꢞꢠꢒꢬ':1 'khandanoker':2 'khaṇḍaṇŏker':3 'censure':4 'பழ':5,action|compound,खण्डणा॑ केर|க2ண்ட3ணொ கேர்|khand'ano' ker|khaNDaNO ker|khaṇḍaṇŏ ker|kʰəɳɖəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,censure,english,,english,,action|compound,,verb,
^,,பழித்துக்காட்டு,tamil,,tamil,'பழததககடட':1 'censure':2 'பழ':3,action|compound,க2ண்ட3ணொ கேர்,verb,
-,ꢨ,ꢨꣁꢭꢶ ꢓꢵꢜ꣄,sourashtra,,,'ꢨꢭꢓꢜ':1 'bolikhaat':2 'bolikhat':3 'bŏlikhāṭ':4 'take':5 'revenge':6 'பழ':7,action|compound,बा॑लि खाट|பொ3லி கா2ட்|bo'li khaat'|bOli khAT|bŏli khāṭ|bolɪ kʰɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,take revenge,english,,english,,action|compound,,verb,
^,,பழிவாங்கு,tamil,,tamil,'பழவஙக':1 'take':2 'revenge':3 'பழ':4,action|compound,பொ3லி கா2ட்,verb,
-,ꢦ,ꢦ꣄ꢬꢡꢶ ꢲꢶꢪ꣄ꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢡꢲꢪꢱꢒꢬ':1 'pratihimsoker':2 'pratihimsŏker':3 'take':4 'revenge':5 'பழ':6,action|compound,प्रति हिम्सा॑ केर|ப்ரதி ஹிம்ஸொ கேர்|prati himso' ker|prati himsO ker|prati himsŏ ker|pɾət̪ɪ ɦɪms̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,take revenge,english,,english,,action|compound,,verb,
^,,பழிவாங்கு,tamil,,tamil,'பழவஙக':1 'take':2 'revenge':3 'பழ':4,action|compound,ப்ரதி ஹிம்ஸொ கேர்,verb,
-,ꢒ,ꢒꣁꢳꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢳꢬꢒꢬ':1 'kolaarker':2 'kolarker':3 'kŏlārker':4 'impair':5 'பழ':6,action|compound,का॑ळार केर|கொளார் கேர்|ko'l'aar ker|kOLAr ker|kŏl̤ār ker|koɭɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,impair,english,,english,,action|compound,,verb,
^,,பழுதாக்கு,tamil,,tamil,'பழதகக':1 'impair':2 'பழ':3,action|compound,கொளார் கேர்,verb,
-,ꢒ,ꢒꢪ꣄ꢞꢥ꣄ ꢣꢿ,sourashtra,,,'ꢒꢪꢞꢥꢣ':1 'kamdande':2 'kamḍande':3 'give':4 'away':5 'without':6 'பற':7,action|compound,कम्डन दे|கம்ட3ன் தே3|kamd'an de|kamDan de|kamḍan de|kəmɖən̪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Give away/ go without,english,,english,,action|compound,,verb,
^,,பறிகொடு,tamil,,tamil,'பறகட':1 'give':2 'away':3 'without':4 'பற':5,action|compound,கம்ட3ன் தே3,verb,
-,ꢆ,ꢆꢒ꣄ꢒꢶꢭꢶ ꢙꢵ,sourashtra,,,'ꢆꢒꢒꢭꢙ':1 'ukkilijaa':2 'ukkilija':3 'ukkilijā':4 'snatch':5 'பற':6 'தல':7,action|compound,उक्किलि जा|உக்கிலிஜா|ukkili jaa|ukkili jA|ukkili jā|ukkɪlɪ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,snatch,english,,english,,action|compound,,verb,
^,,பறிமுதல் செய்,tamil,,tamil,'பறமதலசய':1 'snatch':2 'பற':3 'தல':4,action|compound,உக்கிலிஜா,verb,
-,ꢮ,ꢮꢔꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢔꢒꢬ':1 'vagoker':2 'vagŏker':3 'classify':4 'பட':5,action|compound,वĩĩगा॑ केर्|வகொ3கேர்|vago' ker|vagO ker|vagŏ ker|ʋəgo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,classify,english,,english,,action|compound,,verb,
^,,பாகுபடுத்து,tamil,,tamil,'பகபடதத':1 'classify':2 'பட':3,action|compound,வகொ3கேர்,verb,
-,ꢨ,ꢨꢵꢮꢭꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢨꢮꢭꢒꢬ':1 'baavaloker':2 'bavaloker':3 'bāvalŏker':4 'feign':5 'pretend':6,action|compound,बावला॑ केर|பா3வலொ கேர்|baavalo' ker|bAvalO ker|bāvalŏ ker|bɑːʋəlo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"feign, pretend",english,,english,,action|compound,,verb,
^,,பாசாங்கு செய்,tamil,,tamil,'பசஙகசய':1 'feign':2 'pretend':3,action|compound,பா3வலொ கேர்,verb,
-,ꢒ,ꢒꢮꢶꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢒꢮꢡꢒꢬ':1 'kavitoker':2 'kavitŏker':3 'compose':4 'கட':5,action|compound,कविता॑ केर|கவிதொகேர்|kavito' ker|kavitO ker|kavitŏ ker|kəʋɪt̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compose,english,,english,,action|compound,,verb,
^,,பாட்டுக்கட்டு,tamil,,tamil,'படடககடட':1 'compose':2 'கட':3,action|compound,கவிதொகேர்,verb,
-,ꢔ,ꢔꢷꢡ꣄ ꢭꢶꢓꢶ,sourashtra,,,'ꢔꢡꢭꢓ':1 'geetlikhi':2 'gitlikhi':3 'gītlikhi':4 'compose':5 'கட':6,action|compound,गीत्लखि|கீ3த் லிகி2|geet likhi|gIt likhi|gīt likhi|giːt̪ lɪkʰɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compose,english,,english,,action|compound,,verb,
^,,பாட்டுக்கட்டு,tamil,,tamil,'படடககடட':1 'compose':2 'கட':3,action|compound,கீ3த் லிகி2,verb,
-,ꢱ,ꢱ꣄ꢮꢬꢵꢥ꣄ ꢡꢵꢫ꣄,sourashtra,,,'ꢱꢮꢬꢥꢡꢫ':1 'svaraantaay':2 'svarantay':3 'svarāntāy':4 'compose':5 'கட':6,action|compound,स्वरान ताय|ஸ்வரான் தாய்|svaraan taay|svarAn tAy|svarān tāy|s̪ʋəɾɑːn̪ t̪ɑːj,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,compose,english,,english,,action|compound,,verb,
^,,பாட்டுக்கட்டு,tamil,,tamil,'படடககடட':1 'compose':2 'கட':3,action|compound,ஸ்வரான் தாய்,verb,
-,ꢦ,ꢦꢵꢝꣁ ꢱꢶꢒ꣄ꢒꢵꢜ꣄,sourashtra,,,'ꢦꢝꢱꢒꢒꢜ':1 'paathosikkaat':2 'pathosikkat':3 'pāṭhŏsikkāṭ':4 'teach':5 'lesson':6 'டம':7 'கற':8,action|compound,पाठो सिक्काट|பாடொ2 ஸிக்காட்|paat'ho' sikkaat'|pAThO sikkAT|pāṭhŏ sikkāṭ|pɑːʈʰo s̪ɪkkɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,teach lesson,english,,english,,action|compound,,verb,
^,,பாடம்கற்பி,tamil,,tamil,'படமகறப':1 'teach':2 'lesson':3 'டம':4 'கற':5,action|compound,பாடொ2 ஸிக்காட்,verb,
-,ꢦ,ꢦ꣄ꢬꢗꢵꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢗꢬꢒꢬ':1 'prachaarker':2 'pracarker':3 'pracārker':4 'propagate':5 'ரச':6 'ரம':7,action|compound,प्रचार केर|ப்ரசார் கேர்|prachaar ker|pracAr ker|pracār ker|pɾət͡ʃɑːɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,propagate,english,,english,,action|compound,,verb,
^,,பிரச்சாரம் செய்,tamil,,tamil,'பரசசரமசய':1 'propagate':2 'ரச':3 'ரம':4,action|compound,ப்ரசார் கேர்,verb,
-,ꢂ,ꢂꢥꢸꢨꢥ꣄ꢤꢸ ꢗꢾꢬ꣄ꢗꢶ,sourashtra,,,'ꢂꢥꢨꢥꢤꢗꢬꢗ':1 'anubandhucherchi':2 'anubandhucerci':3 'anubandhucĕrci':4 'annex':5,action|compound,अनुबन्धु च॑र्चि|அனுப3ந்து4 செர்சி|anubandhu che'rchi|anubandhu cErci|anubandhu cĕrci|ən̪ubən̪d̪ʰu t͡ʃeɾt͡ʃɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,annex,english,,english,,action|compound,,verb,
^,,பின்னிணை,tamil,,tamil,'பனனண':1 'annex':2,action|compound,அனுப3ந்து4 செர்சி,verb,
-,ꢨ,ꢨꢷꢞꢠꣁ ꢲꣂ,sourashtra,,,'ꢨꢞꢠꢲ':1 'beedanoho':2 'bidanoho':3 'bīḍaṇŏho':4 'affected':5 'affect':6 'கபட':7,action|compound,पीडणा॑ हो|பீட3ணொ ஹோ|beed'ano' ho|bIDaNO ho|bīḍaṇŏ ho|biːɖəɳo ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be affected,english,,english,,action|compound,,verb,
^,,பீடிக்கபடு,tamil,,tamil,'படககபட':1 'affected':2 'affect':3 'கபட':4,action|compound,பீட3ணொ ஹோ,verb,
-,ꢤ,ꢤꢵꢒ꣄ ꢭꢔꢞ꣄ꢳꢿ,sourashtra,,,'ꢤꢒꢭꢔꢞꢳ':1 'dhaaklagadle':2 'dhaklagadle':3 'dhāklagaḍle':4 'desperate':5,action|compound,धाक लगड्ळे|தா4க் லக3ட்3ளே|dhaak lagad'l'e|dhAk lagaDLe|dhāk lagaḍl̤e|d̪ʰɑːk ləgəɖɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Be desperate,english,,english,,action|compound,,verb,
^,,பீதியுறு,tamil,,tamil,'பதயற':1 'desperate':2,action|compound,தா4க் லக3ட்3ளே,verb,
-,ꢒ,ꢒꢷꢬ꣄ꢡꢶ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢒꢬꢡꢦꢥꢣ':1 'keertipondi':2 'kirtipondi':3 'kīrtipŏndi':4 'become':5 'famous':6 'கழட':7,action|compound,कीर्ति पा॑न्दि|கீர்தி பொந்தி3|keerti po'ndi|kIrti pOndi|kīrti pŏndi|kiːɾt̪ɪ pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become famous,english,,english,,action|compound,,verb,
^,,புகழடை,tamil,,tamil,'பகழட':1 'become':2 'famous':3 'கழட':4,action|compound,கீர்தி பொந்தி3,verb,
-,ꢪ,ꢪꣁꢥ꣄ꢥꢸ ꢣꢸꢮ꣄ꢥꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢪꢥꢥꢣꢮꢥꢒꢬ':1 'monnuduvnoker':2 'mŏnnuduvnŏker':3 'wound':4 'wind':5 'பட':6,action|compound,मा॑न्नु दुव्ना॑ केर|மொன்னு து3வ்னொ கேர்|mo'nnu duvno' ker|mOnnu duvnO ker|mŏnnu duvnŏ ker|mon̪n̪u d̪uʋn̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,wound,english,,english,,action|compound,,verb,
^,,புண்படுத்து,tamil,,tamil,'பணபடதத':1 'wound':2 'wind':3 'பட':4,action|compound,மொன்னு து3வ்னொ கேர்,verb,
-,ꢦ,ꢦꢱ꣄ꢒꢜꢸꢪ꣄ ꢮꢡ꣄ꢡ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢱꢒꢜꢪꢮꢡꢡꢒꢬ':1 'paskatumvattaker':2 'paskaṭumvattaker':3 'backbite':4 'றங':5,action|compound,पस्कटुम्वत्त केर्|பஸ்கடும் வத்தொ கேர்|paskat'um vatta ker|paskaTum vatta ker|paskaṭum vatta ker|pəs̪kəʈum ʋət̪t̪ə keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,backbite,english,,english,,action|compound,,verb,
^,,புறங்கூறு,tamil,,tamil,'பறஙகற':1 'backbite':2 'றங':3,action|compound,பஸ்கடும் வத்தொ கேர்,verb,
-,ꢥ,ꢥꢴꢥ ꣄ꢲꢱꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢥꢥꢲꢱꢒꢬ':1 'nhanahasoker':2 'nhanahasŏker':3 'smile':4 'னக':5,action|compound,न्हन् हसा॑ केर|ந:ன் ஹஸொ கேர்|nhana haso' ker|nhana hasO ker|nhana hasŏ ker|n̪ɦən̪ə ɦəs̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,smile,english,,english,,action|compound,,verb,
^,,புன்னகை செய்,tamil,,tamil,'பனனகசய':1 'smile':2 'னக':3,action|compound,ந:ன் ஹஸொ கேர்,verb,
-,ꢕ,ꢕꢾꢥꢪ꣄ꢒꢥꢶ ꢲꢜ꣄ꢮꢶꢭꢿ,sourashtra,,,'ꢕꢥꢪꢒꢥꢲꢜꢮꢭ':1 'ghenamkanihatvile':2 'ghĕnamkanihaṭvile':3 'proud':4 'தம':5,action|compound,घेनम्कनि हट्विले|கெ4னம்கனி ஹட்விலே|ghe'namkani hat'vile|ghEnamkani haTvile|ghĕnamkani haṭvile|gʰen̪əmkən̪ɪ ɦəʈʋɪleː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be proud of,english,,english,,action|compound,,verb,
^,,பெருமிதம்கொள்,tamil,,tamil,'பரமதமகள':1 'proud':2 'தம':3,action|compound,கெ4னம்கனி ஹட்விலே,verb,
-,ꢪ,ꢪꢴꣁꢜ ꢲꢸꢨ꣄ꢨꢱ꣄ ꢣꢿ,sourashtra,,,'ꢪꢜꢲꢨꢨꢱꢣ':1 'mhotahubbasde':2 'mhŏṭahubbasde':3 'sigh':4,action|compound,म्हा॑ट हुब्बस्दे|மொ:ட ஹுப்3ப3ஸ் தே3|mho't'a hubbas de|mhOTa hubbas de|mhŏṭa hubbas de|mɦoʈə ɦubbəs̪ d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,sigh,english,,english,,action|compound,,verb,
^,,பெரூமூச்சுவிடு,tamil,,tamil,'பரமசசவட':1 'sigh':2,action|compound,மொ:ட ஹுப்3ப3ஸ் தே3,verb,
-,ꢪ,ꢪꣂꢭ꣄ꢲꢥꢶ ꢮꢡ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢪꢭꢲꢥꢮꢡꢡꢒꢬ':1 'molhanivattoker':2 'molhanivattŏker':3 'bargain':4 'ரம':5,action|compound,मोल्हनि वत्ता॑ केर|மோல்ஹனி வத்தொ கேர்|molhani vatto' ker|molhani vattO ker|molhani vattŏ ker|moːlɦən̪ɪ ʋət̪t̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bargain,english,,english,,action|compound,,verb,
^,,பேரம்பேசு,tamil,,tamil,'பரமபச':1 'bargain':2 'ரம':3,action|compound,மோல்ஹனி வத்தொ கேர்,verb,
-,ꢦ,ꢦꢶꢱꣁ ꢤꢾꢬꢵꢜ꣄,sourashtra,,,'ꢦꢱꢤꢬꢜ':1 'pisodheraat':2 'pisodherat':3 'pisŏdhĕrāṭ':4 'madden':5 'யம':6,action|compound,पिसा॑ धेराट|பிஸொ தெ4ராட்|piso' dhe'raat'|pisO dhErAT|pisŏ dhĕrāṭ|pɪs̪o d̪ʰeɾɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,madden,english,,english,,action|compound,,verb,
^,,பைத்தியமாக்கு,tamil,,tamil,'பததயமகக':1 'madden':2 'யம':3,action|compound,பிஸொ தெ4ராட்,verb,
-,ꢗ,ꢗꣁꢞ꣄ꢞ ꢮꢡ꣄ꢡꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢗꢞꢞꢮꢡꢡꢒꢬ':1 'choddavattoker':2 'coddavattoker':3 'cŏḍḍavattŏker':4 'bluff':5,action|compound,चा॑ड्ड वत्ता॑ केर्|சொட்3ட3வத்தொகேர்|cho'd'd'a vatto' ker|cODDa vattO ker|cŏḍḍa vattŏ ker|t͡ʃoɖɖə ʋət̪t̪o keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,bluff,english,,english,,action|compound,,verb,
^,,பொய்பேசு,tamil,,tamil,'பயபச':1 'bluff':2,action|compound,சொட்3ட3வத்தொகேர்,verb,
-,ꢏ,ꢏꢬꢤꢵꢥ꣄ꢒꢥꢶ ꢭꢔꢳ꣄ꢳꢿ,sourashtra,,,'ꢏꢬꢤꢥꢒꢥꢭꢔꢳꢳ':1 'oradhaankanilagalle':2 'oradhankanilagalle':3 'ŏradhānkanilagalle':4 'consider':5 'பட':6,action|compound,प्रधान्कनि लगळ्ळे|ப்ரதா4ன்கனி லக3ள்ளே|o'radhaankani lagal'l'e|OradhAnkani lagaLLe|ŏradhānkani lagal̤l̤e|oɾəd̪ʰɑːn̪kən̪ɪ ləgəɭɭeː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,consider,english,,english,,action|compound,,verb,
^,,பொருட்படுத்து,tamil,,tamil,'பரடபடதத':1 'consider':2 'பட':3,action|compound,ப்ரதா4ன்கனி லக3ள்ளே,verb,
-,ꢨ,ꢨꣂꢣꣂ ꢲꢶꢖ꣄ꢔꢵꢜ꣄,sourashtra,,,'ꢨꢣꢲꢖꢔꢜ':1 'bodohingaat':2 'bodohiggat':3 'bodohiṅgāṭ':4 'intoxicate':5,action|compound,बोदा॑ हिङ्गाट|போ3தொ3 ஹிங்கா3ட்|bodo hingaat'|bodo hiGgAT|bodo hiṅgāṭ|boːd̪oː ɦɪŋgɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,intoxicate,english,,english,,action|compound,,verb,
^,,போதையூட்டு,tamil,,tamil,'பதயடட':1 'intoxicate':2,action|compound,போ3தொ3 ஹிங்கா3ட்,verb,
-,ꢔ,ꢔꢸꢞ꣄ꢒ ꢡꣀꢭꢶ ꢨꢷꢱ꣄,sourashtra,,,'ꢔꢞꢒꢡꢭꢨꢱ':1 'gudkatailibees':2 'gudkatailibis':3 'guḍkatailibīs':4 'kneel':5 'மண':6,action|compound,गुड्क तैलि बीस्|கு3ட்3க தைலிபீ3ஸ்|gud'ka taili bees|guDka taili bIs|guḍka taili bīs|guɖkə t̪əɪlɪ biːs̪,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,kneel,english,,english,,action|compound,,verb,
^,,மண்டியிடு,tamil,,tamil,'மணடயட':1 'kneel':2 'மண':3,action|compound,கு3ட்3க தைலிபீ3ஸ்,verb,
-,ꢔ,ꢔꢸꢠ꣄ꢠꢸ ꢥꢶꢬ꣄ꢤꢵꢬꢠꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢔꢠꢠꢥꢬꢤꢬꢠꢒꢬ':1 'gunnunirdhaaranoker':2 'gunnunirdharanoker':3 'guṇṇunirdhāraṇŏker':4 'assess':5 'evaluate':6 'மத':7,action|compound,गुण्णु निर्धारणा॑ केर|கு3ண்ணு நிர்தா4ரணொ கேர்|gunnu nirdhaarano' ker|guNNu nirdhAraNO ker|guṇṇu nirdhāraṇŏ ker|guɳɳu n̪ɪɾd̪ʰɑːɾəɳo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"assess, evaluate",english,,english,,action|compound,,verb,
^,,மதிப்பிடு,tamil,,tamil,'மதபபட':1 'assess':2 'evaluate':3 'மத':4,action|compound,கு3ண்ணு நிர்தா4ரணொ கேர்,verb,
-,ꢩ,ꢩꢬ꣄ꢡꢶꢒꢿꢬ꣄,sourashtra,,,'ꢩꢬꢡꢒꢬ':1 'bhartiker':2 'respond':3 'மற':4,action|compound,भर्ति केर|ப4ர்திகேர்|bhartiker|bhartiker|bhartiker|bʰəɾt̪ɪkeːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,respond,english,,english,,action|compound,,verb,
^,,மறுமொழிகூறு,tamil,,tamil,'மறமழகற':1 'respond':2 'மற':3,action|compound,ப4ர்திகேர்,verb,
-,ꢙ,ꢙꢾꢮꢵꢦ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢙꢮꢦꢒꢬ':1 'jevaapker':2 'jevapker':3 'jĕvāpker':4 'respond':5 'மற':6,action|compound,ज॑वाप केर|ஜெவாப் கேர்|je'vaap ker|jEvAp ker|jĕvāp ker|d͡ʒeʋɑːp keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,respond,english,,english,,action|compound,,verb,
^,,மறுமொழிகூறு,tamil,,tamil,'மறமழகற':1 'respond':2 'மற':3,action|compound,ஜெவாப் கேர்,verb,
-,ꢲ,ꢲꢵꢬ꣄ ꢕꢵꢭ꣄,sourashtra,,,'ꢲꢬꢕꢭ':1 'haarghaal':2 'harghal':3 'hārghāl':4 'put':5 'garland':6,action|compound,हार्घाल|ஹார் கா4ல்|haar ghaal|hAr ghAl|hār ghāl|ɦɑːɾ gʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,put garland,english,,english,,action|compound,,verb,
^,,மாலைபோடு,tamil,,tamil,'மலபட':1 'put':2 'garland':3,action|compound,ஹார் கா4ல்,verb,
-,ꢪ,ꢪꢸꢞꢶꢮ꣄ ꢲꣂ,sourashtra,,,'ꢪꢞꢮꢲ':1 'mudivho':2 'muḍivho':3 'over':4 'வட':5,action|compound,मुडिव्हो|முடி3வ் ஹோ|mud'iv ho|muDiv ho|muḍiv ho|muɖɪʋ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be over,english,,english,,action|compound,,verb,
^,,முடிவடை,tamil,,tamil,'மடவட':1 'over':2 'வட':3,action|compound,முடி3வ் ஹோ,verb,
-,ꢤ,ꢤꢥ꣄ꢢꣁꢮ꣄,sourashtra,,,'ꢤꢥꢢꢮ':1 'dhanthov':2 'dhanthŏv':3 'invest':4 'தல':5,action|compound,दन्थोव|த4ன் தோ2வ்|dhantho'v|dhanthOv|dhanthŏv|d̪ʰən̪t̪ʰoʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,invest,english,,english,,action|compound,,verb,
^,,முதலிடு,tamil,,tamil,'மதலட':1 'invest':2 'தல':3,action|compound,த4ன் தோ2வ்,verb,
-,ꢣ,ꢣꣁꢮ꣄ꢬꣁ ꢦꣂꢜ꣄,sourashtra,,,'ꢣꢮꢬꢦꢜ':1 'dovropot':2 'dŏvrŏpoṭ':3 'become':4 'old':5 'யட':6,action|compound,दा॑व्रा॑ पोट|தொ3வ்ரொபோட்|do'vro' pot'|dOvrO poT|dŏvrŏ poṭ|d̪oʋɾo poːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,become old,english,,english,,action|compound,,verb,
^,,முதுமையடை,tamil,,tamil,'மதமயட':1 'become':2 'old':3 'யட':4,action|compound,தொ3வ்ரொபோட்,verb,
-,ꢱ,ꢱꣁꢪ꣄ꢪꢬ꣄ ꢮꢵꢜ꣄ ꢣꢾꢒ꣄ꢒꢵꢜ꣄,sourashtra,,,'ꢱꢪꢪꢬꢮꢜꢣꢒꢒꢜ':1 'sommarvaatdekkaat':2 'sommarvatdekkat':3 'sŏmmarvāṭdĕkkāṭ':4 'lead':5,action|compound,सा॑ममर् वाट् द॑क्काट्|ஸொம்மர் வாட் தெ3க்காட்|so'mmar vaat' de'kkaat'|sOmmar vAT dEkkAT|sŏmmar vāṭ dĕkkāṭ|s̪omməɾ ʋɑːʈ d̪ekkɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,lead,english,,english,,action|compound,,verb,
^,,முன்செல்,tamil,,tamil,'மனசல':1 'lead':2,action|compound,ஸொம்மர் வாட் தெ3க்காட்,verb,
-,ꢪ,ꢪꢶꢛ꣄ꢗꢸꢬ꣄ ꢲꢶꢖ꣄ꢔꢵꢜ꣄,sourashtra,,,'ꢪꢛꢗꢬꢲꢖꢔꢜ':1 'minchurhingaat':2 'mijcurhiggat':3 'miñcurhiṅgāṭ':4 'perform':5 'first':6 'time':7 'the':8 'stage':9,action|compound|temporal,मञ्चुर हिङ्गाट|மஞ்சுர் ஹிங்கா3ட்|minchur hingaat'|miJcur hiGgAT|miñcur hiṅgāṭ|mɪɲt͡ʃuɾ ɦɪŋgɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to perform first time on the stage,english,,english,,action|compound|temporal,,verb,
^,,மேடையேற்று,tamil,,tamil,'மடயறற':1 'perform':2 'first':3 'time':4 'the':5 'stage':6,action|compound|temporal,மஞ்சுர் ஹிங்கா3ட்,verb,
-,ꢪ,ꢪꢶꢜ꣄ꢜꢬ꣄ ꢲꢶꢖ꣄ꢔꢵꢜ꣄,sourashtra,,,'ꢪꢜꢜꢬꢲꢖꢔꢜ':1 'mittarhingaat':2 'mittarhiggat':3 'miṭṭarhiṅgāṭ':4 'perform':5 'first':6 'time':7 'the':8 'stage':9,action|compound|temporal,मिट्टर हिङ्गाट|மிட்டர் ஹிங்கா3ட்|mit't'ar hingaat'|miTTar hiGgAT|miṭṭar hiṅgāṭ|mɪʈʈəɾ ɦɪŋgɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,to perform first time on the stage,english,,english,,action|compound|temporal,,verb,
^,,மேடையேற்று,tamil,,tamil,'மடயறற':1 'perform':2 'first':3 'time':4 'the':5 'stage':6,action|compound|temporal,மிட்டர் ஹிங்கா3ட்,verb,
-,ꢮ,ꢮꢵꢜ꣄ ꢣꢾꢒ꣄ꢒꢵꢜ꣄,sourashtra,,,'ꢮꢜꢣꢒꢒꢜ':1 'vaatdekkaat':2 'vatdekkat':3 'vāṭdĕkkāṭ':4 'guide':5 'வழ':6,action|compound,वाट्द॑क्काट्|வாட் தெ3க்காட்|vaat' de'kkaat'|vAT dEkkAT|vāṭ dĕkkāṭ|ʋɑːʈ d̪ekkɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,guide,english,,english,,action|compound,,verb,
^,,வழிகாட்டு,tamil,,tamil,'வழகடட':1 'guide':2 'வழ':3,action|compound,வாட் தெ3க்காட்,verb,
-,ꢱ,ꢱꣁꢪ꣄ꢪꢬ꣄ ꢙꢵ,sourashtra,,,'ꢱꢪꢪꢬꢙ':1 'sommarjaa':2 'sommarja':3 'sŏmmarjā':4 'lead':5 'வழ':6 'நடத':7,action|compound,सा॑म्मर् जा|ஸொம்மர் ஜா|so'mmar jaa|sOmmar jA|sŏmmar jā|s̪omməɾ d͡ʒɑː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,lead,english,,english,,action|compound,,verb,
^,,வழிநடத்து,tamil,,tamil,'வழநடதத':1 'lead':2 'வழ':3 'நடத':4,action|compound,ஸொம்மர் ஜா,verb,
-,ꢦ,ꢦꢸꢙꢾ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢙꢒꢬ':1 'pujeker':2 'pujĕker':3 'worship':4 'வழ':5 'பட':6,action|compound,पुज॑ केर्|புஜெகேர்|puje' ker|pujE ker|pujĕ ker|pud͡ʒe keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,worship,english,,english,,action|compound,,verb,
^,,வழிபடு,tamil,,tamil,'வழபட':1 'worship':2 'வழ':3 'பட':4,action|compound,புஜெகேர்,verb,
-,ꢮ,ꢮꢵꢜ꣄ ꢱꣂꢜ꣄,sourashtra,,,'ꢮꢜꢱꢜ':1 'vaatsot':2 'vatsot':3 'vāṭsoṭ':4 'give':5 'way':6 'வழ':7,action|compound,वाट्सोट्|வாட்ஸோட்|vaat' sot'|vAT soT|vāṭ soṭ|ʋɑːʈ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give way,english,,english,,action|compound,,verb,
^,,வழிவிடு,tamil,,tamil,'வழவட':1 'give':2 'way':3 'வழ':4,action|compound,வாட்ஸோட்,verb,
-,ꢧ,ꢧꢭ꣄ꢭꣁ ꢃꢣꢸꢬ꣄ꢮꣁ ꢣꢿ,sourashtra,,,'ꢧꢭꢭꢃꢣꢬꢮꢣ':1 'phalloaadurvode':2 'phalloadurvode':3 'phallŏādurvŏde':4 'second':5 'வழ':6,action|compound,फल्ला॑ आदुरवा॑ दे|ப2ல்லொஆது3ரவொ தே3|phallo' aadurvo' de|phallO AdurvO de|phallŏ ādurvŏ de|pʰəllo ɑːd̪uɾʋo d̪eː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,second,english,,english,,action|compound,,verb,
^,,வழிமொழி,tamil,,tamil,'வழமழ':1 'second':2 'வழ':3,action|compound,ப2ல்லொஆது3ரவொ தே3,verb,
-,ꢂ,ꢂꢥꢸꢱꢬꢶ ꢱꢖ꣄ꢔꢶ,sourashtra,,,'ꢂꢥꢱꢬꢱꢖꢔ':1 'anusarisangi':2 'anusarisaggi':3 'anusarisaṅgi':4 'second':5 'வழ':6,action|compound,अनुसरि सङ्गि|அனுஸரி ஸங்கி3|anusari sangi|anusari saGgi|anusari saṅgi|ən̪us̪əɾɪ s̪əŋgɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,second,english,,english,,action|compound,,verb,
^,,வழிமொழி,tamil,,tamil,'வழமழ':1 'second':2 'வழ':3,action|compound,அனுஸரி ஸங்கி3,verb,
-,ꢃ,ꢃ ꢒꢿꢬ꣄,sourashtra,,,'ꢃꢒꢬ':1 'aaker':2 'aker':3 'āker':4 'gape':5,action|compound,आ केर|ஆ கேர்|aa ker|A ker|ā ker|ɑː keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,gape,english,,english,,action|compound,,verb,
^,,வாய்பிள,tamil,,tamil,'வயபள':1 'gape':2,action|compound,ஆ கேர்,verb,
-,ꢡ,ꢡꣂꢠ꣄ ꢦꢾꢱꢵꢮ꣄ꢒꢥꢶ ꢲꢹꢜ꣄,sourashtra,,,'ꢡꢠꢦꢱꢮꢒꢥꢲꢜ':1 'tonpesaavkanihoot':2 'tonpesavkanihut':3 'toṇpĕsāvkanihūṭ':4 'gape':5,action|compound,ता॑ण प॑साव्कनि हूट|தோண் பெஸாவ்கனி ஹூட்|ton pe'saavkani hoot'|toN pEsAvkani hUT|toṇ pĕsāvkani hūṭ|t̪oːɳ pes̪ɑːʋkən̪ɪ ɦuːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,gape,english,,english,,action|compound,,verb,
^,,வாய்பிள,tamil,,tamil,'வயபள':1 'gape':2,action|compound,தோண் பெஸாவ்கனி ஹூட்,verb,
-,ꢲ,ꢲꢵꢜ꣄ ꢱꣂꢜ꣄,sourashtra,,,'ꢲꢜꢱꢜ':1 'haatsot':2 'hatsot':3 'hāṭsoṭ':4 'forsake':5,action|compound,हाट सा॑ट|ஹாத் ஸோட்|haat' sot'|hAT soT|hāṭ soṭ|ɦɑːʈ s̪oːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,forsake,english,,english,,action|compound,,verb,
^,,விட்டுவிடு,tamil,,tamil,'வடடவட':1 'forsake':2,action|compound,ஹாத் ஸோட்,verb,
-,ꢙ,ꢙꢾꢮꢵꢦ꣄ ꢣꢾ,sourashtra,,,'ꢙꢮꢦꢣ':1 'jevaapde':2 'jevapde':3 'jĕvāpdĕ':4 'give':5 'answer':6 'யள':7,action|compound,ज॑वाप दे|ஜெவாப் தே3|je'vaap de'|jEvAp dE|jĕvāp dĕ|d͡ʒeʋɑːp d̪e,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,give answer,english,,english,,action|compound,,verb,
^,,விடையளி,tamil,,tamil,'வடயள':1 'give':2 'answer':3 'யள':4,action|compound,ஜெவாப் தே3,verb,
-,ꢮ,ꢮꢶꢱꢵꢭꣁ ꢒꢿꢬ꣄,sourashtra,,,'ꢮꢱꢭꢒꢬ':1 'visaaloker':2 'visaloker':3 'visālŏker':4 'expand':5 'பட':6,action|compound,विसाला॑ केर|விஸாலொகேர்|visaalo' ker|visAlO ker|visālŏ ker|ʋɪs̪ɑːlo keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,expand,english,,english,,action|compound,,verb,
^,,விரிவுபடுத்து,tamil,,tamil,'வரவபடதத':1 'expand':2 'பட':3,action|compound,விஸாலொகேர்,verb,
-,ꢙ,ꢙꢾꢪꢥ꣄ ꢩꢵꢭ꣄,sourashtra,,,'ꢙꢪꢥꢩꢭ':1 'jemanbhaal':2 'jemanbhal':3 'jĕmanbhāl':4 'arrange':5 'feast':6 'தள':7,action|compound,ज॑मन्घाल्|ஜெமன்கா4ல்|je'man bhaal|jEman bhAl|jĕman bhāl|d͡ʒemən̪ bʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,Arrange feast,english,,english,,action|compound,,verb,
^,,விருந்தளி,tamil,,tamil,'வரநதள':1 'arrange':2 'feast':3 'தள':4,action|compound,ஜெமன்கா4ல்,verb,
-,ꢮ,ꢮꢾꢔ꣄ ꢒꢾꢬ꣄,sourashtra,,,'ꢮꢔꢒꢬ':1 'vegker':2 'vĕgkĕr':3 'quicken':4 'பட':5,action|compound,वेग केर|வேக்3 கேர்|ve'g ke'r|vEg kEr|vĕg kĕr|ʋeg keɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,quicken,english,,english,,action|compound,,verb,
^,,விரைவுபடுத்து,tamil,,tamil,'வரவபடதத':1 'quicken':2 'பட':3,action|compound,வேக்3 கேர்,verb,
-,ꢂ,ꢂꢭꢔ꣄ꢔ ꢢꣂꢮ꣄,sourashtra,,,'ꢂꢭꢔꢔꢢꢮ':1 'alaggathov':2 'exempt':3 'லக':4 'கள':5,action|compound,अलग्ग थोव|அலக்3க3 தோ2வ்|alagga thov|alagga thov|alagga thov|ələggə t̪ʰoːʋ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,exempt,english,,english,,action|compound,,verb,
^,,விலக்களி,tamil,,tamil,'வலககள':1 'exempt':2 'லக':3 'கள':4,action|compound,அலக்3க3 தோ2வ்,verb,
-,ꢙ,ꢙꢵꢔ꣄ꢬꢡꣁꢦꣁꢞꢜ꣄,sourashtra,,,'ꢙꢔꢬꢡꢦꢞꢜ':1 'jaagratopodat':2 'jagratopodat':3 'jāgratŏpŏḍaṭ':4 'awaken':5,action|compound,जाग्रता॑ पा॑डट|ஜாக்3ரதொ பொடா3ட்|jaagrato'po'd'at'|jAgratOpODaT|jāgratŏpŏḍaṭ|d͡ʒɑːgɾət̪opoɖəʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,awaken,english,,english,,action|compound,,verb,
^,,விழிப்பூட்டு,tamil,,tamil,'வழபபடட':1 'awaken':2,action|compound,ஜாக்3ரதொ பொடா3ட்,verb,
-,ꢦ,ꢦ꣄ꢬꢱꢸꢬ꣄ ꢲꣂ,sourashtra,,,'ꢦꢬꢱꢬꢲ':1 'prasurho':2 'published':3 'publish':4,action|compound,प्रसुर्हो|ப்ரஸுர் ஹோ|prasur ho|prasur ho|prasur ho|pɾəs̪uɾ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,be published,english,,english,,action|compound,,verb,
^,,வெளியாகு,tamil,,tamil,'வளயக':1 'published':2 'publish':3,action|compound,ப்ரஸுர் ஹோ,verb,
-,ꢦ,ꢦ꣄ꢬꢱꢸꢬ꣄ ꢒꢿꢬ꣄,sourashtra,,,'ꢦꢬꢱꢬꢒꢬ':1 'prasurker':2 'disclose':3 'publish':4,action|compound,प्रसुर्केर|ப்ரஸுர் கேர்|prasur ker|prasur ker|prasur ker|pɾəs̪uɾ keːɾ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,"disclose, publish",english,,english,,action|compound,,verb,
^,,வெளியிடு,tamil,,tamil,'வளயட':1 'disclose':2 'publish':3,action|compound,ப்ரஸுர் கேர்,verb,
-,ꢩ,ꢩꢬꢵꢜ꣄ ꢣꣁꢨ꣄ꢨꢶ,sourashtra,,,'ꢩꢬꢜꢣꢨꢨ':1 'bharaatdobbi':2 'bharatdobbi':3 'bharāṭdŏbbi':4 'expel':5,action|compound,भराट दा॑ब्बि|ப4ராட் தொ3ப்3பி3|bharaat' do'bbi|bharAT dObbi|bharāṭ dŏbbi|bʰəɾɑːʈ d̪obbɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,expel,english,,english,,action|compound,,verb,
^,,வெளியேற்று,tamil,,tamil,'வளயறற':1 'expel':2,action|compound,ப4ராட் தொ3ப்3பி3,verb,
-,ꢲ,ꢲꢹꢡ꣄ꢡꢶꢬ꣄ ꢩꢬꢵꢜ꣄,sourashtra,,,'ꢲꢡꢡꢬꢩꢬꢜ':1 'hoottirbharaat':2 'huttirbharat':3 'hūttirbharāṭ':4 'out':5,action|compound,हूत्तिर्भराट्|ஹுத்திர் ப4ராட்|hoottir bharaat'|hUttir bharAT|hūttir bharāṭ|ɦuːt̪t̪ɪɾ bʰəɾɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,go out,english,,english,,action|compound,,verb,
^,,வெளியேறு,tamil,,tamil,'வளயற':1 'out':2,action|compound,ஹுத்திர் ப4ராட்,verb,
-,ꢙ,ꢙꢷꢔ꣄ ꢦꣁꢥ꣄ꢣꢶ,sourashtra,,,'ꢙꢔꢦꢥꢣ':1 'jeegpondi':2 'jigpondi':3 'jīgpŏndi':4 'overcome':5,action|compound,जूग पा॑न्दि|ஜீக்3 பொந்தி3|jeeg po'ndi|jIg pOndi|jīg pŏndi|d͡ʒiːg pon̪d̪ɪ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,overcome,english,,english,,action|compound,,verb,
^,,வெற்றிகொள்,tamil,,tamil,'வறறகள':1 'overcome':2,action|compound,ஜீக்3 பொந்தி3,verb,
-,ꢃ,ꢃꢮꢿꢯ꣄ ꢦꣁꢞꢵꢜ꣄,sourashtra,,,'ꢃꢮꢯꢦꢞꢜ':1 'aaveshpodaat':2 'avezpodat':3 'āveśpŏḍāṭ':4 'madden':5,action|compound,आवेश्पा॑डाट्|ஆவேஶ் பொடா3ட்|aavesh po'd'aat'|Avez pODAT|āveś pŏḍāṭ|ɑːʋeːʃ poɖɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,madden,english,,english,,action|compound,,verb,
^,,வெறியூட்டு,tamil,,tamil,'வறயடட':1 'madden':2,action|compound,ஆவேஶ் பொடா3ட்,verb,
-,ꢣ,ꢣ꣄ꢮꢾꢯ꣄ꢕꢵꢭ꣄,sourashtra,,,'ꢣꢮꢯꢕꢭ':1 'dveshghaal':2 'dvezghal':3 'dvĕśghāl':4 'displease':5,action|compound,द्वेश्घाल|த்3வேஶ் கா4ல்|dve'shghaal|dvEzghAl|dvĕśghāl|d̪ʋeʃgʰɑːl,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,displease,english,,english,,action|compound,,verb,
^,,வெறுப்பூட்டு,tamil,,tamil,'வறபபடட':1 'displease':2,action|compound,த்3வேஶ் கா4ல்,verb,
-,ꢮ,ꢮꢿꢜꢵ ꢓꢵꢳ꣄,sourashtra,,,'ꢮꢜꢓꢳ':1 'vetaakhaal':2 'vetakhal':3 'veṭākhāl':4 'hunt':5,action|compound,वेटखाळ|வேடகா2ள்|vet'aa khaal'|veTA khAL|veṭā khāl̤|ʋeːʈɑː kʰɑːɭ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,hunt,english,,english,,action|compound,,verb,
^,,வேட்டையாடு,tamil,,tamil,'வடடயட':1 'hunt':2,action|compound,வேடகா2ள்,verb,
-,ꢩ,ꢩꢾꢡ꣄ ꢲꣂ,sourashtra,,,'ꢩꢡꢲ':1 'bhetho':2 'bhĕtho':3 'differ':4 'பட':5,action|compound,भेतहो|பே4த்ஹோ|bhe't ho|bhEt ho|bhĕt ho|bʰet̪ ɦoː,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,differ,english,,english,,action|compound,,verb,
^,,வேறுபடு,tamil,,tamil,'வறபட':1 'differ':2 'பட':3,action|compound,பே4த்ஹோ,verb,
-,ꢩ,ꢩꢾꢡ꣄ ꢲꣁꢮꢵꢜ꣄,sourashtra,,,'ꢩꢡꢲꢮꢜ':1 'bhethovaat':2 'bhethovat':3 'bhĕthŏvāṭ':4 'separate':5 'பட':6,action|compound,भेत हा॑वाट|பே4த் ஹொவாட்|bhe't ho'vaat'|bhEt hOvAT|bhĕt hŏvāṭ|bʰet̪ ɦoʋɑːʈ,,"{""""script"""":""""sourashtra"""",""""category"""":""""verb"""",""""type"""":""""abstract""""}"
^,,separate,english,,english,,action|compound,,verb,
^,,வேறுபடுத்து,tamil,,tamil,'வறபடதத':1 'separate':2 'பட':3,action|compound,பே4த் ஹொவாட்,verb,
|