summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/getopt.py
blob: 08fe692ce0323b84914b9f8b114fc6ceaa6177f4 (plain)
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
#!/usr/bin/env python

# Samba-specific bits for optparse
# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""Support for parsing Samba-related command-line options."""

import optparse, os
from credentials import Credentials, DONT_USE_KERBEROS, MUST_USE_KERBEROS
from hostconfig import Hostconfig
import samba

__docformat__ = "restructuredText"

class SambaOptions(optparse.OptionGroup):
    """General Samba-related command line options."""
    def __init__(self, parser):
        import os, param
        optparse.OptionGroup.__init__(self, parser, "Samba Common Options")
        self.add_option("-s", "--configfile", action="callback",
                        type=str, metavar="FILE", help="Configuration file",
                        callback=self._load_configfile)
        self.add_option("-d", "--debuglevel", action="callback",
                        type=int, metavar="DEBUGLEVEL", help="debug level",
                        callback=self._set_debuglevel)
        self.add_option("--option", action="callback",
                        type=str, metavar="OPTION", help="set smb.conf option from command line",
                        callback=self._set_option)
        self.add_option("--realm", action="callback",
                        type=str, metavar="REALM", help="set the realm name",
                        callback=self._set_realm)
        self._configfile = None
        self._lp = param.LoadParm()

    def get_loadparm_path(self):
        """Return the path to the smb.conf file specified on the command line.  """
        return self._configfile

    def _load_configfile(self, option, opt_str, arg, parser):
        self._configfile = arg

    def _set_debuglevel(self, option, opt_str, arg, parser):
        self._lp.set('debug level', str(arg))

    def _set_realm(self, option, opt_str, arg, parser):
        self._lp.set('realm', arg)

    def _set_option(self, option, opt_str, arg, parser):
        if arg.find('=') == -1:
            print("--option takes a 'a=b' argument")
            sys.exit(1)
        a = arg.split('=')
        self._lp.set(a[0], a[1])

    def get_loadparm(self):
        """Return a loadparm object with data specified on the command line.  """
        if self._configfile is not None:
            self._lp.load(self._configfile)
        elif os.getenv("SMB_CONF_PATH") is not None:
            self._lp.load(os.getenv("SMB_CONF_PATH"))
        else:
            self._lp.load_default()
        return self._lp

    def get_hostconfig(self):
        return Hostconfig(self.get_loadparm())


class VersionOptions(optparse.OptionGroup):
    """Command line option for printing Samba version."""
    def __init__(self, parser):
        optparse.OptionGroup.__init__(self, parser, "Version Options")
        self.add_option("--version", action="callback",
                callback=self._display_version, 
                help="Display version number")

    def _display_version(self, option, opt_str, arg, parser):
        import samba, sys
        print samba.version
        sys.exit(0)


class CredentialsOptions(optparse.OptionGroup):
    """Command line options for specifying credentials."""
    def __init__(self, parser):
        self.no_pass = True
        self.ipaddress = None
        optparse.OptionGroup.__init__(self, parser, "Credentials Options")
        self.add_option("--simple-bind-dn", metavar="DN", action="callback",
                        callback=self._set_simple_bind_dn, type=str,
                        help="DN to use for a simple bind")
        self.add_option("--password", metavar="PASSWORD", action="callback",
                        help="Password", type=str, callback=self._set_password)
        self.add_option("-U", "--username", metavar="USERNAME",
                        action="callback", type=str,
                        help="Username", callback=self._parse_username)
        self.add_option("-W", "--workgroup", metavar="WORKGROUP",
                        action="callback", type=str,
                        help="Workgroup", callback=self._parse_workgroup)
        self.add_option("-N", "--no-pass", action="store_true",
                        help="Don't ask for a password")
        self.add_option("-k", "--kerberos", metavar="KERBEROS",
                        action="callback", type=str,
                        help="Use Kerberos", callback=self._set_kerberos)
        self.add_option("", "--ipaddress", metavar="IPADDRESS",
                        action="callback", type=str,
                        help="IP address of server", callback=self._set_ipaddress)
        self.creds = Credentials()

    def _parse_username(self, option, opt_str, arg, parser):
        self.creds.parse_string(arg)

    def _parse_workgroup(self, option, opt_str, arg, parser):
        self.creds.set_domain(arg)

    def _set_password(self, option, opt_str, arg, parser):
        self.creds.set_password(arg)
        self.no_pass = False

    def _set_ipaddress(self, option, opt_str, arg, parser):
        self.ipaddress = arg

    def _set_kerberos(self, option, opt_str, arg, parser):
        if bool(arg) or arg.lower() == "yes":
            self.creds.set_kerberos_state(MUST_USE_KERBEROS)
        else:
            self.creds.set_kerberos_state(DONT_USE_KERBEROS)

    def _set_simple_bind_dn(self, option, opt_str, arg, parser):
        self.creds.set_bind_dn(arg)

    def get_credentials(self, lp):
        """Obtain the credentials set on the command-line.

        :param lp: Loadparm object to use.
        :return: Credentials object
        """
        self.creds.guess(lp)
        if self.no_pass:
            self.creds.set_cmdline_callbacks()
        return self.creds

class CredentialsOptionsDouble(CredentialsOptions):
    """Command line options for specifying credentials of two servers."""
    def __init__(self, parser):
        CredentialsOptions.__init__(self, parser)
        self.no_pass2 = True
        self.add_option("--simple-bind-dn2", metavar="DN2", action="callback",
                        callback=self._set_simple_bind_dn2, type=str,
                        help="DN to use for a simple bind")
        self.add_option("--password2", metavar="PASSWORD2", action="callback",
                        help="Password", type=str, callback=self._set_password2)
        self.add_option("--username2", metavar="USERNAME2",
                        action="callback", type=str,
                        help="Username for second server", callback=self._parse_username2)
        self.add_option("--workgroup2", metavar="WORKGROUP2",
                        action="callback", type=str,
                        help="Workgroup for second server", callback=self._parse_workgroup2)
        self.add_option("--no-pass2", action="store_true",
                        help="Don't ask for a password for the second server")
        self.add_option("--kerberos2", metavar="KERBEROS2",
                        action="callback", type=str,
                        help="Use Kerberos", callback=self._set_kerberos2)
        self.creds2 = Credentials()

    def _parse_username2(self, option, opt_str, arg, parser):
        self.creds2.parse_string(arg)

    def _parse_workgroup2(self, option, opt_str, arg, parser):
        self.creds2.set_domain(arg)

    def _set_password2(self, option, opt_str, arg, parser):
        self.creds2.set_password(arg)
        self.no_pass2 = False

    def _set_kerberos2(self, option, opt_str, arg, parser):
        if bool(arg) or arg.lower() == "yes":
            self.creds2.set_kerberos_state(MUST_USE_KERBEROS)
        else:
            self.creds2.set_kerberos_state(DONT_USE_KERBEROS)

    def _set_simple_bind_dn2(self, option, opt_str, arg, parser):
        self.creds2.set_bind_dn(arg)

    def get_credentials2(self, lp, guess=True):
        """Obtain the credentials set on the command-line.

        :param lp: Loadparm object to use.
        :param guess: Try guess Credentials from environment
        :return: Credentials object
        """
        if guess:
            self.creds2.guess(lp)
        elif not self.creds2.get_username():
                self.creds2.set_anonymous()

        if self.no_pass2:
            self.creds2.set_cmdline_callbacks()
        return self.creds2
