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 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199
|
<?xml version="1.0" encoding="UTF-8"?>
<toc id="Man">
<title>Manual Pages</title>
<title xml:lang="ar">صفحات الكتيبات</title>
<title xml:lang="as">সহায়িকা তথ্য সহ পৃষ্ঠা (man পৃষ্ঠা)</title>
<title xml:lang="ast">Páxines del manual</title>
<title xml:lang="be">Старонкі кіраўніцтва</title>
<title xml:lang="be@latin">Staronki kiraŭnictva</title>
<title xml:lang="bg">Страници на ръководства</title>
<title xml:lang="bn">সহায়িকা তথ্যসহ পৃষ্ঠা (man পেজ)</title>
<title xml:lang="bn_IN">সহায়িকা তথ্য সহ পৃষ্ঠা (man পেজ)</title>
<title xml:lang="br">Pajennoù dornlevr</title>
<title xml:lang="ca">Pàgines de manual</title>
<title xml:lang="ca@valencia">Pàgines de manual</title>
<title xml:lang="crh">Kılavuz Sayfaları</title>
<title xml:lang="cs">Manuálové stránky</title>
<title xml:lang="cy">Tudalennau llawlyfr</title>
<title xml:lang="da">Manual-sider</title>
<title xml:lang="de">Handbücher</title>
<title xml:lang="dz">ལག་དེབ་ཤོག་ལེབ་ཚུ།</title>
<title xml:lang="el">Σελίδες εγχειριδίου</title>
<title xml:lang="en@shaw">𐑥𐑨𐑯𐑘𐑫𐑩𐑤 𐑐𐑱𐑡𐑧𐑟</title>
<title xml:lang="en_CA">Manual Pages</title>
<title xml:lang="en_GB">Manual Pages</title>
<title xml:lang="es">Páginas del manual</title>
<title xml:lang="et">Käsiraamatud</title>
<title xml:lang="eu">Eskuliburuko orriak</title>
<title xml:lang="fa">صفحات راهنما</title>
<title xml:lang="fi">Manuaalisivut</title>
<title xml:lang="fr">Pages de manuel</title>
<title xml:lang="ga">Leathanaigh Lámhleabhair</title>
<title xml:lang="gl">Páxinas de manual</title>
<title xml:lang="gu">માર્ગદર્શન પાનાંઓ</title>
<title xml:lang="he">דפי עזרה</title>
<title xml:lang="hi">मैनुअल पृष्ठ</title>
<title xml:lang="hr">Stranice pomoći</title>
<title xml:lang="hu">Kézikönyvoldalak</title>
<title xml:lang="id">Berkas Manual</title>
<title xml:lang="it">Pagine di manuale</title>
<title xml:lang="ja">Man ページ</title>
<title xml:lang="ka">სახელმძღვანელო</title>
<title xml:lang="kn">ಕೈಪಿಡಿ ಪುಟಗಳು</title>
<title xml:lang="ko">매뉴얼 페이지</title>
<title xml:lang="ks">मैनुअल वरख</title>
<title xml:lang="ku">Rûpelên Alikarî</title>
<title xml:lang="ky">Колдонмо барактары</title>
<title xml:lang="lt">Žinynų puslapiai</title>
<title xml:lang="lv">Rokasgrāmatas lapas</title>
<title xml:lang="mai">मैनुअल पृष्ठ</title>
<title xml:lang="mg">Pejin'ny toro-làlana</title>
<title xml:lang="mk">Страници со упатства</title>
<title xml:lang="ml">മാനുവല് താളുകള്</title>
<title xml:lang="mr">मार्गदर्शन पाने</title>
<title xml:lang="nb">Manualsider</title>
<title xml:lang="ne">म्यानुअल पृष्ठ</title>
<title xml:lang="nl">Handleiding-pagina's</title>
<title xml:lang="nn">Manualsider</title>
<title xml:lang="oc">Paginas del manual</title>
<title xml:lang="or">ସହାୟକ ପୁସ୍ତକ ପୃଷ୍ଠା</title>
<title xml:lang="pa">Manual ਪੇਜ਼</title>
<title xml:lang="pl">Strony podręcznika</title>
<title xml:lang="pt">Páginas de Manual</title>
<title xml:lang="pt_BR">Páginas de manual</title>
<title xml:lang="ro">Pagini de manual</title>
<title xml:lang="ru">Страницы руководства</title>
<title xml:lang="sk">Manuálové stránky</title>
<title xml:lang="sl">Strani priročnika</title>
<title xml:lang="sq">Faqe manuali</title>
<title xml:lang="sr">Ман упутства</title>
<title xml:lang="sr@latin">Man uputstva</title>
<title xml:lang="sv">Manualsidor</title>
<title xml:lang="ta">கையேடு பக்கங்கள்</title>
<title xml:lang="te">నిర్దేశిక పుటలు</title>
<title xml:lang="th">Manual Pages</title>
<title xml:lang="tr">Kılavuz Sayfaları</title>
<title xml:lang="uk">Сторінки керівництв</title>
<title xml:lang="uz">Qoʻllanma sahifalari</title>
<title xml:lang="uz@cyrillic">Қўлланма саҳифалари</title>
<title xml:lang="vi">Trang hướng dẫn (man)</title>
<title xml:lang="wa">Pådjes di manuel</title>
<title xml:lang="zh_CN">手册页</title>
<title xml:lang="zh_HK">手冊</title>
<title xml:lang="zh_TW">手冊</title>
<description>Traditional command line help (man)</description>
<description xml:lang="ar">مساعدة سطر الأوامر التقليدية (man)</description>
<description xml:lang="as">পাৰম্পৰিক আদেশ-শাৰীৰ পৰা প্ৰাপ্ত সহায়িকা (man)</description>
<description xml:lang="ast">Aida tradicional de llinia de comandos (man)</description>
<description xml:lang="be">Традыцыйная даведка для загаднага радка (man)</description>
<description xml:lang="be@latin">Tradycyjnaja daviedka dla zahadnaha radka (man)</description>
<description xml:lang="bg">Традиционни ръководства (man)</description>
<description xml:lang="bn">সনাতন কমান্ড-লাইন থেকে প্রাপ্ত সহায়িকা (man)</description>
<description xml:lang="bn_IN">পারম্পিক কমান্ড-লাইন থেকে প্রাপ্ত সহায়িকা (man)</description>
<description xml:lang="ca">Ajuda de línia d'ordres tradicional (man)</description>
<description xml:lang="ca@valencia">Ajuda de línia d'ordes tradicional (man)</description>
<description xml:lang="crh">Geleneksel komut satırı yardımı (man)</description>
<description xml:lang="cs">Tradiční nápověda v příkazové řádce (man)</description>
<description xml:lang="cy">Cymorth traddodiadol y llinell orchymyn (man)</description>
<description xml:lang="da">Traditionel kommandolinjehjælp (man)</description>
<description xml:lang="de">Traditionelle Befehlszeilenhilfe (man)</description>
<description xml:lang="dz">སྔོན་སྲོལ་བཀོད་ལམ་གྲོགས་རམ། (ལག་ཐོག)</description>
<description xml:lang="el">Παραδοσιακή βοήθεια γραμμής εντολών (man)</description>
<description xml:lang="en@shaw">𐑑𐑮𐑩𐑛𐑦𐑖𐑩𐑯𐑩𐑤 𐑒𐑩𐑥𐑭𐑯𐑛 𐑤𐑲𐑯 𐑣𐑧𐑤𐑐 (𐑥𐑨𐑯)</description>
<description xml:lang="en_GB">Traditional command line help (man)</description>
<description xml:lang="es">Ayuda tradicional de línea de comandos (man)</description>
<description xml:lang="et">Traditsiooniline käsurea-abi (man)</description>
<description xml:lang="eu">komando lerroko laguntza tradizionala (man)</description>
<description xml:lang="fa">راهنمای سطر فرمانی قدیمی (man)</description>
<description xml:lang="fi">Perinteinen komentoriviopaste (man)</description>
<description xml:lang="fr">Aide traditionnelle de la ligne de commande (man)</description>
<description xml:lang="ga">Cabhair líne na n-orduithe traidisiúnta (man)</description>
<description xml:lang="gl">Axuda tradicional de liña de ordes (man)</description>
<description xml:lang="gu">પારંપરિક આદેશ વાક્ય મદદ (man)</description>
<description xml:lang="he">עזרת שורת פקודה מסורתית (man)</description>
<description xml:lang="hi">पारंपरित कमांड लाइ मदद (man )</description>
<description xml:lang="hu">Hagyományos parancssori súgó (man)</description>
<description xml:lang="id">Bantuan baris perintah tradisional (man)</description>
<description xml:lang="it">Aiuto tradizionale per riga di comando (man)</description>
<description xml:lang="ja">伝統的なコマンドのヘルプ (man) です</description>
<description xml:lang="ka">კონსოლის ტრადიციული ცნობარი (man)</description>
<description xml:lang="kn">ಸಾಂಪ್ರದಾಯಿಕ ಆಜ್ಞಾ ಸಾಲಿನ ನೆರವು (ಮ್ಯಾನ್)</description>
<description xml:lang="ko">전통적인 명령행 도움말 (맨페이지)</description>
<description xml:lang="ks">प्रर्यन्यह् कमान्ड लायन मदद (मेन्न)</description>
<description xml:lang="ku">Alîkariya rêzika fermana kevneşopî</description>
<description xml:lang="lt">Tradicinis komandų eilutės žinynas (man)</description>
<description xml:lang="lv">Tradicionālā komandrindas palīdzība (man)</description>
<description xml:lang="mai">पारंपरित कमांड लाइ मद्दति (man )</description>
<description xml:lang="mg">Toro-làlana taloha mikasika ny lazam-baiko</description>
<description xml:lang="mk">Традиционална помош за командна линија (man)</description>
<description xml:lang="ml">സാധാരണയുള്ള കമാന്ഡ് ലൈനിനുള്ള സഹായം (man)</description>
<description xml:lang="mr">पारंपारीक कमांड लाईन मदत(मॅन)</description>
<description xml:lang="nb">Tradisjonell hjelp for kommandolinjen (man)</description>
<description xml:lang="ne">परम्परागत आदेश रेखा मद्दत (म्यान)</description>
<description xml:lang="nl">Ouderwetse opdrachtregelhulp (man)</description>
<description xml:lang="nn">Tradisjonell hjelp for kommandolinja (man)</description>
<description xml:lang="oc">Ajuda tradicionala de la linha de comanda (man)</description>
<description xml:lang="or">ପାରମ୍ପରିକ ପାଠ୍ଯ ନିର୍ଦ୍ଦେଶ ସହାୟତା (man)</description>
<description xml:lang="pa">ਪੁਰਾਣੀ ਕਮਾਂਡ ਲਾਈਨ ਮੱਦਦ (man)</description>
<description xml:lang="pl">Tradycyjna pomoc wiersza poleceń (man)</description>
<description xml:lang="pt">Ajuda tradicional de linha de comando (man)</description>
<description xml:lang="pt_BR">Ajuda tradicional da linha de comando (man)</description>
<description xml:lang="ro">Ajutor clasic pentru linia de comandă (man)</description>
<description xml:lang="ru">Традиционная справка командной строки (man)</description>
<description xml:lang="sl">Pomoč z ukazne vrstice (man)</description>
<description xml:lang="sq">Ndihmë tradicionale për rreshtin e komandës (man)</description>
<description xml:lang="sr">Традиционална помоћ у командној линији (ман)</description>
<description xml:lang="sr@latin">Tradicionalna pomoć u komandnoj liniji (man)</description>
<description xml:lang="sv">Traditionell kommandoradshjälp (man)</description>
<description xml:lang="ta">பாரம்பரிய ஆணை வரி உதவி (தகவல்)</description>
<description xml:lang="te">సాంప్రదాయక ఆదేశ వరుస సహాయము (man)</description>
<description xml:lang="th">คู่มือประกอบคำสั่งในบรรทัดคำสั่งตามปกติ (man)</description>
<description xml:lang="tr">Geleneksel komut satırı yardımı (man)</description>
<description xml:lang="uk">Традиційна довідка командного рядка (man)</description>
<description xml:lang="uz">Anʼanaviy buyruq satri yordami (man)</description>
<description xml:lang="uz@cyrillic">Анъанавий буйруқ сатри ёрдами (man)</description>
<description xml:lang="vi">Trợ giúp dòng lệnh truyền thống (man)</description>
<description xml:lang="wa">Aidance tradicionele sol roye di cmande (man)</description>
<description xml:lang="zh_CN">传统命令行帮助(man)</description>
<description xml:lang="zh_HK">傳統命令列說明 (man)</description>
<description xml:lang="zh_TW">傳統命令列說明 (man)</description>
<toc sect="1 1p 1g 1t" id="Man-man1">
<title>Applications</title>
<title xml:lang="af">Toepassings</title>
<title xml:lang="am">መጠቀሚያ ፕሮግራሞች</title>
<title xml:lang="ar">تطبيقات</title>
<title xml:lang="as">অনুপ্ৰয়োগ</title>
<title xml:lang="ast">Aplicaciones</title>
<title xml:lang="az">Proqramlar</title>
<title xml:lang="be">Дастасаваньні</title>
<title xml:lang="be@latin">Aplikacyi</title>
<title xml:lang="bg">Програми</title>
<title xml:lang="bn">অ্যাপ্লিকেশন</title>
<title xml:lang="bn_IN">অ্যাপ্লিকেশন</title>
<title xml:lang="br">Arloadoù</title>
<title xml:lang="bs">Aplikacije</title>
<title xml:lang="ca">Aplicacions</title>
<title xml:lang="ca@valencia">Aplicacions</title>
<title xml:lang="crh">Uygulamalar</title>
<title xml:lang="cs">Aplikace</title>
<title xml:lang="cy">Rhaglenni</title>
<title xml:lang="da">Programmer</title>
<title xml:lang="de">Anwendungen</title>
<title xml:lang="dz">གློག་རིམ་ཚུ།</title>
<title xml:lang="el">Εφαρμογές</title>
<title xml:lang="en@shaw">𐑩𐑐𐑤𐑦𐑒𐑱𐑕𐑩𐑯𐑟</title>
<title xml:lang="en_CA">Applications</title>
<title xml:lang="en_GB">Applications</title>
<title xml:lang="eo">Aplikaĵoj</title>
<title xml:lang="es">Aplicaciones</title>
<title xml:lang="et">Rakendused</title>
<title xml:lang="eu">Aplikazioak</title>
<title xml:lang="fa">برنامهها</title>
<title xml:lang="fi">Sovellukset</title>
<title xml:lang="fr">Applications</title>
<title xml:lang="fur">Aplicazions</title>
<title xml:lang="ga">Feidhmchláir</title>
<title xml:lang="gl">Aplicativos</title>
<title xml:lang="gu">કાર્યક્રમો</title>
<title xml:lang="he">יישומים</title>
<title xml:lang="hi">अनुप्रयोग</title>
<title xml:lang="hr">Aplikacije</title>
<title xml:lang="hu">Alkalmazások</title>
<title xml:lang="id">Aplikasi</title>
<title xml:lang="is">Forrit</title>
<title xml:lang="it">Applicazioni</title>
<title xml:lang="ja">アプリケーション</title>
<title xml:lang="ka">პროგრამები</title>
<title xml:lang="kn">ಅನ್ವಯಗಳು</title>
<title xml:lang="ko">응용프로그램</title>
<title xml:lang="ks">अमय्क प्रयोग</title>
<title xml:lang="ku">Sepan</title>
<title xml:lang="ky">Иштемелер</title>
<title xml:lang="la">Opportuna</title>
<title xml:lang="li">Toepassinge</title>
<title xml:lang="lt">Programos</title>
<title xml:lang="lv">Lietotnes</title>
<title xml:lang="mai">अनुप्रयोग</title>
<title xml:lang="mg">Rindranasa</title>
<title xml:lang="mk">Апликации</title>
<title xml:lang="ml">പ്രയോഗങ്ങള്</title>
<title xml:lang="mn">Х.программ</title>
<title xml:lang="mr">उपकरणं</title>
<title xml:lang="ms">Aplikasi</title>
<title xml:lang="nb">Programmer</title>
<title xml:lang="nds">Toupassens</title>
<title xml:lang="ne">अनुप्रयोग</title>
<title xml:lang="nl">Toepassingen</title>
<title xml:lang="nn">Program</title>
<title xml:lang="nso">Ditirišo</title>
<title xml:lang="oc">Aplicacions</title>
<title xml:lang="or">ପ୍ରୟୋଗ</title>
<title xml:lang="pa">ਐਪਲੀਕੇਸ਼ਨ</title>
<title xml:lang="pl">Programy</title>
<title xml:lang="ps">کاريالونه</title>
<title xml:lang="pt">Aplicações</title>
<title xml:lang="pt_BR">Aplicativos</title>
<title xml:lang="ro">Aplicații</title>
<title xml:lang="ru">Приложения</title>
<title xml:lang="rw">Porogaramu</title>
<title xml:lang="si">යෙදුම්</title>
<title xml:lang="sk">Aplikácie</title>
<title xml:lang="sl">Programi</title>
<title xml:lang="sq">Aplikativë</title>
<title xml:lang="sr">Програми</title>
<title xml:lang="sr@latin">Programi</title>
<title xml:lang="sv">Program</title>
<title xml:lang="ta">செயல்பாடுகள்</title>
<title xml:lang="te">కార్యక్షేత్రాలు</title>
<title xml:lang="tg">Замимаҳо</title>
<title xml:lang="th">โปรแกรมใช้งาน</title>
<title xml:lang="tr">Uygulamalar</title>
<title xml:lang="ug">قوللانما پىروگراممىلىرى</title>
<title xml:lang="uk">Програми</title>
<title xml:lang="uz">Dasturlar</title>
<title xml:lang="uz@cyrillic">Дастурлар</title>
<title xml:lang="vi">Ứng dụng</title>
<title xml:lang="wa">Programes</title>
<title xml:lang="xh">Iinkqubo zekhompyutha</title>
<title xml:lang="zh_CN">应用程序</title>
<title xml:lang="zh_HK">應用程式</title>
<title xml:lang="zh_TW">應用程式</title>
<title xml:lang="zu">Izithobo</title>
<description>Sections 1, 1p, 1g and 1t</description>
<description xml:lang="ar">الفصول 1، 1p، 1g و 1t</description>
<description xml:lang="as">বিভাগ 1, 1p, 1g আৰু 1t</description>
<description xml:lang="ast">Seiciones 1, 1p, 1g y 1t</description>
<description xml:lang="be">Разьдзелы 1, 1p, 1g і 1t</description>
<description xml:lang="be@latin">Raździeły 1, 1p, 1g i 1t</description>
<description xml:lang="bg">Раздели 1, 1p, 1g и 1t</description>
<description xml:lang="bn">বিভাগ 1, 1p, 1g ও 1t</description>
<description xml:lang="bn_IN">বিভাগ 1, 1p, 1g ও 1t</description>
<description xml:lang="ca">Seccions 1, 1p, 1g i 1t</description>
<description xml:lang="ca@valencia">Seccions 1, 1p, 1g i 1t</description>
<description xml:lang="crh">Bölüm 1, 1p, 1g ve 1t</description>
<description xml:lang="cs">Oddíly 1, 1p, 1g a 1t</description>
<description xml:lang="cy">Adrannau 1, 1p, 1g a 1t</description>
<description xml:lang="da">Afsnit 1, 1p, 1g og 1t</description>
<description xml:lang="de">Abschnitte 1, 1p, 1g und 1t</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༡, ༡པི་,༡ཇི་ དང་ ༡ཊི།</description>
<description xml:lang="el">Ενότητες 1, 1p, 1g και 1t</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 1, 1p, 1g 𐑯 1t</description>
<description xml:lang="en_GB">Sections 1, 1p, 1g and 1t</description>
<description xml:lang="es">Secciones 1, 1p, 1g y 1t</description>
<description xml:lang="et">Peatükid 1, 1p, 1g ja 1t</description>
<description xml:lang="eu">1, 1p, 1g eta 1t atalak</description>
<description xml:lang="fa">بخشهای 1, 1p, 1g و 1t</description>
<description xml:lang="fi">Osat 1, 1p, 1g ja 1t</description>
<description xml:lang="fr">Sections 1, 1p, 1g et 1t</description>
<description xml:lang="ga">Rannáin 1, 1p, 1g agus 1t</description>
<description xml:lang="gl">Seccións 1, 1p, 1g e 1t</description>
<description xml:lang="gu">વિભાગો 1, 1p, 1g અને 1t</description>
<description xml:lang="he">חלקים 1, 1p, 1g ו־1t</description>
<description xml:lang="hi">खंड 1, 1p, 1g और 1t</description>
<description xml:lang="hu">1., 1p, 1g és 1t szakaszok</description>
<description xml:lang="id">Bagian 1, 1p, 1g dan 1t</description>
<description xml:lang="it">Sezioni 1, 1p, 1g e 1t</description>
<description xml:lang="ja">セクション 1 と 1p、1g、1t</description>
<description xml:lang="ka">სექციები 1, 1p, 1g და 1t</description>
<description xml:lang="kn">1, 1p, 1g ಹಾಗು 1t ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 1, 1p, 1g 및 1t</description>
<description xml:lang="ks">हिय्स: 1, 1p, 1g तह् 1t</description>
<description xml:lang="ku">Beşên 1, 1p, 1g û 1t</description>
<description xml:lang="lt">Sekcijos 1, 1p, 1g ir 1t</description>
<description xml:lang="lv">Sadaļas 1, 1p, 1g un 1t</description>
<description xml:lang="mai">खंड 1, 1p, 1g आओर 1t</description>
<description xml:lang="mg">Fitsinjarana 1, 1p, 1g ary 1t</description>
<description xml:lang="mk">Оддели 1, 1p, 1g и 1t</description>
<description xml:lang="ml">1, 1p, 1g, 1t വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 1,1p,1g आऩि 1t</description>
<description xml:lang="nb">Seksjon 1, 1p, 1g og 1t</description>
<description xml:lang="ne">सेक्सन 1, 1p, 1g र 1t</description>
<description xml:lang="nl">Secties 1, 1p, 1g en 1t</description>
<description xml:lang="nn">Seksjon 1, 1p, 1g og 1t</description>
<description xml:lang="oc">Seccions 1, 1p, 1g e 1t</description>
<description xml:lang="or">ବିଭାଗ 1, 1p, 1g ଏବଂ 1t</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 1, 1p, 1g ਅਤੇ 1t</description>
<description xml:lang="pl">Rozdziały 1, 1p, 1g i 1t</description>
<description xml:lang="pt">Secções 1, 1p, 1g e 1t</description>
<description xml:lang="pt_BR">Seções 1, 1p, 1g e 1t</description>
<description xml:lang="ro">Secțiunile 1, 1p, 1g și 1t</description>
<description xml:lang="ru">Разделы 1, 1p, 1g и 1t</description>
<description xml:lang="sl">Odseki 1, 1p, 1g in 1t</description>
<description xml:lang="sq">Seksione 1, 1p, 1g dhe 1t</description>
<description xml:lang="sr">Одељци 1, 1p, 1g и 1t</description>
<description xml:lang="sr@latin">Odeljci 1, 1p, 1g i 1t</description>
<description xml:lang="sv">Avsnitten 1, 1p, 1g och 1t</description>
<description xml:lang="ta">பிரிவுகள் 1, 1p, 1g மற்றும் 1t</description>
<description xml:lang="te">1, 1p, 1g మరియు 1t భాగాలు</description>
<description xml:lang="th">หมวด 1, 1p, 1g และ 1t</description>
<description xml:lang="tr">Bölüm 1, 1p, 1g ve 1t</description>
<description xml:lang="uk">Розділи 1, 1p, 1g та 1t</description>
<description xml:lang="uz">Boʻlim 1, 1p, 1g va 1t</description>
<description xml:lang="uz@cyrillic">Бўлим 1, 1p, 1g ва 1t</description>
<description xml:lang="vi">Phần 1, 1p, 1g và 1t</description>
<description xml:lang="wa">Seccions 1, 1p, 1g eyet 1t</description>
<description xml:lang="zh_CN">1、1p、1g 和 1t 节</description>
<description xml:lang="zh_HK">第 1,1p,1g 及 1t 節</description>
<description xml:lang="zh_TW">第 1,1p,1g 及 1t 節</description>
<toc sect="1x" id="Man-man1x">
<title>X11 Applications</title>
<title xml:lang="ar">تطبيقات X11</title>
<title xml:lang="as">X11 অনুপ্ৰয়োগ</title>
<title xml:lang="ast">Aplicaciones X11</title>
<title xml:lang="be">Дастасаваньні X11</title>
<title xml:lang="be@latin">Aplikacyi X11</title>
<title xml:lang="bg">Графични програми (X11)</title>
<title xml:lang="bn">X11 অ্যাপ্লিকেশন</title>
<title xml:lang="bn_IN">X11 অ্যাপ্লিকেশন</title>
<title xml:lang="br">Arloadoù X11</title>
<title xml:lang="ca">Aplicacions per a X11</title>
<title xml:lang="ca@valencia">Aplicacions per a X11</title>
<title xml:lang="crh">X11 Uygulamaları</title>
<title xml:lang="cs">Aplikace X11</title>
<title xml:lang="cy">Rhaglenni X11</title>
<title xml:lang="da">X11-programmer</title>
<title xml:lang="de">X11-Anwendungen</title>
<title xml:lang="dz">ཨེགསི་༡༡ གློག་རིམ་ཚུ</title>
<title xml:lang="el">Εφαρμογές X11</title>
<title xml:lang="en@shaw">X11 𐑩𐑐𐑤𐑦𐑒𐑱𐑕𐑩𐑯𐑟</title>
<title xml:lang="en_CA">X11 Applications</title>
<title xml:lang="en_GB">X11 Applications</title>
<title xml:lang="es">Aplicaciones X11</title>
<title xml:lang="et">X11 rakendused</title>
<title xml:lang="eu">X11 aplikazioak</title>
<title xml:lang="fa">برنامههای X11</title>
<title xml:lang="fi">X11-sovellukset</title>
<title xml:lang="fr">Applications X11</title>
<title xml:lang="ga">Feidhmchláir X11</title>
<title xml:lang="gl">Aplicativos X11</title>
<title xml:lang="gu">X11 કાર્યક્રમો</title>
<title xml:lang="he">יישומי X11</title>
<title xml:lang="hi">एक्स११ अनुप्रयोग</title>
<title xml:lang="hu">X11-alkalmazások</title>
<title xml:lang="id">Aplikasi X11</title>
<title xml:lang="it">Applicazioni X11</title>
<title xml:lang="ja">X11 のアプリケーション</title>
<title xml:lang="ka">X11 პროგრამები</title>
<title xml:lang="kn">X11 ಅನ್ವಯಗಳು</title>
<title xml:lang="ko">X11 프로그램</title>
<title xml:lang="ks">एक्स11</title>
<title xml:lang="ku">Sepanên X11</title>
<title xml:lang="ky">X11 иштемелери</title>
<title xml:lang="lt">X11 programos</title>
<title xml:lang="lv">X11 lietotnes</title>
<title xml:lang="mai">X11 अनुप्रयोग</title>
<title xml:lang="mg">Rindranasa X11</title>
<title xml:lang="mk">Апликации за X11</title>
<title xml:lang="ml">X11 പ്രയോഗങ്ങള്</title>
<title xml:lang="mr">X11 कार्यक्रम</title>
<title xml:lang="nb">X11-programmer</title>
<title xml:lang="ne">X11 अनुप्रयोग</title>
<title xml:lang="nl">X11-toepassingen</title>
<title xml:lang="nn">X11-program</title>
<title xml:lang="oc">Aplicacions X11</title>
<title xml:lang="or">X11 ପ୍ରୟୋଗ</title>
<title xml:lang="pa">X11 ਐਪਲੀਕੇਸ਼ਨ</title>
<title xml:lang="pl">Programy X11</title>
<title xml:lang="ps">کاريالونه X۱۱</title>
<title xml:lang="pt">Aplicações X11</title>
<title xml:lang="pt_BR">Aplicativos X11</title>
<title xml:lang="ro">Aplicații X11</title>
<title xml:lang="ru">Приложения X11</title>
<title xml:lang="si">X11 යෙදුම්</title>
<title xml:lang="sk">Aplikácie X11</title>
<title xml:lang="sl">X11 Programi</title>
<title xml:lang="sq">Programe X11</title>
<title xml:lang="sr">Икс програми</title>
<title xml:lang="sr@latin">Iks programi</title>
<title xml:lang="sv">X11-program</title>
<title xml:lang="ta">X11 செயல்பாடுகள்</title>
<title xml:lang="te">X11 కార్యక్షేత్రాలు</title>
<title xml:lang="th">โปรแกรมใน X11</title>
<title xml:lang="tr">X11 Uygulamaları</title>
<title xml:lang="ug">قوللىنىش پىروگراممىلىرى X11</title>
<title xml:lang="uk">Програми X11</title>
<title xml:lang="uz">X11 dasturlari</title>
<title xml:lang="uz@cyrillic">X11 дастурлари</title>
<title xml:lang="vi">Ứng dụng X11</title>
<title xml:lang="wa">Programes X11</title>
<title xml:lang="xh">X11 Iinkqubo zekhompyutha</title>
<title xml:lang="zh_CN">X11 应用程序</title>
<title xml:lang="zh_HK">X11 應用程式</title>
<title xml:lang="zh_TW">X11 應用程式</title>
<description>Section 1x</description>
<description xml:lang="ar">الفصل 1x</description>
<description xml:lang="as">বিভাগ 1x</description>
<description xml:lang="ast">Seición 1x</description>
<description xml:lang="be">Разьдзел 1x</description>
<description xml:lang="be@latin">Raździeł 1x</description>
<description xml:lang="bg">Раздел 1x</description>
<description xml:lang="bn">বিভাগ 1x</description>
<description xml:lang="bn_IN">বিভাগ 1x</description>
<description xml:lang="ca">Secció 1x</description>
<description xml:lang="ca@valencia">Secció 1x</description>
<description xml:lang="crh">Bölüm 1x</description>
<description xml:lang="cs">Oddíl 1x</description>
<description xml:lang="cy">Adran 1x</description>
<description xml:lang="da">Afsnit 1x</description>
<description xml:lang="de">Abschnitt 1x</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༡ཨེགསི།</description>
<description xml:lang="el">Ενότητα 1x</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 1x</description>
<description xml:lang="en_GB">Section 1x</description>
<description xml:lang="es">Sección 1x</description>
<description xml:lang="et">Peatükk 1x</description>
<description xml:lang="eu">1x atala</description>
<description xml:lang="fa">بخش 1x</description>
<description xml:lang="fi">Osa 1x</description>
<description xml:lang="fr">Section 1x</description>
<description xml:lang="ga">Rannán 1x</description>
<description xml:lang="gl">Sección 1x</description>
<description xml:lang="gu">વિભાગ 1x</description>
<description xml:lang="he">חלק 1x</description>
<description xml:lang="hi">खंड 1x</description>
<description xml:lang="hu">1x szakasz</description>
<description xml:lang="id">Bagian 1x</description>
<description xml:lang="it">Sezione 1x</description>
<description xml:lang="ja">セクション 1x</description>
<description xml:lang="ka">სექცია 1x</description>
<description xml:lang="kn">1x ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 1x</description>
<description xml:lang="ks">हिय्स: 1x</description>
<description xml:lang="ku">Beşa 1x</description>
<description xml:lang="lt">Sekcija 1x</description>
<description xml:lang="lv">Sadaļa 1x</description>
<description xml:lang="mai">खंड 1x</description>
<description xml:lang="mg">Fitsinjarana 1x</description>
<description xml:lang="mk">Оддел 1x</description>
<description xml:lang="ml">വിഭാഗം - 1x</description>
<description xml:lang="mr">विभाग 1x</description>
<description xml:lang="nb">Seksjon 1x</description>
<description xml:lang="ne">सेक्सन 1x</description>
<description xml:lang="nl">Sectie 1x</description>
<description xml:lang="nn">Seksjon 1x</description>
<description xml:lang="oc">Seccion 1x</description>
<description xml:lang="or">ବିଭାଗ 1x</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 1x</description>
<description xml:lang="pl">Rozdział 1x</description>
<description xml:lang="pt">Secção 1x</description>
<description xml:lang="pt_BR">Seção 1x</description>
<description xml:lang="ro">Secțiunea 1x</description>
<description xml:lang="ru">Раздел 1x</description>
<description xml:lang="sl">Odsek 1x</description>
<description xml:lang="sq">Seksion 1x</description>
<description xml:lang="sr">Одељак 1x</description>
<description xml:lang="sr@latin">Odeljak 1x</description>
<description xml:lang="sv">Avsnitt 1x</description>
<description xml:lang="ta">பிரிவு 1x</description>
<description xml:lang="te">1x భాగము</description>
<description xml:lang="th">หมวด 1x</description>
<description xml:lang="tr">Bölüm 1x</description>
<description xml:lang="uk">Розділ 1x</description>
<description xml:lang="uz">Boʻlim 1x</description>
<description xml:lang="uz@cyrillic">Бўлим 1x</description>
<description xml:lang="vi">Phần 1x</description>
<description xml:lang="wa">Seccion 1x</description>
<description xml:lang="zh_CN">1x 节</description>
<description xml:lang="zh_HK">第 1x 節</description>
<description xml:lang="zh_TW">第 1x 節</description>
</toc>
<toc sect="1ssl" id="Man-man1ssl">
<title>OpenSSL Applications</title>
<title xml:lang="ar">تطبيقات OpenSSL</title>
<title xml:lang="as">OpenSSL অনুপ্ৰয়োগ</title>
<title xml:lang="ast">Aplicaciones OpenSSL</title>
<title xml:lang="be">Дастасаваньні OpensSSL</title>
<title xml:lang="be@latin">Aplikacyi OpenSSL</title>
<title xml:lang="bg">Програми за OpenSSL</title>
<title xml:lang="bn">OpenSSL অ্যাপ্লিকেশন</title>
<title xml:lang="bn_IN">OpenSSL অ্যাপ্লিকেশন</title>
<title xml:lang="br">Arloadoù OpenSSL</title>
<title xml:lang="ca">Aplicacions per a l'OpenSSL</title>
<title xml:lang="ca@valencia">Aplicacions per a l'OpenSSL</title>
<title xml:lang="crh">OpenSSL Uygulamaları</title>
<title xml:lang="cs">Aplikace OpenSSL</title>
<title xml:lang="cy">Rhaglenni OpenSSL</title>
<title xml:lang="da">OpenSSL-programmer</title>
<title xml:lang="de">OpenSSL-Anwendungen</title>
<title xml:lang="dz">ཨོ་པཱན་ཨེསི་ཨེསི་ཨེལ་ གློག་རིམ་ཚུ།</title>
<title xml:lang="el">Εφαρμογές OpenSSL</title>
<title xml:lang="en_CA">OpenSSL Applications</title>
<title xml:lang="en_GB">OpenSSL Applications</title>
<title xml:lang="es">Aplicaciones OpenSSL</title>
<title xml:lang="et">OpenSSL'i rakendused</title>
<title xml:lang="eu">OpenSSL aplikazioak</title>
<title xml:lang="fa">برنامههای OpenSSL</title>
<title xml:lang="fi">OpenSSL-sovellukset</title>
<title xml:lang="fr">Applications OpenSSL</title>
<title xml:lang="ga">Feidhmchláir OpenSSL</title>
<title xml:lang="gl">Aplicativos OpenSSL</title>
<title xml:lang="gu">OpenSSL કાર્યક્રમો</title>
<title xml:lang="he">יישומי OpenSSL</title>
<title xml:lang="hi">OpenSSL अनुप्रयोग</title>
<title xml:lang="hu">OpenSSL alkalmazások</title>
<title xml:lang="id">Aplikasi OpenSSL</title>
<title xml:lang="it">Applicazioni OpenSSL</title>
<title xml:lang="ja">OpenSSL アプリケーション</title>
<title xml:lang="ka">OpenSSL პროგრამები</title>
<title xml:lang="kn">OpenSSL ಅನ್ವಯಗಳು</title>
<title xml:lang="ko">OpenSSL 프로그램</title>
<title xml:lang="ks">औपन एस एस एल्लक प्रयोग</title>
<title xml:lang="ku">Sepanên OpenSSL</title>
<title xml:lang="ky">OpenSSL тиркемелери</title>
<title xml:lang="lt">OpenSSL programos</title>
<title xml:lang="lv">OpenSSL lietotnes</title>
<title xml:lang="mai">OpenSSL अनुप्रयोग</title>
<title xml:lang="mg">Rindranasa OpenSSL</title>
<title xml:lang="mk">Апликации за OpenSSL</title>
<title xml:lang="ml">OpenSSL പ്രയോഗങ്ങള്</title>
<title xml:lang="mr">OpenSSL कार्यक्रम</title>
<title xml:lang="nb">OpenSSL-programmer</title>
<title xml:lang="ne">ओपनएसएसएल अनुप्रयोग</title>
<title xml:lang="nl">OpenSSL-toepassingen</title>
<title xml:lang="nn">OpenSSL-program</title>
<title xml:lang="oc">Aplicacions OpenSSL</title>
<title xml:lang="or">OpenSSL ପ୍ରୟୋଗ</title>
<title xml:lang="pa">OpenSSL ਐਪਲੀਕੇਸ਼ਨ</title>
<title xml:lang="pl">Programy biblioteki OpenSSL</title>
<title xml:lang="pt">Aplicações de OpenSSL</title>
<title xml:lang="pt_BR">Aplicativos OpenSSL</title>
<title xml:lang="ro">Aplicații OpenSSL</title>
<title xml:lang="ru">Приложения OpenSSL</title>
<title xml:lang="sk">Aplikácie OpenSSL</title>
<title xml:lang="sl">OpenSSL programi</title>
<title xml:lang="sq">Aplikativë OpenSSL</title>
<title xml:lang="sr">ОпенССЛ програми</title>
<title xml:lang="sr@latin">OpenSSL programi</title>
<title xml:lang="sv">OpenSSL-program</title>
<title xml:lang="ta">OpenSSL பயன்பாடுகள்</title>
<title xml:lang="te">OpenSSL కార్యక్షేత్రాలు</title>
<title xml:lang="th">โปรแกรม OpenSSL</title>
<title xml:lang="tr">OpenSSL Uygulamaları</title>
<title xml:lang="ug">قوللانما پىروگراممىلىرى OpenSSL</title>
<title xml:lang="uk">Програми OpenSSL</title>
<title xml:lang="uz">OpenSSL dasturlari</title>
<title xml:lang="uz@cyrillic">OpenSSL дастурлари</title>
<title xml:lang="vi">Ứng dụng OpenSSL</title>
<title xml:lang="wa">Programes OpenSSL</title>
<title xml:lang="xh">Inkqubo yekhompyutha i-OpenSSL</title>
<title xml:lang="zh_CN">OpenSSL 应用程序</title>
<title xml:lang="zh_HK">OpenSSL 應用程式</title>
<title xml:lang="zh_TW">OpenSSL 應用程式</title>
<description>Section 1ssl</description>
<description xml:lang="ar">الفصل 1ssl</description>
<description xml:lang="as">বিভাগ 1ssl</description>
<description xml:lang="ast">Seición 1ssl</description>
<description xml:lang="be">Разьдзел 1ssl</description>
<description xml:lang="be@latin">Raździeł 1ssl</description>
<description xml:lang="bg">Раздел 1ssl</description>
<description xml:lang="bn">বিভাগ 1ssl</description>
<description xml:lang="bn_IN">বিভাগ 1ssl</description>
<description xml:lang="ca">Secció 1ssl</description>
<description xml:lang="ca@valencia">Secció 1ssl</description>
<description xml:lang="crh">Bölüm 1ssl</description>
<description xml:lang="cs">Oddíl 1ssl</description>
<description xml:lang="cy">Adran 1ssl</description>
<description xml:lang="da">Afsnit 1ssl</description>
<description xml:lang="de">Abschnitt 1ssl</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༡ཨེསི་ཨེསི་ཨེལ།</description>
<description xml:lang="el">Ενότητα 1ssl</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 1ssl</description>
<description xml:lang="en_GB">Section 1ssl</description>
<description xml:lang="es">Sección 1ssl</description>
<description xml:lang="et">Peatükk 1ssl</description>
<description xml:lang="eu">1ssl atala</description>
<description xml:lang="fa">بخش 1ssl</description>
<description xml:lang="fi">Osa 1ssl</description>
<description xml:lang="fr">Section 1ssl</description>
<description xml:lang="ga">Rannán 1ssl</description>
<description xml:lang="gl">Sección 1ssl</description>
<description xml:lang="gu">વિભાગ 1ssl</description>
<description xml:lang="he">חלק 1ssl</description>
<description xml:lang="hi">खंड 1ssl</description>
<description xml:lang="hu">1ssl szakasz</description>
<description xml:lang="id">Bagian 1ssl</description>
<description xml:lang="it">Sezione 1ss1</description>
<description xml:lang="ja">セクション 1ssl</description>
<description xml:lang="ka">სექცია 1ssl</description>
<description xml:lang="kn">1ssl ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 1ssl</description>
<description xml:lang="ks">हिय्स: 1ssl</description>
<description xml:lang="ku">Beşa 1ssl</description>
<description xml:lang="lt">Sekcija 1ssl</description>
<description xml:lang="lv">Sadaļa 1ssl</description>
<description xml:lang="mai">खंड 1ssl</description>
<description xml:lang="mg">Fitsinjarana 1ssl</description>
<description xml:lang="mk">Оддел 1ssl</description>
<description xml:lang="ml">വിഭാഗം - 1ssl</description>
<description xml:lang="mr">विभाग 1ssl</description>
<description xml:lang="nb">Seksjon 1ssl</description>
<description xml:lang="ne">सेक्सन 1ssl</description>
<description xml:lang="nl">Sectie 1ssl</description>
<description xml:lang="nn">Seksjon 1ssl</description>
<description xml:lang="oc">Seccion 1ssl</description>
<description xml:lang="or">ବିଭାଗ 1ssl</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 1ssl</description>
<description xml:lang="pl">Rozdział 1ssl</description>
<description xml:lang="pt">Secção 1ssl</description>
<description xml:lang="pt_BR">Seção 1ssl</description>
<description xml:lang="ro">Secțiunea 1ssl</description>
<description xml:lang="ru">Раздел 1ssl</description>
<description xml:lang="sl">Odsek 1ssl</description>
<description xml:lang="sq">Seksion 1ssl</description>
<description xml:lang="sr">Одељак 1ssl</description>
<description xml:lang="sr@latin">Odeljak 1ssl</description>
<description xml:lang="sv">Avsnitt 1ssl</description>
<description xml:lang="ta">பிரிவு 1ssl</description>
<description xml:lang="te">1ssl భాగము</description>
<description xml:lang="th">หมวด 1ssl</description>
<description xml:lang="tr">Bölüm 1ssl</description>
<description xml:lang="uk">Розділ 1ssl</description>
<description xml:lang="uz">Boʻlim 1ssl</description>
<description xml:lang="uz@cyrillic">Бўлим 1ssl</description>
<description xml:lang="vi">Phần 1ssl</description>
<description xml:lang="wa">Seccion 1ssl</description>
<description xml:lang="zh_CN">1ssl 节</description>
<description xml:lang="zh_HK">第 1ssl 節</description>
<description xml:lang="zh_TW">第 1ssl 節</description>
</toc>
<toc sect="1m" id="Man-man1m">
<title>Termcap Applications</title>
<title xml:lang="ar">تطبيقات Termcap</title>
<title xml:lang="as">Termcap অনুপ্ৰয়োগ</title>
<title xml:lang="ast">Aplicaciones Termcap</title>
<title xml:lang="be">Дастасаваньні Termcap</title>
<title xml:lang="be@latin">Aplikacyi Termcap</title>
<title xml:lang="bg">Програми на Termcap</title>
<title xml:lang="bn">Termcap অ্যাপ্লিকেশন</title>
<title xml:lang="bn_IN">Termcap অ্যাপ্লিকেশন</title>
<title xml:lang="br">Arloadoù Termcap</title>
<title xml:lang="ca">Aplicacions per a Termcap</title>
<title xml:lang="ca@valencia">Aplicacions per a Termcap</title>
<title xml:lang="crh">Termcap Uygulamaları</title>
<title xml:lang="cs">Aplikace Termcap</title>
<title xml:lang="cy">Rhaglenni Termcap</title>
<title xml:lang="da">Termcap-programmer</title>
<title xml:lang="de">Termcap-Anwendungen</title>
<title xml:lang="dz">ཊམ་ཀེཔ་ གློག་རིམ་ཚུ།</title>
<title xml:lang="el">Εφαρμογές Termcap</title>
<title xml:lang="en_CA">Termcap Applications</title>
<title xml:lang="en_GB">Termcap Applications</title>
<title xml:lang="es">Aplicaciones Termcap</title>
<title xml:lang="et">Termcap'i rakendused</title>
<title xml:lang="eu">Termcap aplikazioak</title>
<title xml:lang="fa">برنامههای Termcap</title>
<title xml:lang="fi">Termcap-sovellukset</title>
<title xml:lang="fr">Applications Termcap</title>
<title xml:lang="ga">Feidhmchláir Termcap</title>
<title xml:lang="gl">Aplicativos Termcap</title>
<title xml:lang="gu">Termcap કાર્યક્રમો</title>
<title xml:lang="he">יישומי Termcap</title>
<title xml:lang="hi">Termcap अनुप्रयोग</title>
<title xml:lang="hu">Termcap alkalmazások</title>
<title xml:lang="id">Aplikasi Termcap</title>
<title xml:lang="it">Applicazioni Termcap</title>
<title xml:lang="ja">Termcap アプリケーション</title>
<title xml:lang="ka">Termcap პროგრამები</title>
<title xml:lang="kn">Termcap ಅನ್ವಯಗಳು</title>
<title xml:lang="ko">termcap 프로그램</title>
<title xml:lang="ks">टरमकेप प्रयोग</title>
<title xml:lang="ku">Sepanên Termcap</title>
<title xml:lang="ky">Termcap иштемелери</title>
<title xml:lang="lt">Termcap programos</title>
<title xml:lang="lv">Termcap lietotnes</title>
<title xml:lang="mai">Termcap अनुप्रयोग</title>
<title xml:lang="mg">Rindranasa Termcap</title>
<title xml:lang="mk">Termcap апликации</title>
<title xml:lang="ml">Termcap പ്രയോഗങ്ങള്</title>
<title xml:lang="mr">टर्मकॅप कार्यक्रम</title>
<title xml:lang="nb">Termcap-programmer</title>
<title xml:lang="ne">टर्मक्याप अनुप्रयोग</title>
<title xml:lang="nl">Termcap-toepassingen</title>
<title xml:lang="nn">Termcap-program</title>
<title xml:lang="oc">Aplicacions Termcap</title>
<title xml:lang="or">Termcap ପ୍ରୟୋଗ</title>
<title xml:lang="pa">Termcap ਐਪਲੀਕੇਸ਼ਨ</title>
<title xml:lang="pl">Programy Termcap</title>
<title xml:lang="pt">Aplicações de Termcap</title>
<title xml:lang="pt_BR">Aplicativos Termcap</title>
<title xml:lang="ro">Aplicații Termcap</title>
<title xml:lang="ru">Приложения termcap</title>
<title xml:lang="sk">Aplikácie Termcap</title>
<title xml:lang="sl">Termcap programi</title>
<title xml:lang="sq">Programe Termcap</title>
<title xml:lang="sr">Termcap програми</title>
<title xml:lang="sr@latin">Termcap programi</title>
<title xml:lang="sv">Termcap-program</title>
<title xml:lang="ta">Termcap செயல்பாடுகள்</title>
<title xml:lang="te">Termcap కార్యక్షేత్రాలు</title>
<title xml:lang="th">โปรแกรม Termcap</title>
<title xml:lang="tr">Termcap Uygulamaları</title>
<title xml:lang="ug">قوللىنىش پىروگراممىلىرى Termcap</title>
<title xml:lang="uk">Програми Termcap</title>
<title xml:lang="uz">Termcap dasturlari</title>
<title xml:lang="uz@cyrillic">Termcap дастурлари</title>
<title xml:lang="vi">Ứng dụng Termcap</title>
<title xml:lang="wa">Programes termcap</title>
<title xml:lang="xh">Iinkqubo ze-Termcap</title>
<title xml:lang="zh_CN">Termcap 应用程序</title>
<title xml:lang="zh_HK">Termcap 應用程式</title>
<title xml:lang="zh_TW">Termcap 應用程式</title>
<description>Section 1m</description>
<description xml:lang="ar">الفصل 1m</description>
<description xml:lang="as">বিভাগ 1m</description>
<description xml:lang="ast">Seición 1m</description>
<description xml:lang="be">Разьдзел 1m</description>
<description xml:lang="be@latin">Raździeł 1m</description>
<description xml:lang="bg">Раздел 1m</description>
<description xml:lang="bn">বিভাগ 1m</description>
<description xml:lang="bn_IN">বিভাগ 1m</description>
<description xml:lang="ca">Secció 1m</description>
<description xml:lang="ca@valencia">Secció 1m</description>
<description xml:lang="crh">Bölüm 1m</description>
<description xml:lang="cs">Oddíl 1m</description>
<description xml:lang="cy">Adran 1m</description>
<description xml:lang="da">Afsnit 1m</description>
<description xml:lang="de">Abschnitt 1m</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༡ཨེམ།</description>
<description xml:lang="el">Ενότητα 1m</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 1m</description>
<description xml:lang="en_GB">Section 1m</description>
<description xml:lang="es">Sección 1m</description>
<description xml:lang="et">Peatükk 1m</description>
<description xml:lang="eu">1m atala</description>
<description xml:lang="fa">بخش 1m</description>
<description xml:lang="fi">Osa 1m</description>
<description xml:lang="fr">Section 1m</description>
<description xml:lang="ga">Rannán 1m</description>
<description xml:lang="gl">Sección 1m</description>
<description xml:lang="gu">વિભાગ 1m</description>
<description xml:lang="he">חלק 1m</description>
<description xml:lang="hi"> खंड 1m</description>
<description xml:lang="hu">1m szakasz</description>
<description xml:lang="id">Bagian 1m</description>
<description xml:lang="it">Sezione 1m</description>
<description xml:lang="ja">セクション 1m</description>
<description xml:lang="ka">სექცია 1m</description>
<description xml:lang="kn">1m ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 1m</description>
<description xml:lang="ks">हिय्स: 1m</description>
<description xml:lang="ku">Beşa 1m</description>
<description xml:lang="lt">Sekcija 1m</description>
<description xml:lang="lv">Sadaļa 1m</description>
<description xml:lang="mai">खंड 1m</description>
<description xml:lang="mg">Fitsinjarana 1m</description>
<description xml:lang="mk">Оддел 1m</description>
<description xml:lang="ml">വിഭാഗം - 1m</description>
<description xml:lang="mr">विभाग १m</description>
<description xml:lang="nb">Seksjon 1m</description>
<description xml:lang="ne">सेक्सन 1m</description>
<description xml:lang="nl">Sectie 1m</description>
<description xml:lang="nn">Seksjon 1m</description>
<description xml:lang="oc">Seccion 1m</description>
<description xml:lang="or">ବିଭାଗ 1m</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 1m</description>
<description xml:lang="pl">Rozdział 1m</description>
<description xml:lang="pt">Secção 1m</description>
<description xml:lang="pt_BR">Seção 1m</description>
<description xml:lang="ro">Secțiunea 1m</description>
<description xml:lang="ru">Раздел 1m</description>
<description xml:lang="sl">Odsek 1m</description>
<description xml:lang="sq">Seksion 1m</description>
<description xml:lang="sr">Одељак 1m</description>
<description xml:lang="sr@latin">Odeljak 1m</description>
<description xml:lang="sv">Avsnitt 1m</description>
<description xml:lang="ta">பிரிவு 1m</description>
<description xml:lang="te">1m భాగము</description>
<description xml:lang="th">หมวด 1m</description>
<description xml:lang="tr">Bölüm 1m</description>
<description xml:lang="uk">Розділ 1m</description>
<description xml:lang="uz">Boʻlim 1m</description>
<description xml:lang="uz@cyrillic">Бўлим 1m</description>
<description xml:lang="vi">Phần 1m</description>
<description xml:lang="wa">Seccion 1m</description>
<description xml:lang="zh_CN">1m 节</description>
<description xml:lang="zh_HK">第 1m 節</description>
<description xml:lang="zh_TW">第 1m 節</description>
</toc>
</toc>
<toc sect="3 3o 3t" id="Man-man3">
<title>Development</title>
<title xml:lang="af">Ontwikkeling</title>
<title xml:lang="am">እድገት</title>
<title xml:lang="ar">تطوير</title>
<title xml:lang="as">বিকাশ</title>
<title xml:lang="ast">Desarrollu</title>
<title xml:lang="az">İnkişaf</title>
<title xml:lang="be">Распрацоўка</title>
<title xml:lang="be@latin">Raspracoŭka</title>
<title xml:lang="bg">Разработка</title>
<title xml:lang="bn">ডেভেলপমেন্ট</title>
<title xml:lang="bn_IN">ডিভেলপমেন্ট</title>
<title xml:lang="br">Diorren</title>
<title xml:lang="bs">Programiranje</title>
<title xml:lang="ca">Desenvolupament</title>
<title xml:lang="ca@valencia">Desenvolupament</title>
<title xml:lang="crh">Geliştirme</title>
<title xml:lang="cs">Vývoj</title>
<title xml:lang="cy">Datblygu</title>
<title xml:lang="da">Udvikling</title>
<title xml:lang="de">Entwicklung</title>
<title xml:lang="dz">གོང་འཕེལ།</title>
<title xml:lang="el">Ανάπτυξη εφαρμογών</title>
<title xml:lang="en@shaw">𐑛𐑦𐑝𐑧𐑤𐑩𐑐𐑥𐑩𐑯𐑑</title>
<title xml:lang="en_CA">Development</title>
<title xml:lang="en_GB">Development</title>
<title xml:lang="eo">Programado</title>
<title xml:lang="es">Desarrollo</title>
<title xml:lang="et">Arendus</title>
<title xml:lang="eu">Garapena</title>
<title xml:lang="fa">برنامهسازی</title>
<title xml:lang="fi">Ohjelmakehitys</title>
<title xml:lang="fr">Développement</title>
<title xml:lang="ga">Forbairt</title>
<title xml:lang="gl">Desenvolvemento</title>
<title xml:lang="gu">વિકાસ</title>
<title xml:lang="he">פיתוח</title>
<title xml:lang="hi">विकास</title>
<title xml:lang="hr">Razvoj</title>
<title xml:lang="hu">Fejlesztés</title>
<title xml:lang="id">Pembangunan</title>
<title xml:lang="is">Þróun</title>
<title xml:lang="it">Sviluppo</title>
<title xml:lang="ja">開発</title>
<title xml:lang="ka">პროგრამირება</title>
<title xml:lang="kn">ಅಭಿವೃದ್ಧಿ</title>
<title xml:lang="ko">개발</title>
<title xml:lang="ks">बडावून</title>
<title xml:lang="ku">Pêşxistin</title>
<title xml:lang="ky">Иштеп чыгуу</title>
<title xml:lang="li">Development</title>
<title xml:lang="lt">Programavimas</title>
<title xml:lang="lv">Izstrāde</title>
<title xml:lang="mai">विकास</title>
<title xml:lang="mg">Famolavolana</title>
<title xml:lang="mk">Развој</title>
<title xml:lang="ml">വികസനം</title>
<title xml:lang="mn">Хөгжил</title>
<title xml:lang="mr">विकास</title>
<title xml:lang="ms">Pembangunan</title>
<title xml:lang="nb">Utvikling</title>
<title xml:lang="nds">Development</title>
<title xml:lang="ne">विकास</title>
<title xml:lang="nl">Ontwikkeling</title>
<title xml:lang="nn">Utvikling</title>
<title xml:lang="nso">Tšwelopele</title>
<title xml:lang="oc">Desvolopament</title>
<title xml:lang="or">ବିକାଶ</title>
<title xml:lang="pa">ਡਿਵੈਲਪਮੈਂਟ</title>
<title xml:lang="pl">Programowanie</title>
<title xml:lang="ps">پرمختګ</title>
<title xml:lang="pt">Desenvolvimento</title>
<title xml:lang="pt_BR">Desenvolvimento</title>
<title xml:lang="ro">Dezvoltare</title>
<title xml:lang="ru">Разработка</title>
<title xml:lang="sk">Vývoj</title>
<title xml:lang="sl">Razvoj</title>
<title xml:lang="sq">Zhvillim</title>
<title xml:lang="sr">Развој</title>
<title xml:lang="sr@latin">Razvoj</title>
<title xml:lang="sv">Utveckling</title>
<title xml:lang="ta">உருவாக்கம்</title>
<title xml:lang="te">అభివృధ్ధి</title>
<title xml:lang="tg">Коркард</title>
<title xml:lang="th">เขียนโปรแกรม</title>
<title xml:lang="tr">Geliştirme</title>
<title xml:lang="ug">تەرەققىيات</title>
<title xml:lang="uk">Розробка</title>
<title xml:lang="vi">Phát triển</title>
<title xml:lang="wa">Programaedje</title>
<title xml:lang="xh">Uphuhliso</title>
<title xml:lang="zh_CN">开发</title>
<title xml:lang="zh_HK">開發</title>
<title xml:lang="zh_TW">開發</title>
<title xml:lang="zu">Intuthuko</title>
<description>Sections 3, 3o, and 3t</description>
<description xml:lang="ar">الفصول 3، 3o، و 3t</description>
<description xml:lang="as">বিভাগ 3, 3o আৰু 3t</description>
<description xml:lang="ast">Seiciones 3, 3o y 3t</description>
<description xml:lang="be">Разьдзелы 3, 3o і 3t</description>
<description xml:lang="be@latin">Raździeły 3, 3o i 3t</description>
<description xml:lang="bg">Раздели 3, 3o, и 3t</description>
<description xml:lang="bn">বিভাগ 3, 3o ও 3t</description>
<description xml:lang="bn_IN">বিভাগ 3, 3o ও 3t</description>
<description xml:lang="ca">Seccions 3, 3o, i 3t</description>
<description xml:lang="ca@valencia">Seccions 3, 3o, i 3t</description>
<description xml:lang="crh">Bölüm 3, 3o ve 3t</description>
<description xml:lang="cs">Oddíly 3, 3o a 3t</description>
<description xml:lang="cy">Adrannau 3, 3o, a 3t</description>
<description xml:lang="da">Afsnit 3, 3o og 3t</description>
<description xml:lang="de">Abschnitte 3, 3o and 3t</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣,༣ཨོ་དང་ ༣ཊི།</description>
<description xml:lang="el">Ενότητες 3, 3o, και 3t</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 3, 3o, 𐑯 3t</description>
<description xml:lang="en_GB">Sections 3, 3o, and 3t</description>
<description xml:lang="es">Secciones 3, 3o y 3t</description>
<description xml:lang="et">Peatükid 3, 3o ja 3t</description>
<description xml:lang="eu">3, 3o eta 3t atalak</description>
<description xml:lang="fa">بخشهای 3، 3o، و 3t</description>
<description xml:lang="fi">Osat 3, 3o ja 3t</description>
<description xml:lang="fr">Sections 3, 3o et 3t</description>
<description xml:lang="ga">Rannáin 3, 3o, agus 3t</description>
<description xml:lang="gl">Seccións 3, 3o e 3t</description>
<description xml:lang="gu">વિભાગો 3, 3o, અને 3t</description>
<description xml:lang="he">חלקים 3, 3o, ו־3t</description>
<description xml:lang="hi">खंड 3, 3o, और 3t</description>
<description xml:lang="hu">3., 3o, és 3t szakaszok</description>
<description xml:lang="id">Bagian 3, 3o dan 3t</description>
<description xml:lang="it">Sezioni 3, 3o e 3t</description>
<description xml:lang="ja">セクション 3 と 3o、3t</description>
<description xml:lang="ka">სექციები 3, 3o, და 3t</description>
<description xml:lang="kn">3, 3o, ಹಾಗು 3t ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 3, 3o 및 3t</description>
<description xml:lang="ks">हिय्स: 3, 3o, तह् 3t</description>
<description xml:lang="ku">Beşên 3, 3o û 3t</description>
<description xml:lang="lt">Sekcijos 3, 3o, ir 3t</description>
<description xml:lang="lv">Sadaļas 3, 3o, un 3t</description>
<description xml:lang="mai">खंड 3, 3o, आओर 3t</description>
<description xml:lang="mg">Fitsinjarana 3, 3o, ary 3t</description>
<description xml:lang="mk">Оддели 3, 3o, и 3t</description>
<description xml:lang="ml">3, 3o,3t വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 3,3o आनि 3t</description>
<description xml:lang="nb">Seksjon 3, 3o og 3t</description>
<description xml:lang="ne">सेक्सन 3, 3o, र 3t</description>
<description xml:lang="nl">Secties 3, 3o en 3t</description>
<description xml:lang="nn">Seksjon 3, 3o og 3t</description>
<description xml:lang="oc">Seccions 3, 3o e 3t</description>
<description xml:lang="or">ବିଭାଗ 3, 3o, ଏବଂ 3t</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3, 3o, ਅਤੇ 3t</description>
<description xml:lang="pl">Rozdziały 3, 3o i 3t</description>
<description xml:lang="pt">Secções 3, 3o e 3t</description>
<description xml:lang="pt_BR">Seções 3, 3o e 3t</description>
<description xml:lang="ro">Secțiunile 3, 3o și 3t</description>
<description xml:lang="ru">Разделы 3, 3о и 3t</description>
<description xml:lang="sl">Odseki 3, 3o, in 3t</description>
<description xml:lang="sq">Seksione 3, 3o, dhe 3t</description>
<description xml:lang="sr">Одељци 3, 3o, и 3t</description>
<description xml:lang="sr@latin">Odeljci 3, 3o, i 3t</description>
<description xml:lang="sv">Avsnitten 3, 3o, och 3t</description>
<description xml:lang="ta">பிரிவுகள் 3, 3o, மற்றும் 3t</description>
<description xml:lang="te">3, 3o మరియు 3t భాగాలు</description>
<description xml:lang="th">หมวด 3, 3o และ 3t</description>
<description xml:lang="tr">Bölüm 3, 3o ve 3t</description>
<description xml:lang="uk">Розділи 3, 3o, та 3t</description>
<description xml:lang="uz">Boʻlim 3, 3o, va 3t</description>
<description xml:lang="uz@cyrillic">Бўлим 3, 3o, ва 3t</description>
<description xml:lang="vi">Phần 3, 3o và 3t</description>
<description xml:lang="wa">Seccions 3, 3o eyet 3t</description>
<description xml:lang="zh_CN">3、3o 和 3t 节</description>
<description xml:lang="zh_HK">第 3,3o,及 3t 節</description>
<description xml:lang="zh_TW">第 3,3o,及 3t 節</description>
<toc sect="3p" id="Man-man3p">
<title>POSIX Functions</title>
<title xml:lang="ar">دالّات POSIX</title>
<title xml:lang="as">POSIX ফাংশন</title>
<title xml:lang="ast">Funciones POSIX</title>
<title xml:lang="be">Функцыі POSIX</title>
<title xml:lang="be@latin">Funkcyi POSIX</title>
<title xml:lang="bg">Функции на POSIX</title>
<title xml:lang="bn">POSIX ফাংশন</title>
<title xml:lang="bn_IN">POSIX ফাংশন</title>
<title xml:lang="br">Arc'hwelioù POSIX</title>
<title xml:lang="ca">Funcions POSIX</title>
<title xml:lang="ca@valencia">Funcions POSIX</title>
<title xml:lang="crh">POSIX İşlevleri</title>
<title xml:lang="cs">Funkce POSIX</title>
<title xml:lang="cy">Ffwythiannau POSIX</title>
<title xml:lang="da">POSIX-funktioner</title>
<title xml:lang="de">POSIX-Funktionen</title>
<title xml:lang="dz">པི་ཨོ་ཨེསི་ཨའི་ཨེགསི་ ལས་འགན་ཚུ</title>
<title xml:lang="el">Συναρτήσεις POSIX </title>
<title xml:lang="en_CA">POSIX Functions</title>
<title xml:lang="en_GB">POSIX Functions</title>
<title xml:lang="es">Funciones POSIX</title>
<title xml:lang="et">POSIX-i funktsioonid</title>
<title xml:lang="eu">POSIX funtzioak</title>
<title xml:lang="fa">توابع POSIX</title>
<title xml:lang="fi">POSIX-funktiot</title>
<title xml:lang="fr">Fonctions POSIX</title>
<title xml:lang="ga">Feidhmeanna POSIX</title>
<title xml:lang="gl">Funcións POSIX</title>
<title xml:lang="gu">POSIX વિધેયો</title>
<title xml:lang="he">פונקציות POSIX</title>
<title xml:lang="hi">POSIX प्रकार्य</title>
<title xml:lang="hr">POSIX funkcije</title>
<title xml:lang="hu">POSIX függvények</title>
<title xml:lang="id">Fungsi POSIX</title>
<title xml:lang="it">Funzioni POSIX</title>
<title xml:lang="ja">POSIX の関数</title>
<title xml:lang="ka">POSIX-ბიბლიოთეკის ფუნქციები</title>
<title xml:lang="kn">POSIX ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">POSIX 함수</title>
<title xml:lang="ks">पोजिक्स कामि:</title>
<title xml:lang="ku">Fonksiyonên POSIX</title>
<title xml:lang="lt">POSIX funkcijos</title>
<title xml:lang="lv">POSIX funkcijas</title>
<title xml:lang="mai">POSIX प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny POSIX</title>
<title xml:lang="mk">POSIX функции</title>
<title xml:lang="ml">POSIX പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">पीओएसआयएक्सचे कार्य</title>
<title xml:lang="nb">POSIX-funksjoner</title>
<title xml:lang="ne">POSIX प्रकार्य</title>
<title xml:lang="nl">POSIX-functies</title>
<title xml:lang="nn">POSIX-funksjonar</title>
<title xml:lang="oc">Foncions POSIC</title>
<title xml:lang="or">POSIX ଫଳନ</title>
<title xml:lang="pa">POSIX ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje standardu POSIX</title>
<title xml:lang="pt">Funções POSIX</title>
<title xml:lang="pt_BR">Funções POSIX</title>
<title xml:lang="ro">Funcții POSIX</title>
<title xml:lang="ru">Функции POSIX</title>
<title xml:lang="sl">POSIX funkcije</title>
<title xml:lang="sq">Funksione POSIX</title>
<title xml:lang="sr">POSIX функције</title>
<title xml:lang="sr@latin">POSIX funkcije</title>
<title xml:lang="sv">POSIX-funktioner</title>
<title xml:lang="ta">POSIX செயல்பாடுகள்</title>
<title xml:lang="te">POSIX పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน POSIX</title>
<title xml:lang="tr">POSIX İşlevleri</title>
<title xml:lang="uk">Функції POSIX</title>
<title xml:lang="uz">POSIX funksiyalari</title>
<title xml:lang="uz@cyrillic">POSIX функциялари</title>
<title xml:lang="vi">Hàm POSIX</title>
<title xml:lang="wa">Fonccions POSIX</title>
<title xml:lang="zh_CN">POSIX 函数</title>
<title xml:lang="zh_HK">POSIX 函數</title>
<title xml:lang="zh_TW">POSIX 函式</title>
<description>Section 3p</description>
<description xml:lang="ar">الفصل 3p</description>
<description xml:lang="as">বিভাগ 3p</description>
<description xml:lang="ast">Seición 3p</description>
<description xml:lang="be">Разьдзел 3p</description>
<description xml:lang="be@latin">Raździeł 3p</description>
<description xml:lang="bg">Раздел 3p</description>
<description xml:lang="bn">বিভাগ 3p</description>
<description xml:lang="bn_IN">বিভাগ 3p</description>
<description xml:lang="ca">Secció 3p</description>
<description xml:lang="ca@valencia">Secció 3p</description>
<description xml:lang="crh">Bölüm 3p</description>
<description xml:lang="cs">Oddíl 3p</description>
<description xml:lang="cy">Adran 3p</description>
<description xml:lang="da">Afsnit 3p</description>
<description xml:lang="de">Abschnitt 3p</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣པི།</description>
<description xml:lang="el">Ενότητα 3p</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3p</description>
<description xml:lang="en_GB">Section 3p</description>
<description xml:lang="es">Sección 3p</description>
<description xml:lang="et">Peatükk 3p</description>
<description xml:lang="eu">3p atala</description>
<description xml:lang="fa">بخش 3p</description>
<description xml:lang="fi">Osa 3p</description>
<description xml:lang="fr">Section 3p</description>
<description xml:lang="ga">Rannán 3p</description>
<description xml:lang="gl">Sección 3p</description>
<description xml:lang="gu">વિભાગ 3p</description>
<description xml:lang="he">חלק 3p</description>
<description xml:lang="hi">खंड 3p</description>
<description xml:lang="hu">3p szakasz</description>
<description xml:lang="id">Bagian 3p</description>
<description xml:lang="it">Sezione 3p</description>
<description xml:lang="ja">セクション 3p</description>
<description xml:lang="ka">სექცია 3p</description>
<description xml:lang="kn">3p ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3p</description>
<description xml:lang="ks">हिय्स: 3p</description>
<description xml:lang="ku">Beşa 3p</description>
<description xml:lang="lt">Sekcija 3p</description>
<description xml:lang="lv">Sadaļa 3p</description>
<description xml:lang="mai">खंड 3p</description>
<description xml:lang="mg">Fitsinjarana 3p</description>
<description xml:lang="mk">Оддел 3p</description>
<description xml:lang="ml">വിഭാഗം - 3p</description>
<description xml:lang="mr">विभाग 3p</description>
<description xml:lang="nb">Seksjon 3p</description>
<description xml:lang="ne">सेकस्न 3p</description>
<description xml:lang="nl">Sectie 3p</description>
<description xml:lang="nn">Seksjon 3p</description>
<description xml:lang="oc">Seccion 3p</description>
<description xml:lang="or">ବିଭାଗ 3p</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3p</description>
<description xml:lang="pl">Rozdział 3p</description>
<description xml:lang="pt">Secção 3p</description>
<description xml:lang="pt_BR">Seção 3p</description>
<description xml:lang="ro">Secțiunea 3p</description>
<description xml:lang="ru">Раздел 3p</description>
<description xml:lang="sl">Odsek 3p</description>
<description xml:lang="sq">Seksion 3p</description>
<description xml:lang="sr">Одељак 3p</description>
<description xml:lang="sr@latin">Odeljak 3p</description>
<description xml:lang="sv">Avsnitt 3p</description>
<description xml:lang="ta">பிரிவு 3p</description>
<description xml:lang="te">3p భాగము</description>
<description xml:lang="th">หมวด 3p</description>
<description xml:lang="tr">Bölüm 3p</description>
<description xml:lang="uk">Розділ 3p</description>
<description xml:lang="uz">Boʻlim 3p</description>
<description xml:lang="uz@cyrillic">Бўлим 3p</description>
<description xml:lang="vi">Phần 3p</description>
<description xml:lang="wa">Seccion 3p</description>
<description xml:lang="zh_CN">3p 节</description>
<description xml:lang="zh_HK">第 3p 節</description>
<description xml:lang="zh_TW">第 3p 節</description>
</toc>
<toc sect="0p" id="Man-man0p">
<title>POSIX Headers</title>
<title xml:lang="ar">ترويسات POSIX</title>
<title xml:lang="as">POSIX হেডাৰ</title>
<title xml:lang="ast">Testeres POSIX</title>
<title xml:lang="be">Загалоўкі POSIX</title>
<title xml:lang="be@latin">Zahałoŭki POSIX</title>
<title xml:lang="bg">Заглавни файлове на POSIX</title>
<title xml:lang="bn">POSIX শীর্ষচরণ</title>
<title xml:lang="bn_IN">POSIX হেডার</title>
<title xml:lang="br">Reollinoù POSIX</title>
<title xml:lang="ca">Capçaleres POSIX</title>
<title xml:lang="ca@valencia">Capçaleres POSIX</title>
<title xml:lang="crh">POSIX Başlıkları</title>
<title xml:lang="cs">Záhlaví POSIX</title>
<title xml:lang="cy">Penawdau POSIX</title>
<title xml:lang="da">POSIX-hoveder</title>
<title xml:lang="de">POSIX-Header</title>
<title xml:lang="dz">པི་ཨོ་ཨེསི་ཨའི་ཨེགསི་མགོ་ཡིག</title>
<title xml:lang="el">Κεφαλίδες POSIX</title>
<title xml:lang="en_CA">POSIX Headers</title>
<title xml:lang="en_GB">POSIX Headers</title>
<title xml:lang="es">Cabeceras POSIX</title>
<title xml:lang="et">POSIX-i päised</title>
<title xml:lang="eu">POSIX goiburuak</title>
<title xml:lang="fa">سرصفحههای POSIX</title>
<title xml:lang="fi">POSIX-otsikot</title>
<title xml:lang="fr">En-têtes POSIX</title>
<title xml:lang="ga">Ceanntásca POSIX</title>
<title xml:lang="gl">Cabeceiras POSIX</title>
<title xml:lang="gu">POSIX હેડરો</title>
<title xml:lang="he">כותרות POSIX</title>
<title xml:lang="hi">POSIX शीर्षक</title>
<title xml:lang="hr">POSIX zaglavlje</title>
<title xml:lang="hu">POSIX fejlécek</title>
<title xml:lang="id">Judul POSIX</title>
<title xml:lang="it">Header POSIX</title>
<title xml:lang="ja">POSIX のヘッダ</title>
<title xml:lang="ka">POSIX თავსართი</title>
<title xml:lang="kn">POSIX ಹೆಡರುಗಳು</title>
<title xml:lang="ko">POSIX 헤더</title>
<title xml:lang="ks">पोजिक्स कुनुई नाव</title>
<title xml:lang="ku">Sernavên POSIX</title>
<title xml:lang="lt">POSIX antraštės</title>
<title xml:lang="lv">POSIX galvenes</title>
<title xml:lang="mai">POSIX शीर्षक</title>
<title xml:lang="mg">Lohasoratra POSIX</title>
<title xml:lang="mk">POSIX заглавја</title>
<title xml:lang="ml">POSIX ഹെഡറുകള്</title>
<title xml:lang="mr">पीओएसआयएक्सचे शीर्षक</title>
<title xml:lang="nb">POSIX-headere</title>
<title xml:lang="ne">POSIX हेडर</title>
<title xml:lang="nl">POSIX-headers</title>
<title xml:lang="nn">POSIX-hovud</title>
<title xml:lang="oc">Encaps POSIX</title>
<title xml:lang="or">ପୋଜିକ୍ସ ଶୀର୍ଷକ</title>
<title xml:lang="pa">POSIX ਹੈੱਡਰ</title>
<title xml:lang="pl">Nagłówki standardu POSIX</title>
<title xml:lang="pt">Cabeçalhos POSIX</title>
<title xml:lang="pt_BR">Cabeçalhos POSIX</title>
<title xml:lang="ro">Fișiere antet POSIX</title>
<title xml:lang="ru">Заголовки POSIX</title>
<title xml:lang="sl">POSIX Glave</title>
<title xml:lang="sq">Header POSIX</title>
<title xml:lang="sr">POSIX заглавља</title>
<title xml:lang="sr@latin">POSIX zaglavlja</title>
<title xml:lang="sv">POSIX-huvuden</title>
<title xml:lang="ta">POSIX தலைப்புகள்</title>
<title xml:lang="te">POSIX పీఠికలు</title>
<title xml:lang="th">แฟ้มส่วนหัว POSIX</title>
<title xml:lang="tr">POSIX Başlıkları</title>
<title xml:lang="uk">Заголовки POSIX</title>
<title xml:lang="vi">Phần đầu POSIX</title>
<title xml:lang="wa">Tiestires POSIX</title>
<title xml:lang="zh_CN">POSIX 头</title>
<title xml:lang="zh_HK">POSIX 標頭</title>
<title xml:lang="zh_TW">POSIX 標頭</title>
<description>Section 0p</description>
<description xml:lang="ar">الفصل 0p</description>
<description xml:lang="as">বিভাগ 0p</description>
<description xml:lang="ast">Seición 0p</description>
<description xml:lang="be">Разьдзел 0p</description>
<description xml:lang="be@latin">Raździeł 0p</description>
<description xml:lang="bg">Раздел 0p</description>
<description xml:lang="bn">বিভাগ 0p</description>
<description xml:lang="bn_IN">বিভাগ 0p</description>
<description xml:lang="ca">Secció 0p</description>
<description xml:lang="ca@valencia">Secció 0p</description>
<description xml:lang="crh">Bölüm 0p</description>
<description xml:lang="cs">Oddíl 0p</description>
<description xml:lang="cy">Adran 0p</description>
<description xml:lang="da">Afsnit 0p</description>
<description xml:lang="de">Abschnitt 0p</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༠པི།</description>
<description xml:lang="el">Ενότητα 0p</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 0p</description>
<description xml:lang="en_GB">Section 0p</description>
<description xml:lang="es">Sección 0p</description>
<description xml:lang="et">Peatükk 0p</description>
<description xml:lang="eu">0p atala</description>
<description xml:lang="fa">بخش 0p</description>
<description xml:lang="fi">Osa 0p</description>
<description xml:lang="fr">Section 0p</description>
<description xml:lang="ga">Rannán 0p</description>
<description xml:lang="gl">Sección 0p</description>
<description xml:lang="gu">વિભાગ 0p</description>
<description xml:lang="he">חלק 0p</description>
<description xml:lang="hi"> खंड 0p</description>
<description xml:lang="hu">0p szakasz</description>
<description xml:lang="id">Bagian 0p</description>
<description xml:lang="it">Sezione 0p</description>
<description xml:lang="ja">セクション 0p</description>
<description xml:lang="ka">სექცია 0p</description>
<description xml:lang="kn">0p ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 0p</description>
<description xml:lang="ks">हिय्स: 0p</description>
<description xml:lang="ku">Beşa 0p</description>
<description xml:lang="lt">Sekcija 0p</description>
<description xml:lang="lv">Sadaļa 0p</description>
<description xml:lang="mai">खंड 0p</description>
<description xml:lang="mg">Fitsinjarana 0p</description>
<description xml:lang="mk">Оддел 0p</description>
<description xml:lang="ml">വിഭാഗം - 0p</description>
<description xml:lang="mr">विभाग 0p</description>
<description xml:lang="nb">Seksjon 0p</description>
<description xml:lang="ne">सेक्सन 0p</description>
<description xml:lang="nl">Sectie 0p</description>
<description xml:lang="nn">Seksjon 0p</description>
<description xml:lang="oc">Seccion 0p</description>
<description xml:lang="or">ବିଭାଗ 0p</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 0p</description>
<description xml:lang="pl">Rozdział 0p</description>
<description xml:lang="pt">Secção 0p</description>
<description xml:lang="pt_BR">Seção 0p</description>
<description xml:lang="ro">Secțiunea 0p</description>
<description xml:lang="ru">Раздел 0p</description>
<description xml:lang="sl">Odsek 0p</description>
<description xml:lang="sq">Seksioni 0p</description>
<description xml:lang="sr">Одељак 0p</description>
<description xml:lang="sr@latin">Odeljak 0p</description>
<description xml:lang="sv">Avsnitt 0p</description>
<description xml:lang="ta">பிரிவு 0p</description>
<description xml:lang="te">Op భాగము</description>
<description xml:lang="th">หมวด 0p</description>
<description xml:lang="tr">Bölüm 0p</description>
<description xml:lang="uk">Розділ 0p</description>
<description xml:lang="uz">Boʻlim 0p</description>
<description xml:lang="uz@cyrillic">Бўлим 0p</description>
<description xml:lang="vi">Phần 0p</description>
<description xml:lang="wa">Seccion 0p</description>
<description xml:lang="zh_CN">0p 节</description>
<description xml:lang="zh_HK">第 0p 節</description>
<description xml:lang="zh_TW">第 0p 節</description>
</toc>
<toc sect="3blt" id="Man-3blt">
<title>BLT Functions</title>
<title xml:lang="ar">دالّات BLT</title>
<title xml:lang="as">BLT আপেক্ষক</title>
<title xml:lang="ast">Funciones BLT</title>
<title xml:lang="be">Функцыі BLT</title>
<title xml:lang="be@latin">Funkcyi BLT</title>
<title xml:lang="bg">Функции на BLT</title>
<title xml:lang="bn">BLT ফাংশন</title>
<title xml:lang="bn_IN">BLT ফাংশান</title>
<title xml:lang="br">Arc'hwelioù BLT</title>
<title xml:lang="ca">Funcions del BLT</title>
<title xml:lang="ca@valencia">Funcions del BLT</title>
<title xml:lang="crh">BLT İşlevleri</title>
<title xml:lang="cs">Funkce BTL</title>
<title xml:lang="cy">Ffwythiannau BLT</title>
<title xml:lang="da">BLT-funktioner</title>
<title xml:lang="de">BLT-Funktionen</title>
<title xml:lang="dz">བི་ཨེལ་ཊི་གི་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις BLT</title>
<title xml:lang="en_GB">BLT Functions</title>
<title xml:lang="es">Funciones BLT</title>
<title xml:lang="et">BLT funktsioonid</title>
<title xml:lang="eu">BLT funtzioak</title>
<title xml:lang="fa">توابع BLT</title>
<title xml:lang="fi">BLT-funktiot</title>
<title xml:lang="fr">Fonctions BLT</title>
<title xml:lang="ga">Feidhmeanna BLT</title>
<title xml:lang="gl">Funcións BLT</title>
<title xml:lang="gu">BLT વિધેયો</title>
<title xml:lang="he">פונקציות BLT</title>
<title xml:lang="hi">BLT प्रकार्य</title>
<title xml:lang="hu">BLT függvények</title>
<title xml:lang="id">Fungsi BLT</title>
<title xml:lang="it">Funzioni BLT</title>
<title xml:lang="ja">BLT ライブラリの関数</title>
<title xml:lang="ka">BLT ფუნქციები</title>
<title xml:lang="kn">BLT ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">BLT 함수</title>
<title xml:lang="ks">बीएलटी कामि:</title>
<title xml:lang="ku">Peywirên BLT</title>
<title xml:lang="lt">BLT funkcijos</title>
<title xml:lang="lv">BLT funkcijas</title>
<title xml:lang="mai">BLT प्रकार्य</title>
<title xml:lang="mg">Asa BLT</title>
<title xml:lang="mk">Функции за BLT</title>
<title xml:lang="ml">BLT പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">BLT कार्यपध्दती</title>
<title xml:lang="nb">BLT-funksjoner</title>
<title xml:lang="ne">बीएलटी प्रकार्य</title>
<title xml:lang="nl">BLT-functies</title>
<title xml:lang="nn">BLT-funksjonar</title>
<title xml:lang="oc">Foncions BLT</title>
<title xml:lang="or">BLT ଫଳନ</title>
<title xml:lang="pa">BLT ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje BLT</title>
<title xml:lang="pt">Funções de BLT</title>
<title xml:lang="pt_BR">Funções BLT</title>
<title xml:lang="ro">Funcții BLT</title>
<title xml:lang="ru">Функции BLT</title>
<title xml:lang="sl">BLT funkcije</title>
<title xml:lang="sq">Funksione BLT</title>
<title xml:lang="sr">BLT функције</title>
<title xml:lang="sr@latin">BLT funkcije</title>
<title xml:lang="sv">BLT-funktioner</title>
<title xml:lang="ta">பிஎல்டி செயல்பாடுகள்</title>
<title xml:lang="te">బియల్టి పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน BLT</title>
<title xml:lang="tr">BLT İşlevleri</title>
<title xml:lang="uk">Функції BLT</title>
<title xml:lang="uz">BLT funksiyalari</title>
<title xml:lang="uz@cyrillic">BLT функциялари</title>
<title xml:lang="vi">Hàm BLT</title>
<title xml:lang="wa">Fonccions BLT</title>
<title xml:lang="zh_CN">BLT 函数</title>
<title xml:lang="zh_HK">BLT 函數</title>
<title xml:lang="zh_TW">BLT 函式</title>
<description>Section 3blt</description>
<description xml:lang="ar">الفصل 3blt</description>
<description xml:lang="as">বিভাগ 3blt</description>
<description xml:lang="ast">Seición 3blt</description>
<description xml:lang="be">Разьдзел 3blt</description>
<description xml:lang="be@latin">Raździeł 3blt</description>
<description xml:lang="bg">Раздел 3blt</description>
<description xml:lang="bn">বিভাগ 3blt</description>
<description xml:lang="bn_IN">বিভাগ 3blt</description>
<description xml:lang="ca">Secció 3blt</description>
<description xml:lang="ca@valencia">Secció 3blt</description>
<description xml:lang="crh">Bölüm 3bit</description>
<description xml:lang="cs">Oddíl 3blt</description>
<description xml:lang="cy">Adran 3blt</description>
<description xml:lang="da">Afsnit 3blt</description>
<description xml:lang="de">Abschnitt 3blt</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣བི་ཨེལ་ཊི།</description>
<description xml:lang="el">Ενότητα 3blt</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3blt</description>
<description xml:lang="en_GB">Section 3blt</description>
<description xml:lang="es">Sección 3blt</description>
<description xml:lang="et">Peatükk 3blt</description>
<description xml:lang="eu">3blt atala</description>
<description xml:lang="fa">بخش 3blt</description>
<description xml:lang="fi">Osa 3blt</description>
<description xml:lang="fr">Section 3blt</description>
<description xml:lang="ga">Rannán 3blt</description>
<description xml:lang="gl">Sección 3blt</description>
<description xml:lang="gu">વિભાગ 3blt</description>
<description xml:lang="he">חלק 3blt</description>
<description xml:lang="hi">खंड 3blt</description>
<description xml:lang="hu">3blt szakasz</description>
<description xml:lang="id">Bagian 3blt</description>
<description xml:lang="it">Sezione 3blt</description>
<description xml:lang="ja">セクション 3blt</description>
<description xml:lang="ka">სექცია 3blt</description>
<description xml:lang="kn">3blt ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3blt</description>
<description xml:lang="ks">हिय्स: 3blt</description>
<description xml:lang="ku">Beşa 3blt</description>
<description xml:lang="lt">Sekcija 3blt</description>
<description xml:lang="lv">Sadaļa 3blt</description>
<description xml:lang="mai">खंड 3blt</description>
<description xml:lang="mg">Fitsinjarana 3blt</description>
<description xml:lang="mk">Оддел 3blt</description>
<description xml:lang="ml">വിഭാഗം - 3blt</description>
<description xml:lang="mr">विभाग 3blt</description>
<description xml:lang="nb">Seksjon 3blt</description>
<description xml:lang="ne">सेक्सन 3blt</description>
<description xml:lang="nl">Sectie 3blt</description>
<description xml:lang="nn">Seksjon 3blt</description>
<description xml:lang="oc">Seccion 3blt</description>
<description xml:lang="or">ବିଭାଗ 3blt</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3blt</description>
<description xml:lang="pl">Rozdział 3blt</description>
<description xml:lang="pt">Secção 3blt</description>
<description xml:lang="pt_BR">Seção 3blt</description>
<description xml:lang="ro">Secțiunea 3blt</description>
<description xml:lang="ru">Раздел 3blt</description>
<description xml:lang="sl">Odsek 3blt</description>
<description xml:lang="sq">Seksion 3bit</description>
<description xml:lang="sr">Одељак 3blt</description>
<description xml:lang="sr@latin">Odeljak 3blt</description>
<description xml:lang="sv">Avsnitt 3blt</description>
<description xml:lang="ta">பிரிவு 3blt</description>
<description xml:lang="te">3blt భాగము</description>
<description xml:lang="th">หมวด 3blt</description>
<description xml:lang="tr">Bölüm 3bit</description>
<description xml:lang="uk">Розділ 3blt</description>
<description xml:lang="uz">Boʻlim 3blt</description>
<description xml:lang="uz@cyrillic">Бўлим 3blt</description>
<description xml:lang="vi">Phần 3blt</description>
<description xml:lang="wa">Seccion 3blt</description>
<description xml:lang="zh_CN">3blt 节</description>
<description xml:lang="zh_HK">第 3blt 節</description>
<description xml:lang="zh_TW">第 3blt 節</description>
</toc>
<toc sect="3nas" id="Man-3nas">
<title>Network Audio Sound Functions</title>
<title xml:lang="ar">دالّات الصوت الشبكية</title>
<title xml:lang="as">নেটৱৰ্ক অডিও শব্দৰ আপেক্ষক</title>
<title xml:lang="ast">Funciones de soníu en rede (NAS)</title>
<title xml:lang="be">Функцыі працы з гукам праз інтэрнэт</title>
<title xml:lang="be@latin">Funkcyi Network Audio Sound</title>
<title xml:lang="bg">Функции за звук по мрежата</title>
<title xml:lang="bn">নেটওয়ার্ক অডিও শব্দের ফাংশন</title>
<title xml:lang="bn_IN">নেটওয়ার্ক অডিও শব্দের ফাংশান</title>
<title xml:lang="ca">Funcions de so d'àudio de xarxa</title>
<title xml:lang="ca@valencia">Funcions de so d'àudio de xarxa</title>
<title xml:lang="crh">Ağ Sesi İşitsel İşlevleri</title>
<title xml:lang="cs">Funkce síťového zvuku</title>
<title xml:lang="cy">Nodweddion Sain Rhwydwaith</title>
<title xml:lang="da">Netværkslydfunktioner</title>
<title xml:lang="de">Netzwerk-Audio-Sound-Funktionen</title>
<title xml:lang="dz">ཡོངས་འབྲེལ་གྱི་རྣར་ཉན་སྒྲ་སྐད་ཀྱི་ལས་འགན།</title>
<title xml:lang="el">Συναρτήσεις Network Audio Sound</title>
<title xml:lang="en@shaw">𐑯𐑧𐑑𐑢𐑻𐑒 𐑷𐑛𐑦𐑴 𐑕𐑬𐑯𐑛 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_GB">Network Audio Sound Functions</title>
<title xml:lang="es">Funciones de sonido en red</title>
<title xml:lang="et">Network Audio Sound funktsioonid</title>
<title xml:lang="eu">Sareko audio-soinuen funtzioak</title>
<title xml:lang="fa">توابع صوتی شبکهای</title>
<title xml:lang="fi">Funktiot äänen käsittelyyn verkon yli</title>
<title xml:lang="fr">Fonctions Network Audio Sound</title>
<title xml:lang="gl">Funcións de audio en rede</title>
<title xml:lang="gu">નેટવર્ક ઓડિયો સાઉન્ડ વિધેયો</title>
<title xml:lang="he">פונקציות רשת אודיו קול</title>
<title xml:lang="hi">नेटवर्क ध्वनि प्रकार्य</title>
<title xml:lang="hu">Hálózati hang (NAS) függvények</title>
<title xml:lang="id">Fungsi Jaringan Suara</title>
<title xml:lang="it">Funzioni Network Audio Sound</title>
<title xml:lang="ja">ネットワーク・オーディオ・サウンドの関数</title>
<title xml:lang="ka">Network Audio Sound ფუნქციები</title>
<title xml:lang="kn">ಜಾಲಬಂಧ ಆಡಿಯೋ ಧ್ವನಿ ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">네트워크 오디오 사운드 함수</title>
<title xml:lang="ks">नेटवर्क आवाज कामिह्</title>
<title xml:lang="ku">Fonksiyonên Dengê Audio yê Torê</title>
<title xml:lang="lt">Tinklo garso (NAS) funkcijos</title>
<title xml:lang="lv">Tīkla audio skaņas funkcijas</title>
<title xml:lang="mai">नेटवर्क श्रव्य ध्वनि प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny feo amin'ny rezo</title>
<title xml:lang="mk">Функции за мрежа аудио звук</title>
<title xml:lang="ml">നെറ്റ്വര്ക്ക് ഓഡിയോ ശബ്ദ പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">नेटवर्क ऑडियो साऊंड कार्य</title>
<title xml:lang="nb">Network Audio Sound-funksjoner</title>
<title xml:lang="ne">सञ्जाल अडियो ध्वनि प्रकार्य</title>
<title xml:lang="nl">Netwerk audio geluidsfuncties</title>
<title xml:lang="nn">Network Audio Sound-funksjonar</title>
<title xml:lang="oc">Foncions Network Audio Sound</title>
<title xml:lang="or">ନେଟଓ୍ବାର୍କ ଧ୍ବନୀ ଶବ୍ଦ ଫଳନ</title>
<title xml:lang="pa">ਨੈੱਟਵਰਕ ਆਡੀਓ ਸਾਊਂਡ ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje NAS</title>
<title xml:lang="pt">Funções do Network Audio Sound</title>
<title xml:lang="pt_BR">Funções de som de áudio em rede</title>
<title xml:lang="ro">Funcții sunet de rețea</title>
<title xml:lang="ru">Функции Network Audio Sound</title>
<title xml:lang="sl">Omrežni zvočne funkcije</title>
<title xml:lang="sq">Funksione Network Audio Sound</title>
<title xml:lang="sr">Мрежне и функције за звук</title>
<title xml:lang="sr@latin">Mrežne i funkcije za zvuk</title>
<title xml:lang="sv">Nätverksljudfunktioner</title>
<title xml:lang="ta">வலைப்பின்னல் கேட்பொலி செயல்கள்</title>
<title xml:lang="te">అల్లికలో శ్రవణ ధ్వని కార్యములు</title>
<title xml:lang="th">ฟังก์ชันเกี่ยวกับระบบเสียงผ่านเครือข่าย</title>
<title xml:lang="tr">Ağ Sesi İşitsel İşlevleri</title>
<title xml:lang="uk">Функції мережного сервера звуку (NAS)</title>
<title xml:lang="vi">Hàm âm thanh mạng</title>
<title xml:lang="wa">Fonccions di son pa raloyaedje rantoele</title>
<title xml:lang="zh_CN">网络音频声音函数</title>
<title xml:lang="zh_HK">網絡音效函數</title>
<title xml:lang="zh_TW">網路音效函式</title>
<description>Section 3nas</description>
<description xml:lang="ar">الفصل 3nas</description>
<description xml:lang="as">বিভাগ 3nas</description>
<description xml:lang="ast">Seición 3nas</description>
<description xml:lang="be">Разьдзел 3nas</description>
<description xml:lang="be@latin">Raździeł 3nas</description>
<description xml:lang="bg">Раздел 3nas</description>
<description xml:lang="bn">বিভাগ 3nas</description>
<description xml:lang="bn_IN">বিভাগ 3nas</description>
<description xml:lang="ca">Secció 3nas</description>
<description xml:lang="ca@valencia">Secció 3nas</description>
<description xml:lang="crh">Bölüm 3nas</description>
<description xml:lang="cs">Oddíl 3nas</description>
<description xml:lang="cy">Adran 3nas</description>
<description xml:lang="da">Afsnit 3nas</description>
<description xml:lang="de">Abschnitt 3nas</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཨེན་ཨེ་ཨེསི།</description>
<description xml:lang="el">Ενότητα 3nas</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3nas</description>
<description xml:lang="en_GB">Section 3nas</description>
<description xml:lang="es">Sección 3nas</description>
<description xml:lang="et">Peatükk 3nas</description>
<description xml:lang="eu">3nas atala</description>
<description xml:lang="fa">بخش 3nas</description>
<description xml:lang="fi">Osa 3nas</description>
<description xml:lang="fr">Section 3nas</description>
<description xml:lang="ga">Rannán 3nas</description>
<description xml:lang="gl">Sección 3nas</description>
<description xml:lang="gu">વિભાગ 3nas</description>
<description xml:lang="he">חלק 3nas</description>
<description xml:lang="hi">खंड 3nas</description>
<description xml:lang="hu">3nas szakasz</description>
<description xml:lang="id">Bagian 3nas</description>
<description xml:lang="it">Sezione 3nas</description>
<description xml:lang="ja">セクション 3nas</description>
<description xml:lang="ka">სექცია 3nas</description>
<description xml:lang="kn">3nas ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3nas</description>
<description xml:lang="ks">हिय्स: 3nas</description>
<description xml:lang="ku">Beşa 3nas</description>
<description xml:lang="lt">Sekcija 3nas</description>
<description xml:lang="lv">Sadaļa 3nas</description>
<description xml:lang="mai">खंड 3nas</description>
<description xml:lang="mg">Fitsinjarana 3nas</description>
<description xml:lang="mk">Оддел 3nas</description>
<description xml:lang="ml">വിഭാഗം - 3nas</description>
<description xml:lang="mr">विभाग 3nas</description>
<description xml:lang="nb">Seksjon 3nas</description>
<description xml:lang="ne">सेक्सन 3nas</description>
<description xml:lang="nl">Sectie 3nas</description>
<description xml:lang="nn">Seksjon 3nas</description>
<description xml:lang="oc">Seccion 3nas</description>
<description xml:lang="or">ବିଭାଗ 3nas</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3nas</description>
<description xml:lang="pl">Rozdział 3nas</description>
<description xml:lang="pt">Secção 3nas</description>
<description xml:lang="pt_BR">Seçao 3nas</description>
<description xml:lang="ro">Secțiunea 3nas</description>
<description xml:lang="ru">Раздел 3nas</description>
<description xml:lang="sl">Odsek 3nas</description>
<description xml:lang="sq">Seksion 3nas</description>
<description xml:lang="sr">Одељак 3nas</description>
<description xml:lang="sr@latin">Odeljak 3nas</description>
<description xml:lang="sv">Avsnitt 3nas</description>
<description xml:lang="ta">பிரிவு 3nas</description>
<description xml:lang="te">3nas భాగము</description>
<description xml:lang="th">หมวด 3nas</description>
<description xml:lang="tr">Bölüm 3nas</description>
<description xml:lang="uk">Розділ 3nas</description>
<description xml:lang="uz">Boʻlim 3nas</description>
<description xml:lang="uz@cyrillic">Бўлим 3nas</description>
<description xml:lang="vi">Phần 3nas</description>
<description xml:lang="wa">Seccion 3nas</description>
<description xml:lang="zh_CN">3nas 节</description>
<description xml:lang="zh_HK">第 3nas 節</description>
<description xml:lang="zh_TW">第 3nas 節</description>
</toc>
<toc sect="3form 3menu" id="Man-3form">
<title>System V Form/Menu Functions</title>
<title xml:lang="ar">دالات Form/Menu النظام الخامس</title>
<title xml:lang="as">System V ফৰ্ম/তালিকা আপেক্ষক</title>
<title xml:lang="ast">Funciones System V Form/Menu</title>
<title xml:lang="be">Функцыі формаў/мэню System V</title>
<title xml:lang="be@latin">Funkcyi formaŭ/menu System V</title>
<title xml:lang="bg">Функции на System V за формуляри и менюта</title>
<title xml:lang="bn">System V ফরম/মেনু ফাংশন</title>
<title xml:lang="bn_IN">System V ফর্ম/মেনু ফাংশান</title>
<title xml:lang="ca">Functions del formulari/menú del sistema V</title>
<title xml:lang="ca@valencia">Functions del formulari/menú del sistema V</title>
<title xml:lang="crh">Sistem V From/Menü İşlevleri</title>
<title xml:lang="cs">Funkce System V Form/Menu</title>
<title xml:lang="cy">Nodweddion Dewislen/Ffurflen System V</title>
<title xml:lang="da">System V Form/Menu-funktioner</title>
<title xml:lang="de">System V Formular/Menü-Funktionen</title>
<title xml:lang="dz">རིམ་ལུགས་ ཝི་གི་རྣམ་པ་/དཀར་ཆག་གི་ལས་འགན།</title>
<title xml:lang="el">Λειτουργίες System V Form/Menu</title>
<title xml:lang="en@shaw">𐑕𐑦𐑕𐑑𐑩𐑥 V 𐑓𐑹𐑥/𐑥𐑧𐑯𐑿 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_GB">System V Form/Menu Functions</title>
<title xml:lang="es">Funciones System V Form/Menu</title>
<title xml:lang="et">Süsteem V vorm/Menüüfunktsioonid</title>
<title xml:lang="eu">System V inprimakien/menuen funtzioak</title>
<title xml:lang="fa">توابع فرم/منوی سیستم V</title>
<title xml:lang="fi">System V lomake- ja valikkofunktiot</title>
<title xml:lang="fr">Fonctions System V Form/Menu</title>
<title xml:lang="gl">Funcións System V Form/Menu</title>
<title xml:lang="gu">સિસ્ટમ V ફોર્મ/મેનુ વિધેયો</title>
<title xml:lang="he">פונקציות טפסים/תפריטים של System V</title>
<title xml:lang="hi">तंत्र ५ फार्म मेनु प्रकार्य</title>
<title xml:lang="hu">System V űrlap/menü függvények</title>
<title xml:lang="id">Fungsi Form/Menu System V</title>
<title xml:lang="it">Funzioni Form/Menu System V</title>
<title xml:lang="ja">システムV系/メニュー関数</title>
<title xml:lang="ka">System V Form/Menu ფუნქციები</title>
<title xml:lang="kn">ವ್ಯವಸ್ಥೆಯ V ನಮೂನೆ/ಮೆನು ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">시스템 V 폼/메뉴 함수</title>
<title xml:lang="ks">सिस्टम वी फार्म मेनु कामिह्</title>
<title xml:lang="ku">Forma Pergala V/Fonksiyonên Pêşekê</title>
<title xml:lang="lt">System V formų/meniu funkcijos</title>
<title xml:lang="lv">Sistēmas V formas/izvēlnes funkcijas</title>
<title xml:lang="mai">सिस्टम V फार्म/मेनु प्रकार्य</title>
<title xml:lang="mk">Функции за System V форми/менија</title>
<title xml:lang="ml">സിസ്റ്റം V Form/മെനു പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">सिस्टम V फॉर्म/यादी कार्य</title>
<title xml:lang="nb">System V skjema/meny-funksjoner</title>
<title xml:lang="ne">प्रणाली भी फाराम/मेनु प्रकार्य</title>
<title xml:lang="nl">System V vorm/menu-functies</title>
<title xml:lang="nn">System V skjema/meny-funksjonar</title>
<title xml:lang="oc">Foncions System V Form/Menu</title>
<title xml:lang="or">ତନ୍ତ୍ର V ଫର୍ମ/ତାଲିକା ଫଳନ</title>
<title xml:lang="pa">ਸਿਸਟਮ V ਫਾਰਮ/ਮੇਨੂ ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje formularzy/menu Systemu V</title>
<title xml:lang="pt">Funções de System V Form/Menu</title>
<title xml:lang="pt_BR">Funções Form e Menu do System V</title>
<title xml:lang="ro">Funcțiile System V Form/Menu</title>
<title xml:lang="ru">Функции System V Form/Menu</title>
<title xml:lang="sl">Sistem V Form/Menu funkcije</title>
<title xml:lang="sq">Funksione Form/Menu System V</title>
<title xml:lang="sr">Систем 5 функције за форме и меније</title>
<title xml:lang="sr@latin">Sistem 5 funkcije za forme i menije</title>
<title xml:lang="sv">System V Form/Menyfunktioner</title>
<title xml:lang="ta">அமைப்பு V படிவம் /பட்டி செயல்கள்</title>
<title xml:lang="te">సిస్టమ్ V ఫాం/మెనూ పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชันฟอร์ม/เมนูของซิสเท็มไฟว์</title>
<title xml:lang="tr">Sistem V From/Menü İşlevleri</title>
<title xml:lang="uk">Функції System V Form/Menu</title>
<title xml:lang="vi">Hàm trình đơn/dạng System V</title>
<title xml:lang="wa">Fonccions SysV Form/Menu</title>
<title xml:lang="zh_CN">System V 表格/菜单函数</title>
<title xml:lang="zh_HK">SystemV 表單/選單函數</title>
<title xml:lang="zh_TW">SystemV 表單/選單函式</title>
<description>Sections 3form and 3menu</description>
<description xml:lang="ar">الفصول 3form و 3menu</description>
<description xml:lang="as">বিভাগ 3form আৰু 3menu</description>
<description xml:lang="ast">Seiciones 3form y 3menu</description>
<description xml:lang="be">Разьдзелы 3form і 3menu</description>
<description xml:lang="be@latin">Raździeły 3form i 3menu</description>
<description xml:lang="bg">Раздели 3form и 3menu</description>
<description xml:lang="bn">বিভাগ 3form ও 3menu</description>
<description xml:lang="bn_IN">বিভাগ 3form ও 3menu</description>
<description xml:lang="ca">Seccions 3form i 3menu</description>
<description xml:lang="ca@valencia">Seccions 3form i 3menu</description>
<description xml:lang="crh">Bölüm 3form ve 3menu</description>
<description xml:lang="cs">Oddíly 3form a 3menu</description>
<description xml:lang="cy">Adrannau 3form a 3menu</description>
<description xml:lang="da">Afsnit 3form og 3menu</description>
<description xml:lang="de">Abschnitte 3form und 3menu</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣རྣམ་པ་དང་ ༣དཀར་ཆག།</description>
<description xml:lang="el">Ενότητες 3form και 3menu</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 3form 𐑯 3menu</description>
<description xml:lang="en_GB">Sections 3form and 3menu</description>
<description xml:lang="es">Secciones 3form y 3menu</description>
<description xml:lang="et">Peatükid 3form ja 3menu</description>
<description xml:lang="eu">3form eta 3menu atalak</description>
<description xml:lang="fa">بخشهای 3form و 3menu</description>
<description xml:lang="fi">Osat 3form ja 3menu</description>
<description xml:lang="fr">Sections 3form et 3menu</description>
<description xml:lang="ga">Rannáin 3form agus 3menu</description>
<description xml:lang="gl">Seccións 3form e 3menu</description>
<description xml:lang="gu">વિભાગો 3form અને 3menu</description>
<description xml:lang="he">חלקים 3form ו־3menu</description>
<description xml:lang="hi">खंड 3form और 3menu</description>
<description xml:lang="hu">3form és 3menu szakaszok</description>
<description xml:lang="id">Bagian 3form dan 3menu</description>
<description xml:lang="it">Sezioni 3form e 3curses</description>
<description xml:lang="ja">セクション 3form と 3menu</description>
<description xml:lang="ka">სექციები 3form და 3menu</description>
<description xml:lang="kn">3form ಹಾಗು 3menu ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 3form 및 3menu</description>
<description xml:lang="ks">हिय्स: 3form तह् 3menu</description>
<description xml:lang="ku">Beşên 3form û 3menu</description>
<description xml:lang="lt">Sekcijos 3form ir 3menu</description>
<description xml:lang="lv">Sadaļas 3form un 3menu</description>
<description xml:lang="mai">खंड 3form आओर 3menu</description>
<description xml:lang="mg">Fitsinjarana 3form ary 3menu</description>
<description xml:lang="mk">Оддели 3form и 3menu</description>
<description xml:lang="ml">3form, 3menu വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 3 फॉर्म आनि ३ यादी</description>
<description xml:lang="nb">Selsjon 3form og 3menu</description>
<description xml:lang="ne">सेक्सन 3form र 3menu</description>
<description xml:lang="nl">Secties 3form en 3menu</description>
<description xml:lang="nn">Selsjon 3form og 3menu</description>
<description xml:lang="oc">Seccions 3form e 3menu</description>
<description xml:lang="or">ବିଭାଗ 3form ଏବଂ 3menu</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3form ਅਤੇ 3menu</description>
<description xml:lang="pl">Rozdziały 3form i 3menu</description>
<description xml:lang="pt">Secções 3form e 3menu</description>
<description xml:lang="pt_BR">Seções 3form e 3menu</description>
<description xml:lang="ro">Secțiunile 3form și 3menu</description>
<description xml:lang="ru">Разделы 3form и 3menu</description>
<description xml:lang="sl">Odseki 3form in 3menu</description>
<description xml:lang="sq">Seksione 3form dhe 3menu</description>
<description xml:lang="sr">Одељци 3form и 3menu</description>
<description xml:lang="sr@latin">Odeljci 3form i 3menu</description>
<description xml:lang="sv">Avsnitten 3form och 3menu</description>
<description xml:lang="ta">பிரிவுகள் 3form மற்றும் 3menu</description>
<description xml:lang="te">3form మరియు 3menu భాగములు</description>
<description xml:lang="th">หมวด 3form และ 3menu</description>
<description xml:lang="tr">Bölüm 3form ve 3menu</description>
<description xml:lang="uk">Розділи 3form та 3menu</description>
<description xml:lang="uz">Boʻlim 3form va 3menu</description>
<description xml:lang="uz@cyrillic">Бўлим 3form ва 3menu</description>
<description xml:lang="vi">Phần 3form và 3menu</description>
<description xml:lang="wa">Seccions 3form eyet 3menu</description>
<description xml:lang="zh_CN">3form 和 3menu 节</description>
<description xml:lang="zh_HK">第 3form 及 3menu 節</description>
<description xml:lang="zh_TW">第 3form 及 3menu 節</description>
</toc>
<toc sect="3tiff" id="Man-3tiff">
<title>TIFF Functions</title>
<title xml:lang="ar">دالّات TIFF</title>
<title xml:lang="as">TIFF আপেক্ষক</title>
<title xml:lang="ast">Funciones TIFF</title>
<title xml:lang="be">Функцыі TIFF</title>
<title xml:lang="be@latin">Funkcyi TIFF</title>
<title xml:lang="bg">Функции на TIFF</title>
<title xml:lang="bn">TIFF ফাংশন</title>
<title xml:lang="bn_IN">TIFF ফাংশান</title>
<title xml:lang="br">Arc'hwelioù TIFF</title>
<title xml:lang="ca">Funcions TIFF</title>
<title xml:lang="ca@valencia">Funcions TIFF</title>
<title xml:lang="crh">TIFF İşlevleri</title>
<title xml:lang="cs">Funkce TIFF</title>
<title xml:lang="cy">Ffwythiannau TIFF</title>
<title xml:lang="da">TIFF-funktioner</title>
<title xml:lang="de">TIFF-Funktionen</title>
<title xml:lang="dz">ཊི་ཨའི་ཨེཕ་ཨེཕ་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις TIFF</title>
<title xml:lang="en@shaw">·𐑑𐑦𐑓 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_GB">TIFF Functions</title>
<title xml:lang="es">Funciones TIFF</title>
<title xml:lang="et">TIFF funktsioonid</title>
<title xml:lang="eu">TIFF funtzioak</title>
<title xml:lang="fa">توابع TIFF</title>
<title xml:lang="fi">Tiff-funktiot</title>
<title xml:lang="fr">Fonctions TIFF</title>
<title xml:lang="ga">Feidhmeanna TIFF</title>
<title xml:lang="gl">Funcións TIFF</title>
<title xml:lang="gu">TIFF વિધેયો</title>
<title xml:lang="he">פונקציות TIFF</title>
<title xml:lang="hi">टिफ प्रकार्य</title>
<title xml:lang="hu">TIFF függvények</title>
<title xml:lang="id">Fungsi TIFF</title>
<title xml:lang="it">Funzioni TIFF</title>
<title xml:lang="ja">TIFF ライブラリの関数</title>
<title xml:lang="ka">TIFF ფუნქციები</title>
<title xml:lang="kn">TIFF ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">TIFF 함수</title>
<title xml:lang="ks">टी आई एफ एफ कामिह्</title>
<title xml:lang="ku">Pêwirên TIFF</title>
<title xml:lang="lt">TIFF funkcijos</title>
<title xml:lang="lv">TIFF funkcijas</title>
<title xml:lang="mai">टिफ प्रकार्य</title>
<title xml:lang="mg">Asa momba ny TIFF</title>
<title xml:lang="mk">Функции за TIFF</title>
<title xml:lang="ml">TIFF പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">TIFF कार्यपध्दती</title>
<title xml:lang="nb">TIFF-funksjoner</title>
<title xml:lang="ne">टिफ प्रकार्य</title>
<title xml:lang="nl">TIFF-functies</title>
<title xml:lang="nn">TIFF-funksjonar</title>
<title xml:lang="oc">Foncions TIFF</title>
<title xml:lang="or">TIFF ଫଳନ</title>
<title xml:lang="pa">TIFF ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje TIFF</title>
<title xml:lang="pt">Funções de TIFF</title>
<title xml:lang="pt_BR">Funções TIFF</title>
<title xml:lang="ro">Funcții TIFF</title>
<title xml:lang="ru">Функции TIFF</title>
<title xml:lang="sl">TIFF Funkcije</title>
<title xml:lang="sq">Funksione TIFF</title>
<title xml:lang="sr">TIFF функције</title>
<title xml:lang="sr@latin">TIFF funkcije</title>
<title xml:lang="sv">TIFF-funktioner</title>
<title xml:lang="ta">டிஐஎஃப்எஃப் செயல்பாடுகள்</title>
<title xml:lang="te">TIFF పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน TIFF</title>
<title xml:lang="tr">TIFF İşlevleri</title>
<title xml:lang="uk">Функції TIFF</title>
<title xml:lang="uz">TIFF funksiyalari</title>
<title xml:lang="uz@cyrillic">TIFF функциялари</title>
<title xml:lang="vi">Hàm TIFF</title>
<title xml:lang="wa">Fonccions TIFF</title>
<title xml:lang="zh_CN">TIFF 函数</title>
<title xml:lang="zh_HK">TIFF 函數</title>
<title xml:lang="zh_TW">TIFF 函式</title>
<description>Section 3tiff</description>
<description xml:lang="ar">الفصل 3tiff</description>
<description xml:lang="as">বিভাগ 3tiff</description>
<description xml:lang="ast">Seición 3tiff</description>
<description xml:lang="be">Разьдзел 3tiff</description>
<description xml:lang="be@latin">Raździeł 3tiff</description>
<description xml:lang="bg">Раздел 3tiff</description>
<description xml:lang="bn">বিভাগ 3tiff</description>
<description xml:lang="bn_IN">বিভাগ 3tiff</description>
<description xml:lang="ca">Secció 3tiff</description>
<description xml:lang="ca@valencia">Secció 3tiff</description>
<description xml:lang="crh">Bölüm 3tiff</description>
<description xml:lang="cs">Oddíl 3tiff</description>
<description xml:lang="cy">Adran 3tiff</description>
<description xml:lang="da">Afsnit 3tiff</description>
<description xml:lang="de">Abschnitt 3tiff</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཊིཕ།</description>
<description xml:lang="el">Ενότητα 3tiff</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3tiff</description>
<description xml:lang="en_GB">Section 3tiff</description>
<description xml:lang="es">Sección 3tiff</description>
<description xml:lang="et">Peatükk 3tiff</description>
<description xml:lang="eu">3tiff atala</description>
<description xml:lang="fa">بخش 3tiff</description>
<description xml:lang="fi">Osa 3tiff</description>
<description xml:lang="fr">Section 3tiff</description>
<description xml:lang="ga">Rannán 3tiff</description>
<description xml:lang="gl">Sección 3tiff</description>
<description xml:lang="gu">વિભાગ 3tiff</description>
<description xml:lang="he">חלק 3tiff</description>
<description xml:lang="hi">खंड 3tiff</description>
<description xml:lang="hu">3tiff szakasz</description>
<description xml:lang="id">Bagian 3tiff</description>
<description xml:lang="it">Sezione 3tiff</description>
<description xml:lang="ja">セクション 3tiff</description>
<description xml:lang="ka">სექცია 3tiff</description>
<description xml:lang="kn">3tiff ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3tiff</description>
<description xml:lang="ks">हिय्स: 3tiff</description>
<description xml:lang="ku">Beşa 3tiff</description>
<description xml:lang="lt">Sekcija 3tiff</description>
<description xml:lang="lv">Sadaļa 3tiff</description>
<description xml:lang="mai">खंड 3tiff</description>
<description xml:lang="mg">Fitsinjarana 3tiff</description>
<description xml:lang="mk">Оддел 3tiff</description>
<description xml:lang="ml">വിഭാഗം - 3tiff</description>
<description xml:lang="mr">विभाग 3tiff</description>
<description xml:lang="nb">Seksjon 3tiff</description>
<description xml:lang="ne">सेक्सन 3tiff</description>
<description xml:lang="nl">Sectie 3tiff</description>
<description xml:lang="nn">Seksjon 3tiff</description>
<description xml:lang="oc">Seccion 3tiff</description>
<description xml:lang="or">ବିଭାଗ 3tiff</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3tiff</description>
<description xml:lang="pl">Rozdział 3tiff</description>
<description xml:lang="pt">Secção 3tiff</description>
<description xml:lang="pt_BR">Seção 3tiff</description>
<description xml:lang="ro">Secțiunea 3tiff</description>
<description xml:lang="ru">Раздел 3tiff</description>
<description xml:lang="sl">Odsek 3tiff</description>
<description xml:lang="sq">Seksion 3tiff</description>
<description xml:lang="sr">Одељак 3tiff</description>
<description xml:lang="sr@latin">Odeljak 3tiff</description>
<description xml:lang="sv">Avsnitt 3tiff</description>
<description xml:lang="ta">பிரிவு 3tiff</description>
<description xml:lang="te">3tiff భాగము</description>
<description xml:lang="th">หมวด 3tiff</description>
<description xml:lang="tr">Bölüm 3tiff</description>
<description xml:lang="uk">Розділ 3tiff</description>
<description xml:lang="uz">Boʻlim 3tiff</description>
<description xml:lang="uz@cyrillic">Бўлим 3tiff</description>
<description xml:lang="vi">Phần 3tiff</description>
<description xml:lang="wa">Seccion 3tiff</description>
<description xml:lang="zh_CN">3tiff 节</description>
<description xml:lang="zh_HK">第 3tiff 節</description>
<description xml:lang="zh_TW">第 3tiff 節</description>
</toc>
<toc sect="3ssl" id="Man-3ssl">
<title>OpenSSL Functions</title>
<title xml:lang="ar">دالّات OpenSSL</title>
<title xml:lang="as">OpenSSL আপেক্ষক</title>
<title xml:lang="ast">Funciones OpenSSL</title>
<title xml:lang="be">Функцыі OpenSSL</title>
<title xml:lang="be@latin">Funkcyi OpenSSL</title>
<title xml:lang="bg">Функции на OpenSSL</title>
<title xml:lang="bn">OpenSSL ফাংশন</title>
<title xml:lang="bn_IN">OpenSSL ফাংশান</title>
<title xml:lang="br">Arc'hwelioù OpenSSL</title>
<title xml:lang="ca">Funcions de l'OpenSSL</title>
<title xml:lang="ca@valencia">Funcions de l'OpenSSL</title>
<title xml:lang="crh">OpenSSL İşlevleri</title>
<title xml:lang="cs">Funkce OpenSSL</title>
<title xml:lang="cy">Ffwythiannau OpenSSL</title>
<title xml:lang="da">OpenSSL-funktioner</title>
<title xml:lang="de">OpenSSL-Funktionen</title>
<title xml:lang="dz">ཨོ་པཱན་ཨེསི་ཨེསི་ཨེལ་གི་ ལས་འགན་ཚུ། </title>
<title xml:lang="el">Συναρτήσεις OpenSSL</title>
<title xml:lang="en_GB">OpenSSL Functions</title>
<title xml:lang="es">Funciones OpenSSL</title>
<title xml:lang="et">OpenSSL'i funktsioonid</title>
<title xml:lang="eu">OpenSSL funtzioak</title>
<title xml:lang="fa">توابع OpenSSL</title>
<title xml:lang="fi">OpenSSL-funktiot</title>
<title xml:lang="fr">Fonctions OpenSSL</title>
<title xml:lang="ga">Feidhmeanna OpenSSL</title>
<title xml:lang="gl">Funcións OpenSSL</title>
<title xml:lang="gu">OpenSSL વિધેયો</title>
<title xml:lang="he">פונקציות OpenSSL</title>
<title xml:lang="hi">OpenSSL प्रकार्य</title>
<title xml:lang="hu">OpenSSL függvények</title>
<title xml:lang="id">Fungsi OpenSSL</title>
<title xml:lang="it">Funzioni OpenSSL</title>
<title xml:lang="ja">OpenSSL の関数</title>
<title xml:lang="ka">OpenSSL ფუნქციები</title>
<title xml:lang="kn">OpenSSL ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">OpenSSL 함수</title>
<title xml:lang="ks">औपन एस एस एल्लक कामिह्</title>
<title xml:lang="ku">Fonksiyonên OpenSSL</title>
<title xml:lang="lt">OpenSSL funkcijos</title>
<title xml:lang="lv">OpenSSL funkcijas</title>
<title xml:lang="mai">OpenSSL प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny OpenSSL</title>
<title xml:lang="mk">Функции за OpenSSL</title>
<title xml:lang="ml">OpenSSL പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">OpenSSL कार्यपध्दती</title>
<title xml:lang="nb">OpenSSL-funksjoner</title>
<title xml:lang="ne">ओपनएसएसएल प्रकार्य</title>
<title xml:lang="nl">OpenSSL-functies</title>
<title xml:lang="nn">OpenSSL-funksjonar</title>
<title xml:lang="oc">Foncions OpenSSL</title>
<title xml:lang="or">OpenSSL ଫଳନ</title>
<title xml:lang="pa">OpenSSL ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje biblioteki OpenSSL</title>
<title xml:lang="pt">Funções de OpenSSL</title>
<title xml:lang="pt_BR">Funções OpenSSL</title>
<title xml:lang="ro">Funcții OpenSSL</title>
<title xml:lang="ru">Функции OpenSSL</title>
<title xml:lang="sl">OpenSSL nastavitve</title>
<title xml:lang="sq">Funksione OpenSSL</title>
<title xml:lang="sr">ОпенССЛ функције</title>
<title xml:lang="sr@latin">OpenSSL funkcije</title>
<title xml:lang="sv">OpenSSL-funktioner</title>
<title xml:lang="ta">OpenSSL பயன்பாடுகள்</title>
<title xml:lang="te">OpenSSL పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน OpenSSL</title>
<title xml:lang="tr">OpenSSL İşlevleri</title>
<title xml:lang="uk">Функції OpenSSL</title>
<title xml:lang="uz">OpenSSL funksiyalari</title>
<title xml:lang="uz@cyrillic">OpenSSL функциялари</title>
<title xml:lang="vi">Hàm OpenSSL</title>
<title xml:lang="wa">Fonccions OpenSSL</title>
<title xml:lang="zh_CN">OpenSSL 函数</title>
<title xml:lang="zh_HK">OpenSSL 函數</title>
<title xml:lang="zh_TW">OpenSSL 函式</title>
<description>Section 3ssl</description>
<description xml:lang="ar">الفصل 3ssl</description>
<description xml:lang="as">বিভাগ 3ssl</description>
<description xml:lang="ast">Seición 3ssl</description>
<description xml:lang="be">Разьдзел 3ssl</description>
<description xml:lang="be@latin">Raździeł 3ssl</description>
<description xml:lang="bg">Раздел 3ssl</description>
<description xml:lang="bn">বিভাগ 3ssl</description>
<description xml:lang="bn_IN">বিভাগ 3ssl</description>
<description xml:lang="ca">Secció 3ssl</description>
<description xml:lang="ca@valencia">Secció 3ssl</description>
<description xml:lang="crh">Bölüm 3ssl</description>
<description xml:lang="cs">Oddíl 3ssl</description>
<description xml:lang="cy">Adran 3ssl</description>
<description xml:lang="da">Afsnit 3ssl</description>
<description xml:lang="de">Abschnitt 3ssl</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཨེསི་ཨེསི་ཨེལ།</description>
<description xml:lang="el">Ενότητα 3ssl</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3ssl</description>
<description xml:lang="en_GB">Section 3ssl</description>
<description xml:lang="es">Sección 3ssl</description>
<description xml:lang="et">Peatükk 3ssl</description>
<description xml:lang="eu">3ssl atala</description>
<description xml:lang="fa">بخش 3ssl</description>
<description xml:lang="fi">Osa 3ssl</description>
<description xml:lang="fr">Section 3ssl</description>
<description xml:lang="ga">Rannán 3ssl</description>
<description xml:lang="gl">Sección 3ssl</description>
<description xml:lang="gu">વિભાગ 3ssl</description>
<description xml:lang="he">חלק 3ssl</description>
<description xml:lang="hi">खंड 3ssl</description>
<description xml:lang="hu">3ssl szakasz</description>
<description xml:lang="id">Bagian 3ssl</description>
<description xml:lang="it">Sezione 3ssl</description>
<description xml:lang="ja">セクション 3ssl</description>
<description xml:lang="ka">სექცია 3ssl</description>
<description xml:lang="kn">3ssl ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3ssl</description>
<description xml:lang="ks">हिय्स: 3ssl</description>
<description xml:lang="ku">Beşa 3ssl</description>
<description xml:lang="lt">Sekcija 3ssl</description>
<description xml:lang="lv">Sadaļa 3ssl</description>
<description xml:lang="mai">खंड 3ssl</description>
<description xml:lang="mg">Fitsinjarana 3ssl</description>
<description xml:lang="mk">Оддел 3ssl</description>
<description xml:lang="ml">വിഭാഗം - 3ssl</description>
<description xml:lang="mr">विभाग 3ssl</description>
<description xml:lang="nb">Seksjon 3ssl</description>
<description xml:lang="ne">सेक्सन 3ssl</description>
<description xml:lang="nl">Sectie 3ssl</description>
<description xml:lang="nn">Seksjon 3ssl</description>
<description xml:lang="oc">Seccion 3ssl</description>
<description xml:lang="or">ବିଭାଗ 3ssl</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3ssl</description>
<description xml:lang="pl">Rozdział 3ssl</description>
<description xml:lang="pt">Secção 3ssl</description>
<description xml:lang="pt_BR">Seção 3ssl</description>
<description xml:lang="ro">Secțiunea 3ssl</description>
<description xml:lang="ru">Раздел 3ssl</description>
<description xml:lang="sl">Odsek 3ssl</description>
<description xml:lang="sq">Seksion 3ssl</description>
<description xml:lang="sr">Одељак 3ssl</description>
<description xml:lang="sr@latin">Odeljak 3ssl</description>
<description xml:lang="sv">Avsnitt 3ssl</description>
<description xml:lang="ta">பிரிவு 3ssl</description>
<description xml:lang="te">3ssl భాగము</description>
<description xml:lang="th">หมวด 3ssl</description>
<description xml:lang="tr">Bölüm 3ssl</description>
<description xml:lang="uk">Розділ 3ssl</description>
<description xml:lang="uz">Boʻlim 3ssl</description>
<description xml:lang="uz@cyrillic">Бўлим 3ssl</description>
<description xml:lang="vi">Phần 3ssl</description>
<description xml:lang="wa">Seccion 3ssl</description>
<description xml:lang="zh_CN">3ssl 节</description>
<description xml:lang="zh_HK">第 3ssl 節</description>
<description xml:lang="zh_TW">第 3ssl 節</description>
</toc>
<toc sect="3readline" id="Man-3readline">
<title>Readline Functions</title>
<title xml:lang="ar">دالّات Readline </title>
<title xml:lang="as">Readline আপেক্ষক</title>
<title xml:lang="ast">Funciones Readline</title>
<title xml:lang="be">Функцыі readline</title>
<title xml:lang="be@latin">Funkcyi readline</title>
<title xml:lang="bg">Функции на Readline</title>
<title xml:lang="bn">Readline ফাংশন</title>
<title xml:lang="bn_IN">Readline ফাংশান</title>
<title xml:lang="ca">Funcions del readline</title>
<title xml:lang="ca@valencia">Funcions del readline</title>
<title xml:lang="crh">Readline İşlevleri</title>
<title xml:lang="cs">Funkce readline</title>
<title xml:lang="cy">Ffwythiannau Readline</title>
<title xml:lang="da">Readline-funktioner</title>
<title xml:lang="de">Readline-Funktionen</title>
<title xml:lang="dz">ལྷག་གྲལ་གྱི་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις Readline</title>
<title xml:lang="en_GB">Readline Functions</title>
<title xml:lang="es">Funciones Readline</title>
<title xml:lang="et">Readline funktsioonid</title>
<title xml:lang="eu">Readline funtzioak</title>
<title xml:lang="fa">توابع Readline</title>
<title xml:lang="fi">Readline-funktiot</title>
<title xml:lang="fr">Fonctions Readline</title>
<title xml:lang="ga">Feidhmeanna Readline</title>
<title xml:lang="gl">Funcións Readline</title>
<title xml:lang="gu">Readline વિધેયો</title>
<title xml:lang="he">פונקציות Readline</title>
<title xml:lang="hi">रीडलाइन प्रकार्य</title>
<title xml:lang="hu">Readline függvények</title>
<title xml:lang="id">Fungsi Readline</title>
<title xml:lang="it">Funzioni Readline</title>
<title xml:lang="ja">Readline ライブラリの関数</title>
<title xml:lang="ka">ხაზისწამკითხველი ფუნქციები</title>
<title xml:lang="kn">ರೀಡ್ಲೈನ್ ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">readline 함수</title>
<title xml:lang="ks">कामिह्</title>
<title xml:lang="ku">Fonksiyonên Rêzika Xwendinê</title>
<title xml:lang="lt">Readline funkcijos</title>
<title xml:lang="lv">Readline Funkcijas</title>
<title xml:lang="mai">रीडलाइन प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny Readline</title>
<title xml:lang="mk">Readline функции</title>
<title xml:lang="ml">റീഡ്ലൈന് പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">Readline कार्यपध्दती</title>
<title xml:lang="nb">Readline-funksjoner</title>
<title xml:lang="ne">पढ्ने रेखा प्रकार्य</title>
<title xml:lang="nl">Readline-functies</title>
<title xml:lang="nn">Readline-funksjonar</title>
<title xml:lang="oc">Foncions Readline</title>
<title xml:lang="or">Readline ଫଳନ</title>
<title xml:lang="pa">Readline ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje biblioteki Readline</title>
<title xml:lang="pt">Funções de Readline</title>
<title xml:lang="pt_BR">Funções Readline</title>
<title xml:lang="ro">Funcții Readline</title>
<title xml:lang="ru">Функции readline</title>
<title xml:lang="sl">Readline funkcije</title>
<title xml:lang="sq">Funksione Readline</title>
<title xml:lang="sr">Readline функције</title>
<title xml:lang="sr@latin">Readline funkcije</title>
<title xml:lang="sv">Readline-funktioner</title>
<title xml:lang="ta">ரீட்லைன் செயல்பாடுகள்</title>
<title xml:lang="te">రీడ్లైన్ పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน Readline</title>
<title xml:lang="tr">Readline İşlevleri</title>
<title xml:lang="uk">Функції Readline</title>
<title xml:lang="uz">Readline funksiyalari</title>
<title xml:lang="uz@cyrillic">Readline функциялари</title>
<title xml:lang="vi">Hàm Readline</title>
<title xml:lang="wa">Fonccions del livreye «readline»</title>
<title xml:lang="zh_CN">Readline 函数</title>
<title xml:lang="zh_HK">Readline 函數</title>
<title xml:lang="zh_TW">Readline 函式</title>
<description>Section 3readline</description>
<description xml:lang="ar">الفصل 3readline</description>
<description xml:lang="as">বিভাগ 3readline</description>
<description xml:lang="ast">Seición 3readline</description>
<description xml:lang="be">Разьдзел 3readline</description>
<description xml:lang="be@latin">Raździeł 3readline</description>
<description xml:lang="bg">Раздел 3readline</description>
<description xml:lang="bn">বিভাগ 3readline</description>
<description xml:lang="bn_IN">বিভাগ 3readline</description>
<description xml:lang="ca">Secció 3readline</description>
<description xml:lang="ca@valencia">Secció 3readline</description>
<description xml:lang="crh">Bölüm 3readline</description>
<description xml:lang="cs">Oddíl 3readline</description>
<description xml:lang="cy">Adran 3readline</description>
<description xml:lang="da">Afsnit 3readline</description>
<description xml:lang="de">Abschnitt 3readline</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ལྷག་གྲལ།</description>
<description xml:lang="el">Ενότητα 3readline</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3readline</description>
<description xml:lang="en_GB">Section 3readline</description>
<description xml:lang="es">Sección 3readline</description>
<description xml:lang="et">Peatükk 3readline</description>
<description xml:lang="eu">3readline atala</description>
<description xml:lang="fa">بخش 3readline</description>
<description xml:lang="fi">Osa 3readline</description>
<description xml:lang="fr">Section 3readline</description>
<description xml:lang="ga">Rannán 3readline</description>
<description xml:lang="gl">Sección 3readline</description>
<description xml:lang="gu">વિભાગ 3readline</description>
<description xml:lang="he">חלק 3readline</description>
<description xml:lang="hi">खंड 3readline</description>
<description xml:lang="hu">3readline szakasz</description>
<description xml:lang="id">Bagian 3readline</description>
<description xml:lang="it">Sezione 3readline</description>
<description xml:lang="ja">セクション 3readline</description>
<description xml:lang="ka">სექცია 3readline</description>
<description xml:lang="kn">3readline ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3readline</description>
<description xml:lang="ks">हिय्स: 3readline</description>
<description xml:lang="ku">Beşa 3readline</description>
<description xml:lang="lt">Sekcija 3readline</description>
<description xml:lang="lv">Sadaļa 3readline</description>
<description xml:lang="mai">खंड 3readline</description>
<description xml:lang="mg">Fitsinjarana 3readline</description>
<description xml:lang="mk">Оддел 3readline</description>
<description xml:lang="ml">വിഭാഗം - 3readline</description>
<description xml:lang="mr">विभाग </description>
<description xml:lang="nb">Seksjon 3readline</description>
<description xml:lang="ne">सेक्सन 3readline</description>
<description xml:lang="nl">Sectie 3readline</description>
<description xml:lang="nn">Seksjon 3readline</description>
<description xml:lang="oc">Seccion 3readline</description>
<description xml:lang="or">ବିଭାଗ 3readline</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3readline</description>
<description xml:lang="pl">Rozdział 3readline</description>
<description xml:lang="pt">Secção 3readline</description>
<description xml:lang="pt_BR">Seção 3readline</description>
<description xml:lang="ro">Secțiunea 3readline</description>
<description xml:lang="ru">Раздел 3readline</description>
<description xml:lang="sl">Odsek 3readline</description>
<description xml:lang="sq">Seksion 3readline</description>
<description xml:lang="sr">Одељак 3readline</description>
<description xml:lang="sr@latin">Odeljak 3readline</description>
<description xml:lang="sv">Avsnitt 3readline</description>
<description xml:lang="ta">பிரிவு 3readline</description>
<description xml:lang="te">3readline భాగము</description>
<description xml:lang="th">หมวด 3readline</description>
<description xml:lang="tr">Bölüm 3readline</description>
<description xml:lang="uk">Розділ 3readline</description>
<description xml:lang="uz">Boʻlim 3readline</description>
<description xml:lang="uz@cyrillic">Бўлим 3readline</description>
<description xml:lang="vi">Phần 3readline</description>
<description xml:lang="wa">Seccion 3readline</description>
<description xml:lang="zh_CN">3readline 节</description>
<description xml:lang="zh_HK">第 3readline 節</description>
<description xml:lang="zh_TW">第 3readline 節</description>
</toc>
<toc sect="3ncurses 3curses" id="Man-3curses">
<title>Curses Functions</title>
<title xml:lang="ar">دالّات Curses</title>
<title xml:lang="as">Curses আপেক্ষক</title>
<title xml:lang="ast">Funciones Curses</title>
<title xml:lang="be">Функцыі Curses</title>
<title xml:lang="be@latin">Funkcyi Curses</title>
<title xml:lang="bg">Функции на Curses</title>
<title xml:lang="bn">Curses ফাংশন</title>
<title xml:lang="bn_IN">Curses ফাংশান</title>
<title xml:lang="ca">Funcions del Curses</title>
<title xml:lang="ca@valencia">Funcions del Curses</title>
<title xml:lang="crh">Curses İşlevleri</title>
<title xml:lang="cs">Funkce curses</title>
<title xml:lang="cy">Ffwythiannau Curses</title>
<title xml:lang="da">Curses-funktioner</title>
<title xml:lang="de">Curses-Funktionen</title>
<title xml:lang="dz">ཀར་སེསི་གི་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις Curses</title>
<title xml:lang="en@shaw">·𐑒𐑻𐑕𐑦𐑟 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_GB">Curses Functions</title>
<title xml:lang="es">Funciones Curses</title>
<title xml:lang="et">Curses funktsioonid</title>
<title xml:lang="eu">Kurtsoreen funtzioak</title>
<title xml:lang="fa">توابع Curses</title>
<title xml:lang="fi">Curses-funktiot</title>
<title xml:lang="fr">Fonctions Curses</title>
<title xml:lang="ga">Feidhmeanna Curses</title>
<title xml:lang="gl">Funcións Curses</title>
<title xml:lang="gu">Curses વિધેયો</title>
<title xml:lang="he">פונקציות Curses</title>
<title xml:lang="hi">कर्सेस प्रकार्य</title>
<title xml:lang="hu">Curses függvények</title>
<title xml:lang="id">Fungsi Curses</title>
<title xml:lang="it">Funzioni Curses</title>
<title xml:lang="ja">Curses ライブラリの関数</title>
<title xml:lang="ka">Curses-ბის ფუნქციები</title>
<title xml:lang="kn">ಕರ್ಸಸ್ ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">curses 함수</title>
<title xml:lang="ks">कर्सेस कामिह</title>
<title xml:lang="ku">Nîşanderên Fonksiyonan</title>
<title xml:lang="lt">Curses funkcijos</title>
<title xml:lang="lv">Kursu funkcijas</title>
<title xml:lang="mai">कर्सेस प्रकार्य</title>
<title xml:lang="mg">Asa Curses</title>
<title xml:lang="mk">Функции за Curses</title>
<title xml:lang="ml">Curser പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">Curses कार्यपध्दती</title>
<title xml:lang="nb">Curses-funksjoner</title>
<title xml:lang="ne">विपद प्रकार्य</title>
<title xml:lang="nl">Curses-functies</title>
<title xml:lang="nn">Curses-funksjonar</title>
<title xml:lang="oc">Foncions Curses</title>
<title xml:lang="or">Curses ଫଳନ</title>
<title xml:lang="pa">Curses ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje Curses</title>
<title xml:lang="pt">Funções de Curses</title>
<title xml:lang="pt_BR">Funções Curses</title>
<title xml:lang="ro">Funcții curses</title>
<title xml:lang="ru">Функции Curses</title>
<title xml:lang="sl">Curses funkcije</title>
<title xml:lang="sq">Funksione Curses</title>
<title xml:lang="sr">Curses функције</title>
<title xml:lang="sr@latin">Curses funkcije</title>
<title xml:lang="sv">Curses-funktioner</title>
<title xml:lang="ta">கர்ஸஸ் செயல்பாடுகள்</title>
<title xml:lang="te">కర్సెస్ పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน Curses</title>
<title xml:lang="tr">Curses İşlevleri</title>
<title xml:lang="uk">Функції Curses</title>
<title xml:lang="uz">Curses funksiyalari</title>
<title xml:lang="uz@cyrillic">Curses функциялари</title>
<title xml:lang="vi">Hàm Curses</title>
<title xml:lang="wa">Fonccions del livreye «curses»</title>
<title xml:lang="zh_CN">Curses 函数</title>
<title xml:lang="zh_HK">Curses 函數</title>
<title xml:lang="zh_TW">Curses 函式</title>
<description>Sections 3ncurses and 3curses</description>
<description xml:lang="ar">الفصول 3ncurses و 3curses </description>
<description xml:lang="as">বিভাগ 3ncurses আৰু 3curses</description>
<description xml:lang="ast">Seiciones 3ncurses y 3curses</description>
<description xml:lang="be">Разьдзелы 3ncurses і 3curses</description>
<description xml:lang="be@latin">Raździeły 3ncurses i 3curses</description>
<description xml:lang="bg">Раздели 3ncurses и 3curses</description>
<description xml:lang="bn">বিভাগ 3ncurses ও 3curses</description>
<description xml:lang="bn_IN">বিভাগ 3ncurses ও 3curses</description>
<description xml:lang="ca">Seccions 3ncurses i 3curses</description>
<description xml:lang="ca@valencia">Seccions 3ncurses i 3curses</description>
<description xml:lang="crh">Bölüm 3bcurses ve 3curses</description>
<description xml:lang="cs">Oddíly 3ncurses a 3curses</description>
<description xml:lang="cy">Adrannau 3ncurses a 3curses</description>
<description xml:lang="da">Afsnit 3ncurses og 3curses</description>
<description xml:lang="de">Abschnitte 3ncurses und 3curses</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཨེན་ཀར་སེསི་དང་ ༣ཀར་སེསི།</description>
<description xml:lang="el">Ενότητες 3ncurses και 3curses</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 3ncurses 𐑯 3curses</description>
<description xml:lang="en_GB">Sections 3ncurses and 3curses</description>
<description xml:lang="es">Secciones 3ncurses y 3curses</description>
<description xml:lang="et">Peatükid 3ncurses ja 3curses</description>
<description xml:lang="eu">3ncurses eta 3curses atalak</description>
<description xml:lang="fa">بخشهای 3ncurses و 3curses</description>
<description xml:lang="fi">Osat 3ncurses ja 3curses</description>
<description xml:lang="fr">Sections 3ncurses et 3curses</description>
<description xml:lang="ga">Rannáin 3ncurses agus 3curses</description>
<description xml:lang="gl">Seccións 3ncurses e 3curses</description>
<description xml:lang="gu">વિભાગો 3ncurses અને 3curses</description>
<description xml:lang="he">חלקים 3ncurses ו־3curses</description>
<description xml:lang="hi">खंड 3एनकर्सेस और 3कर्सेस</description>
<description xml:lang="hu">3ncurses és 3curses szakaszok</description>
<description xml:lang="id">Bagian 3ncurses dan 3curses</description>
<description xml:lang="it">Sezioni 3ncurses e 3curses</description>
<description xml:lang="ja">セクション 3ncurses と 3curses</description>
<description xml:lang="ka">სექციები 3ncurses და 3curses</description>
<description xml:lang="kn">3ncurses ಹಾಗು 3curses ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 3ncurses 및 3curses</description>
<description xml:lang="ks">हिय्स: 3ncurses तह् 3curses</description>
<description xml:lang="ku">Beşa 3ncurses û 3curses</description>
<description xml:lang="lt">Sekcijos 3ncurses ir 3curses</description>
<description xml:lang="lv">Sadaļas 3ncurses un 3curses</description>
<description xml:lang="mai">खंड 3एनकर्सेस आओर 3कर्सेस</description>
<description xml:lang="mg">Fitsinjarana 3ncurses ary 3curses</description>
<description xml:lang="mk">Оддели 3ncurses и 3curses</description>
<description xml:lang="ml">3ncurses, 3curses വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग ३n कर्सेस आनि ३कर्सेस</description>
<description xml:lang="nb">Seksjon 3ncurses og 3curses</description>
<description xml:lang="ne">सेक्सन 3ncurses र 3curses</description>
<description xml:lang="nl">Secties 3ncurses en 3curses</description>
<description xml:lang="nn">Seksjon 3ncurses og 3curses</description>
<description xml:lang="oc">Seccions 3ncurses r 3curses</description>
<description xml:lang="or">ବିଭାଗ 3ncurses ଏବଂ 3curses</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3ncurses ਅਤੇ 3curses</description>
<description xml:lang="pl">Rozdziały 3ncurses i 3curses</description>
<description xml:lang="pt">Secções 3ncurses e 3curses</description>
<description xml:lang="pt_BR">Seções 3ncurses e 3curses</description>
<description xml:lang="ro">Secțiunile 3ncurses și 3 curses</description>
<description xml:lang="ru">Раздел 3ncurses и 3curses</description>
<description xml:lang="sl">Odseki 3ncurses ind 3curses</description>
<description xml:lang="sq">Seksione 3ncurses dhe 3curses</description>
<description xml:lang="sr">Одељци 3ncurses и 3curses</description>
<description xml:lang="sr@latin">Odeljci 3ncurses i 3curses</description>
<description xml:lang="sv">Avsnitten 3ncurses och 3curses</description>
<description xml:lang="ta">பிரிவுகள் 3ncurses மற்றும் 3curses</description>
<description xml:lang="te">3ncurses and 3curses భాగములు</description>
<description xml:lang="th">หมวด 3ncurses และ 3curses</description>
<description xml:lang="tr">Bölüm 3bcurses ve 3curses</description>
<description xml:lang="uk">Розділи 3ncurses та 3curses</description>
<description xml:lang="uz">Boʻlimlar 3ncurses va 3curses</description>
<description xml:lang="uz@cyrillic">Бўлимлар 3ncurses ва 3curses</description>
<description xml:lang="vi">Phần 3ncurses và 3curses</description>
<description xml:lang="wa">Seccions 3ncurses eyet 3curses</description>
<description xml:lang="zh_CN">3ncurses 和 3curses 节</description>
<description xml:lang="zh_HK">第 3ncurses 及 3curses 節</description>
<description xml:lang="zh_TW">第 3ncurses 及 3curses 節</description>
</toc>
<toc sect="3f" id="Man-man3f">
<title>FORTRAN Functions</title>
<title xml:lang="ar">دالّات فورتران</title>
<title xml:lang="as">FORTRAN আপেক্ষক</title>
<title xml:lang="ast">Funciones FORTRAN</title>
<title xml:lang="be">Функцыі FORTRAN</title>
<title xml:lang="be@latin">Funkcyi FORTRAN</title>
<title xml:lang="bg">Функции на FORTRAN</title>
<title xml:lang="bn">FORTRAN ফাংশন</title>
<title xml:lang="bn_IN">FORTRAN ফাংশান</title>
<title xml:lang="br">Arc'hwelioù</title>
<title xml:lang="ca">Funcions del FORTRAN</title>
<title xml:lang="ca@valencia">Funcions del FORTRAN</title>
<title xml:lang="crh">FORTRAN İşlevleri</title>
<title xml:lang="cs">Funkce FORTRAN</title>
<title xml:lang="cy">Ffwythiannau FORTRAN</title>
<title xml:lang="da">FORTRAN-funktioner</title>
<title xml:lang="de">FORTRAN Funktionen</title>
<title xml:lang="dz">ཕོར་ཊེན་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις FORTRAN</title>
<title xml:lang="en_CA">FORTRAN Functions</title>
<title xml:lang="en_GB">FORTRAN Functions</title>
<title xml:lang="es">Funciones FORTRAN</title>
<title xml:lang="et">FORTRAN'i funktsioonid</title>
<title xml:lang="eu">FORTRAN funtzioak</title>
<title xml:lang="fa">توابع FORTRAN</title>
<title xml:lang="fi">FORTRAN-funktiot</title>
<title xml:lang="fr">Fonctions FORTRAN</title>
<title xml:lang="ga">Feidhmeanna FORTRAN</title>
<title xml:lang="gl">Funcións FORTRAN</title>
<title xml:lang="gu">FORTRAN વિધેયો</title>
<title xml:lang="he">פונקציות FORTRAN</title>
<title xml:lang="hi">FORTRAN प्रकार्य</title>
<title xml:lang="hr">Fortran funkcije</title>
<title xml:lang="hu">FORTRAN függvények</title>
<title xml:lang="id">Fungsi FORTRAN</title>
<title xml:lang="it">Funzioni FORTRAN</title>
<title xml:lang="ja">FORTRAN の関数</title>
<title xml:lang="ka">FORTRAN-ფუნქციები</title>
<title xml:lang="kn">FORTRAN ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">포트란 함수</title>
<title xml:lang="ks">फारटरेन कामिह</title>
<title xml:lang="ku">Fonksiyonên FORTRAN</title>
<title xml:lang="ky">ФОРТРАН функциялары</title>
<title xml:lang="lt">FORTRAN funkcijos</title>
<title xml:lang="lv">FORTRAN funkcijas</title>
<title xml:lang="mai">फोट्रान प्रकार्य</title>
<title xml:lang="mg">Asa FORTRAN</title>
<title xml:lang="mk">FORTRAN функции</title>
<title xml:lang="ml">FORTRAN പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">फोरट्रॉन कार्य</title>
<title xml:lang="nb">FORTRAN-funksjoner</title>
<title xml:lang="ne">FORTRAN प्रकार्य</title>
<title xml:lang="nl">FORTRAN-functies</title>
<title xml:lang="nn">FORTRAN-funksjonar</title>
<title xml:lang="oc">Foncions FORTRAN</title>
<title xml:lang="or">FORTRAN ଫଳନ</title>
<title xml:lang="pa">ਫੌਰਟਨ ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje języka Fortran</title>
<title xml:lang="pt">Funções de FORTRAN</title>
<title xml:lang="pt_BR">Funções FORTRAN</title>
<title xml:lang="ro">Funcții FORTRAN</title>
<title xml:lang="ru">Функции FORTRAN</title>
<title xml:lang="sk">Funkcie FORTRAN</title>
<title xml:lang="sl">FORTRAN Funkcije</title>
<title xml:lang="sq">Funksione FORTRAN</title>
<title xml:lang="sr">Фортран функције</title>
<title xml:lang="sr@latin">Fortran funkcije</title>
<title xml:lang="sv">FORTRAN-funktioner</title>
<title xml:lang="ta">போர்ட்ரான் செயல்பாடுகள்</title>
<title xml:lang="te">ఫొర్ట్రాన్ పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชันฟอร์แทรน</title>
<title xml:lang="tr">FORTRAN İşlevleri</title>
<title xml:lang="ug">فۇنكسىيەلىرى FORTRAN</title>
<title xml:lang="uk">Функції FORTRAN</title>
<title xml:lang="uz">FORTRAN funksiyalari</title>
<title xml:lang="uz@cyrillic">FORTRAN функциялари</title>
<title xml:lang="vi">Hàm FORTRAN</title>
<title xml:lang="wa">Fonccions FORTRAN</title>
<title xml:lang="xh">Imifanekiso ye-FORTRAN</title>
<title xml:lang="zh_CN">FORTRAN 函数</title>
<title xml:lang="zh_HK">FORTRAN 函數</title>
<title xml:lang="zh_TW">FORTRAN 函式</title>
<description>Section 3f</description>
<description xml:lang="ar">الفصل 3f</description>
<description xml:lang="as">বিভাগ 3f</description>
<description xml:lang="ast">Seición 3f</description>
<description xml:lang="be">Разьдзел 3f</description>
<description xml:lang="be@latin">Raździeł 3f</description>
<description xml:lang="bg">Раздел 3f</description>
<description xml:lang="bn">বিভাগ 3f</description>
<description xml:lang="bn_IN">বিভাগ 3f</description>
<description xml:lang="ca">Secció 3f</description>
<description xml:lang="ca@valencia">Secció 3f</description>
<description xml:lang="crh">Bölüm 3f</description>
<description xml:lang="cs">Oddíl 3f</description>
<description xml:lang="cy">Adran 3f</description>
<description xml:lang="da">Afsnit 3f</description>
<description xml:lang="de">Abschnitt 3f</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཨེཕ།</description>
<description xml:lang="el">Ενότητα 3f</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3f</description>
<description xml:lang="en_GB">Section 3f</description>
<description xml:lang="es">Sección 3f</description>
<description xml:lang="et">Peatükk 3f</description>
<description xml:lang="eu">3f atala</description>
<description xml:lang="fa">بخش 3f</description>
<description xml:lang="fi">Osa 3f</description>
<description xml:lang="fr">Section 3f</description>
<description xml:lang="ga">Rannán 3f</description>
<description xml:lang="gl">Sección 3f</description>
<description xml:lang="gu">વિભાગ 3f</description>
<description xml:lang="he">חלק 3f</description>
<description xml:lang="hi">खंड 3f</description>
<description xml:lang="hu">3f szakasz</description>
<description xml:lang="id">Bagian 3f</description>
<description xml:lang="it">Sezione 3f</description>
<description xml:lang="ja">セクション 3f</description>
<description xml:lang="ka">სექცია 3f</description>
<description xml:lang="kn">3f ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3f</description>
<description xml:lang="ks">हिय्स: 3f</description>
<description xml:lang="ku">Beşa 3f</description>
<description xml:lang="lt">Sekcija 3f</description>
<description xml:lang="lv">Sadaļa 3f</description>
<description xml:lang="mai">खंड 3f</description>
<description xml:lang="mg">Fitsinjarana 3f</description>
<description xml:lang="mk">Оддел 3f</description>
<description xml:lang="ml">വിഭാഗം - 3f</description>
<description xml:lang="mr">विभाग 3f</description>
<description xml:lang="nb">Seksjon 3f</description>
<description xml:lang="ne">सेक्सन 3f</description>
<description xml:lang="nl">Sectie 3f</description>
<description xml:lang="nn">Seksjon 3f</description>
<description xml:lang="oc">Seccion 3f</description>
<description xml:lang="or">ବିଭାଗ 3f</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3f</description>
<description xml:lang="pl">Rozdział 3f</description>
<description xml:lang="pt">Secção 3f</description>
<description xml:lang="pt_BR">Seção 3f</description>
<description xml:lang="ro">Secțiunea 3f</description>
<description xml:lang="ru">Раздел 3f</description>
<description xml:lang="sl">Odsek 3f</description>
<description xml:lang="sq">Seksion 3f</description>
<description xml:lang="sr">Одељак 3blt</description>
<description xml:lang="sr@latin">Odeljak 3blt</description>
<description xml:lang="sv">Avsnitt 3f</description>
<description xml:lang="ta">பிரிவு 3f</description>
<description xml:lang="te">3f భాగము</description>
<description xml:lang="th">หมวด 3f</description>
<description xml:lang="tr">Bölüm 3f</description>
<description xml:lang="uk">Розділ 3f</description>
<description xml:lang="uz">Boʻlim 3f</description>
<description xml:lang="uz@cyrillic">Бўлим 3f</description>
<description xml:lang="vi">Phần 3f</description>
<description xml:lang="wa">Seccion 3f</description>
<description xml:lang="zh_CN">3f 节</description>
<description xml:lang="zh_HK">第 3f 節</description>
<description xml:lang="zh_TW">第 3f 節</description>
</toc>
<toc sect="3pm 3perl" id="Man-man3pm">
<title>Perl Functions</title>
<title xml:lang="ar">دالّات بيرل</title>
<title xml:lang="as">Perl আপেক্ষক</title>
<title xml:lang="ast">Funciones Perl</title>
<title xml:lang="be">Функцыі Perl</title>
<title xml:lang="be@latin">Funkcyi Perl</title>
<title xml:lang="bg">Функции на Perl</title>
<title xml:lang="bn">Perl ফাংশন</title>
<title xml:lang="bn_IN">Perl ফাংশান</title>
<title xml:lang="br">Arc'hwelioù Perl</title>
<title xml:lang="ca">Funcions del Perl</title>
<title xml:lang="ca@valencia">Funcions del Perl</title>
<title xml:lang="crh">Perl İşlevleri</title>
<title xml:lang="cs">Funkce Perlu</title>
<title xml:lang="cy">Ffwythiannau Perl</title>
<title xml:lang="da">Perl-funktioner</title>
<title xml:lang="de">Perl-Funktionen</title>
<title xml:lang="dz">པརཱལ་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις Perl</title>
<title xml:lang="en@shaw">·𐑐𐑻𐑤 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_CA">Perl Functions</title>
<title xml:lang="en_GB">Perl Functions</title>
<title xml:lang="es">Funciones Perl</title>
<title xml:lang="et">Perli funktsioonid</title>
<title xml:lang="eu">Perl funtzioak</title>
<title xml:lang="fa">توابع پِرل</title>
<title xml:lang="fi">Perl-funktiot</title>
<title xml:lang="fr">Fonctions Perl</title>
<title xml:lang="ga">Feidhmeanna Perl</title>
<title xml:lang="gl">Funcións Perl</title>
<title xml:lang="gu">Perl વિધેયો</title>
<title xml:lang="he">פונקציות Perl</title>
<title xml:lang="hi">पर्ल प्रकार्य</title>
<title xml:lang="hu">Perl függvények</title>
<title xml:lang="id">Fungsi Perl</title>
<title xml:lang="it">Funzioni Perl</title>
<title xml:lang="ja">Perl の関数</title>
<title xml:lang="ka">Perl-ბიბლიოთეკის ფუნქციები</title>
<title xml:lang="kn">ಪರ್ಲ್ ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">Perl 함수</title>
<title xml:lang="ks">पर्ल कामिह्</title>
<title xml:lang="ku">Fonksyionên Perl</title>
<title xml:lang="ky">Perl функциялары</title>
<title xml:lang="lt">Perl funkcijos</title>
<title xml:lang="lv">Perl funkcijas</title>
<title xml:lang="mai">पर्ल प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny Perl</title>
<title xml:lang="mk">Функции за perl</title>
<title xml:lang="ml">Perl പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">पर्ल कार्य</title>
<title xml:lang="nb">Perl-funksjoner</title>
<title xml:lang="ne">पर्ल प्रकार्य</title>
<title xml:lang="nl">Perl-functies</title>
<title xml:lang="nn">Perl-funksjonar</title>
<title xml:lang="oc">Foncions Perl</title>
<title xml:lang="or">Perl ଫଳନ</title>
<title xml:lang="pa">ਪਰਲ ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje języka Perl</title>
<title xml:lang="pt">Funções de Perl</title>
<title xml:lang="pt_BR">Funções Perl</title>
<title xml:lang="ro">Funcții Perl</title>
<title xml:lang="ru">Функции Perl</title>
<title xml:lang="sk">Funkcie jazyka Perl</title>
<title xml:lang="sl">Perl funkcije</title>
<title xml:lang="sq">Funksione Perl</title>
<title xml:lang="sr">Перл функције</title>
<title xml:lang="sr@latin">Perl funkcije</title>
<title xml:lang="sv">Perl-funktioner</title>
<title xml:lang="ta">பெர்ல் செயல்பாடுகள்</title>
<title xml:lang="te">పెర్ల్ పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน Perl</title>
<title xml:lang="tr">Perl İşlevleri</title>
<title xml:lang="ug">فۇنكىسىيەلىرى Perl</title>
<title xml:lang="uk">Функції Perl</title>
<title xml:lang="uz">Perl funksiyalari</title>
<title xml:lang="uz@cyrillic">Perl функциялари</title>
<title xml:lang="vi">Hàm Perl</title>
<title xml:lang="wa">Fonccions perl</title>
<title xml:lang="xh">Imisebenzi ye-Perl</title>
<title xml:lang="zh_CN">Perl 函数</title>
<title xml:lang="zh_HK">Perl 函數</title>
<title xml:lang="zh_TW">Perl 函式</title>
<description>Sections 3pm and 3perl</description>
<description xml:lang="ar">الفصول 3pm و 3perl</description>
<description xml:lang="as">বিভাগ 3pm আৰু 3perl</description>
<description xml:lang="ast">Seiciones 3pm y 3perl</description>
<description xml:lang="be">Разьдзелы 3pm і 3perl</description>
<description xml:lang="be@latin">Raździeły 3pm i 3perl</description>
<description xml:lang="bg">Раздели 3pm и 3perl</description>
<description xml:lang="bn">বিভাগ 3pm ও 3perl</description>
<description xml:lang="bn_IN">বিভাগ 3pm ও 3perl</description>
<description xml:lang="ca">Seccions 3pm i 3perl</description>
<description xml:lang="ca@valencia">Seccions 3pm i 3perl</description>
<description xml:lang="crh">Bölüm 3pm ve 3perl</description>
<description xml:lang="cs">Oddíly 3pm a 3perl</description>
<description xml:lang="cy">Adrannau 3pm a 3perl</description>
<description xml:lang="da">Afsnit 3pm og 3perl</description>
<description xml:lang="de">Abschnitte 3pm und 3perl</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣པི་ཨེམ་དང་ ༣ པརལ།</description>
<description xml:lang="el">Ενότητες 3pm και 3perl</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 3pm 𐑯 3perl</description>
<description xml:lang="en_GB">Sections 3pm and 3perl</description>
<description xml:lang="es">Secciones 3pm y 3perl</description>
<description xml:lang="et">Peatükid 3pm ja 3perl</description>
<description xml:lang="eu">3pm eta 3perl atalak</description>
<description xml:lang="fa">بخشهای 3pm و 3پرل</description>
<description xml:lang="fi">Osat 3pm ja 3perl</description>
<description xml:lang="fr">Sections 3pm et 3perl</description>
<description xml:lang="ga">Rannáin 3pm agus 3perl</description>
<description xml:lang="gl">Seccións 3pm e 3perl</description>
<description xml:lang="gu">વિભાગો 3pm અને 3perl</description>
<description xml:lang="he">חלקים 3pm ו־3perl</description>
<description xml:lang="hi">खंड 3pm और 3पर्ल</description>
<description xml:lang="hu">3pm és 3perl szakaszok</description>
<description xml:lang="id">Bagian 3pm dan 3perl</description>
<description xml:lang="it">Sezioni 3pm e 3perl</description>
<description xml:lang="ja">セクション 3pm と 3perl</description>
<description xml:lang="ka">სექციები 3pm და 3perl</description>
<description xml:lang="kn">3pm ಹಾಗು 3perl ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 3pm 및 3perl</description>
<description xml:lang="ks">हिय्स: 3pm तह् 3perl</description>
<description xml:lang="ku">Beşên 3pm û 3perl</description>
<description xml:lang="lt">Sekcijos 3pm ir 3perl</description>
<description xml:lang="lv">Sadaļas 3pm un 3perl</description>
<description xml:lang="mai">खंड 3pm आओर 3पर्ल</description>
<description xml:lang="mg">Fitsinjarana 3pm ary 3perl</description>
<description xml:lang="mk">Оддели 3pm и 3perl</description>
<description xml:lang="ml">3pm, 3perl വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग ३pm आनि ३perl</description>
<description xml:lang="nb">Seksjon 3pm og 3perl</description>
<description xml:lang="ne">सेक्सन 3pm र 3perl</description>
<description xml:lang="nl">Secties 3pm en 3perl</description>
<description xml:lang="nn">Seksjon 3pm og 3perl</description>
<description xml:lang="oc">Seccions 3pm e 3perl</description>
<description xml:lang="or">ବିଭାଗ 3pm ଏବଂ 3perl</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3pm ਅਤੇ 3perl</description>
<description xml:lang="pl">Rozdziały 3pm i 3perl</description>
<description xml:lang="pt">Secções 3pm e 3perl</description>
<description xml:lang="pt_BR">Seções 3pm e 3perl</description>
<description xml:lang="ro">Secțiunile 3pm și 3perl</description>
<description xml:lang="ru">Раздел 3pm и 3perl</description>
<description xml:lang="sl">Odseki 3pm in 3perl</description>
<description xml:lang="sq">Seksione 3pm dhe 3perl</description>
<description xml:lang="sr">Одељци 3pm и 3perl</description>
<description xml:lang="sr@latin">Odeljci 3pm i 3perl</description>
<description xml:lang="sv">Avsnitten 3pm och 3perl</description>
<description xml:lang="ta">பிரிவுகள் 3pm மற்றும் 3perl</description>
<description xml:lang="te">3pm మరియు 3perl భాగములు</description>
<description xml:lang="th">หมวด 3pm และ 3perl</description>
<description xml:lang="tr">Bölüm 3pm ve 3perl</description>
<description xml:lang="uk">Розділи 3pm та 3perl</description>
<description xml:lang="uz">Boʻlimlar 3pm va 3perl</description>
<description xml:lang="uz@cyrillic">Бўлимлар 3pm ва 3perl</description>
<description xml:lang="vi">Phần 3pm và 3perl</description>
<description xml:lang="wa">Seccions 3pm eyet 3perl</description>
<description xml:lang="zh_CN">3pm 和 3perl 节</description>
<description xml:lang="zh_HK">第 3pm 及 3perl 節</description>
<description xml:lang="zh_TW">第 3pm 及 3perl 節</description>
</toc>
<toc sect="3qt" id="Man-man3qt">
<title>Qt Functions</title>
<title xml:lang="ar">دالّات Qt</title>
<title xml:lang="as">Qt আপেক্ষক</title>
<title xml:lang="ast">Funciones Qt</title>
<title xml:lang="be">Функцыі Qt</title>
<title xml:lang="be@latin">Funkcyi Qt</title>
<title xml:lang="bg">Функции на Qt</title>
<title xml:lang="bn">Qt ফাংশন</title>
<title xml:lang="bn_IN">Qt ফাংশান</title>
<title xml:lang="br">Arc'hwelioù Qt</title>
<title xml:lang="ca">Funcions del Qt</title>
<title xml:lang="ca@valencia">Funcions del Qt</title>
<title xml:lang="crh">Qt İşlevleri</title>
<title xml:lang="cs">Funkce Qt</title>
<title xml:lang="cy">Ffwythiannau Qt</title>
<title xml:lang="da">Qt-funktioner</title>
<title xml:lang="de">Qt-Funktionen</title>
<title xml:lang="dz">ཀིའུ་ཊི་ ལས་འགན་ཚུ།</title>
<title xml:lang="el">Συναρτήσεις Qt</title>
<title xml:lang="en_CA">Qt Functions</title>
<title xml:lang="en_GB">Qt Functions</title>
<title xml:lang="es">Funciones Qt</title>
<title xml:lang="et">Qt funktsioonid</title>
<title xml:lang="eu">QT funtzioak</title>
<title xml:lang="fa">توابع Qt</title>
<title xml:lang="fi">Qt-funktiot</title>
<title xml:lang="fr">Fonctions QT</title>
<title xml:lang="ga">Feidhmeanna Qt</title>
<title xml:lang="gl">Funcións Qt</title>
<title xml:lang="gu">Qt વિધેયો</title>
<title xml:lang="he">פונקציות QT</title>
<title xml:lang="hi">Qt प्रकार्य</title>
<title xml:lang="hu">Qt függvények</title>
<title xml:lang="id">Fungsi Qt</title>
<title xml:lang="it">Funzioni Qt</title>
<title xml:lang="ja">Qt の関数</title>
<title xml:lang="ka">Qt-ბიბლიოთეკის ფუნქციები</title>
<title xml:lang="kn">Qt ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">Qt 함수</title>
<title xml:lang="ks">क्योटी कामिह्</title>
<title xml:lang="ku">Fonksyionên Qt</title>
<title xml:lang="ky">Qt функциялары</title>
<title xml:lang="lt">Qt funkcijos</title>
<title xml:lang="lv">Qt funkcijas</title>
<title xml:lang="mai">Qt प्रकार्य</title>
<title xml:lang="mg">Asa mikasika ny Qt</title>
<title xml:lang="mk">Функции за qt</title>
<title xml:lang="ml">Qt പ്രവര്ത്തനങ്ങള്</title>
<title xml:lang="mr">क्यूटी कार्ये</title>
<title xml:lang="nb">Qt-funksjoner</title>
<title xml:lang="ne">क्युटि प्रकार्य</title>
<title xml:lang="nl">Qt-functies</title>
<title xml:lang="nn">Qt-funksjonar</title>
<title xml:lang="oc">Foncions Qt</title>
<title xml:lang="or">QT ଫଳନ</title>
<title xml:lang="pa">Qt ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje biblioteki Qt</title>
<title xml:lang="pt">Funções de Qt</title>
<title xml:lang="pt_BR">Funções Qt</title>
<title xml:lang="ro">Funcții Qt</title>
<title xml:lang="ru">Функции Qt</title>
<title xml:lang="sk">Funkcie Qt</title>
<title xml:lang="sl">Qt funkcije</title>
<title xml:lang="sq">Funksione Qt</title>
<title xml:lang="sr">Qt функције</title>
<title xml:lang="sr@latin">Qt funkcije</title>
<title xml:lang="sv">Qt-funktioner</title>
<title xml:lang="ta">க்யூடி செயல்பாடுகள்</title>
<title xml:lang="te">Qt పరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน Qt</title>
<title xml:lang="tr">Qt İşlevleri</title>
<title xml:lang="ug">فۇنكىسىيەلىرى Qt</title>
<title xml:lang="uk">Функції Qt</title>
<title xml:lang="uz">Qt funksiyalari</title>
<title xml:lang="uz@cyrillic">Qt функциялари</title>
<title xml:lang="vi">Hàm Qt</title>
<title xml:lang="wa">Fonccions Qt</title>
<title xml:lang="xh">Imisebenzi ye-Qt</title>
<title xml:lang="zh_CN">Qt 函数</title>
<title xml:lang="zh_HK">Qt 函數</title>
<title xml:lang="zh_TW">Qt 函式</title>
<description>Section 3qt</description>
<description xml:lang="ar">الفصل 3qt</description>
<description xml:lang="as">বিভাগ 3qt</description>
<description xml:lang="ast">Seición 3qt</description>
<description xml:lang="be">Разьдзел 3qt</description>
<description xml:lang="be@latin">Raździeł 3qt</description>
<description xml:lang="bg">Раздел 3qt</description>
<description xml:lang="bn">বিভাগ 3qt</description>
<description xml:lang="bn_IN">বিভাগ 3qt</description>
<description xml:lang="ca">Secció 3qt</description>
<description xml:lang="ca@valencia">Secció 3qt</description>
<description xml:lang="crh">Bölüm 3qt</description>
<description xml:lang="cs">Oddíl 3qt</description>
<description xml:lang="cy">Adran 3qt</description>
<description xml:lang="da">Afsnit 3qt</description>
<description xml:lang="de">Abschnitt 3qt</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཀིའུ་ཊི།</description>
<description xml:lang="el">Ενότητα 3qt</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 3qt</description>
<description xml:lang="en_GB">Section 3qt</description>
<description xml:lang="es">Sección 3qt</description>
<description xml:lang="et">Peatükk 3qt</description>
<description xml:lang="eu">3qt atala</description>
<description xml:lang="fa">بخش 3qt</description>
<description xml:lang="fi">Osa 3qt</description>
<description xml:lang="fr">Section 3qt</description>
<description xml:lang="ga">Rannán 3qt</description>
<description xml:lang="gl">Sección 3qt</description>
<description xml:lang="gu">વિભાગ 3qt</description>
<description xml:lang="he">חלק 3qt</description>
<description xml:lang="hi">खंड 3qt</description>
<description xml:lang="hu">3qt szakasz</description>
<description xml:lang="id">Bagian 3qt</description>
<description xml:lang="it">Sezione 3qt</description>
<description xml:lang="ja">セクション 3qt</description>
<description xml:lang="ka">სექცია 3qt</description>
<description xml:lang="kn">3qt ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 3qt</description>
<description xml:lang="ks">हिय्स: 3qt</description>
<description xml:lang="ku">Beşa 3qt</description>
<description xml:lang="lt">Sekcija 3qt</description>
<description xml:lang="lv">Sadaļa 3qt</description>
<description xml:lang="mai">खंड 3qt</description>
<description xml:lang="mg">Fitsinjarana 3qt</description>
<description xml:lang="mk">Оддел 3qt</description>
<description xml:lang="ml">വിഭാഗം - 3qt</description>
<description xml:lang="mr">विभाग 3qt</description>
<description xml:lang="nb">Seksjon 3qt</description>
<description xml:lang="ne">सेक्सन 3qt</description>
<description xml:lang="nl">Sectie 3qt</description>
<description xml:lang="nn">Seksjon 3qt</description>
<description xml:lang="oc">Seccion 3qt</description>
<description xml:lang="or">ବିଭାଗ 3qt</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3qt</description>
<description xml:lang="pl">Rozdział 3qt</description>
<description xml:lang="pt">Secção 3qt</description>
<description xml:lang="pt_BR">Seção 3qt</description>
<description xml:lang="ro">Secțiunea 3tq</description>
<description xml:lang="ru">Раздел 3qt</description>
<description xml:lang="sl">Odsek 3qt</description>
<description xml:lang="sq">Seksion 3qt</description>
<description xml:lang="sr">Одељак 3qt</description>
<description xml:lang="sr@latin">Odeljak 3qt</description>
<description xml:lang="sv">Avsnitt 3qt</description>
<description xml:lang="ta">பிரிவு 3qt</description>
<description xml:lang="te">3qt భాగము</description>
<description xml:lang="th">หมวด 3qt</description>
<description xml:lang="tr">Bölüm 3qt</description>
<description xml:lang="uk">Розділ 3qt</description>
<description xml:lang="uz">Boʻlim 3qt</description>
<description xml:lang="uz@cyrillic">Бўлим 3qt</description>
<description xml:lang="vi">Phần 3qt</description>
<description xml:lang="wa">Seccion 3qt</description>
<description xml:lang="zh_CN">3qt 节</description>
<description xml:lang="zh_HK">第 3qt 節</description>
<description xml:lang="zh_TW">第 3qt 節</description>
</toc>
<toc sect="3x 3X11" id="Man-man3x">
<title>X11 Functions</title>
<title xml:lang="ar">دالّات X11</title>
<title xml:lang="as">X11 আপেক্ষক</title>
<title xml:lang="ast">Funciones X11</title>
<title xml:lang="be">Функцыі X11</title>
<title xml:lang="be@latin">Funkcyi X11</title>
<title xml:lang="bg">Функции на X11</title>
<title xml:lang="bn">X11 ফাংশন</title>
<title xml:lang="bn_IN">X11 ফাংশান</title>
<title xml:lang="br">Arc'hwelioù X11</title>
<title xml:lang="ca">Funcions d'X11</title>
<title xml:lang="ca@valencia">Funcions d'X11</title>
<title xml:lang="crh">X11 İşlevleri</title>
<title xml:lang="cs">Funkce X11</title>
<title xml:lang="cy">Ffwythiannau X11</title>
<title xml:lang="da">X11-funktioner</title>
<title xml:lang="de">X11-Funktionen</title>
<title xml:lang="dz">ཨེགསི་༡༡ ལས་འགན་ཚུ</title>
<title xml:lang="el">Συναρτήσεις Χ11</title>
<title xml:lang="en@shaw">X11 𐑓𐑳𐑙𐑒𐑖𐑩𐑯𐑟</title>
<title xml:lang="en_CA">X11 Functions</title>
<title xml:lang="en_GB">X11 Functions</title>
<title xml:lang="es">Funciones X11</title>
<title xml:lang="et">X11 funktsioonid</title>
<title xml:lang="eu">X11 funtzioak</title>
<title xml:lang="fa">توابع X11</title>
<title xml:lang="fi">X11-funktiot</title>
<title xml:lang="fr">Fonctions X11</title>
<title xml:lang="ga">Feidhmeanna X11</title>
<title xml:lang="gl">Funcións X11</title>
<title xml:lang="gu">X11 વિધેયો</title>
<title xml:lang="he">פונקציות X11</title>
<title xml:lang="hi">X11 प्रकार्य</title>
<title xml:lang="hu">X11 függvények</title>
<title xml:lang="id">Fungsi X11</title>
<title xml:lang="it">Funzioni X11</title>
<title xml:lang="ja">X11 の関数</title>
<title xml:lang="ka">X11 ფუნქციები</title>
<title xml:lang="kn">X11 ಕ್ರಿಯೆಗಳು</title>
<title xml:lang="ko">X11 함수</title>
<title xml:lang="ks">एक्स11</title>
<title xml:lang="ku">Bikêrhatinên X11</title>
<title xml:lang="ky">X11 функциялары</title>
<title xml:lang="lt">X11 funkcijos</title>
<title xml:lang="lv">X11 funkcijas</title>
<title xml:lang="mai">X11 प्रकार्य</title>
<title xml:lang="mg">Asa momba ny X11</title>
<title xml:lang="mk">Функции на X11</title>
<title xml:lang="ml">X11 പ്രവര്ത്തനങ്ങള് (ഫംഗ്ഷനുകള്)</title>
<title xml:lang="mr">X11 फल</title>
<title xml:lang="nb">X11-funksjoner</title>
<title xml:lang="ne">X11 प्रकार्य</title>
<title xml:lang="nl">X11-functies</title>
<title xml:lang="nn">X11-funksjonar</title>
<title xml:lang="oc">Foncions X11</title>
<title xml:lang="or">X11 ଫଳନ</title>
<title xml:lang="pa">X11 ਫੰਕਸ਼ਨ</title>
<title xml:lang="pl">Funkcje X11</title>
<title xml:lang="pt">Funções do X11</title>
<title xml:lang="pt_BR">Funções do X11</title>
<title xml:lang="ro">Funcții X11</title>
<title xml:lang="ru">Функции X11</title>
<title xml:lang="sk">Funkcie X11</title>
<title xml:lang="sl">X11 funkcije</title>
<title xml:lang="sq">Funksione X11</title>
<title xml:lang="sr">Функције Икса</title>
<title xml:lang="sr@latin">Funkcije Iksa</title>
<title xml:lang="sv">X11-funktioner</title>
<title xml:lang="ta">X11 செயல்பாடுகள்</title>
<title xml:lang="te">X11 ప్రరిక్రియలు</title>
<title xml:lang="th">ฟังก์ชัน X11</title>
<title xml:lang="tr">X11 İşlevleri</title>
<title xml:lang="ug">فۇنكسىيەلىرى X11</title>
<title xml:lang="uk">Функції X11</title>
<title xml:lang="uz">X11 funksiyalari</title>
<title xml:lang="uz@cyrillic">X11 функциялари</title>
<title xml:lang="vi">Hàm X11</title>
<title xml:lang="wa">Fonccions X11</title>
<title xml:lang="xh">X11 Imisebenzi</title>
<title xml:lang="zh_CN">X11 函数</title>
<title xml:lang="zh_HK">X11 函數</title>
<title xml:lang="zh_TW">X11 函式</title>
<description>Sections 3x and 3X11</description>
<description xml:lang="ar">الفصول 3x و 3X11</description>
<description xml:lang="as">বিভাগ 3x আৰু 3X11</description>
<description xml:lang="ast">Seiciones 3x y 3X11</description>
<description xml:lang="be">Разьдзелы 3x і 3X11</description>
<description xml:lang="be@latin">Raździeły 3x i 3X11</description>
<description xml:lang="bg">Раздели 3x и 3X11</description>
<description xml:lang="bn">বিভাগ 3x ও 3X11</description>
<description xml:lang="bn_IN">বিভাগ 3x ও 3X11</description>
<description xml:lang="ca">Seccions 3x i 3X11</description>
<description xml:lang="ca@valencia">Seccions 3x i 3X11</description>
<description xml:lang="crh">Bölüm 3x ve 3x11</description>
<description xml:lang="cs">Oddíly 3x a 3X11</description>
<description xml:lang="cy">Adrannau 3x a 3X11</description>
<description xml:lang="da">Afsnit 3x og 3X11</description>
<description xml:lang="de">Abschnitte 3x und 3X11</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༣ཨེགསི་དང་ ༣ཨེགསི་༡༡།</description>
<description xml:lang="el">Ενότητες 3x και 3X11</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 3x 𐑯 3X11</description>
<description xml:lang="en_GB">Sections 3x and 3X11</description>
<description xml:lang="es">Secciones3 y 3X11</description>
<description xml:lang="et">Peatükid 3x ja 3X11</description>
<description xml:lang="eu">3x eta 3X11 atalak</description>
<description xml:lang="fa">بخشهای 3x و 3X11</description>
<description xml:lang="fi">Osat 3x ja 3X11</description>
<description xml:lang="fr">Sections 3x et 3X11</description>
<description xml:lang="ga">Rannáin 3x agus 3X11</description>
<description xml:lang="gl">Seccións 3x e 3X11</description>
<description xml:lang="gu">વિભાગો 3x અને 3X11</description>
<description xml:lang="he">חלקים 3x ו־3X11</description>
<description xml:lang="hi">खंड 3x और 3X11</description>
<description xml:lang="hu">3x és 3X11 szakaszok</description>
<description xml:lang="id">Bagian 3x dan 3X11</description>
<description xml:lang="it">Sezioni 3x e 3X11</description>
<description xml:lang="ja">セクション 3x と 3X11</description>
<description xml:lang="ka">სექციები 3x და 3X11</description>
<description xml:lang="kn">3x ಹಾಗು 3X11 ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 3x 및 3X11</description>
<description xml:lang="ks">हिय्स: 3x तह् 3X11</description>
<description xml:lang="ku">Beşên 3x û 3x11</description>
<description xml:lang="lt">Sekcijos 3x ir 3X11</description>
<description xml:lang="lv">Sadaļas 3x un 3X11</description>
<description xml:lang="mai">खंड 3x आओर 3X11</description>
<description xml:lang="mg">Fitsinjarana 3x ary 3X11</description>
<description xml:lang="mk">Оддели 3x и 3X11</description>
<description xml:lang="ml">3x, 3X11 വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 3x आनि 3x11</description>
<description xml:lang="nb">Seksjon 3x og 3X11</description>
<description xml:lang="ne">सेक्सन 3x र 3X11</description>
<description xml:lang="nl">Secties 3x en 3X11</description>
<description xml:lang="nn">Seksjon 3x og 3X11</description>
<description xml:lang="oc">Seccions 3x e 3X11</description>
<description xml:lang="or">ବିଭାଗ 3x ଏବଂ 3X11</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 3x ਅਤੇ 3X11</description>
<description xml:lang="pl">Rozdziały 3x i 3X11</description>
<description xml:lang="pt">Secções 3x e 3X11</description>
<description xml:lang="pt_BR">Seções 3x e 3X11</description>
<description xml:lang="ro">Secțiunile 3x și 3X11</description>
<description xml:lang="ru">Разделы 3x и 3X11</description>
<description xml:lang="sl">Odseki 3x in 3X11</description>
<description xml:lang="sq">Seksione 3x dhe 3X11</description>
<description xml:lang="sr">Одељци 3x и 3X11</description>
<description xml:lang="sr@latin">Odeljci 3x i 3X11</description>
<description xml:lang="sv">Avsnitten 3x och 3X11</description>
<description xml:lang="ta">பிரிவுகள் 3x மற்றும் 3X11</description>
<description xml:lang="te">3x మరియు 3X11 భాగములు</description>
<description xml:lang="th">หมวด 3x และ 3X11</description>
<description xml:lang="tr">Bölüm 3x ve 3x11</description>
<description xml:lang="uk">Розділи 3x та 3X11</description>
<description xml:lang="uz">Boʻlimlar 3x va 3X11</description>
<description xml:lang="uz@cyrillic">Бўлимлар 3x ва 3X11</description>
<description xml:lang="vi">Phần 3x và 3X11</description>
<description xml:lang="wa">Seccions 3x eyet 3X11</description>
<description xml:lang="zh_CN">3x 和 3X11 节</description>
<description xml:lang="zh_HK">第 3x 及 3X11 節</description>
<description xml:lang="zh_TW">第 3x 及 3X11 節</description>
</toc>
<toc sect="2" id="Man-man2">
<title>System Calls</title>
<title xml:lang="af">Stelselroepe</title>
<title xml:lang="am">System Calls</title>
<title xml:lang="ar">نداءات النظام</title>
<title xml:lang="as">ব্যৱস্থাপ্ৰণালীৰ কল</title>
<title xml:lang="ast">Llamaes al sistema</title>
<title xml:lang="az">Sistem Çağırışları</title>
<title xml:lang="be">Сыстэмныя выклікі</title>
<title xml:lang="be@latin">Systemnyja vykliki</title>
<title xml:lang="bg">Системни извиквания</title>
<title xml:lang="bn">সিস্টেম কল</title>
<title xml:lang="bn_IN">সিস্টেম কল</title>
<title xml:lang="bs">Sistemski pozivi</title>
<title xml:lang="ca">Crides al sistema</title>
<title xml:lang="ca@valencia">Crides al sistema</title>
<title xml:lang="crh">Sistem Çağrıları</title>
<title xml:lang="cs">Systémová volání</title>
<title xml:lang="cy">Galwadau System</title>
<title xml:lang="da">Systemkald</title>
<title xml:lang="de">Systemaufrufe</title>
<title xml:lang="dz">རིམ་ལུགས་འབོད་བརྡ་ཚུ།</title>
<title xml:lang="el">Κλήσεις Συστήματος</title>
<title xml:lang="en@shaw">𐑕𐑦𐑕𐑑𐑩𐑥 𐑒𐑷𐑤𐑟</title>
<title xml:lang="en_CA">System Calls</title>
<title xml:lang="en_GB">System Calls</title>
<title xml:lang="eo">Sistemvokoj</title>
<title xml:lang="es">Llamadas al sistema</title>
<title xml:lang="et">Süsteemipöördused</title>
<title xml:lang="eu">Sistemako deia</title>
<title xml:lang="fa">فراخوانیهای سیستمی</title>
<title xml:lang="fi">Järjestelmäkutsut</title>
<title xml:lang="fr">Appels système</title>
<title xml:lang="ga">Glaonna ar an gCóras</title>
<title xml:lang="gl">Chamadas de sistema</title>
<title xml:lang="gu">સિસ્ટમ કોલ</title>
<title xml:lang="he">קריאות מערכת</title>
<title xml:lang="hi">सिस्टम काल्स</title>
<title xml:lang="hr">Sustavski pozivi</title>
<title xml:lang="hu">Rendszerhívások</title>
<title xml:lang="id">Panggilan Sistem</title>
<title xml:lang="is">System Calls</title>
<title xml:lang="it">Chiamate di sistema</title>
<title xml:lang="ja">システム・コール</title>
<title xml:lang="ka">სისტემური ბრძანებები</title>
<title xml:lang="kn">ಗಣಕದ ಕರೆಗಳು</title>
<title xml:lang="ko">시스템 호출</title>
<title xml:lang="ks">सिस्टम काल्स</title>
<title xml:lang="ku">Gazîkirinên Pergalê</title>
<title xml:lang="ky">Системалык чакыруулар</title>
<title xml:lang="li">Systeemfónksies</title>
<title xml:lang="lt">Sisteminiai šaukiniai</title>
<title xml:lang="lv">Sistēmu izsaukumi</title>
<title xml:lang="mai">सिस्टम कालसभ</title>
<title xml:lang="mk">Системски повици</title>
<title xml:lang="ml">സിസ്റ്റം കോള്സ്</title>
<title xml:lang="mn">Системийн дуудалт</title>
<title xml:lang="mr">सिस्टम काल्स</title>
<title xml:lang="ms">Panggilan Sistem</title>
<title xml:lang="nb">Systemkall</title>
<title xml:lang="nds">Systeemfunkties</title>
<title xml:lang="ne">प्रणाली कल</title>
<title xml:lang="nl">Systeemfuncties</title>
<title xml:lang="nn">Systemkall</title>
<title xml:lang="nso">Go letša ga Tshepedišo</title>
<title xml:lang="or">ତନ୍ତ୍ର ଡାକରା</title>
<title xml:lang="pa">ਸਿਸਟਮ ਕਾਲਜ਼</title>
<title xml:lang="pl">Wywołania systemowe</title>
<title xml:lang="pt">Chamadas de Sistema</title>
<title xml:lang="pt_BR">Chamadas de sistema</title>
<title xml:lang="ro">Apeluri de sistem</title>
<title xml:lang="ru">Системные вызовы</title>
<title xml:lang="sk">Systémové volania</title>
<title xml:lang="sl">Sistemski klici</title>
<title xml:lang="sq">Thirrje të sistemit</title>
<title xml:lang="sr">Системски позиви</title>
<title xml:lang="sr@latin">Sistemski pozivi</title>
<title xml:lang="sv">Systemanrop</title>
<title xml:lang="ta">கணினி அழைப்புகள்</title>
<title xml:lang="te">సిస్టమ్ కాల్స్</title>
<title xml:lang="tg">Бозхониҳои Системавӣ</title>
<title xml:lang="th">ฟังก์ชันเรียกระบบ</title>
<title xml:lang="tr">Sistem Çağrıları</title>
<title xml:lang="ug">سىستېما يۆتكەپ ئىشلىتىشى</title>
<title xml:lang="uk">Системні виклики</title>
<title xml:lang="uz">Tizim chaqiruvlari</title>
<title xml:lang="uz@cyrillic">Тизим чақирувлари</title>
<title xml:lang="vi">Lệnh gọi hệ thống</title>
<title xml:lang="wa">Houcaedjes sistinme</title>
<title xml:lang="xh">Inkqubo Yonxibelelwano</title>
<title xml:lang="zh_CN">系统调用</title>
<title xml:lang="zh_HK">系統函數</title>
<title xml:lang="zh_TW">系統函式</title>
<title xml:lang="zu">Ukushaya kohlelo</title>
<description>Section 2</description>
<description xml:lang="ar">الفصل 2</description>
<description xml:lang="as">বিভাগ 2</description>
<description xml:lang="ast">Seición 2</description>
<description xml:lang="be">Разьдзел 2</description>
<description xml:lang="be@latin">Raździeł 2</description>
<description xml:lang="bg">Раздел 2</description>
<description xml:lang="bn">বিভাগ 2</description>
<description xml:lang="bn_IN">বিভাগ 2</description>
<description xml:lang="ca">Secció 2</description>
<description xml:lang="ca@valencia">Secció 2</description>
<description xml:lang="crh">Bölüm 2</description>
<description xml:lang="cs">Oddíl 2</description>
<description xml:lang="cy">Adran 2</description>
<description xml:lang="da">Afsnit 2</description>
<description xml:lang="de">Abschnitt 2</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༢།</description>
<description xml:lang="el">Ενότητα 2</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 2</description>
<description xml:lang="en_GB">Section 2</description>
<description xml:lang="es">Sección 2</description>
<description xml:lang="et">Peatükk 2</description>
<description xml:lang="eu">2 atala</description>
<description xml:lang="fa">بخش 2</description>
<description xml:lang="fi">Osa 2</description>
<description xml:lang="fr">Section 2</description>
<description xml:lang="ga">Rannán 2</description>
<description xml:lang="gl">Sección 2</description>
<description xml:lang="gu">વિભાગ 2</description>
<description xml:lang="he">חלק 2</description>
<description xml:lang="hi">खंड 2</description>
<description xml:lang="hu">2. szakasz</description>
<description xml:lang="id">Bagian 2</description>
<description xml:lang="it">Sezione 2</description>
<description xml:lang="ja">セクション 2</description>
<description xml:lang="ka">სექცია 2</description>
<description xml:lang="kn">2 ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 2</description>
<description xml:lang="ks">हिय्स: 2</description>
<description xml:lang="ku">Beşa 2</description>
<description xml:lang="lt">Sekcija 2</description>
<description xml:lang="lv">Sadaļa 2</description>
<description xml:lang="mai">खंड 2</description>
<description xml:lang="mg">Fitsinjarana 2</description>
<description xml:lang="mk">Оддел 2</description>
<description xml:lang="ml">വിഭാഗം - 2</description>
<description xml:lang="mr">विभाग 2</description>
<description xml:lang="nb">Seksjon 2</description>
<description xml:lang="ne">सेक्सन २</description>
<description xml:lang="nl">Sectie 2</description>
<description xml:lang="nn">Seksjon 2</description>
<description xml:lang="oc">Seccion 2</description>
<description xml:lang="or">ବିଭାଗ 2</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 2</description>
<description xml:lang="pl">Rozdział 2</description>
<description xml:lang="ps">۲مه برخه</description>
<description xml:lang="pt">Secção 2</description>
<description xml:lang="pt_BR">Seção 2</description>
<description xml:lang="ro">Secțiunea 2</description>
<description xml:lang="ru">Раздел 2</description>
<description xml:lang="sl">Odsek 2</description>
<description xml:lang="sq">Seksion 2</description>
<description xml:lang="sr">Одељак 2</description>
<description xml:lang="sr@latin">Odeljak 2</description>
<description xml:lang="sv">Avsnitt 2</description>
<description xml:lang="ta">பிரிவு 2</description>
<description xml:lang="te">2 భాగము</description>
<description xml:lang="th">หมวด 2</description>
<description xml:lang="tr">Bölüm 2</description>
<description xml:lang="uk">Розділ 2</description>
<description xml:lang="uz">Boʻlim 2</description>
<description xml:lang="uz@cyrillic">Бўлим 2</description>
<description xml:lang="vi">Phần 2</description>
<description xml:lang="wa">Seccion 2</description>
<description xml:lang="zh_CN">2 节</description>
<description xml:lang="zh_HK">第 2 節</description>
<description xml:lang="zh_TW">第 2 節</description>
</toc>
<toc sect="9" id="Man-man9">
<title>Kernel Routines</title>
<title xml:lang="af">Kernroetines</title>
<title xml:lang="am">Kernel Routines</title>
<title xml:lang="ar">روتين النواة</title>
<title xml:lang="as">কাৰ্ণেলৰ ৰুটিন</title>
<title xml:lang="ast">Rutines del núcleu</title>
<title xml:lang="az">Çəyirdək Qaydaları</title>
<title xml:lang="be">Функцыі ядра</title>
<title xml:lang="be@latin">Funkcyi jadra</title>
<title xml:lang="bg">Функции на ядрото</title>
<title xml:lang="bn">কার্নেলের রুটিন</title>
<title xml:lang="bn_IN">কার্নেলের রুটিন</title>
<title xml:lang="bs">Kernel Rutine</title>
<title xml:lang="ca">Rutines del nucli</title>
<title xml:lang="ca@valencia">Rutines del nucli</title>
<title xml:lang="crh">Çekirdek Yordamları</title>
<title xml:lang="cs">Rutiny jádra</title>
<title xml:lang="cy">Ffwythiannau'r Cnewyllyn</title>
<title xml:lang="da">Kernerutiner</title>
<title xml:lang="de">Kernelroutinen</title>
<title xml:lang="dz">ཀར་ནེལ་ རྒྱུན་ལས་ཚུ།</title>
<title xml:lang="el">Ρουτίνες πυρήνα</title>
<title xml:lang="en@shaw">𐑒𐑻𐑯𐑩𐑤 𐑮𐑵𐑑𐑰𐑯𐑟</title>
<title xml:lang="en_CA">Kernel Routines</title>
<title xml:lang="en_GB">Kernel Routines</title>
<title xml:lang="eo">Kernfunkcioj</title>
<title xml:lang="es">Rutinas del núcleo</title>
<title xml:lang="et">Kernelitoimingud</title>
<title xml:lang="eu">Nukleo-errutinak</title>
<title xml:lang="fa">روالهای هسته</title>
<title xml:lang="fi">Kernelrutiinit</title>
<title xml:lang="fr">Routines du noyau</title>
<title xml:lang="ga">Gnáthaimh Eithne</title>
<title xml:lang="gl">Rutinas do núcleo</title>
<title xml:lang="gu">કર્નલની દરવખતની ક્રિયાઓ</title>
<title xml:lang="he">שגרות גרעין</title>
<title xml:lang="hi">कर्नेल रूटीन्स</title>
<title xml:lang="hr">Kernel rutine</title>
<title xml:lang="hu">Rendszermagrutinok</title>
<title xml:lang="id">Rutin Kernel</title>
<title xml:lang="is">Kernel Routines</title>
<title xml:lang="it">Routine del kernel</title>
<title xml:lang="ja">カーネル関数</title>
<title xml:lang="ka">კერნელის რუტინები </title>
<title xml:lang="kn">ಕರ್ನಲ್ ದಿನಚರಿಗಳು</title>
<title xml:lang="ko">커널 루틴</title>
<title xml:lang="ks">कर्नेल रूटीन्स</title>
<title xml:lang="ku">Rûtinên Kernelê</title>
<title xml:lang="ky">Ядро подпрограммалары</title>
<title xml:lang="li">Kernelróttines</title>
<title xml:lang="lt">Branduolio funkcijos</title>
<title xml:lang="lv">Kodola rutīnas</title>
<title xml:lang="mai">कर्नेल रूटिन्स</title>
<title xml:lang="mg">Asa fanaon'ny Ivo</title>
<title xml:lang="mk">Рутини на кернелот</title>
<title xml:lang="ml">കേര്ണല് കാര്യക്രമങ്ങള്</title>
<title xml:lang="mn">Kernel Routines</title>
<title xml:lang="mr">कर्नल</title>
<title xml:lang="ms">Rutun Kernel</title>
<title xml:lang="nb">Kjernerutiner</title>
<title xml:lang="nds">Kernelroutines</title>
<title xml:lang="ne">कर्नेल कार्य तालिका</title>
<title xml:lang="nl">Kernelroutines</title>
<title xml:lang="nn">Kjernerutiner</title>
<title xml:lang="nso">Mesepelo ya Dithapo</title>
<title xml:lang="or">କର୍ଣ୍ଣଲ କାର୍ଯ୍ଯ ପ୍ରଣାଳୀ</title>
<title xml:lang="pa">ਕਰਨਲ ਰੋਟੀਨਜ਼</title>
<title xml:lang="pl">Funkcje jądra</title>
<title xml:lang="pt">Rotinas de Kernel</title>
<title xml:lang="pt_BR">Rotinas do kernel</title>
<title xml:lang="ro">Rutine kernel</title>
<title xml:lang="ru">Функции ядра</title>
<title xml:lang="sk">Podprogramy jadra</title>
<title xml:lang="sl">Funkcije jedra</title>
<title xml:lang="sq">Routin të kernel</title>
<title xml:lang="sr">Потпрограми језгра</title>
<title xml:lang="sr@latin">Potprogrami jezgra</title>
<title xml:lang="sv">Kärnrutiner</title>
<title xml:lang="ta">கெர்னல் வழக்கமான நடைமுறைகள்</title>
<title xml:lang="te">కెర్నల్ రొటీన్స్</title>
<title xml:lang="tg">Амрҳои оддии Ҳаста</title>
<title xml:lang="th">รูทีนเคอร์เนล</title>
<title xml:lang="tr">Çekirdek Yordamları</title>
<title xml:lang="ug">Kernel Routines</title>
<title xml:lang="uk">Робота з ядром</title>
<title xml:lang="vi">Ru-tin nhân</title>
<title xml:lang="wa">Routenes do nawea</title>
<title xml:lang="xh">Indlela zesiqhelo ze-Kernel</title>
<title xml:lang="zh_CN">内核例程</title>
<title xml:lang="zh_HK">核心</title>
<title xml:lang="zh_TW">核心</title>
<title xml:lang="zu">Izindlela zomnyobo</title>
<description>Section 9</description>
<description xml:lang="ar">الفصل 9</description>
<description xml:lang="as">বিভাগ 9</description>
<description xml:lang="ast">Seición 9</description>
<description xml:lang="be">Разьдзел 9</description>
<description xml:lang="be@latin">Raździeł 9</description>
<description xml:lang="bg">Раздел 9</description>
<description xml:lang="bn">বিভাগ 9</description>
<description xml:lang="bn_IN">বিভাগ 9</description>
<description xml:lang="ca">Secció 9</description>
<description xml:lang="ca@valencia">Secció 9</description>
<description xml:lang="crh">Bölüm 9</description>
<description xml:lang="cs">Oddíl 9</description>
<description xml:lang="cy">Adran 9</description>
<description xml:lang="da">Afsnit 9</description>
<description xml:lang="de">Abschnitt 9</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༩།</description>
<description xml:lang="el">Ενότητα 9</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 9</description>
<description xml:lang="en_GB">Section 9</description>
<description xml:lang="es">Sección 9</description>
<description xml:lang="et">Peatükk 9</description>
<description xml:lang="eu">9 atala</description>
<description xml:lang="fa">بخش 9</description>
<description xml:lang="fi">Osa 9</description>
<description xml:lang="fr">Section 9</description>
<description xml:lang="ga">Rannán 9</description>
<description xml:lang="gl">Sección 9</description>
<description xml:lang="gu">વિભાગ 9</description>
<description xml:lang="he">חלק 9</description>
<description xml:lang="hi">खंड 9</description>
<description xml:lang="hu">9. szakasz</description>
<description xml:lang="id">Bagian 9</description>
<description xml:lang="it">Sezione9</description>
<description xml:lang="ja">セクション 9</description>
<description xml:lang="ka">სექცია 9</description>
<description xml:lang="kn">9 ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 9</description>
<description xml:lang="ks">हिय्स: 9</description>
<description xml:lang="ku">Beşa 9</description>
<description xml:lang="lt">Sekcija 9</description>
<description xml:lang="lv">Sadaļa 9</description>
<description xml:lang="mai">खंड 9</description>
<description xml:lang="mg">Fitsinjarana 9</description>
<description xml:lang="mk">Оддел 9</description>
<description xml:lang="ml">വിഭാഗം - 9</description>
<description xml:lang="mr">विभाग 9</description>
<description xml:lang="nb">Seksjon 9</description>
<description xml:lang="ne">सेक्सन ९</description>
<description xml:lang="nl">Sectie 9</description>
<description xml:lang="nn">Seksjon 9</description>
<description xml:lang="oc">Seccion 9</description>
<description xml:lang="or">ବିଭାଗ 9</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 9</description>
<description xml:lang="pl">Rozdział 9</description>
<description xml:lang="ps">۹مه برخه</description>
<description xml:lang="pt">Secção 9</description>
<description xml:lang="pt_BR">Seção 9</description>
<description xml:lang="ro">Secțiunea 9</description>
<description xml:lang="ru">Раздел 9</description>
<description xml:lang="sl">Odsek 9</description>
<description xml:lang="sq">Seksion 9</description>
<description xml:lang="sr">Одељак 9</description>
<description xml:lang="sr@latin">Odeljak 9</description>
<description xml:lang="sv">Avsnitt 9</description>
<description xml:lang="ta"> பிரிவு 9</description>
<description xml:lang="te">9 భాగము</description>
<description xml:lang="th">หมวด 9</description>
<description xml:lang="tr">Bölüm 9</description>
<description xml:lang="uk">Розділ 9</description>
<description xml:lang="uz">Boʻlim 9</description>
<description xml:lang="uz@cyrillic">Бўлим 9</description>
<description xml:lang="vi">Phần 9</description>
<description xml:lang="wa">Seccion 9</description>
<description xml:lang="zh_CN">9 节</description>
<description xml:lang="zh_HK">第 9 節</description>
<description xml:lang="zh_TW">第 9 節</description>
</toc>
</toc>
<toc sect="4" id="Man-man4">
<title>Hardware Devices</title>
<title xml:lang="af">Hardewaretoestelle</title>
<title xml:lang="am">የሀርድዌር ዲቫይሶች</title>
<title xml:lang="ar">أجهزة العتاد</title>
<title xml:lang="as">যান্ত্ৰিক সামগ্ৰী</title>
<title xml:lang="ast">Preseos de Hardware</title>
<title xml:lang="az">Avadanlıq</title>
<title xml:lang="be">Апаратныя сродкі</title>
<title xml:lang="be@latin">Aparatura</title>
<title xml:lang="bg">Хардуерни устройства</title>
<title xml:lang="bn">হার্ডওয়্যার ডিভাইস</title>
<title xml:lang="bn_IN">হার্ডওয়্যার ডিভাইস</title>
<title xml:lang="br">Trobarzhelloù periant</title>
<title xml:lang="bs">Hardverski Uređaji</title>
<title xml:lang="ca">Dispositius de maquinari</title>
<title xml:lang="ca@valencia">Dispositius de maquinari</title>
<title xml:lang="crh">Donanım Aygıtları</title>
<title xml:lang="cs">Hardwarová zařízení</title>
<title xml:lang="cy">Dyfeisiau Caledwedd</title>
<title xml:lang="da">Hardwareenheder</title>
<title xml:lang="de">Hardware-Geräte</title>
<title xml:lang="dz">སྲ་ཆས་ཐབས་འཕྲུལ་ཚུ།</title>
<title xml:lang="el">Συσκευές Υλικού</title>
<title xml:lang="en@shaw">𐑣𐑭𐑮𐑛𐑢𐑧𐑮 𐑛𐑦𐑝𐑲𐑕𐑩𐑟</title>
<title xml:lang="en_CA">Hardware Devices</title>
<title xml:lang="en_GB">Hardware Devices</title>
<title xml:lang="eo">Aparatoj</title>
<title xml:lang="es">Dispositivos de hardware</title>
<title xml:lang="et">Riistvaraseadmed</title>
<title xml:lang="eu">Hardwarearen gailuak</title>
<title xml:lang="fa">دستگاههای سختافزاری</title>
<title xml:lang="fi">Laitteisto</title>
<title xml:lang="fr">Périphériques matériels</title>
<title xml:lang="ga">Gléasanna Crua-Earraí</title>
<title xml:lang="gl">Dispositivos de hardware</title>
<title xml:lang="gu">હાર્ડવેર ઉપકરણો</title>
<title xml:lang="he">התקני חומרה</title>
<title xml:lang="hi">हार्डवेयर उपकरण</title>
<title xml:lang="hr">Hardware uređaji</title>
<title xml:lang="hu">Hardvereszközök</title>
<title xml:lang="id">Perangkat Keras</title>
<title xml:lang="is">Vélbúnaðareiningar</title>
<title xml:lang="it">Periferiche</title>
<title xml:lang="ja">ハードウェアのデバイス</title>
<title xml:lang="ka">აპარატურული მოწყობილობები</title>
<title xml:lang="kn">ಯಂತ್ರಾಂಶ ಸಾಧನಗಳು</title>
<title xml:lang="ko">하드웨어 장치</title>
<title xml:lang="ks">हार्डवेयरुक सामान</title>
<title xml:lang="ku">Cîhazên Reqalavî</title>
<title xml:lang="ky">Техникалык түзүлүштөр</title>
<title xml:lang="li">Hardware-apperetuur</title>
<title xml:lang="lt">Įrenginiai</title>
<title xml:lang="lv">Aparatūras iekārtas</title>
<title xml:lang="mai">हार्डवेयर डिवाइस</title>
<title xml:lang="mg">Periferikam-batan-tsolosaina</title>
<title xml:lang="mk">Хардверски уреди</title>
<title xml:lang="ml">ഹാര്ഡ്വയര് ഡിവൈസുകള്</title>
<title xml:lang="mn">Hardware төхөөрөмж</title>
<title xml:lang="mr">हार्डवेयर उपकरण</title>
<title xml:lang="ms">Peranti Perkakasan</title>
<title xml:lang="nb">Maskinvareenheter</title>
<title xml:lang="nds">Hardware-apparatuur</title>
<title xml:lang="ne">हार्डवयेर यन्त्र</title>
<title xml:lang="nl">Hardware-apparatuur</title>
<title xml:lang="nn">Maskinvareeiningar</title>
<title xml:lang="nso">Didirišwa tša Thata</title>
<title xml:lang="oc">Periferics materials</title>
<title xml:lang="or">ହାର୍ଡୱେର ଯନ୍ତ୍ର</title>
<title xml:lang="pa">ਹਾਰਡਵੇਅਰ ਜੰਤਰ</title>
<title xml:lang="pl">Urządzenia sprzętowe</title>
<title xml:lang="pt">Dispositivos de Hardware</title>
<title xml:lang="pt_BR">Dispositivos de hardware</title>
<title xml:lang="ro">Dispozitive hardware</title>
<title xml:lang="ru">Аппаратные средства</title>
<title xml:lang="sk">Hardvérové zariadenia</title>
<title xml:lang="sl">Strojne naprava</title>
<title xml:lang="sq">Dispozitivë hardware</title>
<title xml:lang="sr">Хардверски уређаји</title>
<title xml:lang="sr@latin">Hardverski uređaji</title>
<title xml:lang="sv">Hårdvaruenheter</title>
<title xml:lang="ta">வன்பொருள் சாதனங்கள்</title>
<title xml:lang="te">హార్డ్వేర్ పరికరాలు</title>
<title xml:lang="tg">Дастгоҳҳои Сахтафзор</title>
<title xml:lang="th">อุปกรณ์ฮาร์ดแวร์</title>
<title xml:lang="tr">Donanım Aygıtları</title>
<title xml:lang="ug">قاتتىق دېتال زاپچاسلىرى</title>
<title xml:lang="uk">Апаратні пристрої</title>
<title xml:lang="vi">Thiết bị phần cứng</title>
<title xml:lang="wa">Éndjins & éndjolreye</title>
<title xml:lang="xh">Izixhobo Zobuxhaka-xhaka Bekhompyutha</title>
<title xml:lang="zh_CN">硬件设备</title>
<title xml:lang="zh_HK">硬件裝置</title>
<title xml:lang="zh_TW">硬體裝置</title>
<title xml:lang="zu">Uzitho zokwakha isiga-nyezi</title>
<description>Section 4</description>
<description xml:lang="ar">الفصل 4</description>
<description xml:lang="as">বিভাগ 4</description>
<description xml:lang="ast">Seición 4</description>
<description xml:lang="be">Разьдзел 4</description>
<description xml:lang="be@latin">Raździeł 4</description>
<description xml:lang="bg">Раздел 4</description>
<description xml:lang="bn">বিভাগ 4</description>
<description xml:lang="bn_IN">বিভাগ 4</description>
<description xml:lang="ca">Secció 4</description>
<description xml:lang="ca@valencia">Secció 4</description>
<description xml:lang="crh">Bölüm 4</description>
<description xml:lang="cs">Oddíl 4</description>
<description xml:lang="cy">Adran 4</description>
<description xml:lang="da">Afsnit 4</description>
<description xml:lang="de">Abschnitt 4</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༤།</description>
<description xml:lang="el">Ενότητα 4</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 4</description>
<description xml:lang="en_GB">Section 4</description>
<description xml:lang="es">Sección 4</description>
<description xml:lang="et">Peatükk 4</description>
<description xml:lang="eu">4 atala</description>
<description xml:lang="fa">بخش 4</description>
<description xml:lang="fi">Osa 4</description>
<description xml:lang="fr">Section 4</description>
<description xml:lang="ga">Rannán 4</description>
<description xml:lang="gl">Sección 4</description>
<description xml:lang="gu">વિભાગ 4</description>
<description xml:lang="he">חלק 4</description>
<description xml:lang="hi">खंड 4</description>
<description xml:lang="hu">4. szakasz</description>
<description xml:lang="id">Bagian 4</description>
<description xml:lang="it">Sezione 4</description>
<description xml:lang="ja">セクション 4</description>
<description xml:lang="ka">სექცია 4</description>
<description xml:lang="kn">4 ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 4</description>
<description xml:lang="ks">हिय्स: 4</description>
<description xml:lang="ku">Beşa 4</description>
<description xml:lang="lt">Sekcija 4</description>
<description xml:lang="lv">Sadaļa 4</description>
<description xml:lang="mai">खंड 4</description>
<description xml:lang="mg">Fitsinjarana 4</description>
<description xml:lang="mk">Оддел 4</description>
<description xml:lang="ml">വിഭാഗം - 4</description>
<description xml:lang="mr">विभाग 4</description>
<description xml:lang="nb">Seksjon 4</description>
<description xml:lang="ne">सेक्सन ४</description>
<description xml:lang="nl">Sectie 4</description>
<description xml:lang="nn">Seksjon 4</description>
<description xml:lang="oc">Seccion 4</description>
<description xml:lang="or">ବିଭାଗ 4</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 4</description>
<description xml:lang="pl">Rozdział 4</description>
<description xml:lang="ps">۴مه برخه</description>
<description xml:lang="pt">Secção 4</description>
<description xml:lang="pt_BR">Seção 4</description>
<description xml:lang="ro">Secțiunea 4</description>
<description xml:lang="ru">Раздел 4</description>
<description xml:lang="sl">Odsek 4</description>
<description xml:lang="sq">Seksion 4</description>
<description xml:lang="sr">Одељак 4</description>
<description xml:lang="sr@latin">Odeljak 4</description>
<description xml:lang="sv">Avsnitt 4</description>
<description xml:lang="ta">பிரிவு 4</description>
<description xml:lang="te">4 భాగము</description>
<description xml:lang="th">หมวด 4</description>
<description xml:lang="tr">Bölüm 4</description>
<description xml:lang="uk">Розділ 4</description>
<description xml:lang="uz">Boʻlim 4</description>
<description xml:lang="uz@cyrillic">Бўлим 4</description>
<description xml:lang="vi">Phần 4</description>
<description xml:lang="wa">Seccion 4</description>
<description xml:lang="zh_CN">4 节</description>
<description xml:lang="zh_HK">第 4 節</description>
<description xml:lang="zh_TW">第 4 節</description>
<toc sect="4x" id="Man-man4x">
<title>X11 Devices</title>
<title xml:lang="ar">أجهزة X11</title>
<title xml:lang="as">X11 যন্ত্ৰ</title>
<title xml:lang="ast">Preseos X11</title>
<title xml:lang="be">Прылады X11</title>
<title xml:lang="be@latin">Pryłady X11</title>
<title xml:lang="bg">Устройства на X11</title>
<title xml:lang="bn">X11 ডিভাইস</title>
<title xml:lang="bn_IN">X11 ডিভাইস</title>
<title xml:lang="br">Trobarzhelloù X11</title>
<title xml:lang="ca">Dispositius d'X11</title>
<title xml:lang="ca@valencia">Dispositius d'X11</title>
<title xml:lang="crh">X11 Aygıtları</title>
<title xml:lang="cs">Zařízení X11</title>
<title xml:lang="cy">Dyfeisiau X11</title>
<title xml:lang="da">X11-enheder</title>
<title xml:lang="de">X11-Gerät</title>
<title xml:lang="dz">ཨེགསི་༡༡ ཐབས་འཕྲུལ་ཚུ།</title>
<title xml:lang="el">Συσκευές X11</title>
<title xml:lang="en@shaw">X11 𐑛𐑦𐑝𐑲𐑕𐑩𐑟</title>
<title xml:lang="en_CA">X11 Devices</title>
<title xml:lang="en_GB">X11 Devices</title>
<title xml:lang="es">Dispositivos X11</title>
<title xml:lang="et">X11 seadmed</title>
<title xml:lang="eu">X11 gailuak</title>
<title xml:lang="fa">دستگاههای X11</title>
<title xml:lang="fi">X11-laitteet</title>
<title xml:lang="fr">Périphériques X11</title>
<title xml:lang="ga">Gléasanna X11</title>
<title xml:lang="gl">Dispositivos X11</title>
<title xml:lang="gu">X11 ઉપકરણો</title>
<title xml:lang="he">התקני X11</title>
<title xml:lang="hi">X11 युक्ति</title>
<title xml:lang="hr">X uređaji</title>
<title xml:lang="hu">X11 eszközök</title>
<title xml:lang="id">Perangkat X11</title>
<title xml:lang="it">Dispositivi X11</title>
<title xml:lang="ja">X11 のデバイス</title>
<title xml:lang="ka">X11 მოწყობილობები</title>
<title xml:lang="kn">X11 ಸಾಧನಗಳು</title>
<title xml:lang="ko">X11 장치</title>
<title xml:lang="ks">एक्स11</title>
<title xml:lang="ku">Cîhazên X11</title>
<title xml:lang="ky">X11 түзүлүштөрү</title>
<title xml:lang="lt">X11 įrenginiai</title>
<title xml:lang="lv">X11 iekārtas</title>
<title xml:lang="mai">X11 डिवाइस</title>
<title xml:lang="mg">Periferika X11</title>
<title xml:lang="mk">X11 уреди</title>
<title xml:lang="ml">X11 ഡിവൈസുകള്</title>
<title xml:lang="mr">X11 डिव्हाईसेस</title>
<title xml:lang="nb">X11-enheter</title>
<title xml:lang="ne">X11 यन्त्र</title>
<title xml:lang="nl">X11-apparaten</title>
<title xml:lang="nn">X11-einingar</title>
<title xml:lang="oc">Periferics X11</title>
<title xml:lang="or">X11 ଉପକରଣ</title>
<title xml:lang="pa">X11 ਜੰਤਰ</title>
<title xml:lang="pl">Urządzenia X11</title>
<title xml:lang="ps">وزلې X۱۱</title>
<title xml:lang="pt">Dispositivos X11</title>
<title xml:lang="pt_BR">Dispositivos do X11</title>
<title xml:lang="ro">Dispozitive X11</title>
<title xml:lang="ru">Устройства X11</title>
<title xml:lang="sk">Zariadenia X11</title>
<title xml:lang="sl">X11 naprave</title>
<title xml:lang="sq">Dispozitivët X11</title>
<title xml:lang="sr">Уређаји Икса</title>
<title xml:lang="sr@latin">Uređaji Iksa</title>
<title xml:lang="sv">X11-enheter</title>
<title xml:lang="ta">X11 சாதனங்கள்</title>
<title xml:lang="te">X11 పరికరాలు</title>
<title xml:lang="th">อุปกรณ์ X11</title>
<title xml:lang="tr">X11 Aygıtları</title>
<title xml:lang="ug">زاپچاسلىرى X11</title>
<title xml:lang="uk">Пристрої X11</title>
<title xml:lang="uz">X11 uskunalari</title>
<title xml:lang="uz@cyrillic">X11 ускуналари</title>
<title xml:lang="vi">Thiết bị X11</title>
<title xml:lang="wa">Éndjins X11</title>
<title xml:lang="xh">X11 Izixhobo</title>
<title xml:lang="zh_CN">X11 设备</title>
<title xml:lang="zh_HK">X11 硬件裝置</title>
<title xml:lang="zh_TW">X11 硬體裝置</title>
<description>Section 4x</description>
<description xml:lang="ar">الفصل 4x</description>
<description xml:lang="as">বিভাগ 4x</description>
<description xml:lang="ast">Seición 4x</description>
<description xml:lang="be">Разьдзел 4x</description>
<description xml:lang="be@latin">Raździeł 4x</description>
<description xml:lang="bg">Раздел 4x</description>
<description xml:lang="bn">বিভাগ 4x</description>
<description xml:lang="bn_IN">বিভাগ 4x</description>
<description xml:lang="ca">Secció 4x</description>
<description xml:lang="ca@valencia">Secció 4x</description>
<description xml:lang="crh">Bölüm 4x</description>
<description xml:lang="cs">Oddíl 4x</description>
<description xml:lang="cy">Adran 4x</description>
<description xml:lang="da">Afsnit 4x</description>
<description xml:lang="de">Abschnitt 4x</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༤ཨེགསི།</description>
<description xml:lang="el">Ενότητα 4x</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 4x</description>
<description xml:lang="en_GB">Section 4x</description>
<description xml:lang="es">Sección 4x</description>
<description xml:lang="et">Peatükk 4x</description>
<description xml:lang="eu">4x atala</description>
<description xml:lang="fa">بخش 4x</description>
<description xml:lang="fi">Osa 4x</description>
<description xml:lang="fr">Section 4x</description>
<description xml:lang="ga">Rannán 4x</description>
<description xml:lang="gl">Sección 4x</description>
<description xml:lang="gu">વિભાગ 4x</description>
<description xml:lang="he">חלק 4x</description>
<description xml:lang="hi">खडं 4x</description>
<description xml:lang="hu">4x szakasz</description>
<description xml:lang="id">Bagian 4x</description>
<description xml:lang="it">Sezione 4x</description>
<description xml:lang="ja">セクション 4x</description>
<description xml:lang="ka">სექცია 4x</description>
<description xml:lang="kn">4x ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 4x</description>
<description xml:lang="ks">हिय्स: 4x</description>
<description xml:lang="ku">Beşa 4x</description>
<description xml:lang="lt">Sekcija 4x</description>
<description xml:lang="lv">Sadaļa 4x</description>
<description xml:lang="mai">खंड 4x</description>
<description xml:lang="mg">Fitsinjarana 4x</description>
<description xml:lang="mk">Оддел 4x</description>
<description xml:lang="ml">വിഭാഗം - 4x</description>
<description xml:lang="mr">विभाग 4x</description>
<description xml:lang="nb">Seksjon 4x</description>
<description xml:lang="ne">सेक्सन 4x</description>
<description xml:lang="nl">Sectie 4x</description>
<description xml:lang="nn">Seksjon 4x</description>
<description xml:lang="oc">Seccion 4x</description>
<description xml:lang="or">ବିଭାଗ 4x</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 4x</description>
<description xml:lang="pl">Rozdział 4x</description>
<description xml:lang="pt">Secção 4x</description>
<description xml:lang="pt_BR">Seção 4x</description>
<description xml:lang="ro">Secțiunea 4x</description>
<description xml:lang="ru">Раздел 4x</description>
<description xml:lang="sl">Odsek 4x</description>
<description xml:lang="sq">Seksion 4x</description>
<description xml:lang="sr">Одељак 4x</description>
<description xml:lang="sr@latin">Odeljak 4x</description>
<description xml:lang="sv">Avsnitt 4x</description>
<description xml:lang="ta">பிரிவு 4x</description>
<description xml:lang="te">4x భాగము</description>
<description xml:lang="th">หมวด 4x</description>
<description xml:lang="tr">Bölüm 4x</description>
<description xml:lang="uk">Розділ 4x</description>
<description xml:lang="uz">Boʻlim 4x</description>
<description xml:lang="uz@cyrillic">Бўлим 4x</description>
<description xml:lang="vi">Phần 4x</description>
<description xml:lang="wa">Seccion 4x</description>
<description xml:lang="zh_CN">4x 节</description>
<description xml:lang="zh_HK">第 4x 節</description>
<description xml:lang="zh_TW">第 4x 節</description>
</toc>
</toc>
<toc sect="5 5snmp" id="Man-man5">
<title>Configuration Files</title>
<title xml:lang="af">Opstellingslêers</title>
<title xml:lang="am">የፋይሎች አቀማመጥ</title>
<title xml:lang="ar">ملفّات الإعدادات</title>
<title xml:lang="as">বিন্যাস নথিপত্ৰ</title>
<title xml:lang="ast">Ficheros de configuración</title>
<title xml:lang="az">Qurğu Faylları</title>
<title xml:lang="be">Канфігурацыйныя файлы</title>
<title xml:lang="be@latin">Kanfihuracyjnyja fajły</title>
<title xml:lang="bg">Конфигурационни файлове</title>
<title xml:lang="bn">কনফিগারেশন ফাইল</title>
<title xml:lang="bn_IN">কনফিগারেশন ফাইল</title>
<title xml:lang="br">Restroù kefluniadur</title>
<title xml:lang="bs">Konfiguracijske Datoteke</title>
<title xml:lang="ca">Fitxers de configuració</title>
<title xml:lang="ca@valencia">Fitxers de configuració</title>
<title xml:lang="crh">Yapılandırma Dosyaları</title>
<title xml:lang="cs">Soubory s nastavením</title>
<title xml:lang="cy">Ffeiliau Cyfluniad</title>
<title xml:lang="da">Konfigurationsfiler</title>
<title xml:lang="de">Konfigurationsdateien</title>
<title xml:lang="dz">རིམ་སྒྲིག་ཡིག་སྣོད་ཚུ།</title>
<title xml:lang="el">Αρχεία Ρυθμίσεων</title>
<title xml:lang="en@shaw">𐑒𐑩𐑯𐑓𐑦𐑜𐑘𐑼𐑱𐑖𐑩𐑯 𐑓𐑲𐑤𐑟</title>
<title xml:lang="en_CA">Configuration Files</title>
<title xml:lang="en_GB">Configuration Files</title>
<title xml:lang="eo">Agordodosieroj</title>
<title xml:lang="es">Archivos de configuración</title>
<title xml:lang="et">Seadistusfailid</title>
<title xml:lang="eu">Konfigurazio-fitxategiak</title>
<title xml:lang="fa">پروندههای پیکربندی</title>
<title xml:lang="fi">Asetustiedostot</title>
<title xml:lang="fr">Fichiers de configuration</title>
<title xml:lang="ga">Comhaid Cumraíochta</title>
<title xml:lang="gl">Ficheiros de configuración</title>
<title xml:lang="gu">રુપરેખાંકન માટેની ફાઇલો</title>
<title xml:lang="he">קבצי הגדרות</title>
<title xml:lang="hi">विन्यास फ़ाइलें</title>
<title xml:lang="hr">Datoteke podešavanja</title>
<title xml:lang="hu">Konfigurációs fájlok</title>
<title xml:lang="id">Berkas Konfigurasi</title>
<title xml:lang="is">Stillingarskrár</title>
<title xml:lang="it">File di configurazione</title>
<title xml:lang="ja">設定ファイル</title>
<title xml:lang="ka">კონფიგურაციის ფაილები</title>
<title xml:lang="kn">ಕಡತಗಳನ್ನು ಸಂರಚಿಸು</title>
<title xml:lang="ko">설정 파일</title>
<title xml:lang="ks">डालन वाजिह फ़ाइल:</title>
<title xml:lang="ku">Pelên Veavakirinê</title>
<title xml:lang="ky">Конфигурациялык файлдар</title>
<title xml:lang="li">Kóngfiggerasiebesjtenj</title>
<title xml:lang="lt">Nustatymų failai</title>
<title xml:lang="lv">Konfigurācijas faili</title>
<title xml:lang="mai">बिन्यास फाइल</title>
<title xml:lang="mg">Rakitry ny fikirakirana</title>
<title xml:lang="mk">Конфигурациски датотеки</title>
<title xml:lang="ml">ക്രമീകരണ ഫയലുകള്</title>
<title xml:lang="mn">Тохируулгын файлууд</title>
<title xml:lang="mr">संयोजना फाइल</title>
<title xml:lang="ms">Fail Konfigurasi</title>
<title xml:lang="nb">Konfigurasjonsfiler</title>
<title xml:lang="nds">Konfiguratiebestanden</title>
<title xml:lang="ne">कन्फिगरेसन फाइल</title>
<title xml:lang="nl">Configuratiebestanden</title>
<title xml:lang="nn">Oppsettfiler</title>
<title xml:lang="nso">Difaele tša go Fetola Sebopego</title>
<title xml:lang="oc">Fichièrs de configuracion</title>
<title xml:lang="or">ବିନ୍ଯାସ ଫାଇଲ</title>
<title xml:lang="pa">ਸੰਰਚਨਾ ਫਾਇਲਾਂ</title>
<title xml:lang="pl">Pliki konfiguracyjne</title>
<title xml:lang="ps">د سازونې دوتنې</title>
<title xml:lang="pt">Ficheiros de Configuração</title>
<title xml:lang="pt_BR">Arquivos de configuração</title>
<title xml:lang="ro">Fișiere de configurare</title>
<title xml:lang="ru">Конфигурационные файлы</title>
<title xml:lang="sk">Konfiguračné súbory</title>
<title xml:lang="sl">Nastavitvene datoteke</title>
<title xml:lang="sq">File e konfigurimit</title>
<title xml:lang="sr">Датотеке са подешавањима</title>
<title xml:lang="sr@latin">Datoteke sa podešavanjima</title>
<title xml:lang="sv">Konfigurationsfiler</title>
<title xml:lang="ta">வடிவமைப்பு கோப்புகள்</title>
<title xml:lang="te">రూపకరణ దస్త్రాలు</title>
<title xml:lang="tg">Файлҳои Батанзимдарорӣ</title>
<title xml:lang="th">แฟ้มค่าตั้ง</title>
<title xml:lang="tr">Yapılandırma Dosyaları</title>
<title xml:lang="ug">قۇرۇلما ھۆججەتلىرى</title>
<title xml:lang="uk">Конфігураційні файли</title>
<title xml:lang="uz">Moslama fayllari</title>
<title xml:lang="uz@cyrillic">Мослама файллари</title>
<title xml:lang="vi">Tập tin cấu hình</title>
<title xml:lang="wa">Fitchîs d' apontiaedje</title>
<title xml:lang="xh">Iifayili Zokumiselwa Kwenkqubo Yekhompyutha</title>
<title xml:lang="zh_CN">配置文件</title>
<title xml:lang="zh_HK">設定檔案</title>
<title xml:lang="zh_TW">設定檔案</title>
<title xml:lang="zu">Ukumiswa kohele</title>
<description>Section 5</description>
<description xml:lang="ar">الفصل 5</description>
<description xml:lang="as">বিভাগ 5</description>
<description xml:lang="ast">Seición 5</description>
<description xml:lang="be">Разьдзел 5</description>
<description xml:lang="be@latin">Raździeł 5</description>
<description xml:lang="bg">Раздел 5</description>
<description xml:lang="bn">বিভাগ 5</description>
<description xml:lang="bn_IN">বিভাগ 5</description>
<description xml:lang="ca">Secció 5</description>
<description xml:lang="ca@valencia">Secció 5</description>
<description xml:lang="crh">Bölüm 5</description>
<description xml:lang="cs">Oddíl 5</description>
<description xml:lang="cy">Adran 5</description>
<description xml:lang="da">Afsnit 5</description>
<description xml:lang="de">Abschnitt 5</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༥།</description>
<description xml:lang="el">Ενότητα 5</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 5</description>
<description xml:lang="en_GB">Section 5</description>
<description xml:lang="es">Sección 5</description>
<description xml:lang="et">Peatükk 5</description>
<description xml:lang="eu">5 atala</description>
<description xml:lang="fa">بخش 5</description>
<description xml:lang="fi">Osa 5</description>
<description xml:lang="fr">Section 5</description>
<description xml:lang="ga">Rannán 5</description>
<description xml:lang="gl">Sección 5</description>
<description xml:lang="gu">વિભાગ 5</description>
<description xml:lang="he">חלק 5</description>
<description xml:lang="hi">खंड 5</description>
<description xml:lang="hu">5. szakasz</description>
<description xml:lang="id">Bagian 5</description>
<description xml:lang="it">Sezione 5</description>
<description xml:lang="ja">セクション 5</description>
<description xml:lang="ka">სექცია 5</description>
<description xml:lang="kn">5 ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 5</description>
<description xml:lang="ks">हिय्स: 5</description>
<description xml:lang="ku">Beşa 5</description>
<description xml:lang="lt">Sekcija 5</description>
<description xml:lang="lv">Sadaļa 5</description>
<description xml:lang="mai">खंड 5</description>
<description xml:lang="mg">Fitsinjarana 5</description>
<description xml:lang="mk">Оддел 5</description>
<description xml:lang="ml">വിഭാഗം - 5</description>
<description xml:lang="mr">विभाग 5</description>
<description xml:lang="nb">Seksjon 5</description>
<description xml:lang="ne">सेक्सन ५</description>
<description xml:lang="nl">Sectie 5</description>
<description xml:lang="nn">Seksjon 5</description>
<description xml:lang="oc">Seccion 5</description>
<description xml:lang="or">ବିଭାଗ 5</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 5</description>
<description xml:lang="pl">Rozdział 5</description>
<description xml:lang="ps">۵مه برخه</description>
<description xml:lang="pt">Secção 5</description>
<description xml:lang="pt_BR">Seção 5</description>
<description xml:lang="ro">Secțiunea 5</description>
<description xml:lang="ru">Раздел 5</description>
<description xml:lang="sl">Odsek 5</description>
<description xml:lang="sq">Seksion 5</description>
<description xml:lang="sr">Одељак 5</description>
<description xml:lang="sr@latin">Odeljak 5</description>
<description xml:lang="sv">Avsnitt 5</description>
<description xml:lang="ta">பிரிவு 5</description>
<description xml:lang="te">5 భాగము</description>
<description xml:lang="th">หมวด 5</description>
<description xml:lang="tr">Bölüm 5</description>
<description xml:lang="uk">Розділ 5</description>
<description xml:lang="uz">Boʻlim 5</description>
<description xml:lang="uz@cyrillic">Бўлим 5</description>
<description xml:lang="vi">Phần 5</description>
<description xml:lang="wa">Seccion 5</description>
<description xml:lang="zh_CN">5 节</description>
<description xml:lang="zh_HK">第 5 節</description>
<description xml:lang="zh_TW">第 5 節</description>
<toc sect="5x" id="Man-man5x">
<title>X11 Configuration</title>
<title xml:lang="ar">إعدادات X11</title>
<title xml:lang="as">X11 বিন্যাস</title>
<title xml:lang="ast">Configuración X11</title>
<title xml:lang="be">Файлы наладак для X11</title>
<title xml:lang="be@latin">Kanfihuracyja X11</title>
<title xml:lang="bg">Настройка на X11</title>
<title xml:lang="bn">X11 কনফিগারেশন</title>
<title xml:lang="bn_IN">X11 কনফিগারেশন</title>
<title xml:lang="br">Kefluniadur X11</title>
<title xml:lang="ca">Configuració d'X11</title>
<title xml:lang="ca@valencia">Configuració d'X11</title>
<title xml:lang="crh">X11 Yapılandırması</title>
<title xml:lang="cs">Nastavení X11</title>
<title xml:lang="cy">Cyfluniad X11</title>
<title xml:lang="da">X11-opsætning</title>
<title xml:lang="de">X11-Konfiguration</title>
<title xml:lang="dz">ཨེགསི་༡༡ རིམ་སྒྲིག</title>
<title xml:lang="el">Ρυθμίσεις X11</title>
<title xml:lang="en@shaw">X11 𐑒𐑩𐑯𐑓𐑦𐑜𐑘𐑼𐑱𐑖𐑩𐑯</title>
<title xml:lang="en_CA">X11 Configuration</title>
<title xml:lang="en_GB">X11 Configuration</title>
<title xml:lang="es">Configuración X11</title>
<title xml:lang="et">X11 sätted</title>
<title xml:lang="eu">X11 konfigurazioa</title>
<title xml:lang="fa">پیکربندی X11</title>
<title xml:lang="fi">X11-asetukset</title>
<title xml:lang="fr">Configuration X11</title>
<title xml:lang="ga">Cumraíocht X11</title>
<title xml:lang="gl">Configuración X11</title>
<title xml:lang="gu">X11 રૂપરેખાંકન</title>
<title xml:lang="he">קבצי הגדרות של X11</title>
<title xml:lang="hi">X11 कॉन्फ़िगरेशन</title>
<title xml:lang="hu">X11 beállítása</title>
<title xml:lang="id">Konfigurasi X11</title>
<title xml:lang="it">Configurazione X11</title>
<title xml:lang="ja">X11 の設定</title>
<title xml:lang="ka">X11 კონფიგურაციის ფაილები</title>
<title xml:lang="kn">X11 ಸಂರಚನೆ</title>
<title xml:lang="ko">X11 설정</title>
<title xml:lang="ks">एक्स11</title>
<title xml:lang="ku">Mîhengên X11</title>
<title xml:lang="ky">X11 конфигурациясы</title>
<title xml:lang="lt">X11 konfigūracija</title>
<title xml:lang="lv">X11 konfigurācija</title>
<title xml:lang="mai">X11 बिन्यास</title>
<title xml:lang="mg">Kirakiran'ny X11</title>
<title xml:lang="mk">Конфигурација на X11</title>
<title xml:lang="ml">X11 സജ്ജീകരണം</title>
<title xml:lang="mr">X11 संयोजन</title>
<title xml:lang="nb">X11-konfigurasjon</title>
<title xml:lang="ne">X11 कन्फिगरेसन</title>
<title xml:lang="nl">X11-configuratie</title>
<title xml:lang="nn">Oppsettfiler for X11</title>
<title xml:lang="oc">Configuracion X11</title>
<title xml:lang="or">ଏକ୍ସ11 ବିନ୍ଯାସ</title>
<title xml:lang="pa">X11 ਸੰਰਚਨਾ</title>
<title xml:lang="pl">Konfiguracja X11</title>
<title xml:lang="ps">سازونه X۱۱</title>
<title xml:lang="pt">Configuração do X11</title>
<title xml:lang="pt_BR">Configuração do X11</title>
<title xml:lang="ro">Configurare X11</title>
<title xml:lang="ru">Настройка X11</title>
<title xml:lang="sk">konfigurácia X11</title>
<title xml:lang="sl">X11 nastavitve</title>
<title xml:lang="sq">Konfigurimi X11</title>
<title xml:lang="sr">Подешавање Икса</title>
<title xml:lang="sr@latin">Podešavanje Iksa</title>
<title xml:lang="sv">Konfiguration av X11</title>
<title xml:lang="ta">X11 கட்டமைப்பு</title>
<title xml:lang="te">X11 రూపకరణ</title>
<title xml:lang="th">การตั้งค่า X11</title>
<title xml:lang="tr">X11 Yapılandırması</title>
<title xml:lang="ug">قۇرۇلمىسى X11 </title>
<title xml:lang="uk">Налаштовування X11</title>
<title xml:lang="uz">X11 moslamasi</title>
<title xml:lang="uz@cyrillic">X11 мосламаси</title>
<title xml:lang="vi">Cấu hình X11</title>
<title xml:lang="wa">Apontiaedje X11</title>
<title xml:lang="xh">X11 Ukumiselwa kwenkqubo yekhompyutha</title>
<title xml:lang="zh_CN">X11 配置</title>
<title xml:lang="zh_HK">X11 設定</title>
<title xml:lang="zh_TW">X11 設定</title>
<description>Section 5x</description>
<description xml:lang="ar">الفصل 5x</description>
<description xml:lang="as">বিভাগ 5x</description>
<description xml:lang="ast">Seición 5x</description>
<description xml:lang="be">Разьдзел 5x</description>
<description xml:lang="be@latin">Raździeł 5x</description>
<description xml:lang="bg">Раздел 5x</description>
<description xml:lang="bn">বিভাগ 5x</description>
<description xml:lang="bn_IN">বিভাগ 5x</description>
<description xml:lang="ca">Secció 5x</description>
<description xml:lang="ca@valencia">Secció 5x</description>
<description xml:lang="crh">Bölüm 5x</description>
<description xml:lang="cs">Oddíl 5x</description>
<description xml:lang="cy">Adran 5x</description>
<description xml:lang="da">Afsnit 5x</description>
<description xml:lang="de">Abschnitt 5x</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༥ཨེགསི།</description>
<description xml:lang="el">Ενότητα 5x</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 5x</description>
<description xml:lang="en_GB">Section 5x</description>
<description xml:lang="es">Sección 5x</description>
<description xml:lang="et">Peatükk 5x</description>
<description xml:lang="eu">5x atala</description>
<description xml:lang="fa">بخش 5x</description>
<description xml:lang="fi">Osa 5x</description>
<description xml:lang="fr">Section 5x</description>
<description xml:lang="ga">Rannán 5x</description>
<description xml:lang="gl">Sección 5x</description>
<description xml:lang="gu">વિભાગ 5x</description>
<description xml:lang="he">חלק 5x</description>
<description xml:lang="hi">खंड 5x</description>
<description xml:lang="hu">5x. szakasz</description>
<description xml:lang="id">Bagian 5x</description>
<description xml:lang="it">Sezione 5x</description>
<description xml:lang="ja">セクション 5x</description>
<description xml:lang="ka">სექცია 5x</description>
<description xml:lang="kn">5x ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 5x</description>
<description xml:lang="ks">हिय्स: 5x</description>
<description xml:lang="ku">Beşa 5x</description>
<description xml:lang="lt">Sekcija 5x</description>
<description xml:lang="lv">Sadaļa 5x</description>
<description xml:lang="mai">खंड 5x</description>
<description xml:lang="mg">Fitsinjarana 5x</description>
<description xml:lang="mk">Оддел 5x</description>
<description xml:lang="ml">വിഭാഗം - 5x</description>
<description xml:lang="mr">विभाग 5x</description>
<description xml:lang="nb">Seksjon 5x</description>
<description xml:lang="ne">सेक्सन 5x</description>
<description xml:lang="nl">Sectie 5x</description>
<description xml:lang="nn">Seksjon 5x</description>
<description xml:lang="oc">Seccion 5x</description>
<description xml:lang="or">ବିଭାଗ 5x</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 5x</description>
<description xml:lang="pl">Rozdział 5x</description>
<description xml:lang="pt">Secção 5x</description>
<description xml:lang="pt_BR">Seção 5x</description>
<description xml:lang="ro">Secțiunea 5x</description>
<description xml:lang="ru">Раздел 5x</description>
<description xml:lang="sl">Odsek 5x</description>
<description xml:lang="sq">Seksion 5x</description>
<description xml:lang="sr">Одељак 5x</description>
<description xml:lang="sr@latin">Odeljak 5x</description>
<description xml:lang="sv">Avsnitt 5x</description>
<description xml:lang="ta">பிரிவு 5x</description>
<description xml:lang="te">5x భాగము</description>
<description xml:lang="th">หมวด 5x</description>
<description xml:lang="tr">Bölüm 5x</description>
<description xml:lang="uk">Розділ 5x</description>
<description xml:lang="uz">Boʻlim 5x</description>
<description xml:lang="uz@cyrillic">Бўлим 5x</description>
<description xml:lang="vi">Phần 5x</description>
<description xml:lang="wa">Seccion 5x</description>
<description xml:lang="zh_CN">5x 节</description>
<description xml:lang="zh_HK">第 5x 節</description>
<description xml:lang="zh_TW">第 5x 節</description>
</toc>
<toc sect="5ssl" id="Man-man5ssl">
<title>OpenSSL Configuration</title>
<title xml:lang="ar">إعدادات OpenSSL</title>
<title xml:lang="as">OpenSSL বিন্যাস</title>
<title xml:lang="ast">Configuración OpenSSL</title>
<title xml:lang="be">Наладка OpenSSL</title>
<title xml:lang="be@latin">Kanfihuracyja OpenSSL</title>
<title xml:lang="bg">Настройка на OpenSSL</title>
<title xml:lang="bn">OpenSSL কনফিগারেশন</title>
<title xml:lang="bn_IN">OpenSSL কনফিগারেশন</title>
<title xml:lang="br">Kefluniadur OpenSSL</title>
<title xml:lang="ca">Configuració de l'OpenSSL</title>
<title xml:lang="ca@valencia">Configuració de l'OpenSSL</title>
<title xml:lang="crh">OpenSSL Yapılandırması</title>
<title xml:lang="cs">Nastavení OpenSSL</title>
<title xml:lang="cy">Cyfluniad OpenSSL</title>
<title xml:lang="da">OpenSSL-opsætning</title>
<title xml:lang="de">OpenSSL-Konfiguration</title>
<title xml:lang="dz">ཨོ་པཱན་ཨེསི་ཨེསི་ཨེལ་ རིམ་སྒྲིག</title>
<title xml:lang="el">Ρυθμίσεις OpenSSL</title>
<title xml:lang="en_CA">OpenSSL Configuration</title>
<title xml:lang="en_GB">OpenSSL Configuration</title>
<title xml:lang="es">Configuración OpenSSL</title>
<title xml:lang="et">OpenSSL'i sätted</title>
<title xml:lang="eu">OpenSSL konfigurazioa</title>
<title xml:lang="fa">پیکربندی OpenSSL</title>
<title xml:lang="fi">OpenSSL-asetukset</title>
<title xml:lang="fr">Configuration OpenSSL</title>
<title xml:lang="ga">Cumraíocht OpenSSL</title>
<title xml:lang="gl">Configuración OpenSSL</title>
<title xml:lang="gu">OpenSSL રૂપરેખાંકન</title>
<title xml:lang="he">קבצי הגדרות של OpenSSL</title>
<title xml:lang="hi">OpenSSL विन्यास</title>
<title xml:lang="hu">OpenSSL beállítása</title>
<title xml:lang="id">Konfigurasi OpenSSL</title>
<title xml:lang="it">Configurazione OpenSSL</title>
<title xml:lang="ja">OpenSSL の設定</title>
<title xml:lang="ka">OpenSSL·კონფიგურაციის ფაილები</title>
<title xml:lang="kn">OpenSSL ಸಂರಚನೆ</title>
<title xml:lang="ko">OpenSSL 설정</title>
<title xml:lang="ks">औपन एस एस एल डालून</title>
<title xml:lang="ku">Veavakirina OpenSSL</title>
<title xml:lang="ky">OpenSSL конфигурациялоо</title>
<title xml:lang="lt">OpenSSL konfigūracija</title>
<title xml:lang="lv">OpenSSL konfigurācija</title>
<title xml:lang="mai">OpenSSL बिन्यास</title>
<title xml:lang="mg">Kirakiran'ny OpenSSL</title>
<title xml:lang="mk">Конфигурација на OpenSSL</title>
<title xml:lang="ml">OpenSSL സജ്ജീകരണം</title>
<title xml:lang="mr">OpenSSL संयोजना</title>
<title xml:lang="nb">OpenSSL-konfigurasjon</title>
<title xml:lang="ne">ओपनएसएसएल कन्फिगरेसन</title>
<title xml:lang="nl">OpenSSL-configuratie</title>
<title xml:lang="nn">Oppsett av OpenSSL</title>
<title xml:lang="oc">Configuracion OpenSSL</title>
<title xml:lang="or">OpenSSL ବିନ୍ଯାସ</title>
<title xml:lang="pa">OpenSSL ਸੰਰਚਨਾ</title>
<title xml:lang="pl">Konfiguracja biblioteki OpenSSL</title>
<title xml:lang="pt">Configuração de OpenSSL</title>
<title xml:lang="pt_BR">Configuração do OpenSSL</title>
<title xml:lang="ro">Configurare OpenSSL</title>
<title xml:lang="ru">Настройка OpenSSL</title>
<title xml:lang="sk">Konfigurácia OpenSSL</title>
<title xml:lang="sl">OpenSSL nastavitve</title>
<title xml:lang="sq">Konfigurim OpenSSL</title>
<title xml:lang="sr">ОпенССЛ подешавања</title>
<title xml:lang="sr@latin">OpenSSL podešavanja</title>
<title xml:lang="sv">Konfiguration av OpenSSL</title>
<title xml:lang="ta">OpenSSL கட்டமைப்பு</title>
<title xml:lang="te">OpenSSL రూపకరణ</title>
<title xml:lang="th">การตั้งค่า OpenSSL</title>
<title xml:lang="tr">OpenSSL Yapılandırması</title>
<title xml:lang="ug">|نىڭ قۇرۇلمىسى OpenSSL</title>
<title xml:lang="uk">Налаштовування OpenSSL</title>
<title xml:lang="uz">OpenSSL moslamasi</title>
<title xml:lang="uz@cyrillic">OpenSSL мосламаси</title>
<title xml:lang="vi">Cấu hình OpenSSL</title>
<title xml:lang="wa">Apontiaedje d' OpenSSL</title>
<title xml:lang="xh">Ukumiselwa kwenkqubo yekhompyutha i-OpenSSL</title>
<title xml:lang="zh_CN">OpenSSL 配置</title>
<title xml:lang="zh_HK">OpenSSL 設定</title>
<title xml:lang="zh_TW">OpenSSL 設定</title>
<description>Section 5ssl</description>
<description xml:lang="ar">الفصل 5ssl</description>
<description xml:lang="as">বিভাগ 5ssl</description>
<description xml:lang="ast">Seición 5ssl</description>
<description xml:lang="be">Разьдзел 5ssl</description>
<description xml:lang="be@latin">Raździeł 5ssl</description>
<description xml:lang="bg">Раздел 5ssl</description>
<description xml:lang="bn">বিভাগ 5ssl</description>
<description xml:lang="bn_IN">বিভাগ 5ssl</description>
<description xml:lang="ca">Secció 5ssl</description>
<description xml:lang="ca@valencia">Secció 5ssl</description>
<description xml:lang="crh">Bölüm 5ssl</description>
<description xml:lang="cs">Oddíl 5ssl</description>
<description xml:lang="cy">Adran 5ssl</description>
<description xml:lang="da">Afsnit 5ssl</description>
<description xml:lang="de">Abschnitt 5ssl</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༥ཨེསི་ཨེསི་ཨེལ།</description>
<description xml:lang="el">Ενότητα 5ssl</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 5ssl</description>
<description xml:lang="en_GB">Section 5ssl</description>
<description xml:lang="es">Sección 5ssl</description>
<description xml:lang="et">Peatükk 5ssl</description>
<description xml:lang="eu">5ssl atala</description>
<description xml:lang="fa">بخش 5ssl</description>
<description xml:lang="fi">Osa 5ssl</description>
<description xml:lang="fr">Section 5ssl</description>
<description xml:lang="ga">Rannán 5ssl</description>
<description xml:lang="gl">Sección 5ssl</description>
<description xml:lang="gu">વિભાગ 5ssl</description>
<description xml:lang="he">חלק 5ssl</description>
<description xml:lang="hi">खंड 5ssl</description>
<description xml:lang="hu">5ssl szakasz</description>
<description xml:lang="id">Bagian 5ssl</description>
<description xml:lang="it">Sezione 5ssl</description>
<description xml:lang="ja">セクション 5ssl</description>
<description xml:lang="ka">სექცია 5ssl</description>
<description xml:lang="kn">5ssl ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 5ssl</description>
<description xml:lang="ks">हिय्स: 5ssl</description>
<description xml:lang="ku">Beşa 5ssl</description>
<description xml:lang="lt">Sekcija 5ssl</description>
<description xml:lang="lv">Sadaļa 5ssl</description>
<description xml:lang="mai">खंड 5ssl</description>
<description xml:lang="mg">Fitsinjarana 5ssl</description>
<description xml:lang="mk">Оддел 5ssl</description>
<description xml:lang="ml">വിഭാഗം - 5ssl</description>
<description xml:lang="mr">विभाग 5ssl</description>
<description xml:lang="nb">Seksjon 5ssl</description>
<description xml:lang="ne">सेक्सन 5ssl</description>
<description xml:lang="nl">Sectie 5ssl</description>
<description xml:lang="nn">Seksjon 5ssl</description>
<description xml:lang="oc">Seccion 5ssl</description>
<description xml:lang="or">ବିଭାଗ 5ssl</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 5ssl</description>
<description xml:lang="pl">Rozdział 5ssl</description>
<description xml:lang="pt">Secção 5ssl</description>
<description xml:lang="pt_BR">Seção 5ssl</description>
<description xml:lang="ro">Secțiunea 5ssl</description>
<description xml:lang="ru">Раздел 5ssl</description>
<description xml:lang="sl">Odsek 5ssl</description>
<description xml:lang="sq">Seksion 5ssl</description>
<description xml:lang="sr">Одељак 5ssl</description>
<description xml:lang="sr@latin">Odeljak 5ssl</description>
<description xml:lang="sv">Avsnitt 5ssl</description>
<description xml:lang="ta">பிரிவு 5ssl</description>
<description xml:lang="te">5ssl భాగము</description>
<description xml:lang="th">หมวด 5ssl</description>
<description xml:lang="tr">Bölüm 5ssl</description>
<description xml:lang="uk">Розділ 5ssl</description>
<description xml:lang="uz">Boʻlim 5ssl</description>
<description xml:lang="uz@cyrillic">Бўлим 5ssl</description>
<description xml:lang="vi">Phần 5ssl</description>
<description xml:lang="wa">Seccion 5ssl</description>
<description xml:lang="zh_CN">5ssl 节</description>
<description xml:lang="zh_HK">第 5ssl 節</description>
<description xml:lang="zh_TW">第 5ssl 節</description>
</toc>
</toc>
<toc sect="6" id="Man-man6">
<title>Games</title>
<title xml:lang="af">Speletjies</title>
<title xml:lang="am">ጨዋታዎች</title>
<title xml:lang="ar">ألعاب</title>
<title xml:lang="as">খেলা</title>
<title xml:lang="ast">Xuegos</title>
<title xml:lang="az">Oyunlar</title>
<title xml:lang="be">Гульні</title>
<title xml:lang="be@latin">Hulni</title>
<title xml:lang="bg">Игри</title>
<title xml:lang="bn">খেলা</title>
<title xml:lang="bn_IN">খেলা</title>
<title xml:lang="br">C'hoarioù</title>
<title xml:lang="bs">Igre</title>
<title xml:lang="ca">Jocs</title>
<title xml:lang="ca@valencia">Jocs</title>
<title xml:lang="crh">Oyunlar</title>
<title xml:lang="cs">Hry</title>
<title xml:lang="cy">Gemau</title>
<title xml:lang="da">Spil</title>
<title xml:lang="de">Spiele</title>
<title xml:lang="dz">རྩེད་རིགས།</title>
<title xml:lang="el">Παιχνίδια</title>
<title xml:lang="en@shaw">𐑜𐑱𐑥𐑟</title>
<title xml:lang="en_CA">Games</title>
<title xml:lang="en_GB">Games</title>
<title xml:lang="eo">Ludiloj</title>
<title xml:lang="es">Juegos</title>
<title xml:lang="et">Mängud</title>
<title xml:lang="eu">Jokoak</title>
<title xml:lang="fa">بازیها</title>
<title xml:lang="fi">Pelit</title>
<title xml:lang="fr">Jeux</title>
<title xml:lang="fur">Zûcs</title>
<title xml:lang="ga">Cluichí</title>
<title xml:lang="gl">Xogos</title>
<title xml:lang="gu">રમતો</title>
<title xml:lang="he">משחקים</title>
<title xml:lang="hi">खेल</title>
<title xml:lang="hr">Igre</title>
<title xml:lang="hu">Játékok</title>
<title xml:lang="id">Permainan</title>
<title xml:lang="is">Leikir</title>
<title xml:lang="it">Giochi</title>
<title xml:lang="ja">ゲーム</title>
<title xml:lang="ka">თამაშები</title>
<title xml:lang="kn">ಆಟಗಳು</title>
<title xml:lang="ko">게임</title>
<title xml:lang="ks">खय्यल:</title>
<title xml:lang="ku">Lîstik</title>
<title xml:lang="ky">Оюндар</title>
<title xml:lang="la">Ludi</title>
<title xml:lang="li">Sjpelkes</title>
<title xml:lang="lt">Žaidimai</title>
<title xml:lang="lv">Spēles</title>
<title xml:lang="mai">खेल</title>
<title xml:lang="mg">Lalao</title>
<title xml:lang="mk">Игри</title>
<title xml:lang="ml">കളികള്</title>
<title xml:lang="mn">Тоглоом</title>
<title xml:lang="mr">खेळ</title>
<title xml:lang="ms">Permainan</title>
<title xml:lang="nb">Spill</title>
<title xml:lang="nds">Spölletjes</title>
<title xml:lang="ne">खेल</title>
<title xml:lang="nl">Spelletjes</title>
<title xml:lang="nn">Spel</title>
<title xml:lang="nso">Dipapadi</title>
<title xml:lang="oc">Jòcs</title>
<title xml:lang="or">ଖେଳ</title>
<title xml:lang="pa">ਖੇਡਾਂ</title>
<title xml:lang="pl">Gry</title>
<title xml:lang="ps">لوبې</title>
<title xml:lang="pt">Jogos</title>
<title xml:lang="pt_BR">Jogos</title>
<title xml:lang="ro">Jocuri</title>
<title xml:lang="ru">Игры</title>
<title xml:lang="si">ක්රිඩා</title>
<title xml:lang="sk">Hry</title>
<title xml:lang="sl">Igre</title>
<title xml:lang="sq">Lojra</title>
<title xml:lang="sr">Игре</title>
<title xml:lang="sr@latin">Igre</title>
<title xml:lang="sv">Spel</title>
<title xml:lang="ta">விளையாட்டுகள்</title>
<title xml:lang="te">ఆటలు</title>
<title xml:lang="tg">Бозиҳо</title>
<title xml:lang="th">เกม</title>
<title xml:lang="tr">Oyunlar</title>
<title xml:lang="ug">ئويۇنلار</title>
<title xml:lang="uk">Ігри</title>
<title xml:lang="uz">Oʻyinlar</title>
<title xml:lang="uz@cyrillic">Ўйинлар</title>
<title xml:lang="vi">Trò chơi</title>
<title xml:lang="wa">Djeus</title>
<title xml:lang="xh">Imidlalo</title>
<title xml:lang="zh_CN">游戏</title>
<title xml:lang="zh_HK">遊戲</title>
<title xml:lang="zh_TW">遊戲</title>
<title xml:lang="zu">Imidlalo</title>
<description>Section 6</description>
<description xml:lang="ar">الفصل 6</description>
<description xml:lang="as">বিভাগ 6</description>
<description xml:lang="ast">Seición 6</description>
<description xml:lang="be">Разьдзел 6</description>
<description xml:lang="be@latin">Raździeł 6</description>
<description xml:lang="bg">Раздел 6</description>
<description xml:lang="bn">বিভাগ 6</description>
<description xml:lang="bn_IN">বিভাগ 6</description>
<description xml:lang="ca">Secció 6</description>
<description xml:lang="ca@valencia">Secció 6</description>
<description xml:lang="crh">Bölüm 6</description>
<description xml:lang="cs">Oddíl 6</description>
<description xml:lang="cy">Adran 6</description>
<description xml:lang="da">Afsnit 6</description>
<description xml:lang="de">Abschnitt 6</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༦།</description>
<description xml:lang="el">Ενότητα 6</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 6</description>
<description xml:lang="en_GB">Section 6</description>
<description xml:lang="es">Sección 6</description>
<description xml:lang="et">Peatükk 6</description>
<description xml:lang="eu">6 atala</description>
<description xml:lang="fa">بخش 6</description>
<description xml:lang="fi">Osa 6</description>
<description xml:lang="fr">Section 6</description>
<description xml:lang="ga">Rannán 6</description>
<description xml:lang="gl">Sección 6</description>
<description xml:lang="gu">વિભાગ 6</description>
<description xml:lang="he">חלק 6</description>
<description xml:lang="hi">खंड 6</description>
<description xml:lang="hu">6. szakasz</description>
<description xml:lang="id">Bagian 6</description>
<description xml:lang="it">Sezione 6</description>
<description xml:lang="ja">セクション 6</description>
<description xml:lang="ka">სექცია 6</description>
<description xml:lang="kn">6 ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 6</description>
<description xml:lang="ks">हिय्स: 6</description>
<description xml:lang="ku">Beşa 6</description>
<description xml:lang="lt">Sekcija 6</description>
<description xml:lang="lv">Sadaļa 6</description>
<description xml:lang="mai">खंड 6</description>
<description xml:lang="mg">Fitsinjarana 6</description>
<description xml:lang="mk">Оддел 6</description>
<description xml:lang="ml">വിഭാഗം - 6</description>
<description xml:lang="mr">विभाग 6</description>
<description xml:lang="nb">Seksjon 6</description>
<description xml:lang="ne">सेक्सन ६</description>
<description xml:lang="nl">Sectie 6</description>
<description xml:lang="nn">Seksjon 6</description>
<description xml:lang="oc">Seccion 6</description>
<description xml:lang="or">ବିଭାଗ 6</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 6</description>
<description xml:lang="pl">Rozdział 6</description>
<description xml:lang="ps">۶مه برخه</description>
<description xml:lang="pt">Secção 6</description>
<description xml:lang="pt_BR">Seção 6</description>
<description xml:lang="ro">Secțiunea 6</description>
<description xml:lang="ru">Раздел 6</description>
<description xml:lang="sl">Odsek 6</description>
<description xml:lang="sq">Seksion 6</description>
<description xml:lang="sr">Одељак 6</description>
<description xml:lang="sr@latin">Odeljak 6</description>
<description xml:lang="sv">Avsnitt 6</description>
<description xml:lang="ta">பிரிவு 6</description>
<description xml:lang="te">6 భాగము</description>
<description xml:lang="th">หมวด 6</description>
<description xml:lang="tr">Bölüm 6</description>
<description xml:lang="uk">Розділ 6</description>
<description xml:lang="uz">Boʻlim 6</description>
<description xml:lang="uz@cyrillic">Бўлим 6</description>
<description xml:lang="vi">Phần 6</description>
<description xml:lang="wa">Seccion 6</description>
<description xml:lang="zh_CN">6 节</description>
<description xml:lang="zh_HK">第 6 節</description>
<description xml:lang="zh_TW">第 6 節</description>
<toc sect="6x" id="Man-man6x">
<title>X11 Games</title>
<title xml:lang="ar">ألعاب X11</title>
<title xml:lang="as">X11 খেলা</title>
<title xml:lang="ast">Xuegos X11</title>
<title xml:lang="be">Гульні X11</title>
<title xml:lang="be@latin">Hulni X11</title>
<title xml:lang="bg">Игри за X11</title>
<title xml:lang="bn">X11 খেলা</title>
<title xml:lang="bn_IN">X11 খেলা</title>
<title xml:lang="br">C'hoarioù X11</title>
<title xml:lang="ca">Jocs per a X11</title>
<title xml:lang="ca@valencia">Jocs per a X11</title>
<title xml:lang="crh">X11 Oyunları</title>
<title xml:lang="cs">Hry X11</title>
<title xml:lang="cy">Gemau X11</title>
<title xml:lang="da">X11-spil</title>
<title xml:lang="de">X11-Spiele</title>
<title xml:lang="dz">ཨེགསི་༡༡ རྩེད་རིགས།</title>
<title xml:lang="el">Παιχνίδια X11</title>
<title xml:lang="en@shaw">X11 𐑜𐑱𐑥𐑟</title>
<title xml:lang="en_CA">X11 Games</title>
<title xml:lang="en_GB">X11 Games</title>
<title xml:lang="es">Juegos X11</title>
<title xml:lang="et">X11 mängud</title>
<title xml:lang="eu">X11 jokoak</title>
<title xml:lang="fa">بازیهای X11</title>
<title xml:lang="fi">X11-pelit</title>
<title xml:lang="fr">Jeux X11</title>
<title xml:lang="ga">Cluichí X11</title>
<title xml:lang="gl">Xogos X11</title>
<title xml:lang="gu">X11 રમતો</title>
<title xml:lang="he">משחקי X11</title>
<title xml:lang="hi">X11 खेल</title>
<title xml:lang="hu">X11 játékok</title>
<title xml:lang="id">Permainan X11</title>
<title xml:lang="it">Giochi X11</title>
<title xml:lang="ja">X11 のゲーム</title>
<title xml:lang="ka">X11·თამაშები</title>
<title xml:lang="kn">X11 ಆಟಗಳು</title>
<title xml:lang="ko">X11 게임</title>
<title xml:lang="ks">एक्स11</title>
<title xml:lang="ku">Lîstikên X11</title>
<title xml:lang="ky">X11 оюндары</title>
<title xml:lang="lt">X11 žaidimai</title>
<title xml:lang="lv">X11 spēles</title>
<title xml:lang="mai">X11 खेल</title>
<title xml:lang="mg">Lalao X11</title>
<title xml:lang="mk">Игри во X11</title>
<title xml:lang="ml">X11 കളികള്</title>
<title xml:lang="mr">X11 खेळ</title>
<title xml:lang="nb">X11-spill</title>
<title xml:lang="ne">X11 खेल</title>
<title xml:lang="nl">X11-spelletjes</title>
<title xml:lang="nn">Spel for X11</title>
<title xml:lang="oc">Jòcs X11</title>
<title xml:lang="or">X11 ଖେଳ</title>
<title xml:lang="pa">X11 ਖੇਡਾਂ</title>
<title xml:lang="pl">Gry X11</title>
<title xml:lang="ps">لوبې X۱۱</title>
<title xml:lang="pt">Jogos X11</title>
<title xml:lang="pt_BR">Jogos do X11</title>
<title xml:lang="ro">Jocuri X11</title>
<title xml:lang="ru">Игры X11</title>
<title xml:lang="si">X11 ක්රීඩා</title>
<title xml:lang="sk">Hry X11</title>
<title xml:lang="sl">X11 igre</title>
<title xml:lang="sq">Lojra X11</title>
<title xml:lang="sr">Игре Икса</title>
<title xml:lang="sr@latin">Igre Iksa</title>
<title xml:lang="sv">X11-spel</title>
<title xml:lang="ta">X11 விளையாட்டுகள்</title>
<title xml:lang="te">X11 ఆటలు</title>
<title xml:lang="th">เกม X11</title>
<title xml:lang="tr">X11 Oyunları</title>
<title xml:lang="ug">ئويۇنلىرى X11</title>
<title xml:lang="uk">Ігри X11</title>
<title xml:lang="uz">X11 oʻyinlari</title>
<title xml:lang="uz@cyrillic">X11 ўйинлари</title>
<title xml:lang="vi">Trò chơi X11</title>
<title xml:lang="wa">Djeus X11</title>
<title xml:lang="xh">X11 Imidlalo</title>
<title xml:lang="zh_CN">X11 游戏</title>
<title xml:lang="zh_HK">X11 遊戲</title>
<title xml:lang="zh_TW">X11 遊戲</title>
<description>Section 6x</description>
<description xml:lang="ar">الفصل 6x</description>
<description xml:lang="as">বিভাগ 6x</description>
<description xml:lang="ast">Seición 6x</description>
<description xml:lang="be">Разьдзел 6x</description>
<description xml:lang="be@latin">Raździeł 6x</description>
<description xml:lang="bg">Раздел 6x</description>
<description xml:lang="bn">বিভাগ 6x</description>
<description xml:lang="bn_IN">বিভাগ 6x</description>
<description xml:lang="ca">Secció 6x</description>
<description xml:lang="ca@valencia">Secció 6x</description>
<description xml:lang="crh">Bölüm 6x</description>
<description xml:lang="cs">Oddíl 6x</description>
<description xml:lang="cy">Adran 6x</description>
<description xml:lang="da">Afsnit 6x</description>
<description xml:lang="de">Abschnitt 6x</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༦ཨེགསི།</description>
<description xml:lang="el">Ενότητα 6x</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 6x</description>
<description xml:lang="en_GB">Section 6x</description>
<description xml:lang="es">Sección 6x</description>
<description xml:lang="et">Peatükk 6x</description>
<description xml:lang="eu">6x atala</description>
<description xml:lang="fa">بخش 6x</description>
<description xml:lang="fi">Osa 6x</description>
<description xml:lang="fr">Section 6x</description>
<description xml:lang="ga">Rannán 6x</description>
<description xml:lang="gl">Sección 6x</description>
<description xml:lang="gu">વિભાગ 6x</description>
<description xml:lang="he">חלק 6x</description>
<description xml:lang="hi">खंड 6x</description>
<description xml:lang="hu">6x szakasz</description>
<description xml:lang="id">Bagian 6x</description>
<description xml:lang="it">Sezione 6x</description>
<description xml:lang="ja">セクション 6x</description>
<description xml:lang="ka">სექცია 6x</description>
<description xml:lang="kn">6x ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 6x</description>
<description xml:lang="ks">हिय्स: 6x</description>
<description xml:lang="ku">Beşa 6x</description>
<description xml:lang="lt">Sekcija 6x</description>
<description xml:lang="lv">Sadaļa 6x</description>
<description xml:lang="mai">खंड 6x</description>
<description xml:lang="mg">Fitsinjarana 6x</description>
<description xml:lang="mk">Оддел 6x</description>
<description xml:lang="ml">വിഭാഗം - 6x</description>
<description xml:lang="mr">विभाग 6x</description>
<description xml:lang="nb">Seksjon 6x</description>
<description xml:lang="ne">सेक्सन 6x</description>
<description xml:lang="nl">Sectie 6x</description>
<description xml:lang="nn">Seksjon 6x</description>
<description xml:lang="oc">Seccion 6x</description>
<description xml:lang="or">ବିଭାଗ 6x</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 6x</description>
<description xml:lang="pl">Rozdział 6x</description>
<description xml:lang="pt">Secção 6x</description>
<description xml:lang="pt_BR">Seção 6x</description>
<description xml:lang="ro">Secțiunea 6x</description>
<description xml:lang="ru">Раздел 6x</description>
<description xml:lang="sl">Odsek 6x</description>
<description xml:lang="sq">Seksion 6x</description>
<description xml:lang="sr">Одељак 6x</description>
<description xml:lang="sr@latin">Odeljak 6x</description>
<description xml:lang="sv">Avsnitt 6x</description>
<description xml:lang="ta">பிரிவு 6x</description>
<description xml:lang="te">6x భాగము</description>
<description xml:lang="th">หมวด 6x</description>
<description xml:lang="tr">Bölüm 6x</description>
<description xml:lang="uk">Розділ 6x</description>
<description xml:lang="uz">Boʻlim 6x</description>
<description xml:lang="uz@cyrillic">Бўлим 6x</description>
<description xml:lang="vi">Phần 6x</description>
<description xml:lang="wa">Seccion 6x</description>
<description xml:lang="zh_CN">6x 节</description>
<description xml:lang="zh_HK">第 6x 節</description>
<description xml:lang="zh_TW">第 6x 節</description>
</toc>
</toc>
<toc sect="7 7gcc" id="Man-man7">
<title>Overviews</title>
<title xml:lang="af">Oorsigte</title>
<title xml:lang="am">ማጠቃለያ</title>
<title xml:lang="ar">معاينات</title>
<title xml:lang="as">সাৰাংশ</title>
<title xml:lang="ast">Vistes xenerales</title>
<title xml:lang="az">İcmallar</title>
<title xml:lang="be">Агляды</title>
<title xml:lang="be@latin">Ahlady</title>
<title xml:lang="bg">Прегледи</title>
<title xml:lang="bn">সারসংক্ষেপ</title>
<title xml:lang="bn_IN">সারাংশ</title>
<title xml:lang="br">A bep seurt</title>
<title xml:lang="bs">Pregledi</title>
<title xml:lang="ca">Resums</title>
<title xml:lang="ca@valencia">Resums</title>
<title xml:lang="crh">İzlenimler</title>
<title xml:lang="cs">Přehledy</title>
<title xml:lang="cy">Trosolygon</title>
<title xml:lang="da">Oversigter</title>
<title xml:lang="de">Übersichten</title>
<title xml:lang="dz">སྤྱི་མཐོང་ཚུ་།</title>
<title xml:lang="el">Γενικές επισκοπήσεις</title>
<title xml:lang="en@shaw">𐑴𐑝𐑻𐑝𐑘𐑵𐑟</title>
<title xml:lang="en_CA">Overviews</title>
<title xml:lang="en_GB">Overviews</title>
<title xml:lang="eo">Superrigardo</title>
<title xml:lang="es">Vistas generales</title>
<title xml:lang="et">Ülevaated</title>
<title xml:lang="eu">Informazio orokorrak</title>
<title xml:lang="fa">دورنماها</title>
<title xml:lang="fi">Yleiskatsaukset</title>
<title xml:lang="fr">Présentation</title>
<title xml:lang="ga">Foramhairc</title>
<title xml:lang="gl">Resumos</title>
<title xml:lang="gu">સંક્ષેપો</title>
<title xml:lang="he">סקירות</title>
<title xml:lang="hi">संक्षेप</title>
<title xml:lang="hr">Osvrti</title>
<title xml:lang="hu">Áttekintő leírások</title>
<title xml:lang="id">Ringkasan</title>
<title xml:lang="is">Yfirlit</title>
<title xml:lang="it">Panoramiche</title>
<title xml:lang="ja">概要</title>
<title xml:lang="ka">განხილვები</title>
<title xml:lang="kn">ಅವಲೋಕನಗಳು</title>
<title xml:lang="ko">전체</title>
<title xml:lang="ks">प्येठ प्येठ नजर</title>
<title xml:lang="ku">Çavdêrî</title>
<title xml:lang="ky">Киришүү</title>
<title xml:lang="li">Euverzichte</title>
<title xml:lang="lt">Apžvalgos</title>
<title xml:lang="lv">Apskati</title>
<title xml:lang="mai">संक्षेप</title>
<title xml:lang="mg">Topimaso</title>
<title xml:lang="mk">Прегледи</title>
<title xml:lang="ml">അവലോകനങ്ങള്</title>
<title xml:lang="mn">Тойм</title>
<title xml:lang="mr">संक्षेप</title>
<title xml:lang="ms">Sekilas pandang</title>
<title xml:lang="nb">Oversikter</title>
<title xml:lang="nds">Oversichten</title>
<title xml:lang="ne">सिंहावलोकन</title>
<title xml:lang="nl">Overzichten</title>
<title xml:lang="nn">Oversikter</title>
<title xml:lang="nso">Kakaretšo</title>
<title xml:lang="oc">Presentacion</title>
<title xml:lang="or">ସାରାଂଶ</title>
<title xml:lang="pa">ਜਾਣ ਪਛਾਣ</title>
<title xml:lang="pl">Zestawienia</title>
<title xml:lang="ps">پاسکتنې</title>
<title xml:lang="pt">Resumos</title>
<title xml:lang="pt_BR">Resumos</title>
<title xml:lang="ro">Rezumate</title>
<title xml:lang="ru">Обзоры</title>
<title xml:lang="si">දළ විශ්ලේෂණ</title>
<title xml:lang="sk">Prehľady</title>
<title xml:lang="sl">Drugi pogledi</title>
<title xml:lang="sq">Përshkrime</title>
<title xml:lang="sr">Прегледи</title>
<title xml:lang="sr@latin">Pregledi</title>
<title xml:lang="sv">Översikter</title>
<title xml:lang="ta">மேல்பார்வைகள்</title>
<title xml:lang="te">ఉపరితలదర్శనాలు</title>
<title xml:lang="tg">Азназаргузаронӣ</title>
<title xml:lang="th">ภาพรวม</title>
<title xml:lang="tr">İzlenimler</title>
<title xml:lang="ug"> قىسقىچە تونۇشتۇرۇش</title>
<title xml:lang="uk">Огляди</title>
<title xml:lang="vi">Tổng quan</title>
<title xml:lang="wa">Rascourtis</title>
<title xml:lang="xh">Imiba jikelele</title>
<title xml:lang="zh_CN">简介</title>
<title xml:lang="zh_HK">概覽</title>
<title xml:lang="zh_TW">概覽</title>
<title xml:lang="zu">Ukubuka udlulisa</title>
<description>Sections 7 and 7gcc</description>
<description xml:lang="ar">الفصول 7 و 7gcc</description>
<description xml:lang="as">বিভাগ 7 আৰু 7gcc</description>
<description xml:lang="ast">Seiciones 7 y 7gcc</description>
<description xml:lang="be">Разьдзелы 7 і 7 gcc</description>
<description xml:lang="be@latin">Raździeły 7 i 7gcc</description>
<description xml:lang="bg">Раздели 7 и 7gcc</description>
<description xml:lang="bn">বিভাগ 7 ও 7gcc</description>
<description xml:lang="bn_IN">বিভাগ 7 ও 7gcc</description>
<description xml:lang="ca">Seccions 7 i 7gcc</description>
<description xml:lang="ca@valencia">Seccions 7 i 7gcc</description>
<description xml:lang="crh">Bölüm 7 ve 7gcc</description>
<description xml:lang="cs">Oddíly 7 a 7gcc</description>
<description xml:lang="cy">Adrannau 7 a 7gcc</description>
<description xml:lang="da">Afsnit 7 og 7gcc</description>
<description xml:lang="de">Abschnitte 7 und 7gcc</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༧ དང་ ༧ཇི་སི་སི།</description>
<description xml:lang="el">Ενότητες 7 και 7gcc</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 7 𐑯 7gcc</description>
<description xml:lang="en_GB">Sections 7 and 7gcc</description>
<description xml:lang="es">Secciones 7 y 7gcc</description>
<description xml:lang="et">Peatükid 7 ja 7gcc</description>
<description xml:lang="eu">7 eta 7gcc atalak</description>
<description xml:lang="fa">بخشهای 7 و 7gc</description>
<description xml:lang="fi">Osat 7 ja 7gcc</description>
<description xml:lang="fr">Sections 7 et 7gcc</description>
<description xml:lang="ga">Rannáin 7 agus 7gcc</description>
<description xml:lang="gl">Seccións 7 e 7gcc</description>
<description xml:lang="gu">વિભાગો 7 અને 7gcc</description>
<description xml:lang="he">חלקים 7 ו־7gcc</description>
<description xml:lang="hi">खंड 7 और 7gcc</description>
<description xml:lang="hu">7 és 7gcc szakaszok</description>
<description xml:lang="id">Bagian 7 dan 7gcc</description>
<description xml:lang="it">Sezioni 7 e 7gcc</description>
<description xml:lang="ja">セクション 7 と 7gcc</description>
<description xml:lang="ka">სექციები 7 და 7gcc</description>
<description xml:lang="kn">7 ಹಾಗು 7gcc ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 7 및 7gcc</description>
<description xml:lang="ks">हिय्स: 7 तह् 7gcc</description>
<description xml:lang="ku">Beşên 7 û 7gcc</description>
<description xml:lang="lt">Sekcijos 7 ir 7gcc</description>
<description xml:lang="lv">Sadaļas 7 un 7gcc</description>
<description xml:lang="mai">खंड 7 आओर 7gcc</description>
<description xml:lang="mg">Fitsinjarana 7 ary 7gcc</description>
<description xml:lang="mk">Оддели 7 и 7gcc</description>
<description xml:lang="ml">7, 7gcc വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 7 आनि 7gcc</description>
<description xml:lang="nb">Seksjon 7 og 7gcc</description>
<description xml:lang="ne">सेक्सन 7 र 7gcc</description>
<description xml:lang="nl">Secties 7 en 7gcc</description>
<description xml:lang="nn">Seksjon 7 og 7gcc</description>
<description xml:lang="oc">Seccions 7 e 7gcc</description>
<description xml:lang="or">ବିଭାଗ 7 ଏବଂ 7gcc</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 7 ਅਤੇ 7gcc</description>
<description xml:lang="pl">Rozdziały 7 i 7gcc</description>
<description xml:lang="pt">Secções 7 e 7gcc</description>
<description xml:lang="pt_BR">Seções 7 e 7gcc</description>
<description xml:lang="ro">Secțiunile 7 și 7gcc</description>
<description xml:lang="ru">Разделы 7 и 7gcc</description>
<description xml:lang="sl">Odseki 7 in 7gcc</description>
<description xml:lang="sq">Seksione 7 dhe 7gcc</description>
<description xml:lang="sr">Одељци 7 и 7gcc</description>
<description xml:lang="sr@latin">Odeljci 7 i 7gcc</description>
<description xml:lang="sv">Avsnitten 7 och 7gcc</description>
<description xml:lang="ta">பிரிவுகள் 7 மற்றும் 7gcc</description>
<description xml:lang="te">7 మరియు 7gcc భాగములు</description>
<description xml:lang="th">หมวด 7 และ 7gcc</description>
<description xml:lang="tr">Bölüm 7 ve 7gcc</description>
<description xml:lang="uk">Розділи 7 та 7gcc</description>
<description xml:lang="uz">Boʻlimlar 7 va 7gcc</description>
<description xml:lang="uz@cyrillic">Бўлимлар 7 ва 7gcc</description>
<description xml:lang="vi">Phần 7 và 7gcc</description>
<description xml:lang="wa">Seccions 7 eyet 7gcc</description>
<description xml:lang="zh_CN">7 和 7gcc 节</description>
<description xml:lang="zh_HK">第 7 及 7gcc 節</description>
<description xml:lang="zh_TW">第 7 及 7gcc 節</description>
<toc sect="7x" id="Man-man7x">
<title>X11 Overviews</title>
<title xml:lang="ar">معاينات X11</title>
<title xml:lang="as">X11'ৰ সাৰাংশ</title>
<title xml:lang="ast">Vistes xenerales X11</title>
<title xml:lang="be">Агляд X11</title>
<title xml:lang="be@latin">Ahlady X11</title>
<title xml:lang="bg">Преглед на X11</title>
<title xml:lang="bn">X11 সারসংক্ষেপ</title>
<title xml:lang="bn_IN">X11'র সারাংশ</title>
<title xml:lang="br">A bep seurt X11</title>
<title xml:lang="ca">Resums d'X11</title>
<title xml:lang="ca@valencia">Resums d'X11</title>
<title xml:lang="crh">X11 İzlenimleri</title>
<title xml:lang="cs">Přehledy X11</title>
<title xml:lang="cy">Trosolygon X11</title>
<title xml:lang="da">X11-oversigter</title>
<title xml:lang="de">X11-Übersichten</title>
<title xml:lang="dz">ཨེགསི་༡༡ སྤྱི་མཐོང་ཚུ།</title>
<title xml:lang="el">Επισκοπήσεις X11</title>
<title xml:lang="en@shaw">X11 𐑴𐑝𐑻𐑝𐑘𐑵𐑟</title>
<title xml:lang="en_CA">X11 Overviews</title>
<title xml:lang="en_GB">X11 Overviews</title>
<title xml:lang="es">Vistas generales X11</title>
<title xml:lang="et">X11 ülevaated</title>
<title xml:lang="eu">X11 informazio orokorrak</title>
<title xml:lang="fa">دورنماهای X11</title>
<title xml:lang="fi">X11-yleiskatsaukset</title>
<title xml:lang="fr">Présentation de X11</title>
<title xml:lang="ga">Foramhairc X11</title>
<title xml:lang="gl">Resumos X11</title>
<title xml:lang="gu">X11 અણસારો</title>
<title xml:lang="he">סקירות של X11</title>
<title xml:lang="hi">X11 सार</title>
<title xml:lang="hu">X11 áttekintő leírások</title>
<title xml:lang="id">Ringkasan X11</title>
<title xml:lang="it">Panoramiche X11</title>
<title xml:lang="ja">X11 の概要</title>
<title xml:lang="ka">X11·მიმოხილვები</title>
<title xml:lang="kn">X11 ಅವಲೋಕನಗಳು</title>
<title xml:lang="ko">X11 전체</title>
<title xml:lang="ks">एक्स11 प्येठ प्येठ नजर</title>
<title xml:lang="ku">Çavdêriyên X11</title>
<title xml:lang="ky">X11 ге киришүү</title>
<title xml:lang="lt">X11 apžvalgos</title>
<title xml:lang="lv">X11 apskati</title>
<title xml:lang="mai">X11 संक्षेप</title>
<title xml:lang="mg">Topimaso momba ny X11</title>
<title xml:lang="mk">Прегледи на X11</title>
<title xml:lang="ml">X11 അവലോകനങ്ങള്</title>
<title xml:lang="mr">X11 आढावा</title>
<title xml:lang="nb">X11-oversikter</title>
<title xml:lang="ne">X11 सिंहावलोकन</title>
<title xml:lang="nl">X11-overzicht</title>
<title xml:lang="nn">X11-oversikter</title>
<title xml:lang="oc">Presentacion de X11</title>
<title xml:lang="or">X11 ସାରାଂଶ</title>
<title xml:lang="pa">X11 ਜਾਣ ਪਛਾਣ</title>
<title xml:lang="pl">Zestawienia X11</title>
<title xml:lang="ps">پاسکتنې X۱۱</title>
<title xml:lang="pt">Resumos sobre o X11</title>
<title xml:lang="pt_BR">Resumos do X11</title>
<title xml:lang="ro">Prezentare X11</title>
<title xml:lang="ru">Обзоры X11</title>
<title xml:lang="sk">Prehľady X11</title>
<title xml:lang="sl">X11 pogledi</title>
<title xml:lang="sq">Përshkrime X11</title>
<title xml:lang="sr">Прегледи Икса</title>
<title xml:lang="sr@latin">Pregledi Iksa</title>
<title xml:lang="sv">Översikter av X11</title>
<title xml:lang="ta">X11 மேல் பார்வைகள்</title>
<title xml:lang="te">X11 ఉపరితలదర్శనాలు</title>
<title xml:lang="th">ภาพรวม X11</title>
<title xml:lang="tr">X11 İzlenimleri</title>
<title xml:lang="ug">نىڭ قىسقىچە چۈشەندۈرىلىشى X11</title>
<title xml:lang="uk">Огляди X11</title>
<title xml:lang="vi">Tổng quan X11</title>
<title xml:lang="wa">Rascourtis X11</title>
<title xml:lang="xh">X11 Izishwankathelo</title>
<title xml:lang="zh_CN">X11 简介</title>
<title xml:lang="zh_HK">X11 概覽</title>
<title xml:lang="zh_TW">X11 概覽</title>
<description>Section 7x</description>
<description xml:lang="ar">الفصل 7x</description>
<description xml:lang="as">বিভাগ 7x</description>
<description xml:lang="ast">Seición 7x</description>
<description xml:lang="be">Разьдзел 7x</description>
<description xml:lang="be@latin">Raździeł 7x</description>
<description xml:lang="bg">Раздел 7x</description>
<description xml:lang="bn">বিভাগ 7x</description>
<description xml:lang="bn_IN">বিভাগ 7x</description>
<description xml:lang="ca">Secció 7x</description>
<description xml:lang="ca@valencia">Secció 7x</description>
<description xml:lang="crh">Bölüm 7x</description>
<description xml:lang="cs">Oddíl 7x</description>
<description xml:lang="cy">Adran 7x</description>
<description xml:lang="da">Afsnit 7x</description>
<description xml:lang="de">Abschnitt 7x</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༧ཨེགསི།</description>
<description xml:lang="el">Ενότητα 7x</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 7x</description>
<description xml:lang="en_GB">Section 7x</description>
<description xml:lang="es">Sección 7x</description>
<description xml:lang="et">Peatükk 7x</description>
<description xml:lang="eu">7x atala</description>
<description xml:lang="fa">بخش 7x</description>
<description xml:lang="fi">Osa 7x</description>
<description xml:lang="fr">Section 7x</description>
<description xml:lang="ga">Rannán 7x</description>
<description xml:lang="gl">Sección 7x</description>
<description xml:lang="gu">વિભાગ 7x</description>
<description xml:lang="he">חלק 7x</description>
<description xml:lang="hi">खंड 7x</description>
<description xml:lang="hu">7x szakasz</description>
<description xml:lang="id">Bagian 7x</description>
<description xml:lang="it">Sezione 7x</description>
<description xml:lang="ja">セクション 7x</description>
<description xml:lang="ka">სექცია 7x</description>
<description xml:lang="kn">7x ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 7x</description>
<description xml:lang="ks">हिय्स: 7x</description>
<description xml:lang="ku">Beşa 7x</description>
<description xml:lang="lt">Sekcija 7x</description>
<description xml:lang="lv">Sadaļa 7x</description>
<description xml:lang="mai">खंड 7x</description>
<description xml:lang="mg">Fitsinjarana 7x</description>
<description xml:lang="mk">Оддел 7x</description>
<description xml:lang="ml">വിഭാഗം - 7x</description>
<description xml:lang="mr">विभाग 7xग</description>
<description xml:lang="nb">Seksjon 7x</description>
<description xml:lang="ne">सेक्सन 7x</description>
<description xml:lang="nl">Sectie 7x</description>
<description xml:lang="nn">Seksjon 7x</description>
<description xml:lang="oc">Seccion 7x</description>
<description xml:lang="or">ବିଭାଗ 7x</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 7x</description>
<description xml:lang="pl">Rozdział 7x</description>
<description xml:lang="pt">Secção 7x</description>
<description xml:lang="pt_BR">Seção 7x</description>
<description xml:lang="ro">Secțiunea 7x</description>
<description xml:lang="ru">Раздел 7x</description>
<description xml:lang="sl">Odsek 7x</description>
<description xml:lang="sq">Seksion 7x</description>
<description xml:lang="sr">Одељак 7x</description>
<description xml:lang="sr@latin">Odeljak 7x</description>
<description xml:lang="sv">Avsnitt 7x</description>
<description xml:lang="ta">பிரிவு 7x</description>
<description xml:lang="te">7x భాగము</description>
<description xml:lang="th">หมวด 7x</description>
<description xml:lang="tr">Bölüm 7x</description>
<description xml:lang="uk">Розділ 7x</description>
<description xml:lang="uz">Boʻlim 7x</description>
<description xml:lang="uz@cyrillic">Бўлим 7x</description>
<description xml:lang="vi">Phần 7x</description>
<description xml:lang="wa">Seccion 7x</description>
<description xml:lang="zh_CN">7x 节</description>
<description xml:lang="zh_HK">第 7x 節</description>
<description xml:lang="zh_TW">第 7x 節</description>
</toc>
<toc sect="7ssl" id="Man-man7ssl">
<title>OpenSSL Overviews</title>
<title xml:lang="ar">معاينات OpenSSL</title>
<title xml:lang="as">OpenSSL'ৰ সাৰাংশ</title>
<title xml:lang="ast">Vistes xenerales OpenSSL</title>
<title xml:lang="be">Агляд OpenSSL</title>
<title xml:lang="be@latin">Ahlady OpenSSL</title>
<title xml:lang="bg">Преглед на OpenSSL</title>
<title xml:lang="bn">OpenSSL সারসংক্ষেপ</title>
<title xml:lang="bn_IN">OpenSSL'র সারাংশ</title>
<title xml:lang="br">A bep seurt OpenSSL</title>
<title xml:lang="ca">Resums de l'OpenSSL</title>
<title xml:lang="ca@valencia">Resums de l'OpenSSL</title>
<title xml:lang="crh">OpenSSL İzlenimleri</title>
<title xml:lang="cs">Přehledy OpenSSL</title>
<title xml:lang="cy">Trosolygon OpenSSL</title>
<title xml:lang="da">OpenSSL-oversigter</title>
<title xml:lang="de">OpenSSL-Übersichten</title>
<title xml:lang="dz">ཨོ་པཱན་ཨེསི་ཨེསི་ཨེལ་ སྤྱི་མཐོང་ཚུ།</title>
<title xml:lang="el">Επισκοπήσεις OpenSSL</title>
<title xml:lang="en_CA">OpenSSL Overviews</title>
<title xml:lang="en_GB">OpenSSL Overviews</title>
<title xml:lang="es">Vistas generales OpenSSL</title>
<title xml:lang="et">OpenSSL'i ülevaated</title>
<title xml:lang="eu">OpenSSL informazio orokorrak</title>
<title xml:lang="fa">دورنماهای OpenSSL</title>
<title xml:lang="fi">OpenSSL-yleiskatsaukset</title>
<title xml:lang="fr">Présentation de OpenSSL</title>
<title xml:lang="ga">Foramhairc OpenSSL</title>
<title xml:lang="gl">Resumos OpenSSL</title>
<title xml:lang="gu">OpenSSL અણસારો</title>
<title xml:lang="he">סקירות של OpenSSL</title>
<title xml:lang="hi">OpenSSL सार</title>
<title xml:lang="hu">OpenSSL áttekintések</title>
<title xml:lang="id">Ringkasan OpenSSL</title>
<title xml:lang="it">Panoramica OpenSSL</title>
<title xml:lang="ja">OpenSSL の概要</title>
<title xml:lang="ka">OpenSSL·მიმოხილვები</title>
<title xml:lang="kn">OpenSSL ಅವಲೋಕನಗಳು</title>
<title xml:lang="ko">OpenSSL 전체</title>
<title xml:lang="ks">औपन एस एस एलस प्येठ प्येठ नजर</title>
<title xml:lang="ku">Çavdêriyên OpenSSL</title>
<title xml:lang="ky">OpenSSLге киришүү</title>
<title xml:lang="lt">OpenSSL apžvalgos</title>
<title xml:lang="lv">OpenSSL apskati</title>
<title xml:lang="mai">OpenSSLसंक्षेप</title>
<title xml:lang="mg">Topimaso momba ny OpenSSL</title>
<title xml:lang="mk">Прегледи на OpenSSL</title>
<title xml:lang="ml">OpenSSL അവലോകനങ്ങള്</title>
<title xml:lang="mr">OpenSSL आधीचेदृष्य</title>
<title xml:lang="nb">OpenSSL-oversikter</title>
<title xml:lang="ne">ओपनएसएसएल सिंहावलोकन</title>
<title xml:lang="nl">OpenSSL-overzicht</title>
<title xml:lang="nn">OpenSSL-oversikter</title>
<title xml:lang="oc">Presentacion d'OpenSSL</title>
<title xml:lang="or">OpenSSL ସାରାଂଶ</title>
<title xml:lang="pa">OpenSSL ਜਾਣ-ਪਛਾਣ</title>
<title xml:lang="pl">Zestawienia biblioteki OpenSSL</title>
<title xml:lang="pt">Resumos sobre OpenSSL</title>
<title xml:lang="pt_BR">Resumos do OpenSSL</title>
<title xml:lang="ro">Prezentare OpenSSL</title>
<title xml:lang="ru">Обзоры OpenSSL</title>
<title xml:lang="sk">Prehľady OpenSSL</title>
<title xml:lang="sl">OpenSSL pogledi</title>
<title xml:lang="sq">Përshkrime OpenSSL</title>
<title xml:lang="sr">ОпенССЛ прегледи</title>
<title xml:lang="sr@latin">OpenSSL pregledi</title>
<title xml:lang="sv">Översikter av OpenSSL</title>
<title xml:lang="ta">OpenSSL மேல்பார்வைகள்</title>
<title xml:lang="te">OpenSSL ఉపరితలదర్శనాలు</title>
<title xml:lang="th">ภาพรวม OpenSSL</title>
<title xml:lang="tr">OpenSSL İzlenimleri</title>
<title xml:lang="ug">نىڭ قىسقىچە تونۇشتۇرىلىشى OpenSSL</title>
<title xml:lang="uk">Огляди OpenSSL</title>
<title xml:lang="vi">Tổng quan OpenSSL</title>
<title xml:lang="wa">Rascourtis OpenSSL</title>
<title xml:lang="xh">IIMiba Jikelele ye-OpenSSL</title>
<title xml:lang="zh_CN">OpenSSL 简介</title>
<title xml:lang="zh_HK">OpenSSL 概覽</title>
<title xml:lang="zh_TW">OpenSSL 概覽</title>
<description>Section 7ssl</description>
<description xml:lang="ar">الفصل 7ssl</description>
<description xml:lang="as">বিভাগ 7ssl</description>
<description xml:lang="ast">Seición 7ssl</description>
<description xml:lang="be">Разьдзел 7ssl</description>
<description xml:lang="be@latin">Raździeł 7ssl</description>
<description xml:lang="bg">Раздел 7ssl</description>
<description xml:lang="bn">বিভাগ 7ssl</description>
<description xml:lang="bn_IN">বিভাগ 7ssl</description>
<description xml:lang="ca">Secció 7ssl</description>
<description xml:lang="ca@valencia">Secció 7ssl</description>
<description xml:lang="crh">Bölüm 7ssl</description>
<description xml:lang="cs">Oddíl 7ssl</description>
<description xml:lang="cy">Adran 7ssl</description>
<description xml:lang="da">Afsnit 7ssl</description>
<description xml:lang="de">Abschnitt 7ssl</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༧ཨེསི་ཨེསི་ཨེལ།</description>
<description xml:lang="el">Ενότητα 7ssl</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯 7ssl</description>
<description xml:lang="en_GB">Section 7ssl</description>
<description xml:lang="es">Sección 7ssl</description>
<description xml:lang="et">Peatükk 7ssl</description>
<description xml:lang="eu">7ssl atala</description>
<description xml:lang="fa">بخش 7ssl</description>
<description xml:lang="fi">Osa 7ssl</description>
<description xml:lang="fr">Section 7ssl</description>
<description xml:lang="ga">Rannán 7ssl</description>
<description xml:lang="gl">Sección 7ssl</description>
<description xml:lang="gu">વિભાગ 7ssl</description>
<description xml:lang="he">חלק 7ssl</description>
<description xml:lang="hi">खंड 7ssl</description>
<description xml:lang="hu">7ssl szakasz</description>
<description xml:lang="id">Bagian 7ssl</description>
<description xml:lang="it">Sezione 7ssl</description>
<description xml:lang="ja">セクション 7ssl</description>
<description xml:lang="ka">სექცია 7ssl</description>
<description xml:lang="kn">7ssl ವಿಭಾಗ</description>
<description xml:lang="ko">섹션 7ssl</description>
<description xml:lang="ks">हिय्स: 7ssl</description>
<description xml:lang="ku">Beşa 7ssl</description>
<description xml:lang="lt">Sekcija 7ssl</description>
<description xml:lang="lv">Sadaļa 7ssl</description>
<description xml:lang="mai">खंड 7ssl</description>
<description xml:lang="mg">Fitsinjarana 7ssl</description>
<description xml:lang="mk">Оддел 7ssl</description>
<description xml:lang="ml">വിഭാഗം - 7ssl</description>
<description xml:lang="mr">विभाग 7ssl</description>
<description xml:lang="nb">Seksjon 7ssl</description>
<description xml:lang="ne">सेक्सन 7ssl</description>
<description xml:lang="nl">Sectie 7ssl</description>
<description xml:lang="nn">Seksjon 7ssl</description>
<description xml:lang="oc">Seccion 7ssl</description>
<description xml:lang="or">ବିଭାଗ 7ssl</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 7ssl</description>
<description xml:lang="pl">Rozdział 7ssl</description>
<description xml:lang="pt">Secção 7ssl</description>
<description xml:lang="pt_BR">Seção 7ssl</description>
<description xml:lang="ro">Secțiunea 7ssl</description>
<description xml:lang="ru">Раздел 7ssl</description>
<description xml:lang="sl">Odsek 7ssl</description>
<description xml:lang="sq">Seksion 7ssl</description>
<description xml:lang="sr">Одељак 7ssl</description>
<description xml:lang="sr@latin">Odeljak 7ssl</description>
<description xml:lang="sv">Avsnitt 7ssl</description>
<description xml:lang="ta">பிரிவு 7ssl</description>
<description xml:lang="te">7ssl భాగము</description>
<description xml:lang="th">หมวด 7ssl</description>
<description xml:lang="tr">Bölüm 7ssl</description>
<description xml:lang="uk">Розділ 7ssl</description>
<description xml:lang="uz">Boʻlim 7ssl</description>
<description xml:lang="uz@cyrillic">Бўлим 7ssl</description>
<description xml:lang="vi">Phần 7ssl</description>
<description xml:lang="wa">Seccion 7ssl</description>
<description xml:lang="zh_CN">7ssl 节</description>
<description xml:lang="zh_HK">第 7ssl 節</description>
<description xml:lang="zh_TW">第 7ssl 節</description>
</toc>
</toc>
<toc sect="8 8l" id="Man-man8">
<title>System Administration</title>
<title xml:lang="af">Stelseladministrasie</title>
<title xml:lang="am">የአሰራሩ መቆጣጠሪያ</title>
<title xml:lang="ar">إدارة النظام</title>
<title xml:lang="as">ব্যৱস্থাপ্ৰণালী সংক্ৰান্ত প্ৰশাসনিক কৰ্ম</title>
<title xml:lang="ast">Alministración del Sistema</title>
<title xml:lang="az">Sistem İdarəsi</title>
<title xml:lang="be">Сыстэмнае адміністраваньне</title>
<title xml:lang="be@latin">Systemnaje administravańnie</title>
<title xml:lang="bg">Системна администрация</title>
<title xml:lang="bn">সিস্টেম সংক্রান্ত কাজ পরিচালনা</title>
<title xml:lang="bn_IN">সিস্টেম সংক্রান্ত প্রশাসনিক কর্ম</title>
<title xml:lang="br">Mererezh ar reizhiad</title>
<title xml:lang="bs">Sistemska Administracija</title>
<title xml:lang="ca">Administració del sistema</title>
<title xml:lang="ca@valencia">Administració del sistema</title>
<title xml:lang="crh">Sistem Yönetimi</title>
<title xml:lang="cs">Správa systému</title>
<title xml:lang="cy">Gweinyddiaeth System</title>
<title xml:lang="da">Systemadministration</title>
<title xml:lang="de">Systemverwaltung</title>
<title xml:lang="dz">རིམ་ལུགས་བདག་སྐྱོང་།</title>
<title xml:lang="el">Διαχείριση Συστήματος</title>
<title xml:lang="en@shaw">𐑕𐑦𐑕𐑑𐑩𐑥 𐑩𐑛𐑥𐑦𐑯𐑦𐑕𐑑𐑮𐑱𐑖𐑩𐑯</title>
<title xml:lang="en_CA">System Administration</title>
<title xml:lang="en_GB">System Administration</title>
<title xml:lang="eo">Sistemadministrado</title>
<title xml:lang="es">Administración del sistema</title>
<title xml:lang="et">Süsteemihaldus</title>
<title xml:lang="eu">Sistema-administrazioa</title>
<title xml:lang="fa">مدیریت سیستم</title>
<title xml:lang="fi">Järjestelmänvalvonta</title>
<title xml:lang="fr">Administration système</title>
<title xml:lang="ga">Riarachán Córais</title>
<title xml:lang="gl">Administración do sistema</title>
<title xml:lang="gu">સિસ્ટમ સંચાલન</title>
<title xml:lang="he">ניהול מערכת</title>
<title xml:lang="hi">तंत्र प्रशासन</title>
<title xml:lang="hr">Administracija sustava</title>
<title xml:lang="hu">Rendszeradminisztráció</title>
<title xml:lang="id">Administrasi Sistem</title>
<title xml:lang="is">Kerfisstjórnun</title>
<title xml:lang="it">Amministrazione del sistema</title>
<title xml:lang="ja">システム管理</title>
<title xml:lang="ka">სისტემის ადმინისტრირება</title>
<title xml:lang="kn">ಗಣಕ ವ್ಯವಸ್ಥಾಪನೆ</title>
<title xml:lang="ko">시스템 관리</title>
<title xml:lang="ks">सिस्टम नजर थव्न वोल</title>
<title xml:lang="ku">Rêveberiya Pergalê</title>
<title xml:lang="ky">Системаны администрлөө</title>
<title xml:lang="li">Systeemadminnestrasie</title>
<title xml:lang="lt">Sistemos administravimas</title>
<title xml:lang="lv">Sistēmas administrēšana</title>
<title xml:lang="mai">सिस्टम प्रशासन</title>
<title xml:lang="mg">Fitantanan-drafitra</title>
<title xml:lang="mk">Администрација на системот</title>
<title xml:lang="ml">സിസ്റ്റം അഡ്മിനിസ്ട്രേഷന്</title>
<title xml:lang="mn">Системийн зохион байгуулагч</title>
<title xml:lang="mr">प्रणाली प्रधान</title>
<title xml:lang="ms">Pentadbir Sistem</title>
<title xml:lang="nb">Systemadministrasjon</title>
<title xml:lang="nds">Systeemadministratie</title>
<title xml:lang="ne">प्रणाली प्रशासन</title>
<title xml:lang="nl">Systeemadministratie</title>
<title xml:lang="nn">Systemadministrasjon</title>
<title xml:lang="nso">Taolo ya Tshepedišo</title>
<title xml:lang="oc">Administracion sistèma</title>
<title xml:lang="or">ତନ୍ତ୍ର ପ୍ରଶାସନ</title>
<title xml:lang="pa">ਸਿਸਟਮ ਪਰਸ਼ਾਸ਼ਨ</title>
<title xml:lang="pl">Administracja systemem</title>
<title xml:lang="pt">Administração de Sistema</title>
<title xml:lang="pt_BR">Administração do sistema</title>
<title xml:lang="ro">Administrare sistem</title>
<title xml:lang="ru">Системное администрирование</title>
<title xml:lang="sk">Systémová administrácia</title>
<title xml:lang="sl">Sistemska administracija</title>
<title xml:lang="sq">Administrimi i sistemit</title>
<title xml:lang="sr">Администрација система</title>
<title xml:lang="sr@latin">Administracija sistema</title>
<title xml:lang="sv">Systemadministration</title>
<title xml:lang="ta">கணினி நிர்வாகம்</title>
<title xml:lang="te">వ్యవస్థ నిర్వహణ</title>
<title xml:lang="tg">Мудирияти Системавӣ</title>
<title xml:lang="th">การดูแลระบบ</title>
<title xml:lang="tr">Sistem Yönetimi</title>
<title xml:lang="ug">سىستېما باشقۇرۇش</title>
<title xml:lang="uk">Системне адміністрування</title>
<title xml:lang="uz">Tizimni boshqarish</title>
<title xml:lang="uz@cyrillic">Тизимни бошқариш</title>
<title xml:lang="vi">Quản lí hệ thống</title>
<title xml:lang="wa">Administråcion do sistinme</title>
<title xml:lang="xh">Ulawulo Lwenkqubo</title>
<title xml:lang="zh_CN">系统管理</title>
<title xml:lang="zh_HK">系統管理</title>
<title xml:lang="zh_TW">系統管理</title>
<title xml:lang="zu">Ukubusa isiga-nyezi</title>
<description>Sections 8 and 8l</description>
<description xml:lang="ar">الفصول 8 و 8l</description>
<description xml:lang="as">বিভাগ 8 আৰু 8l</description>
<description xml:lang="ast">Seiciones 8 y 8l</description>
<description xml:lang="be">Разьдзелы 8 і 8l</description>
<description xml:lang="be@latin">Raździeły 8 i 8l</description>
<description xml:lang="bg">Раздели 8 и 8l</description>
<description xml:lang="bn">বিভাগ 8 ও 8l</description>
<description xml:lang="bn_IN">বিভাগ 8 ও 8l</description>
<description xml:lang="ca">Seccions 8 i 8l</description>
<description xml:lang="ca@valencia">Seccions 8 i 8l</description>
<description xml:lang="crh">Bölüm 8 ve 8l</description>
<description xml:lang="cs">Oddíly 8 a 8l</description>
<description xml:lang="cy">Adrannau 8 a 8l</description>
<description xml:lang="da">Afsnit 8 og 8l</description>
<description xml:lang="de">Abschnitte 8 und 8l</description>
<description xml:lang="dz">དབྱེ་ཚན་ ༨ དང་ ༨ཨེལ།</description>
<description xml:lang="el">Ενότητες 8 και 8l</description>
<description xml:lang="en@shaw">𐑕𐑧𐑒𐑖𐑩𐑯𐑟 8 𐑯 8l</description>
<description xml:lang="en_GB">Sections 8 and 8l</description>
<description xml:lang="es">Secciones 8 y 8l</description>
<description xml:lang="et">Peatükid 8 ja 8l</description>
<description xml:lang="eu">8 eta 8l atalak</description>
<description xml:lang="fa">بخشهای 8 و 8l</description>
<description xml:lang="fi">Osat 8 ja 8l</description>
<description xml:lang="fr">Sections 8 et 8l</description>
<description xml:lang="ga">Rannáin 8 agus 8l</description>
<description xml:lang="gl">Seccións 8 e 8l</description>
<description xml:lang="gu">વિભાગો 8 અને 8l</description>
<description xml:lang="he">חלקים 8 ו־8l</description>
<description xml:lang="hi">खंड 8 और 8l</description>
<description xml:lang="hu">8. és 8l szakaszok</description>
<description xml:lang="id">Bagian 8 dan 8l</description>
<description xml:lang="it">Sezioni 8 e 8l</description>
<description xml:lang="ja">セクション 8 と 8l</description>
<description xml:lang="ka">სექციები 8 და 8l</description>
<description xml:lang="kn">8 ಹಾಗು 8l ವಿಭಾಗಗಳು</description>
<description xml:lang="ko">섹션 8 및 8l</description>
<description xml:lang="ks">हिय्स: 8 तह् 8l</description>
<description xml:lang="ku">Beşên 8 û 8l</description>
<description xml:lang="lt">Sekcijos 8 ir 8l</description>
<description xml:lang="lv">Sadaļas 8 un 8l</description>
<description xml:lang="mai">खंड 8 आओर 8l</description>
<description xml:lang="mg">Fitsinjarana 8 ary 8l</description>
<description xml:lang="mk">Оддели 8 и 8l</description>
<description xml:lang="ml">8, 8l വിഭാഗങ്ങള്</description>
<description xml:lang="mr">विभाग 8 आनि 8l</description>
<description xml:lang="nb">Seksjon 8 og 8l</description>
<description xml:lang="ne">सेक्सन 8 र 8l</description>
<description xml:lang="nl">Secties 8 en 8l</description>
<description xml:lang="nn">Seksjon 8 og 8l</description>
<description xml:lang="oc">Seccions 8 e 8l</description>
<description xml:lang="or">ବିଭାଗ 8 ଏବଂ 8l</description>
<description xml:lang="pa">ਸ਼ੈਕਸ਼ਨ 8 ਅਤੇ 8l</description>
<description xml:lang="pl">Rozdziały 8 i 8l</description>
<description xml:lang="pt">Secções 8 e 8l</description>
<description xml:lang="pt_BR">Seções 8 e 8l</description>
<description xml:lang="ro">Secțiunile 8 și 8l</description>
<description xml:lang="ru">Разделы 8 и 8l</description>
<description xml:lang="sl">Odseki 8 in 8l</description>
<description xml:lang="sq">Seksione 8 dhe 8l</description>
<description xml:lang="sr">Одељци 8 и 8l</description>
<description xml:lang="sr@latin">Odeljci 8 i 8l</description>
<description xml:lang="sv">Avsnitten 8 och 8l</description>
<description xml:lang="ta">பிரிவுகள் 8l மற்றும் 8l</description>
<description xml:lang="te">8 మరియు 8l భాగములు</description>
<description xml:lang="th">หมวด 8 และ 8l</description>
<description xml:lang="tr">Bölüm 8 ve 8l</description>
<description xml:lang="uk">Розділи 8 та 8l</description>
<description xml:lang="uz">Boʻlimlar 8 va 8l</description>
<description xml:lang="uz@cyrillic">Бўлимлар 8 ва 8l</description>
<description xml:lang="vi">Phần 8 và 8l</description>
<description xml:lang="wa">Seccions 8 eyet 8l</description>
<description xml:lang="zh_CN">8 和 8l 节</description>
<description xml:lang="zh_HK">第 8 及 8I 節</description>
<description xml:lang="zh_TW">第 8 及 8I 節</description>
</toc>
</toc>
|