summaryrefslogtreecommitdiffstats
path: root/net/unix/garbage.c
blob: 6d4a9a8de5ef1d8974a4f8fe17956dfd31b63fe6 (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
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
/*
 * NET3:	Garbage Collector For AF_UNIX sockets
 *
 * Garbage Collector:
 *	Copyright (C) Barak A. Pearlmutter.
 *	Released under the GPL version 2 or later.
 *
 * Chopped about by Alan Cox 22/3/96 to make it fit the AF_UNIX socket problem.
 * If it doesn't work blame me, it worked when Barak sent it.
 *
 * Assumptions:
 *
 *  - object w/ a bit
 *  - free list
 *
 * Current optimizations:
 *
 *  - explicit stack instead of recursion
 *  - tail recurse on first born instead of immediate push/pop
 *  - we gather the stuff that should not be killed into tree
 *    and stack is just a path from root to the current pointer.
 *
 *  Future optimizations:
 *
 *  - don't just push entire root set; process in place
 *
 *	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
 *	2 of the License, or (at your option) any later version.
 *
 *  Fixes:
 *	Alan Cox	07 Sept	1997	Vmalloc internal stack as needed.
 *					Cope with changing max_files.
 *	Al Viro		11 Oct 1998
 *		Graph may have cycles. That is, we can send the descriptor
 *		of foo to bar and vice versa. Current code chokes on that.
 *		Fix: move SCM_RIGHTS ones into the separate list and then
 *		skb_free() them all instead of doing explicit fput's.
 *		Another problem: since fput() may block somebody may
 *		create a new unix_socket when we are in the middle of sweep
 *		phase. Fix: revert the logic wrt MARKED. Mark everything
 *		upon the beginning and unmark non-junk ones.
 *
 *		[12 Oct 1998] AAARGH! New code purges all SCM_RIGHTS
 *		sent to connect()'ed but still not accept()'ed sockets.
 *		Fixed. Old code had slightly different problem here:
 *		extra fput() in situation when we passed the descriptor via
 *		such socket and closed it (descriptor). That would happen on
 *		each unix_gc() until the accept(). Since the struct file in
 *		question would go to the free list and might be reused...
 *		That might be the reason of random oopses on filp_close()
 *		in unrelated processes.
 *
 *	AV		28 Feb 1999
 *		Kill the explicit allocation of stack. Now we keep the tree
 *		with root in dummy + pointer (gc_current) to one of the nodes.
 *		Stack is represented as path from gc_current to dummy. Unmark
 *		now means "add to tree". Push == "make it a son of gc_current".
 *		Pop == "move gc_current to parent". We keep only pointers to
 *		parents (->gc_tree).
 *	AV		1 Mar 1999
 *		Damn. Added missing check for ->dead in listen queues scanning.
 *
 *	Miklos Szeredi 25 Jun 2007
 *		Reimplement with a cycle collecting algorithm. This should
 *		solve several problems with the previous code, like being racy
 *		wrt receive and holding up unrelated socket operations.
 */

#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/socket.h>
#include <linux/un.h>
#include <linux/net.h>
#include <linux/fs.h>
#include <linux/slab.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/file.h>
#include <linux/proc_fs.h>
#include <linux/mutex.h>

#include <net/sock.h>
#include <net/af_unix.h>
#include <net/scm.h>
#include <net/tcp_states.h>

/* Internal data structures and random procedures: */

static LIST_HEAD(gc_inflight_list);
static LIST_HEAD(gc_candidates);
static DEFINE_SPINLOCK(unix_gc_lock);

unsigned int unix_tot_inflight;


static struct sock *unix_get_socket(struct file *filp)
{
	struct sock *u_sock = NULL;
	struct inode *inode = filp->f_path.dentry->d_inode;

	/*
	 *	Socket ?
	 */
	if (S_ISSOCK(inode->i_mode)) {
		struct socket * sock = SOCKET_I(inode);
		struct sock * s = sock->sk;

		/*
		 *	PF_UNIX ?
		 */
		if (s && sock->ops && sock->ops->family == PF_UNIX)
			u_sock = s;
	}
	return u_sock;
}

/*
 *	Keep the number of times in flight count for the file
 *	descriptor if it is for an AF_UNIX socket.
 */

void unix_inflight(struct file *fp)
{
	struct sock *s = unix_get_socket(fp);
	if(s) {
		struct unix_sock *u = unix_sk(s);
		spin_lock(&unix_gc_lock);
		if (atomic_long_inc_return(&u->inflight) == 1) {
			BUG_ON(!list_empty(&u->link));
			list_add_tail(&u->link, &gc_inflight_list);
		} else {
			BUG_ON(list_empty(&u->link));
		}
		unix_tot_inflight++;
		spin_unlock(&unix_gc_lock);
	}
}

void unix_notinflight(struct file *fp)
{
	struct sock *s = unix_get_socket(fp);
	if(s) {
		struct unix_sock *u = unix_sk(s);
		spin_lock(&unix_gc_lock);
		BUG_ON(list_empty(&u->link));
		if (atomic_long_dec_and_test(&u->inflight))
			list_del_init(&u->link);
		unix_tot_inflight--;
		spin_unlock(&unix_gc_lock);
	}
}

static inline struct sk_buff *sock_queue_head(struct sock *sk)
{
	return (struct sk_buff *) &sk->sk_receive_queue;
}

#define receive_queue_for_each_skb(sk, next, skb) \
	for (skb = sock_queue_head(sk)->next, next = skb->next; \
	     skb != sock_queue_head(sk); skb = next, next = skb->next)

static void scan_inflight(struct sock *x, void (*func)(struct unix_sock *),
			  struct sk_buff_head *hitlist)
{
	struct sk_buff *skb;
	struct sk_buff *next;

	spin_lock(&x->sk_receive_queue.lock);
	receive_queue_for_each_skb(x, next, skb) {
		/*
		 *	Do we have file descriptors ?
		 */
		if (UNIXCB(skb).fp) {
			bool hit = false;
			/*
			 *	Process the descriptors of this socket
			 */
			int nfd = UNIXCB(skb).fp->count;
			struct file **fp = UNIXCB(skb).fp->fp;
			while (nfd--) {
				/*
				 *	Get the socket the fd matches
				 *	if it indeed does so
				 */
				struct sock *sk = unix_get_socket(*fp++);
				if (sk) {
					struct unix_sock *u = unix_sk(sk);

					/*
					 * Ignore non-candidates, they could
					 * have been added to the queues after
					 * starting the garbage collection
					 */
					if (u->gc_candidate) {
						hit = true;
						func(u);
					}
				}
			}
			if (hit && hitlist != NULL) {
				__skb_unlink(skb, &x->sk_receive_queue);
				__skb_queue_tail(hitlist, skb);
			}
		}
	}
	spin_unlock(&x->sk_receive_queue.lock);
}

static void scan_children(struct sock *x, void (*func)(struct unix_sock *),
			  struct sk_buff_head *hitlist)
{
	if (x->sk_state != TCP_LISTEN)
		scan_inflight(x, func, hitlist);
	else {
		struct sk_buff *skb;
		struct sk_buff *next;
		struct unix_sock *u;
		LIST_HEAD(embryos);

		/*
		 * For a listening socket collect the queued embryos
		 * and perform a scan on them as well.
		 */
		spin_lock(&x->sk_receive_queue.lock);
		receive_queue_for_each_skb(x, next, skb) {
			u = unix_sk(skb->sk);

			/*
			 * An embryo cannot be in-flight, so it's safe
			 * to use the list link.
			 */
			BUG_ON(!list_empty(&u->link));
			list_add_tail(&u->link, &embryos);
		}
		spin_unlock(&x->sk_receive_queue.lock);

		while (!list_empty(&embryos)) {
			u = list_entry(embryos.next, struct unix_sock, link);
			scan_inflight(&u->sk, func, hitlist);
			list_del_init(&u->link);
		}
	}
}

static void dec_inflight(struct unix_sock *usk)
{
	atomic_long_dec(&usk->inflight);
}

static void inc_inflight(struct unix_sock *usk)
{
	atomic_long_inc(&usk->inflight);
}

static void inc_inflight_move_tail(struct unix_sock *u)
{
	atomic_long_inc(&u->inflight);
	/*
	 * If this still might be part of a cycle, move it to the end
	 * of the list, so that it's checked even if it was already
	 * passed over
	 */
	if (u->gc_maybe_cycle)
		list_move_tail(&u->link, &gc_candidates);
}

/* The external entry point: unix_gc() */

void unix_gc(void)
{
	static bool gc_in_progress = false;

	struct unix_sock *u;
	struct unix_sock *next;
	struct sk_buff_head hitlist;
	struct list_head cursor;
	LIST_HEAD(not_cycle_list);

	spin_lock(&unix_gc_lock);

	/* Avoid a recursive GC. */
	if (gc_in_progress)
		goto out;

	gc_in_progress = true;
	/*
	 * First, select candidates for garbage collection.  Only
	 * in-flight sockets are considered, and from those only ones
	 * which don't have any external reference.
	 *
	 * Holding unix_gc_lock will protect these candidates from
	 * being detached, and hence from gaining an external
	 * reference.  Since there are no possible receivers, all
	 * buffers currently on the candidates' queues stay there
	 * during the garbage collection.
	 *
	 * We also know that no new candidate can be added onto the
	 * receive queues.  Other, non candidate sockets _can_ be
	 * added to queue, so we must make sure only to touch
	 * candidates.
	 */
	list_for_each_entry_safe(u, next, &gc_inflight_list, link) {
		long total_refs;
		long inflight_refs;

		total_refs = file_count(u->sk.sk_socket->file);
		inflight_refs = atomic_long_read(&u->inflight);

		BUG_ON(inflight_refs < 1);
		BUG_ON(total_refs < inflight_refs);
		if (total_refs == inflight_refs) {
			list_move_tail(&u->link, &gc_candidates);
			u->gc_candidate = 1;
			u->gc_maybe_cycle = 1;
		}
	}

	/*
	 * Now remove all internal in-flight reference to children of
	 * the candidates.
	 */
	list_for_each_entry(u, &gc_candidates, link)
		scan_children(&u->sk, dec_inflight, NULL);

	/*
	 * Restore the references for children of all candidates,
	 * which have remaining references.  Do this recursively, so
	 * only those remain, which form cyclic references.
	 *
	 * Use a "cursor" link, to make the list traversal safe, even
	 * though elements might be moved about.
	 */
	list_add(&cursor, &gc_candidates);
	while (cursor.next != &gc_candidates) {
		u = list_entry(cursor.next, struct unix_sock, link);

		/* Move cursor to after the current position. */
		list_move(&cursor, &u->link);

		if (atomic_long_read(&u->inflight) > 0) {
			list_move_tail(&u->link, &not_cycle_list);
			u->gc_maybe_cycle = 0;
			scan_children(&u->sk, inc_inflight_move_tail, NULL);
		}
	}
	list_del(&cursor);

	/*
	 * not_cycle_list contains those sockets which do not make up a
	 * cycle.  Restore these to the inflight list.
	 */
	while (!list_empty(&not_cycle_list)) {
		u = list_entry(not_cycle_list.next, struct unix_sock, link);
		u->gc_candidate = 0;
		list_move_tail(&u->link, &gc_inflight_list);
	}

	/*
	 * Now gc_candidates contains only garbage.  Restore original
	 * inflight counters for these as well, and remove the skbuffs
	 * which are creating the cycle(s).
	 */
	skb_queue_head_init(&hitlist);
	list_for_each_entry(u, &gc_candidates, link)
		scan_children(&u->sk, inc_inflight, &hitlist);

	spin_unlock(&unix_gc_lock);

	/* Here we are. Hitlist is filled. Die. */
	__skb_queue_purge(&hitlist);

	spin_lock(&unix_gc_lock);

	/* All candidates should have been detached by now. */
	BUG_ON(!list_empty(&gc_candidates));
	gc_in_progress = false;

 out:
	spin_unlock(&unix_gc_lock);
}
1347' href='#n1347'>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
%PDF-1.2
%âãÏÓ
1 0 obj<</Producer(htmldoc 1.8.11 Copyright 1997-2001 Easy Software Products, All Rights Reserved.)/CreationDate(D:20010621143340Z)/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[551 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[581 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[494 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[494 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[494 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[494 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[497 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[497 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[497 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[500 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[500 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[503 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[503 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[503 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[506 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[506 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[506 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[506 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[509 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[509 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[512 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[512 0 R/XYZ null 683 0]>>endobj
253 0 obj<</Subtype/Link/Rect[72.0 406.8 348.8 419.8]/Border[0 0 0]/Dest[515 0 R/XYZ null 798 0]>>endobj
254 0 obj<</Subtype/Link/Rect[108.0 393.6 161.5 406.6]/Border[0 0 0]/Dest[515 0 R/XYZ null 706 0]>>endobj
255 0 obj<</Subtype/Link/Rect[108.0 380.4 327.7 393.4]/Border[0 0 0]/Dest[515 0 R/XYZ null 463 0]>>endobj
256 0 obj<</Subtype/Link/Rect[108.0 367.2 177.1 380.2]/Border[0 0 0]/Dest[515 0 R/XYZ null 391 0]>>endobj
257 0 obj<</Subtype/Link/Rect[108.0 354.0 203.6 367.0]/Border[0 0 0]/Dest[518 0 R/XYZ null 501 0]>>endobj
258 0 obj<</Subtype/Link/Rect[108.0 340.8 195.1 353.8]/Border[0 0 0]/Dest[518 0 R/XYZ null 351 0]>>endobj
259 0 obj<</Subtype/Link/Rect[108.0 327.6 215.2 340.6]/Border[0 0 0]/Dest[518 0 R/XYZ null 190 0]>>endobj
260 0 obj<</Subtype/Link/Rect[108.0 314.4 382.4 327.4]/Border[0 0 0]/Dest[521 0 R/XYZ null 359 0]>>endobj
261 0 obj<</Subtype/Link/Rect[108.0 301.2 255.6 314.2]/Border[0 0 0]/Dest[524 0 R/XYZ null 296 0]>>endobj
262 0 obj<</Subtype/Link/Rect[108.0 288.0 224.1 301.0]/Border[0 0 0]/Dest[527 0 R/XYZ null 768 0]>>endobj
263 0 obj<</Subtype/Link/Rect[108.0 274.8 187.8 287.8]/Border[0 0 0]/Dest[530 0 R/XYZ null 479 0]>>endobj
264 0 obj<</Subtype/Link/Rect[108.0 261.6 194.5 274.6]/Border[0 0 0]/Dest[530 0 R/XYZ null 368 0]>>endobj
265 0 obj<</Subtype/Link/Rect[108.0 248.4 200.6 261.4]/Border[0 0 0]/Dest[530 0 R/XYZ null 217 0]>>endobj
266 0 obj<</Subtype/Link/Rect[108.0 235.2 526.0 248.2]/Border[0 0 0]/Dest[533 0 R/XYZ null 638 0]>>endobj
267 0 obj<</Subtype/Link/Rect[108.0 222.0 500.6 235.0]/Border[0 0 0]/Dest[536 0 R/XYZ null 768 0]>>endobj
268 0 obj<</Subtype/Link/Rect[108.0 208.8 353.3 221.8]/Border[0 0 0]/Dest[536 0 R/XYZ null 221 0]>>endobj
269 0 obj<</Subtype/Link/Rect[108.0 195.6 419.0 208.6]/Border[0 0 0]/Dest[539 0 R/XYZ null 607 0]>>endobj
270 0 obj<</Subtype/Link/Rect[108.0 182.4 332.5 195.4]/Border[0 0 0]/Dest[539 0 R/XYZ null 306 0]>>endobj
271 0 obj<</Subtype/Link/Rect[108.0 169.2 256.5 182.2]/Border[0 0 0]/Dest[542 0 R/XYZ null 479 0]>>endobj
272 0 obj<</Subtype/Link/Rect[72.0 142.8 371.8 155.8]/Border[0 0 0]/Dest[545 0 R/XYZ null 798 0]>>endobj
273 0 obj<</Subtype/Link/Rect[108.0 129.6 181.6 142.6]/Border[0 0 0]/Dest[545 0 R/XYZ null 706 0]>>endobj
274 0 obj<</Subtype/Link/Rect[108.0 116.4 210.7 129.4]/Border[0 0 0]/Dest[545 0 R/XYZ null 569 0]>>endobj
275 0 obj<</Subtype/Link/Rect[108.0 103.2 268.7 116.2]/Border[0 0 0]/Dest[548 0 R/XYZ null 699 0]>>endobj
276 0 obj<</Subtype/Link/Rect[108.0 90.0 277.0 103.0]/Border[0 0 0]/Dest[548 0 R/XYZ null 220 0]>>endobj
277 0 obj<</Subtype/Link/Rect[108.0 76.8 316.7 89.8]/Border[0 0 0]/Dest[551 0 R/XYZ null 768 0]>>endobj
278 0 obj<</Subtype/Link/Rect[108.0 63.6 215.2 76.6]/Border[0 0 0]/Dest[551 0 R/XYZ null 656 0]>>endobj
279 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
278 0 R
]endobj
280 0 obj<</Subtype/Link/Rect[108.0 684.0 246.4 697.0]/Border[0 0 0]/Dest[554 0 R/XYZ null 399 0]>>endobj
281 0 obj<</Subtype/Link/Rect[108.0 670.8 362.5 683.8]/Border[0 0 0]/Dest[557 0 R/XYZ null 475 0]>>endobj
282 0 obj<</Subtype/Link/Rect[72.0 644.4 402.3 657.4]/Border[0 0 0]/Dest[560 0 R/XYZ null 798 0]>>endobj
283 0 obj<</Subtype/Link/Rect[108.0 631.2 179.2 644.2]/Border[0 0 0]/Dest[560 0 R/XYZ null 706 0]>>endobj
284 0 obj<</Subtype/Link/Rect[108.0 618.0 161.2 631.0]/Border[0 0 0]/Dest[563 0 R/XYZ null 673 0]>>endobj
285 0 obj<</Subtype/Link/Rect[72.0 591.6 277.1 604.6]/Border[0 0 0]/Dest[566 0 R/XYZ null 798 0]>>endobj
286 0 obj<</Subtype/Link/Rect[108.0 578.4 181.6 591.4]/Border[0 0 0]/Dest[566 0 R/XYZ null 730 0]>>endobj
287 0 obj<</Subtype/Link/Rect[108.0 565.2 189.0 578.2]/Border[0 0 0]/Dest[566 0 R/XYZ null 302 0]>>endobj
288 0 obj<</Subtype/Link/Rect[108.0 552.0 209.7 565.0]/Border[0 0 0]/Dest[569 0 R/XYZ null 693 0]>>endobj
289 0 obj<</Subtype/Link/Rect[108.0 538.8 294.4 551.8]/Border[0 0 0]/Dest[572 0 R/XYZ null 542 0]>>endobj
290 0 obj<</Subtype/Link/Rect[108.0 525.6 287.3 538.6]/Border[0 0 0]/Dest[575 0 R/XYZ null 768 0]>>endobj
291 0 obj<</Subtype/Link/Rect[108.0 512.4 350.9 525.4]/Border[0 0 0]/Dest[575 0 R/XYZ null 383 0]>>endobj
292 0 obj<</Subtype/Link/Rect[108.0 499.2 242.1 512.2]/Border[0 0 0]/Dest[578 0 R/XYZ null 768 0]>>endobj
293 0 obj<</Subtype/Link/Rect[108.0 486.0 220.1 499.0]/Border[0 0 0]/Dest[578 0 R/XYZ null 577 0]>>endobj
294 0 obj<</Subtype/Link/Rect[108.0 472.8 214.3 485.8]/Border[0 0 0]/Dest[578 0 R/XYZ null 466 0]>>endobj
295 0 obj<</Subtype/Link/Rect[108.0 459.6 281.2 472.6]/Border[0 0 0]/Dest[578 0 R/XYZ null 328 0]>>endobj
296 0 obj<</Subtype/Link/Rect[108.0 446.4 222.3 459.4]/Border[0 0 0]/Dest[578 0 R/XYZ null 230 0]>>endobj
297 0 obj<</Subtype/Link/Rect[108.0 433.2 234.5 446.2]/Border[0 0 0]/Dest[581 0 R/XYZ null 768 0]>>endobj
298 0 obj<</Subtype/Link/Rect[108.0 420.0 300.2 433.0]/Border[0 0 0]/Dest[581 0 R/XYZ null 191 0]>>endobj
299 0 obj<</Subtype/Link/Rect[72.0 393.6 272.9 406.6]/Border[0 0 0]/Dest[587 0 R/XYZ null 798 0]>>endobj
300 0 obj<</Subtype/Link/Rect[108.0 380.4 299.9 393.4]/Border[0 0 0]/Dest[587 0 R/XYZ null 730 0]>>endobj
301 0 obj<</Subtype/Link/Rect[108.0 367.2 288.0 380.2]/Border[0 0 0]/Dest[590 0 R/XYZ null 356 0]>>endobj
302 0 obj<</Subtype/Link/Rect[108.0 354.0 307.9 367.0]/Border[0 0 0]/Dest[593 0 R/XYZ null 768 0]>>endobj
303 0 obj<</Subtype/Link/Rect[72.0 327.6 416.3 340.6]/Border[0 0 0]/Dest[596 0 R/XYZ null 798 0]>>endobj
304 0 obj<</Subtype/Link/Rect[108.0 314.4 219.2 327.4]/Border[0 0 0]/Dest[596 0 R/XYZ null 706 0]>>endobj
305 0 obj<</Subtype/Link/Rect[108.0 301.2 181.0 314.2]/Border[0 0 0]/Dest[596 0 R/XYZ null 608 0]>>endobj
306 0 obj<</Subtype/Link/Rect[108.0 288.0 316.1 301.0]/Border[0 0 0]/Dest[599 0 R/XYZ null 660 0]>>endobj
307 0 obj<</Subtype/Link/Rect[108.0 274.8 432.8 287.8]/Border[0 0 0]/Dest[602 0 R/XYZ null 531 0]>>endobj
308 0 obj<</Subtype/Link/Rect[108.0 261.6 319.4 274.6]/Border[0 0 0]/Dest[602 0 R/XYZ null 196 0]>>endobj
309 0 obj<</Subtype/Link/Rect[108.0 248.4 330.8 261.4]/Border[0 0 0]/Dest[605 0 R/XYZ null 359 0]>>endobj
310 0 obj<</Subtype/Link/Rect[108.0 235.2 261.4 248.2]/Border[0 0 0]/Dest[605 0 R/XYZ null 183 0]>>endobj
311 0 obj<</Subtype/Link/Rect[108.0 222.0 252.8 235.0]/Border[0 0 0]/Dest[611 0 R/XYZ null 545 0]>>endobj
312 0 obj<</Subtype/Link/Rect[108.0 208.8 246.4 221.8]/Border[0 0 0]/Dest[614 0 R/XYZ null 488 0]>>endobj
313 0 obj<</Subtype/Link/Rect[108.0 195.6 292.9 208.6]/Border[0 0 0]/Dest[623 0 R/XYZ null 768 0]>>endobj
314 0 obj<</Subtype/Link/Rect[108.0 182.4 332.0 195.4]/Border[0 0 0]/Dest[626 0 R/XYZ null 435 0]>>endobj
315 0 obj<</Subtype/Link/Rect[108.0 169.2 406.2 182.2]/Border[0 0 0]/Dest[629 0 R/XYZ null 189 0]>>endobj
316 0 obj<</Subtype/Link/Rect[108.0 156.0 431.0 169.0]/Border[0 0 0]/Dest[644 0 R/XYZ null 686 0]>>endobj
317 0 obj<</Subtype/Link/Rect[72.0 129.6 423.1 142.6]/Border[0 0 0]/Dest[650 0 R/XYZ null 798 0]>>endobj
318 0 obj<</Subtype/Link/Rect[108.0 116.4 164.5 129.4]/Border[0 0 0]/Dest[650 0 R/XYZ null 706 0]>>endobj
319 0 obj<</Subtype/Link/Rect[108.0 103.2 181.6 116.2]/Border[0 0 0]/Dest[650 0 R/XYZ null 569 0]>>endobj
320 0 obj<</Subtype/Link/Rect[108.0 90.0 233.6 103.0]/Border[0 0 0]/Dest[650 0 R/XYZ null 246 0]>>endobj
321 0 obj<</Subtype/Link/Rect[108.0 76.8 188.3 89.8]/Border[0 0 0]/Dest[653 0 R/XYZ null 581 0]>>endobj
322 0 obj<</Subtype/Link/Rect[108.0 63.6 222.0 76.6]/Border[0 0 0]/Dest[653 0 R/XYZ null 417 0]>>endobj
323 0 obj[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
322 0 R
]endobj
324 0 obj<</Subtype/Link/Rect[108.0 684.0 288.6 697.0]/Border[0 0 0]/Dest[653 0 R/XYZ null 292 0]>>endobj
325 0 obj<</Subtype/Link/Rect[108.0 670.8 230.8 683.8]/Border[0 0 0]/Dest[656 0 R/XYZ null 768 0]>>endobj
326 0 obj<</Subtype/Link/Rect[108.0 657.6 288.9 670.6]/Border[0 0 0]/Dest[656 0 R/XYZ null 326 0]>>endobj
327 0 obj<</Subtype/Link/Rect[108.0 644.4 269.3 657.4]/Border[0 0 0]/Dest[659 0 R/XYZ null 686 0]>>endobj
328 0 obj<</Subtype/Link/Rect[108.0 631.2 203.0 644.2]/Border[0 0 0]/Dest[659 0 R/XYZ null 496 0]>>endobj
329 0 obj<</Subtype/Link/Rect[108.0 618.0 259.9 631.0]/Border[0 0 0]/Dest[659 0 R/XYZ null 345 0]>>endobj
330 0 obj<</Subtype/Link/Rect[108.0 604.8 178.0 617.8]/Border[0 0 0]/Dest[659 0 R/XYZ null 155 0]>>endobj
331 0 obj<</Subtype/Link/Rect[108.0 591.6 177.4 604.6]/Border[0 0 0]/Dest[662 0 R/XYZ null 581 0]>>endobj
332 0 obj<</Subtype/Link/Rect[72.0 565.2 413.9 578.2]/Border[0 0 0]/Dest[665 0 R/XYZ null 798 0]>>endobj
333 0 obj<</Subtype/Link/Rect[108.0 552.0 447.4 565.0]/Border[0 0 0]/Dest[665 0 R/XYZ null 706 0]>>endobj
334 0 obj<</Subtype/Link/Rect[108.0 538.8 319.1 551.8]/Border[0 0 0]/Dest[665 0 R/XYZ null 525 0]>>endobj
335 0 obj<</Subtype/Link/Rect[108.0 525.6 231.1 538.6]/Border[0 0 0]/Dest[665 0 R/XYZ null 348 0]>>endobj
336 0 obj<</Subtype/Link/Rect[108.0 512.4 292.2 525.4]/Border[0 0 0]/Dest[668 0 R/XYZ null 686 0]>>endobj
337 0 obj<</Subtype/Link/Rect[108.0 499.2 208.5 512.2]/Border[0 0 0]/Dest[668 0 R/XYZ null 443 0]>>endobj
338 0 obj<</Subtype/Link/Rect[108.0 486.0 233.6 499.0]/Border[0 0 0]/Dest[668 0 R/XYZ null 187 0]>>endobj
339 0 obj<</Subtype/Link/Rect[108.0 472.8 301.4 485.8]/Border[0 0 0]/Dest[671 0 R/XYZ null 673 0]>>endobj
340 0 obj<</Subtype/Link/Rect[108.0 459.6 394.8 472.6]/Border[0 0 0]/Dest[671 0 R/XYZ null 232 0]>>endobj
341 0 obj<</Subtype/Link/Rect[108.0 446.4 386.9 459.4]/Border[0 0 0]/Dest[677 0 R/XYZ null 594 0]>>endobj
342 0 obj<</Subtype/Link/Rect[72.0 420.0 228.8 433.0]/Border[0 0 0]/Dest[680 0 R/XYZ null 798 0]>>endobj
343 0 obj<</Subtype/Link/Rect[108.0 406.8 159.0 419.8]/Border[0 0 0]/Dest[680 0 R/XYZ null 730 0]>>endobj
344 0 obj<</Subtype/Link/Rect[108.0 393.6 499.0 406.6]/Border[0 0 0]/Dest[680 0 R/XYZ null 700 0]>>endobj
345 0 obj<</Subtype/Link/Rect[108.0 380.4 504.2 393.4]/Border[0 0 0]/Dest[680 0 R/XYZ null 348 0]>>endobj
346 0 obj<</Subtype/Link/Rect[108.0 367.2 455.7 380.2]/Border[0 0 0]/Dest[683 0 R/XYZ null 768 0]>>endobj
347 0 obj<</Subtype/Link/Rect[108.0 354.0 425.4 367.0]/Border[0 0 0]/Dest[683 0 R/XYZ null 639 0]>>endobj
348 0 obj<</Subtype/Link/Rect[72.0 327.6 342.4 340.6]/Border[0 0 0]/Dest[686 0 R/XYZ null 798 0]>>endobj
349 0 obj<</Subtype/Link/Rect[108.0 314.4 187.1 327.4]/Border[0 0 0]/Dest[686 0 R/XYZ null 706 0]>>endobj
350 0 obj<</Subtype/Link/Rect[108.0 301.2 247.6 314.2]/Border[0 0 0]/Dest[686 0 R/XYZ null 582 0]>>endobj
351 0 obj<</Subtype/Link/Rect[108.0 288.0 230.8 301.0]/Border[0 0 0]/Dest[686 0 R/XYZ null 484 0]>>endobj
352 0 obj<</Subtype/Link/Rect[108.0 274.8 205.8 287.8]/Border[0 0 0]/Dest[686 0 R/XYZ null 359 0]>>endobj
353 0 obj[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
334 0 R
335 0 R
336 0 R
337 0 R
338 0 R
339 0 R
340 0 R
341 0 R
342 0 R
343 0 R
344 0 R
345 0 R
346 0 R
347 0 R
348 0 R
349 0 R
350 0 R
351 0 R
352 0 R
]endobj
354 0 obj<</Dests 355 0 R>>endobj
355 0 obj<</Kids[356 0 R]>>endobj
356 0 obj<</Limits[(aen1036)(smbpasswdfileformat)]/Names[(aen1036)357 0 R(aen1079)358 0 R(aen1093)359 0 R(aen1121)360 0 R(aen1132)361 0 R(aen116)362 0 R(aen1180)363 0 R(aen1224)364 0 R(aen132)365 0 R(aen1338)366 0 R(aen1368)367 0 R(aen1402)368 0 R(aen141)369 0 R(aen1410)370 0 R(aen1418)371 0 R(aen1426)372 0 R(aen1433)373 0 R(aen1469)374 0 R(aen1482)375 0 R(aen1485)376 0 R(aen1495)377 0 R(aen15)378 0 R(aen1520)379 0 R(aen1538)380 0 R(aen1542)381 0 R(aen1555)382 0 R(aen1562)383 0 R(aen1566)384 0 R(aen157)385 0 R(aen1571)386 0 R(aen1575)387 0 R(aen1591)388 0 R(aen1599)389 0 R(aen1603)390 0 R(aen1606)391 0 R(aen1612)392 0 R(aen1624)393 0 R(aen1627)394 0 R(aen1638)395 0 R(aen1647)396 0 R(aen1658)397 0 R(aen1678)398 0 R(aen1693)399 0 R(aen17)400 0 R(aen1707)401 0 R(aen171)402 0 R(aen1714)403 0 R(aen1736)404 0 R(aen176)405 0 R(aen180)406 0 R(aen1800)407 0 R(aen1810)408 0 R(aen1821)409 0 R(aen1823)410 0 R(aen183)411 0 R(aen1838)412 0 R(aen1847)413 0 R(aen1851)414 0 R(aen1860)415 0 R(aen1867)416 0 R(aen1872)417 0 R(aen1875)418 0 R(aen1880)419 0 R(aen192)420 0 R(aen196)421 0 R(aen206)422 0 R(aen209)423 0 R(aen212)424 0 R(aen223)425 0 R(aen245)426 0 R(aen248)427 0 R(aen25)428 0 R(aen264)429 0 R(aen275)430 0 R(aen283)431 0 R(aen295)432 0 R(aen307)433 0 R(aen312)434 0 R(aen320)435 0 R(aen325)436 0 R(aen328)437 0 R(aen342)438 0 R(aen352)439 0 R(aen369)440 0 R(aen377)441 0 R(aen391)442 0 R(aen398)443 0 R(aen4)444 0 R(aen405)445 0 R(aen410)446 0 R(aen421)447 0 R(aen432)448 0 R(aen436)449 0 R(aen447)450 0 R(aen466)451 0 R(aen473)452 0 R(aen482)453 0 R(aen53)454 0 R(aen534)455 0 R(aen57)456 0 R(aen573)457 0 R(aen588)458 0 R(aen599)459 0 R(aen634)460 0 R(aen643)461 0 R(aen654)462 0 R(aen676)463 0 R(aen687)464 0 R(aen71)465 0 R(aen722)466 0 R(aen739)467 0 R(aen750)468 0 R(aen77)469 0 R(aen775)470 0 R(aen783)471 0 R(aen787)472 0 R(aen797)473 0 R(aen800)474 0 R(aen804)475 0 R(aen826)476 0 R(aen87)477 0 R(aen870)478 0 R(aen888)479 0 R(aen9)480 0 R(aen952)481 0 R(aen957)482 0 R(aen973)483 0 R(aen990)484 0 R(aen996)485 0 R(body.html)486 0 R(migration)487 0 R(samba-project-documentation)488 0 R(smbpasswdfileformat)489 0 R]>>endobj
357 0 obj<</D[596 0 R/XYZ null 660 null]>>endobj
358 0 obj<</D[599 0 R/XYZ null 531 null]>>endobj
359 0 obj<</D[599 0 R/XYZ null 196 null]>>endobj
360 0 obj<</D[602 0 R/XYZ null 359 null]>>endobj
361 0 obj<</D[602 0 R/XYZ null 183 null]>>endobj
362 0 obj<</D[497 0 R/XYZ null 266 null]>>endobj
363 0 obj<</D[608 0 R/XYZ null 545 null]>>endobj
364 0 obj<</D[611 0 R/XYZ null 488 null]>>endobj
365 0 obj<</D[500 0 R/XYZ null 686 null]>>endobj
366 0 obj<</D[620 0 R/XYZ null 768 null]>>endobj
367 0 obj<</D[623 0 R/XYZ null 435 null]>>endobj
368 0 obj<</D[626 0 R/XYZ null 189 null]>>endobj
369 0 obj<</D[500 0 R/XYZ null 509 null]>>endobj
370 0 obj<</D[629 0 R/XYZ null 605 null]>>endobj
371 0 obj<</D[629 0 R/XYZ null 406 null]>>endobj
372 0 obj<</D[629 0 R/XYZ null 168 null]>>endobj
373 0 obj<</D[632 0 R/XYZ null 698 null]>>endobj
374 0 obj<</D[635 0 R/XYZ null 341 null]>>endobj
375 0 obj<</D[638 0 R/XYZ null 434 null]>>endobj
376 0 obj<</D[638 0 R/XYZ null 339 null]>>endobj
377 0 obj<</D[641 0 R/XYZ null 686 null]>>endobj
378 0 obj<</D[491 0 R/XYZ null 798 null]>>endobj
379 0 obj<</D[647 0 R/XYZ null 798 null]>>endobj
380 0 obj<</D[647 0 R/XYZ null 706 null]>>endobj
381 0 obj<</D[647 0 R/XYZ null 569 null]>>endobj
382 0 obj<</D[647 0 R/XYZ null 246 null]>>endobj
383 0 obj<</D[650 0 R/XYZ null 581 null]>>endobj
384 0 obj<</D[650 0 R/XYZ null 417 null]>>endobj
385 0 obj<</D[500 0 R/XYZ null 332 null]>>endobj
386 0 obj<</D[650 0 R/XYZ null 292 null]>>endobj
387 0 obj<</D[653 0 R/XYZ null 768 null]>>endobj
388 0 obj<</D[653 0 R/XYZ null 326 null]>>endobj
389 0 obj<</D[656 0 R/XYZ null 686 null]>>endobj
390 0 obj<</D[656 0 R/XYZ null 496 null]>>endobj
391 0 obj<</D[656 0 R/XYZ null 345 null]>>endobj
392 0 obj<</D[656 0 R/XYZ null 155 null]>>endobj
393 0 obj<</D[659 0 R/XYZ null 581 null]>>endobj
394 0 obj<</D[662 0 R/XYZ null 798 null]>>endobj
395 0 obj<</D[662 0 R/XYZ null 706 null]>>endobj
396 0 obj<</D[662 0 R/XYZ null 525 null]>>endobj
397 0 obj<</D[662 0 R/XYZ null 348 null]>>endobj
398 0 obj<</D[665 0 R/XYZ null 686 null]>>endobj
399 0 obj<</D[665 0 R/XYZ null 443 null]>>endobj
400 0 obj<</D[491 0 R/XYZ null 730 null]>>endobj
401 0 obj<</D[665 0 R/XYZ null 187 null]>>endobj
402 0 obj<</D[503 0 R/XYZ null 768 null]>>endobj
403 0 obj<</D[668 0 R/XYZ null 673 null]>>endobj
404 0 obj<</D[668 0 R/XYZ null 232 null]>>endobj
405 0 obj<</D[503 0 R/XYZ null 577 null]>>endobj
406 0 obj<</D[503 0 R/XYZ null 505 null]>>endobj
407 0 obj<</D[674 0 R/XYZ null 594 null]>>endobj
408 0 obj<</D[677 0 R/XYZ null 798 null]>>endobj
409 0 obj<</D[677 0 R/XYZ null 730 null]>>endobj
410 0 obj<</D[677 0 R/XYZ null 700 null]>>endobj
411 0 obj<</D[503 0 R/XYZ null 394 null]>>endobj
412 0 obj<</D[677 0 R/XYZ null 348 null]>>endobj
413 0 obj<</D[680 0 R/XYZ null 768 null]>>endobj
414 0 obj<</D[680 0 R/XYZ null 639 null]>>endobj
415 0 obj<</D[683 0 R/XYZ null 798 null]>>endobj
416 0 obj<</D[683 0 R/XYZ null 706 null]>>endobj
417 0 obj<</D[683 0 R/XYZ null 582 null]>>endobj
418 0 obj<</D[683 0 R/XYZ null 484 null]>>endobj
419 0 obj<</D[683 0 R/XYZ null 359 null]>>endobj
420 0 obj<</D[506 0 R/XYZ null 739 null]>>endobj
421 0 obj<</D[506 0 R/XYZ null 615 null]>>endobj
422 0 obj<</D[509 0 R/XYZ null 768 null]>>endobj
423 0 obj<</D[509 0 R/XYZ null 683 null]>>endobj
424 0 obj<</D[512 0 R/XYZ null 798 null]>>endobj
425 0 obj<</D[512 0 R/XYZ null 706 null]>>endobj
426 0 obj<</D[512 0 R/XYZ null 463 null]>>endobj
427 0 obj<</D[512 0 R/XYZ null 391 null]>>endobj
428 0 obj<</D[491 0 R/XYZ null 593 null]>>endobj
429 0 obj<</D[515 0 R/XYZ null 501 null]>>endobj
430 0 obj<</D[515 0 R/XYZ null 351 null]>>endobj
431 0 obj<</D[515 0 R/XYZ null 190 null]>>endobj
432 0 obj<</D[518 0 R/XYZ null 359 null]>>endobj
433 0 obj<</D[521 0 R/XYZ null 296 null]>>endobj
434 0 obj<</D[524 0 R/XYZ null 768 null]>>endobj
435 0 obj<</D[527 0 R/XYZ null 479 null]>>endobj
436 0 obj<</D[527 0 R/XYZ null 368 null]>>endobj
437 0 obj<</D[527 0 R/XYZ null 217 null]>>endobj
438 0 obj<</D[530 0 R/XYZ null 638 null]>>endobj
439 0 obj<</D[533 0 R/XYZ null 768 null]>>endobj
440 0 obj<</D[533 0 R/XYZ null 221 null]>>endobj
441 0 obj<</D[536 0 R/XYZ null 607 null]>>endobj
442 0 obj<</D[536 0 R/XYZ null 306 null]>>endobj
443 0 obj<</D[539 0 R/XYZ null 753 null]>>endobj
444 0 obj<</D[488 0 R/XYZ null 647 null]>>endobj
445 0 obj<</D[539 0 R/XYZ null 592 null]>>endobj
446 0 obj<</D[539 0 R/XYZ null 479 null]>>endobj
447 0 obj<</D[542 0 R/XYZ null 798 null]>>endobj
448 0 obj<</D[542 0 R/XYZ null 706 null]>>endobj
449 0 obj<</D[542 0 R/XYZ null 569 null]>>endobj
450 0 obj<</D[545 0 R/XYZ null 699 null]>>endobj
451 0 obj<</D[545 0 R/XYZ null 220 null]>>endobj
452 0 obj<</D[548 0 R/XYZ null 768 null]>>endobj
453 0 obj<</D[548 0 R/XYZ null 656 null]>>endobj
454 0 obj<</D[491 0 R/XYZ null 178 null]>>endobj
455 0 obj<</D[551 0 R/XYZ null 399 null]>>endobj
456 0 obj<</D[494 0 R/XYZ null 739 null]>>endobj
457 0 obj<</D[554 0 R/XYZ null 475 null]>>endobj
458 0 obj<</D[557 0 R/XYZ null 798 null]>>endobj
459 0 obj<</D[557 0 R/XYZ null 706 null]>>endobj
460 0 obj<</D[560 0 R/XYZ null 673 null]>>endobj
461 0 obj<</D[563 0 R/XYZ null 798 null]>>endobj
462 0 obj<</D[563 0 R/XYZ null 730 null]>>endobj
463 0 obj<</D[563 0 R/XYZ null 302 null]>>endobj
464 0 obj<</D[566 0 R/XYZ null 693 null]>>endobj
465 0 obj<</D[494 0 R/XYZ null 379 null]>>endobj
466 0 obj<</D[569 0 R/XYZ null 542 null]>>endobj
467 0 obj<</D[572 0 R/XYZ null 768 null]>>endobj
468 0 obj<</D[572 0 R/XYZ null 383 null]>>endobj
469 0 obj<</D[494 0 R/XYZ null 268 null]>>endobj
470 0 obj<</D[575 0 R/XYZ null 768 null]>>endobj
471 0 obj<</D[575 0 R/XYZ null 577 null]>>endobj
472 0 obj<</D[575 0 R/XYZ null 466 null]>>endobj
473 0 obj<</D[575 0 R/XYZ null 328 null]>>endobj
474 0 obj<</D[575 0 R/XYZ null 230 null]>>endobj
475 0 obj<</D[578 0 R/XYZ null 768 null]>>endobj
476 0 obj<</D[578 0 R/XYZ null 191 null]>>endobj
477 0 obj<</D[497 0 R/XYZ null 768 null]>>endobj
478 0 obj<</D[584 0 R/XYZ null 798 null]>>endobj
479 0 obj<</D[584 0 R/XYZ null 730 null]>>endobj
480 0 obj<</D[488 0 R/XYZ null 616 null]>>endobj
481 0 obj<</D[587 0 R/XYZ null 356 null]>>endobj
482 0 obj<</D[590 0 R/XYZ null 768 null]>>endobj
483 0 obj<</D[593 0 R/XYZ null 798 null]>>endobj
484 0 obj<</D[593 0 R/XYZ null 706 null]>>endobj
485 0 obj<</D[593 0 R/XYZ null 608 null]>>endobj
486 0 obj<</D[494 0 R/XYZ null 698 null]>>endobj
487 0 obj<</D[578 0 R/XYZ null 191 null]>>endobj
488 0 obj<</D[488 0 R/XYZ null 753 null]>>endobj
489 0 obj<</D[548 0 R/XYZ null 656 null]>>endobj
490 0 obj<</Type/Pages/MediaBox[0 0 595 792]/Count 70/Kids[491 0 R
692 0 R
695 0 R
698 0 R
494 0 R
497 0 R
500 0 R
503 0 R
506 0 R
509 0 R
512 0 R
515 0 R
518 0 R
521 0 R
524 0 R
527 0 R
530 0 R
533 0 R
536 0 R
539 0 R
542 0 R
545 0 R
548 0 R
551 0 R
554 0 R
557 0 R
560 0 R
563 0 R
566 0 R
569 0 R
572 0 R
575 0 R
578 0 R
581 0 R
584 0 R
587 0 R
590 0 R
593 0 R
596 0 R
599 0 R
602 0 R
605 0 R
608 0 R
611 0 R
614 0 R
617 0 R
620 0 R
623 0 R
626 0 R
629 0 R
632 0 R
635 0 R
638 0 R
641 0 R
644 0 R
647 0 R
650 0 R
653 0 R
656 0 R
659 0 R
662 0 R
665 0 R
668 0 R
671 0 R
674 0 R
677 0 R
680 0 R
683 0 R
686 0 R
689 0 R
]>>endobj
491 0 obj<</Type/Page/Parent 490 0 R/Contents 492 0 R/Resources<</ProcSet[/PDF/Text]/Font<</F4 7 0 R/F8 10 0 R/F9 11 0 R>>>>/Annots 17 0 R>>endobj
492 0 obj<</Length 493 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±