Merge lp:~spud/spud/update_options into lp:spud

Proposed by Cian Wilson
Status: Merged
Merged at revision: 535
Proposed branch: lp:~spud/spud/update_options
Merge into: lp:spud
Diff against target: 7047 lines
To merge this branch: bzr merge lp:~spud/spud/update_options
Reviewer Review Type Date Requested Status
Patrick Farrell Approve
Stephan Kramer Approve
Review via email: mp+130173@code.launchpad.net

Description of the change

This merge adds a new script to spud. Based on fluidity's update_options.py script this has been made schema ambivalent and uses the same rules as diamond to find the schema to be used for a given file extension. Alternatively (and similarly to fluidity) -s or -a may be used to specify the schema or a schema alias. Additionally, using the -r option, it can recurse down a file structure and search for files.

Manual has been updated and script has been added to the install target.

To post a comment you must log in.
Revision history for this message
Patrick Farrell (pefarrell) wrote :

I assume you're using this (and thus have tested it) for the magma code you're working on?

Revision history for this message
Stephan Kramer (s-kramer) wrote :

Tested out, debuild the package: works like a charm.

One thing: when we merge this in we probably want to remove it directly from fluidity to avoid getting conflicts between the spud and fluidity package?

review: Approve
Revision history for this message
Cian Wilson (cwilson) wrote :

Yes, for about a year now. In fact this is me just copying it from that repository over to a more sensible location since its not specific.