4'>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
%PDF-1.2
%âãÏÓ
1 0 obj<</Producer(htmldoc 1.8.11 Copyright 1997-2001 Easy Software Products, All Rights Reserved.)/CreationDate(D:20010601114858Z)/Title(SAMBA Project Documentation)/Creator(Modular DocBook HTML Stylesheet Version 1.57)>>endobj
2 0 obj<</Type/Encoding/Differences[ 32/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle/parenleft/parenright/asterisk/plus/comma/minus/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/grave/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe 159/Ydieresis/space/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]>>endobj
3 0 obj<</Type/Font/Subtype/Type1/BaseFont/Courier/Encoding 2 0 R>>endobj
4 0 obj<</Type/Font/Subtype/Type1/BaseFont/Courier-Bold/Encoding 2 0 R>>endobj
5 0 obj<</Type/Font/Subtype/Type1/BaseFont/Courier-Oblique/Encoding 2 0 R>>endobj
6 0 obj<</Type/Font/Subtype/Type1/BaseFont/Courier-BoldOblique/Encoding 2 0 R>>endobj
7 0 obj<</Type/Font/Subtype/Type1/BaseFont/Times-Roman/Encoding 2 0 R>>endobj
8 0 obj<</Type/Font/Subtype/Type1/BaseFont/Times-Bold/Encoding 2 0 R>>endobj
9 0 obj<</Type/Font/Subtype/Type1/BaseFont/Times-Italic/Encoding 2 0 R>>endobj
10 0 obj<</Type/Font/Subtype/Type1/BaseFont/Helvetica/Encoding 2 0 R>>endobj
11 0 obj<</Type/Font/Subtype/Type1/BaseFont/Helvetica-Bold/Encoding 2 0 R>>endobj
12 0 obj<</Type/Font/Subtype/Type1/BaseFont/Symbol>>endobj
13 0 obj<</S/URI/URI(http://www.samba.org/)>>endobj
14 0 obj<</Subtype/Link/Rect[188.4 476.2 289.8 489.2]/Border[0 0 0]/A 13 0 R>>endobj
15 0 obj<</S/URI/URI(mailto:jerry@samba.org)>>endobj
16 0 obj<</Subtype/Link/Rect[72.0 463.0 148.4 476.0]/Border[0 0 0]/A 15 0 R>>endobj
17 0 obj[14 0 R
16 0 R
]endobj
18 0 obj<</S/URI/URI(http://www.samba.org/)>>endobj
19 0 obj<</Subtype/Link/Rect[369.9 587.8 471.0 600.8]/Border[0 0 0]/A 18 0 R>>endobj
20 0 obj[19 0 R
]endobj
21 0 obj<</Subtype/Link/Rect[295.1 319.4 385.6 332.4]/Border[0 0 0]/Dest[481 0 R/XYZ null 656 0]>>endobj
22 0 obj[21 0 R
]endobj
23 0 obj<</S/URI/URI(http://www.microsoft.com/NTServer/nts/downloads/winfeatures/NTSDistrFile/AdminGuide.asp)>>endobj
24 0 obj<</Subtype/Link/Rect[72.0 590.2 183.5 603.2]/Border[0 0 0]/A 23 0 R>>endobj
25 0 obj<</S/URI/URI(#HOSTMSDFS)>>endobj
26 0 obj<</Subtype/Link/Rect[347.8 511.0 420.4 524.0]/Border[0 0 0]/A 25 0 R>>endobj
27 0 obj<</S/URI/URI(#MSDFSROOT)>>endobj
28 0 obj<</Subtype/Link/Rect[383.6 497.8 456.2 510.8]/Border[0 0 0]/A 27 0 R>>endobj
29 0 obj[24 0 R
26 0 R
28 0 R
]endobj
30 0 obj<</S/URI/URI(http://imprints.sourceforge.net)>>endobj
31 0 obj<</Subtype/Link/Rect[146.5 548.2 280.3 561.2]/Border[0 0 0]/A 30 0 R>>endobj
32 0 obj<</S/URI/URI(http://msdn.microsoft.com/)>>endobj
33 0 obj<</Subtype/Link/Rect[221.4 521.8 341.1 534.8]/Border[0 0 0]/A 32 0 R>>endobj
34 0 obj<</S/URI/URI(http://support.microsoft.com/support/kb/articles/Q189/1/05.ASP)>>endobj
35 0 obj<</Subtype/Link/Rect[72.0 297.4 355.9 310.4]/Border[0 0 0]/A 34 0 R>>endobj
36 0 obj[31 0 R
33 0 R
35 0 R
]endobj
37 0 obj<</Subtype/Link/Rect[462.9 705.8 540.9 718.8]/Border[0 0 0]/Dest[511 0 R/XYZ null 191 0]>>endobj
38 0 obj<</S/URI/URI(#WRITELIST)>>endobj
39 0 obj<</Subtype/Link/Rect[91.9 391.4 157.9 404.4]/Border[0 0 0]/A 38 0 R>>endobj
40 0 obj<</S/URI/URI(conf.5.html)>>endobj
41 0 obj<</Subtype/Link/Rect[192.7 378.2 294.1 391.2]/Border[0 0 0]/A 40 0 R>>endobj
42 0 obj<</S/URI/URI(#GUESTOK)>>endobj
43 0 obj<</Subtype/Link/Rect[163.3 351.8 231.3 364.8]/Border[0 0 0]/A 42 0 R>>endobj
44 0 obj<</S/URI/URI(#MAPTOGUEST)>>endobj
45 0 obj<</Subtype/Link/Rect[401.4 246.2 492.0 259.2]/Border[0 0 0]/A 44 0 R>>endobj
46 0 obj<</S/URI/URI(#MAPTOGUEST)>>endobj
47 0 obj<</Subtype/Link/Rect[108.0 233.0 130.0 246.0]/Border[0 0 0]/A 46 0 R>>endobj
48 0 obj[37 0 R
39 0 R
41 0 R
43 0 R
45 0 R
47 0 R
]endobj
49 0 obj<</S/URI/URI(#PRINTERADMIN)>>endobj
50 0 obj<</Subtype/Link/Rect[433.8 647.0 526.2 660.0]/Border[0 0 0]/A 49 0 R>>endobj
51 0 obj[50 0 R
]endobj
52 0 obj<</S/URI/URI(rpcclient.1.html)>>endobj
53 0 obj<</Subtype/Link/Rect[239.1 664.6 382.1 677.6]/Border[0 0 0]/A 52 0 R>>endobj
54 0 obj<</S/URI/URI(#SHOWADDPRINTERWIZARD)>>endobj
55 0 obj<</Subtype/Link/Rect[108.0 240.2 306.0 253.2]/Border[0 0 0]/A 54 0 R>>endobj
56 0 obj<</S/URI/URI(#ADDPRINTERCOMMAND)>>endobj
57 0 obj<</Subtype/Link/Rect[456.6 213.8 535.8 226.8]/Border[0 0 0]/A 56 0 R>>endobj
58 0 obj<</S/URI/URI(#ADDPRINTERCOMMAND)>>endobj
59 0 obj<</Subtype/Link/Rect[72.0 200.6 118.2 213.6]/Border[0 0 0]/A 58 0 R>>endobj
60 0 obj<</S/URI/URI(#DELETEPRINTERCOMMAND)>>endobj
61 0 obj<</Subtype/Link/Rect[189.3 95.0 334.5 108.0]/Border[0 0 0]/A 60 0 R>>endobj
62 0 obj[53 0 R
55 0 R
57 0 R
59 0 R
61 0 R
]endobj
63 0 obj<</S/URI/URI(#ENUMPORTSCOMMAND)>>endobj
64 0 obj<</Subtype/Link/Rect[451.4 585.4 510.8 598.4]/Border[0 0 0]/A 63 0 R>>endobj
65 0 obj<</S/URI/URI(#ENUMPORTSCOMMAND)>>endobj
66 0 obj<</Subtype/Link/Rect[72.0 572.2 118.2 585.2]/Border[0 0 0]/A 65 0 R>>endobj
67 0 obj<</S/URI/URI(http://imprints.sourceforge.net/)>>endobj
68 0 obj<</Subtype/Link/Rect[303.3 487.4 442.9 500.4]/Border[0 0 0]/A 67 0 R>>endobj
69 0 obj[64 0 R
66 0 R
68 0 R
]endobj
70 0 obj<</S/URI/URI(http://imprints.sourceforge.net/)>>endobj
71 0 obj<</Subtype/Link/Rect[108.0 154.6 244.9 167.6]/Border[0 0 0]/A 70 0 R>>endobj
72 0 obj[71 0 R
]endobj
73 0 obj<</S/URI/URI(smbpasswd.8.html)>>endobj
74 0 obj<</Subtype/Link/Rect[221.4 416.2 287.7 429.2]/Border[0 0 0]/A 73 0 R>>endobj
75 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
76 0 obj<</Subtype/Link/Rect[353.1 99.4 425.7 112.4]/Border[0 0 0]/A 75 0 R>>endobj
77 0 obj<</S/URI/URI(#SECURITY)>>endobj
78 0 obj<</Subtype/Link/Rect[169.1 59.8 241.7 72.8]/Border[0 0 0]/A 77 0 R>>endobj
79 0 obj[74 0 R
76 0 R
78 0 R
]endobj
80 0 obj<</S/URI/URI(#WORKGROUP)>>endobj
81 0 obj<</Subtype/Link/Rect[146.2 694.6 225.4 707.6]/Border[0 0 0]/A 80 0 R>>endobj
82 0 obj<</S/URI/URI(#ENCRYPTPASSWORDS)>>endobj
83 0 obj<</Subtype/Link/Rect[224.7 615.4 343.5 628.4]/Border[0 0 0]/A 82 0 R>>endobj
84 0 obj<</S/URI/URI(#PASSWORDSERVER)>>endobj
85 0 obj<</Subtype/Link/Rect[188.7 575.8 307.5 588.8]/Border[0 0 0]/A 84 0 R>>endobj
86 0 obj[81 0 R
83 0 R
85 0 R
]endobj
87 0 obj<</S/URI/URI(#SECURITYEQUALSSERVER)>>endobj
88 0 obj<</Subtype/Link/Rect[277.9 651.4 354.1 664.4]/Border[0 0 0]/A 87 0 R>>endobj
89 0 obj<</S/URI/URI(winbind.html)>>endobj
90 0 obj<</Subtype/Link/Rect[153.9 598.6 222.3 611.6]/Border[0 0 0]/A 89 0 R>>endobj
91 0 obj<</S/URI/URI(http://www.linuxworld.com)>>endobj
92 0 obj<</Subtype/Link/Rect[443.5 281.8 500.6 294.8]/Border[0 0 0]/A 91 0 R>>endobj
93 0 obj<</S/URI/URI(http://www.linuxworld.com/linuxworld/lw-1998-10/lw-10-samba.html)>>endobj
94 0 obj<</Subtype/Link/Rect[72.0 268.6 189.3 281.6]/Border[0 0 0]/A 93 0 R>>endobj
95 0 obj[88 0 R
90 0 R
92 0 R
94 0 R
]endobj
96 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
97 0 obj<</Subtype/Link/Rect[182.3 603.4 254.9 616.4]/Border[0 0 0]/A 96 0 R>>endobj
98 0 obj<</S/URI/URI(EMCRYPTION.html)>>endobj
99 0 obj<</Subtype/Link/Rect[334.9 603.4 418.9 616.4]/Border[0 0 0]/A 98 0 R>>endobj
100 0 obj<</S/URI/URI(UNIX_INSTALL.html)>>endobj
101 0 obj<</Subtype/Link/Rect[72.0 426.2 173.7 439.2]/Border[0 0 0]/A 100 0 R>>endobj
102 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
103 0 obj<</Subtype/Link/Rect[167.0 413.0 268.4 426.0]/Border[0 0 0]/A 102 0 R>>endobj
104 0 obj[97 0 R
99 0 R
101 0 R
103 0 R
]endobj
105 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
106 0 obj<</Subtype/Link/Rect[468.3 570.2 549.6 583.2]/Border[0 0 0]/A 105 0 R>>endobj
107 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
108 0 obj<</Subtype/Link/Rect[72.0 557.0 92.8 570.0]/Border[0 0 0]/A 107 0 R>>endobj
109 0 obj<</S/URI/URI(#NETBIOSNAME)>>endobj
110 0 obj<</Subtype/Link/Rect[94.6 483.6 159.4 494.6]/Border[0 0 0]/A 109 0 R>>endobj
111 0 obj<</S/URI/URI(#WORKGROUP)>>endobj
112 0 obj<</Subtype/Link/Rect[94.6 472.8 143.2 483.8]/Border[0 0 0]/A 111 0 R>>endobj
113 0 obj<</S/URI/URI(#OSLEVEL)>>endobj
114 0 obj<</Subtype/Link/Rect[94.6 440.4 137.8 451.4]/Border[0 0 0]/A 113 0 R>>endobj
115 0 obj<</S/URI/URI(#PERFERREDMASTER)>>endobj
116 0 obj<</Subtype/Link/Rect[94.6 429.6 181.0 440.6]/Border[0 0 0]/A 115 0 R>>endobj
117 0 obj<</S/URI/URI(#DOMAINMASTER)>>endobj
118 0 obj<</Subtype/Link/Rect[94.6 418.8 164.8 429.8]/Border[0 0 0]/A 117 0 R>>endobj
119 0 obj<</S/URI/URI(#LOCALMASTER)>>endobj
120 0 obj<</Subtype/Link/Rect[94.6 408.0 159.4 419.0]/Border[0 0 0]/A 119 0 R>>endobj
121 0 obj<</S/URI/URI(#SECURITYEQUALSUSER)>>endobj
122 0 obj<</Subtype/Link/Rect[94.6 375.6 137.8 386.6]/Border[0 0 0]/A 121 0 R>>endobj
123 0 obj<</S/URI/URI(#ENCRYPTPASSWORDS)>>endobj
124 0 obj<</Subtype/Link/Rect[94.6 343.2 186.4 354.2]/Border[0 0 0]/A 123 0 R>>endobj
125 0 obj<</S/URI/URI(#DOMAINLOGONS)>>endobj
126 0 obj<</Subtype/Link/Rect[94.6 310.8 164.8 321.8]/Border[0 0 0]/A 125 0 R>>endobj
127 0 obj<</S/URI/URI(#LOGONPATH)>>endobj
128 0 obj<</Subtype/Link/Rect[94.6 278.4 148.6 289.4]/Border[0 0 0]/A 127 0 R>>endobj
129 0 obj<</S/URI/URI(#LOGONDRIVE)>>endobj
130 0 obj<</Subtype/Link/Rect[94.6 235.2 154.0 246.2]/Border[0 0 0]/A 129 0 R>>endobj
131 0 obj<</S/URI/URI(#LOGONHOME)>>endobj
132 0 obj<</Subtype/Link/Rect[94.6 224.4 148.6 235.4]/Border[0 0 0]/A 131 0 R>>endobj
133 0 obj<</S/URI/URI(#LOGONSCRIPT)>>endobj
134 0 obj<</Subtype/Link/Rect[94.6 181.2 159.4 192.2]/Border[0 0 0]/A 133 0 R>>endobj
135 0 obj<</S/URI/URI(#PATH)>>endobj
136 0 obj<</Subtype/Link/Rect[94.6 138.0 116.2 149.0]/Border[0 0 0]/A 135 0 R>>endobj
137 0 obj<</S/URI/URI(#WRITEABLE)>>endobj
138 0 obj<</Subtype/Link/Rect[94.6 127.2 143.2 138.2]/Border[0 0 0]/A 137 0 R>>endobj
139 0 obj<</S/URI/URI(#WRITELIST)>>endobj
140 0 obj<</Subtype/Link/Rect[94.6 116.4 148.6 127.4]/Border[0 0 0]/A 139 0 R>>endobj
141 0 obj<</S/URI/URI(#PATH)>>endobj
142 0 obj<</Subtype/Link/Rect[94.6 73.2 116.2 84.2]/Border[0 0 0]/A 141 0 R>>endobj
143 0 obj<</S/URI/URI(#WRITEABLE)>>endobj
144 0 obj<</Subtype/Link/Rect[94.6 62.4 143.2 73.4]/Border[0 0 0]/A 143 0 R>>endobj
145 0 obj[106 0 R
108 0 R
110 0 R
112 0 R
114 0 R
116 0 R
118 0 R
120 0 R
122 0 R
124 0 R
126 0 R
128 0 R
130 0 R
132 0 R
134 0 R
136 0 R
138 0 R
140 0 R
142 0 R
144 0 R
]endobj
146 0 obj<</S/URI/URI(#CREATEMASK)>>endobj
147 0 obj<</Subtype/Link/Rect[94.6 722.0 154.0 733.0]/Border[0 0 0]/A 146 0 R>>endobj
148 0 obj<</S/URI/URI(#DIRECTORYMASK)>>endobj
149 0 obj<</Subtype/Link/Rect[94.6 711.2 170.2 722.2]/Border[0 0 0]/A 148 0 R>>endobj
150 0 obj<</S/URI/URI(ENCRYPTION.html)>>endobj
151 0 obj<</Subtype/Link/Rect[108.0 645.4 200.6 658.4]/Border[0 0 0]/A 150 0 R>>endobj
152 0 obj<</S/URI/URI(#DOMAINADMINUSERS)>>endobj
153 0 obj<</Subtype/Link/Rect[505.2 553.0 538.2 566.0]/Border[0 0 0]/A 152 0 R>>endobj
154 0 obj<</S/URI/URI(#DOMAINADMINUSERS)>>endobj
155 0 obj<</Subtype/Link/Rect[72.0 539.8 124.9 552.8]/Border[0 0 0]/A 154 0 R>>endobj
156 0 obj<</S/URI/URI(#DOMAINADMINGROUP)>>endobj
157 0 obj<</Subtype/Link/Rect[146.2 539.8 240.7 552.8]/Border[0 0 0]/A 156 0 R>>endobj
158 0 obj[147 0 R
149 0 R
151 0 R
153 0 R
155 0 R
157 0 R
]endobj
159 0 obj<</S/URI/URI(smbpasswd.6.html)>>endobj
160 0 obj<</Subtype/Link/Rect[72.0 524.2 138.6 537.2]/Border[0 0 0]/A 159 0 R>>endobj
161 0 obj<</S/URI/URI(#ADDUSERSCRIPT)>>endobj
162 0 obj<</Subtype/Link/Rect[427.0 269.0 491.2 282.0]/Border[0 0 0]/A 161 0 R>>endobj
163 0 obj[160 0 R
162 0 R
]endobj
164 0 obj<</S/URI/URI(http://www.microsoft.com/ntserver/management/deployment/planguide/prof_policies.asp)>>endobj
165 0 obj<</Subtype/Link/Rect[164.2 441.8 409.3 454.8]/Border[0 0 0]/A 164 0 R>>endobj
166 0 obj[165 0 R
]endobj
167 0 obj<</S/URI/URI(ftp://ftp.microsoft.com/Softlib/MSLFILES/NEXUS.EXE)>>endobj
168 0 obj<</Subtype/Link/Rect[287.9 523.0 540.0 536.0]/Border[0 0 0]/A 167 0 R>>endobj
169 0 obj<</S/URI/URI(ftp://ftp.microsoft.com/Softlib/MSLFILES/SRVTOOLS.EXE)>>endobj
170 0 obj<</Subtype/Link/Rect[236.3 483.4 508.6 496.4]/Border[0 0 0]/A 169 0 R>>endobj
171 0 obj<</S/URI/URI(http://www.tcpdump.org/)>>endobj
172 0 obj<</Subtype/Link/Rect[352.1 68.6 458.1 81.6]/Border[0 0 0]/A 171 0 R>>endobj
173 0 obj[168 0 R
170 0 R
172 0 R
]endobj
174 0 obj<</S/URI/URI(http://www.ethereal.com/)>>endobj
175 0 obj<</Subtype/Link/Rect[435.5 721.0 544.9 734.0]/Border[0 0 0]/A 174 0 R>>endobj
176 0 obj<</S/URI/URI(http://samba.org)>>endobj
177 0 obj<</Subtype/Link/Rect[236.3 127.0 310.8 140.0]/Border[0 0 0]/A 176 0 R>>endobj
178 0 obj<</S/URI/URI(http://www.skippy.net/linux/smb-howto.html)>>endobj
179 0 obj<</Subtype/Link/Rect[144.0 74.2 346.1 87.2]/Border[0 0 0]/A 178 0 R>>endobj
180 0 obj[175 0 R
177 0 R
179 0 R
]endobj
181 0 obj<</S/URI/URI(http://bioserve.latrobe.edu.au/samba)>>endobj
182 0 obj<</Subtype/Link/Rect[182.5 707.8 345.0 720.8]/Border[0 0 0]/A 181 0 R>>endobj
183 0 obj<</S/URI/URI(http://samba.org/cifs/)>>endobj
184 0 obj<</Subtype/Link/Rect[284.9 694.6 381.4 707.6]/Border[0 0 0]/A 183 0 R>>endobj
185 0 obj<</S/URI/URI(http://mailhost.cb1.com/~lkcl/ntdom/)>>endobj
186 0 obj<</Subtype/Link/Rect[244.2 681.4 411.2 694.4]/Border[0 0 0]/A 185 0 R>>endobj
187 0 obj<</S/URI/URI(ftp://ftp.microsoft.com/developr/drg/CIFS/)>>endobj
188 0 obj<</Subtype/Link/Rect[280.3 668.2 471.9 681.2]/Border[0 0 0]/A 187 0 R>>endobj
189 0 obj<</S/URI/URI(http://samba.org)>>endobj
190 0 obj<</Subtype/Link/Rect[361.0 615.4 432.8 628.4]/Border[0 0 0]/A 189 0 R>>endobj
191 0 obj<</S/URI/URI(http://www.samba-tng.org/)>>endobj
192 0 obj<</Subtype/Link/Rect[301.1 575.8 425.6 588.8]/Border[0 0 0]/A 191 0 R>>endobj
193 0 obj<</S/URI/URI(http://lists.samba.org/)>>endobj
194 0 obj<</Subtype/Link/Rect[135.5 140.2 227.8 153.2]/Border[0 0 0]/A 193 0 R>>endobj
195 0 obj<</S/URI/URI(http://lists.samba.org/mailman/roster/samba-ntdom)>>endobj
196 0 obj<</Subtype/Link/Rect[309.0 127.0 330.7 140.0]/Border[0 0 0]/A 195 0 R>>endobj
197 0 obj[182 0 R
184 0 R
186 0 R
188 0 R
190 0 R
192 0 R
194 0 R
196 0 R
]endobj
198 0 obj<</S/URI/URI(#NTACLSUPPORT)>>endobj
199 0 obj<</Subtype/Link/Rect[342.7 533.8 441.7 546.8]/Border[0 0 0]/A 198 0 R>>endobj
200 0 obj[199 0 R
]endobj
201 0 obj<</S/URI/URI(#SECURITYMASK)>>endobj
202 0 obj<</Subtype/Link/Rect[88.2 668.2 180.6 681.2]/Border[0 0 0]/A 201 0 R>>endobj
203 0 obj<</S/URI/URI(#CREATEMASK)>>endobj
204 0 obj<</Subtype/Link/Rect[358.9 589.0 438.1 602.0]/Border[0 0 0]/A 203 0 R>>endobj
205 0 obj<</S/URI/URI(#FORCESECURITYMODE)>>endobj
206 0 obj<</Subtype/Link/Rect[427.0 536.2 526.0 549.2]/Border[0 0 0]/A 205 0 R>>endobj
207 0 obj<</S/URI/URI(#FORCESECURITYMODE)>>endobj
208 0 obj<</Subtype/Link/Rect[72.0 523.0 98.4 536.0]/Border[0 0 0]/A 207 0 R>>endobj
209 0 obj<</S/URI/URI(#FORCECREATEMODE)>>endobj
210 0 obj<</Subtype/Link/Rect[358.9 443.8 477.7 456.8]/Border[0 0 0]/A 209 0 R>>endobj
211 0 obj<</S/URI/URI(smb.conf.5.html)>>endobj
212 0 obj<</Subtype/Link/Rect[72.0 166.6 151.2 179.6]/Border[0 0 0]/A 211 0 R>>endobj
213 0 obj[202 0 R
204 0 R
206 0 R
208 0 R
210 0 R
212 0 R
]endobj
214 0 obj<</S/URI/URI(http://carol.wins.uva.nl/~leeuw/samba/warp.html)>>endobj
215 0 obj<</Subtype/Link/Rect[331.1 607.0 550.0 620.0]/Border[0 0 0]/A 214 0 R>>endobj
216 0 obj<</S/URI/URI(ftp://ftp.microsoft.com/BusSys/Clients/LANMAN.OS2/)>>endobj
217 0 obj<</Subtype/Link/Rect[72.0 241.4 319.2 254.4]/Border[0 0 0]/A 216 0 R>>endobj
218 0 obj<</S/URI/URI(http://carol.wins.uva.nl/~leeuw/lanman.html)>>endobj
219 0 obj<</Subtype/Link/Rect[346.1 241.4 544.2 254.4]/Border[0 0 0]/A 218 0 R>>endobj
220 0 obj<</S/URI/URI(ftp://ftp.cdrom.com/pub/os2/network/ndis/)>>endobj
221 0 obj<</Subtype/Link/Rect[175.9 117.8 366.2 130.8]/Border[0 0 0]/A 220 0 R>>endobj
222 0 obj[215 0 R
217 0 R
219 0 R
221 0 R
]endobj
223 0 obj<</S/URI/URI(http://carol.wins.uva.nl/~leeuw/samba/fix.html)>>endobj
224 0 obj<</Subtype/Link/Rect[225.7 661.0 434.8 674.0]/Border[0 0 0]/A 223 0 R>>endobj
225 0 obj[224 0 R
]endobj
226 0 obj<</S/URI/URI(http://samba.org/samba/cvs.html)>>endobj
227 0 obj<</Subtype/Link/Rect[357.1 577.0 500.7 590.0]/Border[0 0 0]/A 226 0 R>>endobj
228 0 obj<</S/URI/URI(http://samba.org/cgi-bin/cvsweb)>>endobj
229 0 obj<</Subtype/Link/Rect[138.6 354.6 283.2 367.6]/Border[0 0 0]/A 228 0 R>>endobj
230 0 obj<</S/URI/URI(http://www.cyclic.com/)>>endobj
231 0 obj<</Subtype/Link/Rect[394.3 230.2 498.2 243.2]/Border[0 0 0]/A 230 0 R>>endobj
232 0 obj[227 0 R
229 0 R
231 0 R
]endobj
233 0 obj<</Subtype/Link/Rect[72.0 684.0 277.3 697.0]/Border[0 0 0]/Dest[454 0 R/XYZ null 798 0]>>endobj
234 0 obj<</Subtype/Link/Rect[108.0 670.8 249.2 683.8]/Border[0 0 0]/Dest[454 0 R/XYZ null 730 0]>>endobj
235 0 obj<</Subtype/Link/Rect[108.0 657.6 255.0 670.6]/Border[0 0 0]/Dest[454 0 R/XYZ null 593 0]>>endobj
236 0 obj<</Subtype/Link/Rect[108.0 644.4 257.7 657.4]/Border[0 0 0]/Dest[454 0 R/XYZ null 178 0]>>endobj
237 0 obj<</Subtype/Link/Rect[108.0 631.2 309.0 644.2]/Border[0 0 0]/Dest[457 0 R/XYZ null 739 0]>>endobj
238 0 obj<</Subtype/Link/Rect[108.0 618.0 316.7 631.0]/Border[0 0 0]/Dest[457 0 R/XYZ null 379 0]>>endobj
239 0 obj<</Subtype/Link/Rect[108.0 604.8 284.9 617.8]/Border[0 0 0]/Dest[457 0 R/XYZ null 268 0]>>endobj
240 0 obj<</Subtype/Link/Rect[108.0 591.6 280.0 604.6]/Border[0 0 0]/Dest[460 0 R/XYZ null 768 0]>>endobj
241 0 obj<</Subtype/Link/Rect[108.0 578.4 328.6 591.4]/Border[0 0 0]/Dest[460 0 R/XYZ null 266 0]>>endobj
242 0 obj<</Subtype/Link/Rect[108.0 565.2 364.9 578.2]/Border[0 0 0]/Dest[463 0 R/XYZ null 686 0]>>endobj
243 0 obj<</Subtype/Link/Rect[108.0 552.0 315.8 565.0]/Border[0 0 0]/Dest[463 0 R/XYZ null 509 0]>>endobj
244 0 obj<</Subtype/Link/Rect[108.0 538.8 514.3 551.8]/Border[0 0 0]/Dest[463 0 R/XYZ null 332 0]>>endobj
245 0 obj<</Subtype/Link/Rect[108.0 525.6 259.4 538.6]/Border[0 0 0]/Dest[466 0 R/XYZ null 768 0]>>endobj
246 0 obj<</Subtype/Link/Rect[108.0 512.4 236.0 525.4]/Border[0 0 0]/Dest[466 0 R/XYZ null 577 0]>>endobj
247 0 obj<</Subtype/Link/Rect[108.0 499.2 186.5 512.2]/Border[0 0 0]/Dest[466 0 R/XYZ null 505 0]>>endobj
248 0 obj<</Subtype/Link/Rect[108.0 486.0 267.2 499.0]/Border[0 0 0]/Dest[466 0 R/XYZ null 394 0]>>endobj
249 0 obj<</Subtype/Link/Rect[108.0 472.8 295.6 485.8]/Border[0 0 0]/Dest[469 0 R/XYZ null 739 0]>>endobj
250 0 obj<</Subtype/Link/Rect[108.0 459.6 177.7 472.6]/Border[0 0 0]/Dest[469 0 R/XYZ null 615 0]>>endobj
251 0 obj<</Subtype/Link/Rect[108.0 446.4 232.3 459.4]/Border[0 0 0]/Dest[472 0 R/XYZ null 768 0]>>endobj
252 0 obj<</Subtype/Link/Rect[108.0 433.2 232.6 446.2]/Border[0 0 0]/Dest[472 0 R/XYZ null 683 0]>>endobj
253 0 obj<</Subtype/Link/Rect[72.0 406.8 371.8 419.8]/Border[0 0 0]/Dest[475 0 R/XYZ null 798 0]>>endobj
254 0 obj<</Subtype/Link/Rect[108.0 393.6 181.6 406.6]/Border[0 0 0]/Dest[475 0 R/XYZ null 706 0]>>endobj
255 0 obj<</Subtype/Link/Rect[108.0 380.4 210.7 393.4]/Border[0 0 0]/Dest[475 0 R/XYZ null 569 0]>>endobj
256 0 obj<</Subtype/Link/Rect[108.0 367.2 268.7 380.2]/Border[0 0 0]/Dest[478 0 R/XYZ null 699 0]>>endobj
257 0 obj<</Subtype/Link/Rect[108.0 354.0 277.0 367.0]/Border[0 0 0]/Dest[478 0 R/XYZ null 220 0]>>endobj
258 0 obj<</Subtype/Link/Rect[108.0 340.8 316.7 353.8]/Border[0 0 0]/Dest[481 0 R/XYZ null 768 0]>>endobj
259 0 obj<</Subtype/Link/Rect[108.0 327.6 215.2 340.6]/Border[0 0 0]/Dest[481 0 R/XYZ null 656 0]>>endobj
260 0 obj<</Subtype/Link/Rect[108.0 314.4 246.4 327.4]/Border[0 0 0]/Dest[484 0 R/XYZ null 399 0]>>endobj
261 0 obj<</Subtype/Link/Rect[108.0 301.2 362.5 314.2]/Border[0 0 0]/Dest[487 0 R/XYZ null 475 0]>>endobj
262 0 obj<</Subtype/Link/Rect[72.0 274.8 402.3 287.8]/Border[0 0 0]/Dest[490 0 R/XYZ null 798 0]>>endobj
263 0 obj<</Subtype/Link/Rect[108.0 261.6 179.2 274.6]/Border[0 0 0]/Dest[490 0 R/XYZ null 706 0]>>endobj
264 0 obj<</Subtype/Link/Rect[108.0 248.4 161.2 261.4]/Border[0 0 0]/Dest[493 0 R/XYZ null 673 0]>>endobj
265 0 obj<</Subtype/Link/Rect[72.0 222.0 277.1 235.0]/Border[0 0 0]/Dest[496 0 R/XYZ null 798 0]>>endobj
266 0 obj<</Subtype/Link/Rect[108.0 208.8 181.6 221.8]/Border[0 0 0]/Dest[496 0 R/XYZ null 730 0]>>endobj
267 0 obj<</Subtype/Link/Rect[108.0 195.6 189.0 208.6]/Border[0 0 0]/Dest[496 0 R/XYZ null 302 0]>>endobj
268 0 obj<</Subtype/Link/Rect[108.0 182.4 209.7 195.4]/Border[0 0 0]/Dest[499 0 R/XYZ null 693 0]>>endobj
269 0 obj<</Subtype/Link/Rect[108.0 169.2 294.4 182.2]/Border[0 0 0]/Dest[502 0 R/XYZ null 542 0]>>endobj
270 0 obj<</Subtype/Link/Rect[108.0 156.0 287.3 169.0]/Border[0 0 0]/Dest[505 0 R/XYZ null 768 0]>>endobj
271 0 obj<</Subtype/Link/Rect[108.0 142.8 350.9 155.8]/Border[0 0 0]/Dest[505 0 R/XYZ null 383 0]>>endobj
272 0 obj<</Subtype/Link/Rect[108.0 129.6 242.1 142.6]/Border[0 0 0]/Dest[508 0 R/XYZ null 768 0]>>endobj
273 0 obj<</Subtype/Link/Rect[108.0 116.4 220.1 129.4]/Border[0 0 0]/Dest[508 0 R/XYZ null 577 0]>>endobj
274 0 obj<</Subtype/Link/Rect[108.0 103.2 214.3 116.2]/Border[0 0 0]/Dest[508 0 R/XYZ null 466 0]>>endobj
275 0 obj<</Subtype/Link/Rect[108.0 90.0 281.2 103.0]/Border[0 0 0]/Dest[508 0 R/XYZ null 328 0]>>endobj
276 0 obj<</Subtype/Link/Rect[108.0 76.8 222.3 89.8]/Border[0 0 0]/Dest[508 0 R/XYZ null 230 0]>>endobj
277 0 obj<</Subtype/Link/Rect[108.0 63.6 234.5 76.6]/Border[0 0 0]/Dest[511 0 R/XYZ null 768 0]>>endobj
278 0 obj[233 0 R
234 0 R
235 0 R
236 0 R
237 0 R
238 0 R
239 0 R
240 0 R
241 0 R
242 0 R
243 0 R
244 0 R
245 0 R
246 0 R
247 0 R
248 0 R
249 0 R
250 0 R
251 0 R
252 0 R
253 0 R
254 0 R
255 0 R
256 0 R
257 0 R
258 0 R
259 0 R
260 0 R
261 0 R
262 0 R
263 0 R
264 0 R
265 0 R
266 0 R
267 0 R
268 0 R
269 0 R
270 0 R
271 0 R
272 0 R
273 0 R
274 0 R
275 0 R
276 0 R
277 0 R
]endobj
279 0 obj<</Subtype/Link/Rect[108.0 684.0 300.2 697.0]/Border[0 0 0]/Dest[511 0 R/XYZ null 191 0]>>endobj
280 0 obj<</Subtype/Link/Rect[72.0 657.6 272.9 670.6]/Border[0 0 0]/Dest[517 0 R/XYZ null 798 0]>>endobj
281 0 obj<</Subtype/Link/Rect[108.0 644.4 299.9 657.4]/Border[0 0 0]/Dest[517 0 R/XYZ null 730 0]>>endobj
282 0 obj<</Subtype/Link/Rect[108.0 631.2 288.0 644.2]/Border[0 0 0]/Dest[520 0 R/XYZ null 356 0]>>endobj
283 0 obj<</Subtype/Link/Rect[108.0 618.0 307.9 631.0]/Border[0 0 0]/Dest[523 0 R/XYZ null 768 0]>>endobj
284 0 obj<</Subtype/Link/Rect[72.0 591.6 416.3 604.6]/Border[0 0 0]/Dest[526 0 R/XYZ null 798 0]>>endobj
285 0 obj<</Subtype/Link/Rect[108.0 578.4 219.2 591.4]/Border[0 0 0]/Dest[526 0 R/XYZ null 706 0]>>endobj
286 0 obj<</Subtype/Link/Rect[108.0 565.2 181.0 578.2]/Border[0 0 0]/Dest[526 0 R/XYZ null 608 0]>>endobj
287 0 obj<</Subtype/Link/Rect[108.0 552.0 316.1 565.0]/Border[0 0 0]/Dest[529 0 R/XYZ null 660 0]>>endobj
288 0 obj<</Subtype/Link/Rect[108.0 538.8 432.8 551.8]/Border[0 0 0]/Dest[532 0 R/XYZ null 531 0]>>endobj
289 0 obj<</Subtype/Link/Rect[108.0 525.6 319.4 538.6]/Border[0 0 0]/Dest[532 0 R/XYZ null 196 0]>>endobj
290 0 obj<</Subtype/Link/Rect[108.0 512.4 330.8 525.4]/Border[0 0 0]/Dest[535 0 R/XYZ null 359 0]>>endobj
291 0 obj<</Subtype/Link/Rect[108.0 499.2 261.4 512.2]/Border[0 0 0]/Dest[535 0 R/XYZ null 183 0]>>endobj
292 0 obj<</Subtype/Link/Rect[108.0 486.0 252.8 499.0]/Border[0 0 0]/Dest[541 0 R/XYZ null 545 0]>>endobj
293 0 obj<</Subtype/Link/Rect[108.0 472.8 246.4 485.8]/Border[0 0 0]/Dest[544 0 R/XYZ null 488 0]>>endobj
294 0 obj<</Subtype/Link/Rect[108.0 459.6 292.9 472.6]/Border[0 0 0]/Dest[553 0 R/XYZ null 768 0]>>endobj
295 0 obj<</Subtype/Link/Rect[108.0 446.4 332.0 459.4]/Border[0 0 0]/Dest[556 0 R/XYZ null 435 0]>>endobj
296 0 obj<</Subtype/Link/Rect[108.0 433.2 406.2 446.2]/Border[0 0 0]/Dest[559 0 R/XYZ null 189 0]>>endobj
297 0 obj<</Subtype/Link/Rect[108.0 420.0 431.0 433.0]/Border[0 0 0]/Dest[574 0 R/XYZ null 686 0]>>endobj
298 0 obj<</Subtype/Link/Rect[72.0 393.6 423.1 406.6]/Border[0 0 0]/Dest[580 0 R/XYZ null 798 0]>>endobj
299 0 obj<</Subtype/Link/Rect[108.0 380.4 164.5 393.4]/Border[0 0 0]/Dest[580 0 R/XYZ null 706 0]>>endobj
300 0 obj<</Subtype/Link/Rect[108.0 367.2 181.6 380.2]/Border[0 0 0]/Dest[580 0 R/XYZ null 569 0]>>endobj
301 0 obj<</Subtype/Link/Rect[108.0 354.0 233.6 367.0]/Border[0 0 0]/Dest[580 0 R/XYZ null 246 0]>>endobj
302 0 obj<</Subtype/Link/Rect[108.0 340.8 188.3 353.8]/Border[0 0 0]/Dest[583 0 R/XYZ null 581 0]>>endobj
303 0 obj<</Subtype/Link/Rect[108.0 327.6 222.0 340.6]/Border[0 0 0]/Dest[583 0 R/XYZ null 417 0]>>endobj
304 0 obj<</Subtype/Link/Rect[108.0 314.4 288.6 327.4]/Border[0 0 0]/Dest[583 0 R/XYZ null 292 0]>>endobj
305 0 obj<</Subtype/Link/Rect[108.0 301.2 230.8 314.2]/Border[0 0 0]/Dest[586 0 R/XYZ null 768 0]>>endobj
306 0 obj<</Subtype/Link/Rect[108.0 288.0 288.9 301.0]/Border[0 0 0]/Dest[586 0 R/XYZ null 326 0]>>endobj
307 0 obj<</Subtype/Link/Rect[108.0 274.8 269.3 287.8]/Border[0 0 0]/Dest[589 0 R/XYZ null 686 0]>>endobj
308 0 obj<</Subtype/Link/Rect[108.0 261.6 203.0 274.6]/Border[0 0 0]/Dest[589 0 R/XYZ null 496 0]>>endobj
309 0 obj<</Subtype/Link/Rect[108.0 248.4 259.9 261.4]/Border[0 0 0]/Dest[589 0 R/XYZ null 345 0]>>endobj
310 0 obj<</Subtype/Link/Rect[108.0 235.2 178.0 248.2]/Border[0 0 0]/Dest[589 0 R/XYZ null 155 0]>>endobj
311 0 obj<</Subtype/Link/Rect[108.0 222.0 177.4 235.0]/Border[0 0 0]/Dest[592 0 R/XYZ null 581 0]>>endobj
312 0 obj<</Subtype/Link/Rect[72.0 195.6 413.9 208.6]/Border[0 0 0]/Dest[595 0 R/XYZ null 798 0]>>endobj
313 0 obj<</Subtype/Link/Rect[108.0 182.4 447.4 195.4]/Border[0 0 0]/Dest[595 0 R/XYZ null 706 0]>>endobj
314 0 obj<</Subtype/Link/Rect[108.0 169.2 319.1 182.2]/Border[0 0 0]/Dest[595 0 R/XYZ null 525 0]>>endobj
315 0 obj<</Subtype/Link/Rect[108.0 156.0 231.1 169.0]/Border[0 0 0]/Dest[595 0 R/XYZ null 348 0]>>endobj
316 0 obj<</Subtype/Link/Rect[108.0 142.8 292.2 155.8]/Border[0 0 0]/Dest[598 0 R/XYZ null 686 0]>>endobj
317 0 obj<</Subtype/Link/Rect[108.0 129.6 208.5 142.6]/Border[0 0 0]/Dest[598 0 R/XYZ null 443 0]>>endobj
318 0 obj<</Subtype/Link/Rect[108.0 116.4 233.6 129.4]/Border[0 0 0]/Dest[598 0 R/XYZ null 187 0]>>endobj
319 0 obj<</Subtype/Link/Rect[108.0 103.2 301.4 116.2]/Border[0 0 0]/Dest[601 0 R/XYZ null 673 0]>>endobj
320 0 obj<</Subtype/Link/Rect[108.0 90.0 394.8 103.0]/Border[0 0 0]/Dest[601 0 R/XYZ null 232 0]>>endobj
321 0 obj<</Subtype/Link/Rect[108.0 76.8 386.9 89.8]/Border[0 0 0]/Dest[607 0 R/XYZ null 594 0]>>endobj
322 0 obj[279 0 R
280 0 R
281 0 R
282 0 R
283 0 R
284 0 R
285 0 R
286 0 R
287 0 R
288 0 R
289 0 R
290 0 R
291 0 R
292 0 R
293 0 R
294 0 R
295 0 R
296 0 R
297 0 R
298 0 R
299 0 R
300 0 R
301 0 R
302 0 R
303 0 R
304 0 R
305 0 R
306 0 R
307 0 R
308 0 R
309 0 R
310 0 R
311 0 R
312 0 R
313 0 R
314 0 R
315 0 R
316 0 R
317 0 R
318 0 R
319 0 R
320 0 R
321 0 R
]endobj
323 0 obj<</Subtype/Link/Rect[72.0 684.0 223.3 697.0]/Border[0 0 0]/Dest[610 0 R/XYZ null 798 0]>>endobj
324 0 obj<</Subtype/Link/Rect[108.0 670.8 153.5 683.8]/Border[0 0 0]/Dest[610 0 R/XYZ null 730 0]>>endobj
325 0 obj<</Subtype/Link/Rect[108.0 657.6 493.5 670.6]/Border[0 0 0]/Dest[610 0 R/XYZ null 700 0]>>endobj
326 0 obj<</Subtype/Link/Rect[108.0 644.4 498.7 657.4]/Border[0 0 0]/Dest[610 0 R/XYZ null 348 0]>>endobj
327 0 obj<</Subtype/Link/Rect[108.0 631.2 450.2 644.2]/Border[0 0 0]/Dest[613 0 R/XYZ null 768 0]>>endobj
328 0 obj<</Subtype/Link/Rect[108.0 618.0 419.9 631.0]/Border[0 0 0]/Dest[613 0 R/XYZ null 639 0]>>endobj
329 0 obj<</Subtype/Link/Rect[72.0 591.6 342.4 604.6]/Border[0 0 0]/Dest[616 0 R/XYZ null 798 0]>>endobj
330 0 obj<</Subtype/Link/Rect[108.0 578.4 187.1 591.4]/Border[0 0 0]/Dest[616 0 R/XYZ null 706 0]>>endobj
331 0 obj<</Subtype/Link/Rect[108.0 565.2 247.6 578.2]/Border[0 0 0]/Dest[616 0 R/XYZ null 582 0]>>endobj
332 0 obj<</Subtype/Link/Rect[108.0 552.0 230.8 565.0]/Border[0 0 0]/Dest[616 0 R/XYZ null 484 0]>>endobj
333 0 obj<</Subtype/Link/Rect[108.0 538.8 205.8 551.8]/Border[0 0 0]/Dest[616 0 R/XYZ null 359 0]>>endobj
334 0 obj[323 0 R
324 0 R
325 0 R
326 0 R
327 0 R
328 0 R
329 0 R
330 0 R
331 0 R
332 0 R
333 0 R
]endobj
335 0 obj<</Dests 336 0 R>>endobj
336 0 obj<</Kids[337 0 R]>>endobj
337 0 obj<</Limits[(aen1015)(smbpasswdfileformat)]/Names[(aen1015)338 0 R(aen1129)339 0 R(aen1159)340 0 R(aen116)341 0 R(aen1193)342 0 R(aen1201)343 0 R(aen1209)344 0 R(aen1217)345 0 R(aen1224)346 0 R(aen1260)347 0 R(aen1273)348 0 R(aen1276)349 0 R(aen1286)350 0 R(aen1311)351 0 R(aen132)352 0 R(aen1329)353 0 R(aen1333)354 0 R(aen1346)355 0 R(aen1353)356 0 R(aen1357)357 0 R(aen1362)358 0 R(aen1366)359 0 R(aen1382)360 0 R(aen1390)361 0 R(aen1394)362 0 R(aen1397)363 0 R(aen1403)364 0 R(aen141)365 0 R(aen1415)366 0 R(aen1418)367 0 R(aen1429)368 0 R(aen1438)369 0 R(aen1449)370 0 R(aen1469)371 0 R(aen1484)372 0 R(aen1498)373 0 R(aen15)374 0 R(aen1505)375 0 R(aen1527)376 0 R(aen157)377 0 R(aen1591)378 0 R(aen1601)379 0 R(aen1612)380 0 R(aen1614)381 0 R(aen1629)382 0 R(aen1638)383 0 R(aen1642)384 0 R(aen1651)385 0 R(aen1658)386 0 R(aen1663)387 0 R(aen1666)388 0 R(aen1671)389 0 R(aen17)390 0 R(aen171)391 0 R(aen176)392 0 R(aen180)393 0 R(aen183)394 0 R(aen192)395 0 R(aen196)396 0 R(aen206)397 0 R(aen209)398 0 R(aen212)399 0 R(aen223)400 0 R(aen227)401 0 R(aen238)402 0 R(aen25)403 0 R(aen257)404 0 R(aen264)405 0 R(aen273)406 0 R(aen325)407 0 R(aen364)408 0 R(aen379)409 0 R(aen390)410 0 R(aen4)411 0 R(aen425)412 0 R(aen434)413 0 R(aen445)414 0 R(aen467)415 0 R(aen478)416 0 R(aen513)417 0 R(aen53)418 0 R(aen530)419 0 R(aen541)420 0 R(aen566)421 0 R(aen57)422 0 R(aen574)423 0 R(aen578)424 0 R(aen588)425 0 R(aen591)426 0 R(aen595)427 0 R(aen617)428 0 R(aen661)429 0 R(aen679)430 0 R(aen71)431 0 R(aen743)432 0 R(aen748)433 0 R(aen764)434 0 R(aen77)435 0 R(aen781)436 0 R(aen787)437 0 R(aen827)438 0 R(aen87)439 0 R(aen870)440 0 R(aen884)441 0 R(aen9)442 0 R(aen912)443 0 R(aen923)444 0 R(aen971)445 0 R(body.html)446 0 R(migration)447 0 R(samba-project-documentation)448 0 R(smbpasswdfileformat)449 0 R]>>endobj
338 0 obj<</D[541 0 R/XYZ null 488 null]>>endobj
339 0 obj<</D[550 0 R/XYZ null 768 null]>>endobj
340 0 obj<</D[553 0 R/XYZ null 435 null]>>endobj
341 0 obj<</D[457 0 R/XYZ null 266 null]>>endobj
342 0 obj<</D[556 0 R/XYZ null 189 null]>>endobj
343 0 obj<</D[559 0 R/XYZ null 605 null]>>endobj
344 0 obj<</D[559 0 R/XYZ null 406 null]>>endobj
345 0 obj<</D[559 0 R/XYZ null 168 null]>>endobj
346 0 obj<</D[562 0 R/XYZ null 698 null]>>endobj
347 0 obj<</D[565 0 R/XYZ null 341 null]>>endobj
348 0 obj<</D[568 0 R/XYZ null 434 null]>>endobj
349 0 obj<</D[568 0 R/XYZ null 339 null]>>endobj
350 0 obj<</D[571 0 R/XYZ null 686 null]>>endobj
351 0 obj<</D[577 0 R/XYZ null 798 null]>>endobj
352 0 obj<</D[460 0 R/XYZ null 686 null]>>endobj
353 0 obj<</D[577 0 R/XYZ null 706 null]>>endobj
354 0 obj<</D[577 0 R/XYZ null 569 null]>>endobj
355 0 obj<</D[577 0 R/XYZ null 246 null]>>endobj
356 0 obj<</D[580 0 R/XYZ null 581 null]>>endobj
357 0 obj<</D[580 0 R/XYZ null 417 null]>>endobj
358 0 obj<</D[580 0 R/XYZ null 292 null]>>endobj
359 0 obj<</D[583 0 R/XYZ null 768 null]>>endobj
360 0 obj<</D[583 0 R/XYZ null 326 null]>>endobj
361 0 obj<</D[586 0 R/XYZ null 686 null]>>endobj
362 0 obj<</D[586 0 R/XYZ null 496 null]>>endobj
363 0 obj<</D[586 0 R/XYZ null 345 null]>>endobj
364 0 obj<</D[586 0 R/XYZ null 155 null]>>endobj
365 0 obj<</D[460 0 R/XYZ null 509 null]>>endobj
366 0 obj<</D[589 0 R/XYZ null 581 null]>>endobj
367 0 obj<</D[592 0 R/XYZ null 798 null]>>endobj
368 0 obj<</D[592 0 R/XYZ null 706 null]>>endobj
369 0 obj<</D[592 0 R/XYZ null 525 null]>>endobj
370 0 obj<</D[592 0 R/XYZ null 348 null]>>endobj
371 0 obj<</D[595 0 R/XYZ null 686 null]>>endobj
372 0 obj<</D[595 0 R/XYZ null 443 null]>>endobj
373 0 obj<</D[595 0 R/XYZ null 187 null]>>endobj
374 0 obj<</D[451 0 R/XYZ null 798 null]>>endobj
375 0 obj<</D[598 0 R/XYZ null 673 null]>>endobj
376 0 obj<</D[598 0 R/XYZ null 232 null]>>endobj
377 0 obj<</D[460 0 R/XYZ null 332 null]>>endobj
378 0 obj<</D[604 0 R/XYZ null 594 null]>>endobj
379 0 obj<</D[607 0 R/XYZ null 798 null]>>endobj
380 0 obj<</D[607 0 R/XYZ null 730 null]>>endobj
381 0 obj<</D[607 0 R/XYZ null 700 null]>>endobj
382 0 obj<</D[607 0 R/XYZ null 348 null]>>endobj
383 0 obj<</D[610 0 R/XYZ null 768 null]>>endobj
384 0 obj<</D[610 0 R/XYZ null 639 null]>>endobj
385 0 obj<</D[613 0 R/XYZ null 798 null]>>endobj
386 0 obj<</D[613 0 R/XYZ null 706 null]>>endobj
387 0 obj<</D[613 0 R/XYZ null 582 null]>>endobj
388 0 obj<</D[613 0 R/XYZ null 484 null]>>endobj
389 0 obj<</D[613 0 R/XYZ null 359 null]>>endobj
390 0 obj<</D[451 0 R/XYZ null 730 null]>>endobj
391 0 obj<</D[463 0 R/XYZ null 768 null]>>endobj
392 0 obj<</D[463 0 R/XYZ null 577 null]>>endobj
393 0 obj<</D[463 0 R/XYZ null 505 null]>>endobj
394 0 obj<</D[463 0 R/XYZ null 394 null]>>endobj
395 0 obj<</D[466 0 R/XYZ null 739 null]>>endobj
396 0 obj<</D[466 0 R/XYZ null 615 null]>>endobj
397 0 obj<</D[469 0 R/XYZ null 768 null]>>endobj
398 0 obj<</D[469 0 R/XYZ null 683 null]>>endobj
399 0 obj<</D[472 0 R/XYZ null 798 null]>>endobj
400 0 obj<</D[472 0 R/XYZ null 706 null]>>endobj
401 0 obj<</D[472 0 R/XYZ null 569 null]>>endobj
402 0 obj<</D[475 0 R/XYZ null 699 null]>>endobj
403 0 obj<</D[451 0 R/XYZ null 593 null]>>endobj
404 0 obj<</D[475 0 R/XYZ null 220 null]>>endobj
405 0 obj<</D[478 0 R/XYZ null 768 null]>>endobj
406 0 obj<</D[478 0 R/XYZ null 656 null]>>endobj
407 0 obj<</D[481 0 R/XYZ null 399 null]>>endobj
408 0 obj<</D[484 0 R/XYZ null 475 null]>>endobj
409 0 obj<</D[487 0 R/XYZ null 798 null]>>endobj
410 0 obj<</D[487 0 R/XYZ null 706 null]>>endobj
411 0 obj<</D[448 0 R/XYZ null 647 null]>>endobj
412 0 obj<</D[490 0 R/XYZ null 673 null]>>endobj
413 0 obj<</D[493 0 R/XYZ null 798 null]>>endobj
414 0 obj<</D[493 0 R/XYZ null 730 null]>>endobj
415 0 obj<</D[493 0 R/XYZ null 302 null]>>endobj
416 0 obj<</D[496 0 R/XYZ null 693 null]>>endobj
417 0 obj<</D[499 0 R/XYZ null 542 null]>>endobj
418 0 obj<</D[451 0 R/XYZ null 178 null]>>endobj
419 0 obj<</D[502 0 R/XYZ null 768 null]>>endobj
420 0 obj<</D[502 0 R/XYZ null 383 null]>>endobj
421 0 obj<</D[505 0 R/XYZ null 768 null]>>endobj
422 0 obj<</D[454 0 R/XYZ null 739 null]>>endobj
423 0 obj<</D[505 0 R/XYZ null 577 null]>>endobj
424 0 obj<</D[505 0 R/XYZ null 466 null]>>endobj
425 0 obj<</D[505 0 R/XYZ null 328 null]>>endobj
426 0 obj<</D[505 0 R/XYZ null 230 null]>>endobj
427 0 obj<</D[508 0 R/XYZ null 768 null]>>endobj
428 0 obj<</D[508 0 R/XYZ null 191 null]>>endobj
429 0 obj<</D[514 0 R/XYZ null 798 null]>>endobj
430 0 obj<</D[514 0 R/XYZ null 730 null]>>endobj
431 0 obj<</D[454 0 R/XYZ null 379 null]>>endobj
432 0 obj<</D[517 0 R/XYZ null 356 null]>>endobj
433 0 obj<</D[520 0 R/XYZ null 768 null]>>endobj
434 0 obj<</D[523 0 R/XYZ null 798 null]>>endobj
435 0 obj<</D[454 0 R/XYZ null 268 null]>>endobj
436 0 obj<</D[523 0 R/XYZ null 706 null]>>endobj
437 0 obj<</D[523 0 R/XYZ null 608 null]>>endobj
438 0 obj<</D[526 0 R/XYZ null 660 null]>>endobj
439 0 obj<</D[457 0 R/XYZ null 768 null]>>endobj
440 0 obj<</D[529 0 R/XYZ null 531 null]>>endobj
441 0 obj<</D[529 0 R/XYZ null 196 null]>>endobj
442 0 obj<</D[448 0 R/XYZ null 616 null]>>endobj
443 0 obj<</D[532 0 R/XYZ null 359 null]>>endobj
444 0 obj<</D[532 0 R/XYZ null 183 null]>>endobj
445 0 obj<</D[538 0 R/XYZ null 545 null]>>endobj
446 0 obj<</D[454 0 R/XYZ null 698 null]>>endobj
447 0 obj<</D[508 0 R/XYZ null 191 null]>>endobj
448 0 obj<</D[448 0 R/XYZ null 753 null]>>endobj
449 0 obj<</D[478 0 R/XYZ null 656 null]>>endobj
450 0 obj<</Type/Pages/MediaBox[0 0 595 792]/Count 60/Kids[451 0 R
622 0 R
625 0 R
628 0 R
454 0 R
457 0 R
460 0 R
463 0 R
466 0 R
469 0 R
472 0 R
475 0 R
478 0 R
481 0 R
484 0 R
487 0 R
490 0 R
493 0 R
496 0 R
499 0 R
502 0 R
505 0 R
508 0 R
511 0 R
514 0 R
517 0 R
520 0 R
523 0 R
526 0 R
529 0 R
532 0 R
535 0 R
538 0 R
541 0 R
544 0 R
547 0 R
550 0 R
553 0 R
556 0 R
559 0 R
562 0 R
565 0 R
568 0 R
571 0 R
574 0 R
577 0 R
580 0 R
583 0 R
586 0 R
589 0 R
592 0 R
595 0 R
598 0 R
601 0 R
604 0 R
607 0 R
610 0 R
613 0 R
616 0 R
619 0 R
]>>endobj
451 0 obj<</Type/Page/Parent 450 0 R/Contents 452 0 R/Resources<</ProcSet[/PDF/Text]/Font<</F4 7 0 R/F8 10 0 R/F9 11 0 R>>>>/Annots 17 0 R>>endobj
452 0 obj<</Length 453 0 R/Filter/FlateDecode>>stream
xu’OsÚ0ÅïþorJgcÇ@O%ýè$-žéY¶6µ-*Éeøö}¤”d2l¤ÕîþÞ[ýŽ>³ÓUÝÑäÓi‚bÍH>ÍPÔHâ$áNu½Z~»_âÑè­ª>èjìÕà¤kõð¦Ø†TÁŸz;Kâ9“O9…’½?ò±ˆX
ww‚Ñl>ãÿ”?£°>¦yœ?<£Êy(}æZ–ÖY¹#D!Né<N=DÑ´¥Ö¿À¯D¥»Ž
ˆ
½Æ—‡ŸÅ·ëZÕp+Ù—õÿê ÿ(×(”46ÆW8sð‡Õ`GÒ»F:È®ó/¦Ç¾’¡j4†.Ý ¬î•k{eC±