I've also been using it in fluidity in preference to fluidity's update_options.py script. For example, in a fluidity checkout:
spud-update-options -s path/to/schema/fluidity_options.rng -r -- *.flml
will recurse through all flmls (rather than just the hard coded ones specified in fluidity's version).

Revision history for this message
Patrick Farrell (pefarrell) :
review: Approve
Revision history for this message
Cian Wilson (cwilson) wrote :

Stephan: don't think there'll be a conflict as the names are different (spud-update-options versus update_options.py). The original fluidity one might still be useful to some people (if you just want to update things in the tests directory it requires less thought) but it could be removed eventually, yes. Probably want to release a new spud package before then though.

Thanks for the reviews guys.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile.in'
2--- Makefile.in 2012-01-25 14:21:05 +0000
3+++ Makefile.in 2012-10-17 16:52:21 +0000
4@@ -88,6 +88,7 @@
5 @INSTALL@ -d $(DESTDIR)@prefix@/bin
6 @INSTALL@ -m755 bin/spud-preprocess $(DESTDIR)@prefix@/bin
7 @INSTALL@ -m755 bin/spud-set $(DESTDIR)@prefix@/bin
8+ @INSTALL@ -m755 bin/spud-update-options $(DESTDIR)@prefix@/bin
9 @INSTALL@ -m644 schema/spud_base.rnc $(DESTDIR)@prefix@/share/spud
10 @INSTALL@ -m644 schema/spud_base.rng $(DESTDIR)@prefix@/share/spud
11
12
13=== added file 'bin/spud-update-options'
14--- bin/spud-update-options 1970-01-01 00:00:00 +0000
15+++ bin/spud-update-options 2012-10-17 16:52:21 +0000
16@@ -0,0 +1,116 @@
17+#!/usr/bin/env python
18+
19+import glob
20+import os
21+import sys
22+import argparse
23+import string
24+
25+import diamond.debug as debug
26+import diamond.schema as schema
27+
28+def schemaerr():
29+ debug.deprint("Have you registered it in /usr/share/diamond/schemata, /etc/diamond/schemata, $HOME/.diamond/schemata", 0)
30+ debug.deprint("or a schemata directory beneath a location listed in the environment variable $DIAMOND_CONFIG_PATH?", 0)
31+ debug.deprint("To register a schema, place a file in one of those directories, and let its name be the suffix of your language.", 0)
32+ debug.deprint("The file should consist of:", 0)
33+ debug.deprint(" A Verbal Description Of The Language Purpose", 0)
34+ debug.deprint(" alias1=/path/to/schema1/file.rng", 0)
35+ debug.deprint(" alias2=/path/to/schema2/file.rng", 0)
36+ sys.exit(1)
37+
38+parser = argparse.ArgumentParser( \
39+ description="""Updates option files.""")
40+parser.add_argument('file', action='store', metavar='file', type=str, nargs='+',
41+ help='specify a filename or expression')
42+parser.add_argument('-a', '--alias', action='store', dest='alias', required=False, default=None,
43+ type=str,
44+ help='schema alias that should be used (will be ignored if -s is set)')
45+parser.add_argument('-s', '--schema', action='store', dest='schema', required=False, default=None,
46+ type=str,
47+ help='schema that should be used')
48+parser.add_argument('-r', '--recursive', metavar='depth', action='store', type=int, dest='recurse', nargs='?', default=None,
49+ required=False, const=-1,
50+ help='recursively search the directory tree for files (if no depth is specified full recursion will be used)')
51+parser.add_argument('-v', '--verbose', action='store_const', dest='verbose', const=True, default=False,
52+ required=False,
53+ help='verbose output')
54+args = parser.parse_args()
55+
56+if not args.verbose:
57+ debug.SetDebugLevel(0)
58+
59+filenames = []
60+exts = set()
61+for f in args.file:
62+
63+ if args.recurse is None:
64+ for filename in glob.glob(f):
65+ filenames.append(os.path.join(os.curdir, filename))
66+ exts.add(filename.split('.')[-1])
67+ else:
68+
69+ if os.path.isabs(f):
70+ dirname = os.path.dirname(f)
71+ else:
72+ dirname = os.curdir
73+ dirname = os.path.normpath(dirname)
74+
75+ for root, dirnames, files in os.walk(dirname, topdown=True):
76+ depth = string.count(root, os.path.sep)
77+ for filename in glob.glob1(os.path.join(root, os.path.dirname(f)), os.path.split(f)[-1]):
78+ filenames.append(os.path.join(os.path.join(root, os.path.dirname(f)), filename))
79+ exts.add(filename.split('.')[-1])
80+ if depth == args.recurse:
81+ dirnames[:] = []
82+
83+import diamond.config as config
84+# only import config after the debug level has been set
85+extdict = {}
86+if args.schema is not None:
87+ for e in exts: extdict[e] = args.schema
88+else:
89+ if len(config.schemata) == 0:
90+ debug.deprint("Could not find a schema file.", 0)
91+ schemaerr()
92+ for e in exts:
93+ try:
94+ extdict[e] = config.schemata[e][1][args.alias]
95+ except:
96+ debug.deprint("Could not find schema matching suffix %s." % e, 0)
97+ schemaerr()
98+
99+# cache parsed schema files
100+schemadict = {}
101+for k,v in extdict.items():
102+ schemadict[k] = schema.Schema(v)
103+
104+invalidFiles = []
105+updated = 0
106+for filename in filenames:
107+ debug.dprint("Processing " + str(filename), 1)
108+
109+ ext = filename.split(".")[-1]
110+ sch = schemadict[ext]
111+
112+ # Read the file and check that either the file is valid, or diamond.schema
113+ # can make the file valid by adding in the missing elements
114+ optionsTree = sch.read(filename)
115+ lost_eles, added_eles, lost_attrs, added_attrs = sch.read_errors()
116+ if len(lost_eles) + len(lost_attrs) > 0 or not optionsTree.valid:
117+ debug.deprint(str(filename) + ": Invalid", 0)
118+ debug.deprint(str(filename) + " errors: " + str((lost_eles, added_eles, lost_attrs, added_attrs)), 1)
119+ invalidFiles.append(filename)
120+ continue
121+
122+ # Write out the updated options file
123+ optionsTree.write(filename)
124+ debug.dprint(str(filename) + ": Updated", 0)
125+ updated += 1
126+
127+debug.dprint("Summary:", 0)
128+debug.dprint("Invalid options files:", 0)
129+for filename in invalidFiles:
130+ debug.dprint(filename, 0)
131+debug.dprint("Invalid: " + str(len(invalidFiles)), 0)
132+debug.dprint("Updated: " + str(updated), 0)
133
134=== modified file 'doc/spud_manual.pdf'
135--- doc/spud_manual.pdf 2012-04-04 01:25:03 +0000
136+++ doc/spud_manual.pdf 2012-10-17 16:52:21 +0000
137@@ -493,35 +493,40 @@
138 (xpath)
139 endobj
140 329 0 obj
141-<< /S /GoTo /D [330 0 R /Fit ] >>
142-endobj
143-332 0 obj <<
144-/Length 130
145+<< /S /GoTo /D (section.5.2) >>
146+endobj
147+332 0 obj
148+(Spud-update-options)
149+endobj
150+333 0 obj
151+<< /S /GoTo /D [334 0 R /Fit ] >>
152+endobj
153+336 0 obj <<
154+/Length 132
155 /Filter /FlateDecode
156 >>
157 stream
158-xÚuŽ±
159-Â@DûûŠ)0ëîžwgJ+·‹@P„ AÈÿ›°¥X
1603
161ÌcO0N�ÿøÞÂú¨[H!•´�= š)©`
162¬Ç­ºŽS_7š¸šKŠ
163/Ý{ê†únggµ)鈅24m&–âˆÝøy
164>Œ+weÑeþsë`á
165bP'ÿ
166+xÚ3PHW0Ppç2ÀA;…pé»Y(šëšš(„¤)™é™*±ž¡�¡BHŠB´FpAiŠ¦®‘©�PPÏÂôMÌ+MÌÑŒ
167ñ‚˜a¨gijj6Ã\ÏÌÀLA×ÒLÏÀÐ
168b„rI~RjÔs
169ÃÈÀÐd†Ë\C¸ï™)
170 endstream
171 endobj
172-330 0 obj <<
173-/Type /Page
174-/Contents 332 0 R
175-/Resources 331 0 R
176-/MediaBox [0 0 595.276 841.89]
177-/Parent 336 0 R
178->> endobj
179-333 0 obj <<
180-/D [330 0 R /XYZ 55.693 817.952 null]
181->> endobj
182 334 0 obj <<
183-/D [330 0 R /XYZ 56.693 785.197 null]
184->> endobj
185-331 0 obj <<
186-/Font << /F28 335 0 R >>
187+/Type /Page
188+/Contents 336 0 R
189+/Resources 335 0 R
190+/MediaBox [0 0 595.276 841.89]
191+/Parent 340 0 R
192+>> endobj
193+337 0 obj <<
194+/D [334 0 R /XYZ 55.693 817.952 null]
195+>> endobj
196+338 0 obj <<
197+/D [334 0 R /XYZ 56.693 785.197 null]
198+>> endobj
199+335 0 obj <<
200+/Font << /F28 339 0 R >>
201 /ProcSet [ /PDF /Text ]
202 >> endobj
203-339 0 obj <<
204+343 0 obj <<
205 /Length 68
206 /Filter /FlateDecode
207 >>
208@@ -530,21 +535,21 @@
209 áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÒŒ
210ñâ2€jB§]C¸”é'
211 endstream
212 endobj
213-338 0 obj <<
214+342 0 obj <<
215 /Type /Page
216-/Contents 339 0 R
217-/Resources 337 0 R
218+/Contents 343 0 R
219+/Resources 341 0 R
220 /MediaBox [0 0 595.276 841.89]
221-/Parent 336 0 R
222->> endobj
223-340 0 obj <<
224-/D [338 0 R /XYZ 55.693 817.952 null]
225->> endobj
226-337 0 obj <<
227-/Font << /F28 335 0 R >>
228+/Parent 340 0 R
229+>> endobj
230+344 0 obj <<
231+/D [342 0 R /XYZ 55.693 817.952 null]
232+>> endobj
233+341 0 obj <<
234+/Font << /F28 339 0 R >>
235 /ProcSet [ /PDF /Text ]
236 >> endobj
237-374 0 obj <<
238+378 0 obj <<
239 /Length 1170
240 /Filter /FlateDecode
241 >>
242@@ -555,235 +560,235 @@
243 �4~
244
245ñ€Î
246¢Cktþš­’beÑXªà«Z¸üÆ%¨ìiÈøÏF¦['M"Ð3…Åâ…ëªxÜêXå�‚Ø’ÝÕrÕÔH•×÷"•,VÕ®¹æ™Äc¹Ïj‰Ûjyyvñþ³ÝÿÓ¹³³@oº\þ$�»’n‹ç±-Õ‰Šõ¼á†¢ÐYâpƒ$èÐr|
247ÇcæAÙu~•-¸êuƒh5w{—Ù°„I·É©hÁmpÐ+s×›Ôx¡=ÄqÉ¥+§�Kª¶B«¨Zül:úg„ÌÏ @ ìq.¥ÐÃÌA<ºþÁÜ<üh¶ Òß«¯Æ€xXs�«ÑŸv ê� `ž¤ÕR�IkÎ7­t‡¡C3$-tæƒ9ò ò÷b
248æÔÃæò!kt¤ãõ¨¶†Á'ò•¥°'d«81µ”{ˆR'\H7\ò"k&ÊÍ`ñ±'„#3úî,>7¸àj-“$áã2ìÛœ.{AÆ[€ì
249ãbæ`LkŒ¯îâXxƒš4u’§™;ÃK|pmH/
250oƒ@_ykÆ¿«¥›»¶º-í83ÁnoÌCõy)ótyI�Cj-*ï“Ý‹a3Ù]ê’Ô‚R@«†4y¼ÁèXE9œÿ
251ç³Úù'ilkíf ’$-”…ÄéÖxt®ÜOww?¯Ýÿ‡mÿj® tž÷(ƒ¶i¶ªTšÙ‹U“ßÃâÖ^�†*N
252
253›oÚ·OÒ%H­K\„³¼Ô
2546ö¦ÂüÚ/;)«9±­µ† eÔãHl MZµ¡íâÒå=¶+l
2558”ƨ
256”†çEÛ53ÉZ§_®Ot¾ê»:ï’Býëœç¼�þ#ä6mäž&ñÛ**ÂeôÈè(…
257ºæÒÿ|ÒŠï
258Ó¸ÍVEÏI#•$�>™^HÄ> i„‚SU¨§eâÀQØ3S%j iÆÊ‹
259E4/‡Ì¿!Äõ�£UaOÝ
260b�
261üQÕ¶˜ôÕ
262ÒÖŒiVd*q3¤µ…ù»Si«Ê‰+y¡‰WVSoNÞ½sÛá¡öÿO8Múx¯ÑÙ>©¸‚4ùfšƒ>}‡ËᵉM
263¶¡ý¤�ž×
264Àú.»Q�ÛH,†ÉrŸÈôe
265k»„³Ì”5)3ïƒ
266ö3r¦íÖNq·ÔÍ;™ŠµIÆÕë�·?šÇHrO”ò(
267iü»ñÕ³éè?Š;õË
268 endstream
269 endobj
270-373 0 obj <<
271+377 0 obj <<
272 /Type /Page
273-/Contents 374 0 R
274-/Resources 372 0 R
275+/Contents 378 0 R
276+/Resources 376 0 R
277 /MediaBox [0 0 595.276 841.89]
278-/Parent 336 0 R
279-/Annots [ 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 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R ]
280+/Parent 340 0 R
281+/Annots [ 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R ]
282 >> endobj
283-341 0 obj <<
284+345 0 obj <<
285 /Type /Annot
286 /Subtype /Link
287 /Border[0 0 0]/H/I/C[1 0 0]
288 /Rect [55.697 615.366 199.474 628.099]
289 /A << /S /GoTo /D (chapter.1) >>
290 >> endobj
291-342 0 obj <<
292+346 0 obj <<
293 /Type /Annot
294 /Subtype /Link
295 /Border[0 0 0]/H/I/C[1 0 0]
296 /Rect [72.06 596.632 167.052 609.648]
297 /A << /S /GoTo /D (section.1.1) >>
298 >> endobj
299-343 0 obj <<
300+347 0 obj <<
301 /Type /Annot
302 /Subtype /Link
303 /Border[0 0 0]/H/I/C[1 0 0]
304 /Rect [72.06 578.072 199.801 591.088]
305 /A << /S /GoTo /D (section.1.2) >>
306 >> endobj
307-344 0 obj <<
308+348 0 obj <<
309 /Type /Annot
310 /Subtype /Link
311 /Border[0 0 0]/H/I/C[1 0 0]
312 /Rect [72.06 559.512 201.121 572.528]
313 /A << /S /GoTo /D (section.1.3) >>
314 >> endobj
315-345 0 obj <<
316+349 0 obj <<
317 /Type /Annot
318 /Subtype /Link
319 /Border[0 0 0]/H/I/C[1 0 0]
320 /Rect [72.06 540.952 183.743 553.968]
321 /A << /S /GoTo /D (section.1.4) >>
322 >> endobj
323-346 0 obj <<
324+350 0 obj <<
325 /Type /Annot
326 /Subtype /Link
327 /Border[0 0 0]/H/I/C[1 0 0]
328 /Rect [55.697 510.401 260.39 523.134]
329 /A << /S /GoTo /D (chapter.2) >>
330 >> endobj
331-347 0 obj <<
332+351 0 obj <<
333 /Type /Annot
334 /Subtype /Link
335 /Border[0 0 0]/H/I/C[1 0 0]
336 /Rect [72.06 494.568 155.641 504.47]
337 /A << /S /GoTo /D (section.2.1) >>
338 >> endobj
339-348 0 obj <<
340+352 0 obj <<
341 /Type /Annot
342 /Subtype /Link
343 /Border[0 0 0]/H/I/C[1 0 0]
344 /Rect [72.06 473.107 246.622 486.123]
345 /A << /S /GoTo /D (section.2.2) >>
346 >> endobj
347-349 0 obj <<
348+353 0 obj <<
349 /Type /Annot
350 /Subtype /Link
351 /Border[0 0 0]/H/I/C[1 0 0]
352 /Rect [97.151 454.547 338.912 467.563]
353 /A << /S /GoTo /D (subsection.2.2.1) >>
354 >> endobj
355-350 0 obj <<
356+354 0 obj <<
357 /Type /Annot
358 /Subtype /Link
359 /Border[0 0 0]/H/I/C[1 0 0]
360 /Rect [97.151 435.987 337.625 449.003]
361 /A << /S /GoTo /D (subsection.2.2.2) >>
362 >> endobj
363-351 0 obj <<
364+355 0 obj <<
365 /Type /Annot
366 /Subtype /Link
367 /Border[0 0 0]/H/I/C[1 0 0]
368 /Rect [97.151 417.426 254.76 430.442]
369 /A << /S /GoTo /D (subsection.2.2.3) >>
370 >> endobj
371-352 0 obj <<
372+356 0 obj <<
373 /Type /Annot
374 /Subtype /Link
375 /Border[0 0 0]/H/I/C[1 0 0]
376 /Rect [97.151 398.866 223.593 411.67]
377 /A << /S /GoTo /D (subsection.2.2.4) >>
378 >> endobj
379-353 0 obj <<
380+357 0 obj <<
381 /Type /Annot
382 /Subtype /Link
383 /Border[0 0 0]/H/I/C[1 0 0]
384 /Rect [72.06 380.306 249.982 393.322]
385 /A << /S /GoTo /D (section.2.3) >>
386 >> endobj
387-354 0 obj <<
388+358 0 obj <<
389 /Type /Annot
390 /Subtype /Link
391 /Border[0 0 0]/H/I/C[1 0 0]
392 /Rect [72.06 361.746 259.876 374.762]
393 /A << /S /GoTo /D (section.2.4) >>
394 >> endobj
395-355 0 obj <<
396+359 0 obj <<
397 /Type /Annot
398 /Subtype /Link
399 /Border[0 0 0]/H/I/C[1 0 0]
400 /Rect [72.06 346.088 232.561 356.202]
401 /A << /S /GoTo /D (section.2.5) >>
402 >> endobj
403-356 0 obj <<
404+360 0 obj <<
405 /Type /Annot
406 /Subtype /Link
407 /Border[0 0 0]/H/I/C[1 0 0]
408 /Rect [72.06 324.626 332.41 337.642]
409 /A << /S /GoTo /D (section.2.6) >>
410 >> endobj
411-357 0 obj <<
412+361 0 obj <<
413 /Type /Annot
414 /Subtype /Link
415 /Border[0 0 0]/H/I/C[1 0 0]
416 /Rect [55.697 294.163 115.856 306.808]
417 /A << /S /GoTo /D (chapter.3) >>
418 >> endobj
419-358 0 obj <<
420+362 0 obj <<
421 /Type /Annot
422 /Subtype /Link
423 /Border[0 0 0]/H/I/C[1 0 0]
424 /Rect [72.06 275.341 177.153 288.357]
425 /A << /S /GoTo /D (section.3.1) >>
426 >> endobj
427-359 0 obj <<
428+363 0 obj <<
429 /Type /Annot
430 /Subtype /Link
431 /Border[0 0 0]/H/I/C[1 0 0]
432 /Rect [72.06 256.781 187.801 269.797]
433 /A << /S /GoTo /D (section.3.2) >>
434 >> endobj
435-360 0 obj <<
436+364 0 obj <<
437 /Type /Annot
438 /Subtype /Link
439 /Border[0 0 0]/H/I/C[1 0 0]
440 /Rect [97.151 238.221 221.553 251.237]
441 /A << /S /GoTo /D (subsection.3.2.1) >>
442 >> endobj
443-361 0 obj <<
444+365 0 obj <<
445 /Type /Annot
446 /Subtype /Link
447 /Border[0 0 0]/H/I/C[1 0 0]
448 /Rect [97.151 222.563 183.154 232.677]
449 /A << /S /GoTo /D (subsection.3.2.2) >>
450 >> endobj
451-362 0 obj <<
452+366 0 obj <<
453 /Type /Annot
454 /Subtype /Link
455 /Border[0 0 0]/H/I/C[1 0 0]
456 /Rect [97.151 204.003 202.703 214.117]
457 /A << /S /GoTo /D (subsection.3.2.3) >>
458 >> endobj
459-363 0 obj <<
460+367 0 obj <<
461 /Type /Annot
462 /Subtype /Link
463 /Border[0 0 0]/H/I/C[1 0 0]
464 /Rect [72.06 182.541 226.735 195.557]
465 /A << /S /GoTo /D (section.3.3) >>
466 >> endobj
467-364 0 obj <<
468+368 0 obj <<
469 /Type /Annot
470 /Subtype /Link
471 /Border[0 0 0]/H/I/C[1 0 0]
472 /Rect [97.151 166.883 170.052 176.664]
473 /A << /S /GoTo /D (subsection.3.3.1) >>
474 >> endobj
475-365 0 obj <<
476+369 0 obj <<
477 /Type /Annot
478 /Subtype /Link
479 /Border[0 0 0]/H/I/C[1 0 0]
480 /Rect [97.151 148.322 141.787 158.224]
481 /A << /S /GoTo /D (subsection.3.3.2) >>
482 >> endobj
483-366 0 obj <<
484+370 0 obj <<
485 /Type /Annot
486 /Subtype /Link
487 /Border[0 0 0]/H/I/C[1 0 0]
488 /Rect [97.151 129.762 155.009 139.664]
489 /A << /S /GoTo /D (subsection.3.3.3) >>
490 >> endobj
491-367 0 obj <<
492+371 0 obj <<
493 /Type /Annot
494 /Subtype /Link
495 /Border[0 0 0]/H/I/C[1 0 0]
496 /Rect [72.06 108.301 200.161 120.984]
497 /A << /S /GoTo /D (section.3.4) >>
498 >> endobj
499-368 0 obj <<
500+372 0 obj <<
501 /Type /Annot
502 /Subtype /Link
503 /Border[0 0 0]/H/I/C[1 0 0]
504 /Rect [72.06 92.642 197.575 102.756]
505 /A << /S /GoTo /D (section.3.5) >>
506 >> endobj
507-369 0 obj <<
508+373 0 obj <<
509 /Type /Annot
510 /Subtype /Link
511 /Border[0 0 0]/H/I/C[1 0 0]
512 /Rect [97.151 74.082 189.449 84.196]
513 /A << /S /GoTo /D (subsection.3.5.1) >>
514 >> endobj
515-370 0 obj <<
516+374 0 obj <<
517 /Type /Annot
518 /Subtype /Link
519 /Border[0 0 0]/H/I/C[1 0 0]
520 /Rect [97.151 52.62 238.168 65.304]
521 /A << /S /GoTo /D (subsection.3.5.2) >>
522 >> endobj
523-375 0 obj <<
524-/D [373 0 R /XYZ 55.693 817.952 null]
525->> endobj
526-377 0 obj <<
527-/D [373 0 R /XYZ 56.693 649.543 null]
528->> endobj
529-372 0 obj <<
530-/Font << /F37 376 0 R /F28 335 0 R >>
531+379 0 obj <<
532+/D [377 0 R /XYZ 55.693 817.952 null]
533+>> endobj
534+381 0 obj <<
535+/D [377 0 R /XYZ 56.693 649.543 null]
536+>> endobj
537+376 0 obj <<
538+/Font << /F37 380 0 R /F28 339 0 R >>
539 /ProcSet [ /PDF /Text ]
540 >> endobj
541-419 0 obj <<
542+423 0 obj <<
543 /Length 1705
544 /Filter /FlateDecode
545 >>
546@@ -798,410 +803,418 @@
547 ø£‡®v$T(¸Zß}éÒ ¼Öpiœ“Ãà½I£lKoGŒ³üð `½a;mºÞš¼ÛÌWÛnÓ·±Ü•:7A‡29wt¤ïÝ(?ó€µ€w­¡~
548é+«Îþø²½å»qªùõå|u=_ÝT?|Zoª‹ùåýÝÃu«Páy²oz1èñÅÐVªÖ˜€$ÔâW›r»Þ´n
549mǽºAÔÙ£XªuÏH]ê×b[TwG9c)_Ý›bɲº]¼ðìl#Éâ5ÏÇžhCEo$é<6ÔËèцú]éqß†Ú È4*Æ–“òØP1ŠgŽ5ÚP‡ÙPûÁ iCmð@¢
550�“V屡ÆX¨Fjÿ%À
551³¡6X ɆŠÚË`²LÑb(g’\¨9²Ö.ÔfÖÑ„š,ðÜPjƒg’L¨ÈµÃ¡�ñi=\‰&Ô,‰kê^âc&Ô
552Iw&Ô½¤£ ußwàò™P)Õ„ª”;…9|'1ÁhBýžõï¶
553Q¢ •
554ËèÉcB�±”ÅÑ„ú#DSÓ„Ú �� õèjÆôÁB&ËbC™§ËF*î³räõQ¢»ý¼]ÞWKö…ï-çSNA2Ç·¡)PC*%E¬¡-G
555iXË‘x¶fâ.�­ f[l~ Øš»æ:làø¬<ÿ–c!Q"Ør$Þ�­™¸ÓËKF˜e„Y“ÓRÌ»ËcÞ…à¥W£y7Ó>´jÞmRNŠy¼’Æä1ïÆXÚÀhÞÍ3?÷CÍ»M^H1ïBœh¸<æÝ‹ÜhÞý‘¼ÐiÞ¥4ó.”yÌ»1@¢y7KâÚ¼»—x4ïžYÈeÞ¥dó.h#ÝàíœÊ¼cY;šw{ïã„læ]úß¼{±Š
556�űŠ»Ü GÇ^oÅz<�
557ÝÞÓÙ@Å'¢Qõt6t»Äñï£i^,׫wžq|º‡Ýƒâ°þ—ö>�†3qfñ¦t¬Eûào«ûm±X]ÌÀ§ŽŠt¸Ï
558Hpð�9à?äz˸
559 endstream
560 endobj
561-418 0 obj <<
562+422 0 obj <<
563 /Type /Page
564-/Contents 419 0 R
565-/Resources 417 0 R
566+/Contents 423 0 R
567+/Resources 421 0 R
568 /MediaBox [0 0 595.276 841.89]
569-/Parent 336 0 R
570-/Annots [ 371 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R ]
571+/Parent 340 0 R
572+/Annots [ 375 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R ]
573 >> endobj
574-371 0 obj <<
575+375 0 obj <<
576 /Type /Annot
577 /Subtype /Link
578 /Border[0 0 0]/H/I/C[1 0 0]
579 /Rect [97.151 770.165 197.161 783.181]
580 /A << /S /GoTo /D (subsection.3.5.3) >>
581 >> endobj
582-378 0 obj <<
583+382 0 obj <<
584 /Type /Annot
585 /Subtype /Link
586 /Border[0 0 0]/H/I/C[1 0 0]
587 /Rect [97.151 751.603 195.405 764.619]
588 /A << /S /GoTo /D (subsection.3.5.4) >>
589 >> endobj
590-379 0 obj <<
591+383 0 obj <<
592 /Type /Annot
593 /Subtype /Link
594 /Border[0 0 0]/H/I/C[1 0 0]
595 /Rect [97.151 733.041 199.517 745.56]
596 /A << /S /GoTo /D (subsection.3.5.5) >>
597 >> endobj
598-380 0 obj <<
599+384 0 obj <<
600 /Type /Annot
601 /Subtype /Link
602 /Border[0 0 0]/H/I/C[1 0 0]
603 /Rect [97.151 714.478 207.623 727.494]
604 /A << /S /GoTo /D (subsection.3.5.6) >>
605 >> endobj
606-381 0 obj <<
607+385 0 obj <<
608 /Type /Annot
609 /Subtype /Link
610 /Border[0 0 0]/H/I/C[1 0 0]
611 /Rect [97.151 695.916 248.291 708.932]
612 /A << /S /GoTo /D (subsection.3.5.7) >>
613 >> endobj
614-382 0 obj <<
615+386 0 obj <<
616 /Type /Annot
617 /Subtype /Link
618 /Border[0 0 0]/H/I/C[1 0 0]
619 /Rect [97.151 677.353 196.812 690.037]
620 /A << /S /GoTo /D (subsection.3.5.8) >>
621 >> endobj
622-383 0 obj <<
623+387 0 obj <<
624 /Type /Annot
625 /Subtype /Link
626 /Border[0 0 0]/H/I/C[1 0 0]
627 /Rect [97.151 658.791 192.721 671.807]
628 /A << /S /GoTo /D (subsection.3.5.9) >>
629 >> endobj
630-384 0 obj <<
631+388 0 obj <<
632 /Type /Annot
633 /Subtype /Link
634 /Border[0 0 0]/H/I/C[1 0 0]
635 /Rect [97.151 640.229 190.932 652.912]
636 /A << /S /GoTo /D (subsection.3.5.10) >>
637 >> endobj
638-385 0 obj <<
639+389 0 obj <<
640 /Type /Annot
641 /Subtype /Link
642 /Border[0 0 0]/H/I/C[1 0 0]
643 /Rect [97.151 621.666 191.707 634.682]
644 /A << /S /GoTo /D (subsection.3.5.11) >>
645 >> endobj
646-386 0 obj <<
647+390 0 obj <<
648 /Type /Annot
649 /Subtype /Link
650 /Border[0 0 0]/H/I/C[1 0 0]
651 /Rect [97.151 603.104 197.739 616.12]
652 /A << /S /GoTo /D (subsection.3.5.12) >>
653 >> endobj
654-387 0 obj <<
655+391 0 obj <<
656 /Type /Annot
657 /Subtype /Link
658 /Border[0 0 0]/H/I/C[1 0 0]
659 /Rect [97.151 584.541 184.376 597.225]
660 /A << /S /GoTo /D (subsection.3.5.13) >>
661 >> endobj
662-388 0 obj <<
663+392 0 obj <<
664 /Type /Annot
665 /Subtype /Link
666 /Border[0 0 0]/H/I/C[1 0 0]
667 /Rect [97.151 565.979 188.314 578.995]
668 /A << /S /GoTo /D (subsection.3.5.14) >>
669 >> endobj
670-389 0 obj <<
671+393 0 obj <<
672 /Type /Annot
673 /Subtype /Link
674 /Border[0 0 0]/H/I/C[1 0 0]
675 /Rect [97.151 547.417 182.936 560.1]
676 /A << /S /GoTo /D (subsection.3.5.15) >>
677 >> endobj
678-390 0 obj <<
679+394 0 obj <<
680 /Type /Annot
681 /Subtype /Link
682 /Border[0 0 0]/H/I/C[1 0 0]
683 /Rect [97.151 528.854 228.306 541.87]
684 /A << /S /GoTo /D (subsection.3.5.16) >>
685 >> endobj
686-391 0 obj <<
687+395 0 obj <<
688 /Type /Annot
689 /Subtype /Link
690 /Border[0 0 0]/H/I/C[1 0 0]
691 /Rect [97.151 510.292 198.601 523.308]
692 /A << /S /GoTo /D (subsection.3.5.17) >>
693 >> endobj
694-392 0 obj <<
695+396 0 obj <<
696 /Type /Annot
697 /Subtype /Link
698 /Border[0 0 0]/H/I/C[1 0 0]
699 /Rect [97.151 491.729 196.506 504.413]
700 /A << /S /GoTo /D (subsection.3.5.18) >>
701 >> endobj
702-393 0 obj <<
703+397 0 obj <<
704 /Type /Annot
705 /Subtype /Link
706 /Border[0 0 0]/H/I/C[1 0 0]
707 /Rect [97.151 473.167 192.95 485.85]
708 /A << /S /GoTo /D (subsection.3.5.19) >>
709 >> endobj
710-394 0 obj <<
711+398 0 obj <<
712 /Type /Annot
713 /Subtype /Link
714 /Border[0 0 0]/H/I/C[1 0 0]
715 /Rect [97.151 454.605 198.099 467.124]
716 /A << /S /GoTo /D (subsection.3.5.20) >>
717 >> endobj
718-395 0 obj <<
719+399 0 obj <<
720 /Type /Annot
721 /Subtype /Link
722 /Border[0 0 0]/H/I/C[1 0 0]
723 /Rect [72.06 436.042 230.705 449.058]
724 /A << /S /GoTo /D (section.3.6) >>
725 >> endobj
726-396 0 obj <<
727+400 0 obj <<
728 /Type /Annot
729 /Subtype /Link
730 /Border[0 0 0]/H/I/C[1 0 0]
731 /Rect [97.151 420.382 164.031 430.163]
732 /A << /S /GoTo /D (subsection.3.6.1) >>
733 >> endobj
734-397 0 obj <<
735+401 0 obj <<
736 /Type /Annot
737 /Subtype /Link
738 /Border[0 0 0]/H/I/C[1 0 0]
739 /Rect [97.151 398.918 238.168 411.601]
740 /A << /S /GoTo /D (subsection.3.6.2) >>
741 >> endobj
742-398 0 obj <<
743+402 0 obj <<
744 /Type /Annot
745 /Subtype /Link
746 /Border[0 0 0]/H/I/C[1 0 0]
747 /Rect [97.151 380.355 197.161 393.371]
748 /A << /S /GoTo /D (subsection.3.6.3) >>
749 >> endobj
750-399 0 obj <<
751+403 0 obj <<
752 /Type /Annot
753 /Subtype /Link
754 /Border[0 0 0]/H/I/C[1 0 0]
755 /Rect [97.151 361.793 195.405 374.809]
756 /A << /S /GoTo /D (subsection.3.6.4) >>
757 >> endobj
758-400 0 obj <<
759+404 0 obj <<
760 /Type /Annot
761 /Subtype /Link
762 /Border[0 0 0]/H/I/C[1 0 0]
763 /Rect [97.151 343.23 199.517 355.75]
764 /A << /S /GoTo /D (subsection.3.6.5) >>
765 >> endobj
766-401 0 obj <<
767+405 0 obj <<
768 /Type /Annot
769 /Subtype /Link
770 /Border[0 0 0]/H/I/C[1 0 0]
771 /Rect [97.151 324.668 207.623 337.684]
772 /A << /S /GoTo /D (subsection.3.6.6) >>
773 >> endobj
774-402 0 obj <<
775+406 0 obj <<
776 /Type /Annot
777 /Subtype /Link
778 /Border[0 0 0]/H/I/C[1 0 0]
779 /Rect [97.151 306.106 248.291 319.122]
780 /A << /S /GoTo /D (subsection.3.6.7) >>
781 >> endobj
782-403 0 obj <<
783+407 0 obj <<
784 /Type /Annot
785 /Subtype /Link
786 /Border[0 0 0]/H/I/C[1 0 0]
787 /Rect [97.151 287.543 196.812 300.063]
788 /A << /S /GoTo /D (subsection.3.6.8) >>
789 >> endobj
790-404 0 obj <<
791+408 0 obj <<
792 /Type /Annot
793 /Subtype /Link
794 /Border[0 0 0]/H/I/C[1 0 0]
795 /Rect [97.151 268.981 192.721 281.997]
796 /A << /S /GoTo /D (subsection.3.6.9) >>
797 >> endobj
798-405 0 obj <<
799+409 0 obj <<
800 /Type /Annot
801 /Subtype /Link
802 /Border[0 0 0]/H/I/C[1 0 0]
803 /Rect [97.151 250.418 209.706 263.102]
804 /A << /S /GoTo /D (subsection.3.6.10) >>
805 >> endobj
806-406 0 obj <<
807+410 0 obj <<
808 /Type /Annot
809 /Subtype /Link
810 /Border[0 0 0]/H/I/C[1 0 0]
811 /Rect [97.151 231.856 210.481 244.872]
812 /A << /S /GoTo /D (subsection.3.6.11) >>
813 >> endobj
814-407 0 obj <<
815+411 0 obj <<
816 /Type /Annot
817 /Subtype /Link
818 /Border[0 0 0]/H/I/C[1 0 0]
819 /Rect [97.151 213.294 216.513 226.31]
820 /A << /S /GoTo /D (subsection.3.6.12) >>
821 >> endobj
822-408 0 obj <<
823+412 0 obj <<
824 /Type /Annot
825 /Subtype /Link
826 /Border[0 0 0]/H/I/C[1 0 0]
827 /Rect [97.151 194.731 184.376 207.414]
828 /A << /S /GoTo /D (subsection.3.6.13) >>
829 >> endobj
830-409 0 obj <<
831+413 0 obj <<
832 /Type /Annot
833 /Subtype /Link
834 /Border[0 0 0]/H/I/C[1 0 0]
835 /Rect [97.151 176.169 188.314 189.185]
836 /A << /S /GoTo /D (subsection.3.6.14) >>
837 >> endobj
838-410 0 obj <<
839+414 0 obj <<
840 /Type /Annot
841 /Subtype /Link
842 /Border[0 0 0]/H/I/C[1 0 0]
843 /Rect [97.151 157.606 182.936 170.29]
844 /A << /S /GoTo /D (subsection.3.6.15) >>
845 >> endobj
846-411 0 obj <<
847+415 0 obj <<
848 /Type /Annot
849 /Subtype /Link
850 /Border[0 0 0]/H/I/C[1 0 0]
851 /Rect [97.151 139.044 228.306 152.06]
852 /A << /S /GoTo /D (subsection.3.6.16) >>
853 >> endobj
854-412 0 obj <<
855+416 0 obj <<
856 /Type /Annot
857 /Subtype /Link
858 /Border[0 0 0]/H/I/C[1 0 0]
859 /Rect [97.151 120.482 198.601 133.498]
860 /A << /S /GoTo /D (subsection.3.6.17) >>
861 >> endobj
862-413 0 obj <<
863+417 0 obj <<
864 /Type /Annot
865 /Subtype /Link
866 /Border[0 0 0]/H/I/C[1 0 0]
867 /Rect [97.151 101.919 198.099 114.602]
868 /A << /S /GoTo /D (subsection.3.6.18) >>
869 >> endobj
870-414 0 obj <<
871+418 0 obj <<
872 /Type /Annot
873 /Subtype /Link
874 /Border[0 0 0]/H/I/C[1 0 0]
875 /Rect [55.697 74.063 121.322 84.09]
876 /A << /S /GoTo /D (chapter.4) >>
877 >> endobj
878-415 0 obj <<
879+419 0 obj <<
880 /Type /Annot
881 /Subtype /Link
882 /Border[0 0 0]/H/I/C[1 0 0]
883 /Rect [72.06 55.522 153.645 65.636]
884 /A << /S /GoTo /D (section.4.1) >>
885 >> endobj
886+424 0 obj <<
887+/D [422 0 R /XYZ 55.693 817.952 null]
888+>> endobj
889+421 0 obj <<
890+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R >>
891+/ProcSet [ /PDF /Text ]
892+>> endobj
893+441 0 obj <<
894+/Length 555
895+/Filter /FlateDecode
896+>>
897+stream
898+xÚí˜M�›0†ïü
899+ÉÁÎø|íîf¥JÝJ
900=m{@ÁÉZ"èÇ¿/ „M@«f¯ªM¹`˲<h
901�ßw
902h…Ý{"o:ãQ 4EÑIE”æ(A´V(JУóù!º{ˆæ“ïÑÇ錅ÇûE ˆà²>n¿UîöxОµ)Ñv…z+_î=„…ªŠ0È°9H6Á$ø7yö
903€­ªm\Ú<›`V/îVRSœDC�XSðÉKxÿƒÐúòSzé¡‚ ŸÓ×3b’€F˜†„ Õ"´FÄ`‡(Í«m?šRWãíȺ"C:¬¥3_<™u\
904ñðÈ›sÁÇ¥
905àðön›—ñ¶´Ùª¹Ônm¼Î³¤[RvÍ™vz·1•#Z8_‹¿‘Q|$óJ@Ü‘øˆN|>Ŷ5?¬ùyýÅã„©+6Ãây–�Ô.ÌË`B £îœ©;nÀðÌ­]Nhè/_fÃU8²ùµ#ˆ~gñÚ.ZBqj“¦÷é·;*øÏÓ.œ¤]¶iŸÙ,é4¿ÊªÂ$ͼØ[èfnR³6Y9ì=ñþDÝQR§3
906
907¿
908+`A‰�¢v¿šP©oµ¯Ú ¶-&MãÌäUÑä´Ìót�PΤf>oŸÎú‹Ó· ªWâ·Üû†½÷ÞT .LÙèp¼çÜ>éÄðÕØ:Ã÷k—Oý`"�£d]â1ä…½mŠ
909×Wµ©•Ëà|³“¯A…KÇVé\"½ñ.òþéŒ5
910+endstream
911+endobj
912+440 0 obj <<
913+/Type /Page
914+/Contents 441 0 R
915+/Resources 439 0 R
916+/MediaBox [0 0 595.276 841.89]
917+/Parent 340 0 R
918+/Annots [ 420 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R ]
919+>> endobj
920 420 0 obj <<
921-/D [418 0 R /XYZ 55.693 817.952 null]
922->> endobj
923-417 0 obj <<
924-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R >>
925-/ProcSet [ /PDF /Text ]
926->> endobj
927-436 0 obj <<
928-/Length 530
929-/Filter /FlateDecode
930->>
931-stream
932-xÚí˜Mkã0†ïþ::)£O[×m›ÂÂvaã=u÷`b%8v‰íýø÷ëÄJšØ”m©Jiê‹%¡1ó0z_ Ð
933-º>%ÁtÆ5¢@4hŠ’%’Š(ÍQ
934‚h­P’¡ÛðâëMru“Ì'?“ÏÓ‹�׋HÁe»Ýn©Ü® Àí¹�”h³B½È·ëa¡Ú@Dæ@"w Â&˜‚„ð¢,~°U³Ik[ÌÚà6’›ê$ºÅšBH&XÂû„Ö/ߥW
935*˜9}>#& h„iL˜P@„¶ˆlåe³égSêl`¼
936Y_„`H‡9:óÅ�Y§Õ�¼:|Ü:Ñ
937wgÛ¼N7µ-VÝ¡viÓuYdýÜ’²s®´×³�yè
938áà|¯þGFñ‘Ì3qOâ#âó%µÎü²æ÷ù7�¦¾Ø
939›çAvr»0�ƒ‰�ŽºóDÝñ†;0—v9¡q¸|œ
940WñÈæ-zGìý-Òµ]8Bin³îîÓ¿î¨èƒ—]x)»teŸÙ";h~S4•Éºyµ³ÐÝÜäfmŠzx÷ŒÄûuOE�Îxtü*€%BŠÖýjB¥Ú¿
941´¾j+ضZ˜<O
942S6UWÓº,óAA9“š…Ü=)<é/Nß&¨"\‰SÜrçvÞû¾Épeê~ÚHÇã9çÏðI/†¯Åv0|îÓú®ŸLDr”¬—xŒ
943§Þx•ÿ¬
944ær
945-endstream
946-endobj
947-435 0 obj <<
948-/Type /Page
949-/Contents 436 0 R
950-/Resources 434 0 R
951-/MediaBox [0 0 595.276 841.89]
952-/Parent 336 0 R
953-/Annots [ 416 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R ]
954->> endobj
955-416 0 obj <<
956 /Type /Annot
957 /Subtype /Link
958 /Border[0 0 0]/H/I/C[1 0 0]
959 /Rect [72.06 770.165 189.579 783.181]
960 /A << /S /GoTo /D (section.4.2) >>
961 >> endobj
962-422 0 obj <<
963+426 0 obj <<
964 /Type /Annot
965 /Subtype /Link
966 /Border[0 0 0]/H/I/C[1 0 0]
967 /Rect [97.151 754.821 167.761 764.935]
968 /A << /S /GoTo /D (subsection.4.2.1) >>
969 >> endobj
970-423 0 obj <<
971+427 0 obj <<
972 /Type /Annot
973 /Subtype /Link
974 /Border[0 0 0]/H/I/C[1 0 0]
975 /Rect [97.151 736.575 175.911 746.689]
976 /A << /S /GoTo /D (subsection.4.2.2) >>
977 >> endobj
978-424 0 obj <<
979+428 0 obj <<
980 /Type /Annot
981 /Subtype /Link
982 /Border[0 0 0]/H/I/C[1 0 0]
983 /Rect [72.06 715.427 185.739 728.443]
984 /A << /S /GoTo /D (section.4.3) >>
985 >> endobj
986-425 0 obj <<
987+429 0 obj <<
988 /Type /Annot
989 /Subtype /Link
990 /Border[0 0 0]/H/I/C[1 0 0]
991 /Rect [72.06 697.181 176.248 710.197]
992 /A << /S /GoTo /D (section.4.4) >>
993 >> endobj
994-426 0 obj <<
995+430 0 obj <<
996 /Type /Annot
997 /Subtype /Link
998 /Border[0 0 0]/H/I/C[1 0 0]
999 /Rect [97.151 681.836 185.739 691.618]
1000 /A << /S /GoTo /D (subsection.4.4.1) >>
1001 >> endobj
1002-427 0 obj <<
1003+431 0 obj <<
1004 /Type /Annot
1005 /Subtype /Link
1006 /Border[0 0 0]/H/I/C[1 0 0]
1007 /Rect [97.151 663.59 182.587 673.704]
1008 /A << /S /GoTo /D (subsection.4.4.2) >>
1009 >> endobj
1010-428 0 obj <<
1011+432 0 obj <<
1012 /Type /Annot
1013 /Subtype /Link
1014 /Border[0 0 0]/H/I/C[1 0 0]
1015 /Rect [97.151 645.344 179.129 655.458]
1016 /A << /S /GoTo /D (subsection.4.4.3) >>
1017 >> endobj
1018-429 0 obj <<
1019+433 0 obj <<
1020 /Type /Annot
1021 /Subtype /Link
1022 /Border[0 0 0]/H/I/C[1 0 0]
1023 /Rect [97.151 624.196 229.866 637.212]
1024 /A << /S /GoTo /D (subsection.4.4.4) >>
1025 >> endobj
1026-430 0 obj <<
1027+434 0 obj <<
1028 /Type /Annot
1029 /Subtype /Link
1030 /Border[0 0 0]/H/I/C[1 0 0]
1031 /Rect [97.151 605.95 295.244 618.966]
1032 /A << /S /GoTo /D (subsection.4.4.5) >>
1033 >> endobj
1034-431 0 obj <<
1035+435 0 obj <<
1036 /Type /Annot
1037 /Subtype /Link
1038 /Border[0 0 0]/H/I/C[1 0 0]
1039 /Rect [55.697 579.675 173.117 589.702]
1040 /A << /S /GoTo /D (chapter.5) >>
1041 >> endobj
1042-432 0 obj <<
1043+436 0 obj <<
1044 /Type /Annot
1045 /Subtype /Link
1046 /Border[0 0 0]/H/I/C[1 0 0]
1047 /Rect [72.06 558.549 141.71 571.565]
1048 /A << /S /GoTo /D (section.5.1) >>
1049 >> endobj
1050-433 0 obj <<
1051+437 0 obj <<
1052 /Type /Annot
1053 /Subtype /Link
1054 /Border[0 0 0]/H/I/C[1 0 0]
1055 /Rect [97.151 540.302 161.598 553.318]
1056 /A << /S /GoTo /D (subsection.5.1.1) >>
1057 >> endobj
1058-437 0 obj <<
1059-/D [435 0 R /XYZ 55.693 817.952 null]
1060->> endobj
1061-434 0 obj <<
1062-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R >>
1063+438 0 obj <<
1064+/Type /Annot
1065+/Subtype /Link
1066+/Border[0 0 0]/H/I/C[1 0 0]
1067+/Rect [72.06 522.056 202.146 535.072]
1068+/A << /S /GoTo /D (section.5.2) >>
1069+>> endobj
1070+442 0 obj <<
1071+/D [440 0 R /XYZ 55.693 817.952 null]
1072+>> endobj
1073+439 0 obj <<
1074+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R >>
1075 /ProcSet [ /PDF /Text ]
1076 >> endobj
1077-440 0 obj <<
1078+445 0 obj <<
1079 /Length 96
1080 /Filter /FlateDecode
1081 >>
1082@@ -1210,21 +1223,21 @@
1083 áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ0ÓŒ
1084ñÒw3¶DVhbd¨gfa
10854¬ÆÙß/ÄÕ/$¤”Ëj>:íÂYæK
1086 endstream
1087 endobj
1088-439 0 obj <<
1089+444 0 obj <<
1090 /Type /Page
1091-/Contents 440 0 R
1092-/Resources 438 0 R
1093+/Contents 445 0 R
1094+/Resources 443 0 R
1095 /MediaBox [0 0 595.276 841.89]
1096-/Parent 336 0 R
1097->> endobj
1098-441 0 obj <<
1099-/D [439 0 R /XYZ 55.693 817.952 null]
1100->> endobj
1101-438 0 obj <<
1102-/Font << /F28 335 0 R /F39 421 0 R >>
1103+/Parent 340 0 R
1104+>> endobj
1105+446 0 obj <<
1106+/D [444 0 R /XYZ 55.693 817.952 null]
1107+>> endobj
1108+443 0 obj <<
1109+/Font << /F28 339 0 R /F39 425 0 R >>
1110 /ProcSet [ /PDF /Text ]
1111 >> endobj
1112-451 0 obj <<
1113+456 0 obj <<
1114 /Length 1032
1115 /Filter /FlateDecode
1116 >>
1117@@ -1236,76 +1249,76 @@
1118 ÷z>IÈÈIÈ?Wš×Í^ÖíIho•‰Jcb -Ä$ÉJ7«�FØéöÖ“üuâ÷«k‚YM!>Z”`9EV
1119�ÝÕèI¶ÞCmÚí~á
1120h·ØÓÙüž×ÒÑËì©ù«ê6Fj�.\5d{}2èÔ�þvÒúVYwjû:Ð3fÓƒÑðÀ¤ŸQè­kXåv€jJ>¢æÌø U¡šµû¬ßÐ
1121ðþ ÝâԞƻ°#¦¯-†pÐØ¢îl·±ßf›ÄD¸o`0©õ´h³üëCʇCß…R\>I’
1122>^}½måαi÷ãö
1123†«=u±¯êñ
1124þëòêôlrž
1125 endstream
1126 endobj
1127-450 0 obj <<
1128+455 0 obj <<
1129 /Type /Page
1130-/Contents 451 0 R
1131-/Resources 449 0 R
1132+/Contents 456 0 R
1133+/Resources 454 0 R
1134 /MediaBox [0 0 595.276 841.89]
1135-/Parent 455 0 R
1136-/Annots [ 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R ]
1137+/Parent 460 0 R
1138+/Annots [ 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R ]
1139 >> endobj
1140-442 0 obj <<
1141+447 0 obj <<
1142 /Type /Annot
1143 /Border[0 0 0]/H/I/C[0 1 1]
1144 /Rect [124.194 486.154 244.005 499.17]
1145 /Subtype/Link/A<</Type/Action/S/URI/URI(http://python.org/)>>
1146 >> endobj
1147-443 0 obj <<
1148+448 0 obj <<
1149 /Type /Annot
1150 /Border[0 0 0]/H/I/C[0 1 1]
1151 /Rect [176.732 461.479 505.996 474.495]
1152 /Subtype/Link/A<</Type/Action/S/URI/URI(http://peak.telecommunity.com/DevCenter/setuptools)>>
1153 >> endobj
1154-444 0 obj <<
1155+449 0 obj <<
1156 /Type /Annot
1157 /Border[0 0 0]/H/I/C[0 1 1]
1158 /Rect [124.914 436.804 264.361 449.82]
1159 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.pygtk.org/)>>
1160 >> endobj
1161-445 0 obj <<
1162+450 0 obj <<
1163 /Type /Annot
1164 /Border[0 0 0]/H/I/C[0 1 1]
1165 /Rect [110.94 412.86 283.114 425.145]
1166 /Subtype/Link/A<</Type/Action/S/URI/URI(http://codespeak.net/lxml/)>>
1167 >> endobj
1168-446 0 obj <<
1169+451 0 obj <<
1170 /Type /Annot
1171 /Border[0 0 0]/H/I/C[0 1 1]
1172 /Rect [117.213 387.455 433.387 400.471]
1173 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.thaiopensource.com/relaxng/trang.html)>>
1174 >> endobj
1175-447 0 obj <<
1176+452 0 obj <<
1177 /Type /Annot
1178 /Border[0 0 0]/H/I/C[0 1 1]
1179 /Rect [125.601 363.511 251.958 375.796]
1180 /Subtype/Link/A<</Type/Action/S/URI/URI(http://xmlsoft.org/)>>
1181 >> endobj
1182-448 0 obj <<
1183+453 0 obj <<
1184 /Type /Annot
1185 /Border[0 0 0]/H/I/C[0 1 1]
1186 /Rect [200.754 338.836 393.062 351.121]
1187 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.latex-project.org/)>>
1188 >> endobj
1189-452 0 obj <<
1190-/D [450 0 R /XYZ 55.693 817.952 null]
1191+457 0 obj <<
1192+/D [455 0 R /XYZ 55.693 817.952 null]
1193 >> endobj
1194 2 0 obj <<
1195-/D [450 0 R /XYZ 56.693 785.197 null]
1196+/D [455 0 R /XYZ 56.693 785.197 null]
1197 >> endobj
1198 6 0 obj <<
1199-/D [450 0 R /XYZ 56.693 593.867 null]
1200+/D [455 0 R /XYZ 56.693 593.867 null]
1201 >> endobj
1202 10 0 obj <<
1203-/D [450 0 R /XYZ 56.693 227.965 null]
1204+/D [455 0 R /XYZ 56.693 227.965 null]
1205 >> endobj
1206 14 0 obj <<
1207-/D [450 0 R /XYZ 56.693 121.727 null]
1208+/D [455 0 R /XYZ 56.693 121.727 null]
1209 >> endobj
1210-449 0 obj <<
1211-/Font << /F37 376 0 R /F28 335 0 R /F36 453 0 R /F47 454 0 R >>
1212+454 0 obj <<
1213+/Font << /F37 380 0 R /F28 339 0 R /F36 458 0 R /F47 459 0 R >>
1214 /ProcSet [ /PDF /Text ]
1215 >> endobj
1216-458 0 obj <<
1217+463 0 obj <<
1218 /Length 933
1219 /Filter /FlateDecode
1220 >>
1221@@ -1318,24 +1331,24 @@
1222 ½›¨×c²í†¾î§ì0u�Dv#ã<õf�Wâ‡*e×®6{iÄÆøñÛâs+å˜2ÿc°ØÚÏœ7ªªþk5ŠsÓ¼Q¡w
1223�ÿÔŽõÇ)õ´…9o]ÿ\ÃÒ©†Ý ‡NWÜLþ
1224¼ap†ëïúÃM·¼ø±¼ûxßu¹
1225 endstream
1226 endobj
1227-457 0 obj <<
1228+462 0 obj <<
1229 /Type /Page
1230-/Contents 458 0 R
1231-/Resources 456 0 R
1232+/Contents 463 0 R
1233+/Resources 461 0 R
1234 /MediaBox [0 0 595.276 841.89]
1235-/Parent 455 0 R
1236+/Parent 460 0 R
1237 >> endobj
1238-459 0 obj <<
1239-/D [457 0 R /XYZ 55.693 817.952 null]
1240+464 0 obj <<
1241+/D [462 0 R /XYZ 55.693 817.952 null]
1242 >> endobj
1243 18 0 obj <<
1244-/D [457 0 R /XYZ 56.693 653.568 null]
1245+/D [462 0 R /XYZ 56.693 653.568 null]
1246 >> endobj
1247-456 0 obj <<
1248-/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F37 376 0 R >>
1249+461 0 obj <<
1250+/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F37 380 0 R >>
1251 /ProcSet [ /PDF /Text ]
1252 >> endobj
1253-464 0 obj <<
1254+469 0 obj <<
1255 /Length 1736
1256 /Filter /FlateDecode
1257 >>
1258@@ -1353,88 +1366,88 @@
1259 púløÇdWjÄpûš$ŸŸ–³rY³ä©Žðxª@
1260sÄ7ÎOµ¿ìå®r
1261ºâ�OEšýç÷ÄXLƒ
1262'ÇaŽ¾æÓÿ¿mÜ&*áÿ·¹¿Õå˜Àb'z—
1263£“ÏcƒNf2ÊpB‘o[·Üüü™ÈOU°uôT°Âùº~¸çË°HA{œC¥_1áx±zô/ì’ü
1264 endstream
1265 endobj
1266-463 0 obj <<
1267+468 0 obj <<
1268 /Type /Page
1269-/Contents 464 0 R
1270-/Resources 462 0 R
1271+/Contents 469 0 R
1272+/Resources 467 0 R
1273 /MediaBox [0 0 595.276 841.89]
1274-/Parent 455 0 R
1275-/Annots [ 460 0 R 461 0 R ]
1276+/Parent 460 0 R
1277+/Annots [ 465 0 R 466 0 R ]
1278 >> endobj
1279-460 0 obj <<
1280+465 0 obj <<
1281 /Type /Annot
1282 /Border[0 0 0]/H/I/C[0 1 1]
1283 /Rect [132.725 450.877 259.081 463.893]
1284 /Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/)>>
1285 >> endobj
1286-461 0 obj <<
1287+466 0 obj <<
1288 /Type /Annot
1289 /Border[0 0 0]/H/I/C[0 1 1]
1290 /Rect [284.186 450.877 399.915 463.893]
1291 /Subtype/Link/A<</Type/Action/S/URI/URI(http://relaxng.org/compact-tutorial-20030326.html)>>
1292 >> endobj
1293-465 0 obj <<
1294-/D [463 0 R /XYZ 55.693 817.952 null]
1295+470 0 obj <<
1296+/D [468 0 R /XYZ 55.693 817.952 null]
1297 >> endobj
1298 22 0 obj <<
1299-/D [463 0 R /XYZ 56.693 785.197 null]
1300+/D [468 0 R /XYZ 56.693 785.197 null]
1301 >> endobj
1302 26 0 obj <<
1303-/D [463 0 R /XYZ 56.693 518.154 null]
1304+/D [468 0 R /XYZ 56.693 518.154 null]
1305 >> endobj
1306 30 0 obj <<
1307-/D [463 0 R /XYZ 56.693 361.081 null]
1308->> endobj
1309-466 0 obj <<
1310-/D [463 0 R /XYZ 56.693 243.305 null]
1311->> endobj
1312-467 0 obj <<
1313-/D [463 0 R /XYZ 56.693 246.382 null]
1314->> endobj
1315-469 0 obj <<
1316-/D [463 0 R /XYZ 56.693 232.832 null]
1317->> endobj
1318-470 0 obj <<
1319-/D [463 0 R /XYZ 56.693 219.283 null]
1320+/D [468 0 R /XYZ 56.693 361.081 null]
1321 >> endobj
1322 471 0 obj <<
1323-/D [463 0 R /XYZ 56.693 205.734 null]
1324+/D [468 0 R /XYZ 56.693 243.305 null]
1325 >> endobj
1326-473 0 obj <<
1327-/D [463 0 R /XYZ 56.693 192.185 null]
1328+472 0 obj <<
1329+/D [468 0 R /XYZ 56.693 246.382 null]
1330 >> endobj
1331 474 0 obj <<
1332-/D [463 0 R /XYZ 56.693 178.636 null]
1333+/D [468 0 R /XYZ 56.693 232.832 null]
1334 >> endobj
1335 475 0 obj <<
1336-/D [463 0 R /XYZ 56.693 165.086 null]
1337+/D [468 0 R /XYZ 56.693 219.283 null]
1338 >> endobj
1339 476 0 obj <<
1340-/D [463 0 R /XYZ 56.693 151.537 null]
1341->> endobj
1342-477 0 obj <<
1343-/D [463 0 R /XYZ 56.693 137.988 null]
1344+/D [468 0 R /XYZ 56.693 205.734 null]
1345 >> endobj
1346 478 0 obj <<
1347-/D [463 0 R /XYZ 56.693 124.439 null]
1348+/D [468 0 R /XYZ 56.693 192.185 null]
1349 >> endobj
1350 479 0 obj <<
1351-/D [463 0 R /XYZ 56.693 110.89 null]
1352+/D [468 0 R /XYZ 56.693 178.636 null]
1353 >> endobj
1354 480 0 obj <<
1355-/D [463 0 R /XYZ 56.693 97.34 null]
1356+/D [468 0 R /XYZ 56.693 165.086 null]
1357 >> endobj
1358 481 0 obj <<
1359-/D [463 0 R /XYZ 56.693 83.791 null]
1360+/D [468 0 R /XYZ 56.693 151.537 null]
1361 >> endobj
1362 482 0 obj <<
1363-/D [463 0 R /XYZ 56.693 70.242 null]
1364->> endobj
1365-462 0 obj <<
1366-/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R >>
1367-/ProcSet [ /PDF /Text ]
1368+/D [468 0 R /XYZ 56.693 137.988 null]
1369+>> endobj
1370+483 0 obj <<
1371+/D [468 0 R /XYZ 56.693 124.439 null]
1372+>> endobj
1373+484 0 obj <<
1374+/D [468 0 R /XYZ 56.693 110.89 null]
1375 >> endobj
1376 485 0 obj <<
1377+/D [468 0 R /XYZ 56.693 97.34 null]
1378+>> endobj
1379+486 0 obj <<
1380+/D [468 0 R /XYZ 56.693 83.791 null]
1381+>> endobj
1382+487 0 obj <<
1383+/D [468 0 R /XYZ 56.693 70.242 null]
1384+>> endobj
1385+467 0 obj <<
1386+/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R >>
1387+/ProcSet [ /PDF /Text ]
1388+>> endobj
1389+490 0 obj <<
1390 /Length 2232
1391 /Filter /FlateDecode
1392 >>
1393@@ -1447,69 +1460,69 @@
1394 Î, ;ÉH@îw¬àHØž ‘ƒ‚‡; RÒ”Œ§`Ä~æоApâð¿¡à7÷fßÔoó¦x´ŽƒdÔ1ÀNÇ’ŽÜ‚1œ�a¤
1395{öLáõ“O…X~º3]Gøî>h#¤ê=´u:k#äâ
1396Ç@Јêè,jð¾³èù¿Q‡«î
1397£ŠÚE}.qâ”
1398~Íp�<B‚O[ó]\—‰°|ø¡Ò=Ÿ›QæÏ�
1399á#ƒHÆ—v
1400y·nŽUímiZÕÞÓÂI[ôé×½‰îø%•ZO^û†§£QˆÃ·ñáïa²zÀÜBÕeÃ3'Â6¶DÙD4SìD4Q”Î^zÿoÄÏ¥óÀ·˜… 
1401
1402f6©FcO�({ÒHLD†3þß_¬ûóèÿ”lù4þŠÅüyQÌÿ-]ëêæÉŸ‚¨�8
1403 endstream
1404 endobj
1405-484 0 obj <<
1406-/Type /Page
1407-/Contents 485 0 R
1408-/Resources 483 0 R
1409-/MediaBox [0 0 595.276 841.89]
1410-/Parent 455 0 R
1411->> endobj
1412-486 0 obj <<
1413-/D [484 0 R /XYZ 55.693 817.952 null]
1414->> endobj
1415-487 0 obj <<
1416-/D [484 0 R /XYZ 56.693 787.787 null]
1417->> endobj
1418-488 0 obj <<
1419-/D [484 0 R /XYZ 56.693 587.222 null]
1420->> endobj
1421 489 0 obj <<
1422-/D [484 0 R /XYZ 56.693 590.299 null]
1423->> endobj
1424-490 0 obj <<
1425-/D [484 0 R /XYZ 56.693 576.749 null]
1426+/Type /Page
1427+/Contents 490 0 R
1428+/Resources 488 0 R
1429+/MediaBox [0 0 595.276 841.89]
1430+/Parent 460 0 R
1431 >> endobj
1432 491 0 obj <<
1433-/D [484 0 R /XYZ 56.693 563.2 null]
1434+/D [489 0 R /XYZ 55.693 817.952 null]
1435 >> endobj
1436 492 0 obj <<
1437-/D [484 0 R /XYZ 56.693 549.651 null]
1438+/D [489 0 R /XYZ 56.693 787.787 null]
1439 >> endobj
1440 493 0 obj <<
1441-/D [484 0 R /XYZ 56.693 536.102 null]
1442+/D [489 0 R /XYZ 56.693 587.222 null]
1443 >> endobj
1444 494 0 obj <<
1445-/D [484 0 R /XYZ 56.693 522.553 null]
1446+/D [489 0 R /XYZ 56.693 590.299 null]
1447 >> endobj
1448 495 0 obj <<
1449-/D [484 0 R /XYZ 56.693 509.003 null]
1450+/D [489 0 R /XYZ 56.693 576.749 null]
1451 >> endobj
1452 496 0 obj <<
1453-/D [484 0 R /XYZ 56.693 495.454 null]
1454+/D [489 0 R /XYZ 56.693 563.2 null]
1455 >> endobj
1456 497 0 obj <<
1457-/D [484 0 R /XYZ 56.693 481.905 null]
1458+/D [489 0 R /XYZ 56.693 549.651 null]
1459 >> endobj
1460 498 0 obj <<
1461-/D [484 0 R /XYZ 56.693 468.356 null]
1462+/D [489 0 R /XYZ 56.693 536.102 null]
1463 >> endobj
1464 499 0 obj <<
1465-/D [484 0 R /XYZ 56.693 454.807 null]
1466+/D [489 0 R /XYZ 56.693 522.553 null]
1467 >> endobj
1468 500 0 obj <<
1469-/D [484 0 R /XYZ 56.693 441.257 null]
1470+/D [489 0 R /XYZ 56.693 509.003 null]
1471 >> endobj
1472 501 0 obj <<
1473-/D [484 0 R /XYZ 56.693 427.708 null]
1474+/D [489 0 R /XYZ 56.693 495.454 null]
1475 >> endobj
1476 502 0 obj <<
1477-/D [484 0 R /XYZ 56.693 341.514 null]
1478->> endobj
1479-483 0 obj <<
1480-/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R >>
1481-/ProcSet [ /PDF /Text ]
1482+/D [489 0 R /XYZ 56.693 481.905 null]
1483+>> endobj
1484+503 0 obj <<
1485+/D [489 0 R /XYZ 56.693 468.356 null]
1486+>> endobj
1487+504 0 obj <<
1488+/D [489 0 R /XYZ 56.693 454.807 null]
1489 >> endobj
1490 505 0 obj <<
1491+/D [489 0 R /XYZ 56.693 441.257 null]
1492+>> endobj
1493+506 0 obj <<
1494+/D [489 0 R /XYZ 56.693 427.708 null]
1495+>> endobj
1496+507 0 obj <<
1497+/D [489 0 R /XYZ 56.693 341.514 null]
1498+>> endobj
1499+488 0 obj <<
1500+/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R >>
1501+/ProcSet [ /PDF /Text ]
1502+>> endobj
1503+510 0 obj <<
1504 /Length 1705
1505 /Filter /FlateDecode
1506 >>
1507@@ -1524,45 +1537,45 @@
1508 2Ô:‡¶ÎmxO%µíθ
1509¬�°4þ0Eï¿H�âddý`,eQûU�v&²a{“½+šu‚1m$ï—í.º?�Éž N¾'
1510~ô;»vÔ+”$±
1511NÑ{0Eã>
1512^Bêÿz1Zh ½þ
1513ª;Û
1514 endstream
1515 endobj
1516-504 0 obj <<
1517+509 0 obj <<
1518 /Type /Page
1519-/Contents 505 0 R
1520-/Resources 503 0 R
1521+/Contents 510 0 R
1522+/Resources 508 0 R
1523 /MediaBox [0 0 595.276 841.89]
1524-/Parent 455 0 R
1525+/Parent 460 0 R
1526 >> endobj
1527-506 0 obj <<
1528-/D [504 0 R /XYZ 55.693 817.952 null]
1529+511 0 obj <<
1530+/D [509 0 R /XYZ 55.693 817.952 null]
1531 >> endobj
1532 34 0 obj <<
1533-/D [504 0 R /XYZ 56.693 331.901 null]
1534+/D [509 0 R /XYZ 56.693 331.901 null]
1535 >> endobj
1536 38 0 obj <<
1537-/D [504 0 R /XYZ 56.693 214.871 null]
1538->> endobj
1539-507 0 obj <<
1540-/D [504 0 R /XYZ 56.693 121.363 null]
1541->> endobj
1542-508 0 obj <<
1543-/D [504 0 R /XYZ 56.693 124.439 null]
1544->> endobj
1545-509 0 obj <<
1546-/D [504 0 R /XYZ 56.693 110.89 null]
1547->> endobj
1548-510 0 obj <<
1549-/D [504 0 R /XYZ 56.693 97.34 null]
1550->> endobj
1551-511 0 obj <<
1552-/D [504 0 R /XYZ 56.693 83.791 null]
1553+/D [509 0 R /XYZ 56.693 214.871 null]
1554 >> endobj
1555 512 0 obj <<
1556-/D [504 0 R /XYZ 56.693 70.242 null]
1557->> endobj
1558-503 0 obj <<
1559-/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R /F50 468 0 R /F51 472 0 R >>
1560-/ProcSet [ /PDF /Text ]
1561+/D [509 0 R /XYZ 56.693 121.363 null]
1562+>> endobj
1563+513 0 obj <<
1564+/D [509 0 R /XYZ 56.693 124.439 null]
1565+>> endobj
1566+514 0 obj <<
1567+/D [509 0 R /XYZ 56.693 110.89 null]
1568+>> endobj
1569+515 0 obj <<
1570+/D [509 0 R /XYZ 56.693 97.34 null]
1571 >> endobj
1572 516 0 obj <<
1573+/D [509 0 R /XYZ 56.693 83.791 null]
1574+>> endobj
1575+517 0 obj <<
1576+/D [509 0 R /XYZ 56.693 70.242 null]
1577+>> endobj
1578+508 0 obj <<
1579+/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R /F50 473 0 R /F51 477 0 R >>
1580+/ProcSet [ /PDF /Text ]
1581+>> endobj
1582+521 0 obj <<
1583 /Length 1953
1584 /Filter /FlateDecode
1585 >>
1586@@ -1578,114 +1591,114 @@
1587 3¤�¬3$ŽS
1588.ñëø…ku-Ÿ‡Û‡3
1589FÕìÓº�ã79.J.“ÍɃÖÀóT«Ê¢²�¼¥è%xã
1590tP;¬?
1591ÐÀ?á@à(h’\"^tXGÐ
1592³¥©á°d–ž—`[«E¾Ë,v´Õì¦6v
1593ÝKz�TCì”C/ø¢5‘}B‚ºÅ¨eWY9t4ì¹
1594ô>¾LãU‘”ÂÅ�Ò»Sâ�¶;€J·18_»ÛDÛ�íNãÀǶøÎ5…˜ÿíMaº
1595 endstream
1596 endobj
1597-515 0 obj <<
1598-/Type /Page
1599-/Contents 516 0 R
1600-/Resources 514 0 R
1601-/MediaBox [0 0 595.276 841.89]
1602-/Parent 455 0 R
1603->> endobj
1604-517 0 obj <<
1605-/D [515 0 R /XYZ 55.693 817.952 null]
1606->> endobj
1607-518 0 obj <<
1608-/D [515 0 R /XYZ 56.693 787.787 null]
1609->> endobj
1610-519 0 obj <<
1611-/D [515 0 R /XYZ 56.693 774.238 null]
1612->> endobj
1613 520 0 obj <<
1614-/D [515 0 R /XYZ 56.693 760.689 null]
1615->> endobj
1616-521 0 obj <<
1617-/D [515 0 R /XYZ 56.693 747.14 null]
1618+/Type /Page
1619+/Contents 521 0 R
1620+/Resources 519 0 R
1621+/MediaBox [0 0 595.276 841.89]
1622+/Parent 460 0 R
1623 >> endobj
1624 522 0 obj <<
1625-/D [515 0 R /XYZ 56.693 733.59 null]
1626+/D [520 0 R /XYZ 55.693 817.952 null]
1627 >> endobj
1628 523 0 obj <<
1629-/D [515 0 R /XYZ 56.693 720.041 null]
1630+/D [520 0 R /XYZ 56.693 787.787 null]
1631 >> endobj
1632 524 0 obj <<
1633-/D [515 0 R /XYZ 56.693 706.492 null]
1634+/D [520 0 R /XYZ 56.693 774.238 null]
1635 >> endobj
1636 525 0 obj <<
1637-/D [515 0 R /XYZ 56.693 692.943 null]
1638+/D [520 0 R /XYZ 56.693 760.689 null]
1639 >> endobj
1640 526 0 obj <<
1641-/D [515 0 R /XYZ 56.693 679.394 null]
1642+/D [520 0 R /XYZ 56.693 747.14 null]
1643 >> endobj
1644 527 0 obj <<
1645-/D [515 0 R /XYZ 56.693 665.844 null]
1646->> endobj
1647-42 0 obj <<
1648-/D [515 0 R /XYZ 56.693 553.184 null]
1649+/D [520 0 R /XYZ 56.693 733.59 null]
1650 >> endobj
1651 528 0 obj <<
1652-/D [515 0 R /XYZ 56.693 438.145 null]
1653+/D [520 0 R /XYZ 56.693 720.041 null]
1654 >> endobj
1655 529 0 obj <<
1656-/D [515 0 R /XYZ 56.693 441.222 null]
1657+/D [520 0 R /XYZ 56.693 706.492 null]
1658 >> endobj
1659 530 0 obj <<
1660-/D [515 0 R /XYZ 56.693 427.673 null]
1661+/D [520 0 R /XYZ 56.693 692.943 null]
1662 >> endobj
1663 531 0 obj <<
1664-/D [515 0 R /XYZ 56.693 414.123 null]
1665+/D [520 0 R /XYZ 56.693 679.394 null]
1666 >> endobj
1667 532 0 obj <<
1668-/D [515 0 R /XYZ 56.693 400.574 null]
1669+/D [520 0 R /XYZ 56.693 665.844 null]
1670+>> endobj
1671+42 0 obj <<
1672+/D [520 0 R /XYZ 56.693 553.184 null]
1673 >> endobj
1674 533 0 obj <<
1675-/D [515 0 R /XYZ 56.693 387.025 null]
1676+/D [520 0 R /XYZ 56.693 438.145 null]
1677 >> endobj
1678 534 0 obj <<
1679-/D [515 0 R /XYZ 56.693 373.476 null]
1680+/D [520 0 R /XYZ 56.693 441.222 null]
1681 >> endobj
1682 535 0 obj <<
1683-/D [515 0 R /XYZ 56.693 359.927 null]
1684+/D [520 0 R /XYZ 56.693 427.673 null]
1685 >> endobj
1686 536 0 obj <<
1687-/D [515 0 R /XYZ 56.693 346.377 null]
1688+/D [520 0 R /XYZ 56.693 414.123 null]
1689 >> endobj
1690 537 0 obj <<
1691-/D [515 0 R /XYZ 56.693 332.828 null]
1692+/D [520 0 R /XYZ 56.693 400.574 null]
1693 >> endobj
1694 538 0 obj <<
1695-/D [515 0 R /XYZ 56.693 319.279 null]
1696+/D [520 0 R /XYZ 56.693 387.025 null]
1697 >> endobj
1698 539 0 obj <<
1699-/D [515 0 R /XYZ 56.693 305.73 null]
1700+/D [520 0 R /XYZ 56.693 373.476 null]
1701 >> endobj
1702 540 0 obj <<
1703-/D [515 0 R /XYZ 56.693 249.128 null]
1704+/D [520 0 R /XYZ 56.693 359.927 null]
1705 >> endobj
1706 541 0 obj <<
1707-/D [515 0 R /XYZ 56.693 252.204 null]
1708+/D [520 0 R /XYZ 56.693 346.377 null]
1709 >> endobj
1710 542 0 obj <<
1711-/D [515 0 R /XYZ 56.693 238.655 null]
1712+/D [520 0 R /XYZ 56.693 332.828 null]
1713 >> endobj
1714 543 0 obj <<
1715-/D [515 0 R /XYZ 56.693 225.106 null]
1716+/D [520 0 R /XYZ 56.693 319.279 null]
1717 >> endobj
1718 544 0 obj <<
1719-/D [515 0 R /XYZ 56.693 211.557 null]
1720+/D [520 0 R /XYZ 56.693 305.73 null]
1721 >> endobj
1722 545 0 obj <<
1723-/D [515 0 R /XYZ 56.693 198.008 null]
1724+/D [520 0 R /XYZ 56.693 249.128 null]
1725 >> endobj
1726 546 0 obj <<
1727-/D [515 0 R /XYZ 56.693 184.458 null]
1728+/D [520 0 R /XYZ 56.693 252.204 null]
1729+>> endobj
1730+547 0 obj <<
1731+/D [520 0 R /XYZ 56.693 238.655 null]
1732+>> endobj
1733+548 0 obj <<
1734+/D [520 0 R /XYZ 56.693 225.106 null]
1735+>> endobj
1736+549 0 obj <<
1737+/D [520 0 R /XYZ 56.693 211.557 null]
1738+>> endobj
1739+550 0 obj <<
1740+/D [520 0 R /XYZ 56.693 198.008 null]
1741+>> endobj
1742+551 0 obj <<
1743+/D [520 0 R /XYZ 56.693 184.458 null]
1744 >> endobj
1745 46 0 obj <<
1746-/D [515 0 R /XYZ 56.693 126.802 null]
1747+/D [520 0 R /XYZ 56.693 126.802 null]
1748 >> endobj
1749-514 0 obj <<
1750-/Font << /F28 335 0 R /F39 421 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F37 376 0 R >>
1751+519 0 obj <<
1752+/Font << /F28 339 0 R /F39 425 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F37 380 0 R >>
1753 /ProcSet [ /PDF /Text ]
1754 >> endobj
1755-549 0 obj <<
1756+554 0 obj <<
1757 /Length 2647
1758 /Filter /FlateDecode
1759 >>
1760@@ -1702,122 +1715,122 @@
1761 �Oþfê–ÿµþd½ß\�ŽÉ]j R
1762Q­q7g]d¨�Œ£j±Û4ãj@d¬NçNL¡Yž‚r?òŸþës M
1763 endstream
1764 endobj
1765-548 0 obj <<
1766+553 0 obj <<
1767 /Type /Page
1768-/Contents 549 0 R
1769-/Resources 547 0 R
1770+/Contents 554 0 R
1771+/Resources 552 0 R
1772 /MediaBox [0 0 595.276 841.89]
1773-/Parent 580 0 R
1774-/Annots [ 513 0 R ]
1775+/Parent 585 0 R
1776+/Annots [ 518 0 R ]
1777 >> endobj
1778-513 0 obj <<
1779+518 0 obj <<
1780 /Type /Annot
1781 /Subtype /Link
1782 /Border[0 0 0]/H/I/C[1 0 0]
1783 /Rect [151.966 242.548 167.595 255.564]
1784 /A << /S /GoTo /D (figure.2.1) >>
1785 >> endobj
1786-550 0 obj <<
1787-/D [548 0 R /XYZ 55.693 817.952 null]
1788->> endobj
1789-551 0 obj <<
1790-/D [548 0 R /XYZ 56.693 779.219 null]
1791->> endobj
1792-552 0 obj <<
1793-/D [548 0 R /XYZ 56.693 789.062 null]
1794->> endobj
1795-553 0 obj <<
1796-/D [548 0 R /XYZ 56.693 775.513 null]
1797->> endobj
1798-554 0 obj <<
1799-/D [548 0 R /XYZ 56.693 761.964 null]
1800->> endobj
1801 555 0 obj <<
1802-/D [548 0 R /XYZ 56.693 748.415 null]
1803+/D [553 0 R /XYZ 55.693 817.952 null]
1804 >> endobj
1805 556 0 obj <<
1806-/D [548 0 R /XYZ 56.693 734.866 null]
1807+/D [553 0 R /XYZ 56.693 779.219 null]
1808 >> endobj
1809 557 0 obj <<
1810-/D [548 0 R /XYZ 56.693 721.317 null]
1811+/D [553 0 R /XYZ 56.693 789.062 null]
1812 >> endobj
1813 558 0 obj <<
1814-/D [548 0 R /XYZ 56.693 707.767 null]
1815+/D [553 0 R /XYZ 56.693 775.513 null]
1816 >> endobj
1817 559 0 obj <<
1818-/D [548 0 R /XYZ 56.693 694.218 null]
1819+/D [553 0 R /XYZ 56.693 761.964 null]
1820 >> endobj
1821 560 0 obj <<
1822-/D [548 0 R /XYZ 56.693 680.669 null]
1823+/D [553 0 R /XYZ 56.693 748.415 null]
1824 >> endobj
1825 561 0 obj <<
1826-/D [548 0 R /XYZ 56.693 667.12 null]
1827+/D [553 0 R /XYZ 56.693 734.866 null]
1828 >> endobj
1829 562 0 obj <<
1830-/D [548 0 R /XYZ 56.693 653.571 null]
1831+/D [553 0 R /XYZ 56.693 721.317 null]
1832 >> endobj
1833 563 0 obj <<
1834-/D [548 0 R /XYZ 56.693 640.021 null]
1835+/D [553 0 R /XYZ 56.693 707.767 null]
1836 >> endobj
1837 564 0 obj <<
1838-/D [548 0 R /XYZ 56.693 626.472 null]
1839+/D [553 0 R /XYZ 56.693 694.218 null]
1840 >> endobj
1841 565 0 obj <<
1842-/D [548 0 R /XYZ 56.693 612.923 null]
1843+/D [553 0 R /XYZ 56.693 680.669 null]
1844 >> endobj
1845 566 0 obj <<
1846-/D [548 0 R /XYZ 56.693 599.374 null]
1847+/D [553 0 R /XYZ 56.693 667.12 null]
1848 >> endobj
1849 567 0 obj <<
1850-/D [548 0 R /XYZ 56.693 585.825 null]
1851+/D [553 0 R /XYZ 56.693 653.571 null]
1852 >> endobj
1853 568 0 obj <<
1854-/D [548 0 R /XYZ 56.693 572.276 null]
1855+/D [553 0 R /XYZ 56.693 640.021 null]
1856 >> endobj
1857 569 0 obj <<
1858-/D [548 0 R /XYZ 56.693 558.726 null]
1859+/D [553 0 R /XYZ 56.693 626.472 null]
1860 >> endobj
1861 570 0 obj <<
1862-/D [548 0 R /XYZ 56.693 545.177 null]
1863+/D [553 0 R /XYZ 56.693 612.923 null]
1864 >> endobj
1865 571 0 obj <<
1866-/D [548 0 R /XYZ 56.693 531.628 null]
1867+/D [553 0 R /XYZ 56.693 599.374 null]
1868 >> endobj
1869 572 0 obj <<
1870-/D [548 0 R /XYZ 56.693 518.079 null]
1871+/D [553 0 R /XYZ 56.693 585.825 null]
1872 >> endobj
1873 573 0 obj <<
1874-/D [548 0 R /XYZ 56.693 504.53 null]
1875+/D [553 0 R /XYZ 56.693 572.276 null]
1876 >> endobj
1877 574 0 obj <<
1878-/D [548 0 R /XYZ 56.693 490.98 null]
1879+/D [553 0 R /XYZ 56.693 558.726 null]
1880 >> endobj
1881 575 0 obj <<
1882-/D [548 0 R /XYZ 56.693 477.431 null]
1883+/D [553 0 R /XYZ 56.693 545.177 null]
1884 >> endobj
1885 576 0 obj <<
1886-/D [548 0 R /XYZ 56.693 463.882 null]
1887+/D [553 0 R /XYZ 56.693 531.628 null]
1888 >> endobj
1889 577 0 obj <<
1890-/D [548 0 R /XYZ 56.693 450.333 null]
1891+/D [553 0 R /XYZ 56.693 518.079 null]
1892 >> endobj
1893 578 0 obj <<
1894-/D [548 0 R /XYZ 56.693 436.784 null]
1895+/D [553 0 R /XYZ 56.693 504.53 null]
1896 >> endobj
1897 579 0 obj <<
1898-/D [548 0 R /XYZ 111.951 402.057 null]
1899+/D [553 0 R /XYZ 56.693 490.98 null]
1900+>> endobj
1901+580 0 obj <<
1902+/D [553 0 R /XYZ 56.693 477.431 null]
1903+>> endobj
1904+581 0 obj <<
1905+/D [553 0 R /XYZ 56.693 463.882 null]
1906+>> endobj
1907+582 0 obj <<
1908+/D [553 0 R /XYZ 56.693 450.333 null]
1909+>> endobj
1910+583 0 obj <<
1911+/D [553 0 R /XYZ 56.693 436.784 null]
1912+>> endobj
1913+584 0 obj <<
1914+/D [553 0 R /XYZ 111.951 402.057 null]
1915 >> endobj
1916 50 0 obj <<
1917-/D [548 0 R /XYZ 56.693 341.79 null]
1918+/D [553 0 R /XYZ 56.693 341.79 null]
1919 >> endobj
1920 54 0 obj <<
1921-/D [548 0 R /XYZ 56.693 212.212 null]
1922+/D [553 0 R /XYZ 56.693 212.212 null]
1923 >> endobj
1924-547 0 obj <<
1925-/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F50 468 0 R /F51 472 0 R /F37 376 0 R /F36 453 0 R >>
1926+552 0 obj <<
1927+/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F50 473 0 R /F51 477 0 R /F37 380 0 R /F36 458 0 R >>
1928 /ProcSet [ /PDF /Text ]
1929 >> endobj
1930-584 0 obj <<
1931+589 0 obj <<
1932 /Length 1852
1933 /Filter /FlateDecode
1934 >>
1935@@ -1828,35 +1841,35 @@
1936 Ðó\ ð1–ùN+ò…ALMÖÕ¼…Wà›n”â4Þ¢%Ṳ̂„÷z¾<óÅ:B<~
1937+_^vðrÜv3ã]nc`À+ÈfÕÕØ^É›êLÙ­û6ƒåAzµ jìYz\ÿõsi˜ì^Kz%–9óÇüŸQaÄiǶçÒÎ=iÿÍîâ?Á
1938D
1939 endstream
1940 endobj
1941-583 0 obj <<
1942+588 0 obj <<
1943 /Type /Page
1944-/Contents 584 0 R
1945-/Resources 582 0 R
1946+/Contents 589 0 R
1947+/Resources 587 0 R
1948 /MediaBox [0 0 595.276 841.89]
1949-/Parent 580 0 R
1950-/Annots [ 581 0 R ]
1951+/Parent 585 0 R
1952+/Annots [ 586 0 R ]
1953 >> endobj
1954-581 0 obj <<
1955+586 0 obj <<
1956 /Type /Annot
1957 /Subtype /Link
1958 /Border[0 0 0]/H/I/C[1 0 0]
1959 /Rect [324.164 514.395 339.793 527.411]
1960 /A << /S /GoTo /D (figure.2.1) >>
1961 >> endobj
1962-585 0 obj <<
1963-/D [583 0 R /XYZ 55.693 817.952 null]
1964+590 0 obj <<
1965+/D [588 0 R /XYZ 55.693 817.952 null]
1966 >> endobj
1967 58 0 obj <<
1968-/D [583 0 R /XYZ 56.693 708.223 null]
1969+/D [588 0 R /XYZ 56.693 708.223 null]
1970 >> endobj
1971 62 0 obj <<
1972-/D [583 0 R /XYZ 56.693 483.935 null]
1973+/D [588 0 R /XYZ 56.693 483.935 null]
1974 >> endobj
1975-582 0 obj <<
1976-/Font << /F28 335 0 R /F39 421 0 R /F36 453 0 R /F47 454 0 R /F37 376 0 R >>
1977+587 0 obj <<
1978+/Font << /F28 339 0 R /F39 425 0 R /F36 458 0 R /F47 459 0 R /F37 380 0 R >>
1979 /ProcSet [ /PDF /Text ]
1980 >> endobj
1981-589 0 obj <<
1982+594 0 obj <<
1983 /Length 1001
1984 /Filter /FlateDecode
1985 >>
1986@@ -1867,38 +1880,38 @@
1987 n�»9›ß­ÊÑ8ð­W—.H¼œŒa5ÄÕ)[ïe]Ê®9ÿ ™­‚‹¨š`ô¡ÜËæ2xƒ¾ßÍéü>X¯FËA;9VW{½“Ù8èw@ok5q’/«kN2Ëø…ÚzÎ|­
1988®˜GV›:‡íÆ©¾ÉGë.Tœ•âŒëOŽÐ<ÃÒ²žðAÖ
1989=Á®.ŠúÅÚYÿºOÔÒþIØ7¢ü_Ý}lŒ/Vo'»üð¨ª]ý^ïžZ[h÷‡æÍ+׊ÊU‡¨ª®¤CÁ®4KÝ[fZA··ø
1990T�àÍ¢9<ßhD
1991YÝñ(‚!S\uÿhkG$ŠÂ
1992ºZl]«hÖùp'Î
1993õT½÷^vÖÙø^¼ùÍdDŽ÷¢<ãö䜓bÕ1ö_!‹F.¿lfÿsYÜ-
1994 endstream
1995 endobj
1996-588 0 obj <<
1997+593 0 obj <<
1998 /Type /Page
1999-/Contents 589 0 R
2000-/Resources 587 0 R
2001+/Contents 594 0 R
2002+/Resources 592 0 R
2003 /MediaBox [0 0 595.276 841.89]
2004-/Parent 580 0 R
2005-/Annots [ 586 0 R ]
2006+/Parent 585 0 R
2007+/Annots [ 591 0 R ]
2008 >> endobj
2009-586 0 obj <<
2010+591 0 obj <<
2011 /Type /Annot
2012 /Subtype /Link
2013 /Border[0 0 0]/H/I/C[1 0 0]
2014 /Rect [300.417 379.372 316.046 392.388]
2015 /A << /S /GoTo /D (figure.2.1) >>
2016 >> endobj
2017-590 0 obj <<
2018-/D [588 0 R /XYZ 55.693 817.952 null]
2019+595 0 obj <<
2020+/D [593 0 R /XYZ 55.693 817.952 null]
2021 >> endobj
2022 66 0 obj <<
2023-/D [588 0 R /XYZ 56.693 785.197 null]
2024+/D [593 0 R /XYZ 56.693 785.197 null]
2025 >> endobj
2026 70 0 obj <<
2027-/D [588 0 R /XYZ 56.693 548.093 null]
2028+/D [593 0 R /XYZ 56.693 548.093 null]
2029 >> endobj
2030 74 0 obj <<
2031-/D [588 0 R /XYZ 56.693 446.701 null]
2032+/D [593 0 R /XYZ 56.693 446.701 null]
2033 >> endobj
2034-587 0 obj <<
2035-/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>
2036+592 0 obj <<
2037+/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
2038 /ProcSet [ /PDF /Text ]
2039 >> endobj
2040-593 0 obj <<
2041+598 0 obj <<
2042 /Length 1355
2043 /Filter /FlateDecode
2044 >>
2045@@ -1911,24 +1924,24 @@
2046 F
2047§r­å=Äu8@òU¦:!è7˜“ê£Weo!4ú®›ÉŸ)uSu Â9ä°ÔðjzÈÒÁ^êz„ûm÷ý®G‚ÉÐ¥h&ú”sÜkd§µiCìv¼ÓâŸÚ 1Éo¯Á‚�BLu®Ê“1ŸžËRÇ(Ü^x<ë
20489=L±Ç³A´—»ÇM—|bÛ̞أóJݪu׎µÌïNÆt|Ê�g½å'1ï(£;ë™*—û0ÄAgV�+u2^èTŒw=l®»>#Y¹ü·n1¼
2049ݱ~ ¼ó¿
2050o:ä£Y?â‡.ÙKôg_c¦ì9
2051šò­Ç�Ì–¨™„Ž´B(xìz8•ÝIu_
2052²lÀ‰ç¶
2053͘:„
2054Úžïµ}¢%°úæ•+Y-[8(Ûºûr„±Vaã»!¥B�Ðõv”«˜sÏ‘yÒ*|´LyðÄówÞ
2055­hää†Ì͈÷H¬’0¿6¹þ²¶ÄH
20560ÆžëºÏÞ†2
2057!„�3ŸD®S ªLÞY øF4£6ö0n"Ã{+Bî;hRs›åZăvßóÐ�Äpá<|6/B3ÜÏ
2058Ã:5Ûš§V’@�5Ï®Á—
2059Z<ëÇžªÖ�/df
2060Ä&9
2061hùÿÆ>í®Ãô#þ£ìƒ×‹NÆWE©��@>~õÆÿ2^/£¥.ìßTZĺzüw`¿_m7¼"auª «óÞì}påÅ=l«»Áîçà!’&àŒý“f´”_­Ž½F9¨‘ øþ·õ¤:2¥}ŸsX
2062#a:q=ûÿ¦¦Û×Æ×_Ä­ÊÝ�Ãþlã¡:*ov„Ûÿ×ÔŸòå`K¼˜ý…k”
2063 endstream
2064 endobj
2065-592 0 obj <<
2066+597 0 obj <<
2067 /Type /Page
2068-/Contents 593 0 R
2069-/Resources 591 0 R
2070+/Contents 598 0 R
2071+/Resources 596 0 R
2072 /MediaBox [0 0 595.276 841.89]
2073-/Parent 580 0 R
2074+/Parent 585 0 R
2075 >> endobj
2076-594 0 obj <<
2077-/D [592 0 R /XYZ 55.693 817.952 null]
2078+599 0 obj <<
2079+/D [597 0 R /XYZ 55.693 817.952 null]
2080 >> endobj
2081 78 0 obj <<
2082-/D [592 0 R /XYZ 56.693 690.705 null]
2083+/D [597 0 R /XYZ 56.693 690.705 null]
2084 >> endobj
2085-591 0 obj <<
2086-/Font << /F28 335 0 R /F39 421 0 R /F47 454 0 R /F37 376 0 R /F55 595 0 R /F50 468 0 R >>
2087+596 0 obj <<
2088+/Font << /F28 339 0 R /F39 425 0 R /F47 459 0 R /F37 380 0 R /F55 600 0 R /F50 473 0 R >>
2089 /ProcSet [ /PDF /Text ]
2090 >> endobj
2091-602 0 obj <<
2092+607 0 obj <<
2093 /Length 2097
2094 /Filter /FlateDecode
2095 >>
2096@@ -1946,45 +1959,45 @@
2097 ¯Œsæ@„VÝâþY2öÚƬL»H¦  œa–K,øo �÷ßâ@Œã%IOs
2098¾õO:'Ó(]­¨i_¥ôb…/Ì×�ÏÄ€\„:¶Þ²
2099¬…‚‰
2100
2101…eì8Îæa7~t°?Ú‚ß?^ý\Ågõ
2102 endstream
2103 endobj
2104+606 0 obj <<
2105+/Type /Page
2106+/Contents 607 0 R
2107+/Resources 605 0 R
2108+/MediaBox [0 0 595.276 841.89]
2109+/Parent 585 0 R
2110+/Annots [ 601 0 R 602 0 R ]
2111+>> endobj
2112 601 0 obj <<
2113-/Type /Page
2114-/Contents 602 0 R
2115-/Resources 600 0 R
2116-/MediaBox [0 0 595.276 841.89]
2117-/Parent 580 0 R
2118-/Annots [ 596 0 R 597 0 R ]
2119->> endobj
2120-596 0 obj <<
2121 /Type /Annot
2122 /Subtype /Link
2123 /Border[0 0 0]/H/I/C[1 0 0]
2124 /Rect [160.149 497.929 189.414 510.945]
2125 /A << /S /GoTo /D (subsection.3.5.15) >>
2126 >> endobj
2127-597 0 obj <<
2128+602 0 obj <<
2129 /Type /Annot
2130 /Subtype /Link
2131 /Border[0 0 0]/H/I/C[1 0 0]
2132 /Rect [282.05 404.141 297.679 417.157]
2133 /A << /S /GoTo /D (section.2.2) >>
2134 >> endobj
2135-603 0 obj <<
2136-/D [601 0 R /XYZ 55.693 817.952 null]
2137+608 0 obj <<
2138+/D [606 0 R /XYZ 55.693 817.952 null]
2139 >> endobj
2140 82 0 obj <<
2141-/D [601 0 R /XYZ 56.693 664.441 null]
2142+/D [606 0 R /XYZ 56.693 664.441 null]
2143 >> endobj
2144 86 0 obj <<
2145-/D [601 0 R /XYZ 56.693 453.52 null]
2146+/D [606 0 R /XYZ 56.693 453.52 null]
2147 >> endobj
2148 90 0 obj <<
2149-/D [601 0 R /XYZ 56.693 174.922 null]
2150+/D [606 0 R /XYZ 56.693 174.922 null]
2151 >> endobj
2152-600 0 obj <<
2153-/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R >>
2154+605 0 obj <<
2155+/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R >>
2156 /ProcSet [ /PDF /Text ]
2157 >> endobj
2158-606 0 obj <<
2159+611 0 obj <<
2160 /Length 1490
2161 /Filter /FlateDecode
2162 >>
2163@@ -1998,54 +2011,54 @@
2164
2165»"’‚¼´
2166W*²SÑgQUßÛ-Õ€ÌR@�´ˆöF
2167
2168oÔt·”±öc‘ÛúP5Áû‹µ�øZˆ\-ÜÕ4tk’Ñ5t
2169ýR58ô»ñ½f*WL�ƒoLÝg__½ût7X��6–º1N˲*ŠêÉã÷Ãî@÷eX4ÿK
2170žƒ
2171½èAç—î�p6l1ÿþØ¡DL…³›@> ¤ˆÞca*=P`.Y@Žt�KNÚB>ü¿� ÷CÈý·íº%ÞÓ©}
21725úèDá_KHö^Køi“,?êØðš‚ŒÂá
2173<
2174¸ô´Î=‰gãÿ%ýÙ€Úo
2175#î:vÑ_Çñ‰Ðe»q,ÿà:êy‘daõ{Þ­­#Šô9—�Ä€ÛìGùrqzÞµÃeïœ÷ï_{W@‡Ž†^w±ßj¨x
2176=]ÁÛøô
2177ZCR—�‡SÒŠ>à¡XûòÅú7õºÊÕ⓪KÈèSJJ½Rhо
2178Oy%KXœüßW@ê÷¯Us€öŽDrvRãÕìâWTaI
2179 endstream
2180 endobj
2181-605 0 obj <<
2182+610 0 obj <<
2183 /Type /Page
2184-/Contents 606 0 R
2185-/Resources 604 0 R
2186+/Contents 611 0 R
2187+/Resources 609 0 R
2188 /MediaBox [0 0 595.276 841.89]
2189-/Parent 580 0 R
2190-/Annots [ 598 0 R 599 0 R ]
2191+/Parent 585 0 R
2192+/Annots [ 603 0 R 604 0 R ]
2193 >> endobj
2194-598 0 obj <<
2195+603 0 obj <<
2196 /Type /Annot
2197 /Subtype /Link
2198 /Border[0 0 0]/H/I/C[1 0 0]
2199 /Rect [436.274 737.519 460.084 750.535]
2200 /A << /S /GoTo /D (subsection.3.5.1) >>
2201 >> endobj
2202-599 0 obj <<
2203+604 0 obj <<
2204 /Type /Annot
2205 /Subtype /Link
2206 /Border[0 0 0]/H/I/C[1 0 0]
2207 /Rect [59.329 723.97 83.14 736.986]
2208 /A << /S /GoTo /D (subsection.3.6.2) >>
2209 >> endobj
2210-607 0 obj <<
2211-/D [605 0 R /XYZ 55.693 817.952 null]
2212+612 0 obj <<
2213+/D [610 0 R /XYZ 55.693 817.952 null]
2214 >> endobj
2215 94 0 obj <<
2216-/D [605 0 R /XYZ 56.693 785.197 null]
2217+/D [610 0 R /XYZ 56.693 785.197 null]
2218 >> endobj
2219 98 0 obj <<
2220-/D [605 0 R /XYZ 56.693 629.363 null]
2221+/D [610 0 R /XYZ 56.693 629.363 null]
2222 >> endobj
2223 102 0 obj <<
2224-/D [605 0 R /XYZ 56.693 517.166 null]
2225+/D [610 0 R /XYZ 56.693 517.166 null]
2226 >> endobj
2227 106 0 obj <<
2228-/D [605 0 R /XYZ 56.693 400.787 null]
2229+/D [610 0 R /XYZ 56.693 400.787 null]
2230 >> endobj
2231 110 0 obj <<
2232-/D [605 0 R /XYZ 56.693 259.88 null]
2233+/D [610 0 R /XYZ 56.693 259.88 null]
2234 >> endobj
2235 114 0 obj <<
2236-/D [605 0 R /XYZ 56.693 150.252 null]
2237+/D [610 0 R /XYZ 56.693 150.252 null]
2238 >> endobj
2239-604 0 obj <<
2240-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>
2241+609 0 obj <<
2242+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
2243 /ProcSet [ /PDF /Text ]
2244 >> endobj
2245-610 0 obj <<
2246+615 0 obj <<
2247 /Length 2192
2248 /Filter /FlateDecode
2249 >>
2250@@ -2066,75 +2079,75 @@
2251 æ&‰:Ì©ôm“ö}\—ü°ç�Ýåˆ×ÜJêÝè±}ÎÞ?“íe™ñôeW)çÿò�½yge5·Ôdû¾s—,ÕW쾑 ¼çÿÿÝ5Ù
2252 endstream
2253 endobj
2254-609 0 obj <<
2255+614 0 obj <<
2256 /Type /Page
2257-/Contents 610 0 R
2258-/Resources 608 0 R
2259+/Contents 615 0 R
2260+/Resources 613 0 R
2261 /MediaBox [0 0 595.276 841.89]
2262-/Parent 627 0 R
2263+/Parent 632 0 R
2264 >> endobj
2265-611 0 obj <<
2266-/D [609 0 R /XYZ 55.693 817.952 null]
2267+616 0 obj <<
2268+/D [614 0 R /XYZ 55.693 817.952 null]
2269 >> endobj
2270 118 0 obj <<
2271-/D [609 0 R /XYZ 56.693 551.956 null]
2272+/D [614 0 R /XYZ 56.693 551.956 null]
2273 >> endobj
2274 122 0 obj <<
2275-/D [609 0 R /XYZ 56.693 392.073 null]
2276->> endobj
2277-612 0 obj <<
2278-/D [609 0 R /XYZ 56.693 361.392 null]
2279->> endobj
2280-613 0 obj <<
2281-/D [609 0 R /XYZ 56.693 364.158 null]
2282->> endobj
2283-614 0 obj <<
2284-/D [609 0 R /XYZ 56.693 350.609 null]
2285->> endobj
2286-615 0 obj <<
2287-/D [609 0 R /XYZ 56.693 318.33 null]
2288->> endobj
2289-616 0 obj <<
2290-/D [609 0 R /XYZ 56.693 321.398 null]
2291+/D [614 0 R /XYZ 56.693 392.073 null]
2292 >> endobj
2293 617 0 obj <<
2294-/D [609 0 R /XYZ 56.693 289.119 null]
2295+/D [614 0 R /XYZ 56.693 361.392 null]
2296 >> endobj
2297 618 0 obj <<
2298-/D [609 0 R /XYZ 56.693 292.188 null]
2299->> endobj
2300-126 0 obj <<
2301-/D [609 0 R /XYZ 56.693 231.158 null]
2302+/D [614 0 R /XYZ 56.693 364.158 null]
2303 >> endobj
2304 619 0 obj <<
2305-/D [609 0 R /XYZ 56.693 199.192 null]
2306+/D [614 0 R /XYZ 56.693 350.609 null]
2307 >> endobj
2308 620 0 obj <<
2309-/D [609 0 R /XYZ 56.693 201.958 null]
2310+/D [614 0 R /XYZ 56.693 318.33 null]
2311 >> endobj
2312 621 0 obj <<
2313-/D [609 0 R /XYZ 56.693 188.409 null]
2314+/D [614 0 R /XYZ 56.693 321.398 null]
2315 >> endobj
2316 622 0 obj <<
2317-/D [609 0 R /XYZ 56.693 174.859 null]
2318+/D [614 0 R /XYZ 56.693 289.119 null]
2319 >> endobj
2320 623 0 obj <<
2321-/D [609 0 R /XYZ 56.693 142.58 null]
2322+/D [614 0 R /XYZ 56.693 292.188 null]
2323+>> endobj
2324+126 0 obj <<
2325+/D [614 0 R /XYZ 56.693 231.158 null]
2326 >> endobj
2327 624 0 obj <<
2328-/D [609 0 R /XYZ 56.693 145.649 null]
2329+/D [614 0 R /XYZ 56.693 199.192 null]
2330 >> endobj
2331 625 0 obj <<
2332-/D [609 0 R /XYZ 56.693 113.37 null]
2333+/D [614 0 R /XYZ 56.693 201.958 null]
2334 >> endobj
2335 626 0 obj <<
2336-/D [609 0 R /XYZ 56.693 116.438 null]
2337->> endobj
2338-608 0 obj <<
2339-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>
2340-/ProcSet [ /PDF /Text ]
2341+/D [614 0 R /XYZ 56.693 188.409 null]
2342+>> endobj
2343+627 0 obj <<
2344+/D [614 0 R /XYZ 56.693 174.859 null]
2345+>> endobj
2346+628 0 obj <<
2347+/D [614 0 R /XYZ 56.693 142.58 null]
2348+>> endobj
2349+629 0 obj <<
2350+/D [614 0 R /XYZ 56.693 145.649 null]
2351 >> endobj
2352 630 0 obj <<
2353+/D [614 0 R /XYZ 56.693 113.37 null]
2354+>> endobj
2355+631 0 obj <<
2356+/D [614 0 R /XYZ 56.693 116.438 null]
2357+>> endobj
2358+613 0 obj <<
2359+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
2360+/ProcSet [ /PDF /Text ]
2361+>> endobj
2362+635 0 obj <<
2363 /Length 2345
2364 /Filter /FlateDecode
2365 >>
2366@@ -2149,123 +2162,123 @@
2367 “v�£U{ét­Úû姽ÜÏ^µ?4n»®-¯¤{±—îƒBï,0,¡ê†¼PJ»žO{„ü�>PÑgp­öAý $ý×r:÷æ:UÿÄDÈÿñ±6à
2368 endstream
2369 endobj
2370-629 0 obj <<
2371-/Type /Page
2372-/Contents 630 0 R
2373-/Resources 628 0 R
2374-/MediaBox [0 0 595.276 841.89]
2375-/Parent 627 0 R
2376->> endobj
2377-631 0 obj <<
2378-/D [629 0 R /XYZ 55.693 817.952 null]
2379->> endobj
2380-130 0 obj <<
2381-/D [629 0 R /XYZ 56.693 785.197 null]
2382->> endobj
2383-632 0 obj <<
2384-/D [629 0 R /XYZ 56.693 754.078 null]
2385->> endobj
2386-633 0 obj <<
2387-/D [629 0 R /XYZ 56.693 756.843 null]
2388->> endobj
2389 634 0 obj <<
2390-/D [629 0 R /XYZ 56.693 743.294 null]
2391->> endobj
2392-635 0 obj <<
2393-/D [629 0 R /XYZ 56.693 729.745 null]
2394+/Type /Page
2395+/Contents 635 0 R
2396+/Resources 633 0 R
2397+/MediaBox [0 0 595.276 841.89]
2398+/Parent 632 0 R
2399 >> endobj
2400 636 0 obj <<
2401-/D [629 0 R /XYZ 56.693 692.264 null]
2402+/D [634 0 R /XYZ 55.693 817.952 null]
2403+>> endobj
2404+130 0 obj <<
2405+/D [634 0 R /XYZ 56.693 785.197 null]
2406 >> endobj
2407 637 0 obj <<
2408-/D [629 0 R /XYZ 56.693 695.333 null]
2409+/D [634 0 R /XYZ 56.693 754.078 null]
2410 >> endobj
2411 638 0 obj <<
2412-/D [629 0 R /XYZ 56.693 657.852 null]
2413+/D [634 0 R /XYZ 56.693 756.843 null]
2414 >> endobj
2415 639 0 obj <<
2416-/D [629 0 R /XYZ 56.693 660.921 null]
2417->> endobj
2418-134 0 obj <<
2419-/D [629 0 R /XYZ 56.693 574.769 null]
2420+/D [634 0 R /XYZ 56.693 743.294 null]
2421 >> endobj
2422 640 0 obj <<
2423-/D [629 0 R /XYZ 56.693 537.238 null]
2424+/D [634 0 R /XYZ 56.693 729.745 null]
2425 >> endobj
2426 641 0 obj <<
2427-/D [629 0 R /XYZ 56.693 540.099 null]
2428+/D [634 0 R /XYZ 56.693 692.264 null]
2429 >> endobj
2430 642 0 obj <<
2431-/D [629 0 R /XYZ 56.693 526.55 null]
2432+/D [634 0 R /XYZ 56.693 695.333 null]
2433 >> endobj
2434 643 0 obj <<
2435-/D [629 0 R /XYZ 56.693 513.001 null]
2436+/D [634 0 R /XYZ 56.693 657.852 null]
2437 >> endobj
2438 644 0 obj <<
2439-/D [629 0 R /XYZ 56.693 499.452 null]
2440+/D [634 0 R /XYZ 56.693 660.921 null]
2441+>> endobj
2442+134 0 obj <<
2443+/D [634 0 R /XYZ 56.693 574.769 null]
2444 >> endobj
2445 645 0 obj <<
2446-/D [629 0 R /XYZ 56.693 461.971 null]
2447+/D [634 0 R /XYZ 56.693 537.238 null]
2448 >> endobj
2449 646 0 obj <<
2450-/D [629 0 R /XYZ 56.693 465.04 null]
2451+/D [634 0 R /XYZ 56.693 540.099 null]
2452 >> endobj
2453 647 0 obj <<
2454-/D [629 0 R /XYZ 56.693 451.49 null]
2455+/D [634 0 R /XYZ 56.693 526.55 null]
2456 >> endobj
2457 648 0 obj <<
2458-/D [629 0 R /XYZ 56.693 437.941 null]
2459+/D [634 0 R /XYZ 56.693 513.001 null]
2460 >> endobj
2461 649 0 obj <<
2462-/D [629 0 R /XYZ 56.693 400.46 null]
2463+/D [634 0 R /XYZ 56.693 499.452 null]
2464 >> endobj
2465 650 0 obj <<
2466-/D [629 0 R /XYZ 56.693 403.529 null]
2467+/D [634 0 R /XYZ 56.693 461.971 null]
2468 >> endobj
2469 651 0 obj <<
2470-/D [629 0 R /XYZ 56.693 389.98 null]
2471+/D [634 0 R /XYZ 56.693 465.04 null]
2472 >> endobj
2473 652 0 obj <<
2474-/D [629 0 R /XYZ 56.693 376.431 null]
2475->> endobj
2476-138 0 obj <<
2477-/D [629 0 R /XYZ 56.693 288.572 null]
2478+/D [634 0 R /XYZ 56.693 451.49 null]
2479 >> endobj
2480 653 0 obj <<
2481-/D [629 0 R /XYZ 56.693 252.748 null]
2482+/D [634 0 R /XYZ 56.693 437.941 null]
2483 >> endobj
2484 654 0 obj <<
2485-/D [629 0 R /XYZ 56.693 255.609 null]
2486+/D [634 0 R /XYZ 56.693 400.46 null]
2487 >> endobj
2488 655 0 obj <<
2489-/D [629 0 R /XYZ 56.693 242.06 null]
2490+/D [634 0 R /XYZ 56.693 403.529 null]
2491 >> endobj
2492 656 0 obj <<
2493-/D [629 0 R /XYZ 56.693 228.511 null]
2494+/D [634 0 R /XYZ 56.693 389.98 null]
2495 >> endobj
2496 657 0 obj <<
2497-/D [629 0 R /XYZ 56.693 214.961 null]
2498+/D [634 0 R /XYZ 56.693 376.431 null]
2499+>> endobj
2500+138 0 obj <<
2501+/D [634 0 R /XYZ 56.693 288.572 null]
2502 >> endobj
2503 658 0 obj <<
2504-/D [629 0 R /XYZ 56.693 201.412 null]
2505+/D [634 0 R /XYZ 56.693 252.748 null]
2506 >> endobj
2507 659 0 obj <<
2508-/D [629 0 R /XYZ 56.693 163.932 null]
2509+/D [634 0 R /XYZ 56.693 255.609 null]
2510 >> endobj
2511 660 0 obj <<
2512-/D [629 0 R /XYZ 56.693 167 null]
2513+/D [634 0 R /XYZ 56.693 242.06 null]
2514 >> endobj
2515 661 0 obj <<
2516-/D [629 0 R /XYZ 56.693 129.52 null]
2517+/D [634 0 R /XYZ 56.693 228.511 null]
2518 >> endobj
2519 662 0 obj <<
2520-/D [629 0 R /XYZ 56.693 132.588 null]
2521->> endobj
2522-628 0 obj <<
2523-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
2524-/ProcSet [ /PDF /Text ]
2525+/D [634 0 R /XYZ 56.693 214.961 null]
2526+>> endobj
2527+663 0 obj <<
2528+/D [634 0 R /XYZ 56.693 201.412 null]
2529+>> endobj
2530+664 0 obj <<
2531+/D [634 0 R /XYZ 56.693 163.932 null]
2532 >> endobj
2533 665 0 obj <<
2534+/D [634 0 R /XYZ 56.693 167 null]
2535+>> endobj
2536+666 0 obj <<
2537+/D [634 0 R /XYZ 56.693 129.52 null]
2538+>> endobj
2539+667 0 obj <<
2540+/D [634 0 R /XYZ 56.693 132.588 null]
2541+>> endobj
2542+633 0 obj <<
2543+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2544+/ProcSet [ /PDF /Text ]
2545+>> endobj
2546+670 0 obj <<
2547 /Length 1966
2548 /Filter /FlateDecode
2549 >>
2550@@ -2281,81 +2294,81 @@
2551 ®€`ªdˆpûú…ÀE%Ü QXaÆ1aeÖÁÝA‰@-•Ym;§•Ú»9üBü/tsäçìæ�˜Xw`
2552€ÕtO@è·….öj8PýŽ†2”��ì—P‰0òâýýÂ
2553à¢n�(¬0M¾)d˜§ŒÑ]) $¶Eˆz*xëÍÓõnNñ*�]=ó*Ÿ¡uC°i*„("�!`8¡_¸¨T` $NoÜÀUÊê?EO¡FåvœŒl½^Úë’lJþAÝ�˃²8¬6Š+ÏƳðÔ*‚—FéÁôO$¥«™ûyžæEµ
2554¶�Y¡MÓGȪ:e(øç¾e6ÚÚŽ! KW–š¸B—2ÿ¬k”æ—ÙÊÕÔ™2U,CȽ8VÓ¼þV¸[î°£;m;F0*téŽV±Á<‡t²1Ù6™�žû�î1]¬³©>ü©A½hë•xVL]Jç¾”f¨õ&ÁFÿ3 ã�
2555 endstream
2556 endobj
2557-664 0 obj <<
2558-/Type /Page
2559-/Contents 665 0 R
2560-/Resources 663 0 R
2561-/MediaBox [0 0 595.276 841.89]
2562-/Parent 627 0 R
2563->> endobj
2564-666 0 obj <<
2565-/D [664 0 R /XYZ 55.693 817.952 null]
2566->> endobj
2567-142 0 obj <<
2568-/D [664 0 R /XYZ 56.693 785.197 null]
2569->> endobj
2570-667 0 obj <<
2571-/D [664 0 R /XYZ 56.693 754.092 null]
2572->> endobj
2573-668 0 obj <<
2574-/D [664 0 R /XYZ 56.693 756.858 null]
2575->> endobj
2576 669 0 obj <<
2577-/D [664 0 R /XYZ 56.693 743.309 null]
2578->> endobj
2579-670 0 obj <<
2580-/D [664 0 R /XYZ 56.693 729.76 null]
2581+/Type /Page
2582+/Contents 670 0 R
2583+/Resources 668 0 R
2584+/MediaBox [0 0 595.276 841.89]
2585+/Parent 632 0 R
2586 >> endobj
2587 671 0 obj <<
2588-/D [664 0 R /XYZ 56.693 692.298 null]
2589+/D [669 0 R /XYZ 55.693 817.952 null]
2590+>> endobj
2591+142 0 obj <<
2592+/D [669 0 R /XYZ 56.693 785.197 null]
2593 >> endobj
2594 672 0 obj <<
2595-/D [664 0 R /XYZ 56.693 695.367 null]
2596+/D [669 0 R /XYZ 56.693 754.092 null]
2597 >> endobj
2598 673 0 obj <<
2599-/D [664 0 R /XYZ 56.693 657.906 null]
2600+/D [669 0 R /XYZ 56.693 756.858 null]
2601 >> endobj
2602 674 0 obj <<
2603-/D [664 0 R /XYZ 56.693 660.974 null]
2604+/D [669 0 R /XYZ 56.693 743.309 null]
2605 >> endobj
2606 675 0 obj <<
2607-/D [664 0 R /XYZ 56.693 373.575 null]
2608+/D [669 0 R /XYZ 56.693 729.76 null]
2609 >> endobj
2610 676 0 obj <<
2611-/D [664 0 R /XYZ 56.693 376.333 null]
2612->> endobj
2613-146 0 obj <<
2614-/D [664 0 R /XYZ 56.693 256.713 null]
2615+/D [669 0 R /XYZ 56.693 692.298 null]
2616 >> endobj
2617 677 0 obj <<
2618-/D [664 0 R /XYZ 56.693 221 null]
2619+/D [669 0 R /XYZ 56.693 695.367 null]
2620 >> endobj
2621 678 0 obj <<
2622-/D [664 0 R /XYZ 56.693 223.765 null]
2623+/D [669 0 R /XYZ 56.693 657.906 null]
2624 >> endobj
2625 679 0 obj <<
2626-/D [664 0 R /XYZ 56.693 210.216 null]
2627+/D [669 0 R /XYZ 56.693 660.974 null]
2628 >> endobj
2629 680 0 obj <<
2630-/D [664 0 R /XYZ 56.693 196.667 null]
2631+/D [669 0 R /XYZ 56.693 373.575 null]
2632 >> endobj
2633 681 0 obj <<
2634-/D [664 0 R /XYZ 56.693 159.206 null]
2635+/D [669 0 R /XYZ 56.693 376.333 null]
2636+>> endobj
2637+146 0 obj <<
2638+/D [669 0 R /XYZ 56.693 256.713 null]
2639 >> endobj
2640 682 0 obj <<
2641-/D [664 0 R /XYZ 56.693 162.274 null]
2642+/D [669 0 R /XYZ 56.693 221 null]
2643 >> endobj
2644 683 0 obj <<
2645-/D [664 0 R /XYZ 56.693 124.813 null]
2646+/D [669 0 R /XYZ 56.693 223.765 null]
2647 >> endobj
2648 684 0 obj <<
2649-/D [664 0 R /XYZ 56.693 127.881 null]
2650->> endobj
2651-663 0 obj <<
2652-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
2653-/ProcSet [ /PDF /Text ]
2654+/D [669 0 R /XYZ 56.693 210.216 null]
2655+>> endobj
2656+685 0 obj <<
2657+/D [669 0 R /XYZ 56.693 196.667 null]
2658+>> endobj
2659+686 0 obj <<
2660+/D [669 0 R /XYZ 56.693 159.206 null]
2661+>> endobj
2662+687 0 obj <<
2663+/D [669 0 R /XYZ 56.693 162.274 null]
2664 >> endobj
2665 688 0 obj <<
2666+/D [669 0 R /XYZ 56.693 124.813 null]
2667+>> endobj
2668+689 0 obj <<
2669+/D [669 0 R /XYZ 56.693 127.881 null]
2670+>> endobj
2671+668 0 obj <<
2672+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2673+/ProcSet [ /PDF /Text ]
2674+>> endobj
2675+693 0 obj <<
2676 /Length 2306
2677 /Filter /FlateDecode
2678 >>
2679@@ -2375,128 +2388,128 @@
2680 ›�aOÊõã)לrB™Ã” €ÀSïÌûË„4BºL@XQyîH*’³š�!—YÿÞóZ`B’\Œ‘\
2681™ŽD8áz4DwÆŒ!¼<š=H·®Ê°Ö
2682#%¡”ýµ},áúP¡ôI9fÐ
2683Ò•!ƒ-Ä¢Ž?ÌøO²8&ôÒéÐCXQzýX*ÒyMI¢8Š\eˆa(rÓirV”䢨(È”ÈoFÆctK×
2684ª)Z~32TºîMf\[(©ôãŠ×Œûw<¸ÌxŒ
2685ýNuµ©ýîŸm۬딀ßDNdB[ êÛ�ÀQß&
2686@H+Šj}GR1\ëf¾x÷´nn¢ ÍuÔëŠk…Ø]¿W‰Ýp±)vÃͱ›3Bµ@‹ÝJÒ(vû±Kõtퟯ?Î?•íp‹Ï‚3{E9"üÐœ‘©ÍHÇ“j6ã�¦´sAÖ.ƒãÃÝr_*ý4ŒZ~fW´XøàMÕò
26876Ý/!•\†‹‹íÍívãÏaÅŸ¥0O£0O§³Bug¼P”ýÓ†Ö^4´
2688OÃO”×}ó ã[ön›¿¯tôÚÁ¬ÝªÔ§ƒi¾õ.ŠÑ³'õ½TßïÙíOZóJ
2689
2690 endstream
2691 endobj
2692-687 0 obj <<
2693+692 0 obj <<
2694 /Type /Page
2695-/Contents 688 0 R
2696-/Resources 686 0 R
2697+/Contents 693 0 R
2698+/Resources 691 0 R
2699 /MediaBox [0 0 595.276 841.89]
2700-/Parent 627 0 R
2701-/Annots [ 685 0 R ]
2702+/Parent 632 0 R
2703+/Annots [ 690 0 R ]
2704 >> endobj
2705-685 0 obj <<
2706+690 0 obj <<
2707 /Type /Annot
2708 /Subtype /Link
2709 /Border[0 0 0]/H/I/C[1 0 0]
2710 /Rect [115.99 582.156 139.801 591.773]
2711 /A << /S /GoTo /D (subsection.3.6.2) >>
2712 >> endobj
2713-689 0 obj <<
2714-/D [687 0 R /XYZ 55.693 817.952 null]
2715+694 0 obj <<
2716+/D [692 0 R /XYZ 55.693 817.952 null]
2717 >> endobj
2718 150 0 obj <<
2719-/D [687 0 R /XYZ 56.693 785.197 null]
2720->> endobj
2721-690 0 obj <<
2722-/D [687 0 R /XYZ 56.693 755.644 null]
2723->> endobj
2724-691 0 obj <<
2725-/D [687 0 R /XYZ 56.693 758.506 null]
2726->> endobj
2727-692 0 obj <<
2728-/D [687 0 R /XYZ 56.693 744.956 null]
2729->> endobj
2730-693 0 obj <<
2731-/D [687 0 R /XYZ 56.693 731.407 null]
2732->> endobj
2733-694 0 obj <<
2734-/D [687 0 R /XYZ 56.693 717.858 null]
2735+/D [692 0 R /XYZ 56.693 785.197 null]
2736 >> endobj
2737 695 0 obj <<
2738-/D [687 0 R /XYZ 56.693 682.574 null]
2739+/D [692 0 R /XYZ 56.693 755.644 null]
2740 >> endobj
2741 696 0 obj <<
2742-/D [687 0 R /XYZ 56.693 685.642 null]
2743+/D [692 0 R /XYZ 56.693 758.506 null]
2744 >> endobj
2745 697 0 obj <<
2746-/D [687 0 R /XYZ 56.693 650.358 null]
2747+/D [692 0 R /XYZ 56.693 744.956 null]
2748 >> endobj
2749 698 0 obj <<
2750-/D [687 0 R /XYZ 56.693 653.426 null]
2751+/D [692 0 R /XYZ 56.693 731.407 null]
2752 >> endobj
2753 699 0 obj <<
2754-/D [687 0 R /XYZ 56.693 639.877 null]
2755->> endobj
2756-154 0 obj <<
2757-/D [687 0 R /XYZ 56.693 542.387 null]
2758+/D [692 0 R /XYZ 56.693 717.858 null]
2759 >> endobj
2760 700 0 obj <<
2761-/D [687 0 R /XYZ 56.693 508.321 null]
2762+/D [692 0 R /XYZ 56.693 682.574 null]
2763 >> endobj
2764 701 0 obj <<
2765-/D [687 0 R /XYZ 56.693 511.086 null]
2766+/D [692 0 R /XYZ 56.693 685.642 null]
2767 >> endobj
2768 702 0 obj <<
2769-/D [687 0 R /XYZ 56.693 497.537 null]
2770+/D [692 0 R /XYZ 56.693 650.358 null]
2771 >> endobj
2772 703 0 obj <<
2773-/D [687 0 R /XYZ 56.693 483.988 null]
2774+/D [692 0 R /XYZ 56.693 653.426 null]
2775 >> endobj
2776 704 0 obj <<
2777-/D [687 0 R /XYZ 56.693 470.439 null]
2778+/D [692 0 R /XYZ 56.693 639.877 null]
2779+>> endobj
2780+154 0 obj <<
2781+/D [692 0 R /XYZ 56.693 542.387 null]
2782 >> endobj
2783 705 0 obj <<
2784-/D [687 0 R /XYZ 56.693 435.155 null]
2785+/D [692 0 R /XYZ 56.693 508.321 null]
2786 >> endobj
2787 706 0 obj <<
2788-/D [687 0 R /XYZ 56.693 438.223 null]
2789+/D [692 0 R /XYZ 56.693 511.086 null]
2790 >> endobj
2791 707 0 obj <<
2792-/D [687 0 R /XYZ 56.693 402.939 null]
2793+/D [692 0 R /XYZ 56.693 497.537 null]
2794 >> endobj
2795 708 0 obj <<
2796-/D [687 0 R /XYZ 56.693 406.007 null]
2797+/D [692 0 R /XYZ 56.693 483.988 null]
2798 >> endobj
2799 709 0 obj <<
2800-/D [687 0 R /XYZ 56.693 392.458 null]
2801->> endobj
2802-158 0 obj <<
2803-/D [687 0 R /XYZ 56.693 294.968 null]
2804+/D [692 0 R /XYZ 56.693 470.439 null]
2805 >> endobj
2806 710 0 obj <<
2807-/D [687 0 R /XYZ 56.693 260.902 null]
2808+/D [692 0 R /XYZ 56.693 435.155 null]
2809 >> endobj
2810 711 0 obj <<
2811-/D [687 0 R /XYZ 56.693 263.667 null]
2812+/D [692 0 R /XYZ 56.693 438.223 null]
2813 >> endobj
2814 712 0 obj <<
2815-/D [687 0 R /XYZ 56.693 250.118 null]
2816+/D [692 0 R /XYZ 56.693 402.939 null]
2817 >> endobj
2818 713 0 obj <<
2819-/D [687 0 R /XYZ 56.693 236.569 null]
2820+/D [692 0 R /XYZ 56.693 406.007 null]
2821 >> endobj
2822 714 0 obj <<
2823-/D [687 0 R /XYZ 56.693 223.02 null]
2824+/D [692 0 R /XYZ 56.693 392.458 null]
2825+>> endobj
2826+158 0 obj <<
2827+/D [692 0 R /XYZ 56.693 294.968 null]
2828 >> endobj
2829 715 0 obj <<
2830-/D [687 0 R /XYZ 56.693 187.736 null]
2831+/D [692 0 R /XYZ 56.693 260.902 null]
2832 >> endobj
2833 716 0 obj <<
2834-/D [687 0 R /XYZ 56.693 190.804 null]
2835+/D [692 0 R /XYZ 56.693 263.667 null]
2836 >> endobj
2837 717 0 obj <<
2838-/D [687 0 R /XYZ 56.693 155.52 null]
2839+/D [692 0 R /XYZ 56.693 250.118 null]
2840 >> endobj
2841 718 0 obj <<
2842-/D [687 0 R /XYZ 56.693 158.588 null]
2843+/D [692 0 R /XYZ 56.693 236.569 null]
2844 >> endobj
2845 719 0 obj <<
2846-/D [687 0 R /XYZ 56.693 145.039 null]
2847->> endobj
2848-686 0 obj <<
2849-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
2850-/ProcSet [ /PDF /Text ]
2851+/D [692 0 R /XYZ 56.693 223.02 null]
2852+>> endobj
2853+720 0 obj <<
2854+/D [692 0 R /XYZ 56.693 187.736 null]
2855+>> endobj
2856+721 0 obj <<
2857+/D [692 0 R /XYZ 56.693 190.804 null]
2858+>> endobj
2859+722 0 obj <<
2860+/D [692 0 R /XYZ 56.693 155.52 null]
2861 >> endobj
2862 723 0 obj <<
2863+/D [692 0 R /XYZ 56.693 158.588 null]
2864+>> endobj
2865+724 0 obj <<
2866+/D [692 0 R /XYZ 56.693 145.039 null]
2867+>> endobj
2868+691 0 obj <<
2869+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
2870+/ProcSet [ /PDF /Text ]
2871+>> endobj
2872+728 0 obj <<
2873 /Length 2753
2874 /Filter /FlateDecode
2875 >>
2876@@ -2514,101 +2527,101 @@
2877 ¹ÕFFKD€&ÔÄ
2878J%˜Ãø"¸dQîo–¯ÝN\Ø”‰æ±ûl’Gרª‚Ìo…ûºœ4òýv»Nm
2879þ37ƒ²ú‡(óÖ
2880]'µÊÊís’i,÷>a°1 Û•ü;ÍÍÛcr¾lsÚ¦Û‘w1ªü˜þ)uq»ø¦u“†PšÊÆcÓ»÷ïÎG½3=K¯’Vjä�¿È{�¡;1 Õäêügû
2881öó·ïÞ¾û~ƒ&Þ¨qˆ:'�Aþãט=
2882 endstream
2883 endobj
2884-722 0 obj <<
2885+727 0 obj <<
2886 /Type /Page
2887-/Contents 723 0 R
2888-/Resources 721 0 R
2889+/Contents 728 0 R
2890+/Resources 726 0 R
2891 /MediaBox [0 0 595.276 841.89]
2892-/Parent 627 0 R
2893-/Annots [ 720 0 R ]
2894+/Parent 632 0 R
2895+/Annots [ 725 0 R ]
2896 >> endobj
2897-720 0 obj <<
2898+725 0 obj <<
2899 /Type /Annot
2900 /Subtype /Link
2901 /Border[0 0 0]/H/I/C[1 0 0]
2902 /Rect [134.525 297.963 158.336 310.248]
2903 /A << /S /GoTo /D (subsection.3.5.1) >>
2904 >> endobj
2905-724 0 obj <<
2906-/D [722 0 R /XYZ 55.693 817.952 null]
2907+729 0 obj <<
2908+/D [727 0 R /XYZ 55.693 817.952 null]
2909 >> endobj
2910 162 0 obj <<
2911-/D [722 0 R /XYZ 56.693 785.197 null]
2912->> endobj
2913-725 0 obj <<
2914-/D [722 0 R /XYZ 56.693 756.472 null]
2915->> endobj
2916-726 0 obj <<
2917-/D [722 0 R /XYZ 56.693 759.333 null]
2918->> endobj
2919-727 0 obj <<
2920-/D [722 0 R /XYZ 56.693 745.784 null]
2921->> endobj
2922-728 0 obj <<
2923-/D [722 0 R /XYZ 56.693 732.234 null]
2924->> endobj
2925-729 0 obj <<
2926-/D [722 0 R /XYZ 56.693 718.685 null]
2927+/D [727 0 R /XYZ 56.693 785.197 null]
2928 >> endobj
2929 730 0 obj <<
2930-/D [722 0 R /XYZ 56.693 705.136 null]
2931+/D [727 0 R /XYZ 56.693 756.472 null]
2932 >> endobj
2933 731 0 obj <<
2934-/D [722 0 R /XYZ 56.693 670.945 null]
2935+/D [727 0 R /XYZ 56.693 759.333 null]
2936 >> endobj
2937 732 0 obj <<
2938-/D [722 0 R /XYZ 56.693 674.013 null]
2939+/D [727 0 R /XYZ 56.693 745.784 null]
2940 >> endobj
2941 733 0 obj <<
2942-/D [722 0 R /XYZ 56.693 639.822 null]
2943+/D [727 0 R /XYZ 56.693 732.234 null]
2944 >> endobj
2945 734 0 obj <<
2946-/D [722 0 R /XYZ 56.693 642.891 null]
2947+/D [727 0 R /XYZ 56.693 718.685 null]
2948 >> endobj
2949 735 0 obj <<
2950-/D [722 0 R /XYZ 56.693 629.341 null]
2951+/D [727 0 R /XYZ 56.693 705.136 null]
2952 >> endobj
2953 736 0 obj <<
2954-/D [722 0 R /XYZ 56.693 615.792 null]
2955+/D [727 0 R /XYZ 56.693 670.945 null]
2956 >> endobj
2957 737 0 obj <<
2958-/D [722 0 R /XYZ 56.693 602.243 null]
2959+/D [727 0 R /XYZ 56.693 674.013 null]
2960 >> endobj
2961 738 0 obj <<
2962-/D [722 0 R /XYZ 56.693 588.694 null]
2963->> endobj
2964-166 0 obj <<
2965-/D [722 0 R /XYZ 56.693 232.514 null]
2966+/D [727 0 R /XYZ 56.693 639.822 null]
2967 >> endobj
2968 739 0 obj <<
2969-/D [722 0 R /XYZ 56.693 199.275 null]
2970+/D [727 0 R /XYZ 56.693 642.891 null]
2971 >> endobj
2972 740 0 obj <<
2973-/D [722 0 R /XYZ 56.693 202.041 null]
2974+/D [727 0 R /XYZ 56.693 629.341 null]
2975 >> endobj
2976 741 0 obj <<
2977-/D [722 0 R /XYZ 56.693 188.492 null]
2978+/D [727 0 R /XYZ 56.693 615.792 null]
2979 >> endobj
2980 742 0 obj <<
2981-/D [722 0 R /XYZ 56.693 174.943 null]
2982+/D [727 0 R /XYZ 56.693 602.243 null]
2983 >> endobj
2984 743 0 obj <<
2985-/D [722 0 R /XYZ 56.693 140.751 null]
2986+/D [727 0 R /XYZ 56.693 588.694 null]
2987+>> endobj
2988+166 0 obj <<
2989+/D [727 0 R /XYZ 56.693 232.514 null]
2990 >> endobj
2991 744 0 obj <<
2992-/D [722 0 R /XYZ 56.693 143.82 null]
2993+/D [727 0 R /XYZ 56.693 199.275 null]
2994 >> endobj
2995 745 0 obj <<
2996-/D [722 0 R /XYZ 56.693 109.629 null]
2997+/D [727 0 R /XYZ 56.693 202.041 null]
2998 >> endobj
2999 746 0 obj <<
3000-/D [722 0 R /XYZ 56.693 112.697 null]
3001->> endobj
3002-721 0 obj <<
3003-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F36 453 0 R >>
3004+/D [727 0 R /XYZ 56.693 188.492 null]
3005+>> endobj
3006+747 0 obj <<
3007+/D [727 0 R /XYZ 56.693 174.943 null]
3008+>> endobj
3009+748 0 obj <<
3010+/D [727 0 R /XYZ 56.693 140.751 null]
3011+>> endobj
3012+749 0 obj <<
3013+/D [727 0 R /XYZ 56.693 143.82 null]
3014+>> endobj
3015+750 0 obj <<
3016+/D [727 0 R /XYZ 56.693 109.629 null]
3017+>> endobj
3018+751 0 obj <<
3019+/D [727 0 R /XYZ 56.693 112.697 null]
3020+>> endobj
3021+726 0 obj <<
3022+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F36 458 0 R >>
3023 /ProcSet [ /PDF /Text ]
3024 >> endobj
3025-753 0 obj <<
3026+758 0 obj <<
3027 /Length 2291
3028 /Filter /FlateDecode
3029 >>
3030@@ -2624,122 +2637,122 @@
3031 gìÃs‹ Ç“‹!-ø]g£¥s6ð´FWû|Æó>ðÒú
3032h×üB9Ä_g
3033o¹ÞlWÞŸX¨’RˉÆÐJ)hM©ÆJ
3034¥ÜyÄ$„¸i�ÛH©68'
3035J]Íç/¯®ç‹§Wϼþn
3036µR‘5
3037S«|BDýâu¿{
3038 endstream
3039 endobj
3040+757 0 obj <<
3041+/Type /Page
3042+/Contents 758 0 R
3043+/Resources 756 0 R
3044+/MediaBox [0 0 595.276 841.89]
3045+/Parent 632 0 R
3046+/Annots [ 752 0 R 753 0 R 754 0 R 755 0 R ]
3047+>> endobj
3048 752 0 obj <<
3049-/Type /Page
3050-/Contents 753 0 R
3051-/Resources 751 0 R
3052-/MediaBox [0 0 595.276 841.89]
3053-/Parent 627 0 R
3054-/Annots [ 747 0 R 748 0 R 749 0 R 750 0 R ]
3055->> endobj
3056-747 0 obj <<
3057 /Type /Annot
3058 /Subtype /Link
3059 /Border[0 0 0]/H/I/C[1 0 0]
3060 /Rect [99.507 560.05 128.772 570.164]
3061 /A << /S /GoTo /D (subsection.3.5.13) >>
3062 >> endobj
3063-748 0 obj <<
3064+753 0 obj <<
3065 /Type /Annot
3066 /Subtype /Link
3067 /Border[0 0 0]/H/I/C[1 0 0]
3068 /Rect [268.116 494.424 291.927 507.44]
3069 /A << /S /GoTo /D (subsection.3.5.1) >>
3070 >> endobj
3071-749 0 obj <<
3072+754 0 obj <<
3073 /Type /Annot
3074 /Subtype /Link
3075 /Border[0 0 0]/H/I/C[1 0 0]
3076 /Rect [161.561 212.302 190.826 225.318]
3077 /A << /S /GoTo /D (subsection.3.5.15) >>
3078 >> endobj
3079-750 0 obj <<
3080+755 0 obj <<
3081 /Type /Annot
3082 /Subtype /Link
3083 /Border[0 0 0]/H/I/C[1 0 0]
3084 /Rect [268.116 136.029 291.927 149.045]
3085 /A << /S /GoTo /D (subsection.3.5.1) >>
3086 >> endobj
3087-754 0 obj <<
3088-/D [752 0 R /XYZ 55.693 817.952 null]
3089+759 0 obj <<
3090+/D [757 0 R /XYZ 55.693 817.952 null]
3091 >> endobj
3092 170 0 obj <<
3093-/D [752 0 R /XYZ 56.693 785.197 null]
3094->> endobj
3095-755 0 obj <<
3096-/D [752 0 R /XYZ 56.693 753.752 null]
3097->> endobj
3098-756 0 obj <<
3099-/D [752 0 R /XYZ 56.693 756.517 null]
3100->> endobj
3101-757 0 obj <<
3102-/D [752 0 R /XYZ 56.693 742.968 null]
3103->> endobj
3104-758 0 obj <<
3105-/D [752 0 R /XYZ 56.693 729.419 null]
3106->> endobj
3107-759 0 obj <<
3108-/D [752 0 R /XYZ 56.693 715.87 null]
3109+/D [757 0 R /XYZ 56.693 785.197 null]
3110 >> endobj
3111 760 0 obj <<
3112-/D [752 0 R /XYZ 56.693 677.958 null]
3113+/D [757 0 R /XYZ 56.693 753.752 null]
3114 >> endobj
3115 761 0 obj <<
3116-/D [752 0 R /XYZ 56.693 681.027 null]
3117+/D [757 0 R /XYZ 56.693 756.517 null]
3118 >> endobj
3119 762 0 obj <<
3120-/D [752 0 R /XYZ 56.693 667.478 null]
3121+/D [757 0 R /XYZ 56.693 742.968 null]
3122 >> endobj
3123 763 0 obj <<
3124-/D [752 0 R /XYZ 56.693 629.566 null]
3125+/D [757 0 R /XYZ 56.693 729.419 null]
3126 >> endobj
3127 764 0 obj <<
3128-/D [752 0 R /XYZ 56.693 632.635 null]
3129+/D [757 0 R /XYZ 56.693 715.87 null]
3130 >> endobj
3131 765 0 obj <<
3132-/D [752 0 R /XYZ 56.693 619.085 null]
3133->> endobj
3134-174 0 obj <<
3135-/D [752 0 R /XYZ 56.693 433.118 null]
3136+/D [757 0 R /XYZ 56.693 677.958 null]
3137 >> endobj
3138 766 0 obj <<
3139-/D [752 0 R /XYZ 56.693 395.356 null]
3140+/D [757 0 R /XYZ 56.693 681.027 null]
3141 >> endobj
3142 767 0 obj <<
3143-/D [752 0 R /XYZ 56.693 398.122 null]
3144+/D [757 0 R /XYZ 56.693 667.478 null]
3145 >> endobj
3146 768 0 obj <<
3147-/D [752 0 R /XYZ 56.693 384.573 null]
3148+/D [757 0 R /XYZ 56.693 629.566 null]
3149 >> endobj
3150 769 0 obj <<
3151-/D [752 0 R /XYZ 56.693 371.024 null]
3152+/D [757 0 R /XYZ 56.693 632.635 null]
3153 >> endobj
3154 770 0 obj <<
3155-/D [752 0 R /XYZ 56.693 357.475 null]
3156+/D [757 0 R /XYZ 56.693 619.085 null]
3157+>> endobj
3158+174 0 obj <<
3159+/D [757 0 R /XYZ 56.693 433.118 null]
3160 >> endobj
3161 771 0 obj <<
3162-/D [752 0 R /XYZ 56.693 319.563 null]
3163+/D [757 0 R /XYZ 56.693 395.356 null]
3164 >> endobj
3165 772 0 obj <<
3166-/D [752 0 R /XYZ 56.693 322.632 null]
3167+/D [757 0 R /XYZ 56.693 398.122 null]
3168 >> endobj
3169 773 0 obj <<
3170-/D [752 0 R /XYZ 56.693 309.082 null]
3171+/D [757 0 R /XYZ 56.693 384.573 null]
3172 >> endobj
3173 774 0 obj <<
3174-/D [752 0 R /XYZ 56.693 271.171 null]
3175+/D [757 0 R /XYZ 56.693 371.024 null]
3176 >> endobj
3177 775 0 obj <<
3178-/D [752 0 R /XYZ 56.693 274.239 null]
3179+/D [757 0 R /XYZ 56.693 357.475 null]
3180 >> endobj
3181 776 0 obj <<
3182-/D [752 0 R /XYZ 56.693 260.69 null]
3183->> endobj
3184-751 0 obj <<
3185-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R /F50 468 0 R /F36 453 0 R >>
3186-/ProcSet [ /PDF /Text ]
3187+/D [757 0 R /XYZ 56.693 319.563 null]
3188+>> endobj
3189+777 0 obj <<
3190+/D [757 0 R /XYZ 56.693 322.632 null]
3191+>> endobj
3192+778 0 obj <<
3193+/D [757 0 R /XYZ 56.693 309.082 null]
3194 >> endobj
3195 779 0 obj <<
3196+/D [757 0 R /XYZ 56.693 271.171 null]
3197+>> endobj
3198+780 0 obj <<
3199+/D [757 0 R /XYZ 56.693 274.239 null]
3200+>> endobj
3201+781 0 obj <<
3202+/D [757 0 R /XYZ 56.693 260.69 null]
3203+>> endobj
3204+756 0 obj <<
3205+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R /F50 473 0 R /F36 458 0 R >>
3206+/ProcSet [ /PDF /Text ]
3207+>> endobj
3208+784 0 obj <<
3209 /Length 2141
3210 /Filter /FlateDecode
3211 >>
3212@@ -2757,129 +2770,129 @@
3213 öáNJ¨æK×ÌÕ¤ôÉØûTša¾dšã0Ow@H*E”2ŽŠ@¦”a0¥;£¿ïeÒV?�˜cxµÆR¾öµ|o)d’B¦b¾ýñÖ`Lói
3214!¢hV/“Šdoå+„@ý
3215Â?@®4ŠÜ4Bš\D5¹(*™ŒË5.A³1ö$(ƒ²ï¯ø¤û°˜M;[oÙÖÉ43?©#2åóí—u¡mCH(��–"Šzñr©H槃þG"¨u–Ža6
3216�$CäÂg"TŽ¡ò2¢?--
3217R”�•�q[
3218€òÒÒXh1Ž#HŠyH(
3219�þ…÷íc¨=ŸIÃðD|
3220ôÂ/
3221âQ7ÿë
3222œ%.¿â‘zªå͆
3223�£‡/×ååM<b\Ö?q›–oo®®àlI:¸Úø\þ¾
3224 endstream
3225 endobj
3226-778 0 obj <<
3227-/Type /Page
3228-/Contents 779 0 R
3229-/Resources 777 0 R
3230-/MediaBox [0 0 595.276 841.89]
3231-/Parent 813 0 R
3232->> endobj
3233-780 0 obj <<
3234-/D [778 0 R /XYZ 55.693 817.952 null]
3235->> endobj
3236-178 0 obj <<
3237-/D [778 0 R /XYZ 56.693 785.197 null]
3238->> endobj
3239-781 0 obj <<
3240-/D [778 0 R /XYZ 56.693 756.482 null]
3241->> endobj
3242-782 0 obj <<
3243-/D [778 0 R /XYZ 56.693 759.247 null]
3244->> endobj
3245 783 0 obj <<
3246-/D [778 0 R /XYZ 56.693 745.698 null]
3247->> endobj
3248-784 0 obj <<
3249-/D [778 0 R /XYZ 56.693 732.149 null]
3250+/Type /Page
3251+/Contents 784 0 R
3252+/Resources 782 0 R
3253+/MediaBox [0 0 595.276 841.89]
3254+/Parent 818 0 R
3255 >> endobj
3256 785 0 obj <<
3257-/D [778 0 R /XYZ 56.693 697.844 null]
3258+/D [783 0 R /XYZ 55.693 817.952 null]
3259+>> endobj
3260+178 0 obj <<
3261+/D [783 0 R /XYZ 56.693 785.197 null]
3262 >> endobj
3263 786 0 obj <<
3264-/D [778 0 R /XYZ 56.693 700.913 null]
3265+/D [783 0 R /XYZ 56.693 756.482 null]
3266 >> endobj
3267 787 0 obj <<
3268-/D [778 0 R /XYZ 56.693 666.609 null]
3269+/D [783 0 R /XYZ 56.693 759.247 null]
3270 >> endobj
3271 788 0 obj <<
3272-/D [778 0 R /XYZ 56.693 669.677 null]
3273->> endobj
3274-182 0 obj <<
3275-/D [778 0 R /XYZ 56.693 587.485 null]
3276+/D [783 0 R /XYZ 56.693 745.698 null]
3277 >> endobj
3278 789 0 obj <<
3279-/D [778 0 R /XYZ 56.693 554.16 null]
3280+/D [783 0 R /XYZ 56.693 732.149 null]
3281 >> endobj
3282 790 0 obj <<
3283-/D [778 0 R /XYZ 56.693 556.925 null]
3284+/D [783 0 R /XYZ 56.693 697.844 null]
3285 >> endobj
3286 791 0 obj <<
3287-/D [778 0 R /XYZ 56.693 543.376 null]
3288+/D [783 0 R /XYZ 56.693 700.913 null]
3289 >> endobj
3290 792 0 obj <<
3291-/D [778 0 R /XYZ 56.693 529.827 null]
3292+/D [783 0 R /XYZ 56.693 666.609 null]
3293 >> endobj
3294 793 0 obj <<
3295-/D [778 0 R /XYZ 56.693 516.278 null]
3296+/D [783 0 R /XYZ 56.693 669.677 null]
3297+>> endobj
3298+182 0 obj <<
3299+/D [783 0 R /XYZ 56.693 587.485 null]
3300 >> endobj
3301 794 0 obj <<
3302-/D [778 0 R /XYZ 56.693 481.974 null]
3303+/D [783 0 R /XYZ 56.693 554.16 null]
3304 >> endobj
3305 795 0 obj <<
3306-/D [778 0 R /XYZ 56.693 485.042 null]
3307+/D [783 0 R /XYZ 56.693 556.925 null]
3308 >> endobj
3309 796 0 obj <<
3310-/D [778 0 R /XYZ 56.693 450.738 null]
3311+/D [783 0 R /XYZ 56.693 543.376 null]
3312 >> endobj
3313 797 0 obj <<
3314-/D [778 0 R /XYZ 56.693 453.806 null]
3315->> endobj
3316-186 0 obj <<
3317-/D [778 0 R /XYZ 56.693 389.86 null]
3318+/D [783 0 R /XYZ 56.693 529.827 null]
3319 >> endobj
3320 798 0 obj <<
3321-/D [778 0 R /XYZ 56.693 356.44 null]
3322+/D [783 0 R /XYZ 56.693 516.278 null]
3323 >> endobj
3324 799 0 obj <<
3325-/D [778 0 R /XYZ 56.693 359.301 null]
3326+/D [783 0 R /XYZ 56.693 481.974 null]
3327 >> endobj
3328 800 0 obj <<
3329-/D [778 0 R /XYZ 56.693 345.752 null]
3330+/D [783 0 R /XYZ 56.693 485.042 null]
3331 >> endobj
3332 801 0 obj <<
3333-/D [778 0 R /XYZ 56.693 332.202 null]
3334+/D [783 0 R /XYZ 56.693 450.738 null]
3335 >> endobj
3336 802 0 obj <<
3337-/D [778 0 R /XYZ 56.693 318.653 null]
3338+/D [783 0 R /XYZ 56.693 453.806 null]
3339+>> endobj
3340+186 0 obj <<
3341+/D [783 0 R /XYZ 56.693 389.86 null]
3342 >> endobj
3343 803 0 obj <<
3344-/D [778 0 R /XYZ 56.693 284.349 null]
3345+/D [783 0 R /XYZ 56.693 356.44 null]
3346 >> endobj
3347 804 0 obj <<
3348-/D [778 0 R /XYZ 56.693 287.417 null]
3349+/D [783 0 R /XYZ 56.693 359.301 null]
3350 >> endobj
3351 805 0 obj <<
3352-/D [778 0 R /XYZ 56.693 253.113 null]
3353+/D [783 0 R /XYZ 56.693 345.752 null]
3354 >> endobj
3355 806 0 obj <<
3356-/D [778 0 R /XYZ 56.693 256.182 null]
3357->> endobj
3358-190 0 obj <<
3359-/D [778 0 R /XYZ 56.693 192.235 null]
3360+/D [783 0 R /XYZ 56.693 332.202 null]
3361 >> endobj
3362 807 0 obj <<
3363-/D [778 0 R /XYZ 56.693 158.911 null]
3364+/D [783 0 R /XYZ 56.693 318.653 null]
3365 >> endobj
3366 808 0 obj <<
3367-/D [778 0 R /XYZ 56.693 161.676 null]
3368+/D [783 0 R /XYZ 56.693 284.349 null]
3369 >> endobj
3370 809 0 obj <<
3371-/D [778 0 R /XYZ 56.693 127.372 null]
3372+/D [783 0 R /XYZ 56.693 287.417 null]
3373 >> endobj
3374 810 0 obj <<
3375-/D [778 0 R /XYZ 56.693 130.44 null]
3376+/D [783 0 R /XYZ 56.693 253.113 null]
3377 >> endobj
3378 811 0 obj <<
3379-/D [778 0 R /XYZ 56.693 96.136 null]
3380+/D [783 0 R /XYZ 56.693 256.182 null]
3381+>> endobj
3382+190 0 obj <<
3383+/D [783 0 R /XYZ 56.693 192.235 null]
3384 >> endobj
3385 812 0 obj <<
3386-/D [778 0 R /XYZ 56.693 99.205 null]
3387->> endobj
3388-777 0 obj <<
3389-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
3390-/ProcSet [ /PDF /Text ]
3391+/D [783 0 R /XYZ 56.693 158.911 null]
3392+>> endobj
3393+813 0 obj <<
3394+/D [783 0 R /XYZ 56.693 161.676 null]
3395+>> endobj
3396+814 0 obj <<
3397+/D [783 0 R /XYZ 56.693 127.372 null]
3398+>> endobj
3399+815 0 obj <<
3400+/D [783 0 R /XYZ 56.693 130.44 null]
3401 >> endobj
3402 816 0 obj <<
3403+/D [783 0 R /XYZ 56.693 96.136 null]
3404+>> endobj
3405+817 0 obj <<
3406+/D [783 0 R /XYZ 56.693 99.205 null]
3407+>> endobj
3408+782 0 obj <<
3409+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3410+/ProcSet [ /PDF /Text ]
3411+>> endobj
3412+821 0 obj <<
3413 /Length 1811
3414 /Filter /FlateDecode
3415 >>
3416@@ -2892,54 +2905,54 @@
3417 j�eØ?8ÀP¦�8
3418 !ý#Ça ‡Ç+šm:1/árwwˆSJ
3419§)1u“@5dÌ‹ÌT¬æ‰ Ã,xlRfÞc½bPÔ>«þ ƒ’Hå¸!ãû×UÕO•Ôe‘š·]Å…$9ò5çȇ:
3420B|(©ÏbnHàr‰ùPpû\Ë¢¡
3421æ3á“QYÍ£</‘ÕGH8˜Õc¬0Y=*:”p,BÁF!àé2v# 4
3422C÷ÄW9Ú|(wôKɃü]ÁóB½yö^êÍ'‚‘!8YÆž0àÄû¯F=ꘉQ8ò`ÛˆsXÂá3Šz£N
3423Åñ×@OÃ�õn�€wo�€µ�FÞö«Mã™›¾­ÊWdÆVd‡s•ü•¯�bºØmÔÛuþ+6¼N€XDIY+þ©[dúÐ+\cºÇC-Ã(ËrÕ+¦Üþ.ñ‹Kcg_ÉRÔ8×
3424d5
3425ä�¤¬TÖóíð¨x‹Tû”¹vRõ…•(
3426û”·
3427m›–*åíïæªÓ‹ÌUgDck¹³®¼Z¼Ä‹vèÁGë?TKI,
3428 endstream
3429 endobj
3430-815 0 obj <<
3431+820 0 obj <<
3432 /Type /Page
3433-/Contents 816 0 R
3434-/Resources 814 0 R
3435+/Contents 821 0 R
3436+/Resources 819 0 R
3437 /MediaBox [0 0 595.276 841.89]
3438-/Parent 813 0 R
3439+/Parent 818 0 R
3440 >> endobj
3441-817 0 obj <<
3442-/D [815 0 R /XYZ 55.693 817.952 null]
3443+822 0 obj <<
3444+/D [820 0 R /XYZ 55.693 817.952 null]
3445 >> endobj
3446 194 0 obj <<
3447-/D [815 0 R /XYZ 56.693 785.197 null]
3448+/D [820 0 R /XYZ 56.693 785.197 null]
3449 >> endobj
3450 198 0 obj <<
3451-/D [815 0 R /XYZ 56.693 649.483 null]
3452+/D [820 0 R /XYZ 56.693 649.483 null]
3453 >> endobj
3454 202 0 obj <<
3455-/D [815 0 R /XYZ 56.693 459.056 null]
3456+/D [820 0 R /XYZ 56.693 459.056 null]
3457 >> endobj
3458 206 0 obj <<
3459-/D [815 0 R /XYZ 56.693 290.034 null]
3460->> endobj
3461-818 0 obj <<
3462-/D [815 0 R /XYZ 56.693 255.433 null]
3463->> endobj
3464-819 0 obj <<
3465-/D [815 0 R /XYZ 56.693 258.199 null]
3466->> endobj
3467-820 0 obj <<
3468-/D [815 0 R /XYZ 56.693 244.649 null]
3469+/D [820 0 R /XYZ 56.693 290.034 null]
3470+>> endobj
3471+823 0 obj <<
3472+/D [820 0 R /XYZ 56.693 255.433 null]
3473+>> endobj
3474+824 0 obj <<
3475+/D [820 0 R /XYZ 56.693 258.199 null]
3476+>> endobj
3477+825 0 obj <<
3478+/D [820 0 R /XYZ 56.693 244.649 null]
3479 >> endobj
3480 210 0 obj <<
3481-/D [815 0 R /XYZ 56.693 174.665 null]
3482->> endobj
3483-821 0 obj <<
3484-/D [815 0 R /XYZ 56.693 138.779 null]
3485->> endobj
3486-822 0 obj <<
3487-/D [815 0 R /XYZ 56.693 141.544 null]
3488->> endobj
3489-823 0 obj <<
3490-/D [815 0 R /XYZ 56.693 127.995 null]
3491->> endobj
3492-814 0 obj <<
3493-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R /F51 472 0 R >>
3494-/ProcSet [ /PDF /Text ]
3495+/D [820 0 R /XYZ 56.693 174.665 null]
3496 >> endobj
3497 826 0 obj <<
3498+/D [820 0 R /XYZ 56.693 138.779 null]
3499+>> endobj
3500+827 0 obj <<
3501+/D [820 0 R /XYZ 56.693 141.544 null]
3502+>> endobj
3503+828 0 obj <<
3504+/D [820 0 R /XYZ 56.693 127.995 null]
3505+>> endobj
3506+819 0 obj <<
3507+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R /F51 477 0 R >>
3508+/ProcSet [ /PDF /Text ]
3509+>> endobj
3510+831 0 obj <<
3511 /Length 2133
3512 /Filter /FlateDecode
3513 >>
3514@@ -2957,93 +2970,93 @@
3515 ©±¹à|û�¹QMLGª*(ض!�'KV�9]Üî²caX™˜¼Ò ð¨¼rB¿ÛEhQ­ùHS
3516'OŠ1"ͼ’*R¿ÝVûwh®bU¸VþÒw߃Ãí¶ò÷³P.\QñÔ+òdÊßY+r˜¦‘É|ª
3517a¥“/5_
3518Ucç¤7Iê@¿çÉç>›|N_þ†ØmSw‰
3519òË¡ÌFpç/Ï‚™‰~úÕˆsa±Tˆ`�&�°úØ쇗,À©É�àòéþ¸g°‹zû%Ì\æÅä�z=;F
3520ïÙq¦°Æ„³!�|û
3521�qœSýöësH³mÆ’*Á
3522D&Ðã1:
3523¾Áƾó^>]|ý7».¯æ�Žcž�cQ‚!½�zî
3524€Ðï7ZT
35256ÎÃ 1eH
3526¼ö2]çCøø�‡ÔÚ
3527A%ƒl¯øš,B¹pEŇ
3528×øKLJ0 zÃ…úó{VóY¾ª
3529ƒJíÝÖ+Õ’M¶¾âN
3530‡xÈŇ¹g͇[ÏÞ￶lðìÅÖŽñ/ËÄ%±fDÑZC©Ìe:­·ìѽļõÖ1E�ÿ7‡¼ì/JO¬
3531 endstream
3532 endobj
3533-825 0 obj <<
3534-/Type /Page
3535-/Contents 826 0 R
3536-/Resources 824 0 R
3537-/MediaBox [0 0 595.276 841.89]
3538-/Parent 813 0 R
3539->> endobj
3540-827 0 obj <<
3541-/D [825 0 R /XYZ 55.693 817.952 null]
3542->> endobj
3543-214 0 obj <<
3544-/D [825 0 R /XYZ 56.693 785.197 null]
3545->> endobj
3546-828 0 obj <<
3547-/D [825 0 R /XYZ 56.693 758.219 null]
3548->> endobj
3549-829 0 obj <<
3550-/D [825 0 R /XYZ 56.693 760.985 null]
3551->> endobj
3552 830 0 obj <<
3553-/D [825 0 R /XYZ 56.693 747.436 null]
3554->> endobj
3555-218 0 obj <<
3556-/D [825 0 R /XYZ 56.693 662.784 null]
3557->> endobj
3558-831 0 obj <<
3559-/D [825 0 R /XYZ 56.693 628.199 null]
3560+/Type /Page
3561+/Contents 831 0 R
3562+/Resources 829 0 R
3563+/MediaBox [0 0 595.276 841.89]
3564+/Parent 818 0 R
3565 >> endobj
3566 832 0 obj <<
3567-/D [825 0 R /XYZ 56.693 631.06 null]
3568+/D [830 0 R /XYZ 55.693 817.952 null]
3569+>> endobj
3570+214 0 obj <<
3571+/D [830 0 R /XYZ 56.693 785.197 null]
3572 >> endobj
3573 833 0 obj <<
3574-/D [825 0 R /XYZ 56.693 617.511 null]
3575->> endobj
3576-222 0 obj <<
3577-/D [825 0 R /XYZ 56.693 529.957 null]
3578+/D [830 0 R /XYZ 56.693 758.219 null]
3579 >> endobj
3580 834 0 obj <<
3581-/D [825 0 R /XYZ 56.693 498.275 null]
3582+/D [830 0 R /XYZ 56.693 760.985 null]
3583 >> endobj
3584 835 0 obj <<
3585-/D [825 0 R /XYZ 56.693 501.136 null]
3586+/D [830 0 R /XYZ 56.693 747.436 null]
3587+>> endobj
3588+218 0 obj <<
3589+/D [830 0 R /XYZ 56.693 662.784 null]
3590 >> endobj
3591 836 0 obj <<
3592-/D [825 0 R /XYZ 56.693 487.587 null]
3593->> endobj
3594-226 0 obj <<
3595-/D [825 0 R /XYZ 56.693 400.033 null]
3596+/D [830 0 R /XYZ 56.693 628.199 null]
3597 >> endobj
3598 837 0 obj <<
3599-/D [825 0 R /XYZ 56.693 368.446 null]
3600+/D [830 0 R /XYZ 56.693 631.06 null]
3601 >> endobj
3602 838 0 obj <<
3603-/D [825 0 R /XYZ 56.693 371.211 null]
3604+/D [830 0 R /XYZ 56.693 617.511 null]
3605+>> endobj
3606+222 0 obj <<
3607+/D [830 0 R /XYZ 56.693 529.957 null]
3608 >> endobj
3609 839 0 obj <<
3610-/D [825 0 R /XYZ 56.693 357.662 null]
3611->> endobj
3612-230 0 obj <<
3613-/D [825 0 R /XYZ 56.693 283.657 null]
3614+/D [830 0 R /XYZ 56.693 498.275 null]
3615 >> endobj
3616 840 0 obj <<
3617-/D [825 0 R /XYZ 56.693 252.07 null]
3618+/D [830 0 R /XYZ 56.693 501.136 null]
3619 >> endobj
3620 841 0 obj <<
3621-/D [825 0 R /XYZ 56.693 254.836 null]
3622+/D [830 0 R /XYZ 56.693 487.587 null]
3623+>> endobj
3624+226 0 obj <<
3625+/D [830 0 R /XYZ 56.693 400.033 null]
3626 >> endobj
3627 842 0 obj <<
3628-/D [825 0 R /XYZ 56.693 241.287 null]
3629->> endobj
3630-234 0 obj <<
3631-/D [825 0 R /XYZ 56.693 167.282 null]
3632+/D [830 0 R /XYZ 56.693 368.446 null]
3633 >> endobj
3634 843 0 obj <<
3635-/D [825 0 R /XYZ 56.693 135.599 null]
3636+/D [830 0 R /XYZ 56.693 371.211 null]
3637 >> endobj
3638 844 0 obj <<
3639-/D [825 0 R /XYZ 56.693 138.46 null]
3640+/D [830 0 R /XYZ 56.693 357.662 null]
3641+>> endobj
3642+230 0 obj <<
3643+/D [830 0 R /XYZ 56.693 283.657 null]
3644 >> endobj
3645 845 0 obj <<
3646-/D [825 0 R /XYZ 56.693 124.911 null]
3647->> endobj
3648-824 0 obj <<
3649-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
3650-/ProcSet [ /PDF /Text ]
3651+/D [830 0 R /XYZ 56.693 252.07 null]
3652+>> endobj
3653+846 0 obj <<
3654+/D [830 0 R /XYZ 56.693 254.836 null]
3655+>> endobj
3656+847 0 obj <<
3657+/D [830 0 R /XYZ 56.693 241.287 null]
3658+>> endobj
3659+234 0 obj <<
3660+/D [830 0 R /XYZ 56.693 167.282 null]
3661 >> endobj
3662 848 0 obj <<
3663+/D [830 0 R /XYZ 56.693 135.599 null]
3664+>> endobj
3665+849 0 obj <<
3666+/D [830 0 R /XYZ 56.693 138.46 null]
3667+>> endobj
3668+850 0 obj <<
3669+/D [830 0 R /XYZ 56.693 124.911 null]
3670+>> endobj
3671+829 0 obj <<
3672+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3673+/ProcSet [ /PDF /Text ]
3674+>> endobj
3675+853 0 obj <<
3676 /Length 2334
3677 /Filter /FlateDecode
3678 >>
3679@@ -3057,81 +3070,81 @@
3680 Ž�p;†¬hj¢+Æ<ƒ&c{ø®Ußµnñ]ÇûšŽ7Zèôø~êÑßu¸úAYbG‹ïЄQàîÝÚ<qŠ¢ôxÔáš
3681}á¢ÉÑ¥óÿxÐu{mÔª
3682Û¿6ªî­QÓ�êàÊæÀjO
3683tø>¢©Çî4 ‹|@ER£é) ã
3684\Æõ¶`m> ã•<
3685! �<~#Ðá„ž-1Cà·
3686mØÛgÔÅóÀÍ;wíó�8®×g�\ÙIåÙÀl´w³9ð²9P;¥là¡›²ÑRcÊFÇŒTbʪ>e£ù)‘dÎX�7
3687Çê&ئºÜ¯5>…¤~ˆiÿÒq
3688Ïg¬ŒÛ9çÿñlw0ßί>[,Ãöó*ê%êè{zªþÏ91×¥¯Ðšó¹„€s¿§œžÚÖÈ™Àt\Tÿ×JûÁN…íªÚ}vÖ{úœ×ý•5–pêþžÏ
3689 endstream
3690 endobj
3691-847 0 obj <<
3692-/Type /Page
3693-/Contents 848 0 R
3694-/Resources 846 0 R
3695-/MediaBox [0 0 595.276 841.89]
3696-/Parent 813 0 R
3697->> endobj
3698-849 0 obj <<
3699-/D [847 0 R /XYZ 55.693 817.952 null]
3700->> endobj
3701-238 0 obj <<
3702-/D [847 0 R /XYZ 56.693 785.197 null]
3703->> endobj
3704-850 0 obj <<
3705-/D [847 0 R /XYZ 56.693 755.655 null]
3706->> endobj
3707-851 0 obj <<
3708-/D [847 0 R /XYZ 56.693 758.516 null]
3709->> endobj
3710 852 0 obj <<
3711-/D [847 0 R /XYZ 56.693 744.967 null]
3712->> endobj
3713-242 0 obj <<
3714-/D [847 0 R /XYZ 56.693 653.594 null]
3715->> endobj
3716-853 0 obj <<
3717-/D [847 0 R /XYZ 56.693 618.046 null]
3718+/Type /Page
3719+/Contents 853 0 R
3720+/Resources 851 0 R
3721+/MediaBox [0 0 595.276 841.89]
3722+/Parent 818 0 R
3723 >> endobj
3724 854 0 obj <<
3725-/D [847 0 R /XYZ 56.693 620.907 null]
3726+/D [852 0 R /XYZ 55.693 817.952 null]
3727+>> endobj
3728+238 0 obj <<
3729+/D [852 0 R /XYZ 56.693 785.197 null]
3730 >> endobj
3731 855 0 obj <<
3732-/D [847 0 R /XYZ 56.693 607.358 null]
3733->> endobj
3734-246 0 obj <<
3735-/D [847 0 R /XYZ 56.693 503.942 null]
3736+/D [852 0 R /XYZ 56.693 755.655 null]
3737 >> endobj
3738 856 0 obj <<
3739-/D [847 0 R /XYZ 56.693 466.888 null]
3740+/D [852 0 R /XYZ 56.693 758.516 null]
3741 >> endobj
3742 857 0 obj <<
3743-/D [847 0 R /XYZ 56.693 469.749 null]
3744+/D [852 0 R /XYZ 56.693 744.967 null]
3745+>> endobj
3746+242 0 obj <<
3747+/D [852 0 R /XYZ 56.693 653.594 null]
3748 >> endobj
3749 858 0 obj <<
3750-/D [847 0 R /XYZ 56.693 456.2 null]
3751->> endobj
3752-250 0 obj <<
3753-/D [847 0 R /XYZ 56.693 336.333 null]
3754+/D [852 0 R /XYZ 56.693 618.046 null]
3755 >> endobj
3756 859 0 obj <<
3757-/D [847 0 R /XYZ 56.693 302.277 null]
3758+/D [852 0 R /XYZ 56.693 620.907 null]
3759 >> endobj
3760 860 0 obj <<
3761-/D [847 0 R /XYZ 56.693 305.042 null]
3762+/D [852 0 R /XYZ 56.693 607.358 null]
3763+>> endobj
3764+246 0 obj <<
3765+/D [852 0 R /XYZ 56.693 503.942 null]
3766 >> endobj
3767 861 0 obj <<
3768-/D [847 0 R /XYZ 56.693 291.493 null]
3769->> endobj
3770-254 0 obj <<
3771-/D [847 0 R /XYZ 56.693 198.724 null]
3772+/D [852 0 R /XYZ 56.693 466.888 null]
3773 >> endobj
3774 862 0 obj <<
3775-/D [847 0 R /XYZ 56.693 164.668 null]
3776+/D [852 0 R /XYZ 56.693 469.749 null]
3777 >> endobj
3778 863 0 obj <<
3779-/D [847 0 R /XYZ 56.693 167.434 null]
3780+/D [852 0 R /XYZ 56.693 456.2 null]
3781+>> endobj
3782+250 0 obj <<
3783+/D [852 0 R /XYZ 56.693 336.333 null]
3784 >> endobj
3785 864 0 obj <<
3786-/D [847 0 R /XYZ 56.693 153.885 null]
3787->> endobj
3788-846 0 obj <<
3789-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
3790-/ProcSet [ /PDF /Text ]
3791+/D [852 0 R /XYZ 56.693 302.277 null]
3792+>> endobj
3793+865 0 obj <<
3794+/D [852 0 R /XYZ 56.693 305.042 null]
3795+>> endobj
3796+866 0 obj <<
3797+/D [852 0 R /XYZ 56.693 291.493 null]
3798+>> endobj
3799+254 0 obj <<
3800+/D [852 0 R /XYZ 56.693 198.724 null]
3801 >> endobj
3802 867 0 obj <<
3803+/D [852 0 R /XYZ 56.693 164.668 null]
3804+>> endobj
3805+868 0 obj <<
3806+/D [852 0 R /XYZ 56.693 167.434 null]
3807+>> endobj
3808+869 0 obj <<
3809+/D [852 0 R /XYZ 56.693 153.885 null]
3810+>> endobj
3811+851 0 obj <<
3812+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3813+/ProcSet [ /PDF /Text ]
3814+>> endobj
3815+872 0 obj <<
3816 /Length 1509
3817 /Filter /FlateDecode
3818 >>
3819@@ -3147,57 +3160,57 @@
3820 –ŠjÆð�Tàs:†ïÎ@8YÁc¬<.>˜Î9Žï.Çx¾áK÷k»„ï|šº«
3821ß
3822œäîßqw9Æ€¿Ü@ÈHp’3ˆà˜_G
3823BÊÆܧËc„ûua(Î'8Ia.Ó}‚û®{·ç"|ýð
3824ùËîÁ–M
3825šÿu`
3826ŸÉO{=ÈØćÚ{ï»RÝÀWHT”‡íšÍ®!½?"Ú'äÐÿ*ÿØè
3827 endstream
3828 endobj
3829-866 0 obj <<
3830-/Type /Page
3831-/Contents 867 0 R
3832-/Resources 865 0 R
3833-/MediaBox [0 0 595.276 841.89]
3834-/Parent 813 0 R
3835->> endobj
3836-868 0 obj <<
3837-/D [866 0 R /XYZ 55.693 817.952 null]
3838->> endobj
3839-258 0 obj <<
3840-/D [866 0 R /XYZ 56.693 785.197 null]
3841->> endobj
3842-869 0 obj <<
3843-/D [866 0 R /XYZ 56.693 757.502 null]
3844->> endobj
3845-870 0 obj <<
3846-/D [866 0 R /XYZ 56.693 760.267 null]
3847->> endobj
3848 871 0 obj <<
3849-/D [866 0 R /XYZ 56.693 746.718 null]
3850->> endobj
3851-262 0 obj <<
3852-/D [866 0 R /XYZ 56.693 603.881 null]
3853->> endobj
3854-872 0 obj <<
3855-/D [866 0 R /XYZ 56.693 571.576 null]
3856+/Type /Page
3857+/Contents 872 0 R
3858+/Resources 870 0 R
3859+/MediaBox [0 0 595.276 841.89]
3860+/Parent 818 0 R
3861 >> endobj
3862 873 0 obj <<
3863-/D [866 0 R /XYZ 56.693 574.342 null]
3864+/D [871 0 R /XYZ 55.693 817.952 null]
3865+>> endobj
3866+258 0 obj <<
3867+/D [871 0 R /XYZ 56.693 785.197 null]
3868 >> endobj
3869 874 0 obj <<
3870-/D [866 0 R /XYZ 56.693 560.793 null]
3871->> endobj
3872-266 0 obj <<
3873-/D [866 0 R /XYZ 56.693 485.701 null]
3874+/D [871 0 R /XYZ 56.693 757.502 null]
3875 >> endobj
3876 875 0 obj <<
3877-/D [866 0 R /XYZ 56.693 453.397 null]
3878+/D [871 0 R /XYZ 56.693 760.267 null]
3879 >> endobj
3880 876 0 obj <<
3881-/D [866 0 R /XYZ 56.693 456.162 null]
3882+/D [871 0 R /XYZ 56.693 746.718 null]
3883+>> endobj
3884+262 0 obj <<
3885+/D [871 0 R /XYZ 56.693 603.881 null]
3886 >> endobj
3887 877 0 obj <<
3888-/D [866 0 R /XYZ 56.693 442.613 null]
3889->> endobj
3890-865 0 obj <<
3891-/Font << /F39 421 0 R /F28 335 0 R /F37 376 0 R /F51 472 0 R /F47 454 0 R >>
3892-/ProcSet [ /PDF /Text ]
3893+/D [871 0 R /XYZ 56.693 571.576 null]
3894+>> endobj
3895+878 0 obj <<
3896+/D [871 0 R /XYZ 56.693 574.342 null]
3897+>> endobj
3898+879 0 obj <<
3899+/D [871 0 R /XYZ 56.693 560.793 null]
3900+>> endobj
3901+266 0 obj <<
3902+/D [871 0 R /XYZ 56.693 485.701 null]
3903 >> endobj
3904 880 0 obj <<
3905+/D [871 0 R /XYZ 56.693 453.397 null]
3906+>> endobj
3907+881 0 obj <<
3908+/D [871 0 R /XYZ 56.693 456.162 null]
3909+>> endobj
3910+882 0 obj <<
3911+/D [871 0 R /XYZ 56.693 442.613 null]
3912+>> endobj
3913+870 0 obj <<
3914+/Font << /F39 425 0 R /F28 339 0 R /F37 380 0 R /F51 477 0 R /F47 459 0 R >>
3915+/ProcSet [ /PDF /Text ]
3916+>> endobj
3917+885 0 obj <<
3918 /Length 114
3919 /Filter /FlateDecode
3920 >>
3921@@ -3206,21 +3219,21 @@
3922 áÒw3²P04г4°4TIS05Ó3³4V°00ѳ´4SIQˆÖ06ÐŒ
3923ñÒw3¶DVilf¦b@9{8„¸iê™hëiêššhøx:„º€´s@-E§]C¸²f
3924´
3925 endstream
3926 endobj
3927-879 0 obj <<
3928+884 0 obj <<
3929 /Type /Page
3930-/Contents 880 0 R
3931-/Resources 878 0 R
3932+/Contents 885 0 R
3933+/Resources 883 0 R
3934 /MediaBox [0 0 595.276 841.89]
3935-/Parent 813 0 R
3936->> endobj
3937-881 0 obj <<
3938-/D [879 0 R /XYZ 55.693 817.952 null]
3939->> endobj
3940-878 0 obj <<
3941-/Font << /F28 335 0 R /F39 421 0 R >>
3942+/Parent 818 0 R
3943+>> endobj
3944+886 0 obj <<
3945+/D [884 0 R /XYZ 55.693 817.952 null]
3946+>> endobj
3947+883 0 obj <<
3948+/Font << /F28 339 0 R /F39 425 0 R >>
3949 /ProcSet [ /PDF /Text ]
3950 >> endobj
3951-885 0 obj <<
3952+890 0 obj <<
3953 /Length 1250
3954 /Filter /FlateDecode
3955 >>
3956@@ -3230,43 +3243,43 @@
3957 Pc0Þ SÜ•c*š&`�
3958Ø‹¢v)q«ö</ ljÚI[ЈÆþAt_—mciÐ~|u
3959+´�[õqà‘kB;ò¹°ƒxÊà!ß È9;1î÷ ²P‰H”ÆÓÄà!ÒÈÿÁAy§÷zSŸHHÉâ¸a“ ND~¯+ÝÖoõ_L²€]Sx
3960`“»o×s©”â„rµAY�~;©Ñ½Us¨øzX) G´\ù¹0'!”3ÑE»Ê@s-Ã0ð×}{¯ÜÎhÔÝè.ç8¯
3961*m˜Ÿ
3962!¸N/f܉8—
3963èÓ>äâº�¨.å,x"FÂ
3964Ša
3965pólÃÇ1±3§éØ}
3966Å…ÚqS­ŒÍÔûØÜ^[ÄrÔ„dŸ0©ßƉ‹ñSO%–¿Â!¯€açr
3967×�¨ÍDw[ÛšÎè–¢ö~
3968éÖ˜»W•;”üJ3¯Z1§Ú´ùŒ60¥Ú@ÊD}m÷-ºÙð²œUr»3oG°ÙÄ.)¸±kQ¾ãVÇCšŽÐœŽ°ÐKX¼ÓëŸ)©eêÞ4wŠ
3969d+á¾w …±k>0DØXç¹>ºi)6¼­
3970
3971’â�
3972•v·pÛ)ÛƒY׃㘧!ÏnKiƒë›î‚å/Œõàíé‚úŠïEs‹óF„3¡Ôs?P­zë]Iþ~¸ñž�
3973Å%”þ–¨ßÉŒýýXìÄž7ÿ‹ƒÐWBto[˜v©‡ñYiË�Ad¯¨b‡ÂÇCë,·Q·¸”
3974îY%œ"Ö
3975ÜŒŸ/ ï^v¿�míXÕ¸-º+ÞÖ�2¨Ÿlf»Ö]/¯ê5æ¿N[%$¸\sxÃߤ´A±Íg¨So¦üåÁ‰¶]Ó7MÈ&*¿®oþâzÂ
3976 endstream
3977 endobj
3978-884 0 obj <<
3979+889 0 obj <<
3980 /Type /Page
3981-/Contents 885 0 R
3982-/Resources 883 0 R
3983+/Contents 890 0 R
3984+/Resources 888 0 R
3985 /MediaBox [0 0 595.276 841.89]
3986-/Parent 887 0 R
3987-/Annots [ 882 0 R ]
3988+/Parent 892 0 R
3989+/Annots [ 887 0 R ]
3990 >> endobj
3991-882 0 obj <<
3992+887 0 obj <<
3993 /Type /Annot
3994 /Border[0 0 0]/H/I/C[0 1 1]
3995 /Rect [235.247 127.347 258.152 140.363]
3996 /Subtype/Link/A<</Type/Action/S/URI/URI(http://en.wikipedia.org/wiki/X11_color_names)>>
3997 >> endobj
3998-886 0 obj <<
3999-/D [884 0 R /XYZ 55.693 817.952 null]
4000+891 0 obj <<
4001+/D [889 0 R /XYZ 55.693 817.952 null]
4002 >> endobj
4003 270 0 obj <<
4004-/D [884 0 R /XYZ 56.693 785.197 null]
4005+/D [889 0 R /XYZ 56.693 785.197 null]
4006 >> endobj
4007 274 0 obj <<
4008-/D [884 0 R /XYZ 56.693 600.014 null]
4009+/D [889 0 R /XYZ 56.693 600.014 null]
4010 >> endobj
4011 278 0 obj <<
4012-/D [884 0 R /XYZ 56.693 445.478 null]
4013+/D [889 0 R /XYZ 56.693 445.478 null]
4014 >> endobj
4015 282 0 obj <<
4016-/D [884 0 R /XYZ 56.693 349.124 null]
4017+/D [889 0 R /XYZ 56.693 349.124 null]
4018 >> endobj
4019 286 0 obj <<
4020-/D [884 0 R /XYZ 56.693 111.731 null]
4021+/D [889 0 R /XYZ 56.693 111.731 null]
4022 >> endobj
4023-883 0 obj <<
4024-/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>
4025+888 0 obj <<
4026+/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
4027 /ProcSet [ /PDF /Text ]
4028 >> endobj
4029-890 0 obj <<
4030+895 0 obj <<
4031 /Length 1958
4032 /Filter /FlateDecode
4033 >>
4034@@ -3283,24 +3296,24 @@
4035 âHëÃç:¼õøŸ¡.¦eÂ#÷zöb›gãé2ï‡[ <Ãã“¿®�Ž~¿:ûo´hh
4036 endstream
4037 endobj
4038-889 0 obj <<
4039+894 0 obj <<
4040 /Type /Page
4041-/Contents 890 0 R
4042-/Resources 888 0 R
4043+/Contents 895 0 R
4044+/Resources 893 0 R
4045 /MediaBox [0 0 595.276 841.89]
4046-/Parent 887 0 R
4047+/Parent 892 0 R
4048 >> endobj
4049-891 0 obj <<
4050-/D [889 0 R /XYZ 55.693 817.952 null]
4051+896 0 obj <<
4052+/D [894 0 R /XYZ 55.693 817.952 null]
4053 >> endobj
4054 290 0 obj <<
4055-/D [889 0 R /XYZ 56.693 153.579 null]
4056+/D [894 0 R /XYZ 56.693 153.579 null]
4057 >> endobj
4058-888 0 obj <<
4059-/Font << /F28 335 0 R /F39 421 0 R /F36 453 0 R /F47 454 0 R /F37 376 0 R >>
4060+893 0 obj <<
4061+/Font << /F28 339 0 R /F39 425 0 R /F36 458 0 R /F47 459 0 R /F37 380 0 R >>
4062 /ProcSet [ /PDF /Text ]
4063 >> endobj
4064-896 0 obj <<
4065+901 0 obj <<
4066 /Length 1921
4067 /Filter /FlateDecode
4068 >>
4069@@ -3313,41 +3326,41 @@
4070 öJ+
4071_9Êž¢èÖÊ°›~à8ÖGo†ùóÍ�÷Él�¹ƒñé›ì§ÙõÙýƒëÿ2ÙÍG
4072 endstream
4073 endobj
4074-895 0 obj <<
4075+900 0 obj <<
4076 /Type /Page
4077-/Contents 896 0 R
4078-/Resources 894 0 R
4079+/Contents 901 0 R
4080+/Resources 899 0 R
4081 /MediaBox [0 0 595.276 841.89]
4082-/Parent 887 0 R
4083-/Annots [ 892 0 R ]
4084+/Parent 892 0 R
4085+/Annots [ 897 0 R ]
4086 >> endobj
4087-892 0 obj <<
4088+897 0 obj <<
4089 /Type /Annot
4090 /Subtype /Link
4091 /Border[0 0 0]/H/I/C[1 0 0]
4092 /Rect [490.996 52.62 514.807 65.636]
4093 /A << /S /GoTo /D (subsection.4.2.1) >>
4094 >> endobj
4095-897 0 obj <<
4096-/D [895 0 R /XYZ 55.693 817.952 null]
4097+902 0 obj <<
4098+/D [900 0 R /XYZ 55.693 817.952 null]
4099 >> endobj
4100 294 0 obj <<
4101-/D [895 0 R /XYZ 56.693 560.625 null]
4102+/D [900 0 R /XYZ 56.693 560.625 null]
4103 >> endobj
4104 298 0 obj <<
4105-/D [895 0 R /XYZ 56.693 398.89 null]
4106+/D [900 0 R /XYZ 56.693 398.89 null]
4107 >> endobj
4108 302 0 obj <<
4109-/D [895 0 R /XYZ 56.693 249.141 null]
4110+/D [900 0 R /XYZ 56.693 249.141 null]
4111 >> endobj
4112 306 0 obj <<
4113-/D [895 0 R /XYZ 56.693 153.589 null]
4114+/D [900 0 R /XYZ 56.693 153.589 null]
4115 >> endobj
4116-894 0 obj <<
4117-/Font << /F39 421 0 R /F28 335 0 R /F47 454 0 R /F37 376 0 R >>
4118+899 0 obj <<
4119+/Font << /F39 425 0 R /F28 339 0 R /F47 459 0 R /F37 380 0 R >>
4120 /ProcSet [ /PDF /Text ]
4121 >> endobj
4122-900 0 obj <<
4123+905 0 obj <<
4124 /Length 1156
4125 /Filter /FlateDecode
4126 >>
4127@@ -3358,106 +3371,133 @@
4128 ÄIP´<L¦v¯/ó
4129*Õuõ,ùU�–¤fª­é]>ákùzÓiSë~¯L;ŸêZM.Ž,ÀGíÑ^\—G©Wƒõ8ð¦/ЛÆÀ"%(y»ê`§•"tés”I�9÷-mû{}—dË̉4bI&漃L\ÌpœÂ]²Ù
4130R0ùë@YJ{ €y–Î'°Äp¡Å
4131KÝ@U{}É
4132pÞQÅŸÆÁ”ÉÐXrúbêš$ÿVšÞÇS˧†&"
4133‹Xœ¦ëdš¶Ÿ
4134§aHÊai»añÔ¢ðÞ“ž|¡)V{~3úY¯'5=7Æö°xŠ8myðÔá8=¢3<ñ�̾pɶýÆ;qàÎ]=
4135[�?ªáiêIþUµ{5íaZHáŸcû&e\³XÅH/œ4ú¬@iʧ³
4136°|ƒ'Ž“EÃVãòýnóϹÄ1ÿL3–¤IP6›Ï_yPÁ\”ÅE
4137¼8Ã&E¿Úb�ëà¯ÍŸÇß”ð 3 R©`q"ƒÆ8�sÚ™å¬HÁr¦s†Ó9ç>»ÃÜ©æÏÃɇvL¶¢Cûšìª•Âøx6ªþ>0ñJ_jÿcì¼™R
4138Xôêu®ÎWÈÝ¿
4139õ˜
4140 endstream
4141 endobj
4142-899 0 obj <<
4143+904 0 obj <<
4144 /Type /Page
4145-/Contents 900 0 R
4146-/Resources 898 0 R
4147+/Contents 905 0 R
4148+/Resources 903 0 R
4149 /MediaBox [0 0 595.276 841.89]
4150-/Parent 887 0 R
4151-/Annots [ 893 0 R ]
4152+/Parent 892 0 R
4153+/Annots [ 898 0 R ]
4154 >> endobj
4155-893 0 obj <<
4156+898 0 obj <<
4157 /Type /Annot
4158 /Subtype /Link
4159 /Border[0 0 0]/H/I/C[1 0 0]
4160 /Rect [176.788 717.146 183.263 731.737]
4161 /A << /S /GoTo /D (Hfootnote.1) >>
4162 >> endobj
4163-901 0 obj <<
4164-/D [899 0 R /XYZ 55.693 817.952 null]
4165+906 0 obj <<
4166+/D [904 0 R /XYZ 55.693 817.952 null]
4167 >> endobj
4168 310 0 obj <<
4169-/D [899 0 R /XYZ 56.693 785.197 null]
4170+/D [904 0 R /XYZ 56.693 785.197 null]
4171 >> endobj
4172 314 0 obj <<
4173-/D [899 0 R /XYZ 56.693 660.867 null]
4174->> endobj
4175-902 0 obj <<
4176-/D [899 0 R /XYZ 72.832 67.652 null]
4177->> endobj
4178-898 0 obj <<
4179-/Font << /F28 335 0 R /F39 421 0 R /F37 376 0 R /F47 454 0 R >>
4180-/ProcSet [ /PDF /Text ]
4181->> endobj
4182-906 0 obj <<
4183-/Length 1230
4184-/Filter /FlateDecode
4185->>
4186-stream
4187-xÚ…ËŽÛ6ðî¯ÐQj†"EIî-M›´
4188-äa 6AAK´ET]QŠ×ß!‡Ô®7ÞÍE
4189΋ó
4190Ñä˜ÐäÝŠ†ó—ÝêÕ[^&Œ’¢`"Ù
4191Q�bË“b›“ŠeÉ®IîÒ7­<Mj\o˜ ©XÝý‰R9)«2sR4ÙˆœˆÀÿ—¶µê:9(3[”šŒéì"™å„ç
4192’#y…’‚dëMF)M?�æfcÕ„2¬J2J¶t_ã”Ð,G¡…uÃ3žjëÎ<•xµ­åýejÍÐõ¨Orž[]·ˆVƒÜwÊâe¶j
4193àd�µ—ÿª  —]‡`oý…RVËI›á‰ÄÔ�o²›£fspn9?2ND¾E?Ì)ÊS‘jg(ͽsˆyDÎS÷
4194ê(�ßDmú^A®Óƒ"ëM^òt×ê¨>œ§u–ÊqÒõÜɱ» 
4195
4196ÂçŸU©Â'bL
4197EÛ6¼kn¹CìÒ/ñæ~ëbàOˆžê
4198×U:¡bÔý©3£
4199ŽxmôÁ™qÖ
4200AqŒêc�fPãÑw;ÉQö
4201-êÙ’Å슰¼@³wmà³—a’÷תíRjî¦íÏNÃÒNñ|õ6/ŸÔ++ ËxÌ¢¤€B?誮Wx»?É©EpPç¼{Ï´€WÉPå’¥kƒ°Ùž5‹È?~-uýV^¹þ¤(£cCÇ0¡í�ƒ´�–Šu|
4202áÐqÃ8 ðÜ«¥,|S©†¼èÒ­Û0ã'¤ƒø’KœÎÊg}
4203-YxÁ©
4204}Ô*™:sLö‡‚mè‘@
4205¡¼Ðo»Õ«
4206äh’%eE„ /
4207B)Oê~u÷•&
4208Р¨ ßVÉÙsö '¬äuɧՇeê?z´Ê`Ú— J�Š†±ºÔÞóQd¤|!ŠÎè‡&ý.ó7#
4209-ãzîBô&¶äagdd+„ßQ’ªÈ TÂ;WDz<–¸Õ6‚lC×¼v�2±¤›è $^a‡
4210gyTˆŒÆáäÛÍ|Ó�º–èUÝʦª¶=b~
42119Ž¦Á&µÇšÓÃ7(ð•(­ê;D`ç7k³ô� ‘0ˆƒœ3Þ>
4212À¡f¬î5
4213u`*¸_'¬ÈSk|·æ,/!_Å…[Æ"ho®‰hù4jõ-ð<t÷#ý�Þ»ñ挅
4214¾F",“!ˆ–ß
4215-˜oà÷N!¦À0wolŸœœ¡Mpú¶ƒó`f·ì
4216èíȹ/._ºÐIø@`ÆcòóñÝ*¹ó¢Ÿ×[+£
4217š>¯¬ÉF­ˆj�—7à6üUè¹ÇûßïÑx?*·{ÕÐø�«î|Ëôws†(Žë2OrbËZu|Dàô‹ÿFÎÚ“»˜áä‚W$>ë Ï~öå
4218-�’VûÅ
4219°�žWá‘—�÷7àªÉ_�jP£œTк/ýªeoŸbø
4220Àu è˜A
4221+ž»R2K‹sßb·þZsö5Q�x¢]Å6Ý›i2="±`bÍAγ
4222sFìÄ!òF•‹
4223Àë« pVuªF/ÝãCjøöá¡Úœt䮨b™=u¦îôio¤ï™0Ìf»üÊ,ƒï
4224c
4225´^
4226þ-âÊÔ-ÿ~<
4227pìôO©F‡_(½ùz¿$
4228¦$¶aYI£�‹+&Ø+ÿË(p
4229-endstream
4230-endobj
4231-905 0 obj <<
4232-/Type /Page
4233-/Contents 906 0 R
4234-/Resources 904 0 R
4235-/MediaBox [0 0 595.276 841.89]
4236-/Parent 887 0 R
4237-/Annots [ 903 0 R ]
4238+/D [904 0 R /XYZ 56.693 660.867 null]
4239+>> endobj
4240+907 0 obj <<
4241+/D [904 0 R /XYZ 72.832 67.652 null]
4242 >> endobj
4243 903 0 obj <<
4244+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R /F47 459 0 R >>
4245+/ProcSet [ /PDF /Text ]
4246+>> endobj
4247+911 0 obj <<
4248+/Length 1526
4249+/Filter /FlateDecode
4250+>>
4251+stream
4252+xÚ­WY�ã6
4253~ϯð£4Z[ò•¾M§{]`»`
4254Ì
4255+ÅVb¡¶•ú˜ÌüûR¢¤
4256“ÉݾÄ%R$õñHlƒ(x?‹ì÷—ÕìÍ;–4"YFÓ`µ ÒŒdKdË„4VUpÞÖ|7Š~¾ i¦ó‡Õo(•�¼Èc-‹4!©=ÿI¥hÞ 5
4257(5*Õ
4258^2NK2j%3J’%SÏqEáÝnªƒQ†A
4259‘e´t·±ˆDq‚Bþè‚Å,”ƒþ&!ÇåP«Þî|~
4260kÕYvÙË݈'÷µ,kd‹Ž¯1àbDoÉQáÑ–ÿ-¬‚–7
4261’­ªä·(¢%¥êÎ$ÆÚ
4262+<òfršÕF»¥ýˆI“%ú¡vN>JC©
4263�ã
4264rŽ¶“P߇†ê
4265{ïF©Ú–wV®‘� óE’³pUK§Þ~wó8äý(Ë©á}óŒLp|35Hïkxø¸^áb¢wäPÛ{Õ%w\ˆõósütS»v8‚˜/DO4Höó"œ:‹ñ´kT/»-.+¹Ñfl¬5�Uì¢z¬Qu½»Â¹ W;ÞóVžâÍ.M24{UÛsÃs7ò§SÕƒ‡š^Éág­Á§“û¾y—ägx¥‰—ÔÆ+ÉèÙêZ�«§
4266k$;±ÿ˸÷J
4267+
4268«ô¯tj&Û«R"sù©Ôé]I¡ó3BéÚ… m?’ßòˆÕ
4269¼
4270i›qCW ð»
4271&©DE®º´@ë”’8ÊÑF
4272â5—#Œæ¯úd_áŠSß3ÚùœFƒîP£öÀ‰¿ã�µíÄ#À‚z»šý3‹A.
4273+â /Hš¦Ë—¤(hP¶³û‡(¨`@Mزöæd0BsTÜÍþðUÿèÒ"†jŸUYÁðN�½×£HI~%ŠÚèC’¾xù‹…r=56z#[rè1Y¦©é‹4'EC¨ReÌ·ß<<.¥MJ–®±Ýè[iêß›fè°8.¡‰m'¾ÈtÖÃÆÎä›z”•8•hEYóʪ
4274ZälL
4275Ò'ª
4276+³t°®i=P}­5`qgUÛ S‡èb‡GdB%¶rÚøáb–­„²§2f
4277+Í’pP&_�³çÏRÇ™n j°› ¾:ÝDÓÇ^ŠG{æ�ßGú¹ÖN[
4278oxƒ›ÐN¤ \¦/à‹Ãyã5l¸7ÒVÞ
4279
4280™×I(Ú_“xðݨI·;M;fàeÀK"Hü�lé·ÁçËûYpoD¿Î—šFc5}�§Ð(+1?lŠ5.nÁm˜+äÔâúÏÏh<�_„î¾¢«Ì4p’?à€yÄ<ü öÅ~ž'áOZÌ7V­ÁD¾¦õ_Â^š`2�� ¦�g\h”˜ -Gü¶“Á+P‚Ò´^ MôŒ¸°
4281“Š,‡GÐ󀆓YnE'z>
4282+«umoúUòVuæ‰aÀ† l÷‚ÌAži,[ŸäÌäØ%´Öjo0Q€øE»²e¸Vã¨Zd"`üfáÌÁ“{ÙUj�Ð;wÖ©ôvÀYƒ&à
4283¢%z©/ï,Qr{nm/*ÕNºS˜…ƒ™s&E_ÊFîÖŠ›”±Õlü,ã+ß7J(}>
4284nDkØK^ÖÇ
4285–�öL‘¨¤�IyyeÐN"ÓYl¹¤Ç“ö´¼Š…Ëè+C7;ºÏ¤4§Tøêr˜ãü
4286˜qåFp}Àχ@ï¥AP~×
4287—¹­BZí8ŠÖ‰yæè€|+m6hQcÚ%œAÐ$ “Ñ£¦‡‘|Ëe7Œv�Ÿ¡¬EËõ)]†7È
4288�æc}ôx¡ÁÖiD6ï:eéµ9ú½ÕòÊê1ÿ%({k¦¬C'î<eAf‹ÇÑÐ"Œo·nfáVXvжeõgäÈøÁqù\Ÿ
4289�ïõƒ£87¿¼¹óL{îîöÃÛO7žÛ[¢»±~ðìLJÃ<ny’òpm
4290�|
4291¿:iјÐ(ÿ_gp=›º?HhôvÂaÿ|ùIÅ•
4292ìÜë—Uìõœ{yFÆ—<›êÁÁ„P˜<!w ³(céɘ}ÿ
4293
4294+endstream
4295+endobj
4296+910 0 obj <<
4297+/Type /Page
4298+/Contents 911 0 R
4299+/Resources 909 0 R
4300+/MediaBox [0 0 595.276 841.89]
4301+/Parent 892 0 R
4302+/Annots [ 908 0 R ]
4303+>> endobj
4304+908 0 obj <<
4305 /Type /Annot
4306 /Border[0 0 0]/H/I/C[0 1 1]
4307-/Rect [153.951 283.44 418.104 296.456]
4308+/Rect [153.951 287.528 418.104 300.544]
4309 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.w3.org/TR/xpath)>>
4310 >> endobj
4311-907 0 obj <<
4312-/D [905 0 R /XYZ 55.693 817.952 null]
4313+912 0 obj <<
4314+/D [910 0 R /XYZ 55.693 817.952 null]
4315 >> endobj
4316 318 0 obj <<
4317-/D [905 0 R /XYZ 56.693 785.197 null]
4318+/D [910 0 R /XYZ 56.693 785.197 null]
4319 >> endobj
4320 322 0 obj <<
4321-/D [905 0 R /XYZ 56.693 600.014 null]
4322+/D [910 0 R /XYZ 56.693 600.014 null]
4323 >> endobj
4324 326 0 obj <<
4325-/D [905 0 R /XYZ 56.693 356.1 null]
4326->> endobj
4327-904 0 obj <<
4328-/Font << /F37 376 0 R /F28 335 0 R /F47 454 0 R >>
4329-/ProcSet [ /PDF /Text ]
4330->> endobj
4331-909 0 obj
4332+/D [910 0 R /XYZ 56.693 360.188 null]
4333+>> endobj
4334+330 0 obj <<
4335+/D [910 0 R /XYZ 56.693 230.18 null]
4336+>> endobj
4337+909 0 obj <<
4338+/Font << /F37 380 0 R /F28 339 0 R /F47 459 0 R >>
4339+/ProcSet [ /PDF /Text ]
4340+>> endobj
4341+915 0 obj <<
4342+/Length 533
4343+/Filter /FlateDecode
4344+>>
4345+stream
4346+xÚ�TMs›0½ûWp´(BB`
4347ÓŒÓ�qëNLOM2FS@
4348Ðdúï+±’kH&îô´šÝÕÛ÷ö pp
4349+pð~ñ.[ÜÜ“uaÄ1�‚¬X‚Nƒ5ŽçI�
4350ƒïKš¬~dŸnî)¿ì$)G‰
4351ÐØt÷áök¶yX…„á%C«�%xùùãþn³ÝÞ~Ùì¾í¡”­¢õr·Ûî-æ;&>š!éå�ÐO )F)[ìPL.Ï5D1b1ñÄDUéç
4352
4353}^ÊÚ�E¥„«âAº¶Væêc"��xÄ
4354?«ªš¶©S£;«Ê·©bèpUÿÏ E3
43553áNDHb‘3¾©›"N£¹ne¥áJ)?+“âa-%
4356'ŠmÂ*¶rìÝF*ƒÓA!t ºƒbè&©þ5$Ól%ïT;@–i³…¶tçlE-­b«ŒÚe˜Èbúz)Æ­ç%l·°TæîZ•ôî»xT¢ÖÍ?x@RDRê<`΃îšô¥„Ä Ê
4357ü¡ðäLÞOþ«ë嬸$´�+
4358çºn+9Èê7à�;°�z>tò–Mâ(Û¡
4359Wõó6Us¬ÂƒévPºé½Ü;á62Ùq-Áœ“ãÊ%¨68î›h.
4360úžÞ¶�¡ˆQoC-~z~gFgÌùIvÝ_aá §dy�Eú—EÛ©f˜þˆJYµno²ïÅI¾úSÜd‹?‘ïh´
4361+endstream
4362+endobj
4363+914 0 obj <<
4364+/Type /Page
4365+/Contents 915 0 R
4366+/Resources 913 0 R
4367+/MediaBox [0 0 595.276 841.89]
4368+/Parent 892 0 R
4369+>> endobj
4370+916 0 obj <<
4371+/D [914 0 R /XYZ 55.693 817.952 null]
4372+>> endobj
4373+913 0 obj <<
4374+/Font << /F28 339 0 R /F39 425 0 R /F37 380 0 R >>
4375+/ProcSet [ /PDF /Text ]
4376+>> endobj
4377+918 0 obj
4378 [444 463 407 500 389 278 500 500 278 278 444 278 778 556 444 500 463 389 389 333 556 500 722 500 500]
4379 endobj
4380-910 0 obj
4381+919 0 obj
4382 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
4383 endobj
4384-911 0 obj
4385+920 0 obj
4386 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
4387 endobj
4388-912 0 obj
4389+921 0 obj
4390 [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600]
4391 endobj
4392-913 0 obj
4393+922 0 obj
4394 [500]
4395 endobj
4396-914 0 obj
4397+923 0 obj
4398 [250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667]
4399 endobj
4400-915 0 obj
4401+924 0 obj
4402 [611 611 167 333 611 333 333 333 0 333 606 0 667 500 333 333 0 0 0 0 0 0 0 0 0 0 0 0 333 227 250 278 402 500 500 889 833 278 333 333 444 606 250 333 250 296 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 667 722 833 611 556 833 833 389 389 778 611 1000 833 833 611 833 722 611 667 778 778 1000 667 667 667 333 606 333 606 500 278 500 611 444 611 500 389 556 611 333 333 611 333 889 611 556 611 611 389 444 333 611 556 833 500 556]
4403 endobj
4404-916 0 obj
4405+925 0 obj
4406 [605 608 167 380 611 291 313 333 0 333 606 0 667 500 333 287 0 0 0 0 0 0 0 0 0 0 0 0 333 208 250 278 371 500 500 840 778 278 333 333 389 606 250 333 250 606 500 500 500 500 500 500 500 500 500 500 250 250 606 606 606 444 747 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 604 786 668 525 613 778 722 1000 667 667 667 333 606 333 606 500 278 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 601 560 395 424 326 603 565 834 516 556 500 333 606 333 606 0 0 0 278 500 500 1000 500 500 333 1144 525 331 998 0 0 0 0 0 0 500 500]
4407 endobj
4408-917 0 obj <<
4409+926 0 obj <<
4410 /Length1 1403
4411 /Length2 6029
4412 /Length3 0
4413@@ -3493,7 +3533,7 @@
4414 ªZtžÍ°3Pسáî
4415—÷K”¹éc*Ûuµ!{‘T½í#¿ÕwÝb¼zAðû•B¯ºôÄ/ýð¾�¢­x9œ•Ó;¡õð¦|yäûƒ4»ÜÅ���GX=#Ø[l™�g\
4416_†ü©YeE~ëãh{ÛŸ[M¿L½Ã3�%àפ›ÐR£;s!LnPÖSOæýöÓ.K”~Á‰—¢ÃxÒZû•áU[^Ûl<ÇöðÔWº¥6SÃgú‘ÊìÍîá�hW÷2gmâ&y<ù
4417(çëg"i™ðÞ¡h´áÙÖ¦à}žOB®çËó¯+Øî7xeª@“EÏùÞÌ× J
4418qÑPÕ¶”~Ëü¸m¥ÿŠþä°Æ~;ß©ï�HGï‹ïI‡E¾
4419´ö˜C�RÓ÷‘UALØöåú�Ê>ÿ:ÔDx’BF›IÉC%ü2`ò±Hj’Þx^x¢Yv5û6…�¬Kß´õY¨îÕ·‰¤{¼º¾?Z!ÍÇN�ÔJsÎË•ssc” {;2»â·SÍïdÕŸž¿=ÜáWE
4420i¬¨Æ¤ åÊ]¾‹ÉZ%±£ëu„®)rÓüÅç’à:U»þëªzÌéój��€í„œ7Ž™:‹8¼ô3â-nåN¸|­™Âý¾·UNÑ“Âg€\hÔ—¾`¹›¥Ïå;H£r0æÇq/ÿ–µÚåh®,êÃÖÓ‡Zž²=îœâw¦^¿ú�ñ�G“ô9XpŽ¼GˆŽ+fÁçvŽP‡h5ùbþÚ-hÍkÀ­íí ~jÉ—aË‚¹±i«fAâðgÑœyKŽ"'krT�éU­GO(¢¾ÞνÅʨ±·�PÿꥪæÞ·ˆGK �¦I:$g°Ì¬€¯W ÈxÜÒ’eÎ`µ Y%âÉW×î›DS8žÑpûHžG�1¥R&¯Þé›v#S³Ï÷¦YžSÍSĘ
4421G&ð¹Žû¼œ5ëÓ
4422Ùâ¬_+,/w1ëÖÔr†^+/­�Ôì_ìˆ=}¾b‹ß+Õ”Ÿ6�_˜Ø:ôÜQ8U9dS™«'�8v²d×`—'=bò7e¨³ ñ‘ToØ F?±l¦iG«Š:—Vµt?ÏV›§ž^ü.‡¥}|œ>V¯6L+V½i<b�Êû,+ìqidú– éuò5áG\oA·¦É\êÜë|¼ÎAõ?ų‹
4423 endstream
4424 endobj
4425-918 0 obj <<
4426+927 0 obj <<
4427 /Type /FontDescriptor
4428 /FontName /GFAWRG+CMSY10
4429 /Flags 4
4430@@ -3505,9 +3545,9 @@
4431 /StemV 40
4432 /XHeight 431
4433 /CharSet (/bullet)
4434-/FontFile 917 0 R
4435+/FontFile 926 0 R
4436 >> endobj
4437-919 0 obj <<
4438+928 0 obj <<
4439 /Length1 1606
4440 /Length2 8126
4441 /Length3 0
4442@@ -3559,7 +3599,7 @@
4443 ðÕÍGÖÍ¢Ðí­ÖÅ'7Icñ”P‰"jó3ªe%/ÿÒ
4444
4445°÷iæ3¿c`ÁáK¥©qGÙÊÄ
4446üu4 =Φ`,¯òUôõ,«
4447OjW¢³WQŽv§\é<ÃN·h¦¶?ZnÔŠðKösq¤$
4448`¦UOòýûÞ^ñL±”óÌ´T%£šõÔ{±ÉuŸó€Y±‡à{KQËCøNüœ*–Ç
44498pû�d7¬Áº]=¤Y{ø* †íää}dL—#>(B ã(ù¬ý¿èHóë
4450 endstream
4451 endobj
4452-920 0 obj <<
4453+929 0 obj <<
4454 /Type /FontDescriptor
4455 /FontName /NZTLTG+NimbusMonL-Bold
4456 /Flags 4
4457@@ -3571,9 +3611,9 @@
4458 /StemV 101
4459 /XHeight 439
4460 /CharSet (/a/b/c/d/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y)
4461-/FontFile 919 0 R
4462+/FontFile 928 0 R
4463 >> endobj
4464-921 0 obj <<
4465+930 0 obj <<
4466 /Length1 1612
4467 /Length2 17198
4468 /Length3 0
4469@@ -3649,7 +3689,7 @@
4470 ŸD%³¨£%Cp+¦¥‡j«æ¤o;ií¦
4471$­øVëÕ-xKu°è©^°µ“ï—ã´ñÖÕáâoèà]Ðftç-¡¯Qƒ­Z5œ[ÝŽ
4472XŒNì^?ŒSw–óÂ$,'ìЫ߄ó†ÀöÂõÞ±WýG
4473¼£„P®<œM@ÎíQÉü`Øʾxjõ¤[Å7‹‰Â‡§½
4474_‹S¢\ª U4¢‘×fà=4µØsÏåtÒȱïZ ®�]'þ`å4€[ï�êœÛg¢H³Úv„‡Ãd�"˜‘¦‰7¯‹¼Êµ
4475bçéÌj'úƵr@'¿L?ò`Ÿo6=i”L¤ÙDéVßä�̬výW�ÑW­£²Fú’ûÎ9#™e¬'Ö‚­¶ÀëØ?ɪ+¾þ•©.ð,i¤
4476BÙS«jÿªle>kÇfSÝDÿGêIžfí“!–?ɉXÑß߃ÞáÒ—¶UïÁп‚ªêÚ›V¤ï¸]Ç€?|xNØ\4„¢q½�æ«Y=a¯
4477Ò°AqjÂîÅŠ—¬—ñ÷ÐÈw$ká�¡6úFÑ{Ç—9EúgbÁ6‡q~b8e
4478‘Fö‰'Àû·½ŸU`½úÍ Õ‘AÜ
4479ŽÙ£6ô•Ù‹vmTUÌ€Ï?XdáⳌj
4480«àÏöw<4}«ò7ŽíW)þÙj/Ön¼ sô:º_1EØæ?–ÅO¥èbDé­Ý
4481aóyëû¡±–*uG¿­kÏ­§ôëúq-3~ŸËúåR@ß¼g‡§�«À~"ÐÂDiiÖ×,Tú¯aWD×h]fl~?*ø‘F*|l‘,þ*x±ÔÖD¿ÆÔm‡w^ã)Êq£óòw<}\{�$åœtY'×úêÿ9eÔ"x�5¬÷
4482îÛUdfí!O©ær‹³„º6R6ã�ûr˜¾xF…<Ž°“û"Æ/—‹Æ¶Ì��¸h³A›gþÑà{„2½שÍm…œÉÄ’° Ô¯•Á5þ”ªÞ˜·aˆkrŸöjøBª³Cc7»ÚVdˆKŠÑЧû‚ÞSxÄ×ñ}–$�¯�äñ£5K×Û¯»ï>K›”§;dñ^1N”égòfÇÜe¯ÌïÇ“¹`c™¯;ÖùÕécÆȩÓKWó¶ýˆƒH‚‚`|}pÉö
4483å`t}¦¨WÍÇ-XEÎR�K$ö
4484›Y};à_ÚMÇU±§H Û²xI=ý4[ÕïB6øÈL¿p
4485/lU˜dÔÁÖkõxE’ÝÏ~=ç‡>h½‰§»s
4486 endstream
4487 endobj
4488-922 0 obj <<
4489+931 0 obj <<
4490 /Type /FontDescriptor
4491 /FontName /HRTLHX+NimbusMonL-Regu
4492 /Flags 4
4493@@ -3661,9 +3701,9 @@
4494 /StemV 41
4495 /XHeight 426
4496 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/Y/a/ampersand/asterisk/at/b/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/plus/quotedbl/r/s/semicolon/slash/t/three/tilde/two/u/underscore/v/w/x/y/z/zero)
4497-/FontFile 921 0 R
4498+/FontFile 930 0 R
4499 >> endobj
4500-923 0 obj <<
4501+932 0 obj <<
4502 /Length1 1630
4503 /Length2 11118
4504 /Length3 0
4505@@ -3719,7 +3759,7 @@
4506 ¹Ft¨ÝT¯Àp*ìïqB¢ü#Èo³´Æ¹Ò…R:Óõ1˜÷šÜþõdVqÁÿ@e¸‚
4507 endstream
4508 endobj
4509-924 0 obj <<
4510+933 0 obj <<
4511 /Type /FontDescriptor
4512 /FontName /NZQXJO+NimbusMonL-ReguObli
4513 /Flags 4
4514@@ -3731,9 +3771,9 @@
4515 /StemV 43
4516 /XHeight 426
4517 /CharSet (/A/C/D/F/I/L/M/N/O/S/T/a/b/bracketleft/bracketright/c/comma/d/e/f/g/greater/h/hyphen/i/k/l/less/m/n/numbersign/o/one/p/parenleft/parenright/period/quoteright/r/s/slash/t/two/u/underscore/v/w/x/y/z/zero)
4518-/FontFile 923 0 R
4519+/FontFile 932 0 R
4520 >> endobj
4521-925 0 obj <<
4522+934 0 obj <<
4523 /Length1 1614
4524 /Length2 19312
4525 /Length3 0
4526@@ -3813,7 +3853,7 @@
4527 0µ^”–¸Áò(Ï°–
4528 endstream
4529 endobj
4530-926 0 obj <<
4531+935 0 obj <<
4532 /Type /FontDescriptor
4533 /FontName /YFCLPA+URWPalladioL-Bold
4534 /Flags 4
4535@@ -3825,9 +3865,9 @@
4536 /StemV 123
4537 /XHeight 471
4538 /CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/X/a/b/c/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/plus/r/s/seven/six/slash/t/three/two/u/v/w/x/y/zero)
4539-/FontFile 925 0 R
4540+/FontFile 934 0 R
4541 >> endobj
4542-927 0 obj <<
4543+936 0 obj <<
4544 /Length1 1616
4545 /Length2 22659
4546 /Length3 0
4547@@ -3908,7 +3948,7 @@
4548 �è…7¥! L+zÅáœùæ…d¾pWq”õY´áÞne`bÁ©»Âß—‹®¹ ñÁ{Äß®å›5éŸ
4549“/+&¸sv1¤¯çg­ÃúTÒ˜
4550Ú�UæƒBaêwWŠõQõZb^ÞÅ[÷ú
4551<IÉ‹TÛåÚ
4552Á‰…á�͹í>£¿ð+GßÙ’±ž.ö¾\à:RÑ ¯(%ì®zkŒëǘ¿£ßk³¬çëFË|ñÒj€^É6ìnBnÒ·±ÎbNIØ�lõ_Lg 
4553 endstream
4554 endobj
4555-928 0 obj <<
4556+937 0 obj <<
4557 /Type /FontDescriptor
4558 /FontName /RQREYX+URWPalladioL-Roma
4559 /Flags 4
4560@@ -3920,9 +3960,9 @@
4561 /StemV 84
4562 /XHeight 469
4563 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/a/asterisk/b/c/colon/comma/d/e/eight/equal/f/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/plus/q/quotedblleft/quotedblright/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
4564-/FontFile 927 0 R
4565+/FontFile 936 0 R
4566 >> endobj
4567-929 0 obj <<
4568+938 0 obj <<
4569 /Length1 1630
4570 /Length2 13827
4571 /Length3 0
4572@@ -3993,7 +4033,7 @@
4573 'Â)‰~G�-ÜÌÕ½ÕX:IM¸¨¯_|qì¹È–çð¬ee[Ùø´hé
4574k=Øÿ,*°ÏÂ9ÔÍ”Mt°­ÝêÓá™zÓW»ÛñÄá³Ù‹¡Ø|žp‡’õwàÂ(
4575ÚiœŠ²q­!ÎO]ò¬gJnÊûsÜ}
4576 endstream
4577 endobj
4578-930 0 obj <<
4579+939 0 obj <<
4580 /Type /FontDescriptor
4581 /FontName /AKWMVX+URWPalladioL-Roma-Slant_167
4582 /Flags 4
4583@@ -4005,9 +4045,9 @@
4584 /StemV 84
4585 /XHeight 469
4586 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/Y/five/four/one/period/six/three/two)
4587-/FontFile 929 0 R
4588+/FontFile 938 0 R
4589 >> endobj
4590-931 0 obj <<
4591+940 0 obj <<
4592 /Length1 1620
4593 /Length2 8968
4594 /Length3 0
4595@@ -4051,7 +4091,7 @@
4596 Šz¿©ûîìÿÊä$!qf"ñU)§µ4¢»÷1(¿æã�`¹‘áÿ…_zp
4597 endstream
4598 endobj
4599-932 0 obj <<
4600+941 0 obj <<
4601 /Type /FontDescriptor
4602 /FontName /ILEWFP+URWPalladioL-Ital
4603 /Flags 4
4604@@ -4063,138 +4103,144 @@
4605 /StemV 78
4606 /XHeight 482
4607 /CharSet (/a/b/c/d/e/f/h/i/l/m/n/o/p/r/s/t/u/y)
4608-/FontFile 931 0 R
4609+/FontFile 940 0 R
4610 >> endobj
4611-908 0 obj <<
4612+917 0 obj <<
4613 /Type /Encoding
4614 /Differences [2/fi/fl 34/quotedbl/numbersign/dollar 38/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 64/at/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U/V/W/X/Y 91/bracketleft 93/bracketright 95/underscore 97/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 147/quotedblleft/quotedblright 152/tilde]
4615 >> endobj
4616-453 0 obj <<
4617+458 0 obj <<
4618 /Type /Font
4619 /Subtype /Type1
4620 /BaseFont /GFAWRG+CMSY10
4621-/FontDescriptor 918 0 R
4622+/FontDescriptor 927 0 R
4623 /FirstChar 15
4624 /LastChar 15
4625-/Widths 913 0 R
4626+/Widths 922 0 R
4627 >> endobj
4628-472 0 obj <<
4629+477 0 obj <<
4630 /Type /Font
4631 /Subtype /Type1
4632 /BaseFont /NZTLTG+NimbusMonL-Bold
4633-/FontDescriptor 920 0 R
4634+/FontDescriptor 929 0 R
4635 /FirstChar 97
4636 /LastChar 121
4637-/Widths 910 0 R
4638-/Encoding 908 0 R
4639+/Widths 919 0 R
4640+/Encoding 917 0 R
4641 >> endobj
4642-454 0 obj <<
4643+459 0 obj <<
4644 /Type /Font
4645 /Subtype /Type1
4646 /BaseFont /HRTLHX+NimbusMonL-Regu
4647-/FontDescriptor 922 0 R
4648+/FontDescriptor 931 0 R
4649 /FirstChar 34
4650 /LastChar 152
4651-/Widths 912 0 R
4652-/Encoding 908 0 R
4653+/Widths 921 0 R
4654+/Encoding 917 0 R
4655 >> endobj
4656-468 0 obj <<
4657+473 0 obj <<
4658 /Type /Font
4659 /Subtype /Type1
4660 /BaseFont /NZQXJO+NimbusMonL-ReguObli
4661-/FontDescriptor 924 0 R
4662+/FontDescriptor 933 0 R
4663 /FirstChar 35
4664 /LastChar 122
4665-/Widths 911 0 R
4666-/Encoding 908 0 R
4667+/Widths 920 0 R
4668+/Encoding 917 0 R
4669 >> endobj
4670-376 0 obj <<
4671+380 0 obj <<
4672 /Type /Font
4673 /Subtype /Type1
4674 /BaseFont /YFCLPA+URWPalladioL-Bold
4675-/FontDescriptor 926 0 R
4676+/FontDescriptor 935 0 R
4677 /FirstChar 2
4678 /LastChar 121
4679-/Widths 915 0 R
4680-/Encoding 908 0 R
4681+/Widths 924 0 R
4682+/Encoding 917 0 R
4683 >> endobj
4684-335 0 obj <<
4685+339 0 obj <<
4686 /Type /Font
4687 /Subtype /Type1
4688 /BaseFont /RQREYX+URWPalladioL-Roma
4689-/FontDescriptor 928 0 R
4690+/FontDescriptor 937 0 R
4691 /FirstChar 2
4692 /LastChar 148
4693-/Widths 916 0 R
4694-/Encoding 908 0 R
4695+/Widths 925 0 R
4696+/Encoding 917 0 R
4697 >> endobj
4698-595 0 obj <<
4699+600 0 obj <<
4700 /Type /Font
4701 /Subtype /Type1
4702 /BaseFont /ILEWFP+URWPalladioL-Ital
4703-/FontDescriptor 932 0 R
4704+/FontDescriptor 941 0 R
4705 /FirstChar 97
4706 /LastChar 121
4707-/Widths 909 0 R
4708-/Encoding 908 0 R
4709+/Widths 918 0 R
4710+/Encoding 917 0 R
4711 >> endobj
4712-421 0 obj <<
4713+425 0 obj <<
4714 /Type /Font
4715 /Subtype /Type1
4716 /BaseFont /AKWMVX+URWPalladioL-Roma-Slant_167
4717-/FontDescriptor 930 0 R
4718+/FontDescriptor 939 0 R
4719 /FirstChar 46
4720 /LastChar 89
4721-/Widths 914 0 R
4722-/Encoding 908 0 R
4723->> endobj
4724-336 0 obj <<
4725-/Type /Pages
4726-/Count 6
4727-/Parent 933 0 R
4728-/Kids [330 0 R 338 0 R 373 0 R 418 0 R 435 0 R 439 0 R]
4729->> endobj
4730-455 0 obj <<
4731-/Type /Pages
4732-/Count 6
4733-/Parent 933 0 R
4734-/Kids [450 0 R 457 0 R 463 0 R 484 0 R 504 0 R 515 0 R]
4735->> endobj
4736-580 0 obj <<
4737-/Type /Pages
4738-/Count 6
4739-/Parent 933 0 R
4740-/Kids [548 0 R 583 0 R 588 0 R 592 0 R 601 0 R 605 0 R]
4741->> endobj
4742-627 0 obj <<
4743-/Type /Pages
4744-/Count 6
4745-/Parent 933 0 R
4746-/Kids [609 0 R 629 0 R 664 0 R 687 0 R 722 0 R 752 0 R]
4747->> endobj
4748-813 0 obj <<
4749-/Type /Pages
4750-/Count 6
4751-/Parent 933 0 R
4752-/Kids [778 0 R 815 0 R 825 0 R 847 0 R 866 0 R 879 0 R]
4753->> endobj
4754-887 0 obj <<
4755-/Type /Pages
4756-/Count 5
4757-/Parent 933 0 R
4758-/Kids [884 0 R 889 0 R 895 0 R 899 0 R 905 0 R]
4759->> endobj
4760-933 0 obj <<
4761-/Type /Pages
4762-/Count 35
4763-/Kids [336 0 R 455 0 R 580 0 R 627 0 R 813 0 R 887 0 R]
4764->> endobj
4765-934 0 obj <<
4766+/Widths 923 0 R
4767+/Encoding 917 0 R
4768+>> endobj
4769+340 0 obj <<
4770+/Type /Pages
4771+/Count 6
4772+/Parent 942 0 R
4773+/Kids [334 0 R 342 0 R 377 0 R 422 0 R 440 0 R 444 0 R]
4774+>> endobj
4775+460 0 obj <<
4776+/Type /Pages
4777+/Count 6
4778+/Parent 942 0 R
4779+/Kids [455 0 R 462 0 R 468 0 R 489 0 R 509 0 R 520 0 R]
4780+>> endobj
4781+585 0 obj <<
4782+/Type /Pages
4783+/Count 6
4784+/Parent 942 0 R
4785+/Kids [553 0 R 588 0 R 593 0 R 597 0 R 606 0 R 610 0 R]
4786+>> endobj
4787+632 0 obj <<
4788+/Type /Pages
4789+/Count 6
4790+/Parent 942 0 R
4791+/Kids [614 0 R 634 0 R 669 0 R 692 0 R 727 0 R 757 0 R]
4792+>> endobj
4793+818 0 obj <<
4794+/Type /Pages
4795+/Count 6
4796+/Parent 942 0 R
4797+/Kids [783 0 R 820 0 R 830 0 R 852 0 R 871 0 R 884 0 R]
4798+>> endobj
4799+892 0 obj <<
4800+/Type /Pages
4801+/Count 6
4802+/Parent 942 0 R
4803+/Kids [889 0 R 894 0 R 900 0 R 904 0 R 910 0 R 914 0 R]
4804+>> endobj
4805+942 0 obj <<
4806+/Type /Pages
4807+/Count 36
4808+/Kids [340 0 R 460 0 R 585 0 R 632 0 R 818 0 R 892 0 R]
4809+>> endobj
4810+943 0 obj <<
4811 /Type /Outlines
4812 /First 3 0 R
4813 /Last 319 0 R
4814 /Count 5
4815 >> endobj
4816+331 0 obj <<
4817+/Title 332 0 R
4818+/A 329 0 R
4819+/Parent 319 0 R
4820+/Prev 323 0 R
4821+>> endobj
4822 327 0 obj <<
4823 /Title 328 0 R
4824 /A 325 0 R
4825@@ -4204,6 +4250,7 @@
4826 /Title 324 0 R
4827 /A 321 0 R
4828 /Parent 319 0 R
4829+/Next 331 0 R
4830 /First 327 0 R
4831 /Last 327 0 R
4832 /Count -1
4833@@ -4211,11 +4258,11 @@
4834 319 0 obj <<
4835 /Title 320 0 R
4836 /A 317 0 R
4837-/Parent 934 0 R
4838+/Parent 943 0 R
4839 /Prev 271 0 R
4840 /First 323 0 R
4841-/Last 323 0 R
4842-/Count -1
4843+/Last 331 0 R
4844+/Count -2
4845 >> endobj
4846 315 0 obj <<
4847 /Title 316 0 R
4848@@ -4297,7 +4344,7 @@
4849 271 0 obj <<
4850 /Title 272 0 R
4851 /A 269 0 R
4852-/Parent 934 0 R
4853+/Parent 943 0 R
4854 /Prev 67 0 R
4855 /Next 319 0 R
4856 /First 275 0 R
4857@@ -4659,7 +4706,7 @@
4858 67 0 obj <<
4859 /Title 68 0 R
4860 /A 65 0 R
4861-/Parent 934 0 R
4862+/Parent 943 0 R
4863 /Prev 23 0 R
4864 /Next 271 0 R
4865 /First 71 0 R
4866@@ -4738,7 +4785,7 @@
4867 23 0 obj <<
4868 /Title 24 0 R
4869 /A 21 0 R
4870-/Parent 934 0 R
4871+/Parent 943 0 R
4872 /Prev 3 0 R
4873 /Next 67 0 R
4874 /First 27 0 R
4875@@ -4774,1425 +4821,1434 @@
4876 3 0 obj <<
4877 /Title 4 0 R
4878 /A 1 0 R
4879-/Parent 934 0 R
4880+/Parent 943 0 R
4881 /Next 23 0 R
4882 /First 7 0 R
4883 /Last 19 0 R
4884 /Count -4
4885 >> endobj
4886-935 0 obj <<
4887-/Names [(Doc-Start) 334 0 R (Hfootnote.1) 902 0 R (chapter*.1) 377 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]
4888+944 0 obj <<
4889+/Names [(Doc-Start) 338 0 R (Hfootnote.1) 907 0 R (chapter*.1) 381 0 R (chapter.1) 2 0 R (chapter.2) 22 0 R (chapter.3) 66 0 R]
4890 /Limits [(Doc-Start) (chapter.3)]
4891 >> endobj
4892-936 0 obj <<
4893-/Names [(chapter.4) 270 0 R (chapter.5) 318 0 R (figure.2.1) 579 0 R (lstlisting.2.-1) 466 0 R (lstlisting.2.-2) 488 0 R (lstlisting.2.-3) 507 0 R]
4894+945 0 obj <<
4895+/Names [(chapter.4) 270 0 R (chapter.5) 318 0 R (figure.2.1) 584 0 R (lstlisting.2.-1) 471 0 R (lstlisting.2.-2) 493 0 R (lstlisting.2.-3) 512 0 R]
4896 /Limits [(chapter.4) (lstlisting.2.-3)]
4897 >> endobj
4898-937 0 obj <<
4899-/Names [(lstlisting.2.-4) 528 0 R (lstlisting.2.-5) 540 0 R (lstlisting.2.-6) 551 0 R (lstlisting.3.-10) 619 0 R (lstlisting.3.-11) 623 0 R (lstlisting.3.-12) 625 0 R]
4900+946 0 obj <<
4901+/Names [(lstlisting.2.-4) 533 0 R (lstlisting.2.-5) 545 0 R (lstlisting.2.-6) 556 0 R (lstlisting.3.-10) 624 0 R (lstlisting.3.-11) 628 0 R (lstlisting.3.-12) 630 0 R]
4902 /Limits [(lstlisting.2.-4) (lstlisting.3.-12)]
4903 >> endobj
4904-938 0 obj <<
4905-/Names [(lstlisting.3.-13) 632 0 R (lstlisting.3.-14) 636 0 R (lstlisting.3.-15) 638 0 R (lstlisting.3.-16) 640 0 R (lstlisting.3.-17) 645 0 R (lstlisting.3.-18) 649 0 R]
4906+947 0 obj <<
4907+/Names [(lstlisting.3.-13) 637 0 R (lstlisting.3.-14) 641 0 R (lstlisting.3.-15) 643 0 R (lstlisting.3.-16) 645 0 R (lstlisting.3.-17) 650 0 R (lstlisting.3.-18) 654 0 R]
4908 /Limits [(lstlisting.3.-13) (lstlisting.3.-18)]
4909 >> endobj
4910-939 0 obj <<
4911-/Names [(lstlisting.3.-19) 653 0 R (lstlisting.3.-20) 659 0 R (lstlisting.3.-21) 661 0 R (lstlisting.3.-22) 667 0 R (lstlisting.3.-23) 671 0 R (lstlisting.3.-24) 673 0 R]
4912+948 0 obj <<
4913+/Names [(lstlisting.3.-19) 658 0 R (lstlisting.3.-20) 664 0 R (lstlisting.3.-21) 666 0 R (lstlisting.3.-22) 672 0 R (lstlisting.3.-23) 676 0 R (lstlisting.3.-24) 678 0 R]
4914 /Limits [(lstlisting.3.-19) (lstlisting.3.-24)]
4915 >> endobj
4916-940 0 obj <<
4917-/Names [(lstlisting.3.-25) 675 0 R (lstlisting.3.-26) 677 0 R (lstlisting.3.-27) 681 0 R (lstlisting.3.-28) 683 0 R (lstlisting.3.-29) 690 0 R (lstlisting.3.-30) 695 0 R]
4918+949 0 obj <<
4919+/Names [(lstlisting.3.-25) 680 0 R (lstlisting.3.-26) 682 0 R (lstlisting.3.-27) 686 0 R (lstlisting.3.-28) 688 0 R (lstlisting.3.-29) 695 0 R (lstlisting.3.-30) 700 0 R]
4920 /Limits [(lstlisting.3.-25) (lstlisting.3.-30)]
4921 >> endobj
4922-941 0 obj <<
4923-/Names [(lstlisting.3.-31) 697 0 R (lstlisting.3.-32) 700 0 R (lstlisting.3.-33) 705 0 R (lstlisting.3.-34) 707 0 R (lstlisting.3.-35) 710 0 R (lstlisting.3.-36) 715 0 R]
4924+950 0 obj <<
4925+/Names [(lstlisting.3.-31) 702 0 R (lstlisting.3.-32) 705 0 R (lstlisting.3.-33) 710 0 R (lstlisting.3.-34) 712 0 R (lstlisting.3.-35) 715 0 R (lstlisting.3.-36) 720 0 R]
4926 /Limits [(lstlisting.3.-31) (lstlisting.3.-36)]
4927 >> endobj
4928-942 0 obj <<
4929-/Names [(lstlisting.3.-37) 717 0 R (lstlisting.3.-38) 725 0 R (lstlisting.3.-39) 731 0 R (lstlisting.3.-40) 733 0 R (lstlisting.3.-41) 739 0 R (lstlisting.3.-42) 743 0 R]
4930+951 0 obj <<
4931+/Names [(lstlisting.3.-37) 722 0 R (lstlisting.3.-38) 730 0 R (lstlisting.3.-39) 736 0 R (lstlisting.3.-40) 738 0 R (lstlisting.3.-41) 744 0 R (lstlisting.3.-42) 748 0 R]
4932 /Limits [(lstlisting.3.-37) (lstlisting.3.-42)]
4933 >> endobj
4934-943 0 obj <<
4935-/Names [(lstlisting.3.-43) 745 0 R (lstlisting.3.-44) 755 0 R (lstlisting.3.-45) 760 0 R (lstlisting.3.-46) 763 0 R (lstlisting.3.-47) 766 0 R (lstlisting.3.-48) 771 0 R]
4936+952 0 obj <<
4937+/Names [(lstlisting.3.-43) 750 0 R (lstlisting.3.-44) 760 0 R (lstlisting.3.-45) 765 0 R (lstlisting.3.-46) 768 0 R (lstlisting.3.-47) 771 0 R (lstlisting.3.-48) 776 0 R]
4938 /Limits [(lstlisting.3.-43) (lstlisting.3.-48)]
4939 >> endobj
4940-944 0 obj <<
4941-/Names [(lstlisting.3.-49) 774 0 R (lstlisting.3.-50) 781 0 R (lstlisting.3.-51) 785 0 R (lstlisting.3.-52) 787 0 R (lstlisting.3.-53) 789 0 R (lstlisting.3.-54) 794 0 R]
4942+953 0 obj <<
4943+/Names [(lstlisting.3.-49) 779 0 R (lstlisting.3.-50) 786 0 R (lstlisting.3.-51) 790 0 R (lstlisting.3.-52) 792 0 R (lstlisting.3.-53) 794 0 R (lstlisting.3.-54) 799 0 R]
4944 /Limits [(lstlisting.3.-49) (lstlisting.3.-54)]
4945 >> endobj
4946-945 0 obj <<
4947-/Names [(lstlisting.3.-55) 796 0 R (lstlisting.3.-56) 798 0 R (lstlisting.3.-57) 803 0 R (lstlisting.3.-58) 805 0 R (lstlisting.3.-59) 807 0 R (lstlisting.3.-60) 809 0 R]
4948+954 0 obj <<
4949+/Names [(lstlisting.3.-55) 801 0 R (lstlisting.3.-56) 803 0 R (lstlisting.3.-57) 808 0 R (lstlisting.3.-58) 810 0 R (lstlisting.3.-59) 812 0 R (lstlisting.3.-60) 814 0 R]
4950 /Limits [(lstlisting.3.-55) (lstlisting.3.-60)]
4951 >> endobj
4952-946 0 obj <<
4953-/Names [(lstlisting.3.-61) 811 0 R (lstlisting.3.-62) 818 0 R (lstlisting.3.-63) 821 0 R (lstlisting.3.-64) 828 0 R (lstlisting.3.-65) 831 0 R (lstlisting.3.-66) 834 0 R]
4954+955 0 obj <<
4955+/Names [(lstlisting.3.-61) 816 0 R (lstlisting.3.-62) 823 0 R (lstlisting.3.-63) 826 0 R (lstlisting.3.-64) 833 0 R (lstlisting.3.-65) 836 0 R (lstlisting.3.-66) 839 0 R]
4956 /Limits [(lstlisting.3.-61) (lstlisting.3.-66)]
4957 >> endobj
4958-947 0 obj <<
4959-/Names [(lstlisting.3.-67) 837 0 R (lstlisting.3.-68) 840 0 R (lstlisting.3.-69) 843 0 R (lstlisting.3.-7) 612 0 R (lstlisting.3.-70) 850 0 R (lstlisting.3.-71) 853 0 R]
4960+956 0 obj <<
4961+/Names [(lstlisting.3.-67) 842 0 R (lstlisting.3.-68) 845 0 R (lstlisting.3.-69) 848 0 R (lstlisting.3.-7) 617 0 R (lstlisting.3.-70) 855 0 R (lstlisting.3.-71) 858 0 R]
4962 /Limits [(lstlisting.3.-67) (lstlisting.3.-71)]
4963 >> endobj
4964-948 0 obj <<
4965-/Names [(lstlisting.3.-72) 856 0 R (lstlisting.3.-73) 859 0 R (lstlisting.3.-74) 862 0 R (lstlisting.3.-75) 869 0 R (lstlisting.3.-76) 872 0 R (lstlisting.3.-77) 875 0 R]
4966+957 0 obj <<
4967+/Names [(lstlisting.3.-72) 861 0 R (lstlisting.3.-73) 864 0 R (lstlisting.3.-74) 867 0 R (lstlisting.3.-75) 874 0 R (lstlisting.3.-76) 877 0 R (lstlisting.3.-77) 880 0 R]
4968 /Limits [(lstlisting.3.-72) (lstlisting.3.-77)]
4969 >> endobj
4970-949 0 obj <<
4971-/Names [(lstlisting.3.-8) 615 0 R (lstlisting.3.-9) 617 0 R (lstnumber.-1.1) 467 0 R (lstnumber.-1.10) 478 0 R (lstnumber.-1.11) 479 0 R (lstnumber.-1.12) 480 0 R]
4972+958 0 obj <<
4973+/Names [(lstlisting.3.-8) 620 0 R (lstlisting.3.-9) 622 0 R (lstnumber.-1.1) 472 0 R (lstnumber.-1.10) 483 0 R (lstnumber.-1.11) 484 0 R (lstnumber.-1.12) 485 0 R]
4974 /Limits [(lstlisting.3.-8) (lstnumber.-1.12)]
4975 >> endobj
4976-950 0 obj <<
4977-/Names [(lstnumber.-1.13) 481 0 R (lstnumber.-1.14) 482 0 R (lstnumber.-1.15) 487 0 R (lstnumber.-1.2) 469 0 R (lstnumber.-1.3) 470 0 R (lstnumber.-1.4) 471 0 R]
4978+959 0 obj <<
4979+/Names [(lstnumber.-1.13) 486 0 R (lstnumber.-1.14) 487 0 R (lstnumber.-1.15) 492 0 R (lstnumber.-1.2) 474 0 R (lstnumber.-1.3) 475 0 R (lstnumber.-1.4) 476 0 R]
4980 /Limits [(lstnumber.-1.13) (lstnumber.-1.4)]
4981 >> endobj
4982-951 0 obj <<
4983-/Names [(lstnumber.-1.5) 473 0 R (lstnumber.-1.6) 474 0 R (lstnumber.-1.7) 475 0 R (lstnumber.-1.8) 476 0 R (lstnumber.-1.9) 477 0 R (lstnumber.-10.1) 620 0 R]
4984+960 0 obj <<
4985+/Names [(lstnumber.-1.5) 478 0 R (lstnumber.-1.6) 479 0 R (lstnumber.-1.7) 480 0 R (lstnumber.-1.8) 481 0 R (lstnumber.-1.9) 482 0 R (lstnumber.-10.1) 625 0 R]
4986 /Limits [(lstnumber.-1.5) (lstnumber.-10.1)]
4987 >> endobj
4988-952 0 obj <<
4989-/Names [(lstnumber.-10.2) 621 0 R (lstnumber.-10.3) 622 0 R (lstnumber.-11.1) 624 0 R (lstnumber.-12.1) 626 0 R (lstnumber.-13.1) 633 0 R (lstnumber.-13.2) 634 0 R]
4990+961 0 obj <<
4991+/Names [(lstnumber.-10.2) 626 0 R (lstnumber.-10.3) 627 0 R (lstnumber.-11.1) 629 0 R (lstnumber.-12.1) 631 0 R (lstnumber.-13.1) 638 0 R (lstnumber.-13.2) 639 0 R]
4992 /Limits [(lstnumber.-10.2) (lstnumber.-13.2)]
4993 >> endobj
4994-953 0 obj <<
4995-/Names [(lstnumber.-13.3) 635 0 R (lstnumber.-14.1) 637 0 R (lstnumber.-15.1) 639 0 R (lstnumber.-16.1) 641 0 R (lstnumber.-16.2) 642 0 R (lstnumber.-16.3) 643 0 R]
4996+962 0 obj <<
4997+/Names [(lstnumber.-13.3) 640 0 R (lstnumber.-14.1) 642 0 R (lstnumber.-15.1) 644 0 R (lstnumber.-16.1) 646 0 R (lstnumber.-16.2) 647 0 R (lstnumber.-16.3) 648 0 R]
4998 /Limits [(lstnumber.-13.3) (lstnumber.-16.3)]
4999 >> endobj
5000-954 0 obj <<
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches