summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/subfig
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-09 00:49:07 +0000
committerKarl Berry <karl@freefriends.org>2006-01-09 00:49:07 +0000
commit007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch)
tree90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/subfig
parent950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff)
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/subfig')
-rw-r--r--Master/texmf-dist/doc/latex/subfig/README99
-rw-r--r--Master/texmf-dist/doc/latex/subfig/subfig.pdf12042
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test1.pdfbin0 -> 74911 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test1.tex712
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test2.pdfbin0 -> 44151 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test2.tex199
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test3.pdfbin0 -> 59722 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test3.tex206
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test4.pdfbin0 -> 53710 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test4.tex144
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test5.pdfbin0 -> 50788 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test5.tex333
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test6.pdfbin0 -> 212201 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test6.tex542
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test7.pdfbin0 -> 26905 bytes
-rw-r--r--Master/texmf-dist/doc/latex/subfig/test7.tex122
16 files changed, 14399 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/subfig/README b/Master/texmf-dist/doc/latex/subfig/README
new file mode 100644
index 00000000000..d3312fe53ca
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/README
@@ -0,0 +1,99 @@
+Manifest and Documentation for the `subfig' package (version 1.3).
+------------------------------------------------------------------------
+
+This directory contains version 1.3 of the subfig package. In a UNIX
+or UNIX-like command shell, use `make' to extract the subfig package
+and run the local tests.
+
+
+MANIFEST:
+---------
+ The following files as well as the derivative files `subfig.sty' and
+ `altsf.cfg' constitute the subfig package and are considered as "the
+ work" under the LaTeX Project Public License (LPPL 1.3 or later).
+
+Makefile UNIX makefile to extract the subfig package
+ and related material.
+README This file.
+subfig.dtx The documented subfig package.
+subfig.ins The subfig package installation file.
+subfig.pdf The subfig package documentation (in PDF).
+test1.tex Test one: Basic checks and examples.
+test2.tex Test two: Check for extra space around figure
+test3.tex Test four: Test of optional args and \subref.
+test4.tex Test four: Test of interaction with hyperref.
+test5.tex Test five: Test of continued figures.
+test6.tex Test six: Test of options and option interaction.
+test7.tex Test seven: Test of class/package misuse of \let.
+
+
+FILES AFTER `make':
+-------------------
+Makefile UNIX makefile to extract the subfig package
+ and related material.
+README This file.
+altsf.cfg A subfig configuration file (which make the subfig
+ package act similar to the subfigure package).
+ltxdoc.cfg Configuration file to print change history and
+ index on the subfig package documentation.
+subfig.dtx The documented subfig package.
+subfig.ins The subfig package installation file.
+subfig.pdf The subfig package documentation (in PDF).
+subfig.ps The subfig package documentation (in PostScript).
+subfig.sty The subfig package
+test1.ps Results of test one.
+test1.tex Test one: Basic checks and examples.
+test2.ps Results of test two.
+test2.tex Test two: Check for extra space around figure
+test3.ps Results of test three.
+test3.tex Test four: Test of optional args and \subref.
+test4.pdf Results of test four.
+test4.tex Test four: Test of interaction with hyperref.
+test5.ps Results of test five.
+test5.tex Test five: Test of continued figures.
+test6.ps Results of test six.
+test6.tex Test six: Test of options and option interaction.
+test7.tex Test seven: Test of class/package misuse of \let.
+test7a.ps Log from test seven run.
+test7b.ps Results of test seven.
+
+
+NOTES:
+------
+
+1. To verify the results of the test(s) (which are run using the
+ preferred options), compare with the test(s) found at:
+ http://www.cs.cmu.edu/~sdc/latex/subfig.13/
+
+2. This version of the subfig package removes a "feature" which
+ allowed a line break to occur between two subfloats separated
+ by whitespace instead of requiring an explicit "\\". If this
+ "feature" was used to position sub-floats, they may now be
+ incorrectly displayed.
+
+ If this occurs, the solution is to add an expicit linebreak
+ between the problem sub-floats. For example, the following
+ to the left would seem to work correctly, but suppressed
+ the "farskip" placing the figures too close together and
+ will, now, no longer work. It should be written as on the
+ left.
+
+ \begin{figure} \begin{figure}
+ \centering \centering
+ \subfloat[One.]{...}% \subfloat[One.]{...}
+ \hspace{.25in}% \hspace{.25in}%
+ \subfloat[Two.]{...} \subfloat[Two.]{...} \\
+ \subfloat[Three.]{...}% \subfloat[Three.]{...}
+ \hspace{.25in}% \hspace{.25in}%
+ \subfloat[Four.]{...}% \subfloat[Four.]{...}
+ \caption{Simple Case.} \caption{Simple Case.}
+ \end{figure} \end{figure}
+
+
+
+
+
+
+
+
+
diff --git a/Master/texmf-dist/doc/latex/subfig/subfig.pdf b/Master/texmf-dist/doc/latex/subfig/subfig.pdf
new file mode 100644
index 00000000000..5dc6fcb9eb0
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/subfig.pdf
@@ -0,0 +1,12042 @@
+%PDF-1.4
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Introduction)
+endobj
+9 0 obj
+<< /S /GoTo /D (subsection.1.1) >>
+endobj
+12 0 obj
+(Do You Need This Package?)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+16 0 obj
+(Package Commands)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsection.2.1) >>
+endobj
+20 0 obj
+(Preamble Commands)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsubsection.2.1.1) >>
+endobj
+24 0 obj
+(The \134usepackage Command)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsubsection.2.1.2) >>
+endobj
+28 0 obj
+(The \134newsubfloat Command)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsubsection.2.1.3) >>
+endobj
+32 0 obj
+(The \134DeclareCaptionListOfFormat Command)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsubsection.2.1.4) >>
+endobj
+36 0 obj
+(The \134DeclareSubrefFormat Command)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsection.2.2) >>
+endobj
+40 0 obj
+(General Commands)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsubsection.2.2.1) >>
+endobj
+44 0 obj
+(The \134subfloat Command)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsubsection.2.2.2) >>
+endobj
+48 0 obj
+(The \134subref Command)
+endobj
+49 0 obj
+<< /S /GoTo /D (subsubsection.2.2.3) >>
+endobj
+52 0 obj
+(The \134ContinuedFloat Command)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsubsection.2.2.4) >>
+endobj
+56 0 obj
+(The \134listsubcaptions Command)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsubsection.2.2.5) >>
+endobj
+60 0 obj
+(The \134captionsetup Command)
+endobj
+61 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+64 0 obj
+(Options: Keywords and Values)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+68 0 obj
+(Options from the Caption Package)
+endobj
+69 0 obj
+<< /S /GoTo /D (subsubsection.3.1.1) >>
+endobj
+72 0 obj
+(The Caption Font Settings)
+endobj
+73 0 obj
+<< /S /GoTo /D (subsubsection.3.1.2) >>
+endobj
+76 0 obj
+(The Caption Shape Settings)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsubsection.3.1.3) >>
+endobj
+80 0 obj
+(The Caption Justification Options)
+endobj
+81 0 obj
+<< /S /GoTo /D (subsubsection.3.1.4) >>
+endobj
+84 0 obj
+(The Caption Label Options)
+endobj
+85 0 obj
+<< /S /GoTo /D (subsubsection.3.1.5) >>
+endobj
+88 0 obj
+(The Caption Position Option)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+92 0 obj
+(Options from the Subfig Package)
+endobj
+93 0 obj
+<< /S /GoTo /D (subsubsection.3.2.1) >>
+endobj
+96 0 obj
+(The Subfig Configuration Specification)
+endobj
+97 0 obj
+<< /S /GoTo /D (subsubsection.3.2.2) >>
+endobj
+100 0 obj
+(The Subfig List-of-Floats Specification)
+endobj
+101 0 obj
+<< /S /GoTo /D (subsubsection.3.2.3) >>
+endobj
+104 0 obj
+(The Subfig Layout)
+endobj
+105 0 obj
+<< /S /GoTo /D (subsubsection.3.2.4) >>
+endobj
+108 0 obj
+(The Subfig Package Startup)
+endobj
+109 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+112 0 obj
+(Compatibility With Other Packages.)
+endobj
+113 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+116 0 obj
+(Caption Package)
+endobj
+117 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+120 0 obj
+(Float Package)
+endobj
+121 0 obj
+<< /S /GoTo /D (subsection.4.3) >>
+endobj
+124 0 obj
+(FloatRow Package)
+endobj
+125 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+128 0 obj
+(verbatim and fancyvrb packages)
+endobj
+129 0 obj
+<< /S /GoTo /D (subsection.4.5) >>
+endobj
+132 0 obj
+(IEEEtrans Class)
+endobj
+133 0 obj
+<< /S /GoTo /D (subsection.4.6) >>
+endobj
+136 0 obj
+(Other Packages)
+endobj
+137 0 obj
+<< /S /GoTo /D (subsection.4.7) >>
+endobj
+140 0 obj
+(Backward Compatibility with the Subfigure Package)
+endobj
+141 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+144 0 obj
+(Some Examples)
+endobj
+145 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+148 0 obj
+(A Simple Example)
+endobj
+149 0 obj
+<< /S /GoTo /D (subsection.5.2) >>
+endobj
+152 0 obj
+(A More Advanced Example)
+endobj
+153 0 obj
+<< /S /GoTo /D (subsection.5.3) >>
+endobj
+156 0 obj
+(An Example Without Sub-caption Text)
+endobj
+157 0 obj
+<< /S /GoTo /D (subsection.5.4) >>
+endobj
+160 0 obj
+(Another Example)
+endobj
+161 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+164 0 obj
+(Frequently Asked Questions \(FAQs\))
+endobj
+165 0 obj
+<< /S /GoTo /D (subsection.6.1) >>
+endobj
+168 0 obj
+(``My sub-floats are not aligned along their bottoms. Why?'')
+endobj
+169 0 obj
+<< /S /GoTo /D (subsection.6.2) >>
+endobj
+172 0 obj
+(``How can I get my floats/sub-floats to line up the way I want?'')
+endobj
+173 0 obj
+<< /S /GoTo /D (subsection.6.3) >>
+endobj
+176 0 obj
+(``I have too many sub-floats for one page, How can I spread them over two or more pages and continue the numbering?'')
+endobj
+177 0 obj
+<< /S /GoTo /D (subsection.6.4) >>
+endobj
+180 0 obj
+(``Why do I get a garbled caption or an error when I use square brackets?'')
+endobj
+181 0 obj
+<< /S /GoTo /D (subsection.6.5) >>
+endobj
+184 0 obj
+(``How do I make my subcaptions print on the List-of-Floats pages?'')
+endobj
+185 0 obj
+<< /S /GoTo /D (subsection.6.6) >>
+endobj
+188 0 obj
+(``I set an option and it had no effect. What is happening?'')
+endobj
+189 0 obj
+<< /S /GoTo /D (subsection.6.7) >>
+endobj
+192 0 obj
+(``How do I make a change in the settings for just a single float?'')
+endobj
+193 0 obj
+<< /S /GoTo /D (subsection.6.8) >>
+endobj
+196 0 obj
+(``How do I put text labels on an imported sub-float?'')
+endobj
+197 0 obj
+<< /S /GoTo /D (subsection.6.9) >>
+endobj
+200 0 obj
+(``I want my sub-floats to be ordered by column rather than by row, how do I do that?'')
+endobj
+201 0 obj
+<< /S /GoTo /D (subsection.6.10) >>
+endobj
+204 0 obj
+(``How do I put a verbatim environment in a sub-float?'')
+endobj
+205 0 obj
+<< /S /GoTo /D (section.7) >>
+endobj
+208 0 obj
+(The Code)
+endobj
+209 0 obj
+<< /S /GoTo /D (subsection.7.1) >>
+endobj
+212 0 obj
+(Identification)
+endobj
+213 0 obj
+<< /S /GoTo /D (subsection.7.2) >>
+endobj
+216 0 obj
+(Check for Nasty Classes)
+endobj
+217 0 obj
+<< /S /GoTo /D (subsection.7.3) >>
+endobj
+220 0 obj
+(Load The Caption Package)
+endobj
+221 0 obj
+<< /S /GoTo /D (subsubsection.7.3.1) >>
+endobj
+224 0 obj
+(Load The Keyval Package and Scan Options)
+endobj
+225 0 obj
+<< /S /GoTo /D (subsubsection.7.3.2) >>
+endobj
+228 0 obj
+(Load and Extend the Caption Package)
+endobj
+229 0 obj
+<< /S /GoTo /D (subsection.7.4) >>
+endobj
+232 0 obj
+(Options Processing)
+endobj
+233 0 obj
+<< /S /GoTo /D (subsection.7.5) >>
+endobj
+236 0 obj
+(Generalized List-of-Floats)
+endobj
+237 0 obj
+<< /S /GoTo /D (subsection.7.6) >>
+endobj
+240 0 obj
+(Create New Sub-floats)
+endobj
+241 0 obj
+<< /S /GoTo /D (subsection.7.7) >>
+endobj
+244 0 obj
+(Layout Parameters)
+endobj
+245 0 obj
+<< /S /GoTo /D (subsection.7.8) >>
+endobj
+248 0 obj
+(Process the Package Options)
+endobj
+249 0 obj
+<< /S /GoTo /D (subsection.7.9) >>
+endobj
+252 0 obj
+(Define the Sub-float Layout)
+endobj
+253 0 obj
+<< /S /GoTo /D (subsection.7.10) >>
+endobj
+256 0 obj
+(Use the Caption Package to Build the Sub-float Captions)
+endobj
+257 0 obj
+<< /S /GoTo /D (subsection.7.11) >>
+endobj
+260 0 obj
+(Subfig Caption Processing for the List-of-Floats Files)
+endobj
+261 0 obj
+<< /S /GoTo /D (subsection.7.12) >>
+endobj
+264 0 obj
+(Sub-float Label Handling)
+endobj
+265 0 obj
+<< /S /GoTo /D (subsection.7.13) >>
+endobj
+268 0 obj
+(Support for Continued Figures)
+endobj
+269 0 obj
+<< /S /GoTo /D (subsection.7.14) >>
+endobj
+272 0 obj
+(Automate the Sub-float Listings)
+endobj
+273 0 obj
+<< /S /GoTo /D (subsection.7.15) >>
+endobj
+276 0 obj
+(Provide Compatibility with Other Packages)
+endobj
+277 0 obj
+<< /S /GoTo /D (subsubsection.7.15.1) >>
+endobj
+280 0 obj
+(The Hyperref Package)
+endobj
+281 0 obj
+<< /S /GoTo /D (subsubsection.7.15.2) >>
+endobj
+284 0 obj
+(The Float Package)
+endobj
+285 0 obj
+<< /S /GoTo /D (subsubsection.7.15.3) >>
+endobj
+288 0 obj
+(The Fixltx2e Package)
+endobj
+289 0 obj
+<< /S /GoTo /D (section.8) >>
+endobj
+292 0 obj
+(Acknowledgments)
+endobj
+293 0 obj
+<< /S /GoTo /D [294 0 R /Fit ] >>
+endobj
+296 0 obj <<
+/Length 1579
+/Filter /FlateDecode
+>>
+stream
+xڍWYoF~ׯ[( \}&HvI-DlYJdʦzٹoG"'2}cAi m`ׅH&0-LcKK͂.+svqJL8X2:Ϥ ,XnRcq%F<ݜ>q7IrX;L
+-M.U& H<c 2'?q0-Ly0%a)]^c/ٕ͟7W(mK<i0$3 ހDݗ;:<Æ&o]TDM}ҋ)ܐD=4sjief*& 9/0b#מUJv&PSڮO|2qNWK/6*zH"|OL@ċuww>
+JFVaFXLtk< ?aj}Cv[p@i1>W8rkLYi3m
+IVQ.Lsqas:8<hx7o C| bÜYOp ^3\ntuO=0h+\[:T 34OsAKfL] 4Rቘ<jprS+&k8zxlZ.>~d,Uп=„3_@[waX-n l6=΍ GcC2 VRWx
+endobj
+294 0 obj <<
+/Type /Page
+/Contents 296 0 R
+/Resources 295 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+>> endobj
+297 0 obj <<
+/D [294 0 R /XYZ 108 757.9346 null]
+>> endobj
+298 0 obj <<
+/D [294 0 R /XYZ 108 734.0242 null]
+>> endobj
+295 0 obj <<
+/Font << /F17 301 0 R /F18 304 0 R /F23 307 0 R /F19 310 0 R /F30 313 0 R /F33 316 0 R /F32 319 0 R /F25 322 0 R /F36 325 0 R /F37 328 0 R /F29 331 0 R /F24 334 0 R /F31 337 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+341 0 obj <<
+/Length 66
+/Filter /FlateDecode
+>>
+stream
+x3T0
+endobj
+340 0 obj <<
+/Type /Page
+/Contents 341 0 R
+/Resources 339 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+>> endobj
+342 0 obj <<
+/D [340 0 R /XYZ 144 757.9346 null]
+>> endobj
+339 0 obj <<
+/ProcSet [ /PDF ]
+>> endobj
+345 0 obj <<
+/Length 3374
+/Filter /FlateDecode
+>>
+stream
+x[s)4ygۗHivjM3EIlH!A_} Tx2 <={ 6
+id ܘ?#5^<>HK*O.OH\\s㳳t%AJH]:ɴȜ֫#,wxڎƤZixIξ9ŷ'cJ&v&hmeNYBw/m_
+Li cտF5ڭ?}+tq;"lcxjD몙ؿfyG
+ɻMQىƥ١.) vsG(VhR
+{P/WV)Hr ˰yuj x, Z*1cwRMy6rZiV̩=.GVcŧD9#$bD 0<^>z &59ܤ.Ed(i0 l'"&45P:F95fiCٴ!M>95"qY\FUKcxf
+8$vE C ұ-.fZK(l]V"3W):0ҬNy/[g LmVe{ffx>zǠ P/
+9cDAuìđXB1,= PJI R
+4+rBBv7"xwd
+ wc5lD
+3@"%.ֿ;&[D8y4yiw=4A&zdD#Hl%oחG.WJVIy2cY<G
+2*
+8TH)6V\a+}m ׼XHYqo!EF_
+!  Ǭrm?S"+hc*?alѵn[^ko.Õl%vp;hOyi7^@EejWF"~a_üoc_p.5]XqM>qEX h5$Zi-4bJm}PC1E8n֗ ]ݿnG1Mx]^}w}` q˷(Ruq˶QD/f
+3
+endobj
+344 0 obj <<
+/Type /Page
+/Contents 345 0 R
+/Resources 343 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 353 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 375 0 R 376 0 R 377 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 ]
+>> endobj
+353 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 701.1475 223.1058 710.0585]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+357 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 687.2552 306.6127 698.1034]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.1.1) >>
+>> endobj
+358 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 665.3374 259.4913 676.1856]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+359 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 655.3194 275.7838 664.2304]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.1) >>
+>> endobj
+360 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 640.8735 336.0025 652.8287]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.1) >>
+>> endobj
+361 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 628.9184 339.8769 640.8735]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+362 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 616.9632 415.0674 628.9184]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.3) >>
+>> endobj
+363 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 605.008 380.5855 616.9632]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.4) >>
+>> endobj
+364 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 595.5435 268.7961 604.4545]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.2) >>
+>> endobj
+365 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 581.0977 322.719 593.0529]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.1) >>
+>> endobj
+366 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 569.1425 314.7212 581.0977]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.2) >>
+>> endobj
+367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 557.1874 356.2877 569.1425]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.3) >>
+>> endobj
+368 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 545.2322 352.9944 557.1874]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+369 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 533.277 343.7513 545.2322]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+370 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 511.9127 315.5336 522.7609]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+371 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 499.9575 331.7131 510.8057]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+375 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 488.0023 328.9733 498.8505]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.1) >>
+>> endobj
+376 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 476.0472 335.4767 486.8954]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.2) >>
+>> endobj
+377 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 464.092 361.9608 474.9402]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.3) >>
+>> endobj
+378 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 452.1368 332.8477 462.985]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.4) >>
+>> endobj
+379 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 440.1817 340.0429 451.0299]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.5) >>
+>> endobj
+380 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 428.2265 325.5971 439.0747]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+381 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 416.2713 383.0207 427.1195]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.1) >>
+>> endobj
+382 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 404.3162 381.72 415.1644]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.2) >>
+>> endobj
+383 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 392.361 295.1279 403.2092]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.3) >>
+>> endobj
+384 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 380.4058 336.1132 391.254]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.4) >>
+>> endobj
+385 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 358.488 343.3777 369.3362]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+386 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 346.5328 253.3125 357.381]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+387 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 334.5777 242.3259 345.4259]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+388 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 322.6225 260.4109 333.4707]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.3) >>
+>> endobj
+389 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 310.6673 317.9591 321.5155]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+390 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 300.6493 250.3514 309.5604]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.5) >>
+>> endobj
+391 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 286.757 250.3237 297.6052]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.6) >>
+>> endobj
+392 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 274.8018 409.6432 285.65]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+393 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 252.884 238.6599 263.7322]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+394 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 240.9288 264.3545 251.777]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.1) >>
+>> endobj
+395 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 228.9737 303.4026 239.8219]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.2) >>
+>> endobj
+396 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 217.0185 355.9556 227.8667]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.3) >>
+>> endobj
+397 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 205.0633 259.9543 215.9115]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.4) >>
+>> endobj
+398 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 182.592 340.8497 194.5472]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+399 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 171.1903 442.9352 182.0385]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+400 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6817 462.5283 170.6369]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.2) >>
+>> endobj
+401 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 147.28 524.2718 158.1282]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.3) >>
+>> endobj
+402 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 135.3248 398.2968 146.173]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.3) >>
+>> endobj
+403 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 123.3697 505.8935 134.2179]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.4) >>
+>> endobj
+404 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 111.4145 479.5479 122.2627]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+405 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 99.4593 440.6105 110.3075]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.6) >>
+>> endobj
+406 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 87.5042 463.995 98.3524]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.7) >>
+>> endobj
+407 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 75.549 416.285 86.3972]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.8) >>
+>> endobj
+352 0 obj <<
+/D [344 0 R /XYZ 144 714.1959 null]
+>> endobj
+343 0 obj <<
+/Font << /F8 348 0 R /F39 351 0 R /F40 356 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+410 0 obj <<
+/Length 3174
+/Filter /FlateDecode
+>>
+stream
+xnG^bHq*M$)鷫95X€H1`R^eR_nЋ+wOXz67Ozn/q7x3yX}󯯞KDq'rB\w)F1Hcmy}7fP&rb_MgX*ɷo7Q\nƿnߛKB5[70&㉐r!e+`Q-F5<Xo>myǝpx{LwtuY8~
+pT™m$0{FY<'rO@SkI ε 纗c⢅+*ZZM:m4x^1/y;'׸D2<>091d0le࢕,&ZIS,WړyX[N$e*
+EtT$bS}@_a4a
+,&*]9Ly mn2ۛxl춆Ŧ^~>[ NRBj>n $ ,AS
+:2k.\w
+X>3?\/Bw}WaKvY_ޅQJXl6RO/_vI-b[؁_c8[̤͋rY[vz馛K[G_.%HWLObK> z"ʉN C, D5-1lL(1LEJbY4ZWDPR.mX벗w-QrcA-ڣ#d32 CŘ)&ZƯR Oqm096T˅5%k om1hEa$?ퟦ9KNFyrtsudW
+vȑBWҎdRP4,0bŏ(V-I`|g怜 4aZ" PL@Pt,~VtenP1b1`ބ!cQ}PC/h$ؠ CllV`m-?</j~*_p6V`/tN
+p Sj<SSe$jS|1STh5P;#N͞W3U2& U*Z}V_x!9;a{|S<*#0U務
+D#šSw2ٖV ˀjb0*L
+Q,r
+S{(eE%ĝ2endstream
+endobj
+409 0 obj <<
+/Type /Page
+/Contents 410 0 R
+/Resources 408 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 417 0 R 418 0 R 419 0 R 420 0 R 421 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 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R ]
+>> endobj
+417 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 721.1282 524.2718 731.9764]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.9) >>
+>> endobj
+418 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 711.1102 245.3977 720.0212]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.9) >>
+>> endobj
+419 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 697.2178 424.5595 708.066]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.10) >>
+>> endobj
+420 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 677.2372 209.2827 686.1482]
+/Subtype /Link
+/A << /S /GoTo /D (section.7) >>
+>> endobj
+421 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 665.282 240.4164 674.193]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.1) >>
+>> endobj
+422 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 651.3897 287.7113 662.2379]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.2) >>
+>> endobj
+423 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 639.4345 298.8363 650.2827]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.3) >>
+>> endobj
+424 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 627.4793 406.8758 638.3275]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.1) >>
+>> endobj
+425 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 615.5242 381.4987 626.3724]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.2) >>
+>> endobj
+426 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 603.569 266.4854 614.3065]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.4) >>
+>> endobj
+427 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 593.551 295.6953 602.462]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.5) >>
+>> endobj
+428 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 581.5958 280.6268 590.5069]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.6) >>
+>> endobj
+429 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 567.7035 265.7105 578.441]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.7) >>
+>> endobj
+430 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 555.7483 308.4115 566.5965]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.8) >>
+>> endobj
+431 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 543.7932 303.79 554.6414]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.9) >>
+>> endobj
+432 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 531.838 430.6755 542.6862]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.10) >>
+>> endobj
+433 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 519.8828 415.3718 530.731]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.11) >>
+>> endobj
+434 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 507.9277 292.582 518.7759]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.12) >>
+>> endobj
+435 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 495.9725 316.7968 506.8207]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.13) >>
+>> endobj
+436 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 484.0173 323.4109 494.8655]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.14) >>
+>> endobj
+437 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 472.0621 373.3626 482.9104]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.15) >>
+>> endobj
+438 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 460.107 309.7399 470.9552]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+439 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 448.1518 294.6852 459]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.2) >>
+>> endobj
+440 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 436.1966 305.8931 447.0448]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.3) >>
+>> endobj
+441 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 414.2788 249.8194 425.127]
+/Subtype /Link
+/A << /S /GoTo /D (section.8) >>
+>> endobj
+443 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 359.512 326.7317 370.3602]
+/Subtype /Link
+/A << /S /GoTo /D (figure.1) >>
+>> endobj
+444 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.4941 206.5987 358.2944]
+/Subtype /Link
+/A << /S /GoTo /D (figure.2) >>
+>> endobj
+445 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 337.5389 216.0632 346.4499]
+/Subtype /Link
+/A << /S /GoTo /D (figure.3) >>
+>> endobj
+446 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 323.6465 403.3888 334.4947]
+/Subtype /Link
+/A << /S /GoTo /D (figure.4) >>
+>> endobj
+447 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 311.1379 524.2718 323.0931]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+448 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 299.1827 416.8385 311.1379]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+449 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 287.781 244.1524 298.6292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.6) >>
+>> endobj
+450 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 275.2724 285.2484 287.2276]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.6.1) >>
+>> endobj
+451 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 263.8707 259.2071 274.6082]
+/Subtype /Link
+/A << /S /GoTo /D (figure.7) >>
+>> endobj
+452 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 251.362 302.129 263.3172]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.1) >>
+>> endobj
+456 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 239.4069 302.129 251.362]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.2) >>
+>> endobj
+457 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 227.4517 328.2807 239.4069]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.3) >>
+>> endobj
+458 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 215.4965 302.129 227.4517]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.4) >>
+>> endobj
+459 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 203.5414 338.7414 215.4965]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.5) >>
+>> endobj
+460 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 191.5862 328.2807 203.5414]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.6) >>
+>> endobj
+461 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 180.1845 271.9095 191.0327]
+/Subtype /Link
+/A << /S /GoTo /D (figure.8) >>
+>> endobj
+462 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 167.6759 327.7827 179.631]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.1) >>
+>> endobj
+463 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 155.7207 327.7827 167.6759]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.2) >>
+>> endobj
+464 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 143.7655 327.7827 155.7207]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.3) >>
+>> endobj
+465 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 131.8104 327.7827 143.7655]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.4) >>
+>> endobj
+466 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 119.8552 327.7827 131.8104]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.5) >>
+>> endobj
+467 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 107.9 327.7827 119.8552]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.6) >>
+>> endobj
+468 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 95.9449 327.7827 107.9]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.7) >>
+>> endobj
+469 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 83.9897 327.7827 95.9449]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.8) >>
+>> endobj
+442 0 obj <<
+/D [409 0 R /XYZ 144 371.6111 null]
+>> endobj
+408 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F41 374 0 R /F39 351 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+495 0 obj <<
+/Length 2175
+/Filter /FlateDecode
+>>
+stream
+xMsG
+*<||IUHU.F8c16I~~FtѾcEW3=ka3嗙fG ӏ]_G#Yɳ/,(Ng89y`>>'XlU8$Of)2wf/vuhn./KgŁQW8tys"YEAobZq҄dPp}_Vɕ( i@`A~m*k(3|kՑ,[a-a̴T0B,!etJgze▽WJ+QW0B ޶yam_/T#(RIH*R&UHILbgק)UCeRph
+T1(r:7>.J)oө?vjD:N2ċ
+eSTԜʄeujT:^2D
+e<)k5o? Rіש!H%ʀT/
+T(rZy xK*W x%#`({B+Jʑ-_;U IG*Q|T0B, [σT:evH:R2 䋤,
+eS^g^W(mY*T H%"`(KBT>]춥ә!RɲiF|T8ICYϙ7_vcV/^F(^I+^P*$=߻1Ӫ#(RIH*RPR ?TZ-KcUCґJ$_$ eP(K圊ߝRXUte@*ICY*j|R\ż%cZrq) 5hC}`9|wqv1<;}v*hr(~IֵU֢ }742kXV0~l%r\?COb]`e
+muR)6UOa۳W}uK>%EU>ͭz\  V\.uʰ\_UKK2;ZSadٴ
+ڌ8w wȉ2@nE@29șP!׌|T(ow:-7ʎ 0]
+m.hSi$ZVöxB't2`
+VSßIn'!'
+C*
+mT0(6OyMY hTzP6U)|`&46ɭ E<a(D'Gi6rY&Q_.;U XUoAMZC*Z29)mozMr;/ FM5 m`RPzx_ko*Sl#4p.\P (A!:e ܺAdV|wfigӁ+
+endobj
+494 0 obj <<
+/Type /Page
+/Contents 495 0 R
+/Resources 493 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R ]
+>> endobj
+497 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 720.5747 327.7827 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.9) >>
+>> endobj
+498 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 708.6195 327.7827 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.10) >>
+>> endobj
+499 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 696.6643 327.7827 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.11) >>
+>> endobj
+500 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 684.7092 327.7827 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.12) >>
+>> endobj
+501 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 672.754 327.7827 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.13) >>
+>> endobj
+502 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 660.7988 327.7827 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.14) >>
+>> endobj
+503 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 648.8437 327.7827 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.15) >>
+>> endobj
+504 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 636.8885 327.7827 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.16) >>
+>> endobj
+505 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 624.9333 327.7827 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.17) >>
+>> endobj
+506 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 612.9782 327.7827 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.18) >>
+>> endobj
+507 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 601.023 327.7827 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.19) >>
+>> endobj
+508 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 589.0678 327.7827 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.20) >>
+>> endobj
+509 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 577.1127 327.7827 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.21) >>
+>> endobj
+510 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 565.1575 327.7827 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.22) >>
+>> endobj
+511 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 553.2023 327.7827 565.1575]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.23) >>
+>> endobj
+512 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 541.2472 327.7827 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+513 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 529.292 338.6858 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+514 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 517.3368 234.079 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+515 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 505.3817 417.1409 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.11) >>
+>> endobj
+516 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.4265 302.0734 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (figure.12) >>
+>> endobj
+517 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 481.4713 422.3713 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.13) >>
+>> endobj
+518 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 469.5162 307.3038 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (figure.14) >>
+>> endobj
+519 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 457.561 524.2718 469.5162]
+/Subtype /Link
+/A << /S /GoTo /D (figure.15) >>
+>> endobj
+520 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 445.6058 298.2263 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (figure.15) >>
+>> endobj
+521 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 433.6507 385.7589 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (figure.16) >>
+>> endobj
+522 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 421.6955 401.4499 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (figure.17) >>
+>> endobj
+523 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 409.7403 286.3824 421.6955]
+/Subtype /Link
+/A << /S /GoTo /D (figure.18) >>
+>> endobj
+524 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 397.7851 479.905 409.7403]
+/Subtype /Link
+/A << /S /GoTo /D (figure.19) >>
+>> endobj
+525 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 385.83 364.8375 397.7851]
+/Subtype /Link
+/A << /S /GoTo /D (figure.20) >>
+>> endobj
+526 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 373.8748 524.2718 385.83]
+/Subtype /Link
+/A << /S /GoTo /D (figure.21) >>
+>> endobj
+527 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 361.9196 298.2263 373.8748]
+/Subtype /Link
+/A << /S /GoTo /D (figure.21) >>
+>> endobj
+528 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.9645 370.0679 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (figure.22) >>
+>> endobj
+529 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 338.0093 524.2718 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (figure.23) >>
+>> endobj
+530 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 326.0541 298.2263 338.0093]
+/Subtype /Link
+/A << /S /GoTo /D (figure.23) >>
+>> endobj
+531 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 314.099 448.523 326.0541]
+/Subtype /Link
+/A << /S /GoTo /D (figure.24) >>
+>> endobj
+532 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 302.1438 401.4499 314.099]
+/Subtype /Link
+/A << /S /GoTo /D (figure.25) >>
+>> endobj
+533 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 290.1886 286.3824 302.1438]
+/Subtype /Link
+/A << /S /GoTo /D (figure.26) >>
+>> endobj
+534 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 278.2335 479.905 290.1886]
+/Subtype /Link
+/A << /S /GoTo /D (figure.27) >>
+>> endobj
+535 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 266.2783 364.8375 278.2335]
+/Subtype /Link
+/A << /S /GoTo /D (figure.28) >>
+>> endobj
+536 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 254.3231 524.2718 266.2783]
+/Subtype /Link
+/A << /S /GoTo /D (figure.29) >>
+>> endobj
+537 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 242.368 298.2263 254.3231]
+/Subtype /Link
+/A << /S /GoTo /D (figure.29) >>
+>> endobj
+538 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 230.4128 370.0679 242.368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.30) >>
+>> endobj
+539 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 218.4576 524.2718 230.4128]
+/Subtype /Link
+/A << /S /GoTo /D (figure.31) >>
+>> endobj
+540 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 206.5025 298.2263 218.4576]
+/Subtype /Link
+/A << /S /GoTo /D (figure.31) >>
+>> endobj
+541 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 194.5473 448.523 206.5025]
+/Subtype /Link
+/A << /S /GoTo /D (figure.32) >>
+>> endobj
+542 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 182.5921 464.214 194.5473]
+/Subtype /Link
+/A << /S /GoTo /D (figure.33) >>
+>> endobj
+543 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 170.637 349.1465 182.5921]
+/Subtype /Link
+/A << /S /GoTo /D (figure.34) >>
+>> endobj
+544 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6818 524.2718 170.637]
+/Subtype /Link
+/A << /S /GoTo /D (figure.35) >>
+>> endobj
+545 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 146.7266 298.2263 158.6818]
+/Subtype /Link
+/A << /S /GoTo /D (figure.35) >>
+>> endobj
+546 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 134.7714 427.6016 146.7266]
+/Subtype /Link
+/A << /S /GoTo /D (figure.36) >>
+>> endobj
+547 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 122.8163 524.2718 134.7714]
+/Subtype /Link
+/A << /S /GoTo /D (figure.37) >>
+>> endobj
+548 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 110.8611 298.2263 122.8163]
+/Subtype /Link
+/A << /S /GoTo /D (figure.37) >>
+>> endobj
+549 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 98.9059 432.8319 110.8611]
+/Subtype /Link
+/A << /S /GoTo /D (figure.38) >>
+>> endobj
+550 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 86.9508 524.2718 98.9059]
+/Subtype /Link
+/A << /S /GoTo /D (figure.39) >>
+>> endobj
+551 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 74.9956 376.6814 86.9508]
+/Subtype /Link
+/A << /S /GoTo /D (figure.39) >>
+>> endobj
+496 0 obj <<
+/D [494 0 R /XYZ 144 757.9346 null]
+>> endobj
+493 0 obj <<
+/Font << /F8 348 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+601 0 obj <<
+/Length 1912
+/Filter /FlateDecode
+>>
+stream
+xKo7Z@uXxS)M Ի4 Ց5cN9!ykegd 9"Cˑd5韚)kgƺWrv~+5<~ N⧳WoކYi7;XهwGߟLMh'94k>AcuןRˍKZ:ϻ?/WY i#'[T1SB:Տe<&=cѻvg ݧ)ܿ~?U2}]hvb<QGHY_ɒJ;͓^J_KK\9V)#^ig = b4j93hZcLK̤*=>f1<MqtZ\-N/WwQ^ '!=5Qry rLYDi%L39PѩCFi"c<C %ccY(SeYXMKiɂwB[,IV֤$gxb˱
+=)}
+VRȴJ{mЦ/d&'u8|?:R2B_`2jE
+H!) u6m҈ rٗ!bF\6hm
+oŌ@̲3hZcLǨ44/_ӠdDVȴ$TCS4
+RާGJ D*Z5RȴDL#C~bF|#hZ!*a{Ff?^| Zś@6j 7 hZLK6h(dp1$C>eU+fд h䫘1/-⤃^VE8U#Nش 8(:8mFy#Csh|4hZ!J}?Z -@u*2Z\ Ӓ cDq8C#UGZc2jE ֈ!Tc)5+b6=y"n:=7ilqx"lZMs"TpBmzPa HFԙǦJV]2jE ֈ!1rk^M牟/O`ʴ YBBӊ&uzDP ϵƹE;ai&iɪVZiM 2-iQV_zwXW y, UPiA$c z(v"i-n/woݱhsRo 
+݇^4c;`L5΂ @ XI.+wX>;XV_a8 Gc=Dz =endstream
+endobj
+600 0 obj <<
+/Type /Page
+/Contents 601 0 R
+/Resources 599 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R ]
+>> endobj
+603 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 720.5747 524.2718 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (figure.40) >>
+>> endobj
+604 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 708.6195 261.6139 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (figure.40) >>
+>> endobj
+605 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 696.6643 401.4499 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (figure.41) >>
+>> endobj
+606 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 684.7092 286.3824 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (figure.42) >>
+>> endobj
+607 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 672.754 479.905 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (figure.43) >>
+>> endobj
+608 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 660.7988 364.8375 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (figure.44) >>
+>> endobj
+609 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 648.8437 524.2718 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (figure.45) >>
+>> endobj
+610 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 636.8885 298.2263 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (figure.45) >>
+>> endobj
+611 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 624.9333 370.0679 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (figure.46) >>
+>> endobj
+612 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 612.9782 524.2718 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (figure.47) >>
+>> endobj
+613 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 601.023 298.2263 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (figure.47) >>
+>> endobj
+614 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 589.0678 448.523 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.48) >>
+>> endobj
+615 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 577.1127 464.214 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (figure.49) >>
+>> endobj
+616 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 565.1575 349.1465 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (figure.50) >>
+>> endobj
+617 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 553.2023 524.2718 565.1575]
+/Subtype /Link
+/A << /S /GoTo /D (figure.51) >>
+>> endobj
+618 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 541.2472 298.2263 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.51) >>
+>> endobj
+619 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 529.292 427.6016 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (figure.52) >>
+>> endobj
+620 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 517.3368 524.2718 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.53) >>
+>> endobj
+621 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 505.3817 298.2263 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.53) >>
+>> endobj
+622 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.4265 432.8319 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (figure.54) >>
+>> endobj
+623 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 481.4713 524.2718 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.55) >>
+>> endobj
+624 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 469.5162 376.6814 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (figure.55) >>
+>> endobj
+625 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 457.561 524.2718 469.5162]
+/Subtype /Link
+/A << /S /GoTo /D (figure.56) >>
+>> endobj
+626 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 445.6058 261.6139 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (figure.56) >>
+>> endobj
+627 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 433.6507 464.214 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (figure.57) >>
+>> endobj
+628 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 421.6955 349.1465 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (figure.58) >>
+>> endobj
+629 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 409.7403 524.2718 421.6955]
+/Subtype /Link
+/A << /S /GoTo /D (figure.59) >>
+>> endobj
+630 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 397.7851 298.2263 409.7403]
+/Subtype /Link
+/A << /S /GoTo /D (figure.59) >>
+>> endobj
+631 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 385.83 427.6016 397.7851]
+/Subtype /Link
+/A << /S /GoTo /D (figure.60) >>
+>> endobj
+632 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 373.8748 524.2718 385.83]
+/Subtype /Link
+/A << /S /GoTo /D (figure.61) >>
+>> endobj
+633 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 361.9196 298.2263 373.8748]
+/Subtype /Link
+/A << /S /GoTo /D (figure.61) >>
+>> endobj
+634 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.9645 432.8319 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (figure.62) >>
+>> endobj
+635 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 338.0093 524.2718 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (figure.63) >>
+>> endobj
+636 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 326.0541 376.6814 338.0093]
+/Subtype /Link
+/A << /S /GoTo /D (figure.63) >>
+>> endobj
+637 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 314.099 524.2718 326.0541]
+/Subtype /Link
+/A << /S /GoTo /D (figure.64) >>
+>> endobj
+638 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 302.1438 261.6139 314.099]
+/Subtype /Link
+/A << /S /GoTo /D (figure.64) >>
+>> endobj
+639 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 290.1886 524.2718 302.1438]
+/Subtype /Link
+/A << /S /GoTo /D (figure.65) >>
+>> endobj
+640 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 278.2335 298.2263 290.1886]
+/Subtype /Link
+/A << /S /GoTo /D (figure.65) >>
+>> endobj
+641 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 266.2783 411.9106 278.2335]
+/Subtype /Link
+/A << /S /GoTo /D (figure.66) >>
+>> endobj
+642 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 254.3231 524.2718 266.2783]
+/Subtype /Link
+/A << /S /GoTo /D (figure.67) >>
+>> endobj
+643 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 242.368 376.6814 254.3231]
+/Subtype /Link
+/A << /S /GoTo /D (figure.67) >>
+>> endobj
+644 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 230.4128 524.2718 242.368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.68) >>
+>> endobj
+645 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 218.4576 261.6139 230.4128]
+/Subtype /Link
+/A << /S /GoTo /D (figure.68) >>
+>> endobj
+646 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 206.5025 524.2718 218.4576]
+/Subtype /Link
+/A << /S /GoTo /D (figure.69) >>
+>> endobj
+647 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 194.5473 381.9118 206.5025]
+/Subtype /Link
+/A << /S /GoTo /D (figure.69) >>
+>> endobj
+648 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 182.5921 524.2718 194.5473]
+/Subtype /Link
+/A << /S /GoTo /D (figure.70) >>
+>> endobj
+649 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 170.637 266.8443 182.5921]
+/Subtype /Link
+/A << /S /GoTo /D (figure.70) >>
+>> endobj
+650 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6818 524.2718 170.637]
+/Subtype /Link
+/A << /S /GoTo /D (figure.71) >>
+>> endobj
+651 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 146.7266 460.3669 158.6818]
+/Subtype /Link
+/A << /S /GoTo /D (figure.71) >>
+>> endobj
+652 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 134.7714 524.2718 146.7266]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+653 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 122.8163 345.2994 134.7714]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+654 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 110.8611 464.214 122.8163]
+/Subtype /Link
+/A << /S /GoTo /D (figure.73) >>
+>> endobj
+655 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 98.9059 474.6747 110.8611]
+/Subtype /Link
+/A << /S /GoTo /D (figure.74) >>
+>> endobj
+656 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 86.9508 469.4443 98.9059]
+/Subtype /Link
+/A << /S /GoTo /D (figure.75) >>
+>> endobj
+657 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 74.9956 464.214 86.9508]
+/Subtype /Link
+/A << /S /GoTo /D (figure.76) >>
+>> endobj
+602 0 obj <<
+/D [600 0 R /XYZ 144 757.9346 null]
+>> endobj
+599 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+697 0 obj <<
+/Length 2661
+/Filter /FlateDecode
+>>
+stream
+x]o+^I@G_tM66{1FJ8K䑭9Զxt4Iyf!NH}6~C.a0?NΞ94gřbPfT9t?4gR\nrɔ%.\:j%Ot혍fO_µN
+p-0B{b9§-חz\׳zZx6x9\("~%5r_/waRwf&0' ]? TD3 ZFhz̓qHJS}5t78@Z@E L4㠔0{"Z?t78@Z#h?TDm-aNV'mWPr ph!s8ဋfh`4)"wncC8@O0hဉfZn7sXUj]Wy}m~O eƙ`tBw^ɴ  `QB'BXX$Hs0 ؓkA";&@+{rm
+M5?R 8 IKT&@[UOPַaȤ_mA&H\~l [7!!=*ZcK+oo<'Ԧj"՘?&ŝ zq7&,#VYV)2VsGj=vu>">Kj Sf ]"h͵rmhx`v0`h&81ƺ bܙ8aL3]6WT
+/r4UA{C%BFI& a &ZpJ,63FdC̯w oJ~flvg{wȁ04#rh!G-Ln|ZSGv<1G)"I74!H;T DS"&L~Bw. mJh<oi/`-0a pь-PZIh㪚}-JI"O ar>-1тB`}%[kzM=aœL q 3*Z0c#׌Pib%SUI*c&j1M9  }ٿvhi9ڗ[mڄ%?<6!ȡrT D raFNGf=O/˛]Xz"EAAFE dL@0mgf an<-1<p|ĚХ}@q[{-y8Iɯ ͗8*Zc}S9눓}vj
+K݂Z~q\6j4 ūv>5
+0LO}5,$%<l‡Gen H~|icCVޮY{z<gupn'ב}J-׷(QOL8\,'_BUyv/m,N3n51ܩ&07O.f L?7#F!~1{}6Zڵ(ڄcP1{D1Y: I GYR)9ux_.ݼk׷yU<0UjUX)acWJE7d
+693!l[T+z %ԙ9+ӫeWvvm7/AlLY j `X6 Lo9 PęDSʃw|L\g
+endobj
+696 0 obj <<
+/Type /Page
+/Contents 697 0 R
+/Resources 695 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 742 0 R 743 0 R 744 0 R ]
+>> endobj
+699 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 720.5747 464.214 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (figure.77) >>
+>> endobj
+700 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 708.6195 469.4443 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (figure.78) >>
+>> endobj
+701 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 696.6643 469.4443 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (figure.79) >>
+>> endobj
+702 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 684.7092 474.6747 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (figure.80) >>
+>> endobj
+703 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 672.754 474.6747 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (figure.81) >>
+>> endobj
+704 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 660.7988 317.7645 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (figure.82) >>
+>> endobj
+705 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 648.8437 322.9948 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (figure.83) >>
+>> endobj
+706 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 636.8885 322.9948 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (figure.84) >>
+>> endobj
+707 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 624.9333 296.8431 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (figure.85) >>
+>> endobj
+708 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 612.9782 302.0734 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (figure.86) >>
+>> endobj
+709 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 601.023 307.3038 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (figure.87) >>
+>> endobj
+710 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 589.0678 302.0734 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.88) >>
+>> endobj
+711 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 577.1127 296.8431 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (figure.89) >>
+>> endobj
+712 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 565.1575 312.5341 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (figure.90) >>
+>> endobj
+713 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 553.7558 258.5429 564.604]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+714 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 541.2472 412.3554 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.1) >>
+>> endobj
+715 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 529.292 490.3963 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.2) >>
+>> endobj
+716 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 517.3368 394.0074 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.3) >>
+>> endobj
+717 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 505.3817 472.9616 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.4) >>
+>> endobj
+718 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.98 246.228 504.7175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.92) >>
+>> endobj
+719 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 481.4713 251.0709 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.92.1) >>
+>> endobj
+720 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 469.5162 253.6999 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.92.2) >>
+>> endobj
+721 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 460.0516 256.0522 468.9627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+722 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 445.6058 231.5053 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.1) >>
+>> endobj
+723 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 433.6507 268.6716 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.2) >>
+>> endobj
+724 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 421.6955 235.4627 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.3) >>
+>> endobj
+725 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 412.231 249.6595 421.142]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+726 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 400.2758 231.5053 409.0761]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+727 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 388.3206 240.9699 397.2317]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+728 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 376.3655 285.7188 385.2765]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+729 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 364.4103 274.5938 373.3213]
+/Subtype /Link
+/A << /S /GoTo /D (figure.96) >>
+>> endobj
+730 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 349.9645 250.2684 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.96.1) >>
+>> endobj
+731 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 338.0093 259.8159 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.96.2) >>
+>> endobj
+733 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 283.2425 445.3151 295.1977]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+734 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 271.2874 305.0353 283.2425]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+735 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 259.8857 337.4693 270.7339]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+736 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 247.9305 345.6332 258.7787]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+737 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 235.9753 281.4847 246.8235]
+/Subtype /Link
+/A << /S /GoTo /D (table.5) >>
+>> endobj
+738 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 225.9573 282.7853 234.8684]
+/Subtype /Link
+/A << /S /GoTo /D (table.6) >>
+>> endobj
+739 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 211.5115 305.3673 223.4667]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.1) >>
+>> endobj
+740 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 199.5564 314.8319 211.5115]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.2) >>
+>> endobj
+742 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 145.3431 343.6406 156.1913]
+/Subtype /Link
+/A << /S /GoTo /D (map.1) >>
+>> endobj
+743 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 133.3879 253.6446 144.1254]
+/Subtype /Link
+/A << /S /GoTo /D (submap.1.1) >>
+>> endobj
+744 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 121.4327 263.1091 132.2809]
+/Subtype /Link
+/A << /S /GoTo /D (submap.1.2) >>
+>> endobj
+698 0 obj <<
+/D [696 0 R /XYZ 144 757.9346 null]
+>> endobj
+732 0 obj <<
+/D [696 0 R /XYZ 144 298.6846 null]
+>> endobj
+741 0 obj <<
+/D [696 0 R /XYZ 144 157.4421 null]
+>> endobj
+695 0 obj <<
+/Font << /F8 348 0 R /F43 455 0 R /F39 351 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+792 0 obj <<
+/Length 170
+/Filter /FlateDecode
+>>
+stream
+x}= 0ཿ"c24]._`'lPVGJ"7SisɠɲQ)6#KUzdhYVӎnMKX( $MЩt$zΆJ$9>^ }bv#]û_-A-]W@jfMJHendstream
+endobj
+791 0 obj <<
+/Type /Page
+/Contents 792 0 R
+/Resources 790 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+>> endobj
+793 0 obj <<
+/D [791 0 R /XYZ 144 757.9346 null]
+>> endobj
+790 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+796 0 obj <<
+/Length 3331
+/Filter /FlateDecode
+>>
+stream
+xڭko
+k4}ٔ|SXljxTs]]
+ܼVWQ!uC%JCK^JY;8U/(7B% 8`z86儊 l%h0YT¶N1^i 4S!jj=U3$Ng^ j
+$tJejai&ME
+ϝ # `S<*imQQ+=v#F7NshPS
+&}2bci3} prx35(sdkKϟ+y2үfA.:j^JGw\A%+L2ŻcR+ Ȕd8>q1\x,?֛)gwpvϘ~5c 1e^:AAz+Bfu{srҿtbAj%@yw\biaA6Z67
+a05@Q@{t>񝼟nHr<i,A%x=ma<*4\盯) %W= ##\3.\xQ:2 5x4k0"Q8g<\г3)L%ypbRdTiC$<Tqb1|~Y)$1>MʠD(ErGm(B\=J5g5aTD"1z4:ȃZʗwe?'<(纒uNHN-1XCH9c|S\(jüqYޗ<&2kK( UF֎-Ob4VF9gJW]KdW %NȢ!btc]. YY$%gk/w1mK#u`_>Ɯ:{@䰀"az}31ګ u]Mp2/lvwZm@qsն\v^=jF
+!z)
+SQuO =5 ~UKpdI܃ Ԁ*u)M<%.BLݔ'CŚe(@V.Ye>gVYU]A$uR2`yҠr]KSBI,ZX; x x3o>1^wa2xӑ>]*5׋X(D<9]=I/ |jǮ?3\s.MBƙ(9ag>E"lυmsBRI4AOujWXV w ]0՝PPI9ɶ}v0:$mr%2ί7I,VI Vj҉7 0<Mчu>L*?^v$uq^;,ܖ9QGۑZ!Q"I?l!O՚2k&Z j<:3֨} jD&ɪt4d(*r5E)kȮ]:A).@hxCoQ`ub{f"G~E8s [[ޖ\OJ$v2dydF w@{ywy .̈́@ V.@ @co=a~+]p#uga*!t\` ;]of@չCg ;8T]:J
+B'l__RrѷtW1Ob}nٌqܭβ)oH/}6?P8x^>⍆AȬT
+O&zT\*{'OzR$+W* KfF2&tC2[ηWJ͞5Hxiߧ~# ̚ {
+AS |c[NL"
+oNdwM^Wk"?zvMIh[5vbg"OL n
+lDniRj%$]ɼNz?-Ԁen
+bd2(瑛
+endobj
+795 0 obj <<
+/Type /Page
+/Contents 796 0 R
+/Resources 794 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 800 0 R 804 0 R 806 0 R 808 0 R 809 0 R 811 0 R 812 0 R 814 0 R 819 0 R 820 0 R 821 0 R ]
+>> endobj
+800 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.7784 686.7986 408.2403 699.3914]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.1) >>
+>> endobj
+804 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [506.7818 638.9779 521.5044 650.9331]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+806 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [467.6326 393.2334 474.6064 401.6463]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+808 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [184.5701 347.6597 191.032 359.699]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.2) >>
+>> endobj
+809 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [249.6871 335.7045 256.661 346.5528]
+/Subtype /Link
+/A << /S /GoTo /D (figure.1) >>
+>> endobj
+811 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [199.5418 152.4909 206.5157 163.3391]
+/Subtype /Link
+/A << /S /GoTo /D (figure.2) >>
+>> endobj
+812 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [227.2158 152.4909 234.1897 163.3391]
+/Subtype /Link
+/A << /S /GoTo /D (figure.3) >>
+>> endobj
+814 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [187.8861 91.6232 200.6993 103.1201]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+819 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [219.6425 72.6544 225.8692 83.4639]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+820 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [243.1657 72.6544 255.9789 83.4639]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+821 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [297.128 75.4937 303.3547 82.6226]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+6 0 obj <<
+/D [795 0 R /XYZ 144 734.0242 null]
+>> endobj
+10 0 obj <<
+/D [795 0 R /XYZ 144 456.1117 null]
+>> endobj
+805 0 obj <<
+/D [795 0 R /XYZ 144 420.0883 null]
+>> endobj
+807 0 obj <<
+/D [795 0 R /XYZ 144 387.8535 null]
+>> endobj
+810 0 obj <<
+/D [795 0 R /XYZ 144 195.1753 null]
+>> endobj
+813 0 obj <<
+/D [795 0 R /XYZ 159.2431 104.9234 null]
+>> endobj
+818 0 obj <<
+/D [795 0 R /XYZ 159.2431 95.419 null]
+>> endobj
+794 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F45 799 0 R /F43 455 0 R /F7 803 0 R /F41 374 0 R /F23 307 0 R /F40 356 0 R /F37 328 0 R /F25 322 0 R /F24 334 0 R /F46 817 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+825 0 obj <<
+/Length 2490
+/Filter /FlateDecode
+>>
+stream
+xY[oF~t!taڢɶݍX%Q6"RqF Eɔbș3g;7F$S#e;/
+clu!G7B >߾
+BGc󫱞\_+{Dx"milF
+C4o5 Z]D&:}?qn\.;E6B{?Se@^(i
+f!ɇk9/q^PEGb;~rY%<+>'U|L'Y=R*4)K,-]j_,-3cȥNBm
+t+W FѮdرnYkJbMop)|$5̫ ]鱩Jia].r
+<<nk1hriNGGB; pt?%c0!'dަ@mr'BpO> d(D\*JA"A!)cnןA qa.D+X(WDm[ojo-i|
+"mUŸ^b[AEY31՘$*Cmo 'z}DXw`Eje,E9]&7/a\x{{eJ7A=k7#{PP"u\51ijC4B!Q]pǸaiFŮ1bIt87d-hS1n/@ouV)Ͱvr O  l _(kJ)S3P6I ,$ [8n;fUF#2 φ?GwmŁA&ۭJn5ޢf+E|_sK3nK){_g4)76Ri+,؋R8`2V !
+{t!`U+V29Зq}_,@*SHf\6f(>AWIL&X1e),pa Cq(
+&z!bAZ+[%z'Me |t
+$>
+$adKԆysƢ87 BgQ4=/&os6#+<5<5;Mx_PԸų1vGfƒ6wL9>`,c%b{nxTQO0Ѕ࿘5<)q+Migѯr`` }&wJ-Wӧ=~ܧ]ǂB{10<.Jƾ
+>0loʬ9L_ Ėy(ko∩;X(Bh\=Txٳ+Wf5*V7w/hi#~ӈ TMB@r2ua8UwCnB`HQt;d6փҗ:ShmU;0-JtF*p3PrGh`MCሗ #$l7^> gxZ:سڠ |GVD>A
+y>~@PG& S B}8ۥn.vDMm -+ƾ=*ڊK%J=W|8r@]
+k;[Viu ~n5<S)ɋ4;m`/“CP֝4
+7"×jAk$zڳ\R꣦?xjendstream
+endobj
+824 0 obj <<
+/Type /Page
+/Contents 825 0 R
+/Resources 823 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 829 0 R 833 0 R 837 0 R ]
+>> endobj
+829 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [325.7152 381.7113 332.6891 390.1242]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Mitt-etal04) >>
+>> endobj
+833 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [329.9215 369.7562 336.8954 378.1691]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Reck97) >>
+>> endobj
+837 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [214.3702 135.2696 221.344 143.6825]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Carl99) >>
+>> endobj
+826 0 obj <<
+/D [824 0 R /XYZ 430.0002 722.2289 null]
+>> endobj
+470 0 obj <<
+/D [824 0 R /XYZ 283.5063 684.1323 null]
+>> endobj
+827 0 obj <<
+/D [824 0 R /XYZ 323.6751 615.3004 null]
+>> endobj
+471 0 obj <<
+/D [824 0 R /XYZ 290.4102 593.3826 null]
+>> endobj
+828 0 obj <<
+/D [824 0 R /XYZ 430.0002 615.3004 null]
+>> endobj
+472 0 obj <<
+/D [824 0 R /XYZ 392.0031 593.3826 null]
+>> endobj
+14 0 obj <<
+/D [824 0 R /XYZ 144 353.7587 null]
+>> endobj
+18 0 obj <<
+/D [824 0 R /XYZ 144 277.2176 null]
+>> endobj
+22 0 obj <<
+/D [824 0 R /XYZ 144 197.5215 null]
+>> endobj
+823 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F37 328 0 R /F7 803 0 R /F23 307 0 R /F11 832 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+843 0 obj <<
+/Length 3186
+/Filter /FlateDecode
+>>
+stream
+xZ[~_!%TasEuE iE^%JDU"Pv$-Pr3gΜ9;\9OΤ13g]Zh͖ 1. ^]4jVEz*j.QB$<)/skrSZ5LHݮܯ2ﯾyyDjgRU :@3.ԲJqݵ+xRGNM* \vMBNW\'K2|aI-wxS*÷{Pn;lW8h;^VykTT<4iKW7
+?ž~Ϧy6og钥H
+wlBpxEng & l/^#iTbTܰRyN'Yr/ٿDgR:)ZITw7sbӮFNq6S)m}kr}\q"Wrr^w,ϫc͜dN|׳7Ƕgihp@F喝i>mm=9-&-&*ګ{ cHX6%|4 r?nˮCԪ|={{d$,p`;[ӏ#+CVS"RB:AE ֱ!9 a@SP: J OW`/KdG\DS# a>WlE;d5N\+ :&XY/t,C0e|R-xz;30B<ERc[+%mG|_F &[
+G!B ?nzW s_"Xyl| ſyB -IcEn'-j(E.umqɂ:<]?C}]P <=6OKsC? WMLnooQz9^_~TBD2E>Uqgzq%_79bEfBO}"v
+ js95ܤ;yRc
+[Ǝ-0-XDkZ[SOzk<ULC0X,.3f` QJȀ
+!~dIxN1h'
+ ?4mkNnwLy< #/[6Ik D| P
+[6&
+l<~cԨ=lHJ#uL5
+l`P ǐGs"?%^x+K 2 $
+>
+ UČ>UNQ/xjlU+Negؗy4hv`}_`?iCa6)d ,Lɗ= @M( y"*`4Brc P W_S=g P
+ƶ},sP9 PV?:^\֞wV,Zq8UOc X4wvhhfco} Puk.:iÔ|oaNVoclt 3-c?M$9S^:endstream
+endobj
+842 0 obj <<
+/Type /Page
+/Contents 843 0 R
+/Resources 841 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R ]
+>> endobj
+844 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [502.9075 412.2076 517.6301 424.1627]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+845 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [179.5335 390.7879 186.5073 399.6989]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+846 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [310.3815 342.9672 317.3554 351.3801]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+847 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [501.8005 293.2094 524.2718 304.0576]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+848 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.3718 203.096 481.8432 213.9442]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.2) >>
+>> endobj
+779 0 obj <<
+/D [842 0 R /XYZ 144 734.0242 null]
+>> endobj
+26 0 obj <<
+/D [842 0 R /XYZ 144 477.9195 null]
+>> endobj
+30 0 obj <<
+/D [842 0 R /XYZ 144 268.3097 null]
+>> endobj
+34 0 obj <<
+/D [842 0 R /XYZ 144 153.7325 null]
+>> endobj
+841 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F23 307 0 R /F40 356 0 R /F43 455 0 R /F49 836 0 R /F45 799 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+851 0 obj <<
+/Length 4023
+/Filter /FlateDecode
+>>
+stream
+xڽ[[~_1ZoXE&o5k"k2Y=lzfN %:也P+.K'.֗)]]o.+B+Jg|W+\%797 |O_iLN)3\~N甅u缾[J`t~^4kҘEsE/&2b*5*x
+;QdtQJ2F*A0M\/kh[vRJ/䟘5w+U=H"p22@oFJ,ƺ5{x(e$.4يPBIdNj 닲^5<wPT#N$)RTݔed%X!w/bórU-
+G-^`Es Cc2iؾ qTZe]-pvb.9'& GStY4* 4SUi0=TT}JECLN lB*VM~߂^Z=ALߕm&hrO}/zÕ3]`7pr}mm!R[e[B#L]/?QhqgP^*qjxY.<#FC#^ooq߃iƐJ7f.t9Ik %ssB҂PNҞsCU‚
+ږܡi)F8'!`%Hq 3_V-2a '&,zV`"#ʬ~2C^!r\z1Y9([ )>
+?Hm[45c' X;o9%Ҕ ?1<ghnhllFqh&]|s7{~h7hBB
+L4
+]d9Ȍ$ s0- Ẍܼ"-+e}dO0>4%߫;fp9]
+ e9|Ԍ 헨~u?qZF=Z]W9tA
+aư}%Eܶ
+1
+[(@,]$oP) |rlVL7IU.M GNAcX( x56ȕ Zg8gr hWʋAs?}:gLtX՝۰;:& 5MM _CY} %z`.$XS,^I"8p@f<sy,2p3p9NK
+E=
+z׻']%Eڻtɼ:;
+[}>FsrU3LYOFYi>G:*e6CnFe0endstream
+endobj
+850 0 obj <<
+/Type /Page
+/Contents 851 0 R
+/Resources 849 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 855 0 R 856 0 R 857 0 R 858 0 R ]
+>> endobj
+855 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [200.5657 279.5529 207.5396 290.4011]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+856 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [283.2113 156.6893 305.6826 168.6444]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+857 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.8655 84.9582 196.8394 96.9134]
+/Subtype /Link
+/A << /S /GoTo /D (table.3.1) >>
+>> endobj
+858 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.1423 73.0031 202.6136 84.9582]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.4) >>
+>> endobj
+780 0 obj <<
+/D [850 0 R /XYZ 144 734.0242 null]
+>> endobj
+38 0 obj <<
+/D [850 0 R /XYZ 144 544.3406 null]
+>> endobj
+42 0 obj <<
+/D [850 0 R /XYZ 144 473.1438 null]
+>> endobj
+46 0 obj <<
+/D [850 0 R /XYZ 144 267.1474 null]
+>> endobj
+849 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F23 307 0 R /F35 854 0 R /F32 319 0 R /F43 455 0 R /F45 799 0 R /F11 832 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F49 836 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+862 0 obj <<
+/Length 2308
+/Filter /FlateDecode
+>>
+stream
+xY[۸~_ᗢ2bxENŢآ!-{ؖcə{.$&MZ `DQ߹#&DY; .X?odS{XwO:o2=͕2qwSjUOscLdv[Sӷ߿/F*MBր С_z6B_݄r/4פJTR4ʼ{VN <,d{Wx,Ա?zr[%*'AUl`)*Ct
+] 2Bz[N|
+skM{#I %b \ q4~:B(mfou9ǘ?Iem/Y3|Z[,Kŏ9Ս Gc.
+kwRxµ*
+8Fk4MS!xE4 ?#պNtEqm
+f.F%|0c$|!J0Œ2'ZMJa ro G"!ljjsJYuޒ[ȂHϏ)ˬC |O[G"?G8qo9vC9BՑ|d9
+Z15θcW@ ~΢ưqܽ 9?4-*!=o9!r[QS.@1
+5L+Gvs
+T(o\Ѝ,n$:B #vk{0^މBiѿ7\'ۏT93xMSz?ݥQi,&3}{pa4M
+endobj
+861 0 obj <<
+/Type /Page
+/Contents 862 0 R
+/Resources 860 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 868 0 R 869 0 R ]
+>> endobj
+868 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.0131 386.0127 220.987 398.6055]
+/Subtype /Link
+/A << /S /GoTo /D (figure.4) >>
+>> endobj
+869 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [365.202 386.0127 371.6639 398.6055]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.3) >>
+>> endobj
+863 0 obj <<
+/D [861 0 R /XYZ 144 734.0242 null]
+>> endobj
+864 0 obj <<
+/D [861 0 R /XYZ 343.6004 693.4971 null]
+>> endobj
+473 0 obj <<
+/D [861 0 R /XYZ 144 673.5718 null]
+>> endobj
+865 0 obj <<
+/D [861 0 R /XYZ 144 638.7026 null]
+>> endobj
+866 0 obj <<
+/D [861 0 R /XYZ 343.6004 598.1754 null]
+>> endobj
+867 0 obj <<
+/D [861 0 R /XYZ 246.0218 570.8778 null]
+>> endobj
+50 0 obj <<
+/D [861 0 R /XYZ 144 535.4108 null]
+>> endobj
+870 0 obj <<
+/D [861 0 R /XYZ 159.2431 132.2743 null]
+>> endobj
+860 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F37 328 0 R /F7 803 0 R /F25 322 0 R /F31 337 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+877 0 obj <<
+/Length 2247
+/Filter /FlateDecode
+>>
+stream
+xڵYo~
+7'Kч>Q4PJ$(Rs\{籤H<~;3;Ʌ4fXڸ.Zwχ9~{d)N|3jĤR#laOnjy"a$<2X}IxUyTI秥A~P*-Tl\*RgeD$묄P~H4LGl"!K]yV*,pn
+ٱɺjw0YH˪ͥ$odS\ʢ{f14O=*zl4r|jԦ,V$6Lx\(,uj d*)v
+ Cª
+PJH8m562z@c>s @a7+="l&@X֙3 Nv>k!5);ź̟TD 懲nc[||nE<pc[$N 3$y]a ٧<k˼mٸh\OoG>R>'~(zR%ΗUxwEU4{pGM2"tU߫|[[6fͲ>})`ich{:JK9NaaF
+kð yM?&"6qGx/:#[A[twʛ[a6[<gNG_m*&{ɺy^yqcƀ'׎ˌ
+k@'Ûf kH$qϖ%PB^(o[L_mmqbF)
+_ݞ!ATv1}uI73}h!qa2|@
+1
+Ѣ6+`b
+i+-魌|7\J#RpIGN^['\_Τ|;eCb{/g@ 9G+>@e&
+wT23i\AO9n!b6puObEU3mH, .Rr.8CMJVendstream
+endobj
+876 0 obj <<
+/Type /Page
+/Contents 877 0 R
+/Resources 875 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 878 0 R ]
+>> endobj
+878 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.4337 73.0031 181.4076 84.9582]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+54 0 obj <<
+/D [876 0 R /XYZ 144 734.0242 null]
+>> endobj
+58 0 obj <<
+/D [876 0 R /XYZ 144 185.8166 null]
+>> endobj
+875 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+881 0 obj <<
+/Length 3320
+/Filter /FlateDecode
+>>
+stream
+x[ݏ߿¸@dh^Ѥ"/Ij]dkky;!)ʖ۞{Xp7|lQ?`R.2R/7|B W8a,vR֬,[nZK)՟^W,=tlZvbʊeվ@K Bo~oՄwRz7M+.
+nߖ0FacټEɥHgnX~00eYp+W4rq?Bs]XaH%ÕuOb:~{SYxXäm|W7$stqU+z]aҪjOOÎg'&e*aYA `ॱedŒI_ Ep6;BKevUvwBU /{7%L`%',~oEz}Q'.)W/I)D "-- rQ:yIcPVN2I'P |3ꋨf,Ek
+>;JD)ˮ8  3D YL|uR͇WMB4`d83!Gݩ<D`!g}PpUH<ax _7/>0%>TAfԐoVf3e6Q Y0 e
+) ûSd{"
+O,MlpW~͜qԅ}-=ߐgrr~s9xj+QIhrpW,$23uD D*L1C1X"" V yXE3Ν)"d!D#xX/w; H
+_<R.< Qt5@/Ҽ~ >F\r)zk!QD(+
+eV;]("r]!%3^!PC̪?,|"W,!04wr%Cv$
+ X Z2_ShS@p11{¨87Py.ZkWx7ORQv7_Rz|=W~P'[5X]z?)xoO+z:\{P} 5ǚr&=}|8˾^AkTч ,̝I_!Q@-kG»pDH! Z;<|ϕ?ݏ~5dɼG~ڡY߂AlwaРyvUKKGJ4%7}&,dR@etbaa7 JƛnkmQCvӠ= F6:~ຯN? ( ,6 .~0X}BKrTf;jv}4g.auu$Z:R=X^0iraPAh%5!5 )gR@&|yw5D Kzrd< N/ϧaHB49< 1PeڼΏ,"6 ΢q~0 Q{oXR,chx,K}n
+6*y4Mbl7S %97RN@9Щ'L ^2z´SzXC!^D#߭0^~8P <>!([P64Dzy U{4&>_ZF6}u@w7 ] pt gY%mMf6H1}ڛCOŲоFD%;Pܡޓpre9<4lH]uSa~K"xkB:ГD90F9ߓ~@#bx\к UQqz?fo<@7Q}q";b
+' 5}x/:^&4_V|%2r
+HhMuꤞZ{{
+5ц^h7y=FXrC2! y`P:l=˚{(MA O`4B߯ eމC:AUҍZn'_T*s
+p
+Æ":4Q/ba/xzS(b!CA!o(/T.@,&sp7+e3 9m$~_o6*L%ȌXVELX'j-dKpm*H)aœk(KS=_1 ; Vpbv(94ܐָ"!sϺO4>]K:|ۣ[ Qh*@XScoQVث y$iB '[ tQjRˠ\Dd BR?ںNęCM;HxءCKR^X<s5=дA,U4RB:RZ~ށ1H>Kg?h6U(k*ؠHWBbs:HS [ !o}\!~$(EWºOYM9yčN m>#czY\59_BTmuU꨽'g>HE]Ej,(K,Ir;40G0'QdžDe%4ToH+@LV|ADVb?LV'n (Z -uGN <{<7Yx s!К>}tیY3(A.$h } i n@lا=5Ml=eK|ؒbft)]7}l AМ32uU ]r6hhendstream
+endobj
+880 0 obj <<
+/Type /Page
+/Contents 881 0 R
+/Resources 879 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 889 0 R ]
+>> endobj
+889 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.5875 260.8819 178.5614 271.7301]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+882 0 obj <<
+/D [880 0 R /XYZ 144 757.9346 null]
+>> endobj
+474 0 obj <<
+/D [880 0 R /XYZ 468.1334 566.6519 null]
+>> endobj
+62 0 obj <<
+/D [880 0 R /XYZ 144 301.6319 null]
+>> endobj
+66 0 obj <<
+/D [880 0 R /XYZ 144 150.2482 null]
+>> endobj
+879 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F19 310 0 R /F4 885 0 R /F2 888 0 R /F40 356 0 R /F43 455 0 R /F41 374 0 R /F23 307 0 R /F39 351 0 R /F50 892 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+895 0 obj <<
+/Length 2259
+/Filter /FlateDecode
+>>
+stream
+xYkoF_!K( pޜb6MAM],%ZbMDǐ$J""0`3wǹg D3֋.ڿ?Et(ų$\쫸K^5R4DeeP&yy}&bTȪe9UyRڤX#Viu>T
+AfLL2tL\&Nk.&Ƙ~|ls]JM]j:8.)jV~lڒ00EYU͖ZΊ;zVh_5+Z
+Da )$<1ZrR;DW0ZarmU6CξȄ~rϙ! m^x{ tkavFAj]( Z&lxSw/QiMÿ7R4q 'F<X틗S4x gV(I:׿]&iB
+z^[gP1'3l7Rsx)D 'цņLMb톡J Q/F:/fB5uYFi+(ce@
+)Du9?pxj˚c
+.sSbDwg̽й<G`̝8y.KHNkL5'U줎(/ 3\`'hmpNܗl}5ǝP:r!ַr rw[\Rgf5,-`2lLu#*\<@:E"m[/A#27+,n3JZWd_gͶ,]DFMXzhRV%SĈnjX3Aɾٳ6jop%]9Ԓ5,۪cGU=Z鷙sDg\?mKk0 ~`_oyPxd[d,#N*u<m6D8~yfӽ imSA;Ih!-vxҰ Јx1W,W *^%ɫh-|@Hiv?Ŗ@爛/Yo 8
+,5bo`mxq TqxsqLVB|,D fm>$gp-!h#r8Qvҝox4*Fe2Pg70T"xI'tjVO$M j_czͿmw霰Ϊ\ڪۯPt.@L,t"rD$OO6:{Ad$!WP@3B:a>2+:,!Cs!t(Rع"|7 T?%`P\Z$B<֟S!#3]$Ypz/dfdRxR۵@e ŸreY_iG&J5Xqc-,|5.S/|eO^ycHͰ3$ZFؓgTӠ
+wn-ۧBh?
+bݝFI*p8q
+'oyZMuNW
+4*^pbu>90sȊvtM+w&q'-q
+*y6*ـ`R(3{+W{x?
+endobj
+894 0 obj <<
+/Type /Page
+/Contents 895 0 R
+/Resources 893 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 897 0 R 902 0 R ]
+>> endobj
+897 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.8442 649.7971 268.3061 668.7261]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.4) >>
+>> endobj
+902 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.4367 74.3683 500.8364 85.8652]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+896 0 obj <<
+/D [894 0 R /XYZ 144 757.9346 null]
+>> endobj
+781 0 obj <<
+/D [894 0 R /XYZ 144 734.0242 null]
+>> endobj
+898 0 obj <<
+/D [894 0 R /XYZ 159.2431 135.0707 null]
+>> endobj
+893 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F7 803 0 R /F11 832 0 R /F23 307 0 R /F25 322 0 R /F24 334 0 R /F31 337 0 R /F51 901 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+906 0 obj <<
+/Length 2553
+/Filter /FlateDecode
+>>
+stream
+xYm¸/5O|Ҧ@K&mR{Tkkue˱ I+.  %r8ypfHI
+|•XmY.ڿX/,7L:7xɏ)OٴOgJa*lcNgR >i&CK Jv/h6i`Εuo nI;<O8/K5J
+[H^K+u:L!8л/שNf*gΎ2Lr)Ћ.nޤEln' y' sR_9%:-Ҙ9 +\B䊰i˩/+xl&&W唋inwey
+E¿M
+A{hB;0
+~rBdÛ)E :\)0ۇ5H&|:ˬʬʱb3Lj:6TLhh"p)i&g2` Xa `&;O ٳi*;7O@0@n|Ad@\4vQn!in4LnܺjFx6sR5&(Ɯyq{M 0L PR>jx&ݺ`
+f 6RM ٌ'庇 {EͣVl}/\"qٳgw;v-}8mO-:\\%:kSa9+~glXU E=FPc22b.7waqhA$و}VZlu=y?YD{,`P6KnO\{hnHG&aN'c,/*`40[,KOMY{A?BTǟ_tGxUg@M_rW.]yv=d*6v¡‘v]H u4u-KUE  ԅ#,e_ݳ˃hv  \1C~ބ^cm-ݠPO[<[~v w .mO8?iИwۧݠnNU.S
+E?ˀXn(n243"K?[ۓ+
+3 i K4~( VU^*}u?R">a&~Ӄ/Øp/|}CQ (GEU~I7EG׀Z0s]3BGwqV6Y-x4/4}
+^8@մ ^pGdvQ(w. iXxpo{tj=Z6 mkS6 <_;{NA8M.EM9̿tujIaud
+4ܯ,+
+L#L3ˤ('+㷲2b 3a}C"a nU$"}(N2ɓ{
+endobj
+905 0 obj <<
+/Type /Page
+/Contents 906 0 R
+/Resources 904 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 908 0 R 909 0 R 910 0 R 911 0 R ]
+>> endobj
+908 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.8866 590.0213 303.3485 603.969]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.5) >>
+>> endobj
+909 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [294.3406 556.1276 300.8025 575.0566]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.6) >>
+>> endobj
+910 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [297.9383 522.2546 304.4002 541.1836]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.7) >>
+>> endobj
+911 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [298.7685 505.3181 305.2304 524.2471]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.8) >>
+>> endobj
+907 0 obj <<
+/D [905 0 R /XYZ 144 757.9346 null]
+>> endobj
+859 0 obj <<
+/D [905 0 R /XYZ 259.3053 727.6482 null]
+>> endobj
+904 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F40 356 0 R /F7 803 0 R /F11 832 0 R /F45 799 0 R /F23 307 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+917 0 obj <<
+/Length 3716
+/Filter /FlateDecode
+>>
+stream
+xko~/9ei A
+&AârqSEӇqGTf? iGX"쟧gZ״ً$V\9[<|\C
+6փ<<CGx7CP,XJ:ލ
+n%NHfνvȕW?r:ӠLf3Pi[r[llI`TAzkik
+&+Ό1t߱w^!N1<)`e΅Wi
+|~ƃI3nVxXԛ~(ձP2ZhsJ5 >Nk jRm
+e =Zm2)YXyD0[VXV
+g!nݘLQYj5I-̛X'pK'M8' l~?%8N@IȌǶO.h5<$9E76&\8<|8w}\6{9 ^+6:;vlAG 7tNL bo  e\^UMbZkx2csAQ%7c9"ֶ^%ul. yk06fv!" E"oz*+/Y)W_ęIpd
+;FdoXiYGe@!)Wìo}O)sM(IW)pzq AǏfO{ŤvcwBʡIPs⟚;Aaƾi͒ǃns*Oh
+ahCLDcQdnBAyڟ֑m- mg7Uu 6fY/,zVhd88<0 Jn84GABI= {ƥGhqMIn8:q7٫} k 7D"EF0LoHS#oMDaI3Z76^>`(o/
+C=Veװ& / 6K:;JRn`jAدbG|!Ë JeEEo}ɕDJ0 [~bmܬ6p6Td.RZn#tL1d a͕c7_2`a5xf
+ó@c,|DQt[܌D*gU 7X`PU|t)
+oTֈ!d@U
+Pf`_۷8/ qbC.1jӺi]O9DLmD`BBJY;v;䤕hvdWҖ$6
+ JM7 %[``Nf2)o-p E oٚWo9ƿ01{ÁTendstream
+endobj
+916 0 obj <<
+/Type /Page
+/Contents 917 0 R
+/Resources 915 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 933 0 R ]
+>> endobj
+919 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [212.5486 486.2846 219.5225 497.1328]
+/Subtype /Link
+/A << /S /GoTo /D (figure.6) >>
+>> endobj
+920 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [308.6529 382.2235 315.1148 394.2628]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.9) >>
+>> endobj
+921 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.6115 322.4476 268.5853 333.2958]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+922 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.3151 297.9838 213.0191 309.939]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.1) >>
+>> endobj
+923 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [216.0079 297.9838 229.5682 309.939]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.6) >>
+>> endobj
+924 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.0742 286.0286 212.7781 297.9838]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.1) >>
+>> endobj
+925 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [215.7669 286.0286 230.7663 297.9838]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+926 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [483.1091 274.6269 489.571 286.6663]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.10) >>
+>> endobj
+927 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [430.38 238.208 437.3539 250.1631]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+933 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [408.8938 90.6356 415.1205 97.7644]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Mitt-etal04) >>
+>> endobj
+918 0 obj <<
+/D [916 0 R /XYZ 144 757.9346 null]
+>> endobj
+476 0 obj <<
+/D [916 0 R /XYZ 144 739.0056 null]
+>> endobj
+475 0 obj <<
+/D [916 0 R /XYZ 144 712.4242 null]
+>> endobj
+478 0 obj <<
+/D [916 0 R /XYZ 144 673.5699 null]
+>> endobj
+479 0 obj <<
+/D [916 0 R /XYZ 353.2982 660.8366 null]
+>> endobj
+480 0 obj <<
+/D [916 0 R /XYZ 144 623.5763 null]
+>> endobj
+481 0 obj <<
+/D [916 0 R /XYZ 353.2982 609.8467 null]
+>> endobj
+482 0 obj <<
+/D [916 0 R /XYZ 144 578.564 null]
+>> endobj
+483 0 obj <<
+/D [916 0 R /XYZ 353.2982 564.8344 null]
+>> endobj
+477 0 obj <<
+/D [916 0 R /XYZ 144 538.0349 null]
+>> endobj
+70 0 obj <<
+/D [916 0 R /XYZ 144 437.4746 null]
+>> endobj
+74 0 obj <<
+/D [916 0 R /XYZ 144 201.9066 null]
+>> endobj
+928 0 obj <<
+/D [916 0 R /XYZ 159.2431 144.4737 null]
+>> endobj
+932 0 obj <<
+/D [916 0 R /XYZ 159.2431 110.5609 null]
+>> endobj
+915 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F24 334 0 R /F19 310 0 R /F32 319 0 R /F7 803 0 R /F41 374 0 R /F40 356 0 R /F50 892 0 R /F25 322 0 R /F28 873 0 R /F26 931 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+936 0 obj <<
+/Length 2352
+/Filter /FlateDecode
+>>
+stream
+x[o)Vsybtu'vDZ=Ւm9;+a1.)s~e#
+rd!NH==#e'`RMۛ>H>riG<n?%b<a1Kfx"L12&ln<B&5H5"pd$۟~`+ `aYa (.a\H5QіKb$FmjK$ ~!O7%9>zaRT~`u柕&iv<ppE#p'Z1k:-,Cp"|PIݖcfpG
+[E(U}˩ F+>2q.@jJHgdu>$D0L% 7lO[rXQ3χ! JjT}FE XsY1AKh]{n'ֈvؘ"Z[q?[&D9i5C 64Ͱ FY3} by9b[i܉:d 0,j /ӣ SџapZ%LT
+ք.XY8 BL `wSȁݳ83 ֆ(nա
+l X^KK庀w+L>.|> f/\oߢQ *u:Tߞ\o`S?tk5uM~ﱡ1l 0<AXk3|3>P|WLaΉ^[:|~IԜ;A*
+VFt&VeTK)p RiVJψ tDX2% vE(\VF@>[<."Qo vc n_TpPÿǓ5GXmce||yJP[WN=TkhTbEj[&E-;­փ/SFW@#7)c=td5J42Ñ1ɶ|G$G&1K &Ǣqr\&pHLV8I%WcɱFAϖ)˱ВwR/jI O9WXr帐r\N{=帔&ǵa %h.a6 F. )Т\[>}?>2lxТ?<cAî׏+!9X8r)dYXwS+reYXE-,su!ǂaip
+
+qB?)_a)#%3)ixq,!9A
+-f*n}H Cpݯtr 5,݉;{)q[
+5 n=~r[Mpܦ .W2=.\sx-]©p{?K04[(^^QnO-!('tp1 5H/ހq o)o^՝rt—7b7Foפ{{JoE{۠Wc…
+YM8X0faVoaV[̷a\z9Lrߠ~}7ٸvؾ$s}ìt.y3<w>4[+7!ees6^"6lAE㊮ƠfMJ'jz](yw$ۓ-LSBhmLN2(&KUmtʠ…-afe"5q%FE2|+Df ϙѣv;9.mn-3
+X0V-nB+{\;}0[ɟ| `5g\==KCNEzr}?\81'{\W>7 XgD_ާxcy[e+$uDh@;8X8^PHmKva:;q0c'Z*x܅y6Y";>CL/Mft~ i<cBe|)9_pMe~Jk=pYű;!EEՀ9-!}pI5d )X_gR-.wrJD@MtYendstream
+endobj
+935 0 obj <<
+/Type /Page
+/Contents 936 0 R
+/Resources 934 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+/Annots [ 956 0 R 957 0 R 958 0 R ]
+>> endobj
+956 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [271.356 159.0076 278.3298 172.0587]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+957 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [254.8097 97.4669 266.7649 108.3151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+958 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [306.3963 97.4669 313.3702 108.3151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+937 0 obj <<
+/D [935 0 R /XYZ 144 757.9346 null]
+>> endobj
+485 0 obj <<
+/D [935 0 R /XYZ 144 734.0242 null]
+>> endobj
+486 0 obj <<
+/D [935 0 R /XYZ 351.6378 721.2909 null]
+>> endobj
+487 0 obj <<
+/D [935 0 R /XYZ 144 690.0082 null]
+>> endobj
+488 0 obj <<
+/D [935 0 R /XYZ 351.6378 676.2786 null]
+>> endobj
+489 0 obj <<
+/D [935 0 R /XYZ 144 644.996 null]
+>> endobj
+490 0 obj <<
+/D [935 0 R /XYZ 351.6378 631.2664 null]
+>> endobj
+491 0 obj <<
+/D [935 0 R /XYZ 144 599.9837 null]
+>> endobj
+492 0 obj <<
+/D [935 0 R /XYZ 351.6378 586.2541 null]
+>> endobj
+552 0 obj <<
+/D [935 0 R /XYZ 144 554.9714 null]
+>> endobj
+553 0 obj <<
+/D [935 0 R /XYZ 351.6378 541.2418 null]
+>> endobj
+554 0 obj <<
+/D [935 0 R /XYZ 144 509.9591 null]
+>> endobj
+555 0 obj <<
+/D [935 0 R /XYZ 351.6378 496.2295 null]
+>> endobj
+556 0 obj <<
+/D [935 0 R /XYZ 144 464.9468 null]
+>> endobj
+557 0 obj <<
+/D [935 0 R /XYZ 351.6378 451.2172 null]
+>> endobj
+558 0 obj <<
+/D [935 0 R /XYZ 144 419.9346 null]
+>> endobj
+559 0 obj <<
+/D [935 0 R /XYZ 351.6378 406.205 null]
+>> endobj
+560 0 obj <<
+/D [935 0 R /XYZ 144 374.9223 null]
+>> endobj
+561 0 obj <<
+/D [935 0 R /XYZ 351.6378 361.1927 null]
+>> endobj
+562 0 obj <<
+/D [935 0 R /XYZ 144 329.91 null]
+>> endobj
+563 0 obj <<
+/D [935 0 R /XYZ 351.6378 316.1804 null]
+>> endobj
+564 0 obj <<
+/D [935 0 R /XYZ 144 284.8977 null]
+>> endobj
+565 0 obj <<
+/D [935 0 R /XYZ 351.6378 271.1681 null]
+>> endobj
+566 0 obj <<
+/D [935 0 R /XYZ 144 239.8854 null]
+>> endobj
+567 0 obj <<
+/D [935 0 R /XYZ 351.6378 226.1558 null]
+>> endobj
+484 0 obj <<
+/D [935 0 R /XYZ 144 194.8732 null]
+>> endobj
+934 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F43 455 0 R /F23 307 0 R /F45 799 0 R /F47 940 0 R /F40 356 0 R /F53 943 0 R /F54 946 0 R /F41 374 0 R /F44 416 0 R /F50 892 0 R /F55 949 0 R /F56 952 0 R /F57 955 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+962 0 obj <<
+/Length 3885
+/Filter /FlateDecode
+>>
+stream
+x[[o~JpdHMH
+$LKĮ$$e\fHJh;q< 83g̜b1៘'θ(UNx?_ >Gy⛛/M&iZi'7c7˟B~oQTG&UIn6}8.I<͇LL~^Zzڿd2Ǚ1lMߴ+1RE;\Ry*b5"Xj5(HJL0uӪgfwm>+\k=})W~&iå*$lMMl:detYa4&=
+`q~'KWqR7yohO3])8VՇ{
+,}$-u·jb
+IϳEsȶ C#
+d,h:NE#u*EC5Egzn]A26Albϱ70U 7t7 ,iG(t&B{jw}nbSycQ(yp7]`BY$$hk#ctBuΝC4($8%*NiY< UhgD!U E#;$9KW׻5!$Es#HZ0qudN*fw[FPvԴ.0\Sj WRoϱNDrR%X[g8sBDq ʬA(S
+FOd\LSQ&ݱ4?VXzNXy@: -Pgx{(_3-k9l326lnx(\
+!9&aA'vq=f@F*P_EC@ I$t2©M =U"|W7jɧ G;
+b&p]XK_v8Jȕ{27 @YbHwVGlWV| œ!-MQ##!ta޲^w3'!l+3E'%:YQ OPO"1=^h8b`jB{0dӟm`B:2LZ2v1S\ƴz[Lφh`3@Iz=۬Ĺ`̚J~Ge,} #GD l-…zn҆(-L &v#>yGG@?vbGMîwĈR@Ub{w0Y^~M^⦺ ^AF?V>f]Mτ}Vҟv`w9XИ>.q!a5>Z1LhӽCӘiT%1
+idNI~;`8?[<JSz:^[~[KCZ8pIy)N}\b昷ϴ  ;ydeIjFn/44JCQ4]`ʼnKOedeWRF;KK \۟XPŒl$qݣ3G
+oB OLn˱ ws$i;JFd&j"-V{TO@L bPk~G/ Yendstream
+endobj
+961 0 obj <<
+/Type /Page
+/Contents 962 0 R
+/Resources 960 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+/Annots [ 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 977 0 R 978 0 R 979 0 R 982 0 R ]
+>> endobj
+964 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [431.5832 711.1102 438.0451 725.0579]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.11) >>
+>> endobj
+965 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 678.6888 189.1734 692.6365]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.8) >>
+>> endobj
+966 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 666.7336 186.6828 680.6813]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.10) >>
+>> endobj
+967 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 654.7784 186.406 668.7261]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.12) >>
+>> endobj
+968 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 642.8233 189.1734 656.771]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.14) >>
+>> endobj
+969 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 630.8681 188.62 644.8158]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.15) >>
+>> endobj
+970 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 618.9129 189.1734 632.8606]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.16) >>
+>> endobj
+971 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 606.9578 189.1734 620.9055]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.21) >>
+>> endobj
+972 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 595.0026 188.8967 608.9503]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.22) >>
+>> endobj
+973 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 583.0474 190.8339 596.9951]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.23) >>
+>> endobj
+974 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 571.0923 188.8967 585.04]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+977 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [219.9376 232.7041 230.3707 244.7434]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.12) >>
+>> endobj
+978 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.3151 212.7788 200.289 223.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+979 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.7843 212.7788 235.7395 223.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+982 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [166.7304 101.9007 177.1913 111.8633]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+963 0 obj <<
+/D [961 0 R /XYZ 144 757.9346 null]
+>> endobj
+782 0 obj <<
+/D [961 0 R /XYZ 144 734.0242 null]
+>> endobj
+975 0 obj <<
+/D [961 0 R /XYZ 144 557.6206 null]
+>> endobj
+976 0 obj <<
+/D [961 0 R /XYZ 351.6378 553.9438 null]
+>> endobj
+568 0 obj <<
+/D [961 0 R /XYZ 495.6378 553.9438 null]
+>> endobj
+980 0 obj <<
+/D [961 0 R /XYZ 159.2431 142.7874 null]
+>> endobj
+981 0 obj <<
+/D [961 0 R /XYZ 159.2431 123.8185 null]
+>> endobj
+960 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F40 356 0 R /F23 307 0 R /F41 374 0 R /F24 334 0 R /F43 455 0 R /F25 322 0 R /F58 985 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+988 0 obj <<
+/Length 1136
+/Filter /FlateDecode
+>>
+stream
+xn63[``ޤPd%&j˶w'VE7-Ppᐜ40 W*B*TKa3t=~]*0$1k"ӌ3o۔m4SJ_>’M ]IH٠cI~OsI
+8%~GBRa9}/iYCjKXj! J9f7,YN>(/
+ghffWc0dVȗe a\4W5)Ceq\0|i F@2
+H2$Fk*iV/5`=T%Z[&K6p.YZzEǼ>6jenp}UR9te4/&"ad87ֿ=M3-4P&J`Qפ _Z.L>n?йXzh*ԻCĮ]>f;hZrWc& =0\MluE}S}"|wC7W>Xp%eLȭ FHXnN~Y0\ǭև_!LMNڮl㙿G
+潖eV  񾮁D/BC؋!R<"dr_l<>Jf9|&~Kw("8óP7G _AmMɹL qF"t=F?%%UȷDR"W"Vy}տ^PnZrhks=(\94:hPn\L/夋*ۃ#: l]ic ܶ#H\=6 </AMS i(i1BB  q
+]n=t@ 'z-&
+:ޠ:TO&g #II/n6r8|QL᧘*y5/
+endobj
+987 0 obj <<
+/Type /Page
+/Contents 988 0 R
+/Resources 986 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+989 0 obj <<
+/D [987 0 R /XYZ 144 757.9346 null]
+>> endobj
+990 0 obj <<
+/D [987 0 R /XYZ 144 681.4832 null]
+>> endobj
+991 0 obj <<
+/D [987 0 R /XYZ 351.6378 677.8065 null]
+>> endobj
+569 0 obj <<
+/D [987 0 R /XYZ 495.6378 677.8065 null]
+>> endobj
+992 0 obj <<
+/D [987 0 R /XYZ 144 459.6484 null]
+>> endobj
+993 0 obj <<
+/D [987 0 R /XYZ 351.6378 455.9717 null]
+>> endobj
+570 0 obj <<
+/D [987 0 R /XYZ 495.6378 455.9717 null]
+>> endobj
+994 0 obj <<
+/D [987 0 R /XYZ 144 237.8136 null]
+>> endobj
+995 0 obj <<
+/D [987 0 R /XYZ 351.6378 234.1369 null]
+>> endobj
+571 0 obj <<
+/D [987 0 R /XYZ 495.6378 234.1369 null]
+>> endobj
+986 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+998 0 obj <<
+/Length 1494
+/Filter /FlateDecode
+>>
+stream
+xYoF)HfEP@S$i-E32Ix١K B
+ ) s >Qp$J֎ }( > "3wZmTp½N8=}F.yÀ2/p/8m >e ,KsN;wIJmúTO8/y>#@y@%-.Vct,.[eQC
+(T nMt9)C&M?+.%}ع\"LHzVFp|r}m\ʄ[6෭b##3xF
+
+4\z&O+ R ^0Ǡ9Ocs4Iq#xOXh7+ Zmzӓݿ)HyM>! tX1q)c8L9!v(f#4=
+7e6xI3@I Q."z/hnjL 0jVTY7A6x|peM{kMD^`Foht.1
+|8ͬٹĴ_ĄsnB ps?e^7_ks|{.MA:wsG-|o`a2fendstream
+endobj
+997 0 obj <<
+/Type /Page
+/Contents 998 0 R
+/Resources 996 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+999 0 obj <<
+/D [997 0 R /XYZ 144 757.9346 null]
+>> endobj
+1000 0 obj <<
+/D [997 0 R /XYZ 144 730.1341 null]
+>> endobj
+1001 0 obj <<
+/D [997 0 R /XYZ 351.6378 726.4573 null]
+>> endobj
+572 0 obj <<
+/D [997 0 R /XYZ 495.6378 726.4573 null]
+>> endobj
+1002 0 obj <<
+/D [997 0 R /XYZ 144 605.6011 null]
+>> endobj
+1003 0 obj <<
+/D [997 0 R /XYZ 351.6378 601.9243 null]
+>> endobj
+573 0 obj <<
+/D [997 0 R /XYZ 495.6378 601.9243 null]
+>> endobj
+1004 0 obj <<
+/D [997 0 R /XYZ 144 481.0681 null]
+>> endobj
+1005 0 obj <<
+/D [997 0 R /XYZ 351.6378 477.3913 null]
+>> endobj
+574 0 obj <<
+/D [997 0 R /XYZ 495.6378 477.3913 null]
+>> endobj
+1006 0 obj <<
+/D [997 0 R /XYZ 144 337.6061 null]
+>> endobj
+1007 0 obj <<
+/D [997 0 R /XYZ 351.6378 333.9293 null]
+>> endobj
+575 0 obj <<
+/D [997 0 R /XYZ 495.6378 333.9293 null]
+>> endobj
+1008 0 obj <<
+/D [997 0 R /XYZ 144 194.1441 null]
+>> endobj
+1009 0 obj <<
+/D [997 0 R /XYZ 351.6378 190.4673 null]
+>> endobj
+576 0 obj <<
+/D [997 0 R /XYZ 495.6378 190.4673 null]
+>> endobj
+996 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1012 0 obj <<
+/Length 1385
+/Filter /FlateDecode
+>>
+stream
+x[o6)(eC1`:6 AD-ۺݷ9$-dmP %C%lɤ\eR/͂.34N-~\<{!^^m"ҌQJv)Kj[ߥ2cMmM3!dXH~OHu-%8Ig/hB;"w0=)4Yt9LYqAQzz]¸`qGv̊Jf mrZ~
+%9,0^Ye&5\<%t%c1)LA =e,vf̰/81Ժap"PBZBJATf;*"w]Յc93k5G:VWQ+Ó_Q,.
+T)<V{/&V@E&۶ö~7w$WBqQD*?"T`"1IU%^Uh߲~H!sBR uP?Q̻
+d 'Mв"b盰Wދacw&}d`7/-!UajfU m
+|texӇ$ |uM~͛8QsyZb!L++ǭj"d"tS/B ϱ9Ifp8'Lk}Q]#0*f#am)ʼnSUETP힫]w|`Dwd +pW
+u?>T ,]!*AִyXvĔbhuQAC``\6zuc9HWaQSJUf[LغUYBu겸)붼?K*-&&-#)17)5Q԰G.iR(bYhvI1npW/UL3flj+> 7NOrֺI i0wo1TG.irbf`hcfʱiq̱ DzCiL
+endobj
+1011 0 obj <<
+/Type /Page
+/Contents 1012 0 R
+/Resources 1010 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+1013 0 obj <<
+/D [1011 0 R /XYZ 144 757.9346 null]
+>> endobj
+1014 0 obj <<
+/D [1011 0 R /XYZ 144 728.3408 null]
+>> endobj
+1015 0 obj <<
+/D [1011 0 R /XYZ 351.6378 724.6641 null]
+>> endobj
+577 0 obj <<
+/D [1011 0 R /XYZ 495.6378 724.6641 null]
+>> endobj
+1016 0 obj <<
+/D [1011 0 R /XYZ 144 595.24 null]
+>> endobj
+1017 0 obj <<
+/D [1011 0 R /XYZ 351.6378 591.5632 null]
+>> endobj
+578 0 obj <<
+/D [1011 0 R /XYZ 495.6378 591.5632 null]
+>> endobj
+1018 0 obj <<
+/D [1011 0 R /XYZ 144 462.1391 null]
+>> endobj
+1019 0 obj <<
+/D [1011 0 R /XYZ 351.6378 458.4623 null]
+>> endobj
+579 0 obj <<
+/D [1011 0 R /XYZ 495.6378 458.4623 null]
+>> endobj
+1020 0 obj <<
+/D [1011 0 R /XYZ 144 329.0382 null]
+>> endobj
+1021 0 obj <<
+/D [1011 0 R /XYZ 351.6378 325.3615 null]
+>> endobj
+580 0 obj <<
+/D [1011 0 R /XYZ 495.6378 325.3615 null]
+>> endobj
+1022 0 obj <<
+/D [1011 0 R /XYZ 144 195.9373 null]
+>> endobj
+1023 0 obj <<
+/D [1011 0 R /XYZ 351.6378 192.2606 null]
+>> endobj
+581 0 obj <<
+/D [1011 0 R /XYZ 495.6378 192.2606 null]
+>> endobj
+1010 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1026 0 obj <<
+/Length 1283
+/Filter /FlateDecode
+>>
+stream
+x[OF)hKx/PJy8y`IV$!ڏߙ\t@Hm#$ٝ(IeRg|D :biDrӅql|4*gt!w(' (M>Hcm\,F%?
+nRy5 G'Q\n>0.zk; XJf}Vk݂:?9dzo)6JIQ4
+QR3L1)LH6T%3,ݗH
+oCg( ӎKm̦oT
+~(YhʼZa \uRLC-֩VZmhu_j6n؊*jeivWmY3O?W"+R.ԀMJEFlL}}]SQn/UR"ෂӄT_oVMX}pHL0@պ9B98v|ZW6l&\$<aWi0cX`ӂ|kk|lMG8|.HyZfmTupl[8ƇHȼ}Di1~V>1wmRP *GAU8W52eA ΠّJ4!?+90@iE.LVSQ/cWib/u*ӖUZgj1fџ3
+vlChF}%SA+#N)t~153hiSߟU9<XaxZbP2N &{*,ĄGX%*::SR$0.IWsXݽ>D1dN݌&bó
++ ?K'^avLR_P.bOjł\Ł:Xm4bTB@6c=)U; u+jvT~k6 _"2Ǹ8n0M isN
+endobj
+1025 0 obj <<
+/Type /Page
+/Contents 1026 0 R
+/Resources 1024 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+1027 0 obj <<
+/D [1025 0 R /XYZ 144 757.9346 null]
+>> endobj
+1028 0 obj <<
+/D [1025 0 R /XYZ 144 719.0507 null]
+>> endobj
+1029 0 obj <<
+/D [1025 0 R /XYZ 351.6378 715.3739 null]
+>> endobj
+582 0 obj <<
+/D [1025 0 R /XYZ 495.6378 715.3739 null]
+>> endobj
+1030 0 obj <<
+/D [1025 0 R /XYZ 144 536.4853 null]
+>> endobj
+1031 0 obj <<
+/D [1025 0 R /XYZ 351.6378 532.8085 null]
+>> endobj
+583 0 obj <<
+/D [1025 0 R /XYZ 495.6378 532.8085 null]
+>> endobj
+1032 0 obj <<
+/D [1025 0 R /XYZ 144 365.8751 null]
+>> endobj
+1033 0 obj <<
+/D [1025 0 R /XYZ 351.6378 362.1983 null]
+>> endobj
+584 0 obj <<
+/D [1025 0 R /XYZ 495.6378 362.1983 null]
+>> endobj
+1034 0 obj <<
+/D [1025 0 R /XYZ 144 209.7107 null]
+>> endobj
+1035 0 obj <<
+/D [1025 0 R /XYZ 351.6378 206.0339 null]
+>> endobj
+585 0 obj <<
+/D [1025 0 R /XYZ 495.6378 206.0339 null]
+>> endobj
+1024 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1038 0 obj <<
+/Length 1070
+/Filter /FlateDecode
+>>
+stream
+xY]o6}#D,?6
+,:CQ/iڲ-wIk;J
+l ?P!-5\XMH2ڍg!x5,*ݗ5iF !MJQ[4B??RѺYf WO Gr Io_\ոSfa{~-ie8fZsqmWơ!<4V\\Q}tֲd5:ɻ$F8
+Z -R6
+*d
+3'_;֎\=Sz!WC*Y8$|v(c%Ń)Fn5'^v\Z 3T8%<f
+7HCX*pY(LCLZ7Z]u+AN/=%vXDO=QzP4QGn:ǖ*SZ9(XL#Waz#F%xAP6|#%<,T5RlfH>5 եendstream
+endobj
+1037 0 obj <<
+/Type /Page
+/Contents 1038 0 R
+/Resources 1036 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1039 0 obj <<
+/D [1037 0 R /XYZ 144 757.9346 null]
+>> endobj
+1040 0 obj <<
+/D [1037 0 R /XYZ 144 718.6771 null]
+>> endobj
+1041 0 obj <<
+/D [1037 0 R /XYZ 351.6378 715.0003 null]
+>> endobj
+586 0 obj <<
+/D [1037 0 R /XYZ 495.6378 715.0003 null]
+>> endobj
+1042 0 obj <<
+/D [1037 0 R /XYZ 144 552.301 null]
+>> endobj
+1043 0 obj <<
+/D [1037 0 R /XYZ 351.6378 548.6242 null]
+>> endobj
+587 0 obj <<
+/D [1037 0 R /XYZ 495.6378 548.6242 null]
+>> endobj
+1044 0 obj <<
+/D [1037 0 R /XYZ 144 385.9249 null]
+>> endobj
+1045 0 obj <<
+/D [1037 0 R /XYZ 351.6378 382.2481 null]
+>> endobj
+588 0 obj <<
+/D [1037 0 R /XYZ 495.6378 382.2481 null]
+>> endobj
+1046 0 obj <<
+/D [1037 0 R /XYZ 144 219.5488 null]
+>> endobj
+1047 0 obj <<
+/D [1037 0 R /XYZ 351.6378 215.872 null]
+>> endobj
+589 0 obj <<
+/D [1037 0 R /XYZ 495.6378 215.872 null]
+>> endobj
+1036 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1051 0 obj <<
+/Length 1247
+/Filter /FlateDecode
+>>
+stream
+xo6WQ"l X[yPd&b;$gwG2+J,<~Iޝ#,eL(C:W͡ K%O'>ΦJLg9󇏒Yq'rDdhܷDk`W|PlKU7Ry5?(.7JWJa YqC0CЌf3<^gU4(al5A/rr>9ۉѬ>QPIax"Ĥ 2T*wRe=,a_
+"D!8qHvqb*Z+J=_%2+lmz4B%MC-֩cFc 1V_0(z1^FAuh o~ުmzRJl1
+t *
+lboovieݪ]hCRbN6ꇢ|zli
+G죥U n*ڥg,u؞v OLpklm|sф''JOY8*ξKXΆKٴ]~E- j]55'jC(&t}$&q*ڇhc ?9«E`dצy.]$=QU%]߶?Oǯgͺ?etӟ{_ UPJƈSίfMhj5a+ Ok_T,
+ )a#Enjx9ٛTcSqqfspZg)y7"0c^IX=i<g"'
+G't3`b bbi<]@(4%>!tށRhEWp<V~} B& c: B#! Tzw'>VpR!Zhn }r5֑,WۀqQLHOf
+G`P~Y so5N%c^ɵXbuڑkS xESc\?kV%cp>zg?
+endobj
+1050 0 obj <<
+/Type /Page
+/Contents 1051 0 R
+/Resources 1049 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1052 0 obj <<
+/D [1050 0 R /XYZ 144 757.9346 null]
+>> endobj
+1053 0 obj <<
+/D [1050 0 R /XYZ 144 719.0507 null]
+>> endobj
+1054 0 obj <<
+/D [1050 0 R /XYZ 351.6378 715.3739 null]
+>> endobj
+590 0 obj <<
+/D [1050 0 R /XYZ 495.6378 715.3739 null]
+>> endobj
+1055 0 obj <<
+/D [1050 0 R /XYZ 144 541.4666 null]
+>> endobj
+1056 0 obj <<
+/D [1050 0 R /XYZ 351.6378 537.7899 null]
+>> endobj
+591 0 obj <<
+/D [1050 0 R /XYZ 495.6378 537.7899 null]
+>> endobj
+1057 0 obj <<
+/D [1050 0 R /XYZ 144 375.8377 null]
+>> endobj
+1058 0 obj <<
+/D [1050 0 R /XYZ 351.6378 372.161 null]
+>> endobj
+592 0 obj <<
+/D [1050 0 R /XYZ 495.6378 372.161 null]
+>> endobj
+1059 0 obj <<
+/D [1050 0 R /XYZ 144 214.692 null]
+>> endobj
+1060 0 obj <<
+/D [1050 0 R /XYZ 351.6378 211.0153 null]
+>> endobj
+593 0 obj <<
+/D [1050 0 R /XYZ 495.6378 211.0153 null]
+>> endobj
+1049 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1063 0 obj <<
+/Length 1084
+/Filter /FlateDecode
+>>
+stream
+xY]o6}#D,?Z,:CQc/Yڲ#wI*;N&A1\{Jf~hFȴrj5!Mh^bݙ`V1McLg%?79E_B?ܿsѺY Ta,@P_L?;3;ѸSfx!et8d3-{qmZzȋi6zr~A~} Z&!d9:2hGI~} *8VJ R1@`A5 V OY0D~Q():T@Ӆ@UfPMae)i:Ր's r #|m\*Κ4.m]kٸ.1VMZ,1ԗ-YTDan\O>DG s qRjwui  jueS_M,P
+c.bFj8g8* '012Nא`_,]y*+L8:
+c*e#]j\-.{QT.u;b"%ejݬtQMٴTn_\N)iG!‡O)RztK_joWub5^5pO b(42TBBJ0 )tBeX*_R!zB.rTBRc@zgdrx;A-a޽q-/B$c/wPLg#WԻ\!WzWS=4$.K|aй6wOZr|5/ بop,Oe^R11X+GǹzuTb3<-? spG(̥֏oFV endstream
+endobj
+1062 0 obj <<
+/Type /Page
+/Contents 1063 0 R
+/Resources 1061 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1064 0 obj <<
+/D [1062 0 R /XYZ 144 757.9346 null]
+>> endobj
+1065 0 obj <<
+/D [1062 0 R /XYZ 144 724.1565 null]
+>> endobj
+1066 0 obj <<
+/D [1062 0 R /XYZ 351.6378 720.4798 null]
+>> endobj
+594 0 obj <<
+/D [1062 0 R /XYZ 495.6378 720.4798 null]
+>> endobj
+1067 0 obj <<
+/D [1062 0 R /XYZ 144 551.8028 null]
+>> endobj
+1068 0 obj <<
+/D [1062 0 R /XYZ 351.6378 548.1261 null]
+>> endobj
+595 0 obj <<
+/D [1062 0 R /XYZ 495.6378 548.1261 null]
+>> endobj
+1069 0 obj <<
+/D [1062 0 R /XYZ 144 391.4043 null]
+>> endobj
+1070 0 obj <<
+/D [1062 0 R /XYZ 351.6378 387.7276 null]
+>> endobj
+596 0 obj <<
+/D [1062 0 R /XYZ 495.6378 387.7276 null]
+>> endobj
+1071 0 obj <<
+/D [1062 0 R /XYZ 144 219.0507 null]
+>> endobj
+1072 0 obj <<
+/D [1062 0 R /XYZ 351.6378 215.3739 null]
+>> endobj
+597 0 obj <<
+/D [1062 0 R /XYZ 495.6378 215.3739 null]
+>> endobj
+1061 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1075 0 obj <<
+/Length 1287
+/Filter /FlateDecode
+>>
+stream
+xO6c"B'U*-b8B6,n>h%\BTz+$c{f2XDEL(C:*3- )*}_gYd\G&拫zÙ=-n%QVQTߕAGu(&˂e er9jt $<'Jٟ:?DqAQzX
+E(rL9fW4ZLE@ Gz)`F$e+~+&<7Ĥ 2-Sḭ/C x׊CqHb e.zje._9b DŗwIEQEҶ6 _G]`0NXMo7S1(0^FA:SICv+%I/
+ IMkܚ0HRy\mntVte~ݜe g&+ɳ,ޔ8au_ل۪KJrШ&JqƑI*v]:zݸҦp۫ƽ8Q"̠0,C'vU\Ux"̏?$k?{_pk8.$nbY7wC,ib5a=hK6y;_aBӖ1 X,.6C<m 48a&gU"BX؟W2}ĀGǮDhf U>=,OyWSmO,M{(> ,ƈU;^ MYU)?WM9<2-CzP](JZ1PS_Q.
+.ZMf؄[簉j/bsXB:$lR +fOqP-?"N/c& 1v%ea B4g[ϒ V5F8AX8<bcGlCuCZ
+endobj
+1074 0 obj <<
+/Type /Page
+/Contents 1075 0 R
+/Resources 1073 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1076 0 obj <<
+/D [1074 0 R /XYZ 144 757.9346 null]
+>> endobj
+1077 0 obj <<
+/D [1074 0 R /XYZ 144 722.9112 null]
+>> endobj
+1078 0 obj <<
+/D [1074 0 R /XYZ 351.6378 719.2344 null]
+>> endobj
+598 0 obj <<
+/D [1074 0 R /XYZ 495.6378 719.2344 null]
+>> endobj
+1079 0 obj <<
+/D [1074 0 R /XYZ 144 548.0669 null]
+>> endobj
+1080 0 obj <<
+/D [1074 0 R /XYZ 351.6378 544.3901 null]
+>> endobj
+658 0 obj <<
+/D [1074 0 R /XYZ 495.6378 544.3901 null]
+>> endobj
+1081 0 obj <<
+/D [1074 0 R /XYZ 144 373.2225 null]
+>> endobj
+1082 0 obj <<
+/D [1074 0 R /XYZ 351.6378 369.5458 null]
+>> endobj
+659 0 obj <<
+/D [1074 0 R /XYZ 495.6378 369.5458 null]
+>> endobj
+1083 0 obj <<
+/D [1074 0 R /XYZ 144 215.3147 null]
+>> endobj
+1084 0 obj <<
+/D [1074 0 R /XYZ 351.6378 211.6379 null]
+>> endobj
+660 0 obj <<
+/D [1074 0 R /XYZ 495.6378 211.6379 null]
+>> endobj
+1073 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1087 0 obj <<
+/Length 1145
+/Filter /FlateDecode
+>>
+stream
+xo6W"+Сh,8l%twGjS+rfŀy<N1W*R/ɖ0ӂ*?-^*y0Cgs"3/9']uSR KnXXy!"e%5w0BݫSw4J.<g *TXm%OZzLKXjuFu,[zO 0ʽv`eΊ +i+0n_JRø+-5,},)-P"[c8cLe iVJК|h:Y(b1~t-sPϩL#Oe*{xZc 5{r4JY۵e/FI-bv.ŬGfʨtTD$Xs΅']MXG%a:zՅ>/ E<=0_
+wh[DEQMM/a:ںHū$MukOʮ wjya&ը˗)"ǧ^&v-+_c$5
+A1>Z=, #"Mx\;OFܳ<eZi۲YWn^ $&l:,7W ^
+x67xq.1h`L:j0hDZȟE- ^1 @N.jːs\ \< /\kWv?\jTBQxvՌo@i^y1S{NJ)|'rsHT
+endobj
+1086 0 obj <<
+/Type /Page
+/Contents 1087 0 R
+/Resources 1085 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1088 0 obj <<
+/D [1086 0 R /XYZ 144 757.9346 null]
+>> endobj
+1089 0 obj <<
+/D [1086 0 R /XYZ 144 718.6771 null]
+>> endobj
+1090 0 obj <<
+/D [1086 0 R /XYZ 351.6378 715.0003 null]
+>> endobj
+661 0 obj <<
+/D [1086 0 R /XYZ 495.6378 715.0003 null]
+>> endobj
+1091 0 obj <<
+/D [1086 0 R /XYZ 144 552.301 null]
+>> endobj
+1092 0 obj <<
+/D [1086 0 R /XYZ 351.6378 548.6242 null]
+>> endobj
+662 0 obj <<
+/D [1086 0 R /XYZ 495.6378 548.6242 null]
+>> endobj
+1093 0 obj <<
+/D [1086 0 R /XYZ 144 385.9249 null]
+>> endobj
+1094 0 obj <<
+/D [1086 0 R /XYZ 351.6378 382.2481 null]
+>> endobj
+663 0 obj <<
+/D [1086 0 R /XYZ 495.6378 382.2481 null]
+>> endobj
+1095 0 obj <<
+/D [1086 0 R /XYZ 144 219.5488 null]
+>> endobj
+1096 0 obj <<
+/D [1086 0 R /XYZ 351.6378 215.872 null]
+>> endobj
+664 0 obj <<
+/D [1086 0 R /XYZ 495.6378 215.872 null]
+>> endobj
+1085 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1099 0 obj <<
+/Length 1287
+/Filter /FlateDecode
+>>
+stream
+xMoF<Fu-Ɂ’,۟ߙ5#G "{@r#:L(CXlfX3kt=~\.OC̗JΫOo.$?NE>Їi>+>R&WGm,RlV1pF
+W-$a1/nBr(1}D% Js0KX.`%GIQDSHΗ~kfXΗ:!PȂ%~6Zom, Z>mq@]aHII|MKETFjkx(Oq 4}פžM]UsWF~_G+QkFtFPCPBum^UXx]񧪖ڔ0e, Κ>@@&eK+ԧx`P)W6c=}gq=&˔b<N\+zᦥ &nJɀL`BҌoKGD}p.O/q-|ŔaO5r赅xM$ϪddI,fs6\VcUp;MH^z! I+#N.F+PYJC*|uiC8jJ̹MӮ]vla>i T;0F(]خ~~qͺb+ {:GD+6JSH/?' EDayfZBaTڼ$FPX31:#N=qQC i#$%rnNP|5(
+-~*n^RJ8W2qRGRe$
+NwG@\y7jьV(@:6d}EJ`?0bǁMI#KR]5W .<Ƽ
+{P{ x2̹_3I 1ljž{)횶 sgr/&z |>N1.um9A%g'Kie+OwB>
+endobj
+1098 0 obj <<
+/Type /Page
+/Contents 1099 0 R
+/Resources 1097 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1100 0 obj <<
+/D [1098 0 R /XYZ 144 757.9346 null]
+>> endobj
+1101 0 obj <<
+/D [1098 0 R /XYZ 144 723.7829 null]
+>> endobj
+1102 0 obj <<
+/D [1098 0 R /XYZ 351.6378 720.1062 null]
+>> endobj
+665 0 obj <<
+/D [1098 0 R /XYZ 495.6378 720.1062 null]
+>> endobj
+1103 0 obj <<
+/D [1098 0 R /XYZ 144 546.1989 null]
+>> endobj
+1104 0 obj <<
+/D [1098 0 R /XYZ 351.6378 542.5221 null]
+>> endobj
+666 0 obj <<
+/D [1098 0 R /XYZ 495.6378 542.5221 null]
+>> endobj
+1105 0 obj <<
+/D [1098 0 R /XYZ 144 380.57 null]
+>> endobj
+1106 0 obj <<
+/D [1098 0 R /XYZ 351.6378 376.8932 null]
+>> endobj
+667 0 obj <<
+/D [1098 0 R /XYZ 495.6378 376.8932 null]
+>> endobj
+1107 0 obj <<
+/D [1098 0 R /XYZ 144 219.4243 null]
+>> endobj
+1108 0 obj <<
+/D [1098 0 R /XYZ 351.6378 215.7475 null]
+>> endobj
+668 0 obj <<
+/D [1098 0 R /XYZ 495.6378 215.7475 null]
+>> endobj
+1097 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1111 0 obj <<
+/Length 1156
+/Filter /FlateDecode
+>>
+stream
+xo6W"+С,8BmőtwG*3+NA y:1W*R/V0ی*goΔ<Fl~|yNd^pcsU7uS^(/䦁eR*R(X?s'IL
+Eq+1VaCC\Ij |b0U~ ny/b`X0S001JP
+ZO7XM"-V.uOՔDe+1[=U]ڲ$a i&t1۬TwRAa`e$Uu.<bX**)ѫ.ya`e(
+w$W݅$FB/*)E*temRnz#[-D*$H&6]=)j3.mt._ףOH.ZzWT)ئn|qݒԄWMJw˰gGi<h>uD.ԅ-ӷ`(Lhx3
+TD9Q
+樁4<z%x <x5syc<Bg>B({Wzўendstream
+endobj
+1110 0 obj <<
+/Type /Page
+/Contents 1111 0 R
+/Resources 1109 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1112 0 obj <<
+/D [1110 0 R /XYZ 144 757.9346 null]
+>> endobj
+1113 0 obj <<
+/D [1110 0 R /XYZ 144 724.1565 null]
+>> endobj
+1114 0 obj <<
+/D [1110 0 R /XYZ 351.6378 720.4798 null]
+>> endobj
+669 0 obj <<
+/D [1110 0 R /XYZ 495.6378 720.4798 null]
+>> endobj
+1115 0 obj <<
+/D [1110 0 R /XYZ 144 551.8028 null]
+>> endobj
+1116 0 obj <<
+/D [1110 0 R /XYZ 351.6378 548.1261 null]
+>> endobj
+670 0 obj <<
+/D [1110 0 R /XYZ 495.6378 548.1261 null]
+>> endobj
+1117 0 obj <<
+/D [1110 0 R /XYZ 144 391.4043 null]
+>> endobj
+1118 0 obj <<
+/D [1110 0 R /XYZ 351.6378 387.7276 null]
+>> endobj
+671 0 obj <<
+/D [1110 0 R /XYZ 495.6378 387.7276 null]
+>> endobj
+1119 0 obj <<
+/D [1110 0 R /XYZ 144 219.0507 null]
+>> endobj
+1120 0 obj <<
+/D [1110 0 R /XYZ 351.6378 215.3739 null]
+>> endobj
+672 0 obj <<
+/D [1110 0 R /XYZ 495.6378 215.3739 null]
+>> endobj
+1109 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1124 0 obj <<
+/Length 1285
+/Filter /FlateDecode
+>>
+stream
+xKo6:J@"(P)mAG8z!Y+N{r4$gK(IeR'fF9cq<G|_әMqd~|yr]?:|O;I`U7Uԑ:HcmԹ3.R&W@OmZy)+o|؉p
+V.8ʈ1-nƂs(1Թ]^d gJO63Rֳ`&$p+xnIA4e
+ﴔl0gEꈖJy!u3DGLs
+}hRE `Y. 7wYҦCQeҮ F]8a8J _"~`Nr;iBѷE/&4vY]#v}LzDÉESRGu[LAq Qo3yZ"}fk[-˥6闢zіO꾯Xۻ|\Y] QL*tqri1f7>YZEY=:m9nǏ/=DJeJ|V-Los}])Wf$OZV? pP/|m^bCWMx-37};kL,6'c^IP/7> NbC`!aH>
+s. Q\hq´vYBRB^W.#ĞU 'L)Q)U=etם슦w
+7ն c!ƈS57hv*oX昵;ZUEAgZ1lB_OL}G*A 4Z9Sje~O*NOz#Sj`A&NLzb6 >G)#Z6)qʅ G}(<KSވmOס3(E(E(!" P硼3&X屪=ZH˵ ae㌇&6VmzƉʓ$ayhШСi}Ҭ#7s9gc`i
+ᕟHWjb(Y)#Xc50J} DÉ? tpw8 隆+UC^@Q iF\endstream
+endobj
+1123 0 obj <<
+/Type /Page
+/Contents 1124 0 R
+/Resources 1122 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1125 0 obj <<
+/D [1123 0 R /XYZ 144 757.9346 null]
+>> endobj
+1126 0 obj <<
+/D [1123 0 R /XYZ 144 725.2773 null]
+>> endobj
+1127 0 obj <<
+/D [1123 0 R /XYZ 351.6378 721.6006 null]
+>> endobj
+673 0 obj <<
+/D [1123 0 R /XYZ 495.6378 721.6006 null]
+>> endobj
+1128 0 obj <<
+/D [1123 0 R /XYZ 144 545.7007 null]
+>> endobj
+1129 0 obj <<
+/D [1123 0 R /XYZ 351.6378 542.024 null]
+>> endobj
+674 0 obj <<
+/D [1123 0 R /XYZ 495.6378 542.024 null]
+>> endobj
+1130 0 obj <<
+/D [1123 0 R /XYZ 144 366.1241 null]
+>> endobj
+1131 0 obj <<
+/D [1123 0 R /XYZ 351.6378 362.4474 null]
+>> endobj
+675 0 obj <<
+/D [1123 0 R /XYZ 495.6378 362.4474 null]
+>> endobj
+1132 0 obj <<
+/D [1123 0 R /XYZ 144 212.9485 null]
+>> endobj
+1133 0 obj <<
+/D [1123 0 R /XYZ 351.6378 209.2718 null]
+>> endobj
+676 0 obj <<
+/D [1123 0 R /XYZ 495.6378 209.2718 null]
+>> endobj
+1122 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1136 0 obj <<
+/Length 1165
+/Filter /FlateDecode
+>>
+stream
+xo6W"7,:C`/Yqي#$Ɋ
+䑼}~!3xƕʬIez`
+?/xZ/pCpǏ7gJd:#Lv~Xȼ16dhnPJ_sam >/TjqcI~KI$><|`MG%-+k!KZwQn%,5ҖF-..Yo u>„Q6 FGe,+-c a:XW5L^UK,)^Ket52
+} BnZ2Ӭ5ps 8Upj4R'ۖT19xx=+(7W0)%|׻f]_.$3N9|t$v22kstTuՅ.0P5AKCCbC2RY+m!Y #pv}\E]P"/bO?' ]54G!Mۮϵ#vA׋w* +뾞zv== h#79~UGI1׏B},=OYNPB(juX\Zcr|WL뫮=l7XPpC8Ʉ̼fCJx$LipCQT0
+ԅsg
+x.oakQ2yۦVM{v86pzS]ťpB19u#ĶiWknZ_j}_8sV${ [LL9Jv^LW$2, @BS%xMjnɡ$\=s5t/W3Ig~$室(5KP*> dī9MF4ex)n\2JcqmxcJ ^\=s51JdߓH ro#.يG84 k8J2"mLƒ
+<CH(6,
+endobj
+1135 0 obj <<
+/Type /Page
+/Contents 1136 0 R
+/Resources 1134 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1137 0 obj <<
+/D [1135 0 R /XYZ 144 757.9346 null]
+>> endobj
+1138 0 obj <<
+/D [1135 0 R /XYZ 144 728.7642 null]
+>> endobj
+1139 0 obj <<
+/D [1135 0 R /XYZ 351.6378 725.0875 null]
+>> endobj
+677 0 obj <<
+/D [1135 0 R /XYZ 495.6378 725.0875 null]
+>> endobj
+1140 0 obj <<
+/D [1135 0 R /XYZ 144 551.6783 null]
+>> endobj
+1141 0 obj <<
+/D [1135 0 R /XYZ 351.6378 548.0016 null]
+>> endobj
+678 0 obj <<
+/D [1135 0 R /XYZ 495.6378 548.0016 null]
+>> endobj
+1142 0 obj <<
+/D [1135 0 R /XYZ 144 386.5475 null]
+>> endobj
+1143 0 obj <<
+/D [1135 0 R /XYZ 351.6378 382.8708 null]
+>> endobj
+679 0 obj <<
+/D [1135 0 R /XYZ 495.6378 382.8708 null]
+>> endobj
+1144 0 obj <<
+/D [1135 0 R /XYZ 144 218.9261 null]
+>> endobj
+1145 0 obj <<
+/D [1135 0 R /XYZ 351.6378 215.2494 null]
+>> endobj
+680 0 obj <<
+/D [1135 0 R /XYZ 495.6378 215.2494 null]
+>> endobj
+1134 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1148 0 obj <<
+/Length 1277
+/Filter /FlateDecode
+>>
+stream
+xKo6:ʀEP@St.[6Efl!?3$8kYk I/kDrfHΌQc23'ΪՈfscxžoчK94:z|3R=)$QNQ.|2HcmڎY~29%ٿeRy9GOw;Q\nޮ0.Jha,8G f iΪhPœj^Jjegf$pqJT`%=&DSJKTT_e'1#C,$9J2")!_%\ظ٫ø`yaSUuW?4@Pin vXabi$VϱAwkqڔq
+66pæ.l} IQ;
+S} 5pcNj-l_.|O(|X@k0M_\o52ZŻ7i]HŮހuy[vuHǎdmocrP[ Lmzt> kEoj'4UMt^j\@wmkbOe 'nvKx3KU<,>>@U߶-gg
+/, ]'ʉ=K[n.]wvUv/u3Mb%T9 FDynK_-|uqW.7psZ!Ał4,VGL*fO);y'Rk _>PɍoS%`"%9T't0T;L3MNR`*$RPA7{LQb||C6
+H&P ( $8S{ґI`^8rg88OBp2Vi6PĶb/;\P@h)cШ^
+endobj
+1147 0 obj <<
+/Type /Page
+/Contents 1148 0 R
+/Resources 1146 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1149 0 obj <<
+/D [1147 0 R /XYZ 144 757.9346 null]
+>> endobj
+1150 0 obj <<
+/D [1147 0 R /XYZ 144 727.6434 null]
+>> endobj
+1151 0 obj <<
+/D [1147 0 R /XYZ 351.6378 723.9667 null]
+>> endobj
+681 0 obj <<
+/D [1147 0 R /XYZ 495.6378 723.9667 null]
+>> endobj
+1152 0 obj <<
+/D [1147 0 R /XYZ 144 548.3159 null]
+>> endobj
+1153 0 obj <<
+/D [1147 0 R /XYZ 351.6378 544.6392 null]
+>> endobj
+682 0 obj <<
+/D [1147 0 R /XYZ 495.6378 544.6392 null]
+>> endobj
+1154 0 obj <<
+/D [1147 0 R /XYZ 144 380.9436 null]
+>> endobj
+1155 0 obj <<
+/D [1147 0 R /XYZ 351.6378 377.2668 null]
+>> endobj
+683 0 obj <<
+/D [1147 0 R /XYZ 495.6378 377.2668 null]
+>> endobj
+1156 0 obj <<
+/D [1147 0 R /XYZ 144 215.5637 null]
+>> endobj
+1157 0 obj <<
+/D [1147 0 R /XYZ 351.6378 211.887 null]
+>> endobj
+684 0 obj <<
+/D [1147 0 R /XYZ 495.6378 211.887 null]
+>> endobj
+1146 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1160 0 obj <<
+/Length 1175
+/Filter /FlateDecode
+>>
+stream
+x[o6+HeC0`:: A[8n~琬̎k,i0 a<$y.:g\jKT&3-@'3~yD7d7u\/ #mrN s.,``煔-v-﹓\mARW޼u;Ip/aq짋ZH*6Y0XoixQi89w+aHg0ʽzHèe
+L *JRø5"-}<rMM4䋀 24@4e\?f%p-&@7`W A:mmK7hF$#'T1&m3V ׶/Swb;öHfBQf <*teUv ~aCPTH`kVzMXt;}E}Y7[En[XZ 5 iCǁ`U[Gc6]skO!س  e΃5}=ml{eWT)vg!d]Ut5zԢ|/,'w Uu`n7 84]q@]_vM̗w%9Ym{>;C@\>$\IḆwnoi)CITO2ԇuo sflb<8.N%w:O<m]v=l3vr8_lSvfsA޴EqZ0P*XpN"izմuO7媯S'Hg+XVh;M@I5sg@UKGpNejp)PǬbu"Uj^&NX}XZfqoUGhP:
+K>TVJ+bk7Pi ռJSYy<V#+b5"G)^KT,J1e$$I$)]$nel̈́dbGy̰ oPV0)M>H'CQ؄n;hC >K%;<5QyWM!$k3]5_ ij_jr)ħ44SNX܋Մ (-{a~$qz`Vdwendstream
+endobj
+1159 0 obj <<
+/Type /Page
+/Contents 1160 0 R
+/Resources 1158 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1161 0 obj <<
+/D [1159 0 R /XYZ 144 757.9346 null]
+>> endobj
+1162 0 obj <<
+/D [1159 0 R /XYZ 144 731.2549 null]
+>> endobj
+1163 0 obj <<
+/D [1159 0 R /XYZ 351.6378 727.5781 null]
+>> endobj
+685 0 obj <<
+/D [1159 0 R /XYZ 495.6378 727.5781 null]
+>> endobj
+1164 0 obj <<
+/D [1159 0 R /XYZ 144 554.169 null]
+>> endobj
+1165 0 obj <<
+/D [1159 0 R /XYZ 351.6378 550.4922 null]
+>> endobj
+686 0 obj <<
+/D [1159 0 R /XYZ 495.6378 550.4922 null]
+>> endobj
+1166 0 obj <<
+/D [1159 0 R /XYZ 144 389.0382 null]
+>> endobj
+1167 0 obj <<
+/D [1159 0 R /XYZ 351.6378 385.3615 null]
+>> endobj
+687 0 obj <<
+/D [1159 0 R /XYZ 495.6378 385.3615 null]
+>> endobj
+1168 0 obj <<
+/D [1159 0 R /XYZ 144 221.4168 null]
+>> endobj
+1169 0 obj <<
+/D [1159 0 R /XYZ 351.6378 217.74 null]
+>> endobj
+688 0 obj <<
+/D [1159 0 R /XYZ 495.6378 217.74 null]
+>> endobj
+1158 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1172 0 obj <<
+/Length 2098
+/Filter /FlateDecode
+>>
+stream
+xY[F~_oVèȲ^bd1XQu$s)3H`0LW:u._$UJr։\tU\$u!W߼VS&6#\Q3-as FQj$¸, :M-]U%}6*vdWS$ViMWbPev$':
+u>\~6yfW0Is,I}XȜ[e X ðܐ4Z0BKd*K$X:d+9T‘%^(qeJQiMlR5Te85QYWnյ {C"M|գZj%Z]jE$KJ׀u
+~PҬ~CҢ=sH4|j,m `J",-qfuw3`@=NΌTra<ᯎM/=A:P-x8<&>muJ}@VIFyuHS;tzCcl60<c
+E%KZ3b7EΒ܉7|eX} ,
+'g,2MLsHX܂UMz jshRZn>fW5U˽/?u*L(l ӛ{=uqr>&קjYܮ$ӤiZ ekR5:ɞ*X&bW?X'b}"ֿ-,2٣ 9&{AWdP:x=M}MN 3)<38ZʵJﱨSEaXFQX:ybQ uR&kW ]ğp!V,*R@l ij2:r ;vԓ͂H% Lh,-J9J U. F_SB(,S*$J8OF2a)G 2"E"I2C^ަȒ|FH#A1 Xpr3bĆ0y$FK=Dcaj̻OPj|7@UY|ۢH>P_tMr2F,gB
+̙? 4}oe644'dsM{)@iz-CC3;>t Eˁ6ز܌ĩ\k1LU&vϷ0=<|C5`bÊnfn9$kJ=ZFD*<Qo}E#Nj FuD[
+6&9g.027~[`k\Ijo~Hs D9Bs\ΐ؃MV1`% x7{S<O;^
+: L/UE?IE>m:m
+F<s`gLGT剻[3e7K7˭{O
+:3I8
+HwoT\eF{{}Oa$M|VB.YY"8 #MN#ً? ZM̟1endstream
+endobj
+1171 0 obj <<
+/Type /Page
+/Contents 1172 0 R
+/Resources 1170 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+/Annots [ 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R ]
+>> endobj
+1180 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [302.3795 211.0112 314.3347 221.8594]
+/Subtype /Link
+/A << /S /GoTo /D (figure.73) >>
+>> endobj
+1181 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [434.3552 199.0561 446.3104 209.9043]
+/Subtype /Link
+/A << /S /GoTo /D (figure.74) >>
+>> endobj
+1182 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [470.1396 199.0561 482.0948 209.9043]
+/Subtype /Link
+/A << /S /GoTo /D (figure.81) >>
+>> endobj
+1183 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [225.5986 174.5922 237.5538 186.5474]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+1184 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [507.3353 118.9053 519.2905 129.7535]
+/Subtype /Link
+/A << /S /GoTo /D (figure.82) >>
+>> endobj
+1185 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 106.3967 154.9589 118.3518]
+/Subtype /Link
+/A << /S /GoTo /D (figure.84) >>
+>> endobj
+1173 0 obj <<
+/D [1171 0 R /XYZ 144 757.9346 null]
+>> endobj
+1174 0 obj <<
+/D [1171 0 R /XYZ 144 734.0242 null]
+>> endobj
+1175 0 obj <<
+/D [1171 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+689 0 obj <<
+/D [1171 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1176 0 obj <<
+/D [1171 0 R /XYZ 144 558.492 null]
+>> endobj
+1177 0 obj <<
+/D [1171 0 R /XYZ 351.6378 554.8152 null]
+>> endobj
+690 0 obj <<
+/D [1171 0 R /XYZ 495.6378 554.8152 null]
+>> endobj
+1178 0 obj <<
+/D [1171 0 R /XYZ 144 382.9597 null]
+>> endobj
+1179 0 obj <<
+/D [1171 0 R /XYZ 351.6378 379.283 null]
+>> endobj
+691 0 obj <<
+/D [1171 0 R /XYZ 495.6378 379.283 null]
+>> endobj
+78 0 obj <<
+/D [1171 0 R /XYZ 144 254.2518 null]
+>> endobj
+82 0 obj <<
+/D [1171 0 R /XYZ 144 150.2461 null]
+>> endobj
+1170 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R /F40 356 0 R /F50 892 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1188 0 obj <<
+/Length 1872
+/Filter /FlateDecode
+>>
+stream
+xFp
+-Mi
+-G~Im֖ϲ|IdyWК>gvgVHb}
+ϤeRGCO=SvG|{Z#Nsݿl˸K e䷇KbQR7ɢj
+!
+E$%!j׶MhG!%+.7Jޗ0.JacT X%B3cwi cYJs?5be{ۻm~*5\Qq¶ &є)|Ʃ_eap8"Ѕ)QC{hƪLF4az]vI꫓jrc0k}5Wt
+zi.;"bתPy,VoLѝxtFSC*jU>dZ[T!-O
+gd-")T|63W56r`Y-uT&e\硘_^Ҩ bTP)}U8P.J %u1Zz;de5 EX]+.+r@kyXJkC]`Y875!SU`iVI6~&ZeB%?jqqXP)nb(k 7,ycPD
+_=JpLGE Yqd0)p
+Wi=R m22"e lRtZGR,B5~R2ju^MjU߬~ϊ2M_&l﯑KE,{{1pE`O9'ƞP8<Ğ8{i_|`=(L|ƒ#- .Wknƴy
+1D;|Ca -[(pwA s?·qu9H@.l`vAqJ:7f?%)sJp'ǟk*\I! ?"f;+NY"'hbx ܹ#D1^]6>da -O"'w8"c ZHr~h*Ћ
+םև@ǁI나h"!c/iehr&xŬtG3#GqyfXdd\
+qVkV/xф*266kK&4}xȪF-+q;F8fR׳x,0ϨEV2kAendstream
+endobj
+1187 0 obj <<
+/Type /Page
+/Contents 1188 0 R
+/Resources 1186 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+>> endobj
+1189 0 obj <<
+/D [1187 0 R /XYZ 144 757.9346 null]
+>> endobj
+1190 0 obj <<
+/D [1187 0 R /XYZ 144 734.0242 null]
+>> endobj
+1191 0 obj <<
+/D [1187 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+692 0 obj <<
+/D [1187 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1192 0 obj <<
+/D [1187 0 R /XYZ 144 613.2865 null]
+>> endobj
+1193 0 obj <<
+/D [1187 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+693 0 obj <<
+/D [1187 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1194 0 obj <<
+/D [1187 0 R /XYZ 144 492.5487 null]
+>> endobj
+1195 0 obj <<
+/D [1187 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+694 0 obj <<
+/D [1187 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+1196 0 obj <<
+/D [1187 0 R /XYZ 144 371.811 null]
+>> endobj
+1197 0 obj <<
+/D [1187 0 R /XYZ 351.6378 368.1342 null]
+>> endobj
+746 0 obj <<
+/D [1187 0 R /XYZ 495.6378 368.1342 null]
+>> endobj
+1198 0 obj <<
+/D [1187 0 R /XYZ 144 251.0732 null]
+>> endobj
+1199 0 obj <<
+/D [1187 0 R /XYZ 351.6378 247.3965 null]
+>> endobj
+747 0 obj <<
+/D [1187 0 R /XYZ 495.6378 247.3965 null]
+>> endobj
+1186 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1203 0 obj <<
+/Length 1831
+/Filter /FlateDecode
+>>
+stream
+x_o6)6Yء0`V -0ŖmHrb_~wGZmM6@JQGOs'B~lb收ѢS'!
+ _L9+mj;mիg/lIIq
+&EYdt[3'I\Dt =d d#a`LNiW%F*&ccb祆 W]R2fV 83eD?W=ug9_Kb޻n&fI,af 0`w"\xLfa"_H`7\T.8B1*l9RGVu,L V2k8h}&V*<X&VXA(M9F4\U/VUMjiO{ i{M2F+Qc+ϳiK8hn7B.~I|Iچ`Wd(|Yg~
+ IN^(I{#hf7Y I${zoE0wG7k ?Ø&qrpN1w]`gˑU@tggޑU#3:q]t ,ŌrvGiV7DGbwVViIk[W߆^,%7x5-낔:ؘ\֙ ‹z9"] &6S
+gl7%󖇈~A`Ν@29ONpi2Iio
+^&6Q r`LK&_bB~:85tdZx =ѹT;^
+endobj
+1202 0 obj <<
+/Type /Page
+/Contents 1203 0 R
+/Resources 1201 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1215 0 R 1216 0 R ]
+>> endobj
+1215 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [194.8098 109.4693 206.765 120.3175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.85) >>
+>> endobj
+1216 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [209.7538 109.4693 221.709 120.3175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.90) >>
+>> endobj
+1204 0 obj <<
+/D [1202 0 R /XYZ 144 757.9346 null]
+>> endobj
+1205 0 obj <<
+/D [1202 0 R /XYZ 144 734.0242 null]
+>> endobj
+1206 0 obj <<
+/D [1202 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+748 0 obj <<
+/D [1202 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1207 0 obj <<
+/D [1202 0 R /XYZ 144 613.2865 null]
+>> endobj
+1208 0 obj <<
+/D [1202 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+749 0 obj <<
+/D [1202 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1209 0 obj <<
+/D [1202 0 R /XYZ 144 492.5487 null]
+>> endobj
+1210 0 obj <<
+/D [1202 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+750 0 obj <<
+/D [1202 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+1211 0 obj <<
+/D [1202 0 R /XYZ 144 371.811 null]
+>> endobj
+1212 0 obj <<
+/D [1202 0 R /XYZ 351.6378 368.1342 null]
+>> endobj
+751 0 obj <<
+/D [1202 0 R /XYZ 495.6378 368.1342 null]
+>> endobj
+1213 0 obj <<
+/D [1202 0 R /XYZ 144 251.0732 null]
+>> endobj
+1214 0 obj <<
+/D [1202 0 R /XYZ 351.6378 247.3965 null]
+>> endobj
+752 0 obj <<
+/D [1202 0 R /XYZ 495.6378 247.3965 null]
+>> endobj
+1201 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1219 0 obj <<
+/Length 2126
+/Filter /FlateDecode
+>>
+stream
+xZm_ow- -zm/[Zm;á^lE6僱r<bO̅Ԥ)m͌3'( %r3sǜv~:f)Rq"8ѿv'Z◧XQUË>NQ
+U8SQ>@KDͻofm:t0=Ko7ݔTLNKw1)2 Bg>_̟™pN73Fgg<,K<
+u0J( @#%PI&"^Ƞ'-;a.!`Nm- SfRz$O+}|:ZXۡ7aL d*qj^`ەVwTF,eCy<Xj`a~7,N4чC"D:-0Qo.Kjq}} Gs/J㡠}Z~̼)!hi+zcABF=6x(ɈC!_w ބhþsa`h_Zȶ%U`{ZldEeCI|tE]71@1:QD 6y >ÜsK=09ը 47XIr܂7Zq
+Cߐem6UgcVIa;HɄ+}[# 2x#>јZ ƈTXz7#4ڶ=>E9V&5 aLtv /3 "Ad)8e3\Vxrn=.sq^z)Mɝ!u"L `kShmaSCPS#3ɬ!P+]+z̫l_V|6:ck\vߏtq_1 d-3: ?>ef>`fe6әdZ]z1M!`=I6
+o tfx [H|wە߾if4&ۮj9Bpӽ8I`+sc&xT pd NHϦpҨpsԹẅch\qĦ{wٛ>_.ϖkf񈜪
+endobj
+1218 0 obj <<
+/Type /Page
+/Contents 1219 0 R
+/Resources 1217 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+>> endobj
+1220 0 obj <<
+/D [1218 0 R /XYZ 144 757.9346 null]
+>> endobj
+1221 0 obj <<
+/D [1218 0 R /XYZ 144 734.0242 null]
+>> endobj
+1222 0 obj <<
+/D [1218 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+753 0 obj <<
+/D [1218 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1223 0 obj <<
+/D [1218 0 R /XYZ 144 613.4082 null]
+>> endobj
+1224 0 obj <<
+/D [1218 0 R /XYZ 351.6378 609.7315 null]
+>> endobj
+754 0 obj <<
+/D [1218 0 R /XYZ 495.6378 609.7315 null]
+>> endobj
+1225 0 obj <<
+/D [1218 0 R /XYZ 144 492.7922 null]
+>> endobj
+1226 0 obj <<
+/D [1218 0 R /XYZ 351.6378 489.1155 null]
+>> endobj
+755 0 obj <<
+/D [1218 0 R /XYZ 495.6378 489.1155 null]
+>> endobj
+1227 0 obj <<
+/D [1218 0 R /XYZ 144 372.1762 null]
+>> endobj
+1228 0 obj <<
+/D [1218 0 R /XYZ 351.6378 368.4994 null]
+>> endobj
+756 0 obj <<
+/D [1218 0 R /XYZ 495.6378 368.4994 null]
+>> endobj
+86 0 obj <<
+/D [1218 0 R /XYZ 144 142.7 null]
+>> endobj
+1217 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R /F23 307 0 R /F40 356 0 R /F50 892 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1231 0 obj <<
+/Length 2845
+/Filter /FlateDecode
+>>
+stream
+xZݏ۸߿¸@7-"p [C Z[-%&}烒e[vחbə7#''Ҙ> ڸ|{'&+ǝ3 %zl/OU/%ZM?+R* JQ~]D3Ye޶S<ҬF
+QS%}jmHXS孻}\K@<HǤOGI2w>dސ3<T&;R|ܽ{+I3u-<M،NIS'o4Uo9Lze3G
+B' ^Hr)8>RŠәϾ]WәL >dӾ)6sk׆SiW7} :ڕ}%{_=D_yNƲ-nKy[%gx~DR P`I3l-ѹXZ&Zc|R*$ lUQ1-/S
+xz2#02u2sBAY̾n;pYf{ F<>v=hn5IM'5 4YEKR3Hx"V)9b8pd;T`89D(}9fԻ9|[?T6&9A;pp^DfBDȾ'_Kd;t]vt釷(8AV8 sn 5m&̼;Nq6Wm=nɍ*.$7FqUl$uF`GCOn
+'u\˭KV] ^j3ŮAd|"lo:Z/:^ %}7-4"8 笣 mx^-H->mz)F
+EZt9JplOD7
+ҷ't =/Gj*!"4<Vx^35CPS`󁄋zlQgXwfޱ%ʭXp oD(ȯS}a_}]0~ OlJ}@<NOx i23yi#/d#WGOH8R:×^>ͲA[ӵQT@0;sR(C*x+ H 3sH?!w0 xBK){Mp|9}Q #> C x
+b0HpTI943X: (G6@5vRAS&6sfΑf|Ka^0dVRh {ڌr-!j
+qNd 2?CCj? "x>5+Ĵ#ǸT@z
+~ Dljj3HyqX"^Rl_u-VH!KtF/+9SϼgNe{]W!54,I |K<ˋ)WpZ~}E\BoӳQw[m#\#k@*6o!',gh-9i!o,6=]{MS-=K
+u^/0vdJBֽ CMY_8#߆i@uZzu#05 <(
+_X0/RAs
+$+0 ('&']'endstream
+endobj
+1230 0 obj <<
+/Type /Page
+/Contents 1231 0 R
+/Resources 1229 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1239 0 R 1240 0 R ]
+>> endobj
+1239 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.8361 248.0294 268.81 258.8776]
+/Subtype /Link
+/A << /S /GoTo /D (table.5) >>
+>> endobj
+1240 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.0206 155.6467 259.7432 166.7716]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+1232 0 obj <<
+/D [1230 0 R /XYZ 144 757.9346 null]
+>> endobj
+1233 0 obj <<
+/D [1230 0 R /XYZ 144 734.0242 null]
+>> endobj
+1234 0 obj <<
+/D [1230 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+757 0 obj <<
+/D [1230 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1235 0 obj <<
+/D [1230 0 R /XYZ 144 613.2865 null]
+>> endobj
+1236 0 obj <<
+/D [1230 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+758 0 obj <<
+/D [1230 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1237 0 obj <<
+/D [1230 0 R /XYZ 144 492.5487 null]
+>> endobj
+1238 0 obj <<
+/D [1230 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+759 0 obj <<
+/D [1230 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+90 0 obj <<
+/D [1230 0 R /XYZ 144 293.0411 null]
+>> endobj
+94 0 obj <<
+/D [1230 0 R /XYZ 144 235.0849 null]
+>> endobj
+1229 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R /F41 374 0 R /F39 351 0 R /F50 892 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1243 0 obj <<
+/Length 3793
+/Filter /FlateDecode
+>>
+stream
+xZ[o~ׯX( !(
+A4myHJ)rZVdq%rf\sjZ)kW876]mo/5y6ի<S.s"ި$I*꫶9~Xk?wkq1FE/l3 ZJ ?]~lI(h-C.촉w2>Q<qzcD[3~W^8 m꒎qK>Ob(y 'O}cS<N2xXot[Qp֖WjQ6-|ayOjg"}Ww&¤iP_|w)fJd*T8ƭLe~s
+u8[*=tC4
+Hw8(k؅XY4u}N|:|6(D$7m<pBz&uhld*EƾA I<_T`ffC*)f'޳koϔMD-pQ2{i`[˅R6@ Pepw)Xxvi-w冕U*<)<D-f5]Ǜk|Ct j 5*AZ}++a%;k'os
+0sˋwXiTW (k
+30V^@C[JhX]~p4pd>e{8ei_ч2[$vͣ*=?VCA3;
+
+![v"!x S8$lPYm-̜Y)KkP]~>M0& _!{}VsRǒd<N 'DԲDʲ9Ďؕ2K E_8 L<8w@y! 4A G< ;$J.ܝ9! HrkR\WYdج6fKo}v?A֩L0z&u{|9Vp,zGl3 )[jXqƹ{`?Fa/LN_FZ<Cي^w uYć?
+dg)mZԛCƫB]x{05H3| (D,vJ9qWy1q!~7S !I]ƕI=r0>1X< #&6ɐN{f7}(NE!fD*>@1l1x(C@
+@Ng\e ZNƵ :2`~G&g .w{.<tsp;s=Q F;Sm7#FV3نE>=:P|}OEwM`Q֫ Qa, zB.v!56AV EGu3<@|:<pcG"[ v?8!FS0JVSiWn)CG7T"&Ñ\ [ g=$؇ $u%ao]iRئZf9d"d'b i=kO =f!C@NmL*b¶E% $08Ru:ҷP懙M2+ðAOiC<5V(
+7/!H0o\*͖0&[X޹g=U<07k4`-o*`<J{kCWHVXx0^7Ht6}mFO 1;j(~\a/a>ƅ"x/hM(D=CV.pxlka2[M'Sʩ'>(il!&`uR
+o7!dBdS$NrbU
+endobj
+1242 0 obj <<
+/Type /Page
+/Contents 1243 0 R
+/Resources 1241 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1248 0 R 1249 0 R 1253 0 R 1255 0 R 1257 0 R ]
+>> endobj
+1248 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.7204 663.7241 218.5169 676.6755]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.13) >>
+>> endobj
+1249 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [329.0146 318.801 339.4477 331.1171]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.14) >>
+>> endobj
+1253 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.9301 130.777 270.6154 142.7322]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.1) >>
+>> endobj
+1255 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [304.0438 93.8754 323.4436 104.6849]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+1257 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [445.5888 85.2179 464.9885 95.8679]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1244 0 obj <<
+/D [1242 0 R /XYZ 144 757.9346 null]
+>> endobj
+783 0 obj <<
+/D [1242 0 R /XYZ 144 734.0242 null]
+>> endobj
+98 0 obj <<
+/D [1242 0 R /XYZ 144 409.9177 null]
+>> endobj
+102 0 obj <<
+/D [1242 0 R /XYZ 144 186.5816 null]
+>> endobj
+1254 0 obj <<
+/D [1242 0 R /XYZ 159.2431 116.6401 null]
+>> endobj
+1256 0 obj <<
+/D [1242 0 R /XYZ 159.2431 97.6712 null]
+>> endobj
+1241 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F41 374 0 R /F33 316 0 R /F32 319 0 R /F34 1247 0 R /F25 322 0 R /F40 356 0 R /F43 455 0 R /F50 892 0 R /F7 803 0 R /F49 836 0 R /F59 1252 0 R /F53 943 0 R /F24 334 0 R /F26 931 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1260 0 obj <<
+/Length 4086
+/Filter /FlateDecode
+>>
+stream
+xڭَF}bk
+ԭ6wyRn7qd}
+t6ӝsjOoNIt&iD&|6:x$`Vfêq!6r5@l [=5#˨'#W4-[-l<=ܭG<29ڻ#C)V<#J%sXSz"\_HLAAc8 {5 S,گG=J:ӖFdM/TDZmub}ד4OFb !,sݟ6<6_sZ>!xӡКM5ք:C#CnU&z#s_'kSCKn(1q ʼnY"Lʖ" Xg#
+O,* ;
+
+
+3O >ŷ>J&,^7-lYwN6L38Gai/H'*Xb+[Ȳӹp][SD((+ԲҭSy:h72k و[z
+s2WHhge,4"tIJ`m<& 'Z~?DG{HdD^IT.Wbel#
+SuK| ` &:ѩC5G>V%
+%6խI2,Kkil,P̥!ϊLsAv{v ^%͉CFQ[R!g}aP;VxD)\|Fs ؒ+)%ޝFP;!V؁Yy8M/4= >
+s0v| O!pWYb$ir.viu<4DK\ב)/gd
+f}
+"Sl@HWIUd_>)(y~"$Oyd8c7 t~z%> }!tڊgQ>38ϐ,-kOZuӶQ45jmQme\{}563)+^fB o7xi`
+AP-]>(v/b2L#^&&*;C vto7!7i*NOE4B[=-Xo^vkʖh;o,)G֝[77l\N 5de|
+MLgtWYJ x1y@i RYjY`xܴd7apbT -m07O{|g]w(ƍLJYEafL|7 |&YmgV]ع/Mdc o",DE9gb MmkRw (U=i;@JN>?|I/K iBVu+gݹ<w,ȭHrAזrhL
+xY^ Y3_tؖ7tȮ||r]J5zaef[)J$3/Fi+`!_p j3i\5ʜؑ_ ̓,}KtY6
+:tLT`xЭ3cBw؇)o7X
+>x܎%a8&Tc_ND[6*iHxן&e@:#G&ǥ͔*DxaԐ'3ROJWRl8ϰr\hmzls ڦ¥KEV]^H: >MmLi1<kfoqmg+:RFx#e}Kase=
+s[rd!(ԋ
+KZ] D&`|9^SiTD* ms䟝G`E6h
+`Uت-c7) BȒ|N'|}cVծڌw=F^SaYRJ ,s<Et9U#8' +ArlӳeU%jh) $+"q
+_"P"j␩@!J*Y_MZ|W$˰P.! Y#] . ,Mtk)&
+0G=xW y"`p#,O
+JҐe^[,`*QyZ~9*%r
+o ]xI(]~eu
+0ض"
+R@iT#/C2f͓4K9ފí[GxAi̗~N^h=94"C)ե&\-'B%V,L XABendstream
+endobj
+1259 0 obj <<
+/Type /Page
+/Contents 1260 0 R
+/Resources 1258 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1270 0 R ]
+>> endobj
+1262 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.1209 612.9782 213.2527 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.3) >>
+>> endobj
+1263 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.6058 577.1127 294.8446 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.2) >>
+>> endobj
+1264 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [316.2486 577.1127 331.5247 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.4) >>
+>> endobj
+1265 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [474.4248 505.9351 484.8579 517.9745]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.15) >>
+>> endobj
+1266 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [312.3503 493.4265 319.3242 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+1267 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [291.492 329.0043 301.9252 341.0436]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.16) >>
+>> endobj
+1268 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [470.5833 292.5853 493.0547 304.5405]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.1) >>
+>> endobj
+1270 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.3131 156.413 457.7128 167.9099]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.2) >>
+>> endobj
+1261 0 obj <<
+/D [1259 0 R /XYZ 144 757.9346 null]
+>> endobj
+106 0 obj <<
+/D [1259 0 R /XYZ 144 457.4018 null]
+>> endobj
+1269 0 obj <<
+/D [1259 0 R /XYZ 159.2431 169.7132 null]
+>> endobj
+1271 0 obj <<
+/D [1259 0 R /XYZ 159.2431 160.2088 null]
+>> endobj
+1258 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F45 799 0 R /F43 455 0 R /F7 803 0 R /F40 356 0 R /F50 892 0 R /F41 374 0 R /F25 322 0 R /F24 334 0 R /F31 337 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1274 0 obj <<
+/Length 2118
+/Filter /FlateDecode
+>>
+stream
+xZmo6_hŒp8\CCvķr7CRN> (r8> #1#BՖyPf8 s _]|3o^^we\N` yj$j^.7JY(PYjCXlgBo|Z ^XKӐ?.&6Q9C(i9g!~8A n
+-c]6.CKY[СD6J̅{KKΤ_Y7_Q< ۺngG9)51k [9a+ Iha$tbtL ]d݀h^ g!@jyuWophR
+# <S
+ KeH<{3!Ҍl ǵ';Fĸq6pRA}f|a+?i{> R0R 4 l;NA5Qˆ)H8Gw║4vJ,U!uz "!"c:-VOW˚l6zOȸ I)ˇLٟZLdUTp Y,ڎ[qqE 09wUAXN4,hwYw
+߅q3n&"Zl![rU;cuSQLUwqYI;ŌZ䀁3~ck. JcSTmT\J0OTATx>Kmz,4aILh~ I=4?':yl#3r0etvAp,I0Fv
+=0ėw 1a<女l
+[:!,>Ee/ǻ=Z8%}VO6׳**3Zև֏y
+&6ߤ҇ލb(| z}
+endobj
+1273 0 obj <<
+/Type /Page
+/Contents 1274 0 R
+/Resources 1272 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+>> endobj
+1275 0 obj <<
+/D [1273 0 R /XYZ 144 757.9346 null]
+>> endobj
+761 0 obj <<
+/D [1273 0 R /XYZ 144 734.0242 null]
+>> endobj
+762 0 obj <<
+/D [1273 0 R /XYZ 144 586.0787 null]
+>> endobj
+763 0 obj <<
+/D [1273 0 R /XYZ 144 477.4857 null]
+>> endobj
+764 0 obj <<
+/D [1273 0 R /XYZ 144 328.5438 null]
+>> endobj
+760 0 obj <<
+/D [1273 0 R /XYZ 495.6378 294.9198 null]
+>> endobj
+1272 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F1 1278 0 R /F47 940 0 R /F32 319 0 R /F23 307 0 R /F24 334 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1282 0 obj <<
+/Length 2811
+/Filter /FlateDecode
+>>
+stream
+xڥYo(P*,W|抻
+n:,t+㠸#o~Ok4N^>z~fQCچQvTJ ?}۪G/L<.&4o+׶l3ǁDq0|t*tRrEܫf6X*qRcוH%hT@
+_\1~Qo{ GTୁЖ-ÊӶ"-TDZC:n؀w<~W#=r'_ ԏ(ca(FZ1e)M&&V? Kbbj6 ,P>72MÄ<Ser{Hj9Ȓ9Y8<hQl] v8
+pբp
+]BWL;GFU=MtH F.Ppn_ä|Žj2" pR}0Pz!Vši,^po%é O ;5(MhKPU;j9l~/8|˚QXͷep^SNU]3-oˢw;Gm& +`eh23nOBUpsl4ɧ v꘿.r8j3:T"b ))զ`]n
+PoQq Tڌ0$dS݅͌ qz0b=>)ku4h}˲<Pr oGRp&11ajjKV:Ā-?K&ؗB}Xvς<f`<zj]." $Xc?(F l
+y4XN80֛ҡ6O BPC )g
+id`2ƷiđRETT4+ v y.a'c4O$9Fd|bUNˊ\3N&t\VofNj7` 9ˋvB_L"mKQKck?R#ڂb*jiRbTpR*[-Z=Pɩ&-]Q ! $UgXefNu"+c,n}"Si
+ 4YAf2
+CT*gHyV a5uM:Dš8'!72
+FuRv  v[Wv(jt"K(t:ӱ\T܃dR@E܆j%ǜ/ŗ%|)vX4%9 4(pJu*etYC +gJa!oy2(y`8W6 % l'J|;YV&#W&M$z|BQ/|Ü^s%%_H
+a/f)pDZb$2ctNGfuH[ u;hH9=b\SA p0%WŤ'l,W:?Bኯmw|?@b؋(-dsw)uʿ]7(4$D{NQ|kI!69T ܗ-\dZ
+ uT
+/1 pɜo˻jOgTZh{f2J:;Rr $emFv^K+V("0۲F) ˤ\?TKQ0ᦺ;"ѪY0t7\5gyI%$]h>4yg~e7i?G'endstream
+endobj
+1281 0 obj <<
+/Type /Page
+/Contents 1282 0 R
+/Resources 1280 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1284 0 R ]
+>> endobj
+1284 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [365.7521 185.0887 372.726 195.9369]
+/Subtype /Link
+/A << /S /GoTo /D (map.1) >>
+>> endobj
+1283 0 obj <<
+/D [1281 0 R /XYZ 144 757.9346 null]
+>> endobj
+110 0 obj <<
+/D [1281 0 R /XYZ 144 734.0242 null]
+>> endobj
+114 0 obj <<
+/D [1281 0 R /XYZ 144 674.7346 null]
+>> endobj
+118 0 obj <<
+/D [1281 0 R /XYZ 144 472.8132 null]
+>> endobj
+1280 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F40 356 0 R /F43 455 0 R /F45 799 0 R /F23 307 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1287 0 obj <<
+/Length 12500
+/Filter /FlateDecode
+>>
+stream
+xm]ǑS̛ 纫ۀÉ`5}!ň\ 9\ВA9:3HE HsVwUuu=Y3v)׳/'olFwxB|u_޽vyqqx|R:?՛_g..q)_.Ny~x,ө-<ӓ}%Sl2SSa!f|
+1}3S9fb/_o =9?yvy3_-Ki٤}n,\DZlno\^_o|yV{'MN[)OĹ6;Y Jչ_xs{|`~1hZúoٳW~NmpJzq诏0]d;쳐 I/ B'}/t.o~
+c8M;s?~e7w6c\8hIYC Z,.R$hQ厀+'h ٹ3$CBnT&# t] ?!CJ!e4!dH}s2"CAN<o5+"ohR!@+A eyFP6Bآ(pm 9FZ B\FTk4FkbkU AE!:4сV7䌑66hvyY.!'Y2T_+# a"t8XC0ā
+c!h!,6Y вɠZv*hA2l̈́P!n IJ$2 Meɡ1dI9г-b[Bm%έ 8=*m[j6\@r !` pCs̈WM® ['{:3I? $ 1Zm[+ҶVҮkpa&]v C/\Ddf2[KER:tk*;͆lҘ
+ZGCp#lq)PUZ4fMkMžHZkZ+CS;f `+V+fc[t
+~cdl'„u
+v*{0렫n&1: c%fE\䯃ꆲb1:d
++51**L1BV*DJ z vfe ы`j:&ؙ:'ʸvR0HPÍ/.RYX5 ש,B*`^74L3ob3:M3\\TƔ!D:^ʕ|3̪d*&v^c ) CBV"axmXu3fZ,bu"m 1UE"cvX y]cw\21lD1
+Y 7,Vgư2ΤXbp v:$ˏʘ)y 6(Խ^K;98We;(`eWogL41Ψ;{fXE&عD3Jf&2Vĉ\Ty"V5 vNwk'Ж0%YR-P;ęɉ!1vgDOx*L3T<TN$cirw@KxI)VΘ0VeNʄ;yMu-ꡐH& :-;cGeNSX2vj*)0u<L+.=Y:O0'd߽45iiRc*ׄZ׽Q Ž1<^cĪARhm@cTRmcy:akP <
+8hHy0IS4Nw&nҩưҀtc<~1DLd"czzh||y#9AmuU :`|Ȋ\Fj_,X,<CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎaаch14v ;CÎas<I-TG*Ө仳X˩/uBuS]Z$=y<مT9GxOuq2,j6DÊ{>nyR@S]"nB| s }P{9[VIui,mÏDuI?gҧ! .6,S'_lz6w$A[tΆ&ч X2 zj.agpQNci{i |>&.7jL%?NƜDю=H ;yl˿O\r/c_MZVyS\: 荏donzMY$lr_R4. _
+!]l^{B|@H%plW'-D\?M:i@ɀ{o,rhV `jyZТO{iNVry 6էSA@SQtȾmYBF
+M]k(47WX5#?TmC%k@l֐}S+M}4/9BC7J~yר1-ոT`
+-/ .F8
+jiiCLq0M0su&JȾy1K fynKzl`N
+iz n=T5| @X!Z
+Ƃ웟 dM,B%D`Vkֵ@gE"b  Yi[G
+Tr2i]I ĒW& ~ȮAji.
+dGGД~WTBS
+q="Gz U70\0<BҪu6>& _g +
+3sFv%#PS *T)D˂gm
+TT 9uFH|a]FCD?<,BºңDfRT*T
+4ѣ
+YisXC]>RU"wHS!ߡ#hEl!'(rL6l1 |cXwm􄰇Nmk1\ DPA4B7;nĶ])T3oW5 ̫>z̹[u <@歁]+B+*5H:j 4GWs0~:őCU MDUwʚn)
+5UD/W1׌BMzG q#nJnkg8»k.YBtMId!ڊ8L#:nGVVy7dbۯ("MJa^Ak.-Z0 zE@MѦ=
+*Q\#N`rs+
+65$FWT{+qC T1Yꆨ,bTLLM!cgbeF=n&G)y!N&WٯnJ1*1*.m\J51"NTRꈾ8io1uW &@L ºU)| EH꼋x"( F0oC0)ٳ!AW %:Ry+$K%RDL.+QCxWuhpg\ PR(w-DFtą+Sd
+pTށHD:"YQA슞^$!TPЩ3 ՙw xT=n 5.>#:@T* @7@"zՉ>*)[h 'A 6R(B*zB.]3m=o2: jV2
+#Kh: Of:uyW4aFZP 4ꂸm 'eP= X 2VhBibNI
+: ķ=AƗ;ڦR#DB(@ s _b8lU(D֑ۇDTĉm$}jhb_/[o! aՋ (Аm{ 4ʮhODZ q &&ƞf7NG۰J-$7o67oaXia͒LCxWjj]Pʎ$CcBn!<]3n^ACy bp]g"Z)0kq#EB :d{x wDJ[ fE@,?oߑywg#PL`M0EUr2$Ĥ4r<‰$pDW}TsG.uķ~:bsDW}å:R<#7$Vqf0YHveB?=nPA1TIoHqܹ䎣9{ MJ1ټ$Z@)^Δay%»JjHEd$dśZ!Uz,
++͊75&+ԐR/aJskdśfU=4$N3u{0¼yU0 @u!uǼ]E EukᘞQBۃ e29!S 4<+޿iP>InkkqXa*RTp@7M a*¼ i]XG>r :#noCkU'1dqܘ~ 7e*TĴ'%RVK!VjH|*۾dOT0U*rE9UWQ>
+fZ
+FԳ ޣDLOA ӭ [7juŜYB=2N'/rIe@AXB}<>+Ĉi/.XȩY8벡F} bi5#5 rsn;P>+X4b؇6r53 :rB0H$w(E(#ȎrA/>k!ۦS1&IMq i^Z/P)#WӔHݐ#5:W#G! +$w{Ʉg2yBk d"ɼ?7:웢N4{$ rǑyHBNhb^ԟi$EFDTL$ޚE_("N7dИ,T&L4Y"Ni0ȳMvd&x{s@S)Gwc2*h~~ TEB1+Mju뇹
+ȶI$Y<Y7'M H0'w.Oآ,Dt4oIO))# xRʶJDx(܄(RBa{$lJ z(÷dXWQ)Ujȶw%DG&"iID.r')vpG65s7%j s͇^4oKMzk ϒшe>2#TM %vՋ1]O#QnIpϻ~axWrE;%(ibAVѼ*ED
+ý2ATmH8j1l+Ȯ)[Ee}Ul2D_bBw&6 B0^jtcmUl2D[%G$Fp%hemDry]zD̫P&!P!m $mɕ<¼
+6*m2ZۚD]OTU-!A&#REץ*d;PJCh@$Fdb!JCBS-!A&cy#iS) dߢㆬu ]l*oBXKM3"YB ijja]+*
+I9ƛRdT[why.sW~
+3BDD-صnT$'k, 4[D$^RER) PWQC% A}L43VXTx9+"Mқkx]W b7E`NWYS@܆<)par0'vF۔yByb<6I ܘw/*8.8qJUqCI"c
+1+ͻ~gFYݯ 4ua.]?$P'`j~ioA4@jm~Pg4Z"!gxgeɶM
+fH>f VD{nޤWxfk.DT}kH=4$.F<)})8J3 eӆGJk`&/H Ej}&'EGV"2HF
+Ǚ4ziߐžDܞmSʁ!=TVϋe2 eL^lU| AyӉfɇ6,\gx{tjԬ*"J T] (GdDC{JBj8 iyS\
+3%')P?Ƒ M I!rLރ0MP0!~3h)Ԓ{sld8]N6Abl.QB~LX ;!JAB(Ȯ8HC̎:cfhB 7Y1@#>Uz
+f4čPiA#.݇hDρGVj2`Z|af8y+MF W` Qd1B1T:3^
+2RH P̮9j{[%5 +5T q#$+KC8DjJe$TCDAґ}ۀU"9 NJ6@W"9P%
+$):fXyϰJToYU k-Hׂ⤕0B׽"WJ/*ZW,"
++J;Ҏ(,MKJ;\H#*gwCHiGT6:#j 舩e&!\=!'zR 
+"6B~1[MMt W$ID=2auJm\*wE6/(79vt R7Bûx"Cv(Vh~tȱEE`rщ2T 9@6h7T-U:٘7d:# @rd7_c$AU138j2:C2*|1Ļ YbRC&)V[FJ0o#J/)e^ V^ĚWI!#fJJyF0o~"
+ .s%0 :ʼn꠪҉@iGJ N|[ U!)a##Ք0k/mdD, Y-9n ٸ2Cd!&uܘi GՕҙv_j C$"+ ҹxAcM"
+͡*0"0Z4H@Ͱ־d-աhFādš!vL`+ז!(M x| hYEbV9!tBޘ` k1CjɜGR.І
+A!I>C
+uf
+wㆌ%
+PQ5hȈ*oF2d>x Nrg&֫/ ҞbZkYuQ WS#xBdI
+k| eEf{{ #u52 {]o*Ȍ̮"xNSzih v7G pyx">2x
+'a>{,F6X֯{7~bKNXh?ɗϴ3}r:cݹ9čyjyٝoD卛i|刋eX|W+=\/6\~Xo>zt[77ܭbuE(:/zypkEyg-\iuɗWY//xyj
+ܹb'?YwnvQU_}}TgWA6|vy>}@gW?]|aoo_??-bS8-کj;-\S|H/Y“ <'mٟ7 -[f;<?s'AO@ |̿26R Fw <pEW./{(lAkق'QNXLͥmccN+-;{A`+濗x+X޸ӛі>lێb<9(kc]nciE_=)x'M[kQfRj,:4n2/,?ߛ
+endobj
+1286 0 obj <<
+/Type /Page
+/Contents 1287 0 R
+/Resources 1285 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1289 0 R 1290 0 R 1291 0 R ]
+>> endobj
+1289 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [291.7033 546.8235 298.6772 557.6717]
+/Subtype /Link
+/A << /S /GoTo /D (table.6) >>
+>> endobj
+1290 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [341.9425 534.3149 356.6651 546.27]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.1) >>
+>> endobj
+1291 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [421.8751 522.3597 437.1512 534.3149]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.2) >>
+>> endobj
+1288 0 obj <<
+/D [1286 0 R /XYZ 144 757.9346 null]
+>> endobj
+787 0 obj <<
+/D [1286 0 R /XYZ 144 734.0242 null]
+>> endobj
+788 0 obj <<
+/D [1286 0 R /XYZ 144 712.1064 null]
+>> endobj
+789 0 obj <<
+/D [1286 0 R /XYZ 343.6004 709.6158 null]
+>> endobj
+122 0 obj <<
+/D [1286 0 R /XYZ 144 625.9296 null]
+>> endobj
+1285 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F4 885 0 R /F2 888 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F23 307 0 R /F32 319 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1294 0 obj <<
+/Length 2349
+/Filter /FlateDecode
+>>
+stream
+xڥYoFݿB@<TtE_(i$qC^cCt(9nb@ffLY;K\"2cj%g[XǕ
+ X !~C:Dxv^D&^P:e";&i`>*Z)NXu+4w.ʷ^Љ/k
+k^`Ʃ2;" 㳱Yύ@,|"$)+σ.2N2u$/md<+-V$][/
+WDzYOb1ZHF,RW3x$Y6Lqa z̨I@&tP."U.VVY{b5Rp̥gĘ1*ab$N48TW0d)&Ʊ0L1/mK9ip*t?')~
+`@emCy*8T'-2(G0RgsY8EC
+Pמ;-]&jcYN:@h>͡"N }qCJ=2ihΪ~Uu ]<C;jH3ԎP쿤mctWJ\u52EՅscUh=EX:M:*"KUMC@x4]ח+DtqJ%]$_*壊a FF[
+KW[5|&,)7F31|sF\]PX+WX_jBtyq#Vp͑/0mB-'l;D6HpnKCψ zD(V`
+b@[RU,Px9uՅ˲Y?J.g3MYJ0Ӊ1w`S@p_Ct$~A%3 :wq@E^w}<&p %3P
+C%ܑm*椨T>v48?|<cƎ՜'?}smY2{Ʋ ulgߝ_~χE<@ڡ'ےbQSIH}m7S0X֟qt pSs}{s,Lv|k ?}߅ܫ4_:w:Opu{:)&A嶩wޢ[X}bCxe
+ccOǟs'✂83Hs͉[bp^eB$%j>I 茵I&}a‰3 BmV=ej*zJNj=R%B ?H(ib(3rV:Z(N,}O˨CbE]avYD8Rβ۞x; p̻.`5X=nw}=Ԫ;p?XVC^8=ۡV~):7MiR%\e q\
+endobj
+1293 0 obj <<
+/Type /Page
+/Contents 1294 0 R
+/Resources 1292 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1298 0 R 1299 0 R ]
+>> endobj
+1298 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [167.3846 461.9216 179.3398 472.7698]
+/Subtype /Link
+/A << /S /GoTo /D (figure.92) >>
+>> endobj
+1299 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.1203 203.0116 270.0942 213.8598]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+1295 0 obj <<
+/D [1293 0 R /XYZ 144 757.9346 null]
+>> endobj
+784 0 obj <<
+/D [1293 0 R /XYZ 144 734.0242 null]
+>> endobj
+785 0 obj <<
+/D [1293 0 R /XYZ 144 712.1064 null]
+>> endobj
+786 0 obj <<
+/D [1293 0 R /XYZ 335.2756 715.693 null]
+>> endobj
+1296 0 obj <<
+/D [1293 0 R /XYZ 144 675.3444 null]
+>> endobj
+1297 0 obj <<
+/D [1293 0 R /XYZ 336.7798 683.3145 null]
+>> endobj
+126 0 obj <<
+/D [1293 0 R /XYZ 144 564.9381 null]
+>> endobj
+1292 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F40 356 0 R /F39 351 0 R /F50 892 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1302 0 obj <<
+/Length 1843
+/Filter /FlateDecode
+>>
+stream
+xڥXnF}W
+P@%@_$Em}H@Iԥ.؆IQ2E( Hٙ9ٳ ?g Jdd D.כZ&+mr8q3Dpӷ XY׺XWcӇD)jE^ &ؘ4[n>~;Ε L  ZtBFnZF*&4
+>Q#Ю#Nt@جݢ4Eq1*"[(1^=wv[¹nZ䛺G[xh[Eȸiz-~i֫-Wo#$<L<5E\bM{lk<;;cӔ>
+B&-j؜Bk7%٘$ܻVe2Lnh"I!oFo.Ύ!F\p1־=3 Nendstream
+endobj
+1301 0 obj <<
+/Type /Page
+/Contents 1302 0 R
+/Resources 1300 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1304 0 R ]
+>> endobj
+1304 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [182.9097 285.999 193.3428 298.0383]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.17) >>
+>> endobj
+1303 0 obj <<
+/D [1301 0 R /XYZ 144 757.9346 null]
+>> endobj
+766 0 obj <<
+/D [1301 0 R /XYZ 144 734.0242 null]
+>> endobj
+767 0 obj <<
+/D [1301 0 R /XYZ 353.0382 660.9401 null]
+>> endobj
+765 0 obj <<
+/D [1301 0 R /XYZ 473.4638 660.9401 null]
+>> endobj
+130 0 obj <<
+/D [1301 0 R /XYZ 144 460.9747 null]
+>> endobj
+134 0 obj <<
+/D [1301 0 R /XYZ 144 331.0107 null]
+>> endobj
+1305 0 obj <<
+/D [1301 0 R /XYZ 159.2431 151.2587 null]
+>> endobj
+1300 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F37 328 0 R /F43 455 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F7 803 0 R /F23 307 0 R /F25 322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1308 0 obj <<
+/Length 2374
+/Filter /FlateDecode
+>>
+stream
+xڵZ[o~_!xy(`mZH`i*/븂{ϙ3H[I1A
+TFB[@̎oPa3?ȍ|cw'Gz_x$] 0*wȡ 5s?{L.]Yy >r❱ow' mw{>hŘ){t=Y90
+W3+;c [E gډox
+"tE>)g[jH.1> &;M$tꬩ s|W߉Qr B!.enJz\ņ%xn({kk,݈+i}Y {(V+OhEnyg(Hl8rm$"yH C^"iV]8Xd}}Ϲz! Icoy׈1ʬGd\ 1!709(
+cɐpxIZ^fo' ȗ.X)N^| ۼH:>t 8mM9b
+%U!rGى5я 1/Myrܖѐ<~ sMSƊEI&F70YH [Ĉ%|ٚ@(aEf$;(qq=L: 2 4IQ}$C65ƺ.jٞ:'so m h/ l=ؠp b c3Nj2*! |exݝD)ٸX'VݓuEE.U(}Hhd+;3`/eFV=iQBp$BϞ΁/FI0gv%*-[f_p9i'a׼
+LmߺNWO%A}yBĤTd`5"C^cs͜[? 88 &d]jLB@#N|28s&~Yg>+Tb@::pg$
+Ҭºcz 5lq|\UB㦠bBJ@T*t fu f"r=t*EEhQ}+EzSg&$mklׂ o.E'f;G-k<mI!Gd?#ǂ5d
+dq<Ԉ */JA>*s >ć*c}_\u͸mh.M V>Ԣ W)󈒘 S껾RC 7-lYzJnzO8
+̌ yy!OYE}ᚿSq&%t?<?Knn3`lp{]h1{E۔
+N۶2w3x.]B\‹fNs,\9&t-ά1i9JCEtxp{4 ,`.Rg{ķי
++<Ͽae;dJe!t6/ vXZ-@x2MX[UI;`[|_7eb!22la5e5K4zt/X?4H dk v^yvF0n2j(~WHՐ+~6OZ>Rt5(t\_.!@!CbL8hzhEYA,ɛ_Nz xږECΊӁm˲)J5߇6RN.Ф~/`Fg:'Dj8=0D:8ǙpӴ)oqRTгe=M]-ofA˛yR,h -!yВ!9dtl ~; v.L_fa~=/nv.#m1P:^5^4p|Кk&,yxTmviM)[C, yۜg黍Ys:0J_ ι}]Ɨˎ]3g%n}ë.KuqK8M-6'lFw^Vf͟',qJjӡ-`Lr;f?I{]"Dy=8endstream
+endobj
+1307 0 obj <<
+/Type /Page
+/Contents 1308 0 R
+/Resources 1306 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+>> endobj
+1309 0 obj <<
+/D [1307 0 R /XYZ 144 757.9346 null]
+>> endobj
+138 0 obj <<
+/D [1307 0 R /XYZ 144 734.0242 null]
+>> endobj
+1306 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F45 799 0 R /F37 328 0 R /F43 455 0 R /F7 803 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1312 0 obj <<
+/Length 2539
+/Filter /FlateDecode
+>>
+stream
+xڭZoBPUX<r\r~p d%QJH*<v)Rl:0̓#H(5M|hf|&o/~~(qPKcqDx\t<} N2 q8ŻiD }WFA8ͬwA&ȱT
+xFFu'b L/;Ϫ[Œ_A|sR=217n,#(ЬpiԼk n<uech[vuF}nMTYoC
+|e@^H{|
+Qw j? BS=[xu$| ="ǼKh$e3ZT6R"!#F=j٠N{vpw &InޱwCU[<p=l5+j8U ݗ̭͏'\#h~ gN�0} lzp~,Eή`Rn˒|~PN\2'!j/uqDm\0wY#|l[Ef5lBןOמ"zD}t4?ǚZho𲞫V7Hw{e25Kd9)&VkJ#x'B<;tee=:r=/=-~u#/xg_Vd <qUߗdWWpIz}U7;PVgi{.Wٖ&cw B W=[ ~ ؖ\; ug+6]*Ζ_T Wl/ Ä́,}^W?"Ф#]U={f[7~DXgE #7s Vd*P(X%$6ItT*X43бM V0d̪-XKbk$[%f >a
+@ɐdԜUTSi@x}r[K'*'t
+3NFsTj%A{vDey
+ *jļ>Q>}qd=2 2c'a4ebp\%O#{)Mlo imkKoXw{b&ܰ #6LgA
+T3ZlG3Y6S'
+*C\ODփw|tT&T j&"pD?0B #xP$T'4 U=q*ޔGteg*beF
+icJG*]CW"jLdS__Y66!?p Hn)E
+& î7-ll;+o*J'=T
+?]f $3>]Mv}%%n$k8 fdǴh D6V;k J>_O'Eotp':^{NԷendstream
+endobj
+1311 0 obj <<
+/Type /Page
+/Contents 1312 0 R
+/Resources 1310 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1314 0 R ]
+>> endobj
+1314 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [377.1712 195.5713 389.1264 207.5265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1313 0 obj <<
+/D [1311 0 R /XYZ 144 757.9346 null]
+>> endobj
+142 0 obj <<
+/D [1311 0 R /XYZ 144 261.9751 null]
+>> endobj
+1310 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F39 351 0 R /F45 799 0 R /F43 455 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1318 0 obj <<
+/Length 2764
+/Filter /FlateDecode
+>>
+stream
+xۊJ},x RwBf9v9BƖ/Df߾uڶ9!}YXW+b?1ZOqi67d ? Bc]>)J;yXxjywZFXЩ)EUqtǹ?܊L(=VroK?*U` 1, S΁\TAO7og9vO𒥢(ds#XRIe:0:~/9&\4TX6FyawZNJ0QJI zD$H Z0t ٜ V20!G{q(0uSSphe`yQ H;-w3qŌSbjŸ^<׊Zy>f69),c¹s%f**+&ֈT_RAp2g/(R
+ U{XQ;<DK8 V
+k "p^b.A*@ktMSjNbrظI! aS 0 OojOo>!fǃ5%ϖh_<p T9+HTƀ~A°0;jӮ19ѹC]ja?%E&oDE.2X̌)pBbbLLrLARʡ11#|SM|:zI2g~Z=GG(ygAюm@̬<`5o&",Ȟtz$Zμk@E4jU v wu9<}#AOi=*
+R9Ϛͮ(v0a+<,+ *S%EWWUNَ+)fT6: J?AiW.6Un"OF3xyŧ ^RˑS@j%m萋qHTRAs -nmj>f+j09`=5WsXd/^@FopD2 0Ḣ&1c3=Eݎ
+~> ]*><1J'~gu=£O`m_p>T"Gy:ZN*ҷg:Jy!!(GrJC5Ђ/] 8 a4|cء ƕ2Tsm8z_/r똞M:* .+)!HJ Q
+朠Q!$Kx.HOTd*/
+XXǪ[ގsӴ^0ǝ'rXCYAX~6Qs>;к5ʟ?B:oo~.t#^߁{I/G\1⅀"˹>C؛e8x<Uyچ{ϰw&+%'R9a{*^ڳyFՍ$ Yf0`g16%X W;<>9
+C.bM*)`B<?zlgH>Րe8#l
+t$CKc}bK_0RNo5~>Wu<fsKq ۊ~!sPc:
+ .%]Ίj>j~p
+ЃCvg6_Qk=Hwvh)Z(B8I0aACo|J@V$'M,p95:3x)4=D G9v#
+mw$oR vxVW<+IU7f
+A$ &kGgYqz endstream
+endobj
+1317 0 obj <<
+/Type /Page
+/Contents 1318 0 R
+/Resources 1316 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1326 0 R ]
+>> endobj
+1320 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [236.0279 560.698 247.9831 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1321 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [433.043 560.698 449.426 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.3) >>
+>> endobj
+1322 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.5405 560.698 458.9736 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.19) >>
+>> endobj
+1323 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [260.2033 505.9588 270.6364 517.9981]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.18) >>
+>> endobj
+1324 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [298.4644 331.8825 310.4196 343.0074]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1326 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [312.13 123.6954 318.3567 130.8243]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Knut86) >>
+>> endobj
+1319 0 obj <<
+/D [1317 0 R /XYZ 144 757.9346 null]
+>> endobj
+769 0 obj <<
+/D [1317 0 R /XYZ 205.9774 724.0616 null]
+>> endobj
+770 0 obj <<
+/D [1317 0 R /XYZ 341.94 693.4971 null]
+>> endobj
+771 0 obj <<
+/D [1317 0 R /XYZ 205.9774 652.6503 null]
+>> endobj
+768 0 obj <<
+/D [1317 0 R /XYZ 205.9774 609.858 null]
+>> endobj
+146 0 obj <<
+/D [1317 0 R /XYZ 144 365.4925 null]
+>> endobj
+1325 0 obj <<
+/D [1317 0 R /XYZ 159.2431 134.1562 null]
+>> endobj
+1327 0 obj <<
+/D [1317 0 R /XYZ 159.2431 124.6518 null]
+>> endobj
+1316 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F7 803 0 R /F23 307 0 R /F43 455 0 R /F45 799 0 R /F39 351 0 R /F25 322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1331 0 obj <<
+/Length 2011
+/Filter /FlateDecode
+>>
+stream
+xYMo8W ,Z[: vŖalm)^=}_,3s(X,z*|⏏Rc-sRl5JLjF?(1vaw&<Mm*jq'_fYw?xKaA$>uFh!\TZ;SRJ3#m6NR&]It<ϣqx5Y־,Gwq,?&K&6CU \4̨Ytz  nXf mͤZSOnJ8aIS6ł˙̫a$FK!0`&9%<vR~O~I &6M FАC9{>ױ[2YOIVuRI_;汲TV:cåEجvcc ZƧpvo5
+= qE_ZtlbV^ lo[ 0w;
+&EdR|T7ˠ.p/@Ԧ"*5J UTkC2`@-LoL*>=e!ۅ젌n
+w : ^ьEC(UQ>oVCGp9
+h9c447
+B Euõ -Uh
+ ~Җ48k*AA֤L^NYdm6AqaBX}G$\ #ݴ4\d^fzegC:Wr"^ ~\?(ZЄ1c1FDy34~|qh*GGvw\[f߮-Eodu|.z~ >P/<ro*R6 endstream
+endobj
+1330 0 obj <<
+/Type /Page
+/Contents 1331 0 R
+/Resources 1329 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R ]
+>> endobj
+1334 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 460.6341 696.1251]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1335 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 233.5407 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1336 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 687.2141 460.6341 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1337 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 675.2589 460.6341 684.0592]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.1) >>
+>> endobj
+1338 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 675.2589 264.2036 683.6718]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1339 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 675.2589 460.6341 683.6718]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1340 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 663.3037 460.6341 672.2148]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.2) >>
+>> endobj
+1341 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 663.3037 264.2036 671.7166]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1342 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 663.3037 460.6341 671.7166]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1343 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [255.9843 529.2275 275.6883 540.0757]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1344 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.3885 529.2275 316.0924 540.0757]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1345 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.9183 475.028 308.8735 485.8762]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1332 0 obj <<
+/D [1330 0 R /XYZ 144 757.9346 null]
+>> endobj
+1333 0 obj <<
+/D [1330 0 R /XYZ 207.6378 704.2059 null]
+>> endobj
+773 0 obj <<
+/D [1330 0 R /XYZ 207.6378 629.3754 null]
+>> endobj
+774 0 obj <<
+/D [1330 0 R /XYZ 340.6117 588.8483 null]
+>> endobj
+772 0 obj <<
+/D [1330 0 R /XYZ 207.6378 563.4436 null]
+>> endobj
+150 0 obj <<
+/D [1330 0 R /XYZ 144 506.3134 null]
+>> endobj
+1329 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F24 334 0 R /F43 455 0 R /F60 1348 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1351 0 obj <<
+/Length 2127
+/Filter /FlateDecode
+>>
+stream
+xڵ]o~q@
+@?PJb":5⒔hi0l.ggg3cuQܤq$7f?(b÷<ȓ(Im=cVw&XQn8@QVp' Ley2EzUy~^űW$q(uX2F I LK+_y(WNcSe_Cs_kSz#V,@=a,:ˍӫe9WrG@6~`U[3n@s5$գZ!t 4xKGHK:F.ȆǦߐh-ciEϯ 3IW$f/(:K~*ܟ[/h_
+
+OB .m{eExEq(M3K j1't䍜t񡵆L͵DNj',D-FҶm&s9;wVg%AG
+;!p"6QNrض>P~LQ!<I`Qg2x[0;LQuvD9jpV<۟G'dhiζhHCѓ>͘aC 4#O>Q 2t Oij@{Fiî;9)T 'Hͽ v"BiP$ @7`A#וDz*P>P6)3cM\LdVy#{kj+_>C5n<'f
+endobj
+1350 0 obj <<
+/Type /Page
+/Contents 1351 0 R
+/Resources 1349 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1353 0 R 1354 0 R ]
+>> endobj
+1353 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [294.645 702.7388 306.6002 713.587]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1354 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [170.7055 112.5083 182.6606 123.3566]
+/Subtype /Link
+/A << /S /GoTo /D (figure.96) >>
+>> endobj
+1352 0 obj <<
+/D [1350 0 R /XYZ 144 757.9346 null]
+>> endobj
+154 0 obj <<
+/D [1350 0 R /XYZ 144 734.0242 null]
+>> endobj
+158 0 obj <<
+/D [1350 0 R /XYZ 144 229.2511 null]
+>> endobj
+1349 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1357 0 obj <<
+/Length 1439
+/Filter /FlateDecode
+>>
+stream
+xXKo6WR*.9|wO]`S`Kߒ~$ `w,˒9 D gHP hB%e&s|:ŷaˍ@%1/)olr.:Z>-b0se g`Q[-#}VJHT5-JH6IJ F:MHG_f-$S~,z*^4I!րfQd_ǬRflTL)APa-"Ljp`ՁP3Eb1;/V=e&G'绍{nђDse<Ȝ] :jc)bR.FpSt‹߆>gæF=er=dZQL*u OH$Be FEk4UTi;)2PYE9 4dQeyGiM[#hA4cH/̵\
+`r(e߯唖.Y+q\"CE9xހ%XMo i91`CU5s6pws_`=!Lk(+QzY$տqavHne{v"!ɬ7&g;kv!;8.)SHhrl) `"U}Tdq8=4M>*1GƶҵiFR]t(kpœf(ϸfԋ>P̛
+]6ײroX]:/ZEF+ӚXmަw_|p؍qV lmդ(_fxBȨ8x1b=hsq3+!̽{YR?
+ |߉8P"]]6b`/1S*4
+7@$ kXW`^)qAZӡ+P<b!$!tPn*#Tt! JeIG3Q3`4 Ƈ0]:LZs
+HPׯ{͖O?aגU*<tEij*Eٟ-> B2G|3۸;a8=N]51,[z~ލXrb%OlF5,_bPRp?y0[0@JSmo6_×TJpeP
+endobj
+1356 0 obj <<
+/Type /Page
+/Contents 1357 0 R
+/Resources 1355 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1360 0 R 1361 0 R 1362 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R ]
+>> endobj
+1360 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 460.6341 696.1251]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1361 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 233.5407 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1362 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 687.2141 460.6341 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [362.5295 503.5889 377.2521 516.4407]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.1) >>
+>> endobj
+1368 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [299.0175 491.6338 314.2936 503.5889]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.2) >>
+>> endobj
+1369 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [255.2372 479.6786 269.4063 491.6338]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.3) >>
+>> endobj
+1370 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [421.2261 479.6786 436.5022 491.6338]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.4) >>
+>> endobj
+1371 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [403.3486 456.3217 415.3038 467.1699]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1372 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [260.4675 443.8131 285.1528 455.7683]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.1) >>
+>> endobj
+1373 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [288.1416 443.8131 302.3107 455.7683]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.3) >>
+>> endobj
+1358 0 obj <<
+/D [1356 0 R /XYZ 144 757.9346 null]
+>> endobj
+1359 0 obj <<
+/D [1356 0 R /XYZ 207.6378 704.2059 null]
+>> endobj
+1363 0 obj <<
+/D [1356 0 R /XYZ 207.6378 656.2746 null]
+>> endobj
+1364 0 obj <<
+/D [1356 0 R /XYZ 337.6229 615.7474 null]
+>> endobj
+1365 0 obj <<
+/D [1356 0 R /XYZ 207.6378 591.8371 null]
+>> endobj
+1366 0 obj <<
+/D [1356 0 R /XYZ 337.6229 550.3137 null]
+>> endobj
+775 0 obj <<
+/D [1356 0 R /XYZ 424.0226 550.3137 null]
+>> endobj
+777 0 obj <<
+/D [1356 0 R /XYZ 144 428.8691 null]
+>> endobj
+778 0 obj <<
+/D [1356 0 R /XYZ 379.6005 286.8617 null]
+>> endobj
+776 0 obj <<
+/D [1356 0 R /XYZ 451.6004 286.8617 null]
+>> endobj
+1355 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1376 0 obj <<
+/Length 3212
+/Filter /FlateDecode
+>>
+stream
+xڭk۸mpEd /=+CE/,ؒ: eɫMa9iyß\66j_n
+\X ѿpPM}ᙍ:ͅNR}*#DKmv}-7/[UW4_q3K8_А"V sj3GwIM`L3)ɕg
+֮kB!mO8 LKXv؊#wHjXu%WԄq3
+Ƞn Þض(7[\) s՚ݶn}{į{(bHJ$2iu+yͣ<dWn|/ 3HbIC@BMu8A{lmXcr#
+9$,QI5b U/07Wׂ
+01e|PKgN}MqSg=BG,X
++tMtEAu@ d+o/
+ O ;Ybl%a`tJW u[[p7Wvľ,K?"L,s(=*" YX,3Ӽ='ao>2ɒX-]?vt !5Q/&A{Z OSR#u%CuYWؐdm0w7hVҝ+^s w^ ^7;nhxpWIGtlthj<nʖ}ۃ[l b\тF\fݏ#L(kgݗUyA -^JpPz;x. "T73Ҧa)4~VJrlJ!hgґGኼ;Ϻuȹ]*;*ZF9d)~R@S<}5PB.% Fl0a+͍%O:Vti9urGr 8 K<@ tфa t/Pc҂[*X XV
+m$aSTE[{pߘ&+8ћ *;Ozμ FE>Ɓa{W)ښo)C!SW5&C V~]lwؖBdZ$CLm% #Փ9Fx*{0dlu_Fy$tE&7@l~iNR;eT+8
+/mT|2Ѻ~Ao4,HǚT{>AcNRca"ud"3=^H4ID! [쇘 m!ꌄ: i~!Aqb7yP;XC B
+sfJx?0#w~^ch?q9L~,
+ZfR0iO(۪}Έ
+YMHFpzgp;$ZNz9g ,B2Z^ i2tp]r MM隣 +Ͻ9a4$P:?YlDr""OgX,ZLejD HGe:v+nW0N[3nS#wQ ELOC>i9 "S'*HhUk+-}Ql
+}IID 8_a$`ϔZ %LK`8lKi_sŦ㡍kn8i ±F222$MP:R1ZooV#O㊵S #iGS7~(:Pԉ?<|
+1:=24J'A!iE)~ׯ^A>4Ŧl 7?".M&u؂љǔXdJI$giL{KgEJX ŷqvp+!i4
+Uo^&X<rRqdN_"4ĂmtRi(ְˡWCSBC(+*e3t LJ&hGb3%_QW$V&ġts3wW 9 <[ӺRiPy>Ӷ3Q 3,>CuEb՗3]ę</MHM.Arv@KKK{)S-7kTO5X_/bsHsuվx{d-1I~^NɖIvZ]s?sZ<a3zvҭ
+Reb\$jujСfgM9'rѣBvYq;<&
+qXc4d=P#Pew+a;3U߄bw6#p9<a}%/f>U(W~xH𓂟WQOqF,ahM83<:s:I:Q2aeT':FОD;ѥ4ckL,r 6 Ӹ0|"Oxp4&I 7KCx<_g;endstream
+endobj
+1375 0 obj <<
+/Type /Page
+/Contents 1376 0 R
+/Resources 1374 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1378 0 R 1379 0 R 1380 0 R 1381 0 R ]
+>> endobj
+1378 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [393.786 665.282 400.7598 673.6949]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lapk05) >>
+>> endobj
+1379 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [262.943 358.0593 269.9169 370.0145]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+1380 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.4187 288.3693 291.8901 297.2804]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.3) >>
+>> endobj
+1381 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [230.0662 148.4427 237.0401 156.8556]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+1377 0 obj <<
+/D [1375 0 R /XYZ 144 757.9346 null]
+>> endobj
+162 0 obj <<
+/D [1375 0 R /XYZ 144 648.7745 null]
+>> endobj
+166 0 obj <<
+/D [1375 0 R /XYZ 144 595.6336 null]
+>> endobj
+170 0 obj <<
+/D [1375 0 R /XYZ 144 467.6068 null]
+>> endobj
+174 0 obj <<
+/D [1375 0 R /XYZ 144 345.1148 null]
+>> endobj
+178 0 obj <<
+/D [1375 0 R /XYZ 144 275.4249 null]
+>> endobj
+1374 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F41 374 0 R /F39 351 0 R /F45 799 0 R /F37 328 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1385 0 obj <<
+/Length 2805
+/Filter /FlateDecode
+>>
+stream
+xڭYm _Db43z\MbpZ[h-ג,ˇHlӦYd58|H77s7YuYt%} Ͼ{MIon72n?bGQY.8Vkj0y7Kkmc}- =uQYq9?uD7DMACn$Ɔ&Kҧ7=p]7qIbFi[|Bbc'Hq@I`邷Oaa !b$tG8Xu{&ȴ=&2A˸U;R.aC~/,
+FldSvٚ*(*I-S h_ 4'4՝kΊ?`'@(y;9S;1bwBʽ2>u5NcO$t}fq-MFNrctUjO{ĕSQh)e~B[0MK8ibWxETWF~–ظbƅ[όlӹ,V5YQ|ȗs\Tb:_{QSFBy+H=MGQ69bBp
+`'$װܒZʐ3BGoϏ *(tR.*A-cDqIr$F
+N +㯚0W(tHҀ14*^=24"kMfvrp_n՟s`Mf\zxn UѲb4 l&fȷۦ+)sqE앣.&E8dFcQ.+Tϔ1Rj<!mY*s)@2HQZ_ 8 $+/#5ɜĄsp^ˍI,UN27T1<y? >)tDanRtE̍5NxgAi+oYQV삫^nBewKƻpອ3y}=S-Ee_ڎEQ
+Q@k K!1HυTc7$Fl($R٫V3^o%"Uqd*R痻@^`Iב=8RJzA4
+tTGxC+On1=Ds֭8p4¹b('\ՓVv8NpNO(IrAԨg,pzi;m/4wW_24:-}Q,v:ȽWs[<>7g+C*j}پi|"^/Ez_Z-7B{a):Ƈ˽Gh{lzJ[$ dW,wf1\zTZ1: 荨Kpm19+lMdFYukGƮ{Bܔ}}TO]R
+<'mzQU5%BS22X C.-d{Ҵ@)j0F!"g\%K~Y:c֘QD{L]X-d۾y~AI!0q s1潏{R!&W(;V4>:E:AmɤHJe'|weU0BѐR;ZcNB\{ٴ >na9bQyXn^
+4Cj%H?4>hZڬ]4{Hf
+3i#|u斍,7_۾6q# <KGfvɓ}A=ܨbeh"C[zǩ'zǁͷv:䡏cy
+%aB_5uzyqNʏlvcTL&($E<0L<.]juEbuTm!;gR%Lr zEl>|HwG>mNbR("߭=3endstream
+endobj
+1384 0 obj <<
+/Type /Page
+/Contents 1385 0 R
+/Resources 1383 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1387 0 R 1388 0 R ]
+>> endobj
+1387 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [300.2261 600.5664 322.6975 612.5216]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1388 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [176.0156 511.0065 198.4869 521.8547]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1386 0 obj <<
+/D [1384 0 R /XYZ 144 757.9346 null]
+>> endobj
+182 0 obj <<
+/D [1384 0 R /XYZ 144 734.0242 null]
+>> endobj
+186 0 obj <<
+/D [1384 0 R /XYZ 144 556.0182 null]
+>> endobj
+190 0 obj <<
+/D [1384 0 R /XYZ 144 373.9718 null]
+>> endobj
+194 0 obj <<
+/D [1384 0 R /XYZ 144 302.3446 null]
+>> endobj
+1383 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F43 455 0 R /F40 356 0 R /F45 799 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1392 0 obj <<
+/Length 984
+/Filter /FlateDecode
+>>
+stream
+xVˎ6W]QEV
+4m*:]ȲlÐqA!ɲ#LҴ@`"/< <eĉ̴^<>q=@@Dyx.2zOaRoޙh2#LRlrĘ%&&I+}
+9l?(yq,e3GGZFIl_wF}%4VDVfY 6AOe~M
+Di%2SQLNhkJ-(IDOz:o(a''^qǛQIʮK2zP[eɇY i3 ]3d$ 5kL Pp#JcQMXX?<(LWX!<֩CB^\{@i"(ys} O (Kq@ah%|p@cԖ# fcyYp\=z\˘2V#j.Q#<cVt-j̽ű8-^╡ra+&} gn?Gh.&+S\ϒ~~
+endobj
+1391 0 obj <<
+/Type /Page
+/Contents 1392 0 R
+/Resources 1390 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1394 0 R ]
+>> endobj
+1394 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.9793 355.0982 208.7019 363.8985]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+1393 0 obj <<
+/D [1391 0 R /XYZ 144 757.9346 null]
+>> endobj
+198 0 obj <<
+/D [1391 0 R /XYZ 144 674.9196 null]
+>> endobj
+202 0 obj <<
+/D [1391 0 R /XYZ 144 388.4315 null]
+>> endobj
+1390 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1397 0 obj <<
+/Length 2678
+/Filter /FlateDecode
+>>
+stream
+xڝk6{~qr+K(6ܵ re!IqZ%W17!e""3yqf60)'JTx2<&+3g0Cxk'i<,8nd:cQ7k3 !WtuL?q
+S e ~P\<QӜvP awrF1;˸
+n7<'*x`1hX*eDPL(BP {೜6Ljyh+hDPTXf>IpڐL0MMxIN~8E 1huP*!.XaAOz)ٲi7+T ZJv-%[ /ѱSzEN9IS%6qhleOe2ci1iTʈͱvzL&<(J>2!hnoz_d0 U/e># )(4+Hc>(y೩F#
+(9k=Zu+9yqoA
+XhLsLa4(=Gg/2!43q8p%,_U./Wq8}W
+,ї u^s^avEvYfk\S
+_]a2yY^յq]wTGP-
+|djݵzEn b]Aj1V5yi]Z,dq}V(rG]m-MOlOdג -nhicZQFglLɖ)z^ߞ
+ jUעc[Pwa5%E>"I=C-ff(FT sU\׏Pr">oX^I5/ҷkImiw^PH_n/cl]qoJݲ5,!:}2RXũ=)`P0 հP|_m6HX
+.Bp'sE_TaKj¡}Av OݼdQ VdKAX]dL0ƀ00aH.cǡm=r*쀭:B9Gm6%:tst]5#5_te`rϑ[N۬ZS vJx8j=+m/8=5Rw2 w|
+:7^mQVI;]y u_&cQz&ԃ~&\6j 3BQ(haGE⮵@\ئ1W6$=z Ɣ
+}Yٜfio``t2㈳s &endstream
+endobj
+1396 0 obj <<
+/Type /Page
+/Contents 1397 0 R
+/Resources 1395 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1399 0 R ]
+>> endobj
+1399 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [203.4174 238.6183 210.3912 247.0312]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Somm05) >>
+>> endobj
+1398 0 obj <<
+/D [1396 0 R /XYZ 144 757.9346 null]
+>> endobj
+206 0 obj <<
+/D [1396 0 R /XYZ 144 734.0242 null]
+>> endobj
+210 0 obj <<
+/D [1396 0 R /XYZ 144 714.1959 null]
+>> endobj
+214 0 obj <<
+/D [1396 0 R /XYZ 144 634.0451 null]
+>> endobj
+218 0 obj <<
+/D [1396 0 R /XYZ 144 283.1596 null]
+>> endobj
+222 0 obj <<
+/D [1396 0 R /XYZ 144 211.7815 null]
+>> endobj
+1395 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F7 803 0 R /F41 374 0 R /F37 328 0 R /F23 307 0 R /F50 892 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1403 0 obj <<
+/Length 2210
+/Filter /FlateDecode
+>>
+stream
+xڥYkH>! !U?n--3(d8M}-y$@jUw=~Ue. Hq./+$Xu)j(d1o=g:T,$8l$҈.OT븤W~@"Keɔ2x$`0m.uDFg&Rs\(1' +b҇,}V7>]+Q"F6GC|Sk1ɭsR8%Vu|"C|'3&1zH [ 2Hz
+f]w%EDټw}Vg
+sqnBy̾I[l 3{9/ee镡)p!%h:1P]RZ2FLLK3G[e/)L;$@-Un 0$fPc.r#nDc(@cJaJz~oF#۴8` ܒgA)e-\bRXR]G;/H,ʊh-ma&z
+ $zXsM\
+)KL!9LM:M 0ʘx~] \Ҽa/}-cQR۫htG ?5;6MK8pNnw!}Y 6
+" 'Fg^x>Opj}T횬߫N¨r_'
+m%~Yrp&%T} cpY5v1S!;e0Zf
+`^hS0޴O_O iJ@ CЩ ;$|7/64F^2'V |SEoAceEKMDX}/IfІnQ'!R2X!Qka ¹utP>aH5ND)A#JS+W¡ T0+n҂~kofBweF&fU| B+.팑M2K9xd'Ui}`-_G '2к@6{e䇺ƠfِWf>PgKS/c@kB>C=.#7Rendstream
+endobj
+1402 0 obj <<
+/Type /Page
+/Contents 1403 0 R
+/Resources 1401 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+>> endobj
+1404 0 obj <<
+/D [1402 0 R /XYZ 144 757.9346 null]
+>> endobj
+226 0 obj <<
+/D [1402 0 R /XYZ 144 161.1794 null]
+>> endobj
+1401 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F45 799 0 R /F41 374 0 R /F40 356 0 R /F50 892 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1407 0 obj <<
+/Length 2575
+/Filter /FlateDecode
+>>
+stream
+xڵZmo6@PDj^{(R
+"H
+NXg|%f KBήCˏ^4_p=_HBr==qo &H@!8Nyu"(_G:BD2&>E"r%`,t8ȂĥʳMz9]Jzrnڼ*w/[.aI'=u:)˳&6jɪm (bœMuf{a]р0V*ӲZj76Z<2ظ^cek;)ϺUhtӀ:<
+r{q~3͞p=tџd,tJ)C0r`Q# Q596#>@Dys`b[CqOw6jں=dJH8='WSO8SQh`\Bյ6ʫU )Blw,,)XT@t8ya8\+
+~
+O)FLpxIHki>T:md\3xL!Bw2j c>p/O5ThuJ(PC
+ ȅU #-l C-0Qv fE1Py\p5&Fރb_k!= klD,
+?$ r6tXL75c:𦆿s2jQU l(H#=ju`?},}4qklܤ-
+xk-~=sv1FJvVk,wK8|h3Tۚ6ქ0S{B&:K0;4o VRɐckEg\3/ȣK|ݠt{v ]# ݖϒx'^0BmXkUѴٺ໋ ~q!vR׉bWp7Nw~}^N`?գTPsF0dho?5će`\siߑߝ\}Wsím\1u ~9K6IS$iY+<QD"ѯ=mӬu/U<=<C C%4ϻS.inwa^ A;"1'pwU>
+R?#cf@?>}{Ƨ&R(3]֘\t&ߢ"v&Ngc B{*#K3jR b.yCdsPKWtF 9ۿjKpɡ\Q n{:rom>ѾPHIb.hLH&(CɡseVKdFzW?6:27(í'Qan}8@/FA%L ~(iYbtM ?O^z>^v<7כB^ guսAX4 Wۿ\0_`=Ow/dC&[?j &jO %qqYZ~=qDL@:~ڏxG]?KVSAp\9p E
+N1Tui>>`vԎva.W&7C K _c=1jG.͎}2-_Zour(qqQnPZ&s% Kl!%{ynUt
+endobj
+1406 0 obj <<
+/Type /Page
+/Contents 1407 0 R
+/Resources 1405 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1409 0 R ]
+>> endobj
+1409 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [509.5492 117.835 524.2718 129.7901]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.5) >>
+>> endobj
+1408 0 obj <<
+/D [1406 0 R /XYZ 144 757.9346 null]
+>> endobj
+1405 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F41 374 0 R /F45 799 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1412 0 obj <<
+/Length 2681
+/Filter /FlateDecode
+>>
+stream
+xڽZ[~*
+x)`[7o҇8eW$z!\%Q s9YL<'&BI`7Rڟ,Wd ? ]߾z>DnKr:eq1r?߾ײC%#HS$O,x|̈́szhedi?d 03Ɖ%F*Wܖ`QBs= R/pX[LBLƇjI(LVV7.{L^&+lެ ύLu<yHx[E~oҪ.Vo$ݦp8PT+B!}yL˼ˆ<~bx\5#Yl2+4R0Cϕo."V&<fv\J,E9l';QӘRGA`]3EWv!] 3k|(R{T
+5خե%X9e9'1R}0R}Ix f8 *꺩~p 
+9,2h9f$G7xqBFk`eNo<:KoxlCV@B.xd!#XK*^c CASpWEliк vIX g]oHI
+)N35ӵ*uc9qmJ<ޮJNRróqIC;7ܞR D7ҞTJ9,Ԕy\mV=.t$q}[6fd TLr:Uө  op l$ )W&#׌qZ90g]hh^G/_ z*'P`K͂a-WЧxC8z/xa?B#@nz$caLk' @v|QMR^$^ĸGSB_u}Qs*_2py(J7(7{{w}!W]B"
+Bb` ~TJ!o
+D :
+__ו:^PVJ;'s4hg{@ =ad޽C>yUm7aH-L
+o*)<vwwcMCmȪhwM.&<m
+Dvؖ!1B@
+$ FJÞUj?GI
+~u^6
+o͢@~= 4P~&
+b$ 7zTjI?F 幁b.ȕ2G^,`4F4DIT~,^qNQ>,VHluѢ+ADon!BfOnv-ed(D1ŃX:؆xxN6*/+=#4т2ʸS-%^l$@/}v,@чp=!i'hؾ`oJw`T#5p9iFL;O![e'åeVqY'K4Vۂԇ$o$H'@us"|Z'"P+02nkH
+0W͊.۾3y3&~E'] M }M +^^B` Zgf
+$9+8
+pbd8*K:l`%o͉Bt/YK5>SAmcOsO l`nIp`jWKW`(J.KNAॊ޿=GN)#ƛbrPF6v
+§4a_Ekᅅб.fU4e/qe=}[DЈuyýAMA)/7w0h2nN~cou_<\MsQ Ԅgh/y(vy~~F4~)K͟T|7MΕ&: ̏{q5.%kMd/f#AףQba$*YECѠ'pח?Dn# l/
+endobj
+1411 0 obj <<
+/Type /Page
+/Contents 1412 0 R
+/Resources 1410 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1414 0 R ]
+>> endobj
+1414 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [431.5447 295.7166 454.016 307.6717]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.1) >>
+>> endobj
+1413 0 obj <<
+/D [1411 0 R /XYZ 144 757.9346 null]
+>> endobj
+230 0 obj <<
+/D [1411 0 R /XYZ 144 353.4584 null]
+>> endobj
+1410 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1417 0 obj <<
+/Length 3107
+/Filter /FlateDecode
+>>
+stream
+xn6=_a Y. @ТSm}h ˉQJLA}!E(Yn_b΅~H. -5IPUxh~ />{/"%bjqø[%8{ofɒhuC׻o?{xsNY
+kqWwq´TӔv"扥6&1KfĊZY 4G"DФ%w?Uln-ORh
+*Lh%CU>uC[cl]`bx_`dp]mM6;G~,EufL1&0K0=df3kuL`T0ޮKc_FJvsK+bSV˅{<dOf9fۂm/A
+
+\e)}JdCE2-N
+: $A^+ p5-:!qƭB)@*8 vDV
+cMcSPvv,3ke(DDZe˚YJ)[ynqǾ9eHRL4S^kX^ń\|4eՠ#;S\xOo;̥t a\PNܽerwL0!IG"hEu[K%D0Y aL9leDL/%". EF.UVBa5RQ pE_BS"u"
+Fµ+̸׍]4O\$`x\/[e'D>(S#"hB5V֯%.@b  g Y|TXEF^K)8sv(`q$kRK'-9baZӕ8hB6m;Ip<e*9f:\z;}- &Ua;l*\++hN&Gڴj]fJ42[VlLo@Zevu1~NZHaXV`.Tp;f:2 Ĩ^Y
+,DOvCcPucz 1ȭ]tRN*zvRѳXη ^OBJoHS׃IǠs&-0y(M$ңɟ"1yh㸭FS>+ K$=k>̀#S٧eG:HyV%xeU?$`Jj'5Q}Mv-5@4щԝ0"7&1 No@B!DMS D0nS"LVX59 1E O''m^W]=1(BFRȧĨ{s 9b9.Υfvh-+YGJfjڵ#uf'RFHθvg?Z[r\1NTĉz باUa,0og
+3c2<k:4ds^KE(6` B
+;lql|3Uendstream
+endobj
+1416 0 obj <<
+/Type /Page
+/Contents 1417 0 R
+/Resources 1415 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+>> endobj
+1418 0 obj <<
+/D [1416 0 R /XYZ 144 757.9346 null]
+>> endobj
+234 0 obj <<
+/D [1416 0 R /XYZ 144 418.3155 null]
+>> endobj
+1419 0 obj <<
+/D [1416 0 R /XYZ 144 344.2956 null]
+>> endobj
+1420 0 obj <<
+/D [1416 0 R /XYZ 144 332.2852 null]
+>> endobj
+1421 0 obj <<
+/D [1416 0 R /XYZ 144 308.1534 null]
+>> endobj
+1425 0 obj <<
+/D [1416 0 R /XYZ 144 272.5646 null]
+>> endobj
+1426 0 obj <<
+/D [1416 0 R /XYZ 144 260.5542 null]
+>> endobj
+1427 0 obj <<
+/D [1416 0 R /XYZ 144 224.744 null]
+>> endobj
+1428 0 obj <<
+/D [1416 0 R /XYZ 144 212.2353 null]
+>> endobj
+1415 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F43 455 0 R /F41 374 0 R /F35 854 0 R /F61 1424 0 R /F60 1348 0 R /F23 307 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1432 0 obj <<
+/Length 1970
+/Filter /FlateDecode
+>>
+stream
+xڽYm6~"jt*_JVmU'u~[N P ;cUV3xG&/|7d\NV7d?!Mo|C0 PR9[MEೇӆ +BFQn[ޔ\8#GʾQ+0QmwuOe.ZDg(SzS6'02<c.>޾''plYjZLi񮰱j:0,Ή"p QVqTf]'lgq>M9 v@WA}_';wB86옟t8!, 8pR|K!*|?⍄ѸX*Q^P
+Ioc9+vrlO1Z
+ ;ށ6zzlN%dUw_Gξue jg%oMcc
+W1-O<[[@B};we7 ( |8"qHyBq
+ɯOOOOD8]0^L83g^$iY?110MeÛ`XlۤӕSsS\<<5D..^?~>z/Asgv衡>$_XحK l!z&]gUKf1Y{6jV鞈tK锜F
+Vyc0 cnsk(UV-i%=]닳aܑFvAFy8AF2|u8fW߬C
+Oȫj.!9ʶϹ^Nѳy@.z~[d9p*3 :D}l2
+@𢰈o #3dJҔ ps_uu%0`֮|^աқ^TH" ht*p .p8h2
+'L)Q?T36B씮Ꮩ<Жĩ&MUX+UXmbUSrYfV#|_vt c5uߖU hߍ ;SQė&ƴTD[S%r1lOP'˥
+endobj
+1431 0 obj <<
+/Type /Page
+/Contents 1432 0 R
+/Resources 1430 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1434 0 R 1435 0 R ]
+>> endobj
+1434 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [509.5492 617.7472 524.2718 629.7023]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+1435 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [187.2822 605.792 194.2561 617.7472]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+1433 0 obj <<
+/D [1431 0 R /XYZ 144 757.9346 null]
+>> endobj
+238 0 obj <<
+/D [1431 0 R /XYZ 144 675.489 null]
+>> endobj
+242 0 obj <<
+/D [1431 0 R /XYZ 144 205.3585 null]
+>> endobj
+1430 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1438 0 obj <<
+/Length 2776
+/Filter /FlateDecode
+>>
+stream
+xڥZoFBUD[.w`wAsH[\Ľ-QaH>y!Q؀}of~Dj= PJ;Y߯YĿn^N{XāLn5nN8Iuu:)tEb*tE*^ qW?ݴB^Kڎ:7"UҺhzZddv$ I ?wt>zlgLP(1b[v;XX-eVlޟ]}'X^O:.Ҥ\Jn'-# |-acUbJ
+Ʋ8}t
+ `m2x*,YN{L.of,~?F s/H(Ux#7cAϞ$pUs8!!!S`mp3ki 
+ܼ;˟%qJ~OkvU_MOs`C} L6RT"o.!y( qTcN,Lߑ=N#Gõ
+JUa?fie̱4w|7,սaEH\AVNm@7Yfu1_DKf:]`?s.oEmUyۯ D HDn>YqB_]ۄKʵ6S]Z!!7_z=)BʃoU&ꎰ/|a?p*S@Q2tcЁ\OY
+c_ [endstream
+endobj
+1437 0 obj <<
+/Type /Page
+/Contents 1438 0 R
+/Resources 1436 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1440 0 R 1445 0 R ]
+>> endobj
+1440 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [315.1917 592.0566 334.8956 604.0118]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.11) >>
+>> endobj
+1445 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [204.4401 162.2172 211.414 174.1724]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+1439 0 obj <<
+/D [1437 0 R /XYZ 144 757.9346 null]
+>> endobj
+246 0 obj <<
+/D [1437 0 R /XYZ 144 547.7298 null]
+>> endobj
+1441 0 obj <<
+/D [1437 0 R /XYZ 144 531.0009 null]
+>> endobj
+1442 0 obj <<
+/D [1437 0 R /XYZ 144 433.6991 null]
+>> endobj
+1443 0 obj <<
+/D [1437 0 R /XYZ 144 281.5198 null]
+>> endobj
+1444 0 obj <<
+/D [1437 0 R /XYZ 144 203.5622 null]
+>> endobj
+1446 0 obj <<
+/D [1437 0 R /XYZ 144 129.0914 null]
+>> endobj
+1436 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1449 0 obj <<
+/Length 2350
+/Filter /FlateDecode
+>>
+stream
+xڭZm۸_a8D:QD i{)z-
+ v|'2,}xIGl,vFpIrՆ'xnͅ`3)x~< tCzۯ$0r{5Y&JƼf|0UE.B8[+,k
+n|!t4j8=L(+iJ ʔh` 5<chvK >eˈj-K`rȪ.d&KS\!!J!\څ~_4%*P"ek^~ VHL[&'K<Υ<Y2N{g%nGRis7.MxOG*P(SJrKڧtxeC֢_sռ$+ڃ!ٹn<<M
+ CێXM[okM!Ò,[0PZYJ8; [7v| zvFT\+|QRD`c֘CJkK_65? WMm
++cj!ᾃ1sbo#A
+?S6`cT{
+"D9wH EX&vsc4nx\a.`) yeDRH $2T56/SŜDKMH!$#3St8yum/$Bs9IԛG7m8k"p
+~8,ZlƩ+n;xkSV„©)W&dp뺪+OChcCgk~!3_l,&,14~AlFA萚M\zJ:It]42gxY^7mU_Y _K}2)چyчSEw?4$y>^Scq)L7.@Gy)njxgJ_gbXiPolSLs*~ri`fkS ~6" T°!WqoQI2zT% cYe(0H^J|dX_ê*8srcVGKڀ9~fӥՌi(?[J.&\p*kὍ(]Q#B;נ"eofO zgb G r8k">X-S#P/
+^-!oSŃ]zwVz8 |:K t_ yBȓ)-- Nm|~ErzPOf΄Rb.3UD
+endobj
+1448 0 obj <<
+/Type /Page
+/Contents 1449 0 R
+/Resources 1447 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1452 0 R 1453 0 R ]
+>> endobj
+1452 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [381.4987 454.7681 396.2213 465.6163]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.7) >>
+>> endobj
+1453 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [429.1534 410.0077 441.1086 420.8559]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1450 0 obj <<
+/D [1448 0 R /XYZ 144 757.9346 null]
+>> endobj
+1451 0 obj <<
+/D [1448 0 R /XYZ 144 543.0383 null]
+>> endobj
+250 0 obj <<
+/D [1448 0 R /XYZ 144 511.4583 null]
+>> endobj
+1447 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F39 351 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1456 0 obj <<
+/Length 2504
+/Filter /FlateDecode
+>>
+stream
+xZKϯpDb(
+cEeG}3uFp. nxswJ8AnU,O;ߙP{}j)^dI7mgJGqna=^2țB`y\e4U-1Jy)
+$.iR4S I&QgըG~WRB깉ɱC㘴$o0zP&
+[<bV⺙eYl֛;}'^r/`֞"lܿ܉ׇ[q4>!+)aTC@n(q/']L}Tt9/vDAj
+4EHs\YHO8"H*#+6GTr[m"Sի#Wv s؂AʢC|/µ{';pX냳Wn
+B!G G0SU0FK-
+~ Ȫ2<Ⅷ7G
+meO.ȋg9\:6 /|__n(=kQ軐&u|~t@qYm.ruQCN3lzjx <!,<VSIhIҍ^ˑ C +f&Z1 *A*-bum*$ǨN@sJ*rxB}ߛֳI𲤐J1g7SC7
+Sc5H< B
+endobj
+1455 0 obj <<
+/Type /Page
+/Contents 1456 0 R
+/Resources 1454 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+>> endobj
+1457 0 obj <<
+/D [1455 0 R /XYZ 144 757.9346 null]
+>> endobj
+1454 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1460 0 obj <<
+/Length 2518
+/Filter /FlateDecode
+>>
+stream
+xZo~!4zb-u{-RkY$$ʲcyK>Su!&yov%."'.i]tfo}{m.0Kdrq)_7ZKotg
+␛UihL;n?GB/GXٱ?^Js{wA$|iK4Nn7T" T9
+# RQ"Xq^DXZ^68^PTZi? ܰ,6GUO..Ǔ~ķo=Թˇ8'8_b(Q]6KĤ󹙌`S>;|@)ujG-;ov=γ m-z϶sz;z-Ы/eNSId턦sX`Eg^߱TlHr6H!LTZ,KVJ81DzV`,WD{iO1ʗ<5x$stT(զ,ͯ/a -mƷx7_U]w #:"C6&LMWIj_fMɌy_1o
+>ٮ?d9Qvr((>%-.R զB))|Is(jAp(m5G62l8&Z$ ~t]r]2@#/ 5IQqϞCΑos1(D(SkGyg8Ka'H
+JJ ˵1Z[8ඪ!5@@܃((Ŭ8%w"Ff +=
+A*`د~HXDOQNHF>7Ds;*]hU
+ޢ;p|g1sցKhcw5G֣Fo֐cfbz(W3 M+([ B!`|u[22MChc~''T 5Io m;| cz|x+sjl-@m3!G*1utM&jdEf5̉r[̋/`]\uQ $,=^?gvdo^* `9)#W so鵃yXJD¯ nAk fΒU<Gk{ʎ "I]0(=eSVR10txPhGn{&p;Af~|hDM]:xUϳ|J,ًܱS؟ZA^kQ*;36@RY02qr| o{۶\sEyH;a(?zJerDu
+ON
+endobj
+1459 0 obj <<
+/Type /Page
+/Contents 1460 0 R
+/Resources 1458 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1462 0 R ]
+>> endobj
+1462 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [403.5189 537.5665 415.4741 548.4147]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1461 0 obj <<
+/D [1459 0 R /XYZ 144 757.9346 null]
+>> endobj
+1458 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F40 356 0 R /F35 854 0 R /F32 319 0 R /F36 325 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1465 0 obj <<
+/Length 2307
+/Filter /FlateDecode
+>>
+stream
+xZm۸_a8@Fc&Q .h~mVW K _lɦ62 Ipf8$gt_:BLbh}'hj(0J|~W& I"M򾎧x6aOl6\_ٜ`=A6_:yNYqLP/O'$2zӋԽ$"I̕6$!Sj3Aˆ8"J:r_hS3kcAH"UұA=6bI
+pRY-g,^<"TDn!j}R6vb[4ڶE&s2%sJ!Ұ.].Q"u5&EnU2B fJ8<tOO)zRLk^ll -[p@mijs8BiJw΢ȏ:ˋ*[ Z-v 7ڳMN zmUN_^/s>x";|Y-O;y;x("<V8%ɼyⱐ.ww
+& c/f}D B'g
+ڒ {pN ,nfcL<u}Ea5 Vi؄
+|-@k
+em
+Pi\f/dj`k&S$XC*DO9(+)x^z˔k06U|*B%A eIh záz4 O
+#7wLXD,k9@E"ilQ>z׫BF}5kaԴl!endstream
+endobj
+1464 0 obj <<
+/Type /Page
+/Contents 1465 0 R
+/Resources 1463 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+>> endobj
+1466 0 obj <<
+/D [1464 0 R /XYZ 144 757.9346 null]
+>> endobj
+254 0 obj <<
+/D [1464 0 R /XYZ 144 419.1058 null]
+>> endobj
+1463 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F35 854 0 R /F32 319 0 R /F36 325 0 R /F41 374 0 R /F39 351 0 R /F50 892 0 R /F23 307 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1470 0 obj <<
+/Length 2293
+/Filter /FlateDecode
+>>
+stream
+xڭZ[o~_aX@^"z))bt[%Csisx%Nn0@L~OCf #3L2K2{|!n}!׻/7jřbv[D2~ϛ[NT4q1`$w!Ms0'f9U^4w%)e1xܞSgh7q"pF|Uy>_{hj4ho hU:h-UEw* x,X&/uzNed Uf2\h7{g ,Ţَ?,
+JƂaE /8/Ϣ;.{Ȼ B˲B8KatdSǸE*hvve[n>6{֮c8FVzߡvue(<9n quBn]k<}q5VJ_ XT+]/s: x:ߣW`16JIQl,>}ϭaNcjXE浖{~3bc{n~76(% w9W'%X_jZB8qNľwR]eΥL9HKEg}[ N8ѿhQX~(rЇPNCh.tqs+g"$SuA$0=LI<=39)7jSMo~NpןRI*!Ɗl d{|8ϲwuAyA@^Ҙ"k
+JktjsWѦv|y'`P%1Ä l4ˏ4 AlXVc*:B97caPj7Fo 1nDǝdN^]"n<Rj^Q{|(pP& H4.84 r
+5keee[
+sJ%h)sWXuN;k0PT}R%"8'x}Ga7{m*SLl|%2.n t7``a-AW,Arc4iģC
+ Ü* `"|.c-[y>k vཞC68JϊlpV ]~Tjzr8MWL:.M}X?s3xp3Mz}SoqS"oW<Jp 6pn;? K'D3i.}mG}+g^WF?x
+V)Ǿ2 Zil8a
+^Q%T& ,rPiƣϕiFxeN.;ۼq)?9F}=qG?Q+zxˮB8>ċX$W?
+endobj
+1469 0 obj <<
+/Type /Page
+/Contents 1470 0 R
+/Resources 1468 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1472 0 R ]
+>> endobj
+1472 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [321.4736 213.5801 343.9449 224.4284]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+1471 0 obj <<
+/D [1469 0 R /XYZ 144 757.9346 null]
+>> endobj
+258 0 obj <<
+/D [1469 0 R /XYZ 144 294.6788 null]
+>> endobj
+1468 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F41 374 0 R /F23 307 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1475 0 obj <<
+/Length 3001
+/Filter /FlateDecode
+>>
+stream
+xڽZmo_a (*k&}CzmwEbm@[v-W7e_f3<CYlƤe*lIf g|{g:)Og)է(/X$c9_!4ϣ՜EO߽Ͻ"ձ`\C\2rAE3~[R˘TCKy&IǿgG.$eE6AT
+hBIńbWͮ;}`ӿFXӾU*<_cvh/}#KSz"Kw`00ˊ=4i4L{6~4>TsC/}.Z)NM0|
+ڮ7_H9j-<%L#F#:33xSהΙwhc$f<sڻryTlc>e%aڡm2S͚:alUCD58df׽qr٣IFV߇6< ЗډiTД,-t*y0/h?h68=`E7X#ˆTT;'F.`#{:=d̏[:NvspJ+3;z,XM
+.sOgqP0d{VM&F<Qח{ך=qkv+jZh? 2Xfg3/q/YxwE 8b-:yAhEnS߅qiJje1 >|oh`DdB;8Ua]/y$HԭM,Bm$.h" RρN򩇘T}UULYLz!8,VK=9**
+du^
+g\[
+8KzU#;$f[օ72 DIYf=ji>@N3'9<mh=bݗJ8Vͺj<%d. A^y<%ObN\vŶ<tNmNDb*9};86Sȋl ,wk<(^uC="> '/g^]eKI%U>wYHk™<  \\L5I4sڶu=fAP:I19 eĉҧxĘljvRQ۬\
+K])ڎ IN
+B**"qN:wҐ+ Ywi74+Uc&dHl y4q-${N4\ Mc= .9ggfZ>Z;< 62c_G6uYQDH&ɣ"( vSNj6Le#A~4@*nID
+<Ev-a3/Jl`.YRjo
+w7+Q
+!ٴŃM:yƔN0!:ÔAct"y ( T!@_ pec³\,JxQ,(s= c_5s\}8XQ߫%gN8L 9|Ôa%LF!kzcnUlx9z[\K[˜K#Jc
+3@ T*n>{GnhΧGsۄ9><+Ƅ^AmmC#)!|e+նMMȰQui̞C!V7/1*Hz-*ak s)--@:?II.!z~
+$]!,&\!Q
+yrGFh"a}aYD%%ʡT'yX_Kb4S{"Pe[vJNG;ݷewazK(j3;z+< <W1`I4K!i0G qendstream
+endobj
+1474 0 obj <<
+/Type /Page
+/Contents 1475 0 R
+/Resources 1473 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1477 0 R ]
+>> endobj
+1477 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [416.5339 83.5123 443.9866 95.4675]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+1476 0 obj <<
+/D [1474 0 R /XYZ 144 757.9346 null]
+>> endobj
+262 0 obj <<
+/D [1474 0 R /XYZ 144 166.4098 null]
+>> endobj
+1473 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F37 328 0 R /F23 307 0 R /F11 832 0 R /F7 803 0 R /F45 799 0 R /F39 351 0 R /F49 836 0 R /F40 356 0 R /F59 1252 0 R /F53 943 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1480 0 obj <<
+/Length 2362
+/Filter /FlateDecode
+>>
+stream
+xڽZKϯ00@\%QnNvi[i SŢdM} dX,v,+5Ku2C<?>p@E_o~lf7C_DIL1IP";eT_&f*5|K6dEe5&WǹQu?;T'+bB'$3 =Hf,&@ ℟%ә>'uB.)Y-:i+e/!{R3#U꣼'>2Õ_?np54 !ͫG{X]ILD|^|!rD
+Yj1ېzTvM"KNsi0|ˬ<*oKEϻ%G wnG\dqߞ얦0+X3qdd []]ԍ08aJ0w==^vvi_eqr9#UD\Xͩ[RFTXӸh0uHYI:7wpYpcg' H(Yq:4Ei4[TO.{
+&?wWzkd'@cݺp5ɚ{
+XZp9iGb.?xmxf8)68iΫ6\tkZV|>D~82:QezIb~凮'F6_G?m|ID :H1ڱ>|]tܰ릻 Կ9EIEާ1JcP_$ett,U C.Y K
+UKψ;$blp7XL:*YϰvWBv"a -5D-׶̿n\.1tI^㍗#,qKzQܠ%
+kclnҒ4&Ѓ2eP2:|[204הDFDk菶+૫婭z|ݯ!W"8e*HHI
+{}Ò$5.Ծ]"Y21OE_!Tvi13ItO I5Rull> ;d](T5<7Eo iwJǒ 1eyzz1H~˯>POI0C$
+sgsQ]{nkPڬ}37 $?};,KW|YYiGs!y%p+G>kO@xiXb%<7l?UktU=mTI^tԀ>LD!~/.M=|' g\8UuB5Z'o L'&~cAs~Z.+}=,eyl6OMB'`"T- qLčf]Zr@nM5-v39D8` /ˠ wdƓ4X&Où?B>O51\ ubz<юFp}zꋌ'ѣv"΄T_#)GN&M'`"A KbCfkendstream
+endobj
+1479 0 obj <<
+/Type /Page
+/Contents 1480 0 R
+/Resources 1478 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1482 0 R ]
+>> endobj
+1482 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [334.3974 524.8088 361.8501 533.7198]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+1481 0 obj <<
+/D [1479 0 R /XYZ 144 757.9346 null]
+>> endobj
+1478 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F37 328 0 R /F23 307 0 R /F41 374 0 R /F7 803 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1485 0 obj <<
+/Length 2452
+/Filter /FlateDecode
+>>
+stream
+xڽZK8W1G|an;l{Ai[۲dHr:AV!˖3AАDA*bGgT\$]<?Q?@Ew?}l4aqsq[ q3"XLG9_{yNY
+qu‘?;%$)ִf INۘLb u*K :G)Lv@z+rPf{slK3qiV١v0?8&}R=LEILWȫfoGeRia`tD'"4 _h^@nbD,^fʔ6@6UN`.[=^:))j}'|KX/N{)IO܃B!KHHЁ
+/tQB+¸$fDSFOZlЌH3N{H;g9 LEVY/I6c*J Yl ,ARMG[GmwV8RY/2_HʣG|߅EyVcӺ"B:eO \ߔ7~OIņܸ %S?d[z2J0jQ/]UG3/A#FUY.P
+BtA%"%\b 8l]$:nU>cOCq8&.UU#U&Zt
+Aݕh%NIQ2nliJ
+U(PL"pOM+<g@~dԸ䉉>KKmqmGL!zZD~imΑ PGZl.Ogf]hBW,|-P@+e6)ܗ9?<V"L*LժC)6\E\bLݪ}ap<p9bvpYWN2l˫jZN90~iCXbiU׎Į
+W@-$IU-TH6f|i285+M]VUaA7n #Bqf(ŮHdmq !kR_:Q 7EXm^-ԼmN],4gVDXTh}?*
+MSA^z ~"kSU=
+endobj
+1484 0 obj <<
+/Type /Page
+/Contents 1485 0 R
+/Resources 1483 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+>> endobj
+1486 0 obj <<
+/D [1484 0 R /XYZ 144 757.9346 null]
+>> endobj
+266 0 obj <<
+/D [1484 0 R /XYZ 144 506.8554 null]
+>> endobj
+1483 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F41 374 0 R /F45 799 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1489 0 obj <<
+/Length 2637
+/Filter /FlateDecode
+>>
+stream
+x]ݿ^PEp\@
+ISq!ǷPIz+3L|:wD?hXg6wI83Ga$AT#U%R]
+&
+8TH'[+[NCKQ4Ѝ'*JfXu:?t>7S`f1F6E]VW]Q澬n(m\,b{6v[Tvij3?[-Cayb%>=ўo-tj'<yτXfXz[滮9[v[<?;0)0Mȱ< 9Hf0/M#ydZ,pRm0{^`$*O:pæld
+,Q0KN@u<@ NHƶv<Z4PY؆aONn-.|-u @:PgƉ԰`Z8 `}O(C
+vgXz|\ꚣQ:vHEPfI|K3Q# \i&-%oE2 4v\cy4s8/G/֊
+>C➥ZB 3b=Q0⪢(LkumN2Gj$o[RnM{#GrӴkivHdZ9Kjp~Ɗ1'i 4@SaC(Z.I1WC@T`M t<e
+Wk 0 C&N2eL5L(T˗Y%K)\aU#yih3fp$  R<AcӸw:ה3ܴ o9'm"_7-jڎ$Q BR2/ ;F:} 邃h(wшxt|u۷z6 ><QYm lu ۘq&)zşF#3Pڎ
+bi*u;zSe]ޗ}mASY鉇@+*K+#8ab#n2
+3r &h26׆lxWTq2e
+&ŏk.JTFgX
+w A;6}HŠ26M̴}ci2z&I2צ4aCLn
+q. /~nN,4 Zr$I
+M.j1\_0=׆}7t {kЧg9?$C`G~|tM
+'{z?Ȧo_ li<̮siyUs'<7{)_Q_j70Sm4fTAg]pAI1&ڊsendstream
+endobj
+1488 0 obj <<
+/Type /Page
+/Contents 1489 0 R
+/Resources 1487 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1491 0 R ]
+>> endobj
+1491 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [286.1339 231.9557 313.5866 243.9109]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.3) >>
+>> endobj
+1490 0 obj <<
+/D [1488 0 R /XYZ 144 757.9346 null]
+>> endobj
+270 0 obj <<
+/D [1488 0 R /XYZ 144 439.3861 null]
+>> endobj
+1487 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F41 374 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1494 0 obj <<
+/Length 2168
+/Filter /FlateDecode
+>>
+stream
+xڭˎH_a49ؗ={94=`ب
+$f4֪ {YlҎsXl6
+#;c"Đ=J RRG?ƒ˞||r
+)^
+TvL&^@em/1KDȭXB%h#,素n-lkU:ƽy:j{(ԩӏ$|qp*0$h]4Ġ;Kc}K`E>o&x*wEBҾV%<LWD"GܢQ vD9ڙA CwuVcC,6Ig)z,r`Y]{_}d&`Kdz\EG:8QhmQlu&_?Z<*٧; [;
+V@s@!oKmZw)-W_F4J+~D+
+X+E >k[,/ %oI@eM
+p
+%XP{11
+endobj
+1493 0 obj <<
+/Type /Page
+/Contents 1494 0 R
+/Resources 1492 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+/Annots [ 1496 0 R ]
+>> endobj
+1496 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [176.9502 618.0495 196.6541 630.0047]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.12) >>
+>> endobj
+1495 0 obj <<
+/D [1493 0 R /XYZ 144 757.9346 null]
+>> endobj
+274 0 obj <<
+/D [1493 0 R /XYZ 144 734.0242 null]
+>> endobj
+278 0 obj <<
+/D [1493 0 R /XYZ 144 661.8436 null]
+>> endobj
+282 0 obj <<
+/D [1493 0 R /XYZ 144 337.8572 null]
+>> endobj
+286 0 obj <<
+/D [1493 0 R /XYZ 144 198.9269 null]
+>> endobj
+1492 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F7 803 0 R /F37 328 0 R /F40 356 0 R /F50 892 0 R /F43 455 0 R /F41 374 0 R /F23 307 0 R /F11 832 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1500 0 obj <<
+/Length 2807
+/Filter /FlateDecode
+>>
+stream
+xڥmF{~~K1;)IӴ&mԮt']O:l8h{c{˦TgWJ?y%*ֱat>Wkᙴs!^_?歹J$Ru/f7oC5RI$
+|HŢ̭wYOL2x\)%T SrЁWO!M<t4U vE>fabם>{~
+5B
+ C)I7P[@Uqu&wH\L2"š~(
+P;lıѰƻ)r/it!{X^oW9#HR6dL+αm~\(}a|I3֦ 3rV-Eg{lt⽮F >l"O龳 } %,ky%o^|jP/n졤
+:6ሣ`GM
+@q>`8M4XrQZ|X ݡui6}Erj2It)k;1<W igvQX[]@XXʥ2P8\E*!|*.4
+}EpDiUAUu%ʏ`k1=dxDv-s[&Q'kac>`z5 -\&
+Z{˩X)es! \'DH$`o+,7C/C=i̚*;BrۋCuZw5[k4x@u1eeC*
+C[ V1ث-]|a}ڹ
+}ޙ/
+ÃGoKy ht)p|ӂ!(F {6㼠!@ۊb#=zF4T )1|5[V],,)]tnh+E8$GaY蓊\pyGon{EiF!o+yNBa4#F:6g"zJ`6G!O>`boӧYx,d X`<ޜj
+
+B[D <CxMJ耶Wl3
+ݥ =WwŦ7/:Ee}`iXWvd$  4|o
+;(5
+X?g6
+;\)Z3 $ k`#5w؉ZJ`]i7tַ
+ P}F Éb2Gl?)WP[647yݔA$!%Twm}X=`Y3{2}+$C?fp<9ѳosa
+3elh.S8]Bju Ǣ6 ha;oa*F5939RB(?]m_fa@Vn&C QCp(j0D?!qC9Nˆ&]a[`DrY
+t׵Ɓ4#%T^Ue-#߂^˿{h3_~䋓ʉ&v {ol/˜Dž+aa6J|p`4XKAď3*jsM-#&?) `lt(  s4endstream
+endobj
+1499 0 obj <<
+/Type /Page
+/Contents 1500 0 R
+/Resources 1498 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1501 0 obj <<
+/D [1499 0 R /XYZ 144 757.9346 null]
+>> endobj
+290 0 obj <<
+/D [1499 0 R /XYZ 144 341.4271 null]
+>> endobj
+1498 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1504 0 obj <<
+/Length 1620
+/Filter /FlateDecode
+>>
+stream
+xXnF}W})X˽_nTi
+y`$"L(;I3$EI+ Т;33g.K6# qBluAGw~}>"}%M:O4I,YWcned w+|׸WShG6Ai1Fw#'»3pIf oE {];`J4 wǑҁ(]dA䑽AtFZ.Z|`@E^wFRXjh4] F0ɩh0l+uD
+hj K:"ɷ5*'52NJN%A;Uqt%0ŶZApAc&֞OՏIV}LEoF3$Ζcٶ2Ŵ
+؜9A砅 7
+Xs˓ls1O)-!1x@T1je| AtYSョ#iRH n
+ {x^6c)싍, M0|}0m)ѤQDz)f_NdrOr!߀ +wmVOBs0#a[AZcn/C#I4CaC3 :hk [}1 _'Aǚ0fl#v-)$c#Z9 ڲoj#QCLa1\JE4 (Et5jCr~cpOvmC6,Yo\*bkQ@GD<7yn9l7y93-/a"S˹w5PXKU휱 (ȯcO7<Hgu+ьC-'5cx'B΃!S(Ѕw=K&e<r|
+f!1pl|JMlHP Fy 5PyC<y0hk<[}C*&R?WlXFo:o|Ir6yhKPWX$DZ?Az)е~h ~WPuwbf!5'3@ wTf(x2߸~v 4TOY4C<
+xZ)i>1B)DzO!YڛCG*'T
+endobj
+1503 0 obj <<
+/Type /Page
+/Contents 1504 0 R
+/Resources 1502 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1505 0 obj <<
+/D [1503 0 R /XYZ 144 757.9346 null]
+>> endobj
+1506 0 obj <<
+/D [1503 0 R /XYZ 144 714.1959 null]
+>> endobj
+1400 0 obj <<
+/D [1503 0 R /XYZ 144 718.1809 null]
+>> endobj
+1382 0 obj <<
+/D [1503 0 R /XYZ 144 686.9978 null]
+>> endobj
+838 0 obj <<
+/D [1503 0 R /XYZ 144 658.3054 null]
+>> endobj
+840 0 obj <<
+/D [1503 0 R /XYZ 144 618.2113 null]
+>> endobj
+839 0 obj <<
+/D [1503 0 R /XYZ 144 588.9655 null]
+>> endobj
+822 0 obj <<
+/D [1503 0 R /XYZ 144 560.273 null]
+>> endobj
+1328 0 obj <<
+/D [1503 0 R /XYZ 144 532.1341 null]
+>> endobj
+1502 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F45 799 0 R /F44 416 0 R /F43 455 0 R /F65 1509 0 R /F61 1424 0 R /F11 832 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1512 0 obj <<
+/Length 4015
+/Filter /FlateDecode
+>>
+stream
+x[[o~ϯ0҇Ћ܇/NMŢ-(-`Zl6(RPD9d͍s9s.9s,2'΄gθ4WڞMϲkh3'8`^gy[iχS;?ꭖQJTЌƼ)V".'JUOݳwR錽ݨ}Bv*uYa]\ODpպ?1<p q :gMQ82ÑR WUY)M9̓_2]@vZnnʰۂy.^ } sLhr*smʑfΨ0׺ò΍KJRܷ1=}Y"Z#e$[Jo׳zŪ
+_=뽏9=aUZcUY6cYx,%DيjG! /6/xscҶ%WeKV~@;`]ʁ5% ^y;ww*gtKHP?9 ɒ b@8msxdSGX@}Q73PIЧ,Vab:[R
+F.hrc94u P( z9c .+Z{}fN;bO}g\nj Hٺᑾ11hJ;`jPEًEqU.F(iMgR)F&Wk.܂Aj45DJ1brN4jZ6!^ r$+OcnJDw 3yu_+A|q+.cNG瓷شܵf/I^/zlH/3I0f ;TIg?Jf3S;Ti#Ⱗ0wp*o+xc
+Un!Th]M0F԰.bE 4 
+vLmǮ,]٦*HY㍚=0Ecg8 ⟑ȗlթbOb'j̘fÕ5b4 * w&VJVZA<m01P'\Dp2r=#~H}Uͣ >|f FgD^$2 h]^QrEd/6NJTWŰӚ/x]G'&/w"yN'p*q[A)qx<4xڒ %'l+yH'-oS^oE7(ipņ}<2@YjPgּҜ? -x 2ʹTG4P
+#k9(u85+
+fI]eU^/g}2 YO~
+6K|.̞HiSoIl+;°𕀢8Rpɼ^WQz]m70Itb}=uH6j{;p/B;h<4Q5>MZ\^[p'[ZCkĢR7{{/l<=7zY^|d9>VY)\/s 5˱h(T-
+mm.9+XCbԆfy}' bpM-y<;
+ww "34pe4wyW
+IPv[VRcC%z?nKr$Ąi=X90mHj)W1 Ogvg8lSߡq}s@K,9ת"_2Yc2X
+IK="q6uO#1muT*A/<(7B N|N(5 gL5n)ޅ]nn O
+.]pYkf ʾö6u m9E'\! ]Z;T#Rm~d..M3S^'uETAh/iw=$SONP)XbH`'#2l0u7
+
+-K@X6W]t؆عkO=f,]ܗO{ |W7UB i ]5xڌu/9AXY/
+ '_LB3fp{L,L[A[H4Wa~Lm$?X7K5[@ 0p>n-R_˦"zRbDZZ` Ds1Q,e.P(+s=I9=m+RWs aONY£>ͼ<5<W϶-c]Es~6QG&y?/HK||jgc5.26$>Ncy+;H1ϸlaҜ,mUS K%v#In;gA7epUsruTAXr􅔊tP/%BHxFN  }P@\xdd?(,M9 Avф!Ys_8c
+
+`acn[+-c;W#yPֹGiTLﶣ8IJ;FA W1D/1D9.aokkq ҭ=9
+endobj
+1511 0 obj <<
+/Type /Page
+/Contents 1512 0 R
+/Resources 1510 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+/Annots [ 1515 0 R 1516 0 R ]
+>> endobj
+1515 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [260.0351 631.1925 266.6353 644.1439]
+/Subtype /Link
+/A << /S /GoTo /D (table.5) >>
+>> endobj
+1516 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [187.7421 488.7074 194.3423 501.6588]
+/Subtype /Link
+/A << /S /GoTo /D (table.3.1) >>
+>> endobj
+1513 0 obj <<
+/D [1511 0 R /XYZ 144 757.9346 null]
+>> endobj
+1514 0 obj <<
+/D [1511 0 R /XYZ 144 711.4063 null]
+>> endobj
+1510 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F39 351 0 R /F32 319 0 R /F36 325 0 R /F35 854 0 R /F37 328 0 R /F25 322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1519 0 obj <<
+/Length 3449
+/Filter /FlateDecode
+>>
+stream
+x[[~ϯXb8WrҗuӺAh&":=H-)qb\ΜwUWSWګi0_-Ȯ_(yaV_4xެ}Y7fSUrW]/ɷk_|^Q:H䋿Gwڤ:wVi頌s6ͼ=o);уϜOm; }HdS2wwJ*ﱲ6B
+;ZX:k`v*K+uӬ!9TMtN*M%2pZf徫uwu =7T؛m
+kTպiE n v\5nN%u8/{THCB\qkH!;M۠hI_ۊW.^y*CECM9&Kvm5%<򓚹%@"RdU^jAHf:OVgB{-!m(*9=O6
+es}Ecb)fGn'/@\+-kX` 7 nKO_岂y'o6Քa"$5=&d4 m{Ch&k.nebFD+eE~R087Xݒa,ʹw'ߋ.HQUH{DžwiV<EB`z)ut>sq fXSqG|&w=zX<v(dɆ/~gjA[ڑDV]n4%87x?|.|Rlq҉Dj8:\ɲJ峰>\~eII[`y`1z+Z~>G
+XGL$5/u١[@d߉-pw׋i\bl}yw>XY7E u܆I?+4V#ZVز4]ՖۯyWUW\|;F* R)4g؏w"]6j@Q^x<SV.*V`iND%^N0
+
+,)`|~!Jw}
+8Dy
+ۣ*w@dWZXa! 7v>_CGن ~ W[2NР-rriIajCR"#{N<wngBum})4
+3'a( $JBdLJQҬKP'CMJIώ?׻Zj? W皮z/\JG'IGJxD6żjGP*} 7Pzc%7;Ү,UeNN`䌝/Ѐ/kh֡b-sPI U\ش#:;#iL(+x?ԘJ[+S6iWbmOᑌ6bK$88sJ2'uW$6
+Sl@GVu?E&=>JQ^`t pm&5$tcZ}`VK.\!
+szR.@*TYx=_@)eC q#a}N"'nmɂEEn8Ƙԛ
+V TS xllM.ɳ{vSF
+,.FbV HU36ۜ͘Nx>#ppYؐd,;:sQ;?kE:+xk`떋Ky[͜I֝B'n_"QYO`Yxl{dsj7r .-rdۜg.v~
+ii )LID)$僛9oyc&E
+.zia'礪k
+^xII=ظ⃱xWQ$ۤ.,PW"yRy6͔F9E~9(.,8).x9e~[wWH
+qapC+mƦܰx뺝 X|PVI}qZ7sNR™^] olYLZHѵ&VxDA&OI`܄GAa!+Du Ӊlafendstream
+endobj
+1518 0 obj <<
+/Type /Page
+/Contents 1519 0 R
+/Resources 1517 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1520 0 obj <<
+/D [1518 0 R /XYZ 144 757.9346 null]
+>> endobj
+1517 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F37 328 0 R /F32 319 0 R /F35 854 0 R /F36 325 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1523 0 obj <<
+/Length 3556
+/Filter /FlateDecode
+>>
+stream
+xr6_Gy+bиQyqModCYle$QcSmD
+[8_#}KI*ZH!q^NMըTw|ao3|uX|ptQ!Q̇>R V8UEݺ|z<Ys踞Ri;ɭq 4
+ A<Xb֩ںAXtP*[;0~7.-EHTYOŗZ>Xu)DxOr$!N's7Fdh{$cho~ 1_{= ua\2<RiyGPx8!9܀,r
+~K3pTx0!//At!~G.kI|P@;
+\K# ,Ō8>ʰg$qݕw` tx_ #GB1&Z&d8[DŽK Vp 嘅٢U 9צܬ-iƈԗUfPŧ\kl-6_u@3 )}N$x`DxQ=>抡b
+~7Ft0<vyH4Z.&Y3іHi&cS&FZFj%d!C:ӆXeEeÈP}BfJ)XK5\֧N݈Bl_In삏JP?"{pW~IQ0tdV 7JCȉ?Lɕ /ҺEؙϦzPGK4
+E?nŔ4#ucZb:<A dۍ1YUMT&UI#
+EO W7UFWFL laTZJm+rK!LS'9?qnr FodiL@TƒBCwvf](0:St,!ubP8ī+fkEA<<okBdp27U9XQ #N$ӤRXNDi?+dtPBљ grb;P1HFbO=4- ,aj”RNJj%g[{.| #yxMj{ H@1+
+eDH$aMGw?d[ pYfKAtYoGШ>=62]mݫ8]%Zw!'F`+4]Fu8ϋfDNQ/ # ?VI
+i:W f_h'0g ~OZ.!1  hrV7DY~2AiIB# ۇg'sc]~a+Bث ao-4aZ놘J)L{
+SYSoQ5ZUa mU,Sq.p|o\(g_D
+LT{IQ|<jYivYEKsL'0q4Ii_#;[җ2$IM]VXYS&S1Za$:_E'R4JŘ*k1Q4͘NXD!k1&&(UE/+F,#%Ԡݱ
+>Se&Jc>GaLy!3Ic)GMu,/hQl$E%U9'R (BY߄VC?jB{P`uiG@SEMF dߙ#Kt-? Z/HreA+"w4լ \;T"
+R$Nua=Af0AQB`@CUPQc%%]om>]`:`з[D:dvf CH@0[
+fOUQZR(i6 fl:Df6 0-%>ADu 7w|8n(}=Z7tv텇:yܿy͇͸PU{k!#th2>Ż(_w#,NܳRjOf8h0qFz8F%DM(~VdQ4vAU "ϢY
+7zWq>N\6c}Z&4^>FaŪ/r
+(8S"dE.0z:X3&QT@n~i"Aa8.84Y򾙟,.^"_{}*V(}@32 ߪ]u!$*p{Wn\Lp"8 Af(qmA (Dk$ I>SO Nw(DP|%7?ǪV[WčdB%`,5(Bl""Vv*;b>F.+?ebsB UX>ˏvک(J}ǒb?`
+?do&RMUendstream
+endobj
+1522 0 obj <<
+/Type /Page
+/Contents 1523 0 R
+/Resources 1521 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1524 0 obj <<
+/D [1522 0 R /XYZ 144 757.9346 null]
+>> endobj
+1525 0 obj <<
+/D [1522 0 R /XYZ 144 714.1959 null]
+>> endobj
+1521 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F39 351 0 R /F33 316 0 R /F37 328 0 R /F32 319 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1528 0 obj <<
+/Length 2464
+/Filter /FlateDecode
+>>
+stream
+x[MsW̑Nyh
+
+Vxm|'__2t(?}QO}{Y}C ?>w?&/4(Cg ݟ9Qi,º^i]8LNI)1XXe$^QYtM6v<6#U4j MPj{
+?xtQ+3 Ƶ/ `> e,47 T&`/MAʪӿ~E+;)wX|)U<߁Nih_l>}'eLj =Xo`"jhG:'AUHfFQ= YFM*(D>kiIX20̌=lx~J(FsDy8̠\>^ayY'(LۢQ2qɗy&L
+_ O៛}^^yxf8-yh}k7[z?2{xѡb㋖{x C 9ἱ'$!^RҀvEy0v-?‚+YaVbLXBa Sp!sW릅2yVcs/We  <xT"Xf>CfZOW1#mq<*J5> c:TYv'=)PYCA~/Z%-b۲Z~Yݯ9fH veeE民VdLl#
+~][0d
+
+viko!9#ҦPϫ  G'D&0+!
+m:Q`֧&Ee~qD g5Y۱Y%" %BaX9iL"H,c)h'fG❩I^ժ+ #g( $؃$& <:cƁF 5} ^(y|
+BǓ-3(r!%e"C&&j|{urzz8MfXGB''L47OEOVW2Uu?Nb ͆~Ibh{$v-{Pc62wJE^9p=4ShN8Xafp$1F>FY3vIOKm[%
+P)ZxtHdB2a#f({*9
+359x@ }KɘNXKg5r s"˜@4G ]!TG2oP ]\'$lYX H#q\?%‚ B BD 
+b u(B\hO@G
+endobj
+1527 0 obj <<
+/Type /Page
+/Contents 1528 0 R
+/Resources 1526 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1530 0 R
+>> endobj
+1529 0 obj <<
+/D [1527 0 R /XYZ 144 757.9346 null]
+>> endobj
+1526 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F33 316 0 R /F37 328 0 R /F32 319 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+914 0 obj
+[294 0 R /Fit]
+endobj
+913 0 obj
+[294 0 R /Fit]
+endobj
+912 0 obj
+[294 0 R /Fit]
+endobj
+903 0 obj
+[294 0 R /Fit]
+endobj
+1508 0 obj <<
+/Length1 741
+/Length2 1118
+/Length3 532
+/Length 1674
+/Filter /FlateDecode
+>>
+stream
+xkT-© T*eB$hHAӎ$LH$PPPSuEDA(J"*JaQ(x@TuJ?}߻̻!b{L*w(0D}q#
+`)($!% PD
+`"F,PTP!{3CXp5@QI%* DDfpb ++$p̬lH1D
+8Rn
+m>*a(*D,ET8uOxG/un
+RyJ
+%@`*E [!D p읺3
+endobj
+1509 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1531 0 R
+/FirstChar 65
+/LastChar 65
+/Widths 1532 0 R
+/BaseFont /QBTJFO+CMTI7
+/FontDescriptor 1507 0 R
+>> endobj
+1507 0 obj <<
+/Ascent 694
+/CapHeight 678
+/Descent -194
+/FontName /QBTJFO+CMTI7
+/ItalicAngle -14.04
+/StemV 76
+/XHeight 431
+/FontBBox [-27 -250 1268 750]
+/Flags 4
+/CharSet (/A)
+/FontFile 1508 0 R
+>> endobj
+1532 0 obj
+[866 ]
+endobj
+1531 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 65/A 66/.notdef]
+>> endobj
+1423 0 obj <<
+/Length1 801
+/Length2 2031
+/Length3 532
+/Length 2606
+/Filter /FlateDecode
+>>
+stream
+xRg\SYi:є$t.H&MPCR0 A`
+ -ʹ
+I,T@! P@@
+Iܵ-o4#S@&zPA
+`IFҏRG[6K!ȚQJ%2\
+S6yA5
+D2
+H_wQN2J'Xw8-M[,)'u $:|w</+I6 Kiv*nFNd;YԤMi깉z$>{)J/ְY5OGuun-\f]H-"th]:C$d5 &/o{~LҊLd#A?f )㔪e󬟶\pvd9"-8ھR>`uY*o2@汋
+dLē Nm䥇̏_-L%t`Db-.
+I.'Sks.gITNuWnm65^,M8 UcYD؟E,z}j5ne] wg.)|甑?Aw'v /bv鉋 #i>2?$ZOpwXLQ4<OٍmqCF #ފ7曎- =@ʆlѼ`WFҲC4TS]\jlX69($!~蒊[I% Z3PXsc>WbsJ9UcU 8UN1UfOJΝhYX7-_ v~YvYTC
+W,t6;Q= T)û˱8l2Ӻ*J[<]DhZ!@({uo]ӝ=Z_*
+ҏJ|8ݞl=2^0ǿ#D^xF郅> j&sgp
+ioY6elP(-b@L룲o5mnrc~ ~2MԵqێ*Y𻇧cLx>e H**]du8[sP2SF+(Fefg:"ː]^{2s;:jy'4;1:vvOGVWٿ9f wE`lCN?\hNqA0p&6jj1Y_w*ܩNz8O+ ݑxzPg4/EZ4 F+iX޷q1g 2^ %5+ޣHQ&"$Ү#IY`. \鬡RZM";"oUg(PD$1aendstream
+endobj
+1424 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1533 0 R
+/FirstChar 69
+/LastChar 120
+/Widths 1534 0 R
+/BaseFont /VPFKFU+CMTI9
+/FontDescriptor 1422 0 R
+>> endobj
+1422 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /VPFKFU+CMTI9
+/ItalicAngle -14.04
+/StemV 70
+/XHeight 431
+/FontBBox [-35 -250 1148 750]
+/Flags 4
+/CharSet (/E/d/n/t/x)
+/FontFile 1423 0 R
+>> endobj
+1534 0 obj
+[696 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 577 0 0 0 0 0 341 0 0 0 474 ]
+endobj
+1533 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 69/E 70/.notdef 100/d 101/.notdef 110/n 111/.notdef 116/t 117/.notdef 120/x 121/.notdef]
+>> endobj
+1347 0 obj <<
+/Length1 846
+/Length2 2193
+/Length3 532
+/Length 2794
+/Filter /FlateDecode
+>>
+stream
+xy8}Ǖe mK4d37&h f)e,I%$BeK*zޞ?z=` TOЄJ+!4k 8:J1
+@TET9
+5u
+d
+5e2hn8˔)*7qK–;|Xl wKguB5AfJ:PݹIv7 m4ZxThCOcoIwa$ɔZL lQU=`hfkF‰l>e] Ds;\kRDx~g4kJ KI JC_@Uos1s_qT},SwDf2χ#v):4 Sۊ(Iڳa
+ J lkjzg`#<Ọ䳦;P<5}vei$21Zh(TD)5?O=˗vttXvZXhޯH CijG%G[VD
+S1{EDsBEPbX7<Ofu;@,mC}v$h7ΟL.8_}TBxE%!'_%R#~L`wN;|$)xqjiI$;CNbqf;T%z^1j YnV^[$7>bR朴g}
+R#%RϗJLJsrP~cύ:¥vN5v:Uj$u=aXVyhnc\nV|צ{ c_<h&> 26B& #=+b^9Z̞5^nvt9'\M߸ayro1#?kQ-ϨDKCRGث'okPlEF^{nw)6Y
+2kG=eTq[XlZ eJ*'bv0l+)MGȐH,7?Z&Km{)$aPO~J!t dhU=rLNAζn V>Y]
+]I%8AF9cl֐-4b]vD[e\Dw G2m'JVW/F1ywӦ׻DI{Ϝ#`Nx87j|ne'L^\kyvw"*V=[,-ocMLl?j2 .w]+cQ^:2HnmIn :]S|Gtڿ9R$W7DWTiu'ߡ׺y=:67
+B%7)XU߶f2?| o?
+endobj
+1348 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1535 0 R
+/FirstChar 100
+/LastChar 116
+/Widths 1536 0 R
+/BaseFont /IDMQJF+CMSL9
+/FontDescriptor 1346 0 R
+>> endobj
+1346 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /IDMQJF+CMSL9
+/ItalicAngle -9.46
+/StemV 82
+/XHeight 431
+/FontBBox [-61 -250 1150 750]
+/Flags 4
+/CharSet (/d/e/f/h/l/o/p/t)
+/FontFile 1347 0 R
+>> endobj
+1536 0 obj
+[571 457 314 0 571 0 0 0 285 0 0 514 571 0 0 0 400 ]
+endobj
+1535 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 100/d/e/f 103/.notdef 104/h 105/.notdef 108/l 109/.notdef 111/o/p 113/.notdef 116/t 117/.notdef]
+>> endobj
+1277 0 obj <<
+/Length1 794
+/Length2 1158
+/Length3 532
+/Length 1733
+/Filter /FlateDecode
+>>
+stream
+xRkXgBErrm-K5)PKC2!LHU[/iZԈd}@X+EEv@ k3y{3Q$+ &=
+Kd0ύApq'#(}Rǀ;*В)a
+8λtG
+
+YѼBNsD0=SqXq;sLwpBPAa^sJFyM-XpdB3xlgM#A B Dyat4Pi^#pH!*Ȁ
+AK|ݟUM)A(U57gxؽO_k%GFn]jh'͕?;.v%\ݔ7}m~aIΔgYK=f`]X\ ȍSF[]m?it4ѨNVU}s9alQܳ 7Gv BwnQᶟk˺ņ_tm=*KIk<# ZyazwlÓG$_XRs813r鏬sXGj"-{<0|P@`_}9KC/<5-"i_j r.r/%ŊܡZm3ͼ(M^b}"{ f#y%Ju UoݪoXi7'ժodiةX*`\P#͗n2K;iV~euF}^~fH{dw~کY}.qDUUgI\Y@jMHe@Z奎8vDl԰SwogXn/ݒ8W1lE>dcLQϦ P@3K/Caް%I;6ݹ =2ˏi+0AdY"s{gC'Vi\Èi~RcW
+ -<UlIku=QF
+endobj
+1278 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1537 0 R
+/FirstChar 63
+/LastChar 121
+/Widths 1538 0 R
+/BaseFont /CQOYMY+CMEX10
+/FontDescriptor 1276 0 R
+>> endobj
+1276 0 obj <<
+/Ascent 40
+/CapHeight 0
+/Descent -600
+/FontName /CQOYMY+CMEX10
+/ItalicAngle 0
+/StemV 47
+/XHeight 431
+/FontBBox [-24 -2960 1454 772]
+/Flags 4
+/CharSet (/arrowvertex/arrowtp/arrowbt)
+/FontFile 1277 0 R
+>> endobj
+1538 0 obj
+[667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 667 ]
+endobj
+1537 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 63/arrowvertex 64/.notdef 120/arrowtp/arrowbt 122/.notdef]
+>> endobj
+1251 0 obj <<
+/Length1 772
+/Length2 1135
+/Length3 532
+/Length 1697
+/Filter /FlateDecode
+>>
+stream
+xRkTSWG 0CR$!/Hg(O GȽ ɽ憄,*P,hAJЮZ(
+X(0LعF5{}o}>m|'oKyJ8,. a1 L/ C,wwW
+8.LCD"d`Ue b +0$\nlHZ=25`L'89d+6q&)pF!z* `e&O9 9ܾGoϿ^}.@lȬ,lZ>ĀĜ1Ͻz2a-|ќ Ns\# q϶> a]/moqNa؈Yv[UH9O^ AC1p?^'u.{/?tȽ U3VASv`0|4B>)
+_6ȡ\jn},)ioԓy#lfQ{Ô0Zj\ni yWˎ*`BїӐ5dΰ"|bW}qŨ91Hz:, u'e zn<[!rZ-Hz˯>6諻eӇc,СjjwQ`i;֔Nͷ/~]"Ko, 쉼1SNe\ib;3/F 髷~5oi=vVkamuR2K\'Kh6#)nY^ ů$Gg쩉U+Վ{kkUꟕ.]y/ˤIDu84,Lh™V Mjc0ǰMd:4?%;Jv[0;{Uۦm{pQB1Mڸ?Dnɹѳ.;Id 〉,<wobj"\>+-5o:sƞYjm=;^hL^zSΣ)ϋE3C?8 fO-k<wO<r3^>uӹ¯xUڕp~vR?ĕ{'qb%`= YΘ}ͽ!zq*^gݱO|`+,e+JexF&8Y3Ry!h=N<sMe~VŁZOy.=ŃIܡBu##ɣm?閬zR ZmlKQ~jo9֫ۥQ?\O]m}mfcp*}wOcfQ]c>[XUDt]6G{Xleefͳ˓.RWč<iv
+?(/?Q@$8Ix*埨endstream
+endobj
+1252 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1539 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1540 0 R
+/BaseFont /NIXQLM+CMMIB10
+/FontDescriptor 1250 0 R
+>> endobj
+1250 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /NIXQLM+CMMIB10
+/ItalicAngle -14.04
+/StemV 113
+/XHeight 444
+/FontBBox [-15 -250 1216 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 1251 0 R
+>> endobj
+1540 0 obj
+[894 0 894 ]
+endobj
+1539 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+1246 0 obj <<
+/Length1 768
+/Length2 1151
+/Length3 532
+/Length 1721
+/Filter /FlateDecode
+>>
+stream
+xR{</l9Kr"fdwɊA.庼fe}Ό J֎զ#Y 9ITlcQM.Ӗ>Y9y}}k ?{cĞB8.ם [2`mÐPWH;
+I;B@u
+ԋ O$־$?zkl*VFC?萷5g))TO<)RY{?k@{oiB3˓c?L=wbskC U3
+G=?0\;m+ȶ /;uLT7_xvV/{;;9|QAK{n1w[VWw8xq-CGǪN%.ީ-hGHyt
+ N!Ww'Ktv{䂱OŬݷ&l[^ފ%Fzwfy]?V"13"M2 6-vfFTz8KO\-~nޚ+g>p%~EUZz=u9M<~΢vMh9hn wrl{m&|lg$7X֢t~=tMb;U`{XwW'Z5V n{j0{f"z}M*?_ 9_|qHt׏􎶝9y)䞤 ̾ȒKYn=ru~2ԙ iqK)8Hm2rS8{OqDL뛠#X~5h1xҰ5"/[=>nzțI=m&7n+ӫur@zZL 5-un;ݤt/-H95~`\u|ɲ;k) kWféLCc;ěC?l|`D]NT
+I|6ъ(3g5*/?!.DK(endstream
+endobj
+1247 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1541 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1542 0 R
+/BaseFont /TDTHTW+CMMI9
+/FontDescriptor 1245 0 R
+>> endobj
+1245 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /TDTHTW+CMMI9
+/ItalicAngle -14.04
+/StemV 74
+/XHeight 431
+/FontBBox [-29 -250 1075 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 1246 0 R
+>> endobj
+1542 0 obj
+[799 0 799 ]
+endobj
+1541 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+984 0 obj <<
+/Length1 750
+/Length2 1185
+/Length3 532
+/Length 1740
+/Filter /FlateDecode
+>>
+stream
+xRkXg#>'rkB 7J@$`\C2$ &PhʥEd*Xj ^7@Di(Zu_}:ggYl%{(d
+<`g@PIaT!W@sqI p:GWx2 Ł x! Dc!!!`+ʇ!\F 'Ā !,PH4|DA1d`%Fӛ@ab&L
+ L.u;Eޛy )boX
+ 80Ώ<D -!] Dj9۶yqls"<Po"`Q)T* ۯwfmQ,"0'#@ LH
+ HbݒOAe+Uέ]Y[+ҪhᱮeC1ҦUj~57KSws c8`zb?ux#n~{hn`RfDM~Mo8Vccslxk,_+O+')cl7QL^>;Qw23ƿ[:ϬQohcW [[U,LK]MsId)3gLh*ztLܦՃ
+"yZycKo/IVj_1G ̼-y=lvhj^7'Ae >kVjj ^0^cwȱ&S~HV\'gf~Yfډt5Kuͭd>>5eK&VW$7qv )U܉S/YQa!V=9أ8_~a7 @A=r~]G6vܢ
+w3gv2) >;7Z/e&:{gϽ6vR4}cQ4o8YaPp;4jau?yێpĈ;vJ<30UzFvadM⡇5Ӿ6A|(q®ײqԡHvЃܝsV_gܢI->ˇ/oׅy '']/ [mp~L8Iprmޱ<=3/ȉvm[J`gKf :BVjVf]Y]cnndㆍ-Xlgu?}_"/@luZT݆ ;;ջM4^K>lN*{ʲs"C#d{~9z)nYVޜ~>lӶQc \|H )pTvYendstream
+endobj
+985 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1543 0 R
+/FirstChar 111
+/LastChar 114
+/Widths 1544 0 R
+/BaseFont /PUUDRQ+CMBX8
+/FontDescriptor 983 0 R
+>> endobj
+983 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /PUUDRQ+CMBX8
+/ItalicAngle 0
+/StemV 122
+/XHeight 444
+/FontBBox [-59 -250 1235 750]
+/Flags 4
+/CharSet (/o/r)
+/FontFile 984 0 R
+>> endobj
+1544 0 obj
+[613 0 0 506 ]
+endobj
+1543 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 111/o 112/.notdef 114/r 115/.notdef]
+>> endobj
+954 0 obj <<
+/Length1 939
+/Length2 2611
+/Length3 532
+/Length 3249
+/Filter /FlateDecode
+>>
+stream
+xRy<{ߦtb$Βb˔}=f4fC5{솬ؒ%%$"ٗ‰HOީ=]^?6vg@#*+ ,O 
+k%J>Bs@Eqgi06K@p\Qvc"JP<w$\B+:GDQGK'רZNn<p7hC
+YWPIػCq<eFtpyZt+鶯PēUM)O#7 L9}9c.>+:}sBEՊYKƈz2umhp_w '1G<`kU3 L6WH~?*׫RmVܫ/tmIs!pZ12q uk:`Pa5pC9q<cbzJ?O8g=ܱ4z z];]0&6]boɲl`8@p-ʙ@ӌ fHx"sCS%EN35V9S&|V}P=ZhZڄ?%U5_63k93
+Moðbsm[+{+#m{F~#p mSϬh qauPt7 : nCAկlaZ"-_~
+c()V#wL `XjEǬ_Ț QZE ݠ g՛X4E 5$Yuo In7|)=ǒn.`+Sy0&)u\~u(.|>HܹQ|7[Rw{RC ގ臬\byos ŶGLӞӸt%IruL ,wFAMv'BNnҟyZPsw<VX7<>umt6њN)ύ,)aF[.{m݂+2F_-:"DH籒Gy7yW;/jTZ3-Ɇ[򾝨ᕗjxBRrSvzհd%.j\QxA;;6]Rh?c n
+AUIǬMO.;jD9T8+3j7iUu-6N-}Ȉb!1QmD35\*)Ycd[;&"uuuz>z2w?Vb'S^K2OU:+h61\ֶ!n c_6glUkeK*Y{L4ia0UJ
+fߗ%Dt[uk~;a &CcjHg= f-7ߎ^F |\qEvp,{X5D60Eܫis2R/N:O dn7f;OvŽB:7/oڏ5/ʷ+b+ejJ'xL8z(:4;$(8_vS+.gB^T~d*{μ=
+9^q bX!̢Ǽ-ٶ7plArc%YM!
+endobj
+955 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1545 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1546 0 R
+/BaseFont /UELEGW+CMTCSC10
+/FontDescriptor 953 0 R
+>> endobj
+953 0 obj <<
+/Ascent 472
+/CapHeight 611
+/Descent 0
+/FontName /UELEGW+CMTCSC10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [4 -233 973 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/t)
+/FontFile 954 0 R
+>> endobj
+1546 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 0 525 ]
+endobj
+1545 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+951 0 obj <<
+/Length1 959
+/Length2 2912
+/Length3 532
+/Length 3563
+/Filter /FlateDecode
+>>
+stream
+xUy<T}FB%d9ɾdIHI#Øa`![}MBLy !K(M<=zz?9u_9"etXGdaj0(
+e4v
+( 䛧',Fy8O)@lR [Db1h" Xr-4M>[ &us'A`E8練L@${,F!t0 *Fy|@9
+p81}BG`( ޒc?&B0r"r7CQ pp"yEH( @e,'ȝ
+$
+OF-)x}D[ObOt inP0;JrJ:#<Q-e- .{yz5$u|˚:l{R"7/5QӦumύ-V^o;r0,[WlhNgj)a/KK=F^(="i?hܷR -t3? E]3TljY窚K^*_67o.t 0rp5䨪%^=}}97oAl6H|>J>Rera`@,{h.dq9=zf^&KX)uqƼ>f~$rUXvDLIܹ'7yr o(qmuD~My5cz.mEFE'(38:>R/|5 G:2H҄'a _%#.Ӱɭl/VOco:R@hJyڤpQjF`0لDBmN:-Ȓ::/pP﹛\4|IT.@<}CJ݌; 7j9&TS֌tWtE+ܔz[-
+3ܓ|
+~y 5kyd5'Y(j&'\Z42CI(+LY3D/Lkć^R@RT)JH(
+sd A]aMع4ιI4ᮩ;>3M;5J
+SjcfRej"eo[p FerPvLxBI!E>uBQb7- 3'$x*0+B4r-;1v&Z;M]Xjj2 @kWQI mW- ;
+轜
+]P ?tٵѺ=Ihn2בg2"|'^<1k׳XJ›)ԬEM 4DF3sXh&(jeVjN|Ϻ+|k7"+KU4l"(.MLS e̬C {1RGu/j<2@;hѠұԽF[/?-ӑDY˚Mi-3724OR+јo3dL;qV$ͯݶ^&>ԙ H3''yU\5O$\u%Mj;Y&lazzI\MWL܇BXBd )1ѧ@7*7&uZ>9gzD.FN(
+_ZrV?YtVU=U}:ovi`BJ%ܓN:ky;,Z)V?O+\lo6Jq0"YVOMoVq&鮛yNn[k{' nr}U=O`o'*CYZYhʦ2g1<ۇi)[x,uԈI8ہDg[Z7(Z+ihHZYAx)Qֳ9[숦#x=Xv6d=ݡ'L֎p[1Lwvbʣ8IύN*oyHf(~ܒ|ힵgjSk@9Q2ǩjJfDe;#bß5C!1V's/J/pBdxu7
+9sԅE۵m29t.@A6hPMA3nxZ*a_ZP^ߒ)cTX;]R>E u7rc_
+nT)+ 7#$w ,zx7B南AW{xm6Р8)@K)
+_ݩx8/Xh<XDӓ-
+&_X78Ε
+endobj
+952 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1547 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1548 0 R
+/BaseFont /RUNVRA+CMSLTT10
+/FontDescriptor 950 0 R
+>> endobj
+950 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /RUNVRA+CMSLTT10
+/ItalicAngle -9.46
+/StemV 69
+/XHeight 431
+/FontBBox [-20 -233 617 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/s/t)
+/FontFile 951 0 R
+>> endobj
+1548 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 525 525 ]
+endobj
+1547 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t 117/.notdef]
+>> endobj
+948 0 obj <<
+/Length1 956
+/Length2 3035
+/Length3 532
+/Length 3684
+/Filter /FlateDecode
+>>
+stream
+xy<m4qsQCAddk,1cƐ5KEJ%dKH,Q( EBQ,eI؉zz}z>us}<u Zِ@(
+ S
+TT!H)#X:` \GC[Ga`Ӌ@*|7C_Fcɀ%2j$
+`H"w?H  * t
+
+iPFH@!ZQg$~/
+ lӿDR,_
+`t& Ǫ
+@4L=ߗ~?Ő(obL
+ۥ/Ef)ӯI4 ƠEPgS#Ayq<|TAgjqZZ.YɚJ2-w29f:&t:,󳡖
+;[lA5AkkouMEâg|NJp!cy7T#o _x- $Et
+6_ܟ~ q鍭,1Zb
+W?T)s |ckCdb`˕ UF?dւqFG9*F\Wz&{#g,L8"{¹C2[jڈ鬈EG|U&##Rnw]؊UY /+]5[6\Xjܵz|lr[[ӽkAEԸwf&n],>vC<h+$@Iy9v¶1?9K*MK:_Gu2aKgS{W&[:^_ 0.[">(d<n<)W'z`zphcQH:t\ 7٬X\Wi+ƯÙpTm*6av| ~L9*KYXT.&-K[ղsΕ..=)ӸU?ޕqO:kmE{ 냗3#4X'MV5%jLt@A둙i:OtP61/ވxs7sp7cOo=\P.o0@w#|[C*KK<sL5j|/j(mCj;?YG^[6lbn *wSlL,(3BizZH:]yr%E1灙`#1
+kj]iwg"fLB?^fЊqќ66c3jn|~"-mL =.Gl!quŨhebg6Kdld'fȂ3C{8nǝz.kNQBtmk9y~ zseV uտSCDYV1'
+9o5YMK> 1x&iCǾ)]c>t]<8!9X]^V҄~VU:TssTRyq r3,NVaC*-X8
+'?FD_'њy2ȹ_]u1MSv[9[G=T"t˜[LO9H[RϸxgKE"t}1^w1N_._fg4ZzexI8#m }c7P'Ra|obs7CbmQ-NTby
+1'D.*83JgQvSH3[gf[浵RE8/'g ?d?#V0#2znbf;~SVW_*zDzOR{n~6H,؏Xؼ{sIb$7w#\jT8#<]E^Z0A!/ !| A$oVR vks7k{vaRG5.x,v0I~
+_R3V?>('X⋥@Wendstream
+endobj
+949 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1549 0 R
+/FirstChar 40
+/LastChar 118
+/Widths 1550 0 R
+/BaseFont /DWMXQC+CMITT10
+/FontDescriptor 947 0 R
+>> endobj
+947 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /DWMXQC+CMITT10
+/ItalicAngle -14.04
+/StemV 69
+/XHeight 431
+/FontBBox [11 -233 669 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/t/v)
+/FontFile 948 0 R
+>> endobj
+1550 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 0 525 0 525 ]
+endobj
+1549 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef 118/v 119/.notdef]
+>> endobj
+945 0 obj <<
+/Length1 959
+/Length2 3138
+/Length3 532
+/Length 3790
+/Filter /FlateDecode
+>>
+stream
+xRy<ۖGBaɖec e )K0ƌllYYCvұmJ%(N9_yy뾾z떓U5A2PCFl
+[(u
+G ˄掕qt[x3nJ73m>y8$fǿM5(z.2Qi'1w)ck)7o:NutNo񤇟g#=bΙ+"#c:r,X,5ͨlS.ƻt%uቑSO׮x5n;ŝ(9^d }m))DlL(3U]I"yn&QK9nʁd~kBòކeNY
+"^Z2|ޮۼYuC=GiJ1VE~
+Ymߤ1;$UtAD8oj~m%^{%106c_ZRHv^>Kɗv@WM,
+tT( eo Ӿc=]W]Փ4{Y(4;~gӲAaOE".o/`='}2zi l(k)U.hU.pU]XEpZ؆}%nmT& 9\_pvr2nxyL\^اo?xv1R{KwѾxha0&ۄ-Mv@ ll;~g-}ijڙMp&ƴ%k-sVc9>6٘:4cľ,)?.s,Fk2w@sZYFeF*yκU@Y?8d.ެV>Xȫs>FλTA} 1.r6E1Pu7$:¶ю^'PIޙѥi96oy2t FS'"4.5NWT19_5Jp\gE7$ҟ(|O
+|pr.A[:5P
+Յu1+pooНlɬ$3{6Eˉ=CjD+2R$ؑuT#-?X,cYaBw Bhnvu:i۴)8AV`X{F73ĩV52379{d
+zgƐ,|28ښTÍ֐)w0hNF:%QeqҪ
+Yϩ\Hz-8eGW _ :-2><f}]֛wj}Mܮl\~&[d6USv^~Տ:IL9Qs>b0 ͺ.ɫB[-3EPaXحO3Vy,]? ?7.EB|ǘ\xeem֪21"44P<{㽧Hł
+w[ZA&^ na>uhlGnW)yj!afbѶp.`v֚ع޶n>Wr=DVVsM;TV<R*ezvsf[g]yCv^-rt;0{x˪tЅ_ޅe ĕy8(O:<x2Vwu/XZZ); > zχ.᪤4]YI7ph(I.-ykPr\R ⒄R"Az) w*C3 i6LrDv@mh]LgrB58]Rv
+"EO'\$5?8u&rzm&eFc`+bYЇUQe/L:_1+??adwOh ʼޓi1|:xց#Wk:j~9GȏU[ˈ
+WM6%{tӏǒٳ A)VV|l8KmݚsYsKG3tO[#
+bkFb4HBYΉnĦ]=z00eLQ#E
+%
+i
+K|fWj.2~$~ GcʞۃYL ^:ⴶ 5yqkȚUUb(dR VX͖{=Nnn#
+k RfZ:}3CH{ n+ڞ{y3F|oע > vvzTF+ZDٚoe3wx&p@ygs6# h>;8ھdGfh]({qP.$Q)T}"o`#*^H! L4%5m7nS9~\,ϒ8bEƢiηB–q' Z #x@,J&b)[endstream
+endobj
+946 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1551 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1552 0 R
+/BaseFont /GPOPRR+CMBXSL10
+/FontDescriptor 944 0 R
+>> endobj
+944 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /GPOPRR+CMBXSL10
+/ItalicAngle -9.46
+/StemV 120
+/XHeight 444
+/FontBBox [-75 -250 1278 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/g/h/i/n/o/p/r/t)
+/FontFile 945 0 R
+>> endobj
+1552 0 obj
+[447 447 0 0 0 0 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 639 0 0 0 0 0 0 0 0 0 0 0 0 0 559 0 511 0 0 0 575 639 319 0 0 0 0 639 575 639 0 474 0 447 ]
+endobj
+1551 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 103/g/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+942 0 obj <<
+/Length1 1068
+/Length2 4669
+/Length3 532
+/Length 5373
+/Filter /FlateDecode
+>>
+stream
+xg<\{ǣ"E [0zNtQĘ05z'z Q#FhK&"G 9yNrWsߵUHPEa8ADPQ23ք!arNNe,Ca*0RHIA
+l(49Oh; WGH7 -"0h'o
+3vA¿d/Ʒ ,!DwV(c(= "&X79~$<
+`1W(
+3 I+Me
+ deHnS&qSZs] [,$A9֊,uS$5r?wzr~&}^{l " j&8|kV~sJQ?Ѿ gkFc%kokՉ
+9궽ou&uuu7neI/{Hz:
+|Ym] sv7vFk7RiD> :>P!k0I+Qz]xɄIKof 3
+i%-;yq#+8"^5YFp "/!1%NU1RwLtU[d՟VeRȬ
+k<W^9)|];Solr6ⷚ8֝F;gPȝw~gꦔGn4OpTj*3_bآ׈#m$HX4;Xbn0LbiF{nY4fZKDH5b9ؑcmu
+99/o}Z&zXoKEI p {D-x9eEP]4/4|+c811|9NRDD7ܿ@Qmb9L6Ըޙ9[TvPyq<|.Y{Xئbl4o-S gqC}hqq$z(HwBPqvRWQÂ ?Ӝ]R(C9~fg=,i曧ZkE@.>LO@>DIJʼN򆋊p@kN|^)V岀+_ʙCn* `!Ӯ"J{bE(W0<zܦ]9M"p0Qh#a)/pzf,q+zl$'so{'lmz=:dދo127MZK]eAn~Ա`8&J`h.+bJ* =)hG^Dj,1u.R4)ɶöYvtt @9!KHodYYJJhlzKn!|Oqzsv%I84'̊ED!Bx̽-ǃuç-ZܒЀK))+
+}v~7zLg8TL&g{ew0ulpF o>4WkVja[q*GBm]֖3UzRX\6
+z\^rM/T;ya>˗(A/(6wQ3fX/kRKIqA<Ȗ^Xқ1R)Y*!]}ÝL\,ʟqK~g?u:[$hsd+D=X\rZ! hxl0eUhOyx{1fE1Ŧu׭B ldFyR ĵ,CJ&=؂ ȺB\J̪L OIxR0gA?:^.#&[Aw.,n<E?Ŗ;VZZ+L[žrџ]"` OOS|;&g'K6 y.Tcf]5ՒKjG? /Ab,rH e dO'|I{d͒NDZu=T"r|xOQ'ǩ\V>jz_j|U 7<L"(eno $5rUJ]w󗼽N} ]vJ,rلi죈%o&Vɛ^8A@Z=k$h ۦw
+͠s#TF^_EZtG n~?v,O*}: eGeޟʘW9\,*@LAP5YYݽυfz5EԽ g ^(=qL:We_ |emDw2M2bH#@]8'Cψ7 #9<֝?^G0f4xc1L^jWrHϑ}dqAvCDqK%U$>yt)qkHP.(BS\Kv&5BS:k@W!_m5ߊo: . A7vdVtuMb'³׉RCTڮ&dRG+|dVHM1p8ҡcYб;AYO2>H lXꔦdµ6toݛ0=~`*<ƫCp>M-.eT}X ~ѰiK)?g\͛ͳTGz{HgzgȻ`R{`d޹3 7ɣ^w+2:S2&D\-(VhRci,:Nd>M_|gjQ߲ e(: ʍlo֪kilT3ޙȾ t:4yI[)+ϬP|+%=*6LNhLl`1#QGĿKXe⊼YV y%ENCHa"KТJ-9ycebi1uY2I-(ҹ? &)C +@vkzٲviR&jGr5Lk?䆔+r'/՛/yYM5?6WW=EPY]]聸aULFEATϓD;
+`]M a=]xz5N>&҃BN⫰>w1;uILihuqyF:T+%b\eI:f*TAa[˿AyǜYNeVƄ'e(,q~ap-FUV#5i{_K{{nzҧct3k잁˕¸5nub܆ z2i_+Vy݋$pzG[|.#Q~33YQoʮۋѸ^Zf fjz/?!
+endobj
+943 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1553 0 R
+/FirstChar 13
+/LastChar 121
+/Widths 1554 0 R
+/BaseFont /NYBGEA+CMBXTI10
+/FontDescriptor 941 0 R
+>> endobj
+941 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /NYBGEA+CMBXTI10
+/ItalicAngle -14.04
+/StemV 107
+/XHeight 444
+/FontBBox [-29 -250 1274 754]
+/Flags 4
+/CharSet (/fl/parenleft/parenright/hyphen/period/S/a/b/c/e/f/h/i/n/o/p/r/s/t/u/y)
+/FontFile 942 0 R
+>> endobj
+1554 0 obj
+[704 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 473 473 0 0 0 414 356 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 650 0 0 0 0 0 0 0 0 0 0 0 0 0 591 532 532 0 532 400 0 591 356 0 0 0 0 650 591 591 0 502 487 385 621 0 0 0 562 ]
+endobj
+1553 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 13/fl 14/.notdef 40/parenleft/parenright 42/.notdef 45/hyphen/period 47/.notdef 83/S 84/.notdef 97/a/b/c 100/.notdef 101/e/f 103/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+939 0 obj <<
+/Length1 1061
+/Length2 3972
+/Length3 532
+/Length 4668
+/Filter /FlateDecode
+>>
+stream
+xy<mljo3ca;3a0F,!Ke n"#$L-Bx}z>us}8<3I#Hm,/*0 (JB@8h:J
+P
+
+ W4z b#3υ bY}׬?@oV\)蕈nNAN^.-t׆<*U#?ܜ,VĮezǮ˨eK-=دIX'~ 9kE=:RH jјm;*
+ *Q|W˝+J3 k<>Exگs+鄏dl#QagZZ %4 óٺY_?
+ݿX5Ra@be5?\M:PϽrgeI>R7KDUeAsEv(kh q`,75dpR%}sK,| ƋUe>-)bۗBl
+a'va چL_ֶa{Z͢ ֻWsmGpF0|=uMdR0K|L ˏ:BɹXY?DOuSj[3ܓ0[f">=Aޢ:(=pK |-l̖6'g3qDo%pWt#O@:E܉ .ۧvÆα ڟL &Ojpt_a$MڷlT%,`4Tӵ'|Wngwn[/u;@oP},Kh_Zv[BArrLt{
+6iU9HDƊ].eIJybm$o]
+endobj
+940 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1555 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 1556 0 R
+/BaseFont /OJIHDU+CMCSC10
+/FontDescriptor 938 0 R
+>> endobj
+938 0 obj <<
+/Ascent 514
+/CapHeight 683
+/Descent 0
+/FontName /OJIHDU+CMCSC10
+/ItalicAngle 0
+/StemV 72
+/XHeight 431
+/FontBBox [14 -250 1077 750]
+/Flags 4
+/CharSet (/parenleft/parenright/hyphen/period/S/a/b/c/d/f/h/i/l/n/o/p/r/s/t/u/y)
+/FontFile 939 0 R
+>> endobj
+1556 0 obj
+[436 436 0 0 0 378 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 613 580 591 624 0 536 0 613 302 0 0 513 0 613 636 558 0 602 458 591 613 0 0 0 613 ]
+endobj
+1555 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 45/hyphen/period 47/.notdef 83/S 84/.notdef 97/a/b/c/d 101/.notdef 102/f 103/.notdef 104/h/i 106/.notdef 108/l 109/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+930 0 obj <<
+/Length1 768
+/Length2 1151
+/Length3 532
+/Length 1717
+/Filter /FlateDecode
+>>
+stream
+xRkTSWUJ J <!&BM % I.$H&DV(AZ UDʣ
+b*.Q59߾'.!D T*'RIT_pBaKX T
+n򑆽w~.>-n"
+!0lոal/$cq,m)4r~-[hDng> |}~c?0jCUdz\5ްzF 6r=]4zwTLx)1վ0rgs6EWU[N4Z}dS3gB^@{)gu¬tw?AC=Rj|S:]ٲ 桿kB+?D>inW OY\oN|vpIKk]5/ zOTo>|y{OAj#647mm/dnJ]޷/t~lRy9bsͮvGK}{Ͽq%ejg* ~~tG'V,#ιeU!51g2cO8L_Ꞗ[$$$]fQ xݳ4MhNӍB۷×=\E
+^+e7kPsk%7u>ev3fs>s\{HگY4hz7}$ڞQ)ا+]^Vo*l!ڦEZPsq<7@b^Le\>#d<f
+]ԇ>?b{6жMխ)xtd2e.
+"'Sڙ}@a.q~ȮQ~+ҝ5{m_~/bdendstream
+endobj
+931 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1557 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1558 0 R
+/BaseFont /COMVDE+CMMI8
+/FontDescriptor 929 0 R
+>> endobj
+929 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /COMVDE+CMMI8
+/ItalicAngle -14.04
+/StemV 78
+/XHeight 431
+/FontBBox [-24 -250 1110 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 930 0 R
+>> endobj
+1558 0 obj
+[826 0 826 ]
+endobj
+1557 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+900 0 obj <<
+/Length1 802
+/Length2 1817
+/Length3 532
+/Length 2399
+/Filter /FlateDecode
+>>
+stream
+xy<T{ǕfPc`ՠ,1safXTSbhY(rTBL&di$J喞IW<=9;zZH;2:B Zn>.
+16Yv
+0C"
+CC@1gsh͝Hj5t*-DGoln M"Ҩ$;H,}Sq ك"DZXI-r<:}Ş`G
+ 7AR4 2X?8:*@L Sù%n)*BD啤LɳF?^ͬ5fV
+^\3j:znotړUw"Ο^>I ^zܝ&E/#&)uu k^:qĈ!\΋Xй٠h6 *EO[ Pmx/gy蜛dorAY ?w^Og&Qg8(=i2$ʿNBVzԴ/˞Uwim{+-rvXA@MKQQR >,G 4 !zϢj {$۞Ĭr-
+v<X nBn=Uo̖PV;J`A`fܐ]8p9$p&-ɻ0Yp־VN}y!+cjJ(-6~)s(M׶Vг'Lw- :T-pkw)6gz6T{uQpdGh[HGqn m.1w!>T;R#Ǒv" !t֑9K59(lUD<;@”q{)Uq
+qu.&a,wakRgLx9 s`٣=!
+;C|~i~|2bHkY=V
+[>&[D C^(El͍,w?G4"\3s0eëfw35fɌeAv=|GOϕelDO?h4_L67+TzU[i
+0a=Sx s5yƨ&ro?a@D& EWendstream
+endobj
+901 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1559 0 R
+/FirstChar 102
+/LastChar 116
+/Widths 1560 0 R
+/BaseFont /CQAKUF+CMTI8
+/FontDescriptor 899 0 R
+>> endobj
+899 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /CQAKUF+CMTI8
+/ItalicAngle -14.04
+/StemV 73
+/XHeight 431
+/FontBBox [-35 -250 1190 750]
+/Flags 4
+/CharSet (/f/i/n/o/t)
+/FontFile 900 0 R
+>> endobj
+1560 0 obj
+[329 0 0 329 0 0 0 0 603 549 0 0 0 0 357 ]
+endobj
+1559 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 102/f 103/.notdef 105/i 106/.notdef 110/n/o 112/.notdef 116/t 117/.notdef]
+>> endobj
+891 0 obj <<
+/Length1 1248
+/Length2 5744
+/Length3 532
+/Length 6515
+/Filter /FlateDecode
+>>
+stream
+xe\TtF`hv`aKA@@@%$$e
+Tt
+tQ&`
+!@L!?qy Ɔ1? 7UVFx I0ż @$߄H́@o|bG(擁@!`)Nأ戊@J|~̲MwL [FM ԏ/wKLJ~tYƄ{m+JXNn-f9ы:҅L;O*.}X!}Nb׮1XL>~Q)dB^0t#ϔŝ̔ s#[T3kիW S>O&|O ELQ.,^<Og^
+69yp^'p% ~:s*(ty>.Se 0c,iyB&)x4:p.b[M*مDt [؜-F~|BӐ*T^Pջ&d9To~*OnrTH< (IvH*+svE63mBN(Ge!||OM?%8%JZ
+vx,2̔#uD`]OXcECjPEd4V(~<#}OfE"wb@}ugqTCwEVe䃶3O/?|S*zIgųW8r..E*''hoPw 67F\U:Ŕ2@=Jn2q^`UôOngY:L}R
+Bdsk
+.+2ɫ-Uri˺J8G=ʗ g){t½G9T(hfek)H}[_.>w;ec}qsUE:Juya{l@CrLНY1v| lEpUPB4eu}~ݍ#kbmta`<v sKȟ*KY:EX60_k%>\
+wk$ ƱyI蜵N!> I O"AY!+Ty'M[lo}R37T*oS,p`M~cG/4w\rx`*<[r?#@bgu0壗Vek2OͣI13~$^won2J5KL8.<J/+eccߠ!@2H~\3/*-'T(>H:y}#.%̻/gjVN-dO]_ *b>E`.l1axEb'Y}…n#(on@Hqfp&T B jr8Fw%>0H) Eȼ௲^QN|ƿ*a]s= P|$?P8P{)>LR} Þ %^->Z?<R,fKg`:X_UX79ڕXs!mS/ak,}lJFBy[1I?FeFeLv|)썢.
+w "u:3ǰ.BKn[Tp^~N[qL|)k}/'0;uKEaz5E"A2β.+I#JI1TɞI_c' `IA|bXe?."U[$E)Q1r4&QzT@/Vcw%ȢgZi4|ԏׇ;5å6 gmLSToNg>c-. y5A|NPv99SYR\6028!<8N ƮnC'[_"!\[udI xրZj
+ eyHgY+䑽hߣR2[˭,>.{^:ޟ6
+:a;i/)H5NWe9og³hh,s%g T};e+v;}囤/,?Q^BhЦ⃘4N\/bl/nO֌7b*
+Zs>o~$|B6さbB<7E+M8"LV ͼ UDIsGDrtL]cq
+D=$C8F6C*%w.(\6c\$;Z7w/Re2jvQv);C͚,
+_?.^W6ҴtTc(3y+vZZH3>pHCظa
+>
+6?{>k30
+<՛(Z[~vBN$W'?J*_nN7<Jm`#`XhNNΛğfŰ$_GcΟ1Cz~ ~5HCK,vw2~ua :L$:U,N^\7O_Gۖ`׫jWĩ(OzbJ2
+˜X? ;IB=0ޤneOBNp62P~|?} PKŽE0GTd5ٳ9+)Wg4&Z)L-r:*-r̳jK5vfLɪۓd$gEu$f&g,n_< 2o%
+f7FZC<[H|L
+~OTd#u!/OXҐ{
+BA[!k }Πl1e~nPqt{G /hާŪ `N"<ng6)9{T7YEGiYvKg'y N۩6`Z> jqv+[(cNB\yFEO
+/jv+{'4=*>]~iH;Ti![x͈~;e JdIe|5u=w6G)+MV:#t'{9V ovUbZ%=; L|<9r9 Ej5b zLO_Kwq&ٙm*5U^8}s\ BzW^b3򋉜p*5½<h
+Ugz
+e%x$2C*E O$
+endobj
+892 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1561 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1562 0 R
+/BaseFont /KLUBLW+CMSSBX10
+/FontDescriptor 890 0 R
+>> endobj
+890 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /KLUBLW+CMSSBX10
+/ItalicAngle 0
+/StemV 136
+/XHeight 458
+/FontBBox [-71 -250 1099 780]
+/Flags 4
+/CharSet (/fi/parenleft/parenright/period/two/C/E/F/H/I/K/R/S/a/b/c/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 891 0 R
+>> endobj
+1562 0 obj
+[586 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 428 428 0 0 0 0 306 0 0 0 550 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 703 0 642 611 0 794 331 0 764 0 0 0 0 0 0 703 611 0 0 0 0 0 0 0 0 0 0 0 0 0 525 561 489 0 511 336 550 561 256 0 0 256 867 561 550 561 0 372 422 404 561 500 744 500 500 ]
+endobj
+1561 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 50/two 51/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 75/K 76/.notdef 82/R/S 84/.notdef 97/a/b/c 100/.notdef 101/e/f/g/h/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+887 0 obj <<
+/Length1 816
+/Length2 1119
+/Length3 532
+/Length 1690
+/Filter /FlateDecode
+>>
+stream
+xSU uLOJu+53Rs54P0300RUu.JM,sI,IR04RO.Q02V022220*
+J-,+2T*S00ER_PYQ 2\17(391O7$#5h]rbBp~rfjIcNBH_BPjqjQYjBJ&Iy\ {+CSJ `ReE )h}
+b̊Ԕ̒ ĜTxj^
+`[ |d@bf^IHeXj0JQfB(p
+ƊE5/9?%3/]L!( ̀<SjC̼
+
+KZ
+JKj@iȟ\ 盀&`>+u M EQ\ZTWN@2!ZuZ~rռIK&j;'V5m3^lw[fFׇ%
+8s񦅖-7el#d66; jYb)By˭W\j~ xڃol=k'/fs(AҵuZ
+y K/i^~-bf
+f3v 92 %S'=}}%?wݻ5XT-w\%lud/U <|Q[an_t7M<a[f(sr͜=etuJbX..|>,%k$9 w=P݋uyVzנ޷,wvfK_wf_폾Yhj@cd{^G%ڥbt:9ɛ&8,?ot;mή
+^wM'dd3z~溰!"ijn/{ۛ`şg6qͻ4ɯzW7۸1
+ۭk7cV ~S9q@u)b/<U:k7cNiNq֔\B:<.<.M7c_8&zT8E1՘{]\eM)媿[ְY^_}}5u\ylf6;qn}-`#O (\ sRJs
+endobj
+888 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1563 0 R
+/FirstChar 1
+/LastChar 64
+/Widths 1564 0 R
+/BaseFont /WCQIQK+LINE10
+/FontDescriptor 886 0 R
+>> endobj
+886 0 obj <<
+/Ascent 167
+/CapHeight 500
+/Descent 0
+/FontName /WCQIQK+LINE10
+/ItalicAngle 0
+/StemV 40
+/XHeight 0
+/FontBBox [-150 -150 1020 1020]
+/Flags 4
+/CharSet (/a1/a63/a64)
+/FontFile 887 0 R
+>> endobj
+1564 0 obj
+[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 ]
+endobj
+1563 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 1/a1 2/.notdef 63/a63/a64 65/.notdef]
+>> endobj
+884 0 obj <<
+/Length1 953
+/Length2 1777
+/Length3 532
+/Length 2393
+/Filter /FlateDecode
+>>
+stream
+xRy8{,B-ٷ14 6,!ce̢1RBmvrFd IaYO ]u={߿yD
+ `2C[6800 < $!&Ìq
+4>/cO<Sr*rE2Cޖ)˴*rz~M
+W* KHEs<L>S: ]myȹ'kd3S!RUG0A R-~M9XJm-\FTqkL^ndvT7}KX /ZQ|lJ<Z>eg#Z絼+Џ*6 70<9fkݘ@l)Bb /A]1l֘6t\#\fV(ۜ~9vj5Sj4v/R8&YOF]ğfmvų3w+Cuhp$(ӷ!6ѣ 3h5G"!{wC_&Mbs1W=]y˓4]HHr5h]j<F쫝оB[%*GqdVKz|8Wyא(-UR8'}P=$V
+L>ZMIr$BY[ 7ۏO!H~iNQOG"~ΪڑiLHP¥Vdz_kWw+m&isJqɇee˭G[KA6LKHV(QtC33Oum60m^%\#ڍQ3^6
+^¬}HE.Gxq7/x"w t*$ݢYn,c;Sd gǶKM"\WZ~B[{3}>[ f~^ kOm E(Gp/r39밅ՈTR'`$AaՃ_ϔ:ludB%_'Wh B}9 g'ar? {yEWĒ*81QePɠ26aL%S3AR' _zSgV]?Co er<_Tgn1m; ЖjԴּt2ݴMljNplZ]upN~:nsƌr4.2M>ħĺEK&sBW#ߦK#aSF>sHui_'r:;Λ 2'^/MMr9wGwyH*d_K r9wAbӐkL_ׇ-+>=Y6HZ¼U[ƛn;vmвq%7_v23cm2TrF ě`Cw%Z';^\J ]yh;'wM;rY4b3$/o>endstream
+endobj
+885 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1565 0 R
+/FirstChar 24
+/LastChar 119
+/Widths 1566 0 R
+/BaseFont /RYWPVT+LCIRCLE10
+/FontDescriptor 883 0 R
+>> endobj
+883 0 obj <<
+/Ascent 0
+/CapHeight 0
+/Descent 0
+/FontName /RYWPVT+LCIRCLE10
+/ItalicAngle 0
+/StemV 40
+/XHeight 0
+/FontBBox [-2000 -2000 2040 2040]
+/Flags 4
+/CharSet (/a24/a25/a26/a27/a100/a105/a110/a113/a114/a119)
+/FontFile 884 0 R
+>> endobj
+1566 0 obj
+[2800 2800 2800 2800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 1000 0 0 0 0 1500 0 0 200 300 0 0 0 0 800 ]
+endobj
+1565 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 24/a24/a25/a26/a27 28/.notdef 100/a100 101/.notdef 105/a105 106/.notdef 110/a110 111/.notdef 113/a113/a114 115/.notdef 119/a119 120/.notdef]
+>> endobj
+872 0 obj <<
+/Length1 798
+/Length2 1006
+/Length3 532
+/Length 1578
+/Filter /FlateDecode
+>>
+stream
+xRiTW[#"
+,I&cZ!B b"0H0EZwQQP+nE฀A(*#)?{}w{`Oɸ < H
+VZKr3Ebੂ4$@TF@FJ%
+&c_'o
+x}IF%[E?-2v~~_Ec#}w[.ەLs^3=7L9ʶ9N74MZlFʉ:b43-#7bl! Za{mh{$6c3ѿlѺ5һ ME3X,nJUl!ٷGNX퇚5roNy׋N m_ްxi!ϹCw4g
+#[z'H>^ x8'gy\Yvvp߇N{ ",ћ4A V4g yoSmNM__S./3j:q7ꂢv.tRm㹷-Ȭw .>Z@f iX4~"(z/ie,Ϧ=mP|磼{
+bv9Ckw[`X6M`Ɍ[i^cs!uW87П9+eƢcR8:(e3]{L'O%&ٻ oq@ZjsJZҞһW/ftL1I2(ixDO7B b&CYl?^X zi/.<9ֽXVǹ]skG7ȣr9 -MU\u|bD9% ;S$|E[buSG6}U{_}Ogjn2_ -JUEWN>;D[eZ AS<K_lOvü#7QND#_>?(pczokWX62nԮ|Jаsgn\uĺN}EMUn]KcS~X;v|=⽟I[k*x2qif+,>ܧ{s?Ӓ;9ܦӺoȶZ:/8Ѭ1{B#V.]lX o0Jq./\endstream
+endobj
+873 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1567 0 R
+/FirstChar 102
+/LastChar 110
+/Widths 1568 0 R
+/BaseFont /NDLBAZ+CMSY8
+/FontDescriptor 871 0 R
+>> endobj
+871 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /NDLBAZ+CMSY8
+/ItalicAngle -14.035
+/StemV 89
+/XHeight 431
+/FontBBox [-30 -955 1185 779]
+/Flags 4
+/CharSet (/braceleft/braceright/backslash)
+/FontFile 872 0 R
+>> endobj
+1568 0 obj
+[531 531 0 0 0 0 0 0 531 ]
+endobj
+1567 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 102/braceleft/braceright 104/.notdef 110/backslash 111/.notdef]
+>> endobj
+853 0 obj <<
+/Length1 872
+/Length2 1334
+/Length3 532
+/Length 1942
+/Filter /FlateDecode
+>>
+stream
+xT}8Ty'&RI13cD>w"[8sff!R,QK*#uъBT+\}}{y~}=Ϲ7ґ'GaImO@0)43@*\ tc4dRD|Z"Ga>0$bE)8
+C "<
+N<&@8"@1u:,̋L"D
+)BEDJᓨb]"#\sMOo4$B?bQt GCpl4\փ( 3)4k@%nhPƛE1 TG\g:q!#H@"_jŌp4lQh4B8vι<
+++ 8)S)P
+ kװe}ViK1|]|u#<Ֆ/ =!v-HdT/إr;&ڑeRLVJމoF
+E:D}䥚){ֻNr%~J%qo0srʛ'm;hcG˓Uߥ$Ӫ=زkuޖ^ۀ Qv™za~q0`0rfCG.zs`4|fr=}y& 8dPuFY<8#j[V[Ցɀ]2 gYdq$*fT–1
+=n r;$\m;Hiq;wU6רq*џZi2:ciK|x#S7Rwť/}j|%}A>q&" S :{uf'-U1Ud]ӌWy1lF$U@ޘC@n1.Vaouk apѹ0ևx&kuԋ:j׳D?mߣ"fj&U|H<quH݆[yX}x{ȅ67]
+G/ \uxDש^0jC?ǜwOP3{";AӃ'wBdHDfiZRϪӹlyp۟.3͒WtD{w&SQwxŎ5՝IkJGC5Zm\߯+2jnl@(#Wu+
+x߇]VZ QKr.-MQ+掸&vp"(/?7NZה2Cmɧd^Aã)G"?$ :;6n檾{%IwQ:Ϳo߄9
+6.s]V); w?4XIާfiXM? lr6I=tSrbb W$OI)-9{n*#DF{ id[Ik53S+s}FZk ɜHIˊnb2*p~jZ!w1y ޢz#/fC[ɋhr?߬-[ */1Sbo18S%J(xj? I RkiK؞ 8}0eU[5Tm<It4>OB £H0Q >endstream
+endobj
+854 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1569 0 R
+/FirstChar 0
+/LastChar 110
+/Widths 1570 0 R
+/BaseFont /AQGDTH+CMSY9
+/FontDescriptor 852 0 R
+>> endobj
+852 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /AQGDTH+CMSY9
+/ItalicAngle -14.035
+/StemV 87
+/XHeight 431
+/FontBBox [-30 -958 1146 777]
+/Flags 4
+/CharSet (/minus/braceleft/braceright/angbracketleft/angbracketright/backslash)
+/FontFile 853 0 R
+>> endobj
+1570 0 obj
+[799 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 514 400 400 0 0 0 0 514 ]
+endobj
+1569 0 obj <<
+/Type /Encoding
+/Differences [ 0 /minus 1/.notdef 102/braceleft/braceright/angbracketleft/angbracketright 106/.notdef 110/backslash 111/.notdef]
+>> endobj
+835 0 obj <<
+/Length1 757
+/Length2 1014
+/Length3 532
+/Length 1568
+/Filter /FlateDecode
+>>
+stream
+xiTWJԸX{QBE<@27a`2E zTEA$Zq)iQVBVCSg{ٖ \Gp8 xv\.$B KBAWo=ϕx.L6$$*~+ J%8PPA{H%&(vJ*! ;&TJ(Gq&qIJJV͈819Q I Q Db$"!$'H⃥a#}%P;. 9q>6P7H JIcL)<đ t|Q8(t%(N ~Լ5@NG (jnp);9 IJLѕHG
+@̱ ^dҀ ʣ81i(c{/ÃP6wp.NiJH3TP:GUPʼ:dբL=Yu5#3m7Ǝ\&ZNޕ17+[(7O rMbVmó<k!z_ݖ0;ܙ[NKt%;~ +a-Fڈ|3_[aݩKYy%7<Zڑ=эUqW<"'+?ٵS32[nXk9ݓê98tonaxϷeȵoߴ;|K4J.=E܆va[uAxJyh^] Зjx#tӏ_^zе5_EqX?QyIiu5f~Fww66En>2L˅~1U~.z /P:;Uxo_v:л~vLw8<wŋN/iիw ʼaLvvVtλiY`qPYkwuuoP_0<Ns"` ϟ^S,g|^9o Ԡ2Fg l<:ֹBFnzmZjuN<!OǹUF_^:=\+Yڻ*4o<<M(gDg<\lZrFjFl bYrɽ:3jd{<??Y?G6jV>I{,K.f{ fE׺_2=SgfƙSQLtZ8wDD^ P8ۧD!Sr*~LAg?{!}+Gg\ծ Q(K;#s~_k_ʫO~*ߴjAcuC˞`W|lkvNٽ}spefďM41$ؘUbXzŋ9lJn6;Bٖ≏' ǵV|ݑXT ײKQBgv,M׏ Fiϊ:^'loR[njNY{cp?a Šg CVendstream
+endobj
+836 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1571 0 R
+/FirstChar 110
+/LastChar 110
+/Widths 1572 0 R
+/BaseFont /XNIZQQ+CMBSY10
+/FontDescriptor 834 0 R
+>> endobj
+834 0 obj <<
+/Ascent 750
+/CapHeight 686
+/Descent -194
+/FontName /XNIZQQ+CMBSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 444
+/FontBBox [-27 -940 1332 825]
+/Flags 4
+/CharSet (/backslash)
+/FontFile 835 0 R
+>> endobj
+1572 0 obj
+[575 ]
+endobj
+1571 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 110/backslash 111/.notdef]
+>> endobj
+831 0 obj <<
+/Length1 791
+/Length2 1369
+/Length3 532
+/Length 1948
+/Filter /FlateDecode
+>>
+stream
+xR{<Tn]F7D !3hf! (YkX̬5eqf(.K7QCTRH;E[:E)JMlPT^;?k}}A"_x
+AO&GXjiOxC=ys+]~[{󧗫S9^u6S
+śǮ.nflΟ:#Bb5=1璌fq7w
+-\׹,.bߧ{޿8Ju{~kl!I{U/r˞CyI^yT^อk;Fud] rJfл(&l%CDdz菍nKRg$7oHϠ~1ko/J00\{r;6;h`V[5_;8JClrmߵ[g&ְ8VcZ+4+S"5ś>dARZ 2`0~=-2vp TXT^:@Њ7]~2VI(~
+펚.UOdrXzanPgk^Yy0 뿛z$mSeua% ꆎw۫K΅Vj֔r|,#1<b]v=Zh֌d}oAݢmT!ɢ.0 ?Vi­hۘKV¿/NC>9ϷsڶU*OH\aDw]hEކS۞p=8b{tl)eŮ6ǠsW6 AZY=c}Ħ } 6E-i3N:IԬޚM~hD7Z?16 >Uy,fI_q9޹&;z|Y'nXWGd;z6g$N;vln˯9tny\A(=>EDBV]UCޮz橄qOv G&1`aԝ1n dZU8?O N݄A7zݬ@O#|cau6'mBtzn]^QU^sf˾\Hvd\9d\7 ([&/)pVݏ`sVHgL[V mb$2DL\L~endstream
+endobj
+832 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1573 0 R
+/FirstChar 34
+/LastChar 62
+/Widths 1574 0 R
+/BaseFont /PJKUBJ+CMMI10
+/FontDescriptor 830 0 R
+>> endobj
+830 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /PJKUBJ+CMMI10
+/ItalicAngle -14.04
+/StemV 72
+/XHeight 431
+/FontBBox [-32 -250 1048 750]
+/Flags 4
+/CharSet (/epsilon/less/greater)
+/FontFile 831 0 R
+>> endobj
+1574 0 obj
+[466 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 0 778 ]
+endobj
+1573 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 34/epsilon 35/.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+816 0 obj <<
+/Length1 793
+/Length2 1576
+/Length3 532
+/Length 2149
+/Filter /FlateDecode
+>>
+stream
+xRk<T&&e"}fd].#2Vff0ȥ\'RFTRRcf*1] cl?Z_?y_#}X
+ m<|}m%
+adc$3\I@١,
+X
+0p03QC81d AD&1
+1yCF0 lZpZ -3L
+Xc
+%<˒=fzM!!YvCGne
+/|4JV/{u 8^8vG\m;ԧ/wkOxӉ6vVߨVb+!`rY՘)U>3w@> '{[{ƕY z(~\iH_-$w6Aqʌ1>)cVY{)߈6hpsA1NC[ձKo5oD/B'qf׉
+q'Z$6aD=sKNB|lP‹_ C8g׍H 5yfByتlUu3?ɿ?-zVՀ ty4sN t0D
+=LK}RTE|il7\Bgt1OU`b,?a`׺F UJPCܯtUlĶװ*"tZD̠9%Mu{cXPӧ^02N$]7i=p5um\hvb)ICLL/Uj赴|dtOsyUbbێ MvC~Fmq0TbCuB懍ۺ^TO6dnk(A F׽[7'* ?i
+ci~f-E}!;]Rt7=I/WqPt\,sC%Q*gb+%7QZDK?t t,I}f긫x/
+ۓ]KZ-xc"ɠ;'VXYqy&kPC# 9":QGl \>jCq̧n9a0$ 7_ܕ4V_Qx'{;;L(_}4๥D}Zv{hU(<{IJ;$_gՁ }7ćA۽O DD[F[2J .c:kkp@0һhYX2wvm7#1XkGCz7TGT:[I:鎠Bk¦RMJhsrs҉ [-yneU<OW, ;n(Sc=օW˹5W'j-gFC8}+xjRY~3HnVʫ Mڗaٗ[4/ qFsx V4I|f 繵m!zۧyVJNזEk* Y<+#pI;O<*s1ʖ>a252^< )x>R'm5أuO3ثeG]YMlZzzmfnL]ĠҝB,ʹr:{ ӣZM%+u֧}˺\/+]<ܰQkɅޚ&iwuONOҋ1<S:/CqFrhϕ6
+"L3$e/67TQ
+endobj
+817 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1575 0 R
+/FirstChar 97
+/LastChar 116
+/Widths 1576 0 R
+/BaseFont /QJGUYL+CMTT8
+/FontDescriptor 815 0 R
+>> endobj
+815 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /QJGUYL+CMTT8
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/FontBBox [-5 -232 545 699]
+/Flags 4
+/CharSet (/a/f/l/o/t)
+/FontFile 816 0 R
+>> endobj
+1576 0 obj
+[531 0 0 0 0 531 0 0 0 0 0 531 0 0 531 0 0 0 0 531 ]
+endobj
+1575 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 97/a 98/.notdef 102/f 103/.notdef 108/l 109/.notdef 111/o 112/.notdef 116/t 117/.notdef]
+>> endobj
+802 0 obj <<
+/Length1 1129
+/Length2 4726
+/Length3 532
+/Length 5460
+/Filter /FlateDecode
+>>
+stream
+xSg8\m%Zޢ% ѣAK-0 c0j-ѢD%z{#.Q}/:^뾟lN6})T
+3a
+p(Po
+CC!:0
+ wC 4m_uUo5ͿB:`ܿ07 CMAD'J9`A\F"
+9P8
+37 ~X;>7u(E"~R@!^rJl?2DBVoBK\
+9c c1:WqI#C
+mv/_$k l@l? VBE]&EES@D( (VH()..HP؝7a7
+EC-K@W>Y|5/*?4Lą;-T&Ӑ1;?Psz8~j Y}Ց8`z8B_~QvGέL{pZL\ZR%$ UC*D(CB(b|lC5w>ͺ{az. ޶Q"r eqI-RO1
+C5v)tkر9C[dAel8X|\eJ!r^Y[FWmE J݋cSVlkha+<%{ +Tr;a
+ZN a
+0mWzxS5Fi ŏe(җmG@bOH enH/^=)"u`mbP[Qp |僱Z[#$y6*Fb½0 .F A8]3n.+^t*p?gO2T9pŕFP84`Q#۳"9o6èMo*[*-tbr=R+@Χt_-#vUGLB-\tdۅ~oο3D=ra<Q+nxjNz,U.յ&Xp'`8+hQݿa/9o;i+Ə`Wv'=4V8E4ρ^[_8kTxuX-b<АdUL!])=&?69LDOgx-|s8$, D 2VG9zqfEIFiXL.h^Ne U.:+
+,%lE
+\D9[-4ɜΤbÇ uc,I1nd|Yiy_֗a2$9,\1*T`k9N3FCŌԷδ5bFOxl͍zMeuVEJn^աFL~g;Ki{2*܃RSǩID cSIp3;'NC& 9 4,D2D`=YlQ_ FŜN=HQ_cS`|q7{lzy
+v<IiY@_#br`v+p+_bP
+Z[:dE}X.^h{Чf[hAQZ9&bPk&MiK~n
+o_iwu 򙈵[2
+ %Nyq@]7L{Wlz+݀l
+o1t][!{/3>[;~5ɷwۧ-3IUP1mbznšQۧ]O4y+Ѷ%ӝH:0c|uoF./fLst"m!Y$]hW9²'Hf)F+飞=;jU^
+/q2\l72Efvױ98(׸j%^+,kpPIꁌ$ʡRg#7PXNYcMB ǗVBZ s5^hv(Z1 nFݦzeZ;? Ɠ= 'T5x_=;1o[QകmE*~j
+÷{`G̓?f:fb)jڡN=d!@׊yȓ
+g!LjcӛbfuA+lʩk_KdC+="|ZC[zdVE0Eswj$oz4r AE}-L#96uXی /Elc"QdR}jҊ
+O+ڤj&,(òoe99OGʢs)_=_`͟3X+!#Ű`Z~P?l"l`~K{U oC餏tV{u!'Yzj'Hob#ֹ^\=\D
+}!c;A@Θ੮x<3`Rt@b,T7%a@a~ʝZoRk[3Z"'ޟDgod꾱^2K@8rRP/oӛG} ?U1̺8߱9bG+@-%H ^Y]YdzxMܕZ# &Ӭ..7Kh Fكg&{?o^uޤLbcdXXiig>Jcd~R;P#6Zn~-"o_rԪQ%55!gISX{ _5,VxWeuUVC(J#M9mA5@m*]%IJTm={Qaw\좦n|ehBXtb,ʾ۝mN|ޞVK#-i^JixS P,.dgq6$9djzһ 8LrC
+COtIwaZ|ŤrMp*Pӟ!S"V]6}{G;;
+l.Δ"zcG'%19Q`Kv]bF=9X5FWKŭ#s}U6:{ ~xxB])?4o^KЃhܖ(+)JBI^1ik
+  ~vP@KPx_҆փX$miu]gRRaœF2s3TII_8qM^@E#fe*MˈMS]aړ3yΒwjiIO{)Sf/7KyeH8 ]{0ihe0~KC`P d(1yBGޣICqzMW{ͫ'
+>Ӫ&a9e~B@-0
+EJϯS\$(UyprK'",n/ƕ5uh\p!8訍
+w,SG)s^P  CHendstream
+endobj
+803 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1577 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1578 0 R
+/BaseFont /NBPKKG+CMR7
+/FontDescriptor 801 0 R
+>> endobj
+801 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /NBPKKG+CMR7
+/ItalicAngle 0
+/StemV 79
+/XHeight 431
+/FontBBox [-27 -250 1122 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/zero/one/two/three/four/five/six/seven/eight/nine/A/S/a/c/f/h/i/n/o/p/r/t)
+/FontFile 802 0 R
+>> endobj
+1578 0 obj
+[446 446 0 0 0 0 323 0 569 569 569 569 569 569 569 569 569 569 0 0 0 0 0 0 0 843 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 631 0 0 0 0 0 0 0 0 0 0 0 0 0 569 0 508 0 0 354 0 631 323 0 0 0 0 631 569 631 0 446 0 446 ]
+endobj
+1577 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A 66/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 102/f 103/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+798 0 obj <<
+/Length1 1443
+/Length2 10599
+/Length3 532
+/Length 11468
+/Filter /FlateDecode
+>>
+stream
+xUTͶӸK7\]. ,8w'Xp+׾<̚oͧfUh
+e513Gs)G7 + . d
+$sLD
+"֮uؽ #?Ӌɪ1\(*Ts#'j|PچG=Cޱt7,9eNkcuKqŇ穈b' RXvIEH>G=Ez{&Ap3@q9d-U,"s2~(MRV'jڐ3aL5UA[ :Y`Ƌ +J
+OrFyG{<=03n9}=5\ϩV:⯳[@ rm7)*? 餃շIT!'fTܼ #X~bTȐRT_C
+/
+fƴ-FFTsSmJZ,۳z`sxK0(|R/n]QN(.ݴ.`+~CiM6 gܭ ~}׈T.+bi Avy̧L'9kUV%ͱhN<]Ұo_H#,HW1,c. IyKs)8_9'E&B~/GS!XFGnXxG6{Sh2oC .EFT[~om{#
+ѣN3TW>dAMNͤtyPV7~dApR R%Q7LALᏣSu{͸ ?c=V fc%CNd/[-I5V"
+w+GL\?*"vUt! ;c/Gwቲ~c\ 1+2(-Nh9?!~ ic`LߎV&Ii+z:|8]Z:Y=ǵp^ccc1FoqUJ?)Oh.3Z6F& 8n+\$6C>ZƽD]{=1EuϐkT[e}DypA┽ۍR{#ƙPVJ9fYT t
+0&n{ry{ x88 UQ˴GZxOɹ*?f/)*gˣYP4u ?zGK
+ FKӣ>y 6R:S?gfD u2=8;bmɷ'@:߁)K*SXTa]+LP _:Â>Nۚ!]{hAnC~`2[d&'nӞȑa4L-'ܦc~CYfc ͻŜ㞀78vEIJpIQ`]kS&SpN22'vԫpǨ!}3f V(l"7S`,y^`v̌q(:5kUM3dEipYQO
+[6s֏y&fruo:ios~Ύe;r8\vJ
+:'`)]Y~NYrU,#Jv'/סfSY8_
+TV˽sH[
+춓L Ԫ@F},qbNsVdԓ="NbKIb);%^'UCSΙ'5*o2Y>0dv<ܷ.FG*2b1/},[`сIblqjjCf5%脣cKy=TKEmN 7-0_V
+7\>^]|E޷!wK<r乘3pxמA\Nd1Pvo.=غ 1NWқw79QykCƘ o$Jh<]]#F*W?=G_j@
+"@Gy䗢;g<pw-(Mdl_*a\ OO}d/noݒש 8ьws~/KdAOCW!i|SqWu%Uh-YsL* y_!/fZj:piLptgŹ<iVfէBB i?ǎ|ElWyy
+Ui1^e)QQ5kv}Cj-gWPMʠ2xk~@O8ދᚗ@aun+FP(P-Λ'
+L3jG?Bwp
+te;0VlNaRF"9A
+6Et~@? ̗lV:dDf8p;
+s\rtss΁Fk60r%\ nh lʩaFңq0x>a拁  `S>w_=5'bkbj0\0[K#v"_n 5)V ]O% D1ͣ%_n @aqi\aID]#+V Q1:+74KP[X*$6z71rP2{&#4oX"D#x4~7b7csȊnO!_cu*:2F +s.ǧjlMc<s1m&Xo>OM:VFasa:? FJfWsيU#"cUثаy嚬a "U~TMSz?|JfGKbtJLԬma ",C;R
+#X!dಉힴ*bahXӘdBQ}t|H\)?ܦ^*qɂt$ؼ4lصFIG6ĕ"dE)SMVv,nt}'b<}{q}*bT@ϯLBF˵t \˭w1wot+̚ ~<ZBeLj貁͔^E:
+k#A*ρ6B?~MϬ_uP VWx4(cR5%W| l}c^B+l1Lű&8pQC0|'#%1i8=9<˓Yg.u&3/S^}F62tRjD#2IiTa.įlxre+ 4Y#f\#u܊*ya܆#aSirg?ϛ*;p8 ix-;s G6#[fio]~ Ԑt輜b]-r{-iS͞&̏:h7dFvvm-5~Nj}5G$NtQ20nM'ݏ5eGϩ:($ݺ6!6ܩ#D
+@Pl8ݦZBndrCM;*L̺ W`T{0?DN/oJ.,&j員yޞo㌉.ͳ#AEJ+H2+'|^I2 u󍡷1%>Y2*ch¬͞gTEBkfSZi8^m&
+ֻ{:ҝ
+y#fpy
+g<ݴne! EeY]YJ:ąKx)j2nrZ!Fަ)f{ۈ?‰Cv1HQ&tMM%*H =Ty ?ߢͽ>:jtU"ɸdcwKqԥdӃC'xu51fZ~=+>Søn's02GUcNBG5aNg`AͅNk~LM_V C|
+=*ĸ{ Hp }MU 2cWg‡wJPV9)PrC [vKՀ!TURhTq\>bAUEG$'SV~}bkgERyO&}ib E^_0BwhӤKxI[xEf</wágxw,QH
+^YWsV^p/݄lLeo?+Djڮ2dq{
+p1S:a>Z܉vꟊIOԔ
+it'̘~
+R̉,T54YN;Maf uZ݊÷0Ms<`ܲ9̄/w>,~d:7[,~n 1맃 eiXG9(Ld.,E`7ĺl5zdЯ4"`K݅FLf>qxV ;wz2Uu0ӥolKW2P곷!̕eh'4zqMM@ mRҎE] "߁{_JQcmUg
+NC(,`Bx(b.=JELv\wcAhƥN8P]X>9Ө K6x2$W X賂 $ j@cBjEt;k'.mI)P9^IY‰}^l <]_iq<7٨Gr/g Qk7bWGijhvVvJ37_rk . /xSz?mwǿЖWfkwNO0zSz\q
+Άr8M .70:9RWdjWF3`8ߐLHa1MiE(N{aӠ^T_Icѡ쇌2}\8F9_RSx R( ,R7Ϭr<.阽PT*7R0hm%TljuOn5CJ]?uڢC/w0 T
+yޏ.1P~%.Ʊ$ ѧ8Q
+GU$؎0;0&{8y<}7}dj}rSt`(x+Xp'm$Kەސ˅
+D%# M6O0]iHBf>QkNSzw`gt&+,pR*M㻎}
+ _L⏸=U7[_'pM@R0rhf 0}P2V9$x23Jg6VE[@ryҨR$9Yʩ8>2 .b.7IwgҠ˘ggLOuq;Nz"(u{8yǝHN#\%W!<8Zbz>s hyr>IES0;"TgVmg.0cmKD
+sQڊpD XgeH&mS)
+JjQH`E5 P'{hEz%o+ei'ѐ$c 8@/*odESΓ,U]'DIU=ru8X~٣ˀ.YuJ34\~_h0
+^#-~uK/'d hHUM=욐A*܁S 簎qaWʉc7ax/Vi2%AF;ʦw%Ә>j;D\D0.N: chJSu
+p~ER
+-<cO~e~JcU~DkccqG:wrqB]NMaqt-HZYM1V ~!vL%NV5ʣX~dԉ<+$B2F"?'&037vqs7vE? *endstream
+endobj
+799 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1579 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1580 0 R
+/BaseFont /UMENRW+CMTI10
+/FontDescriptor 797 0 R
+>> endobj
+797 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /UMENRW+CMTI10
+/ItalicAngle -14.04
+/StemV 68
+/XHeight 431
+/FontBBox [-163 -250 1146 969]
+/Flags 4
+/CharSet (/fi/fl/quoteright/parenleft/parenright/comma/hyphen/period/two/C/E/G/I/K/L/M/P/R/S/T/U/V/X/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 798 0 R
+>> endobj
+1580 0 obj
+[562 588 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 409 409 0 0 307 358 307 0 0 0 511 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 716 0 678 0 774 0 386 0 769 627 897 0 0 678 0 729 562 716 743 743 0 743 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 0 460 256 818 562 511 511 0 422 409 332 537 460 664 464 486 ]
+endobj
+1579 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 50/two 51/.notdef 67/C 68/.notdef 69/E 70/.notdef 71/G 72/.notdef 73/I 74/.notdef 75/K/L/M 78/.notdef 80/P 81/.notdef 82/R/S/T/U/V 87/.notdef 88/X 89/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+454 0 obj <<
+/Length1 1857
+/Length2 11255
+/Length3 532
+/Length 12303
+/Filter /FlateDecode
+>>
+stream
+xUX֠!w qw',@i\w]C'g.gwVU>"SQg55Jقؘl
+
+h%a7z<|9ccvnSM+IK>tx.tpXMn_"o;[dwĭ =T bÊ-- o/˶RN gs -p9-.zw`Ni>#ɗgpYכ7
+Hj^QJ8hH4L#)߆eP>&?!1XD}#裋2AyW˛Wj5h
+t"3$(7𱽿?®mj0F+#ک0uTW@
+% ;/`^z؅OXm>K2C랛`:i8|D*sa<L8K|u%޷a5>jI~f&I!^m;53W
+?V5}]4jlSq{JA
+x ہr4
+Ni3dDE癭BU,fRӪ.A|yqkΔQց'beN6Xvج4d jCЮ[l*lMF"'\[~F8{{b_}OtZ2mRZW.>egnQNnBq3kUWG>=5p?'oVPĝ+J^VFC}5hxpZ&~;"CQ)a#r-"cxy׈!_2`<YqGڮV&Y\pZ6 (tN?<o|y]kio'k( ,]}Ww=.]]֬wtno di}l7vn*%ْnFre؎RyԹ RY1ڵwގm+-jBb0C$5_T=g;ib`loԒpaeYonB%i meF˿uڀ =NPaD!,gP~v9O
+H;G2 ߰Zqh;` `TZgZԵ-|(87t2ًL ԩ^lǖI&[>ʥ褢RGA#+bF
+=
+WZt}icc}E\hw f0I>N0Nx&JXe)Z{+l^ohA sːFS81zNOX7֝}Ek,Z?3+U?٢^(_nSq>VQ3Z`gۨB MhAcJIf _L-jX =IU,Qж\+ʔؐrk-?{7pwz'Go>q-8_^Kαb]M؝CH́Se`Vp6 T%ZcmA=ŪeSO ĕxHw#B:̸rDa3"eeM
+C)k!TY\6Q$?a~i INS I]dXg~C!Ic>Bw6f%N5Þ$^LҾ?r9ug.c wo~mbќW%W:rE VSh*BcB=rʆ^hwynTi,XR̓_-+z-!4g`*.r4G2GH ?9'aZcY wϩG!p}u|rLn<Sa`tjZǢVҝSEQi)9K %aBO/:Sҙ=
+O$<T\|
+tfuc
+:ufm٤j:8|$Rijuѝ:? F-G'-OeG96Fdԗoc2Ձ3" }aCmvڝ̖" 0*%-'Ί?DMI45ܰ5+s}:Ա'jIjcu&5@m{xEHr[}4S)/VfKc}H-!4XQknQdCoNmSƸrFGvYu_Z
+M@aO/| |S >uY68v<9ǫg
+HFZ3!)):֍ʳ;)"/1Z28dr n#]M5$C4Q.OΙƆqp6l7ycAegߨF%FaZ'ޯ g˦U۾0 . "aLBUQN`%*ї]rkŋߓӄVԑ1BҏjaK!S@rЫgHv
+Xf-{AGFw9DJ* iE*"@Vt@齿^$М4IzlRA0ڻw~Xnj
+ٕ)"UM~,Ρ~Fc#tVUkglA@wJ磻!(.,ISS{XTlS fq
+gབ rs`z1:*wmZvd::_< QeG5v;{Z#b=SՏڱ
+(<Bj4(±a F1dh<oF?
+
+aEwlQ5U2(bŮ/9( $ڳcHK c)hN|9lCY`Ar+lRBT=AocƁ!2\)_EEls=0/rRZ$&aT?TA^^H FP6Jl[ڡH2ykv;?mx)/0, W9kF#m{K̍,-9>x\W_";p]* _ WQ`pz*=/=,~ƍh
+g ^)q<W =2W&hRf_n 3^,3abJ ;ڷ<R<oOC~bPnǁ>ߌ&/KZ;ʖٹ&mwakmyIew[L N3bզ@ 7H`FIF% er#{uD@<#(P=2-`JzkmX?X55k!Pj
+fݦg)$t<_O2~TZ^j#27QUYLJf﷚JϵcBPH=x6|X[]躺K@7lTdoTy
+묵`\/w7|;S@e8`:NC V!k-.HǍ^c36 &hk)ac~[OSp 0:ƺk K#`NsB^CE٘}v̤ ߚEoI Ggr{H& r$
+İjFnR)#[}Un[\,Jz-+
+ۂdا:߷dԧRB0z51Ƭ$E\C d଀EѷcF˻")Ah9,.5;I!S V)r !you*I=9X'Vf}zm+ 婐?NNef:b
+CŗKfpˠ@:Z]W\A/heNX
+5;E`$btk
+I*̕yY#-fK/`tm+mNR9Bv ns5. Qcqîv2ak
+$ZQ,t0QV
+ 9W5{d$A\5oVF% ̽29On,?f ^I sK{^s@\YBGid}~-Y#s6UnEev_t㦻c. d*?C2/vuU-+*MfTP$FոC <Tq|%9J:"Y{''qʹyE^{+Z_մ1Qθ޵%ƌh; u=
+IJ)ݬo<fU|,#@6 lS2W::Zcxxe:Au쏪q2N+-%Y_gӆ&YJoM=:A t[$W؝\'7"IrY>fw 3ٶ/ cc]
+\ۮůjⰕW7᡽Ėkmg$rDǷq2z}?7Noa8^UEL0J䆿A9e
+C!2~\q`yMU fez/ZJ_S٘{ *=ї5&˚3<^e)ab 9dyn&HX%3"ۂ{w-{64)~4|¸aJ8gӷ:
+_iEDғuo{ޤ0l=9$NҨ0$Vz\Eчu(r@(ѓRdYj._}58]${g[Sj l;OB5065:_5 ༶$xD9e&bxuGٯwkSa0j"L:;y\|^2A0ɇ
+oNY!j |l瀩7'JE_}C
+Sך%E<sX\ړ󡈥G%9g⴪X8fly3>xv7KOVO-+Ba HI%Д)PBhGmC* iѧ,/ ]/̉yg6<>-4Q:ѓjZsGwzoچl; ϖ;YAC9ܟqAЮy_m&mߑY4t9ti>Kylλ
+3s F4u6ɒ" ` g25@Y`7k趢ohwGMe썾l .@Qy U5ljPGo-
+}1:*,6MF ռJ<d.c2, 8Qh|6k_7ԬZ1AZ0 ^dVrqgQFkJNlaΕŗq˜Nx2 m~.\GiϺoo)Ξ7
+kg_38- \q㮂
+GTL"&8
+<~Sĸq~ʹEmy[ ٦WH:iCׇR`aL? :-([8jvPH~Z ~N|PyW?ZXW |N[vShNAo\»<*9\@I)d'o>B]c;C8 ZZ󳋪;t+h&?%K%Q ;nZpF>_^d&'ķfr&m\|.f*L$^0E=96lSwZp% ZJsJyMNn–wh4Mhv䧷#NC~`Ix\&dЪf\e~aXyk$$vw6`J_tK
+]u&1h+ݔɻٻl ϵP($ED6Wшr+ |\c/̰Ot_;Dn6ILZUy7>'5N/;+.d7yմ)k_K }ӔL左^„>o`T6epU6hK70d6>{ ,W -sB~*b`npW}/0Nѣ<XQ#aw9n(GBvҔ+kN·HŜҀ0544Yt WU@!0ͭ~KMYΚي?BJ>d3o ,ODM^ ޫKs
+dreg5l1fF Ql݁W<{gM!ϧj<IĎs5J"F;2l=wcH!Nyн wX%R|Ut_rJE<xKmT^>?LG=b3}  VWde;F':"r*L,cJZH$.who*I"W}ZZx7.;\ xχ(\%u11֡S)uh 52FĮR=x+?PJ<FJMy\f]-sf*5Yx:<4L9>]9i1gTL6I|dѓʾyjǮ<u0|p U R`'u,Jk|=MisG~7z?cSvZ[b/dz sZt@%8|6L K;`;ehL@V0m/p䥉O
+ Fl[y1H \C9+45XHK2#ћOMԤn${Q' \e<kyޮkU.ܣUj7·AJZ\ Y @7Oޓxһ"㚆Miy
+dWP2u /
+XGmk MqMpw~:TuOa<hi5,R=׏8@
+<f)]:>\vBSa]$5^Ep̪f<b 322(Az˵z40-=1pY}eU"j9 C̱y6uXCDQ؄LĖ'IkuGZ."xcXFK8T &kU/
+7\DFpA:wD"!ƙUIf#x=JZ&n>u
+,,<gd4 /jz6_1*8V_{;mBTIP$U(>|W_VhS ,3yJDd:(aJDS>^XE(eCZA L"
+,/DkHendstream
+endobj
+455 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1581 0 R
+/FirstChar 35
+/LastChar 126
+/Widths 1582 0 R
+/BaseFont /FRFTIO+CMTT10
+/FontDescriptor 453 0 R
+>> endobj
+453 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /FRFTIO+CMTT10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-4 -235 731 800]
+/Flags 4
+/CharSet (/numbersign/percent/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/eight/colon/semicolon/equal/at/A/B/C/D/F/L/M/O/R/S/T/X/Y/bracketleft/backslash/bracketright/quoteleft/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/braceright/asciitilde)
+/FontFile 454 0 R
+>> endobj
+1582 0 obj
+[525 0 525 0 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 0 0 525 0 525 525 0 525 0 0 525 525 525 525 525 0 525 0 0 0 0 0 525 525 0 525 0 0 525 525 525 0 0 0 525 525 0 525 525 525 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 ]
+endobj
+1581 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 35/numbersign 36/.notdef 37/percent 38/.notdef 39/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 56/eight 57/.notdef 58/colon/semicolon 60/.notdef 61/equal 62/.notdef 64/at/A/B/C/D 69/.notdef 70/F 71/.notdef 76/L/M 78/.notdef 79/O 80/.notdef 82/R/S/T 85/.notdef 88/X/Y 90/.notdef 91/bracketleft/backslash/bracketright 94/.notdef 96/quoteleft/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 124/.notdef 125/braceright/asciitilde 127/.notdef]
+>> endobj
+415 0 obj <<
+/Length1 1120
+/Length2 3758
+/Length3 532
+/Length 4472
+/Filter /FlateDecode
+>>
+stream
+xi<}C2dIrR,C5Nm 0زHDe/cZle߷5K3}]y?y9XNA>]1E$ŠPY@Y@*@%@xaUD,
+Fr&@
+ "`GcA4v8@ב;
+O ΑE
+dH @@m9C?99iÝݦs;svq#cjN D9TwB#N(@ zMPC{h";P(,2Ƚ%jsM䯩:ՅDC/ C0Gx'`.!.!%;߿,M!XZHJp<"$o("Q
+i(%@S3˩啙PQDJ l "buUջ$9!{#oClG ҂ntҧӔVϨB89q(
+ 8o]hhll ݦlZXbWMƞ "IVOjLar,o:&yGn?.E2a4*x>Dڅ =xæ2[?<)Ey 6l]]MocI0S|W&O攒}Aq{$TaE*'{>QE֢+~FQ.Q^T"n+~>US_.{40#RjIn}/N| žPȺ*S@hmeo}H{<b!:Vɲo.V
+ֻE
+<4k3ؙ+By5!m£ۻy]3w۟e3Y>JGDV\/O.Ia5SpcUCء:"?r)# 3Kz]owMF|P7c,[=E[5_USx~l'f46)C<i7Y l{,oAcnw޼b=I}za˨{&x&9K3l(\̖jрCzD=[I$("<8xML
+}_I
+n9؇n*xn &WQ\+K!0,ÝQƍGO Db駞>[Dq5G^N.+^fO%,\=6qRXhϨByB A aJqv[7{WRŵ{MTS3*ǔE̢+?I [b#wې*)Ll<8uՙp2W^~Z"ź=Ս i:@1iEFVEVbT~LY̆kǂ\Z*cg?>qR\pO>E%J؊uDMLz8$8I"{'Po|d a+ڎ 'M9Dp6CiE
+Wv0k-g`pH7RN`g!,:Dj2 k_)vGNআCtH!]+DRGUf%_+kfG,_6_\2C=>]V~ i-8͘do URe~Uy%38J  meJ;|R1fkvk9w)%W#wc^} ^^OfIM`_^Ar=îS.96VWu<zHdJ~?n 57hHȨH 2}ZݞkvyKht0zT&zN HS$] /KS'Z>R&Z 1q_<wDnTբIi?wy(4mUڟBlv)o}BJs=B̏ҕ&AaKxٔQE⟩eX |iw3SէH Y7~-wg^nڅYZܯoPF$h;HZcJ˝]<;VbMcpIxGP~ =K޻\vy//l_
+lQxIV/t樲aaN15hȃZ-O(M k]J/<V W7#*j8w2ПpIm'1hS-!4_U|W}mfY:oذGg-+Y^QlʪQdHc9eThCg2ߕW;`Ij\yt&YWg[J9٫JGM'<]"@'ON+=qv9/4jaOdVY:5wӮ9h9P[l5$p}R2 e"{WO@:t9_AX ײi.(%.*KLgh [4i=3 %'+]]ͮKռ_C;8hc1J-G`n;#Ï<NaHוx %Òixss;d$uHXbVt+F2x͜zoRxx1lH?O?|è{p)=y5]u^i_r6tpJ0X#M%B\"BkHNIGt$"l0h!!aR0OM ٸ\BڱEZ&Cf=.ѹ;/5&uzBA5QαJjO6݌^>cʤ|w8 y5#Uȶq)1QKCzOuJ\Ɛ+ƽzCzQZ]#OBEx8H&@z*I<-Y_X˗̅68Eav)2{_.:&ĝ08Vڻ
++Mх7G[?fSmtJEoŸ\Z0k`@9(˶U5KM&V#1J焿Dzogye/V"©8o2PK-R
+vӶj`Q'^ ˏٖtkœl<͙ɲ+) y_{!WL7r䡆t\f'Ç={߄{zI (f .;C'ɔ!7S*ʤ,( JX *DžwV?\5F6'
+~
+5
+ N^o.=3=/&e4Tl&pZȩKbb}s.偗e!<Xso9\z1˟=ie:/420\4ؼr-e7)IL CÍ 8CFĜُ2k=dJfx9ОTDyK?"
+endobj
+416 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1583 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1584 0 R
+/BaseFont /EVADOG+CMSSI10
+/FontDescriptor 414 0 R
+>> endobj
+414 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /EVADOG+CMSSI10
+/ItalicAngle -12
+/StemV 80
+/XHeight 444
+/FontBBox [-97 -250 1077 759]
+/Flags 4
+/CharSet (/fi/fl/parenleft/parenright/period/S/a/b/c/e/g/h/i/j/k/l/n/o/p/r/t/u/v/w/y)
+/FontFile 415 0 R
+>> endobj
+1584 0 obj
+[536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 389 389 0 0 0 0 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 481 517 444 0 444 0 500 517 239 267 489 239 0 517 500 517 0 342 0 361 517 461 683 0 461 ]
+endobj
+1583 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a/b/c 100/.notdef 101/e 102/.notdef 103/g/h/i/j/k/l 109/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t/u/v/w 120/.notdef 121/y 122/.notdef]
+>> endobj
+412 0 obj <<
+/Length1 1470
+/Length2 9789
+/Length3 532
+/Length 10662
+/Filter /FlateDecode
+>>
+stream
+xUX\Q\RXww 
++\ @]Nn|SRko9+귪b34]
+b&% ^`+kW ?xb gPdanjԀA^,@1;;?f
+4YPYa$` +lC g*I*Z@케 KTVejC?K)?w7yW TX3U/9%?G\MbVv 3? Ͽ`i'Bjn 4s3rOSUL]\MVN`WM/GO?C gcacc&B?I9C,k4uv6B(qف` ' 5feqB
+Pj񗏹綮asaa(hUPt i2у;&W].IĐZC Gj"U
+AGL\>C_/aNŮZLx]/1DžЮw(q<0G6m"ք?bue<bF}C@k@]6T6nX!z6TΝOTtAPOfF H]"-N2l׎Ppw*ioHF51ϺgcM+N-x5>d;pz&i=Om'8C!bw4_デ=VqzȦўxg'O\;ho DQ-ښ晗P4?\{S;;Odz2mжИ2xX6ҋXZE'̬8[bŌx4b>ٕ.! nlE~Ĥp:*";Ƹ&\9!@Pyn^SXH4dOQ FhH*8-
+)ɗD PP'ϻNoo{=$`"dGq@B| ߥ*q:j?;6V&NΥcNsCNH c U!!">]:C8slwj`6kYl\Q ]#\*X?K>훰\yk+7=hE8K`sg‚%՟(v_ɼŗP}VDnUj R-s3 kv=V!(),wzܠTO*-j2׺/S*rOwAU;G>)qdݫ&EZ.GYe֞XI?Q+]xOEdp$W٩$ &\V
+^W1Mŭt3g̊[ rүqb !#5o(qr4ՅWBO%-YyR7]=zޟO۱P,%]( U0Xb!|([1M@
+)4_w</vnJq-hWs,TGlo#݄>#i^4Xd aӌ%ziPQ!5"=u)#Gz$P O-KK
+U’bP;p'+k|8DS[TVÎmDkI"_M.4sdI,ejPZØC;Z'0`
+WR|lA(NȜH0l]L]8el"w?q|=7D4y%S9W$\Y Ht0jUQc:zܾ<)r{\$mIFe$e-w΅ccXb6;NEHJɸ
+G7I珇4rۙ%]yD>]*-KZ\:>џCg—?k変ְcHt<&ۄg>Ԕ9Ө;#"ij;LCVJYÒ2/l*73Ll/7ဴS+a+L9ecKvjE$͊Co"RhQ!o\q9 =J5!
+
+ޝז t#ОL!#:BNV5hD }XwL1n~ VFЮv5
+6-Lmn\m<vmDɂTS{ \mED19;B>.\iM/t$p B$*u)s!ݱ!<XGjg;tLtz΢wҶ5N==V>&3>a%ho0Fd$?!JfK~1y|{;엝yth(=w|?;󷱍6;SJ"[Ab tƶZ4pUn=}EI 5KJ;Qo`{(r_*֡Ҽhp'\< 6kJ(|wHׁ9yGFÎ)7א %@~]Z/č5,s2{)%G-Kb -o8m/ RkNU'Z
+fh#oSd 1 ?8e^I7-bl\vHk+eyn1 ux$'nLKtqJoi%!jxd1mp.[2⊥|4,߼> uvmoϒ?t;yvlMNy6syb/!2:X7qޙ-+K6:(NMR.XΑ^G ڪmL2}K拞C$n*i"n(it(WGnsֵ*ͯ9E4op;&9%wx|/r˶ZFQ&@C#21'>Qv:
+Xon{R!Uۻ]^sb耲G`y{~ey%iSN#(77EeYCa*tQ(X4f<@՞=rk~GK8PheN(E -i/Wv EMLÔ;
+Nfjf2jNPhcq${'e^;i]*NYa-\% fRui"gcqޗꀵ
+/fbZ&f*|a|B$m7& ~
+\m;E3[n٪8+i~rx#8_y@_16:@
+l8pmٳ1C"!΄܏Z .05·[1TtՆ,^PMThMOH%uSP,c]M!8f e(Gst}rQ"߫8V, snKD"s5H͞.Idn a+<W_x" 52H
++s=&GLDus AyN>Aq?|fAl:2;I5J]9
+qƼls؆d50z|Z\v5)&+~Ȅ_U*
+н3zb}@>ݨ˴!#I?jDB/JG1{)}Nh:9)vkF):anpzWendu*$/E_{֯ z'!zCd⼛S=?A:rhm=Bʾ7*݀L+?kY)⭫#!yϱWː9rqq4]|h> g&f`ydX5Qr)YǕ)@.tf^(E^Y6aSyԆ)v%*Jc5Q2\ӷOͫJK/i[wQ\L;:zګTVDೱ|4x{A^V9iI{3GOǴCUlTY_NX쩹=MQkaf8=ltIcwl$Ӑ8l U& ׁ"ɏ̎KnZvcªj3̚`n/v&x.HgT< ?[#&e]94'd.TJZ~UY;nkLtz3EVhnv<Cp5"ꀮG:܃ю
+-MG½ʆVgX|l!
+\t\҉e8Q'  E5*J`c\⼏DXLknO<&{%6#ƞ!5I
+>=]I>բC%-(}o͝ kGV;EJ?.fQIy `Dgb(4_Y3@6] LN-Nʹ녗N]ѵ%Fo K>p&}ZYQSHlBa\Zq?tdfNWP8L1pOL
+d`gTrYV.hN[g
+ UcVu<!Y(^ʉZ K"hT1Ɔ SVXwLv8n>g̖O1v\1|j8*Nu>qg}:8Xd33R+M412ZtVkn͜,2eQF)>f&eI-_q
+ɥ]H(McXt/TuLi ܘxyy7 o% &g|.-'CʸjN눏]]2_tr1UT=0 }`+/Um+!Hdgy"#25ה_\gm:Hy`W`w/9 #H$M.`Q'Y/џro;n~FzO&
+}cM=cS5. Ϊ}X`-4ǥx9:?}c7@T$E!I}ʊ#Xma4|2@a=Ѽ0d^n"h 'A\QYA{{U6D}<A*WDďqJ9ipN <^uQ~ hMg ?Qd
+7uE_<Wbendstream
+endobj
+413 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1585 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 1586 0 R
+/BaseFont /ARBQHQ+CMSL10
+/FontDescriptor 411 0 R
+>> endobj
+411 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /ARBQHQ+CMSL10
+/ItalicAngle -9.46
+/StemV 79
+/XHeight 431
+/FontBBox [-62 -250 1123 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/one/two/three/four/five/six/seven/eight/colon/A/C/E/F/H/I/K/O/P/Q/S/T/V/W/a/b/c/d/e/g/h/i/k/l/m/n/o/p/q/r/s/t/u/w/x/y)
+/FontFile 412 0 R
+>> endobj
+1586 0 obj
+[389 389 0 0 0 0 278 0 0 500 500 500 500 500 500 500 500 0 278 0 0 0 0 0 0 750 0 722 0 681 653 0 750 361 0 778 0 0 0 778 681 778 0 556 722 0 750 1028 0 0 0 0 0 0 0 0 0 500 556 444 556 444 0 500 556 278 0 528 278 833 556 500 556 528 392 394 389 556 0 722 528 528 ]
+endobj
+1585 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 49/one/two/three/four/five/six/seven/eight 57/.notdef 58/colon 59/.notdef 65/A 66/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 75/K 76/.notdef 79/O/P/Q 82/.notdef 83/S/T 85/.notdef 86/V/W 88/.notdef 97/a/b/c/d/e 102/.notdef 103/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u 118/.notdef 119/w/x/y 122/.notdef]
+>> endobj
+373 0 obj <<
+/Length1 1413
+/Length2 5546
+/Length3 532
+/Length 6389
+/Filter /FlateDecode
+>>
+stream
+xWXS[ =Az$^T E:
+ҫ"m<yy9x9 mc(tGTb
+ӑ w! k
+5)
+C{9os`Qm zih +spY
+9}A
+33Lv/K]ߖFvN>>%o+'Lz_?NJy3Y|zyʑ'OA<eв#imC9FuZ=7]9pȾz8Mz_ƛv1 )?i3ze〰鴻p N
+@.
+R7iU2_ĕh+cAl}8 KubC=vOW)+t]jM &]p n8SfNȳ?pGHspJ<t&8<KݴCqW)\դz_r4z2N2vPg}āTfch[C.Kݾ'NJx6C.
+^8?&6辅#'#V n+HPVJ%v
+qAF"?37MzeWD=v_jc: _rg Q5Tۉج>?=JlWLn{Ua:>yP-XQz`/ǐu; z}Q3aqDǢ7K
+ ҍn)
+[[޵hH)0yqN=`^iP'Z^%Nw_KqAJB7a[x2탷YT܈0^?fP'/l'cap!,PCѳ#RLSAY'Mۢ^?u.Fźd o?p@jmŝ^M>_<6~q"%Yʋg|l,Z_6jf>i`#:xKEnwpo(hb"]eT
+4'7NznZJh|ar/e0R_2&IK80E'5Ppj&NOm/ҕ@tWۅIٻxWw~*\`ڇ#5lWۻcyC:/Y@}¾i!"Q|wo׎aƹFǑG1
+Jm8'͸2OF\ >`y&F`*X)}/ZzDAy%<kɤl#E Ȳ$|v|`}T!ӕ\ssX`4E' k+Q[sp :Hs~<nB\1=r"2'G4[ M.?l$&K8 c*.VSղ uvekJ۱=0&!0U,
+܋AQ®xݖ) ԎI)n@  }@}Ab0Eig$Qz]e'Y|5!r|082;{Ζ߸=%ZV[T;$sn-y
+ 8I7gUZhʸ et%p0t/<~/Ol4r̪jgش;7EWBtx’
+1#Nǫ}d?ln`eQ5 *66o|[;>N'Hi1)h3R|g9)*Qxj#(W\Ys0'%\\ vʝv,]pbQ\
+
+V==I#XhLvFԄOQ7S]\k?WsTQ. P ^]acIەQ
+|K͘Ï̳c;>xS
+vLQLC c-V`Xx&>dt!1+<m:~sRhYET`QVb} ]^9F7x<Fq"n9(.}9
+hÖW4r
+ L29M"_d|y1"A1 TC=_m7qX{R/d%h]&9R o R9J
+-tsѽ6"+5QoŷV&8ìWjEUTq&)Ȏ8GKG+53t jS߮bd*D09}Cu
++jY:e՜boGVu'>'rF|~~n? @8HnI%SMe˭'֪WnMW|N^ުl&j
+E4}/%!`h\ޥ4r V~xxQ;%+k"MG!<MoΔ?zE^ԧ8
+Y4훿 |ztoj>]HSċ1'֜<Z=|WҎϚ*pj{Y5Am`2[B<~9X @,UF7WBbe;°uxmiI*x/ 4dJɭ gvf#:p[mZ_BF%kzA]?KSƼTJņc凔}֒KygȾ)k;[7b
+M0?-69_HmWpLj.)z1[
+~Pix(  ӝu$<
+at3<VI5]B j EQ|"wo'n 雇[饅9*L9J<Jv_WX/bxW!Yb*HgNS%j;IE
+U%`?4eYlcf-x}4T`' CZ|||<ƂWr2%+8
+<"J/pX.0ig2.E%\"?;&?(yH#Dq5UF e9g%*c8tJ5V}$ᇊ.݌yz?#~$n ):3z$S5h}*5OR]=tp~aOiWUj5o3qrӟ, +H8ҩ"?O bǁ*ടŲѲcn^by$n!ث^߽fNTҫkSV Iꎀcv⢑o?/(^%tCm|zӚ%f#4G*qW35mO _ٓ7<ҷ"@->v
+hWƇ5V+5jkCj
+'=v_[!.Jze0jk"8͗rPۂ`?VOilGd DfTЖB\54oRX3`RURP'['xȨ4"@K<NStĔ.5W Q@|6KT ׸v݊ڕ "CQ|Nv,د <<Y1ה-q8li7l
+gW^C>bODB# )+endstream
+endobj
+374 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1587 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1588 0 R
+/BaseFont /QGSPHX+CMSS10
+/FontDescriptor 372 0 R
+>> endobj
+372 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /QGSPHX+CMSS10
+/ItalicAngle 0
+/StemV 78
+/XHeight 444
+/FontBBox [-61 -250 999 759]
+/Flags 4
+/CharSet (/fi/fl/parenleft/parenright/comma/hyphen/period/two/three/C/E/F/H/I/K/L/M/N/P/R/S/T/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 373 0 R
+>> endobj
+1588 0 obj
+[536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 389 389 0 0 278 333 278 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 639 0 597 569 0 708 278 0 694 542 875 708 0 639 0 646 556 681 0 0 0 0 0 0 0 0 0 0 0 0 481 517 444 517 444 306 500 517 239 0 489 239 794 517 500 517 0 342 383 361 517 461 683 461 461 ]
+endobj
+1587 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 50/two/three 52/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 75/K/L/M/N 79/.notdef 80/P 81/.notdef 82/R/S/T 85/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+355 0 obj <<
+/Length1 1847
+/Length2 13030
+/Length3 532
+/Length 14050
+/Filter /FlateDecode
+>>
+stream
+xUX\m݂Bp4]w~9}mZUwU?k5
+ʌ"6@IkGFV&V>+ ERhhnc-n$?>N>.J#F$n75@ T
+lcdttcXYt
+J+L07pC
+N;^rd P);eN/E?~Vߏ"
+~<#*3t' 4p XBi?m`sί9HV^h,Ɵ~ &z.K<wcyt/c%En\o4u۶Rǣ_olތbۂ%g;RUO`>a~9w/׉O1)8?ľ׬C$> 빏<ybq KpQE)9Y [Ҁb>"Ts;izk2(6j@qT޷ʌY-#533Α+ ʚ-}MDhlo+cqmd3U70E o / ^> Wp3O {Q$BlA~A9wh⛲bbCf+ d49tՈ-zb`/Fÿp62\m"ɘ]C<}H!7/ S3Rp; ui!rU@Sgxb7$e,$!O[c|ZWtt*fU_'F[I>5l,UΞY=[6dJ>"1" N]p@n{i֖Օ6Ւ9H%m!)T׵ͽ:B|X&I?,a. ÃiN0ATK1,7W͞- MZ8!1y*+X&H+F=zzsv1)nj%aӦkxmr`>L0Mg\$<n޽F ^߃ۻl_wcCCTHj:~>8^wn|ś/3.KOcF9&5!GNǜFc qiĻb7쓰 [Wh_RPNOYDkɰT2 V/kFSM]RU$RNE}^\uQRGXv²gGVلui]A\qGqbʗ4fdq)0?} @'uW\4])'V'=hyuQĘ9$Ĝ*~^_<HKByyQMYl~'sIY
+:ko0i"+_ϖA6oxE3p%7I f=l
+uJYDlPߤ&% keh3hEvP+
+&-bu+t3УwY#=+TJIXslIبVSƅgYNDv}ĵyh XN1CeF551uH Y& #'PcA<ezX9=
+,F0qKWj3p94πzoUQvg ]~4[
+h4]O7*&
+1ϩ o!I0 \NmFLuXf:O[ICg)xLr)'4^{<3`dZ5cY4egj(c8XJ[iyV{LMl Y2 Wrյ8=fCQz
+j>o7ٕq4&N4?h*'R%|b!1cL Mwx{7`낷P;3#d; 9̭S]N;L\l(dEǶR~WZ*MZ`ǠĞqE`˯pZn\ 햬f+` Xe'm;G1[L4&SNr9t
+F85Z:d'i,OQ=nH'* >MQ rkx׽
+Zt]F;T(Kg6q&]H}I4K? f>h5whvzac'7#@
+"hM3 zj{|<"T$j2MC}V4DxCȗ}=[ytUmp8DuR;fIOP87ċ[
+&u u!?| feɜBlBL?o шHa,aͧSMLX)^ʨʰBYb$?JtԤxkEz9]-3,u8,m;E7zrtXN'y3="Q
+0uTr#8&p4eys:V{!Dn9=V2<M~;u>3UB*fiibVnyܢ_Q:#v$MS3>DPG'UIPc<!᫃24 Ĥ|c'
+\_rOUM!Tj9-+3`]VRXu,2=Ue}6H8H_fnY=c~b)0@O):?=V0&[x8Dyw#vD.Jz ԥ<
+kaZ9. sU:9FWv절&,^uoDKkn UXۉcDOͪdY@|W -X#p{+ 3{! }yLMSYcy=L\ ;E`"&I,C/V?oxth欼0Bv/Q ]I(u,qVU])/Y.
+=FC:y,}^88c GovNn7)i@(ss}E&1 ~) xp* m1V95\' GGIYFCYFm= _a iYϞUQ#"rJH>*7T|luk7RB@N!ɩU-{>YFsǯ,[`&GzI}ݚ\ ;ڬ W<7UP3"!:vxNAQ ~L@,5<9c:c% Ėm剮7W/f d:L @&ܟ!_ތ_0xgǟ荺s\jNc=F?J]5+sG"!Ύy$F=ҳ''mo a9xxG!r}W^@ hjaߎ{5GQNRM88>0 BX7(0gH;a(B=_>IwM&٦qkJHTQ H˯?2&m/OtQ7VkZsK !S+&~5:Z u5b&0vp֗C9dXuæuXܵer.]7&)Ž뚈
++Kt]r@(Bhw6 ʃK+ <XI`KؠS_B?+]%^|M9: hsrT1<Η,i{v$㆏p[:>7lL*˯ƾM&tŲau*.
+cP`.֦nv۾ZEJ=j~֕46huF'5]G
+ S5JzB`slH'??eGڐMݺ8PґoEx"ٻѨ $r7X8{C v@ KDiFyw俣}[qm`.<P!@mևڛCg㳬Yn.-] r Aj6Cʽ7/uV9亙z<?y|frlaNиe}//]: sk u@  b=q|ڧSU1g%K$2r(KY>!;V&o6?47lSE-nȝ@vD-1E>2 ~NIF)qumqrg>V3
+ ,s0MoiE Unn۶#TmY w5JS,,MI63v*ּq`WVq7X=|/kz1qڸ*Hk>w;3z^S
+]7w&'g61xe[iہa,#}(
+4:O:? 7D3C*Ga=!L5 A2EQboЪTeu0kyإqu&0(}4^H{YdLE!j>鄠),(Pjcp1ܫi?NW qF(AC9![\ϛ[ɶ%0RQEmuTjVԛmDT~v|!VY.ƱxpQ
+ 5沔/g MZ
+ X~*}.hՑ<ZGN`rgF=R]ӟ߷s@sK>tN5ge,-Rۃ~U\Nht0ZUH_;#tN-N SrwJND>RSbNۥ__O~~H={ b7d[MX;j
+#c8;N#fR#SU`.<[lizՏS;t\hVm/ڪ enF
+*vI;_[R_OƐóe6> R?S3t}g'7 ļ`$@!Q ǡhMo7:Dus`4wɞ+_A^9#jI-)?|>
+7tkS6wyHRfF:NՓ5!ĸdq^ք0laH>`ABgԂ2%#^3x[۞,[%$ yQaL \n/8Ė\q_uxT>sIs@զM^lҀZӇ
+!Bp_O@W%^\hZiJ9j\AUr-ՅgҋS_)%0sT?w>:w w>
+ʓΧ (uw2Z>قRCmyL褢v/CNCڡٺVrcbKuvH>G' DpDhR¨K~ƔHȄK]=,{dBfkκ^oZf=[VM>DN?!>T7]ݽA
+o
+kI-[h
+ٹ*PW߫]TeW'|AG)s^ivz,lc5T{]r0,=~+?ҹH6\5M[vVg&Dج`So-/,vׅ,/{kT)(`,c`i<m1Cc D(]lYFOgRۭsvޯ/T5]Њ7yr%S{F$I;0s^I,
+v582yjըoҬ`/d,_E*I=3ʿPϒSn)u/ ۲*LP _Wu͵_|<
+h_s/kss]{cGn#q9%d>˜V![eƀؒM&Qbo5`@~p-PNhPl1"#zoV#"At
+⠼ڌɝL|VM. ŋ6{KD̪"pleA?Dڤ/TF:43.ԍ2ʜ6?X"Ma?謡zS"m*h)2B0ը"dIxuFe^t5yBM+[UXi-
+ƞ5+کڈI??"9~ưi;@ߤUN"ĸTMQLt"nZK(o
+zIHP<}1C*τ q}inܥ_Y̊i17+"Ja YK2
+ҀIyXyx"
+ ,`Y+\>vQ,
+2ՇRگx e.URy+3qQh"F׵эdND=7㠣*rQ8I(>8Ht}\J6oظP>CK-9v+ǃ~Bf ʫsx`Y M Y
+zjd ,FX
+§~40T 2SN?>㈟ w$r҅p$MbޮK0uM"L2@kKuÓ{HIǨ-tIZ3:!ObO-U΁tч|*zy
+i{Xw8%8λ0{nRya@R4(aDF^\9Ѭ6nMF\nU-w9@b=O%v|d]p`&mBn4zB/ gn[9Y\
+$"̓GOW]"NNo''5=06$LE~"%;M#[2^Ϫd3\#0$$MDfBJsple*T,QQ,l VbhKimucMOL 76kʨ =S_!KU(}BqA֘ ds5qz(8!5A&rg|
+Cq:Տϼ41~ f!WɰR=sqH#osTyoi5 Q29=TC؞
+DzX)ri|w7OJm2Z̓@=pK,s3gJi3PI \Ǹ 
+)N>mw2j?i4P{`'z8bP>ON%UZHMǤM{^N
+¡!DOŰ#zHס~]Bqtsx_"3*w~)%u {q Iw1Qz&ێ /.tqc O˄1mcH|;0OId
+_Q
+h`h
+endobj
+356 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1589 0 R
+/FirstChar 12
+/LastChar 122
+/Widths 1590 0 R
+/BaseFont /AIXAZO+CMBX10
+/FontDescriptor 354 0 R
+>> endobj
+354 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /AIXAZO+CMBX10
+/ItalicAngle 0
+/StemV 114
+/XHeight 444
+/FontBBox [-301 -250 1164 946]
+/Flags 4
+/CharSet (/fi/fl/quoteright/parenleft/parenright/hyphen/period/slash/one/two/three/four/five/six/seven/eight/nine/colon/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/Y/bracketleft/bracketright/quoteleft/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z)
+/FontFile 355 0 R
+>> endobj
+1590 0 obj
+[639 639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 319 447 447 0 0 0 383 319 575 0 575 575 575 575 575 575 575 575 575 319 0 0 0 0 0 894 869 818 831 882 756 724 904 900 436 594 901 692 1092 900 864 786 864 862 639 800 885 869 1189 0 869 0 319 0 319 0 0 319 559 639 511 639 527 351 575 639 319 0 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 ]
+endobj
+1589 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 39/quoteright/parenleft/parenright 42/.notdef 45/hyphen/period/slash 48/.notdef 49/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 91/bracketleft 92/.notdef 93/bracketright 94/.notdef 96/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef]
+>> endobj
+350 0 obj <<
+/Length1 1856
+/Length2 11848
+/Length3 532
+/Length 12874
+/Filter /FlateDecode
+>>
+stream
+xU\_ ݝ@ m\75@pww`Hpg%3s}WwzuSWCEI(`Pfc1"PQI.V.@~
+`DH88z,,]
+@ m=f@sep- \Vڥu?W89
+m
+yk jo?=:fy߂bo+FoN(FྥM<஥ܳ}#++xU\]\Y.ovF`7Woc6Ӈm 8Գ;0 -
+.bs+ z
+~CC[+7v!/%@*8ok?TcED6!}6WWe##Ԏc.OYCGya5ephKjSs9} _wGKN|>gʰzP
+r,Ɣ?'0{_r`u $js=ČRNl@4¶;0yISvrX_V  p (g[`
+ex2ס]VV=J[DSWh{ *̶!r bŔ.?prb=ed jLgpo}eKtkN͟S\)lb~93pӠeJt8q jv
+'qMH4kq 7("2d]ߎa(?-.ol- SHZm@Ae4k+1MeUr4fBQ<G W@ xTHj΄ɜ(XGDH]<t>$FcG90p q%[2肇+'63`1GxSxU
+1j='-r\a@xXgK%OzG<k&/5׃$;HUhwv;L
+gii1%l3)muE.7*p4 ZSy{wF\Sc3!gRV# sƸ oY n{iG\d4-%3RMrRIM T7+C*y:$@
+^1xQDRi*SKts>96@[XJx,4 K:wwjL"3\w3dZ]bvrv*05Ms反 :ap|թVH8?HsBBÝ3V5+!C?Ĵ)P=?#h#Ȩ˶e'H_qvU*&~%ʟSujj kM桬X IWK<?%pBhC> DJpn@6hA]ɅD40T[<Io柑Po}.y ?ׅ9@M?X9\36"|:(>B|:gxAS(tx1{C
+2IqN ChvAϣplra6P'Ϊ
+VW/Z;*AmT?:#OP4SՔ㹕k-ʴGjp1.
+V]O_1>v_mD]
+b&
+͒,GӮ|ZSGYS;yhV"<-
+řm7<4yaW2F&0t?],]'(+PY\,\@*s\Y̍TLfarm2 W}JJ2( v}!_$akz^;M.ZLa1E*?+@,VM=x-g\ 8wcOW >(;܂j$`X;NS 6u H0cbWг{H_Qػlr|V3ӋKtPkDدlm _.|7֗d2?7ٛ;\EFMy+vAL&CMεZM;{Ə?qYje4$WZ{\ `\:1cP`)-{Zz/)CLO_tQ+Cbl3{OZG7#M8&ԶJK9[
+UavGH5J1Ҵ[1Ja9K|#S*6isB/nM,3xm:vdLqg
+ A# h IDg5,N_ca8 C%t~9!e~: F)m^7gY]s[,/L)x%sW2@Aw&Ϩ:zܶP gPTte{;$Rw_(){) 倴zDO@v?>4S]XEusWˮ12Ʒ]lhOޔn.ܤD~wKW~$`]1HEuؗXMn8JԃĢ$PZ^MlɱCpK)
+Oa_)3}dK Qq^B,%mᛧ-;kQ.\\m)^#sea[
+;_B9ETpԖw Z'FV)T`tA]n"%̥E:t'xٵ#=yl+\IMfJ>~'J^Zq;ю;ebotE2Houl3+C-J!I#{(CTM럿C9 ,R,7͋Cꌾ2bUGZ#5;fk`^x>,'8iPހK
+@r~ m+zHHMmYRmy z@sIu27{4!5 ?`Z-AV8r|c5Vq(B752*s-nŵ;V*^U2^b S0t^S˃%d1%ݘs<4*y7uilPmڷ:wD $Q brn{Omc#ƌ.5EyK}&wׄ*wHj0ttULWs$w#۬lNga2ゾxYfqp|-r^/2$
+9ɫl| co%'зmFa}m%Hv}ZƨD B]4-K,Yy ]) qϙ`;>K}9,(4"0/F` %_e۟':Wm_T>GD/]ָE^iUZ7 VGF'avۏp]O6.ngB4L!э~ 1?Xަ\rK/EGi B^z=@ ub<5e
+iU_D ҿwՓ#S#` 3RT~,.fGqBL)_w&A9I)LUx^|!
+6mih[ў6ꑣsP-^pjF
+Adok+SS_F!fx,6u F^F+DL$v4Z:-sm&XOX
+^x}I AlLtG} r/\~ӆ/L ynWu/1R1aj PS<b0 ƚaYfi Ȣ#ZO%Əd&H2/;\Ј4;z#x M&\o_O?5Z -Ń/XdR&~W)^shW@з0W'?\BBѶ3iS}mx-7Pkt9gMTxw'dUe \֝O1FP<fH#yA~yXC:~hgO{xNC$sϥK=R$b=iIdm{6a3X\Qb/%v0Ħ&D <x~SfL'u8l^46oofds ڑOSTވJvA%U|,
+)#Xޒ0T~kr[a8u!fĎ򹍽$ЩBw_|qK ?b
+66fVK C]1"D)jԈ[U1.!֏:lOYU2F:-I'L$PMdRe.V**q ®e&0[/zXǖ<={N#N7=`trn)RlH^qF D^FIē9ꭝXq
+c
+l[T{YjJ^T{[Iͧp*غ -Mz+t;;lðHCaa@{/9#<y .|q-H\WrBvF,7$Ze!2U
+Y΢^ʹW;HdFsJ\W 3-YRàZ%Ô :0;8Yu4S9~/=t=MI%][ՐMMN˰c\<mz!"/ԑmCpUN!U=R Дiy(Amw8gic
+b)>R$F{t.#h3B7C^?Gg68PKoIp]ڧ]oeȻ&˱,vGK#h=䲼 w-31Ԁ+6q ;N~+&F&؟p7KJ^X:T/(
+rA\0U-g' Y3EmCoKs^[IYR0 Y8?r/+M*٣LqvfvپrWQn[0u4ϰ2@?,:=X#Eev3sGPXGڇvΠҞi'*qx C)~eS1nuOIh\L[5fB>VMtmՖDH):eYf9@Pm¥RZ6{؅86Xw^Uְ9yHs)FN|XɞtZdekh'-w8kKu˺S`x 31eI!saۃ
+Gn3xE7ҳ-fnmA>. J -Dș;:+Jay?]2dօ9T|pQ>bb潶xv}|W?$#}TeT5;Gn ǘf} 5KjAqs;*'ql]Ǭ#(%z+WCB%\Λf֎7i;zm`?.rBe3-?<v;CYOdD"fe1zv?yQuR~)J5%XAh^{n^k,/ZPyxM'P%1J}\oG"5,mW?v=khͽhIWH$/1u/hLLqh+\E0Zjk.؁FQ1ڂX+2JV>i]Wd nݟTHb{RfxXxqLCOmeA#UѦ*l1klGՎPc90grڻ2/&
+ >{*!7[oZ /ZؖR~]ګuna+mBw2W8"8ψQi
+^Cۅ:Y_g(Sdc heϤ@ښ¢()˅Mh~DJUMX}rhZ: \C!9Iӯ9$:s:eea5Q*vq#/;.;#k_ʤsR],QoxL+3(Sgã=0ySҲ<(_tvJ5b(n:gƏЗ= (%Xi#y]RL8RMǔW_G{55ÿ.C-_N]6fN+3cvۑw\6W1L:ӡG[!_ZƜ:KGxIݕ"clV9l%P@vUH(y+%*rPÁ d:ҥ{!W
+b6^E2z<jMA*7WW3W@(ˡ8n3U!v%E#tD8Alm11q&Q}(z쳂Rm4jr 9qNC<j88,SH`x`7̔M=9&
+Om!IPr2ɛcyz t\P<x=M*
+.|,S
+HcgD^=*t 1B3
+ֻ/ ?/ Lm ;c Cendstream
+endobj
+351 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1591 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1592 0 R
+/BaseFont /NYKDHG+CMBX12
+/FontDescriptor 349 0 R
+>> endobj
+349 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /NYKDHG+CMBX12
+/ItalicAngle 0
+/StemV 109
+/XHeight 444
+/FontBBox [-53 -251 1139 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/Y/quotedblleft/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)
+/FontFile 350 0 R
+>> endobj
+1592 0 obj
+[656 625 625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 581 0 0 0 0 0 437 437 0 0 312 375 312 562 562 562 562 562 562 562 562 562 562 562 312 0 0 0 0 531 0 850 800 812 862 738 707 884 880 419 0 881 676 1067 880 845 769 845 839 625 782 865 850 1162 0 850 0 0 581 0 0 0 0 547 625 500 625 513 344 562 625 312 344 594 312 937 625 562 625 594 459 444 437 625 594 812 594 594 500 ]
+endobj
+1591 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright 35/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 75/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 92/quotedblleft 93/.notdef 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 123/.notdef]
+>> endobj
+347 0 obj <<
+/Length1 2247
+/Length2 16639
+/Length3 532
+/Length 17882
+/Filter /FlateDecode
+>>
+stream
+xڬstݺll۶m+iƶmN;m}X=gBA bh
+ttpc`ad%SPea&fadfsY;:xYxxX%_^v^V8
+b1G'okK+7bj1E.f&
+&nV
+
+%o}CNr+ԧх$Al!̚aA #uJu4/uEyy P2GW>m&Wva"fUQEUxUP@[Gu0V-Qk)  J
+*ȅ G5wf8*GR@†8DI^Cۨ{^Ï\C4s誜d K ,+5޺Px`j8>QuQκx3^<!qr&>z%X23;Tqih[*r:W~ʦ;k![Q.wamU/T>nvTh\l'Yj/4+OO b[?0ϏAb&"o^.5)?ଗX
+B{lĨ\h;G dQjix>=xc5H73& >Ïj7E74ڤ&~/w3s!)l$)G~<!8Y.EX4T0% D$;Oe#/n0n[ >;<r2zo%ʳҾu^%!>^ĽLbt@i<19?bJq ~~8@xgI:AnVuu 5ذWe[lJuO?ov`1BE:$v-UbrsR{iR;JQ׼bX`9t?*I1f5qh 0Rz$oxc;κxśBO f( 8FJaи`%\`=Z, [ɫW5 B4}R^qױ!3WS<%(qB -N젩c+Iw˴zt#"ͶHY-~VͅzK_
+[0,+ԢFԈn<R9MB,V:D0;sYGE}"U]IKgjZqY.yH<MbG+QMB*G=kV.檝+
+CȒƠYZI 6?]b͋wMYi
+Ȳ3oXU]T -vFbqa!2+~8#04ѾzȨkYk,ZWȘ\LeX~Il/$Cn7C/ҕ21 ւ<TWpdR'mX=`yҲC!
+QOD+$W<m?H9xS|3R?T=s- 6M~&
+J=JּK.t3L
+?Gږ-zAݮu`8䡥m}H%
+#9So9`j=|Xrdiv4wpo|M/Sxe3d Q.3H/{)ݛ-ϒGzFh{"ql˰p&%> Î_)vjmy#n4g<d$_Sg+Hq3|;;- ьQoDA7ݚhz['3\NIP7f!2a*7MLex;ͤ>7Tz;- y>1_;m.2,#D3x n!'Wsbld0 زYH=|p'?`;5yziD&K<g7 :,bI2~TTp:.U<]; BW;J3Ƙu~` mA\v^^d
+|ߌRNZP*
+HtBASKWR$u)pJjᱛ$~+_<{֩#$B{ 3Z0;Iy-2qi4N,gHONASFb 'lSj8ywոzOrNbYt.Qe-*!t*
+CAmSp6tSfhg۽M;V')*Uj"dK#Qf?n,n^pFyJ@4`~YO9A͑tg mZɶyraѴ?3S?Bak[N48\.wꝎJz-mz4\ʫa:kSB?N|CFr_Ω-/n(|U FCRĩ)<`9m,RհU$0Pi!i[`U9Q<.rsӸ7c#q?e&4NWŒbod2摃5 Τ<\a 1;`qj# r~ѠDt2U/0kSՃ"
+$
+S}atԺV3yItq_A"jY_&-'
+]b͇٥,zfƷ\Cןa0+h[g߃lw}q%C utK~%(qpaȞ/tnd:ឹ+e̳NZJb2 ;,H8>x
+4e*.zKwH&hS qڊ۷ԧ-1c,n\ c1VΣӎF@fC(v]t6H đ[d$t7Όn@K~cS/8pYv$o!)
+ҡ!u_8{pύ͙lm 2-R־3CSw!K0gon3k7R_1tMaaTdq
+:
+ee`C+n57,/cg z8+,;^nGlQf&GNS:-ݱ7|K&O*;U꺆;IA cu-xUG4VGB4: h"i - MQ_ίyQ2Ā7ɗB7
+8T+k 1C޿yN)B&-s?Gmc_b#ѕ wQߐgvj0nqdDt2zA9grpg''q&qz淧=[5OSl!nTfXi˧2ZԾht殺c]qC#rҠ /;!›ѩ7([)'rb)"OD۽1 )7i:
+VxxQ|&`ZΨoIPh1NM4NzDNƸ˵i5-Ȏ{9C _^ʥ4zQвӼ&L0;7 d]@BsH m3S&z9-֨7
+2(%.%A)34k`yj0Y36bݻO/^_< Q47ŻJ0"
+
+.v`;l~+J>W y_ ׀F"o\} }fCw6KЏ[Q9*Jt!xieřMp/NJ8Ysi=G
+s:ԮsՑul3؈=~` )$
+d9ߕfIԌ[ 2 }@VuMٶTFRl4#wL!O۳x)Y [o0F');^G}"+:6|=
+WQ~CeeL4'?2)1u/ ,C ˩ϟUl>.a\ y_O?߁坯C ArY%_92\[d!#DX)8īBbZ]-hy
+FKӱPnc@t y(MUo掼r
+Í΍E t5`urGcj_ٲ31=U ׮zyOAw33)y4a ǔLj/nڵuȏb
+`ШBZ0l?;($0CseSx>LoOXl\M?aýq0UnkhJԐ?.ɚ)xipKƍk]{,<!ee2 2^ըu&^GY<| e
+ο/:)ancnU5 ۶4~F5^5`W,ivwc^G *ت@V RFo-472 HZCRQ$Eag4DxUsxktqqFz[drGSbDGt]WȜgpYдZ:\r["ej:0BD^b)<L&z-v1~չ>O(=s5+&ߴ
+^s3d򂝗۬!rCDWu4\6p3$KuFbsUuFjzÇ \'+'Rqamq3NtW `Z]]UM?
+eEg=A{wr7kHGS'6Z4
+s2ёUX~Ag>k0aA'{bQhӁVF|hfjU!%VL>FSnU
+n(YGVV T,oޣm_:)e YzlĿ#]nfTd'$Ș3ơ"{t~mć~RT]qlieP+Ld,jI`B&%%o Y(
+,ks d]b) w6^8dZInr8RWUc3{dV3\9bF!=Vmx: W\ǐIչP.} >U[} N,}6Eɑ䐚&4H/.XYʤtm3U8~PLR\*,
+nـv1:D^u9{bcx9dz5ueUb#/L EN3dz 􈆝c?|a
+6 Cc^R}bWP8 IÍ4<&'.3m;GPmEg}Nq:R߅gfFl^LƉg4T؛4<,Td)w3uWަ/+қK_&[ !F.GسcWeV_~LYD=oVg:Ik"/\/!3E:/sͫ:\{];<`"({5tVwehbt>q-w9+-50Qg }fޯvcXcUQW
+̃ϴНkoDxƆȑ,
+s}|&b 'u^rF7RAm4%\3Z
+ńݘݟ>CuP~[]Z AŽǵd? kk~ g!F*2CE?6;9y[f>8BTx$B%#\H gMrضWY8q_ӑbߪ\:g{L߷$ҥfuSLлc*yfSgnrTDfQY+2oߥR:1mBΚF #j+4b!'O*dkI`Գ?omN,%̔"_^E=Ƣmh1kIj`7/YНI2ə+aLȦ~Qc񜀏NI,fx- 4;- 2ngi? !3[bTa&{4}4PDiaz
+M
+ )Hֿ \eLdTA~j?\ %^D%[9G<1x `^cbQ} }*:ۨT%}I;!3N!:sۼΩQ=p~md_Zݘ/ Uַ& @?0bEÄ
+[R'PtН̕TQ> n:o-腨A;Y"<t2:
+Θc*LYrh0U';(b)ig=LWB̻C94&[vv<Ho ?\詘)f9COkɹ3Ke
+EGՕW2 VSGfL**| M{x=ބ +Rźh1k |ȉU\JjsI-t-EӾ(o8)`,J%]0HPD; )uЋ5"PX;#EOC?xy (ZtyxwW%oNf627F[d@b܂:h:ZP ./`m؞!TFXEҏr Dh`_2-|V1>
+"IDD&+djˤQ48\cGEțk!c$PgU<;.栲/vPlRwt4;^}=&d[FYlL rA6ya^
+]q¤tvxY3R"7v$~žRZxp&pyI^i6ȝA S`da8XC7ipbmZE0M *:%q>/%} -] -pr.Xa1!u1_l7.=ټ.<cc0z UʱNi"_m[p~0>3(hFK2 ppLTQWqI @q<G-H
+mɥ'QwQe06n I>E_)@K\##[0|yDcN 3S֡u*~ML?JDÎ#n#Pj3SIw7WNRtAB>dE"s4&MNT'͗ 2eFX60m6pIT[MN8\5h1MЛ-ҰIMf Xhiu-e˞>+z
+=Ѫ{n=zO4Sb_BASHu,t0it)~>tuCfYxk-vbwWF c2S^m
+ ۽ruwMa2jm'ʂ3uiݨ;Nõ=/@.H O ڧ1PWn9g3<eE2&%q
+cl_əyZbjDm%y;Y0 ErN?ABWp=>B-T‡6j~9K¸-a3S .ɕ[d#h3E EF+3,FޑUENcIU Wu$k3rM^wUaׯ65;EtY<Q}S?:ҊI钛}s^\Iykm!:e
+i-<s'
+%ާ,}7as sڰ~׍Wa3fXh>PwYXxZOƫYfބL^{JFVڎ(REh=,, F>ɴv <7ICF)*.A~W2bxڙw$Wޕֹ+[~-!e*?ҞWsChUzjE׉ ނ$>\\` h* ) =& E5C@u{~ro[X_ɧ
+٩G^Uom{)k^ k^/TZ_qWMr;w8')2s++cTAz4$A='mgyWd"{ʽn`bKKB-=T*p+m0#|B& AoF>xR ᗣlyW
+DT-eX_LIwnAz.#3O^>M]ukrx;DV|u
+BOAZ)j6vʞH^m1վC M%HLWLΕ=4x/A.V3لdw9kx~><lT*m-*Ѐ[R>Խ*90V,<0|kh;\aCE qžwmBbWʩ4~6~E5\ Nq
+pSWV}fSQz.T?.F3~n`c-](I<cdBGȘ\)_/)岎Ua,0N%0d/0F7=AV(& ir׺EtL*937 +">Ep$gC߹F5)XlzЯNghXN٫߽lr@<!`$0<wTIu/7TM~Oշu,k{5{:29ɦwzJB=JijC;/a>^fg}DпWkgXmqGoOS,yrAuB_r";v}w{. s޺kEm<&8\r9#cg:i _K'<<t[Km_j%%%ߝIhb}b̑ZRӝgYӭs:6Tb<߷F3qӉ*Γl"(q۠ɲKY[
+nU[<+lEFt;(%#nL13~~ݙҳJS>*dN͵ȷX#2Y}gVFS6/]pwmU+'gδ0Ы03kl%SY?:QjۙgV\_6VYsnA/d?Jr*hlTo<odӼwiÑ:"zŊ)e!ug,'AsyI{"nJQԷ_˝5<b5KIHo)z&줐_Y7:0Y
+膸K҂s</{@~^w?v,4vXxUྼЕ>wK8ObDjœry>9voD%}'-!UoN\o_aT)'Zq|q-WL= ǙMo{q!uKzwEot𽯳 Wc_Y<RFQ~K y}l;_;5TG;u^N]Ac/{c#gf"O4 Xs^4{jU[. g¶/k6Y
+(PsUXs0pmη«׎%UeY."^rJf1,'=vwV6Tכ<T-~PQnfoE*뽞/Iuw+($"db#
+ר€ĢĢl.
+endobj
+348 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1593 0 R
+/FirstChar 11
+/LastChar 124
+/Widths 1594 0 R
+/BaseFont /ZOTRGR+CMR10
+/FontDescriptor 346 0 R
+>> endobj
+346 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /ZOTRGR+CMR10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-251 -250 1009 969]
+/Flags 4
+/CharSet (/ff/fi/fl/exclam/quotedblright/numbersign/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/quoteleft/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/endash/emdash)
+/FontFile 347 0 R
+>> endobj
+1594 0 obj
+[583 556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 500 833 0 833 778 278 389 389 500 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 278 778 472 472 778 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 0 736 556 722 750 750 1028 750 750 611 278 500 278 0 0 278 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 500 1000 ]
+endobj
+1593 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 33/exclam/quotedblright/numbersign 36/.notdef 37/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright 94/.notdef 96/quoteleft/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/endash/emdash 125/.notdef]
+>> endobj
+336 0 obj <<
+/Length1 929
+/Length2 2584
+/Length3 532
+/Length 3216
+/Filter /FlateDecode
+>>
+stream
+xi<}ǩƮ-'Q٬K\l5e̜ ɒ} eI!K(D"dmoEYwO]u]/y=9)!jb@
+E(
+
+pdO
+__vMĒpx"B+
+BAPT@G!F&D_gA,dUZ^EYQQul̄vrS,SGD(OM_{$LyO>ZL7.-3Wm՛Yyf㞱׭Z3}62oDa+
+V:aeEqyFEzq_O3Z}rxƻz΅u[kԫT
+b[& p˩U6T;Qb5K.Kv}~loX&pqMp}&%ZD4}?k溧;b6n6ߺjqބ%Ѝ^5/>֒˵鶣=d? 8YYBۙhcģbNz^sDdbj*)Y KRM~
+-Q1~WGJz)PD@ԃPbDvF|`mWUc`$85zMvZ3vL+xKGJ樹L0ȈO[pcUIQk5>'_*KD{Ki7_}@]Aܕ$[7q9ZჱW/?`qT's&gdhƮA8ʽ9P2$"{$Yl5ƼƢWP֯}%ű Ǔq3"MFi',/;'*Y,DPqrt1U&~1g?ܵ { ވq xzQFԷ@gt5sQ>KV&;Vfª$Rd:]#}NU>Uy#>Mlg{^=yp>X?.)JPR6fx_!\wHBeӄ%wB̥tQwSږ<Xƍ鸓%gO9>y<&9?ŊHolJN*^>j8&R%-6. U;RKފn9@闲2\ɺ,lanh1ڶ䤻:p㛨k7"`¢^UC`9:Ǩjw!;&*Ӿg׎GE/Y<D ='ȇGW(f3=9i
+n|)n%1?vۭp;Z@~(Y[jVp.1
+IȘI1˛]U= wC_b=;n1+c
+^ +٦܈AE̛ݺ)A.Y˻ VQw;m0~u/s+*M8㸋"gx7y/20 HʴDK+}ވ;X{tfm%I#'|zibpEz@"_9eVmm
+_6_E] Sdz&V2;4JFw Spm}Qlе}Lf8'ӝK f0:-9YĔS|^;<%Z-wQփj:Q^^f;ӖI~ofñiD
+Gobn_LN5IL)QBks7{f?w%3Ӣx\u)ej7iP?Aoγ`m[[,lp
+vEUQը?TVy%A0;g=l0mЛxwdd?=&<G٥
+endobj
+337 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1595 0 R
+/FirstChar 12
+/LastChar 117
+/Widths 1596 0 R
+/BaseFont /VBXVDP+CMSS8
+/FontDescriptor 335 0 R
+>> endobj
+335 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /VBXVDP+CMSS8
+/ItalicAngle 0
+/StemV 87
+/XHeight 444
+/FontBBox [-65 -250 1062 761]
+/Flags 4
+/CharSet (/fi/a/b/c/e/g/i/n/o/p/r/s/t/u)
+/FontFile 336 0 R
+>> endobj
+1596 0 obj
+[569 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 510 549 472 0 472 0 531 0 253 0 0 0 0 549 531 549 0 363 407 384 549 ]
+endobj
+1595 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 97/a/b/c 100/.notdef 101/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef]
+>> endobj
+333 0 obj <<
+/Length1 1901
+/Length2 12204
+/Length3 532
+/Length 13253
+/Filter /FlateDecode
+>>
+stream
+xUXܲFw 4%kpAk̵/Ϲ:ρުUߨ\YQ(`SP2 /;[9؋;
+s
+t\fLH
+@3+q62Xd$i4Sr6:eڛoK̇M_.ec+{gu''_YtYXXXK7u0'2@8^
+\A4W7_Ef ?syYM^?VbSn_V/˰ ׷ aU`v,/p 2/
+@So֩͡e-q ]Ar+2`ܞ";U$/>ǥ-dxi]e(xp:Eh^ 45Q]8k4_V\~O׵/3[K2SXH=5;*FpM7͙ _0. _nuqV,l-DI *lk~beoK_J4hLX%ne
+X wcا UYKN J~ L. ZR.X۾B03#kg&rvی>h EƼ[|@Mye=CTOpBNgJ(g_9){
+)m`NXb$M; 4h=5~$T<D!EĶ
+Kj⵾'&m1t`a7kw~}gO̅,[%S7|9's\"ZjĠG}'\!C/|*pOŅi":K:9{Qg-d@_Y
+]o(1]T/$헬4Qފ6b,؜I
+
+^v!Y~!zX\p~zwUY8XǷgk [nz[:.nwBMJ7spl(m0Jȭ}S!Zp`/$ym+&1ChYkd~F @NKA$b]m0S} B94bk1dDCYX:ڽYpvbCf`T#*&=ˆkb%K0Ԏ,tC\6bqރ|3ZQ?onUGĩqy|hZi%J=<}'63ao<g|x/E!ODgv:D6yy"n?]ڭZ8pB;5!*c"5U*;B=a)DN
+w+]:Kԉtr;@q-*C3
+m]|P@"u<V+,j"MoJcGy84~H݉k|ЙdβrE
+
+r7pbo-깱p/|gk# mdm(_⯎eYttjH,\I3fHa/iumd*
+[vcL
+Z5Gtpi`6#枂mjEoǮl
+<#P;4J2Q%LUO(
+jQ;KZzBC9[Y~T4`2*:6faXU϶\5d\m4<RSᵌoUY12ktEgwѢ^a[񩤰5 |4*Pg1 ρ)g#K
+YۄGnkL͖)P$й5a- =t3$=lv=׬≲e!/ za3遫rauev Ȓ 䭧IFwHTR,$u02Ï~\q'~[ :ˈWمs5sEVI ZQ- L/3*A/ 4$Gz7T2"+et"z#c@0 nSac%6@|}- `#AzU5?WY~:>дz \izkI`5e/H?%2O$\cfbN8[K
+3)8'Ӝ@46}wBԅ%mXpv Nq1i=mAƚ.Xj- $A!9qPwޏv'Eotx DPU?):@O?vI8Qj JsdDmw~_D'|
+ƎEwd*5-adrSJBor Z6 'YE\mZk;#zRKgUs˗V^ѰuV2zh+soEa4;~yb,Tl <oب443P;{s㵟茗ĻxR+/y.Bۣ#Sp<UͿktE<M (~zO& od墁/ҽč)<MexʑSf,4ԺW!|MnnM :*v>8H=N2o,>O&0+5l}Y4)fASmLX<8ͦv|}Z')5 ) dr'F&Ӛ+uCk頉zT\~E7E\ 8߭zL81+T{.AdLn=ġL~-?q2Թ~F|l~]-a(`ȖBt$G 34C7ߒٞj 7CClz!I[A
+@({"Cpd.q,WbIc|b\m쩚+'v%HC{fm(y?>q1nJzyOq'9bzN8 ƚv5^xJ~l'}J&lf4 ZιǚF`‘{MhaG"24 V/)곉Ǖ#A{,>*I 6ȥη24Qɹa+߸o+ { -(< o}Ex9㞆gȋ?[]~u%ͥp]Qk6wm
+ m}ǟh{UR&ʑ-]Ct%L~JVE0CBf$rcEK:^P ѠAxf5#1z/Cy[52pE)1U:tv0DrH7^1a>P@c%/Tv@T͆/DgrTT\g~ɨƵ50D4zbpm
+N l8A dv ̯˝Mz+\T c2󒃄2qԘJ^UF0-9=fJe7mjtpžie͛aJ
+M"E֖|hldrryEqYlAYw_@7l*CiʅA'(Ezmz`r i$N {Yc3$WJSF̎S>=ĝS/^!R.B!c9=$AO V15'٩ӮSb/.ꕾc~u }MVFJڼ.g=hM)B-$F{ؠ} 6|%~cQ a Tnhk:gCOBedȏ&#HC|ȘqO$ P;gK0KYQ
+!Lhvd`q
+Wضsvltݦ o 8E,?fo-ln:ΪeI,} S֖c?k/v @e|QtSRaQ0 q>UikƖ."c##MwȽwΰzŃ*鯰Ȣj\uY~K<E4tۯh>W1v^rG4M(KI'dfP ZC7SagjZk+01&&4Kc)lgYMMS^}sårqzk TJN3Ԥ5[}.&g {tA05L 3/yXE*?MVdx+ּdf&UXwt6 3"@zf2_} {/=7{~jXkVqtH{1=-Lg깶AN7aKN(3s掤
+y!ߜִU ,)z*I]U˂]|Ү Q.x\| # Z%β~M,jm
+*_׵HI=~qY2 i<7dAy pa{l ' Ŀ'qWQGF_1 5".PҳQi%JqM/nw4O{TUB~}a6dY#b$*&*%*La
+<zxw|dDl6d@w¦YRE*nތ†8kmeXTkH4&WF}{XE=Z򩕐SjAPdv֧}QS9c @C>1
+wiTr1Fv5?bӮq#OlY?Uo5$y'zlJ\$_#c<jŔE5s>L`X^O+ZsW:iq_yFT4K:K0x@KDLaL>u~b¸҆B=@)lCXLmh^ Dwطs
+;g_! P5 yfGQZ'ћ^'eе~\{*y3~AkTg:~+QKk!bՃCU&co+el~U1㡄[?8)R#A˾Fω5@qq7bba0ԨG:2#7^VQ>TRņ`{LPvtۿ0ol GkFiz>diٷidT_6(f9.H3j
+XU1 }ʽ"C]I6›Mi)-fl:vu0# I\ni8y MX|k1'bX4㾘&Wfx?g&/ wu~`Yd\oh ʚ:?NPN7 * WA!ӕ|R٩RT:|=E=x"C
+t2F,ҦKZYxc7"uGVL[_/a1 s< @0i'&26)s,d6&;n"Idnn<2\S3 j=I3
+%niue`'3mTJs/L
+Iy
+sG,|%L#gv4U+|,Gg 2o{ &ңGciݙ8lѾo^N9՚$Q04~ 4nOVZMFEx+`%z;iHX
+kmlBl%*'84V{2n~Kh3{SrFvDlT?lg gO&az4jǐ 91_ܒC
+׈(Hht}/f\A9ًgUkp_4 OSÅyKAk^d\ }+-[G8|o.J
+ A,jމ9OǺ:yE{&+FՇyuZe:6O%Wj;
+@h[U?fKb~s|,D<x "mb079gUv9h{
+DžZCzbUqHx6>?%w=BdsTeZ澈Kd So${a`&OD [XY%?_+Y0P[7HE'猭- L|bzm'c-C|-AǏ޿34W$@"TD!Ţ,
+3A.&i(yxؚׅ9gyWkCɭfQ;3jWr~_?:M<♺f]ϳq(_nqûK$ǿ~YFc@Ği kEWQDu. O*T ]WuҐv.x
+ےq.zn4o4kT~4}ԡ[1q[q}0{E;I~N(F]T "
+pTY~N}za">tQf '&:߾.+]w:Ružxd! 5`9CfB{/l,)U P3 bu[ kiwܰf `kؿmQr~Ie*-!R]!O~CZ҉w1$ݼь1o yJW` R#ޱ9w4ٗ
+0EšFɍ#W
+]p.z>ݓ"j [gk Xn~/2yQ*,)NR[Z#!<_TR o]4<ScKa Te^y%isʿ3'*X`W"wAN-ffAUo={#a@5`o<Pv2þ m`y W
+CrI<T=ե:C#d E1E
+) S}w"FYjRME8g'+F؜<sH" m u !rٴ\1Hw篾o
+;/shc ~!ȋzdLݷ #MSL1rw
+zQ qBC|m~hAJM5jBgByN1ߊc7vN*
+t݀zc1V>q8yiXX|9a%2BqMXeSN&cأp(I{vHW#Wm|Mw@ײp!-E>C;rլkf H;Z8"pn%6ίDq]~1+k㇃vR)A 9,3=CkȰ!UPӏ ط> ,sSRޕ;Z cj2Pd"[em[SF
+#*)1y߶2G |a`b"bགྷ2yH8yuȜȆ?tڳGˍ5ҵ'm[r|N'MoctXxP¿֨CrnAN"U 9= QY3wj;,S79_kzGd͇ 4#q1M:2Q5O U f-<g8!+*l7{pJɴ>Idg،q:brj'I&'+|P=_g'.QHGMўNAhRxW
+>Ow^ &U^0 ڮ"I@x,YS y/u{-
+z)/fdj5kw_;l` 趥d{¿]rFq'@<s
+*h
+l<FkG-&86~j7*<j[\jF'}*G`兺 :02uGPWwˢ^a%ԴJ.9XMzvGe9\ڞ?㉑d$c'Vk-F{
+endobj
+334 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1597 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1598 0 R
+/BaseFont /DVWCBI+CMR8
+/FontDescriptor 332 0 R
+>> endobj
+332 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /DVWCBI+CMR8
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/FontBBox [-36 -250 1070 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/E/F/H/I/L/M/N/O/Q/R/S/T/W/X/Y/bracketleft/quotedblleft/bracketright/quoteleft/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z)
+/FontFile 333 0 R
+>> endobj
+1598 0 obj
+[620 590 590 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 531 0 0 0 0 295 413 413 0 0 295 354 295 531 531 531 531 531 531 531 531 531 531 531 295 295 0 826 0 502 0 796 752 767 0 723 693 0 796 383 0 0 664 973 796 826 0 826 782 590 767 0 0 1091 796 796 0 295 531 295 0 0 295 531 590 472 590 472 325 531 590 295 0 561 295 885 590 531 590 561 414 419 413 590 561 767 561 561 472 ]
+endobj
+1597 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright 35/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/A/B/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 76/L/M/N/O 80/.notdef 81/Q/R/S/T 85/.notdef 87/W/X/Y 90/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 96/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef]
+>> endobj
+330 0 obj <<
+/Length1 751
+/Length2 733
+/Length3 532
+/Length 1278
+/Filter /FlateDecode
+>>
+stream
+xSU uLOJu+53Rp 4S03RUu.JM,sI,IR04Tp,MW04U002226RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8
+@'T*qJB7ܭ4'/1d<(0s3s*
+s JKR|SRЕB曚Y.Y옗khg`l
+,vˬHM ,IPHK)N楠;z`99kCb,WRY`P "0*ʬP6300*B+.׼̼t#S3ĢJ.QF
+y)
+@
+,IH 3NNպ&
+&
+F
+f(KRJ"0~Z&0SS+Rn^Onɚme X9X&u3SjM*,y־%
+mHx֮"&4׻,^5+Åa3>_xV/'x楼pZkBZAo`(&^y?ҊoO^~ש&x,o:e} ;yVђ T~x̝4lWg%?.qp>$oW>hJ;Ǻ'
+DG2O^k$[Ĭe C6WP,~ٸ~ゟ;ͳgdxMPđ:o)]؊^<YI!leKJ*1LѿBK6~ٽg5;s!$x7^K9w\gj;K>Ujn:u{2wGٹޡiNʓn艜Z\=kGNs| d |ິ
+_l{ݷ^xBYZ잋gqxTD5o\k;YCs(TTyN
+AU+Ke ڵ=\q_Pܕz2Z[N58?Hy.;֬7sU/.̙{'l>W`OO<3 ʥwlKUQ_Y~X*A@NL-Rw\>e%=;l5=_ҰiNK,LnG r^P'iXh--XͲ
++z (\ sRJs
+endobj
+331 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1599 0 R
+/FirstChar 3
+/LastChar 3
+/Widths 1600 0 R
+/BaseFont /RBCURG+CMSY6
+/FontDescriptor 329 0 R
+>> endobj
+329 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /RBCURG+CMSY6
+/ItalicAngle -14.035
+/StemV 93
+/XHeight 431
+/FontBBox [-4 -948 1329 786]
+/Flags 4
+/CharSet (/asteriskmath)
+/FontFile 330 0 R
+>> endobj
+1600 0 obj
+[639 ]
+endobj
+1599 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 3/asteriskmath 4/.notdef]
+>> endobj
+327 0 obj <<
+/Length1 2133
+/Length2 13140
+/Length3 532
+/Length 14296
+/Filter /FlateDecode
+>>
+stream
+xUX\ݶh .;)
+w.Cw^ާ]x1fm!*2e5&3 PdSPW1"QQ9]@.@~
+`gD<,,]
+.@;pSc[
+ 3@ tr1#̬L]
+:ϐ,Kf {[OE!K*&_vV=dt(̀N{&fVv{TT`L
+Whom -Ɣ]=b? n@ <?Z 3+{~;9{"7
+sX@NB<
+.aZ0,mP_{9o'Kc,kɥ'nW
+H3mgzr;E?rf$= ֎h LIהF!%b|;]Ů!vwObG,{"?/f] )? TӧK,¶n=wKLa(I#2|WVONWV;if(5/@B' RG|`1 c2Oj韥oDG(y? #Mƥɽ}S.񥽏r\_l(&N%=dZ_pWt3U
+ie4.+$OAkgIcZ {fv;`iĻ)Qm'ԝv|f6CPU@#&QU+
+
+ ~('<;Ij+r~YNa\-kZwGOR|"{|frS=BkF1K|ȍqxBOz<Wc]0FAק͡V=Cd@vΊ囄@hF|[_ u g={ZlB[|Ej8T
+0h8*ko, ߧ+;@w]|O69BCI0ٻP-aΰ%4;hn^
+/SIȕ39r&|ih]V ; ŏ
+$eI%)ZC#)kg>^В#8b 7l" DPE[?9V%yT2OnBpϖ6&cI UD҄9s˂&B]<d*_ݻq)B
+O3
+5} q1{wVD~IbAc@w
+9PA˃%9/s(Q.D.Q9izQYSDZ?]\Ic\f?8H49l;'m!. FfM#x/ P
+#%Ncv2 ՞nB/`Af-}Iv
+q"?LH=NVG@|jŨ0aN<
+Ӯ9<[/)!e͜#'s/k;͟eXIhPY
+A' Ty1v⟎KFE͒ 0u=x?!8s` YE`daGQH)L@M6,Vd!{k"}#%v,E+<D8nAvێs[)ekAY81LN I er!vc=pO!Ĭt\v1kĉhJn]!n
+
+ ;kP&UdӀ+6E.6Rǘ>Bӏ,Ϥdr}aHBy1_~*qT=* 7Q$ $jc<
+8axBiU.rƂ *\衝l.kP=V`SDz疯^ /)u[H05Q
+X[{ 2 Y7tNN:/a
+B\+nb&JػceNieDSFUp7sCvVOc'>[0.^4PV;+fZJQ LOjresDJ q0stgZ.Nl 7Vѯc=avꙍSW#~hUNye)xmo1~ƈUhP+뾨>yۛnr]XhdM3!)-bt ^`/Gkxxߞ.2:]dM9QIKQ׌ځ/nb
+6eLH2 Օ"iIht!E+&r1)g(A*lo lͽNxCiێ]8JQ.+;Aۘlĺ@6fX"ڤ !7̿ܽʐ6*5@l)2c   :)iX^lC%Z},5
+/a0֓>u5O}O4KsNaw &;|z|<VQ ivɚ~{ݗֹt5MӺ/.]?J ’)Bރ*!eӧ%Cb۔Bw~7\_
+m)99|z/
+c͐rv9g -UF{w礯߳A8OИUv T%N =#qVrh6\&Y\[t/h0)Y]2Iݿj"R{y(]QƯF
+|vyWCYӼ[o-|YRɝv.r_ Jv@ET2*^W'T$UFC(X-}?Y̆.۱/X}qY$"?(tnsKc\\:Fa`| ={f5Qkp2;!O|
+g 85z}\][5b ҂VÅsUF[2}gF6ovG&+LEK퉒  xXW I?'6PE~/'.S SQs*$a.!!%k| $\Oޱd\
+غl\y~zR~`qY$ɧw!dLp+,ǵ
+_ 97ftN>g LzM!0d|Pɣ@7=S9 `g`}Ix#,[U5lǞ ޒ֕k)<nSpoiCji&p
+r#HDvl4m7nf9#54 gRKL*)hƃqȍ\nF\/GP#ZgXS!*d(>1?S\_ϱ(%:^lz&Ѽt#E,mHtHaCirU=9)C928[Rrpo@8H6p(rwUX(a;䒬z]}&6d:LH<rթ+;s U'b# f
+ƨ.kha⸮襏O,ׂ]hp8d(=~ vߐ):.] D #2 6;{T~֖{x{VoҰ)-I ( ,Du<dB-~47
+%w.):o(5Xs ոQYIOHŗ4^LHt ).<0Y5c%ȕ"iZ3J=>35G8HOԃTԴ8u}ҏl+wf V#bsm9|xw>e]cvpGXhG(ӫ',Q.]츴(C:ISS
+kU4\@/uR%Ah\v4_+&+ScH%#UmBa`.:H>r/q mQ䈠S8MFcF?h=e=GWY&ZwΪELf̸`PٰZR.uo$%.>X)qJ׫S+I/fI  Au'qh{h*|3+߂ #8ԯ}\
+B< FKK#P`z* ηdֺ鏝IvΧ/oDX0%Jm9uc|L0aP7/w/{v=YENj!9T:mzr*q3y thO\[fcŗW+
+N 칔/DEM72Nց
+)O
+5g]eT^b:oߠ\%Tj:
+C"6fQG$#yg+HN O}GrݺpHՍZ!=6*>dEPSmZ9L~se`vO #c ~j)ml}h>)dK:UN9&Myk:֞^٪,K{PzzxJ^sB¹h ~䨍)M ![c)C!d^L=RKƽdڡV̗wT:sPZ̒'gL}ĝrs1r2e-MsY~/'Yv{q|Ft y-^>ON7 &G%e`Hr37THsKx&[6qm*I^%񦥧 rO r7s~Yxݞ1чK$F"3aC i
+_($ kp?B3Iȼ >ch=`̙d
+i&/^Gk(۰?/rѪO?]FʞeRY:QQ}EG!/b$B,nQQM*xdt#sR 2^9y uz-i҅Iz>K spS4nYHFK|kyA~8FBTD½+"=l dm
+H-9Ɉ kZS7`{=gkFXO?HP7iE _umM<Tb4}7ZKuO@ߚ~R!vFCv &AZXfp}AN,^[ 9-%.5EQ'rXE=2:]ofbHfû}y? ^dNe?9UY5oDr
+Iۑl̉.i{#gGaRyń "K_
+0,LpYX{c NzHхPP<ױ1n)wkrv'ل.\gW;^I6(9st7,2OQ
+-|cRRдBGҪ酹h|dĕfYA*٣:*;~xhpd7dU=5 T>/[5 "a#uMtRthU|
+zg
+_/e]
+9SOUofUVDW&uYkK~i:F}ͨw@Rq=܇KcS3)Mjԋ6JL.j'߇qP2[fwl6F)p7Otv(%<',M1F fc;u,rYz*JvxFA}PoEO#wހf'.ߥcx&2޸hoj#Qmϻpkc(1~Ăax%U_pm !vYZB]($0J5U"DЇͦU~dm$gT7Hg
+.y 1
+ Cf gGBs[ϴ¥mLrxU
+,UͭC7bjI{,_ӈ e$WN(
+dϿYqzH`#1>"\ke2FF ]zr!Iwkun":"=>J:nW/z4l' qDc气T ΧCKƒ Ry}V_\<=g"oSD)M( !SCЋEbF+vy.#%Qy2! \ ۫*5BL=H8 8V?x|bϘ-{b.`WZ\q{5$Pm͏cVʜ0
+I߫=Q-fC<S@W\ NN#|o..EӨWɻ=vNиLvٺ`u[ ݜD'xMNv;\sǼ<٩N2|j']6p$K}:cc
+endobj
+328 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1601 0 R
+/FirstChar 35
+/LastChar 125
+/Widths 1602 0 R
+/BaseFont /QEHIZI+CMTT9
+/FontDescriptor 326 0 R
+>> endobj
+326 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /QEHIZI+CMTT9
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/FontBBox [-6 -233 542 698]
+/Flags 4
+/CharSet (/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/bracketleft/backslash/bracketright/asciicircum/quoteleft/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/braceright)
+/FontFile 327 0 R
+>> endobj
+1602 0 obj
+[525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 0 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 ]
+endobj
+1601 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 35/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 63/.notdef 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X/Y 90/.notdef 91/bracketleft/backslash/bracketright/asciicircum 95/.notdef 96/quoteleft/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 124/.notdef 125/braceright 126/.notdef]
+>> endobj
+324 0 obj <<
+/Length1 1037
+/Length2 3315
+/Length3 532
+/Length 3992
+/Filter /FlateDecode
+>>
+stream
+xy<{ǭYJ] *9:5i Y3lIR$Dv"Kֈ-[Ⱦ, Y5<Sw;ϟ_u]~-!bl&;8,D90'8R @ ȃTMAQM^U.D@Z"(E80]PX4+ha0)EB!X!
+a
+$#OvBS
+B&T*`vZ^ZLnxna2YYa&zщ}^7foV[%θn,Tn,*3ޖgݘҴi, 3cygE~rGj -T1=O1lT#!aUFV$,؃k[\Q;ދd"~!NSjB^_<S Zeɚ9VE
+N
+i5&&43myrY& q7} x)^jV$XkWˀ~
+^@v͊(%f3< d^|R1\/Z4`\×F#ַ;5$& I&6&'tDuy zfx$pJvh#=eq8W˹˕ AC"埆)Se׺Ίc YspK(;buA
+I|mY#Mu,Y0jNf):,Jt$5v'M,Lɶ]6 =ݢ$ճIƀ:"
+|QN~U>zt1;gFHR3tONl}ߒIIg]qݬ[ E5lLdQLX#hs+K4z=BD2&q6&FFB&cwziuC8[$[)wHXmYIDG[_ɺ-MZ턎5 BKv]D
++'`237iG_dU|pN}5Pflԯe֭~ 5#-/ s ~z}'{~LfWeádKKFg$rwg?ڠ1 m1Dz<~Cߥvqk˗/a6{UKVCvAsX-'MaKj"sҜe8tAo_+XP
+8?d%t܋=K^2':/ KoPa{9UMѶ<nFjh|x.rӬ`kpĪ7J}NzV,|3Oi+mYd7 {Ɉ--!&d{evYFHjr
+~T-Sc㾩h@~SyWDɭDQ۩C cx鹖+e9_q7'2טvE5 sfxY'8+gz? vMP42q,R;qjI316Yԭ-"{}6]09HXJE6cUo|BxNDy4ס4.麰iCO腂md"(w=/kYmv׫"r~xz"4i/IcǢf)9<miU6NZMaO
+Vcg9MYl bfL7:6] `Wψ56ij>%1Q $ӥg86jN,՘Z^36j;xٕ㍓×G-ot\zgMirp廔}l2[pf)}[ !1*׫\NT6_ZJ N-XȫR<-ƥӦ-Hl+I%40@aqOE #4fRJP^ zf)vi=}ɚ eN_\(srH={i3bc1;"Y8l{tY_*Ci^|ثHnTm=5Csx-B SLzX/Z<f^qoy =` 7ґF+R\R2`bğ"W*?j zn6+)G2S]"/L2.ؾ|Rq8;\N .yiˌݢ-W"ޜgz˚fwM%rNr*!,ñ85{ ƶn5KW/hX)1=e.,XSsSUd.>5 ͙dSf]*Nw۰zJ7DHG\d|BF,H#$ҁQO[q[ +X!1,o9|sa%3 )! َAT\\pP~H%W
+ +oIIU(Tbg`$D> 6͛aXޡo#]3=g8.Ql^]Z%xv ՠW\ ᆌb-UkR|>9o~$v¶#DN⋥ҥm0R dHpb[0ԒP#]ʷW:iaWNqBZDӅFwٗ5-$4٣Mg۷Eiu"#%'Z+j%Pc&M8ܙ(\`8rƘwvlGb3ItrWLQ-i73$ʄ374 l^m{w;ɏKḯx=:z#7isz|8LEk$FxًzMvթP=c#䍘o=x_%:_Ǽn1Z56}}
+.˼I??өZc:
+G 0(8 n7yendstream
+endobj
+325 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1603 0 R
+/FirstChar 12
+/LastChar 119
+/Widths 1604 0 R
+/BaseFont /TEYVFU+CMSS9
+/FontDescriptor 323 0 R
+>> endobj
+323 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /TEYVFU+CMSS9
+/ItalicAngle 0
+/StemV 83
+/XHeight 444
+/FontBBox [-63 -250 1027 760]
+/Flags 4
+/CharSet (/fi/fl/hyphen/S/a/b/c/d/e/g/i/l/m/n/o/p/r/s/t/u/w)
+/FontFile 324 0 R
+>> endobj
+1604 0 obj
+[551 551 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 343 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 571 0 0 0 0 0 0 0 0 0 0 0 0 0 494 531 457 531 457 0 514 0 245 0 0 245 816 531 514 531 0 351 394 371 531 0 702 ]
+endobj
+1603 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 45/hyphen 46/.notdef 83/S 84/.notdef 97/a/b/c/d/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 119/w 120/.notdef]
+>> endobj
+321 0 obj <<
+/Length1 903
+/Length2 2778
+/Length3 532
+/Length 3415
+/Filter /FlateDecode
+>>
+stream
+xSy<(FT㵕%K3HБØaDH!˱˞cK( 521dckB%T,}>>U@C
+
+cbO"72
+!B$x5fNeA46J@kze4]*7(V˱zMjKeŕ>1sܮg &]i 0dDdgv\2z+4nErpSܷ dOtЕh;9WO8x:YLW<Grx#?m匨]?y9D%&ɫ%];ײ]զ›d⇵rPj͒GL 6+FO  }ٺ+,{B%ETO}dxk%1o>uMe#\{v< m^ʳjfFz0}>D).$<{ꌥ뭁i嚳፝0ڀfRQk0I>Ճf쀝mMܚl,~vl-`Z.qo:yg:}59ZiS &B-ޒn⠗ ܿyӞ=KNC> GInj#a,5ZZQ!iF%^>Mj1r4Ż*^9.}h$_ӗUwOv$7س\~g8;H2$ݪMi`b-rx>1_k2E8=)[tP`#.eDc˂S5*4ަ<2 nߺ.@2M5(T8NMzŁ`+yh<w
+OS8vH^I[jd-|:T@݋ 
+WΙ2Qڱ(->b4tuޓ]B#N TXkvt)>o2͞_Q<Ģ! q/wxeSbsufV˩?z$DwFTDz]E4`mpL\Z"E !Ɛk&e*ʩ[
+.l^U-Z֓ͺ)T'=rD! Q_O\fp=8UO amkèagBމta_^_Ho }iuku&]BQRΤ_6x\rN}Yiq<HH'SJkJ + I$%M+
+-J+"1)3`|B7 ,}IZK7-".JJFjƌ}juel)F 2 KӅM3re|'ٜG$ƩVpմ]nw Ŷ[5?$ֻ
+M3N{$/haɫI^=8x{#"hXz2N[ULkYnLNxrDϾk+=_{Vxsd!Igdzs 8݄ .HU<9FW+om o*Ѷ}fN(AXbb؛wD&;zml4ؤqDmiNИܝr|RcYXU;զ{Vӷe `Y2&&quxOuAk|M;Ey.V fWUSf-ҔwJ˘iHGqٹ@. ߔ:N='>+\ E f@EC# z\j\t˘`w Ǖ%*[_eZp^G6> ZN)PC,zBh̨F7 Q*rMi['XXf_4)<okڤ>*$Jzu<T wro']WS&8-)BY"GT!59@b;b6#Rف\c"K$neo؊l璥 UBsƗ
+lMa\ioܤvј<:ۚv>YݳQ ‘,>m>8B RES\ƒ5)ј5Ћ2? K|my #Q-т \whGeUR'F,89b:9O3WQe~.
+CYW#23f.9M<pS1(e: vp6HgNc:Yh{BO$:r]L
+endobj
+322 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1605 0 R
+/FirstChar 48
+/LastChar 65
+/Widths 1606 0 R
+/BaseFont /UHESED+CMR6
+/FontDescriptor 320 0 R
+>> endobj
+320 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /UHESED+CMR6
+/ItalicAngle 0
+/StemV 83
+/XHeight 431
+/FontBBox [-20 -250 1193 750]
+/Flags 4
+/CharSet (/zero/one/two/three/four/five/six/seven/eight/nine/A)
+/FontFile 321 0 R
+>> endobj
+1606 0 obj
+[611 611 611 611 611 611 611 611 611 611 0 0 0 0 0 0 0 896 ]
+endobj
+1605 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A 66/.notdef]
+>> endobj
+318 0 obj <<
+/Length1 2015
+/Length2 13504
+/Length3 532
+/Length 14598
+/Filter /FlateDecode
+>>
+stream
+xUX͖h
+9
+;1NX
+@@_!sGQs7#_q
+tBT: 8);?s s7-zZzzDJ
+xႂn4W{
+1f9#09
+Hj .ɛ*4Ck.`)ԪpDʞrV,qr1Ka\G~G3uC Rk) hIF~I7a5Bn-@V6uT+Z2&BEdPuW8
+w%
+/l+'[ffњU,RBBpgjuY*^GcА*㚎n3CV=ՠĚ-Qk?on͘9C a2\#UɲBLu 2t<Ho^c\ls##ihZO(WCc TvIe[q+WZT0[tbX^aD0:t#)P
+Qn{Ϟb_ mW
+Kk$^jA)S u~c.5ֱ}7-l8UTe:zv~<$g.aWٮA=I\ܰ0}ۢ
+_N(a_pI~G2U
+ #cjz:wh.W0%S3Y^;F:g)xɐ' <Ow[^O"v &oylDfy>ȓ@IMxbkVnj!z!=_\T)(5stD"U8 2/%]͔ 6=0Q)H0]\%w眑, T~s]1_>uJ\W~ǦɞޯeSA<g\ 2/vXڤÌADž|Yn(<{*ͦA&w"n8L8J{d^cg/~Il'+?vdI5ȓxD—)=Q]uĠ!SJ ARݐ9"S;:ĦX\60 HНfۏQ0㤲I|܎+gvx boO#j$6nvi"=JK|(j25L;
+Ꞛu}>#F?!ZYOqMmgX] N hbAM}n9mjP$,9:;Jp2XPK',V"4%`K&IY2YOŰҵ*a㖅@\,X>fĚk+5eT!\[
+~9,w%>/ׇfI"_WAwYJ'4ά;s' 2o#?3ՋOYFN]2r=鱼'sʱ~xƇs`-,n~7zkdYUC*xiK\ԩܶ!G0ccܨ=w4%A#q &/
+cϯP`$8X);To4`<R'~NE\meE0¶H==I"0|΀o%yq#Ojdk1Pava.h
+~kQ<vir BmD
+ƯHpW~E9n$;?Kӷ6aۇa
+bEֵ*;oFdzFk; z<ڡeGP$v}<@WwRJF'3hWƥ\찼Ylгd4
+O|8۫ś%7׈eft} 3<kL4'{m$Fgk7 )
+$H&nu1L
+ &f4my5A.DqėЕX_֞kж+{Ċz[Wv{Q
+sڂ.f;Fp|:Yxxn
+>3˔(|(<n!vH)W9~&J2j؝2Ϛ*d}%>';r+wl0Ὤ63m}?~N#d(]!qYqO\I<mU 9OѬ_U'X)Г/svUڠ׾7D%[
+6ˮL{GJjŃw4y7Hf>Ҿ>(#^ Z^.ukĤg%bN(sj\,v.j"B<Xʍ~uq)Ċ}.ڶ,6d [~fCBPiX܄xAc<I[e\0$v2I5 3a9r^E5.b̚@;Ճӭkp9OjN|.PcԹ
+\#; lUz b~2+!~j(%
+.ʤ,_W=6 #i%sRΜEҸ>͊O&NWi2=b(F#WCtM+u-N$f/vٷpƥd-v!#"g$sW,Z 4X+{Rײ%V.v:\uC ܆Oݲti ꛽*q ,rh-+@I."a~1X GɹMg2U\pVwMFz hA|g]}z)\eAtl$ǢaG2ؾF2
+Jm~3"՝btXe_F٣閟,ޖDna󵯨%5V"-x6xWJճd1x؟Ϩ,(0$\<ǁI/um2˂3[&\v"3O9f
+;evRʺ] fϼhc?LJĐI.¿|: ҫR?3vLQ.M]~pA OqW?[ac7MA+YpfѬd}@ѻ
+}R&Fk"ijYPR, :𝉽 6K~9'׽dESl~
+<qDEhڲPc" ܬU-N31wa?B(O$e~O?mV|#<\)V &Y1Uu@#yEh9f Ɍ_oٶ| %]Η4z%BRpWOwSH
+ ݮeyYy m?~}4vdR v?QE%p:܍zKyZ>@B`2#-LQ۫[j¸\xIq$>5y
+&\ornzm'1\NKxԁ4~Ҥ.>a
+Cu S1|EsۣrĽe
+KMB\+3%w@>$ۻ<a-d\Z&*ܶn|wPs܅m'>frYX Q O̱["oy^"=?o\[_%⇨>Tvh"'܇A/!Wso?<JEa3OP%3 %IU=g^[u}]QDMw qO*wsjHzqOB;Gw* zц76)E6xNNibVQn3<\5h'TuAG갎̈$A:}Z[#.r攦^eF"n"?sPG0<㏍?@6.~37ݴezzLD㓻t{B)r(
+Eh#4"mCf JsLYXdޕփOp`HXxwC2}ʘXyXx+5mAa=Bv `9ZXMN \!@0Caާ ˡtJ>b[ c^rڸ3LFO1oܵ_AjE07MkFЋ
+<OS9I|1yLTjwܘZ2w]=r<Z nxk YAϹkQbfd-
+cg #balzq8Vnxrƍ1r^~r9,:5qM)]Z*Y0JQryg-XacnȪX_TcI{)[dgc gWz[dMŸ<^#5NU>>}09ꞦxyLqo(:nUGhi27a]Pr(Ӳ1 @ NO_b
+<H/W`^vWӠ{P
+5 xW>Og~{+ɃwhYZA콉ьbb[
+YjJylU0ӏ""XB* q}ܼ[!<v_؂eBծ&FZh^}qr+.y]fEɴ͆KJ05h,ް,cLc#N "AofmJ\e`T Gu?Tbd4߇~H #|,Dl6'!~rbʤg74Lnwzz7H|Z7LA 6^gwoPfE"i)\{x5ZBE Y Jiyb0곙;gWLܯkBR߿F[=NB4As5TjB GLҞvkDY"ۋ5!$40;NmH; ]7W[b&,Q<,f'_@@hIt)L2abDŸ~& ;_d%wdCY_vحPVi pgy?8f}ǧ*|\]mv3wY2!J j39&ۜu7
+'tΩ_q@1Cj}wBKXj^~Rjq,")Mrмt5/1$=-.[~9+#ds6 gyFϑ0syOE,˛Tgo/;c8p_{7؄{.
+1qр7mQpZQWnxچO/Yaz"ث/5$sDHvQ"9pNR٭L74v:F‹R-\Up~{z%oքܷ-Ǻ|$$xOWjӡ>d"E_v缴ZvevQ1s}]?3yM<Zʞ5(SQ*1;٥8P #`+gvd(N_ .H
+{* Ldn$g[
+)'. ۇ=j笼 +&_RVSZ(f ]^:Վk|q$Q7]dv~4aVp >Z'Z13ik?6=vbi՛셗=:|W7)! u#BN*IBee&Ǭ63D[QOk
+` ~ϑ[hV"x u+[RKK=H;e8iϞ-+=`m@łql!%h4nIbpך&zoxǎOfD c|f!?gQ젖ۋ}
+_8iUia=2 D=EϿF åe3 n< oI+) psPԤ/TMO [ i-ȹ
+Jz3ghcjt eOUV[G]dH ȄyDəWP1jK’R ml1rOR:f2}׺HQ \SmFoDHZƭ՞\ gU#2
+ky":7+[S%lhh(49[nj,PJz^ma5jh3jsŸX!U.w_*V Q 9%ujlFa J #g)"QY<E4q1_o<ް/ݕvt墕IپsHLFxnw#(BBRgSGK
+HIɾQrrb86LR_z/iuzt\9c挥ptF~J86 DϷ+5 e8b$wm;%*:5(ZXoF^7X5- / ;x"µ'̹_0q\胁qflryuh(tT,;v7dbIIM΢##כ1@iW`^.OR3CkÀ"tH Ձ0Nx7<e&-7{O[gC=4j0?6lPXn(v'
+k2M,RЩJy5DaD z<4#[h+XC[n 7<"<!}UH9+o;G2vAR _ dx!
+)idN <,afN9 6KPoCTCA94gbE<'cTG,͸jC\IbrSaO} LBn+۹B+cu6<Zf? d>}fmL}}N6,e#I# F<Swan `]y^ e4RԻq/j'#3r^X!@g~Ǥڴm7YշWv,m?Z4f2L-
+P|,W1L(+$bcpS~3V"))}0/t+Κ?w4²߯Geo7XQL e1}׉6VK
+m-I1['R-E,7m(9mHFr řb!^ {ϓ+x
+0$'~t'Dg}V ;Lr+J0y;I|P<H8N[?/ oc};PۦW$ ؏G\O=VȂ65`pTp=.C⽞׿kNIXô>*>Os]UӜOQr:QZnMY|!z]p.٧'@9!6k攼8ҋ6%M6!2+"QD3ٖXjc vEhmjĵ!TFzSKJ4֝!@ښ
+LzyVjп?{Uo5 в6ރJRǩ]q:/n
+h"ٰ¡XN)hw8e #tlUu-grU9:柁ѫZ6GR:٩ɏAqGŅ؛SFO"(+z/#B
+'o9jv8vǝw}]R7!t]'e#IPGWM/cϗpcR/ ˏѯ cXnZR(n k4̾=վJ&M_,63$cnHWެ)iЙ+A>t?2sh '}!sޝQBY9T .& Nѩ +FM1tIw%Uٵ33(iF>Ƿ46U4tR4DQ ސuCg~+
+Y!,(r A|72:DW;ҏM\9Y7r H2tGԁ@R|{󱑩N3.f4 PAv8ˢ"oZ*/f$1lwi׌BnDN,UZG&߮u:]}7+ ,L
+ݢRiRR4ND ÿx|%o\||aϴ ]˺T
+ZQ &vUfYUv:y/Y7H=~썑I拗9JG!e1;̤;HN̝6"Vs®En1.4X[$ Źsz->wK\q]T6:NH"VB݋nVr&%#U8>Wr;nnkΠ9Yvř`#>)! sM*jUzY!C'7FD`ui&kA ^
+WׄP$;}/Z2ol#iu1wqNKf1x,;8{PY#M2@̐lm*-kS?B9mGm#zKԂ~H,Fc@A!G!!w Ɉet3UQ0{ёaiU(}UMz7Fs*K|[3v%3)DoXDǭЩS}s!;tRhXËքd#ru?Pu/Xϱ*&\>)>: b8uV)<]ؖlpi?;I<y7W7X xX] &;f*
+Q(xҷ=Dڣ .;E vee;c 'gE%|"Ym9|C7[KAʍB '(Xҩ%Ҫ])q̼65z: W_K.[[Ny%̲.]%
+xoU:Ƥܻ*k%7gagkL@@gu*>)cZqa-OerސUDpg"\UQy+'h7a˂vH.\5"h@aLKh{JT$9n_즑؟<M!]XW};./6ԢڎD s#xKE7=q!@Zo3DZ%fCj_G%cwԚ+s{Hʠ>W1>l$KRm_.D5Дd?.}qٞڭQ,WcfTپ lX]:+OK#vڎ|<bw3u#uY_<$c })K6w1)5) j{X2T'CRL!†pȐ¾=}86! ~u~-<!ñe $dBʨXFSIṯ!L
+#TrPBֈIšN;񜴘詋E,_8z,1L7׶.!߼ChzL7CHR |J+,ԆGX<On,8K IJOM5|2L sz,/>%tWc3H~N#' 5-g_& 3rog56
+endobj
+319 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1607 0 R
+/FirstChar 11
+/LastChar 123
+/Widths 1608 0 R
+/BaseFont /TIFRXC+CMR9
+/FontDescriptor 317 0 R
+>> endobj
+317 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /TIFRXC+CMR9
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/FontBBox [-39 -250 1036 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/numbersign/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/at/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/X/bracketleft/quotedblleft/bracketright/quoteleft/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/endash)
+/FontFile 318 0 R
+>> endobj
+1608 0 obj
+[600 571 571 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 856 0 0 0 285 400 400 514 799 285 343 285 514 514 514 514 514 514 514 514 514 514 514 285 285 0 0 0 0 799 771 728 742 785 699 671 806 771 371 0 799 642 942 771 799 699 799 756 571 742 771 0 0 771 0 0 285 514 285 0 0 285 514 571 457 571 457 314 514 571 285 314 542 285 856 571 514 571 542 402 405 400 571 542 742 542 542 457 514 ]
+endobj
+1607 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright/numbersign 36/.notdef 39/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 64/at/A/B/C/D/E/F/G/H/I 74/.notdef 75/K/L/M/N/O/P/Q/R/S/T/U 86/.notdef 88/X 89/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 96/quoteleft/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/endash 124/.notdef]
+>> endobj
+315 0 obj <<
+/Length1 1150
+/Length2 5608
+/Length3 532
+/Length 6336
+/Filter /FlateDecode
+>>
+stream
+xe\kARCR$b蔒.KIfسzzޟoeu^quެںrV 3WOP
+!o( aeUpv'E $ȹ
+s
+c/+ܓ_$J
+r"_lmk d3?Oo/P*BiLЬl KD p *H pk/~/FqIȘ{g4vf:A0u/52TbTԓ{#_CQokģ3;TLYXmMQ(å<B'QJXH[&#wBɷЬF^>WCyo_% Em4xmaĐ#h=~5ͬjs^+2¦x*oi\y}~8p>e[ZBr8J֙hw22˳Դ3\<)pXhLL\ 6q>I?KlbӦ^.wNIxSL.3Zf\$/Î{Kâ~`2ٰ~lJT9xmGHJ..׀~^hP5fw/%C!cI8$ſ /#X\l1oqct<HGSX.T s47Ӗ_r_ } +Q"sw2KK"'=gVF P҉+1~+hPgXt`ryHN@*׼4߸>ЯAL؈ Vq
+)O {vJWJ/M) 9٬~׌B5!Kch*߿b?~tFTv\'0s3<8[u}+̭\aL}<~)\wtn[7¹%t\ՇT=æaJAOèh >1Hxʃ&_bWj̺NidbwU~ga"& 1o+FǡM
+KwČFhe0|0(7(I2R5檠[ #êF{Zc<M';Jq| C~Z%U-sjʙ]{&{͚@s42ŃP\kgR!/YŮ+~ꇰFWÉTGiMSGk J2TuO&pp#炰=kc:O%HFP=3:c̔jr,yql \}υ[LS[xZ\KWLW3"HTU ]dCTy]/<L@)BPΚk5VO19&yFH- lk]5F15`ej/OA5`jHTs?IT3?3)uzBbHKރ\AxuDխ ,Y|Lvmm8~'GX6Z2d*cKgTwK- ߫eM&l&?0,&_ZO8Z*;𚴊k!Oy@%kl˗6x7 Cog K2ŸZP]C֖u}j-{".0+'աR&^'uV_pUs^hRA*/u&ڲ
+Ws]
+4#O>~{R܉>%nf`udbX%P cHY]E ދ&*bb3bvW[|RF[ܓa╢mA[L{V~,[sK*;$t߰卓{f`%Wj_}Bi.r97O
+))(jɃKۙf6sd~Ehc5qtm4d"3Dwg?{$]a6s3n
+Q1ptG09EY b[,9@?jfVrcڰROSi+onl`裚1ÀOzorst7>BE?a-(lUR]=5WpdE×fm>ħTu׺#xwNZ4{.V9PIV%c7ezQӈ. =r)dm3(9=WE0y,{Z AO<qC%ޔJUyF[LL>Za[<` G3VYkfSgz~Nub)+^1g!Ή2>.zP$v$[)fde k;]j|-@8䣖jt߲[q9U[X~-R
+$6:>YN ~T| l(-I26QkY .<2޶һϋ&K]* [Yr/.٨8l+sm;`To>3]S`Dk**^|d%[)rgRptH~k4S5Ma:2Aq }'s{:cwS
+^N%mr2XJ[~ @"(6|,L~㦖@P};fTS 4aܾZ_n||;ABr3 X
+V.nco($g?+J<x9!f(wHh$2Sd3 r-~~Ft?&'^=#z?cNa2/45'hE&Ӆ`DU&&Cr׆yŅ ˮU p&Rt0蒟L.kysp0QN6A@lBՅP)7;XAGnw`ir9wtM[mZ2~Oz}AL* gYҖvC(}AP|bzF&j7mm?oٰ
+<|&ȪɅT/
+(}:*,`/RF8)mThKreS3u
+<D $YrQ}jD`ⱂ8 xAc k!Sn mdB.9  RweD 1I4\]ۀ>[w\;+d A0Zpɗ6/4==(:g61MkZUrGoŴ~Z"JϘcpÙ˯asA!q?Dž;PWdu,os_^yHf~.wUG366^^u!xCy2ї.c <d0`{7{l#t|
+nmsypĥ Or^.
+󂝡*1k=2ЇR -?Q07@loOnmJ{X6>-
+J?y pE%0EJ4s8ǰQl+|UW
+4¹ܪ`O*mfo52$C3(\C9-ZCF]Mj3wIMqŘA5xUd *7Q3U}[RY^fYZ?w)+vt P#
+endobj
+316 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1609 0 R
+/FirstChar 65
+/LastChar 121
+/Widths 1610 0 R
+/BaseFont /UBPDJD+CMBX9
+/FontDescriptor 314 0 R
+>> endobj
+314 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /UBPDJD+CMBX9
+/ItalicAngle 0
+/StemV 117
+/XHeight 444
+/FontBBox [-58 -250 1195 750]
+/Flags 4
+/CharSet (/A/C/D/E/F/H/I/K/L/M/N/P/R/S/V/W/X/a/b/c/d/e/l/m/o/r/s/t/u/y)
+/FontFile 315 0 R
+>> endobj
+1610 0 obj
+[893 0 855 907 777 744 0 924 446 0 926 711 1122 924 0 808 0 887 657 0 0 893 1222 893 0 0 0 0 0 0 0 0 575 657 526 657 543 0 0 0 0 0 0 329 986 0 592 0 0 488 467 460 657 0 0 0 625 ]
+endobj
+1609 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 65/A 66/.notdef 67/C/D/E/F 71/.notdef 72/H/I 74/.notdef 75/K/L/M/N 79/.notdef 80/P 81/.notdef 82/R/S 84/.notdef 86/V/W/X 89/.notdef 97/a/b/c/d/e 102/.notdef 108/l/m 110/.notdef 111/o 112/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+312 0 obj <<
+/Length1 949
+/Length2 3204
+/Length3 532
+/Length 3849
+/Filter /FlateDecode
+>>
+stream
+xy<{dz%#V#!cƒ%[!kbɘ3cwaBT($J(eߗ=,Թ9=>_}~u]"&fg5QxGP#I9LIICDD # )+
+@O&bɀE+H 8Av]H0#1 [
+b7H)H J
+( 8Nݑ <@"j
+<P-87%<-ԯX%w]<WޕNqZ3Qw_d9aA@Q&2 ao?@m, $5IG6&aj{/VZJZF-~yLģ08F+
+ mۛцZH:\bI</5&?nE8dSF̬,>gz(Lt_I{{<g3sɶ
+!fS?%ډ%ˎ+KLsS$PMCqX"LW24rXDI9O(yOZ].{ ]o7w|jR6:jS"hWD$5JxuBuL+hZ8-W;:Xtc.[m_`>Xk3T!tO'~=?ľtJD p=xZQ'Ǜ#t}2тopS;|cIsͺ-8ՔOv*40b/QJ0sI4(" CZJ y2ߑHXn[h+gt#Nt͢pm8LDlv37Ώ.bZR7oJX~Q.n^p/ѹuDǛe!pxԨ6~wMfyi)1v7@+bVa8~NG*6#?4:nazvAF@7yZ'V)f܂xhW|4fdՐƴ˦j'¬r,Dms<Cg }9OT;}MrsI/Hñw?&9 we#ZUaa'T7xVŘmx|~ݝs7r<sg~FB3PD~]M0WgJ
+_G3>t!}5v+LKkYKNY\Qkd靠o
+uq CIyC lOAsIM#8y^;T?=MmW8%鞷 xFTU^S@f8A\K\0֢SMN&—mYhGiy-MhŸ?D'&[V8 Ж`/tM!2Z54ssu|$<oQL?="3N4{ ["
+&@aM&HN:1TW;@uKk 5AW`rBA{sY3,fP}wőĔ5 #OϧU
+;*lNUc:[CyWNf)a7=Y
+qV е='eW$ 3η=q$8}|ϻ-,wEd57/$}ލ?+1BR ?+֯w-D%쬛XC^o{mz3]w{!79׫T?%?H`NGԥL*նfF]SXܹxd8VK{Y7>1 )TbpQY'\W;-a<Cbyr8Mo{r:ҼUjn">sJJ1-Wt=pluz|ORI vS/Z,bj 7幷ɞn<7HG2  xS0_ny(V%S駫m:{ҟ#9PK5uxFKmzKoSOʎ{ 9}kbf򃂦łG$xכe9k޹x,p 1OVL.HJ?cyPZKTnMo·@Ct1䝈vK7ܟw]]q/ԃkBkPRlN#$bq'R^>ү)4RכѢ<C D Vd/dl@w7$+Who}}*6:bR]?A!.".|¼гtlfd﹂%ɐC*fSM#W *a**M 'F-y#49쯅@9<d;U=-6;1Y܈N<BZq)=TLM=.\haq߲(U43Sv%lb괝׬bBGwkB٨mQͭ3g;ݙyJuBUͧN.U!~lۿb"dᵺ6vY4sc
+f{e_aǚkG.vDԵzNISB< +iCVgf蝕{lq5.Bu2e2& .ܲ^źF޷ӌ;cWbHϩ-c-u#Bm/Θ1*,( EPNڰ)6_q<:hc޴8R|)R0E)mj9\ud
+endobj
+313 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1611 0 R
+/FirstChar 46
+/LastChar 117
+/Widths 1612 0 R
+/BaseFont /ZWIMCM+CMTT12
+/FontDescriptor 311 0 R
+>> endobj
+311 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /ZWIMCM+CMTT12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-1 -234 524 695]
+/Flags 4
+/CharSet (/period/at/a/c/d/e/g/h/i/m/n/o/r/s/u)
+/FontFile 312 0 R
+>> endobj
+1612 0 obj
+[515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 515 0 515 515 515 0 515 515 515 0 0 0 515 515 515 0 0 515 515 0 515 ]
+endobj
+1611 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 46/period 47/.notdef 64/at 65/.notdef 97/a 98/.notdef 99/c/d/e 102/.notdef 103/g/h/i 106/.notdef 109/m/n/o 112/.notdef 114/r/s 116/.notdef 117/u 118/.notdef]
+>> endobj
+309 0 obj <<
+/Length1 1422
+/Length2 7465
+/Length3 532
+/Length 8328
+/Filter /FlateDecode
+>>
+stream
+xeX]RRZbi)i$fa)AAZAs I gzK2Z{q 3>y0
+Cp%;D
+wp*r$wBm@pKa!lw~< k@q @
+;
+oG~A89~+"
++&kH eQ7Jk&:HP>&T?uE~OW7FdQA
+Q}` o@T_mzZ?e7
+'B]}~|
+z3?mp*o3uyw3VIDղ 3鑤|E03w@z]$>?"gF1)jrكcx1IoindKH
+N;T,)|3,nca_i'Rߢu`r4^mu!>Љ)L>5֗2YAءTHqnqq}bƐyYzKŮyQKr@zeu
+П=1]ME;E+o27ptOeQ}g( ZIG:7E;gqv_WU{ψ\
+FFO:עHIeM%&l?AW<Ӂ?۪AyZ"wD%o0LNv'%q[E:JxrRP2d|ךK~{U]"t4D>1Lm9tm[lHo5=+%P^>@{qI>3pIegKZszVhӛR7|A>Y}V%VABQ `ei~Q/QtvVGMWuӉh[ҳ?ͣYRt9?3Rcij6lMK*f rhyz-hd'uuR8پ,׮WPQfJ_3{Jwo[?زRpKOZ[=M
+RU#b¯H^`1/B&i.X^@//%% ܇mӭl }v]ʲ+*9%N~!v6Z-)a4Zu<؝Ez E7[M(= g;Ε֙+}}W ꔡz 2MwLwsoOXqv0'4α8 5g˶tVbt~ۉ;y|[wӠ1D rT-7o:Jgjjo rd DQ5kS:4ӱ,!}ԠLK]񃨖b?OqgLe+0߳'lRÉ9UqR2p\9 HP++ڐB%@?vY|ٴz8N  󽪼m:W% gڭ/,k \eiYm/BO=JNQv$J/їFEe+7m7q\
+V)Ms>N^>K&pyYk]V' !5 !1e:۩Ϋة6w A[=AWi7mpBQm+e$$o=f}C&/~2A^
+chہЀ
+荎@ ?N-hs#"u*?ߜ e|Et/H`׎ ,"u}F y`Rm5Zc
+Xghx 1 /)|7 {x`6._ISik ۓ9R8Y-hߌ
+)x޳ʈKmÙ\LmE" 5wWI:zVs҃i[Wc_)7$> 25W!,[b^G:,swZߤv&`sI Wi5BZ=Afq@f 9ZtAtMh.KAM;[`Lt1_q$Fc8]cFyѼg[ nl;z.mcO:9T>`,_-#Ni_%Z1[1d (}Uk0TB 8k(A>tّeJC
+%YVCtsK}c1[.(L:n7h/j&EN[CvgguV\ ICH('Yh=-S$۪io uŵl"Sek>8I_/.5V
+^n9C4J1jFL9НT4''V0{mrBi%_+#(:vCb|=D®Òى}VV,<a-Y~JxutŅ#ڕ}7[UzA1U6l.fAař+}qZ/+0[ :7)H.H,i h%^,׼-^yICYts#;R!ΌE{6H&ڤ5nb<&YMNZdGSuNG|P7
+ uTv.ǰg=/A,J9}
+U0UlzY{=jz&~J'ڱ-h\ĺ1E.sT}ֵ)d:#N&>#ٛ7LN$6Z,)ڲ^fkdgM QQy/Vv <^J[] N8NyӍy_A[hQqኾ+!
+wC #m]ip/`<zH#sTtT#};`7sLߧVCEM q.1qN-HA&Єje_EHJR>7,zPKz(GgKΐ.%?r;I5pc^\*HTMi:RF9f/X}w, MhRq &'uw{p"jwD MQMvA D:B꜕S8#
+stOVGhB|"vCo;N%h}47VF:{PGGWՍt#0vA%I7 & :_bD=:(
+x7/,V^ 35MPy,}smTV8g_R
+
+ zɴnU[Qߊ>`fjZ#^r(Ayr_Lt~S= 7醸2=WB^wxXNSPC̭|"oiRP/*ۇ)C؋ ^<Dz=E@gB
+vdŹ;L}=|+*Q`}cLb|_Km l!!@j:PMI]4X}m;#.u~ ;AhS]L#Q+z72Y70Wͯ{RX*Jx=̅Y]?U cfB^uNsQH6H(Z娼~,cw۞)q=Z7 ]v+wuҒBv~`Ics^bDXlljo>k|#,8Tt՝~$8fFO{KgE! _['!שyaH
+a:%qn"p 7/X~jt@KP_0Z`+rNKR~ӂG(/gؤuv^J#pISK)M:Ğ+&?
+% gОPp4v%T&D;7X~H~}QTP Υ-N
+m*YNY'E
+zF
+zI1Myes{/ ' <lw1r}e+ cU^_VtGhXl"Eԝc.<8r~X ZCjvSZWc*<zN#],W2֤VkmOo
+|ߔwy 0myj^(~~c< ЗH-q(3jϺėy =cnAOTlJoͦGkïSr*%+!3o#x5LelNN
+0h;Do6Hyr^2)Lȱz3J[ئDTm?rڣ/sZŠ.Ɔdh ֎c[2[:x0# ?/D5B M7:S[gF~j!aѬ e[b,pd_{8R41DTſ2Mw Ni1iv̘!^[^/zyRB-7C׍U,XfErWQn߮TZk[SNbV9t: ZA*|Hl 6t%c$= *AW(JhX-_뵓-/q? <Y2`LUf}Ac_8Y>n{5E:~|[;o\N-I#)oz.0[H}`cud, phLw691®zo6n\dľ 
+
+y/ 4d.[fB$\QOa^ӰI곞:|q%Y.J9?oP*pЂ} 8Aήv'J]kP>gֲ1HϽfx.JAn0P_BдTMx/COX+Q}ߚEfv/!G D~%0PqhexؙMi85g=br珃fE`I3O{2k-Xf^?
+9Fe5,.!!{:;C W52:W<
+P .kД{:Q#i8xOyPJ7yA Y)]Iugs%o;1N\tc+|o
+&']uX^V%Cz)wY nz0s&~nVlddN۰V7?'#dLzC8"2:Ohi<LzIseMZBƯK沥P$3VwܼA]@r… l._G];T}xlYCdB ?,ˏ;@NjSvy޳_*E;Y1Du3tgHâ_H<=䄈/ij榥լ70Xy őI0|fT*B9*X݂PG?Eّ y/uSyԗ]ʹMƬ)AbG ע&Db9e9K[-rujֶLOx8 9r~C
+vj@wqm`. x=\"ŪAڗKwE᧟`0=ܪ; $R]<T?uh$kX9Z+\c n $?8]lk&FNi(Cb(2=~JrȜFEdy'ֲZ!/[ MUhpNa]qЮ=KYHCj}BR}`F؂a~HwOEswڛ#S%*:WJrX"irhw
+8ҥT4]z1538u<?3hzmP`6gcn08 %/Dp:zendstream
+endobj
+310 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1613 0 R
+/FirstChar 40
+/LastChar 123
+/Widths 1614 0 R
+/BaseFont /QONJDG+CMR12
+/FontDescriptor 308 0 R
+>> endobj
+308 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /QONJDG+CMR12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-34 -251 988 750]
+/Flags 4
+/CharSet (/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/seven/eight/nine/A/C/D/F/L/M/P/S/U/a/b/c/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y/endash)
+/FontFile 309 0 R
+>> endobj
+1614 0 obj
+[381 381 0 0 272 326 272 490 490 490 490 490 490 490 0 490 490 490 0 0 0 0 0 0 0 734 0 707 748 0 639 0 0 0 0 0 612 897 0 0 666 0 0 544 0 734 0 0 0 0 0 0 0 0 0 0 0 490 544 435 0 435 299 490 544 272 0 0 272 816 544 490 544 0 381 386 381 544 517 0 0 517 0 490 ]
+endobj
+1613 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 55/seven/eight/nine 58/.notdef 65/A 66/.notdef 67/C/D 69/.notdef 70/F 71/.notdef 76/L/M 78/.notdef 80/P 81/.notdef 83/S 84/.notdef 85/U 86/.notdef 97/a/b/c 100/.notdef 101/e/f/g/h/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v 119/.notdef 121/y 122/.notdef 123/endash 124/.notdef]
+>> endobj
+306 0 obj <<
+/Length1 1004
+/Length2 2211
+/Length3 532
+/Length 2884
+/Filter /FlateDecode
+>>
+stream
+xSy<kVY'[Y&W*fdo3E31,X"q{VRthq*-dC>dm!:罯Q:쬁SAK*Dfh8ЄC1XJ12@}
+2|A2K8"`k( pZˠN xM8 l͑ Ň
+ xf*ѹ
+}F`vV6nu<%R.
+'R
+:* [rS)?dH;F]vrNiyG
+!a,E!3-4]2M<|iU<IU IvZ'K|0*?]Q57 <.,`rJE+,A?OMRuYTͳn_7tiPJ%OiM=ƃc8,!A|!2ťY6ɧv(`S.શ9]tl$k:-[ύKyCuag^69ow$ὢr؍¿_Hݶzwz$P|F gij߳(UT{
+-2˞Tp5\:=%g&?W)x:?<iմÅ; үVlTP<`Op/S6D 1Y S8~AM#X#}g܏N.O=isbD‹=<YU*UTx3˳MiEhŴKB-sʦ/?kQUTBJ*eJl'Ǖxo'_[/KQ[AՂ]to#_Y]k_W"TpG'byasZ.NX4lTboS=_ ,~ߖtcKJvJZSvhENk[UKRCSc1LxME_ou$!$10>SY̖gb]- 55Ԫ7^G?HŕXna^dܩ
+^U
+Ƒv&ӿ<k8ڐ==ٙa)5:uG`lK @8h"0>ĉޓC9xY0".4}6+s. ctm /Ba&F$5Miӡ(g{P*8G/~TW*˚ŸWSǹ#x|oG/ѻxԦ\žծ-F]z8@[e( Q4^ "}1&3?KxGDg=.Tu7S|ac{;pż[jv5HbX<5G
+BvĪ V kET@V:Z4+®$Ej.%i>fclYA<j50y:!#&Q>3†?<60vycdhDE9ۚ]o㧪s l8"}}Xt%7rs2A_
+endobj
+307 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1615 0 R
+/FirstChar 0
+/LastChar 120
+/Widths 1616 0 R
+/BaseFont /UKGIWF+CMSY10
+/FontDescriptor 305 0 R
+>> endobj
+305 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /UKGIWF+CMSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 431
+/FontBBox [-29 -960 1116 775]
+/Flags 4
+/CharSet (/minus/multiply/asteriskmath/bullet/arrowleft/arrowright/braceleft/braceright/angbracketleft/angbracketright/backslash/section)
+/FontFile 306 0 R
+>> endobj
+1616 0 obj
+[778 0 778 500 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 389 389 0 0 0 0 500 0 0 0 0 0 0 0 0 0 444 ]
+endobj
+1615 0 obj <<
+/Type /Encoding
+/Differences [ 0 /minus 1/.notdef 2/multiply/asteriskmath 4/.notdef 15/bullet 16/.notdef 32/arrowleft/arrowright 34/.notdef 102/braceleft/braceright/angbracketleft/angbracketright 106/.notdef 110/backslash 111/.notdef 120/section 121/.notdef]
+>> endobj
+303 0 obj <<
+/Length1 797
+/Length2 1668
+/Length3 532
+/Length 2246
+/Filter /FlateDecode
+>>
+stream
+xRi<kNYȩ2Raf1-e_*gØa}cPDv%K2u(8'd;t\u_u_.an%#\@!R@&VV(,R@p]:g@4(UU!H
+z5x
+`E#@ #@Q(o QBD
+pPHv7d y}<FW U*ŨCTh3I;q 4z[P\8t ɦ-w#/sPJ(=5}ow<+pkC}3ڼ4 \ί+ eE9z֯yF%vֵfE*cm 2)gbjdB׼bbRpE2X|n|rq/ p#>)!j|g`@_tpVB0F g$ &D3ѹ-bT~`RlEaZ~Ѽ'2c9ŽJykH.84#y%9=_gk2JS"~#kETi<yvmLa)'0ibKGɔ5 Szk1F0}ɱ/,x'\LzW]?#|)h2-<r[+#+H_JkE"G0>t@t)oVǞ
+AaSEa;2ú4Gf#$xH7g6p7nUZNzhݗs\1L9wg5~']C:1YSɖ|Kqc6Ƅ6:rrZCMViYj ]ڂԊ1 +z֌gcBC&6]lf&cSn1kg^D1qf>&HO
+G4dՅR,R_g+&<ҙ5yAqXG
+4أW]5E\6U _m!Ҳ6uɭЛYGHΣA8ɺORceEʒ:SaF7ĢPkq-—V.ڿ W'xk"PYky#۠EJۼ?뇢3zlk9$,_]3K=qU5rQ]>6d/L34}LSjkW
+ClW9PwdA\I+;EceRLRk2=z8,hUʵ031#(5QӛK+^R1˜$mJp+.oh_WJ3!{CYX} nO向IÞx \ǎH^6[8_$\쭭R/yV8b T 0z2#Ҷ gf3ܶwWUXSzU7s͜MX>z뵵Nʼ rdH)r)`3׵K6.4ߓJNmL5nJa)>OԬ?]p͒wmF@#=OXYc`xv,Y#_qgQͭ^ݠX1s2n8Q)J!FũyL^D+We5[yG&msU:vñaYfVQ#\eoZ|L4V{*DegM,><|˩]+ނ"LuLqa#J\dθ>u\גoڑ-r%Hʏ 54j^$ 7-Tq<<fn|"xcCڍ1JzwÑ$V]:f]a+aU,\nݤ[G
+endobj
+304 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1617 0 R
+/FirstChar 12
+/LastChar 117
+/Widths 1618 0 R
+/BaseFont /JLYHAR+CMSS17
+/FontDescriptor 302 0 R
+>> endobj
+302 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -195
+/FontName /JLYHAR+CMSS17
+/ItalicAngle 0
+/StemV 76
+/XHeight 430
+/FontBBox [-58 -250 939 758]
+/Flags 4
+/CharSet (/fi/S/b/g/u)
+/FontFile 303 0 R
+>> endobj
+1618 0 obj
+[503 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 522 0 0 0 0 0 0 0 0 0 0 0 0 0 0 484 0 0 0 0 470 0 0 0 0 0 0 0 0 0 0 0 0 0 484 ]
+endobj
+1617 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 83/S 84/.notdef 98/b 99/.notdef 103/g 104/.notdef 117/u 118/.notdef]
+>> endobj
+300 0 obj <<
+/Length1 837
+/Length2 2309
+/Length3 532
+/Length 2901
+/Filter /FlateDecode
+>>
+stream
+xRy<]׾b-BE"+ cfBvg+kI$Cɮ=*[E ut<;{\[QAG<  d &
+hm~}㟈=/-_Hl7Zߠuo-7V:{P&&Ā @C[CH }i= l@0
+L"m+KM#޲[s]_CQͷ iU[(E#V ;̈R\њii6[+Q҉:#ёlj TU*3ɧv](c? )\/jB2lzI/)rBܩWqjl@=\RPfbsZP
+i|̽mrGvEvCP}o-^~GLJҥ}NNZ@l*V۲񠲔Sw$ǬH g5gtǖܝUn7r9ce-F/,D4Od,\e p {w%N9v}Wf
+Sef8 %FNr0^;
+wm6ɣY
+=!170]b1OA+8&`J9owV nO<?2t ]D8tj.)]ƊeEc Z)H\(<՝,.|7|JzV5I3oBj^IJPQ˘_K|ݯU ^sOqtuWr--0ֆn=k}|j>x~mNs󑭗9j*eCk@b,ZxsBV8kF^ubdk>yЪB_/T^PiR.cc*Q //v"O$S?q~3'B>ƌO}N*8w)qc;Z$:wDD|"WwW v3pr%e's.z'j%#\ifD)?^<`.S275F o/gZ|nTi7q?pxR61 N'4+`VC/u^J)^^wp7Le\vWnQGO8nXhu.Pq=>qc
+s`[b4`NMCk%^5e>uܫ^w9q6[f6(&HDߋo%ef/yr>> Cp<8D_`]&,Xߥ,lH| ﮣWG-f>U֟_ r_>
+lF`=%$!zY]l:c<}WJJiDWLP5iUh, DJ~i9nnmW4\Gި |<"DnA PIi}*W,_Q69_Ky
+rM%>[H|DζzuW}_i=FQRHk+CF4[6D򩡕f3A~
+|Y]ql,]}g15dZ&=׷k&Y6WY(Q!uKjP`D|Ȳ`ի+mM
+\eZ;2N
+W[T~}%׎4OI=qzDQ;-0pƟ  V8B||
+endobj
+301 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1619 0 R
+/FirstChar 80
+/LastChar 107
+/Widths 1620 0 R
+/BaseFont /LJSJLZ+CMR17
+/FontDescriptor 299 0 R
+>> endobj
+299 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -195
+/FontName /LJSJLZ+CMR17
+/ItalicAngle 0
+/StemV 53
+/XHeight 430
+/FontBBox [-33 -250 945 749]
+/Flags 4
+/CharSet (/P/T/a/c/e/g/h/k)
+/FontFile 300 0 R
+>> endobj
+1620 0 obj
+[628 0 0 0 668 0 0 0 0 0 0 0 0 0 0 0 0 459 0 406 0 406 0 459 511 0 0 485 ]
+endobj
+1619 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 80/P 81/.notdef 84/T 85/.notdef 97/a 98/.notdef 99/c 100/.notdef 101/e 102/.notdef 103/g/h 105/.notdef 107/k 108/.notdef]
+>> endobj
+338 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [294 0 R 340 0 R 344 0 R 409 0 R 494 0 R 600 0 R]
+>> endobj
+745 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [696 0 R 791 0 R 795 0 R 824 0 R 842 0 R 850 0 R]
+>> endobj
+874 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [861 0 R 876 0 R 880 0 R 894 0 R 905 0 R 916 0 R]
+>> endobj
+959 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [935 0 R 961 0 R 987 0 R 997 0 R 1011 0 R 1025 0 R]
+>> endobj
+1048 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [1037 0 R 1050 0 R 1062 0 R 1074 0 R 1086 0 R 1098 0 R]
+>> endobj
+1121 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1621 0 R
+/Kids [1110 0 R 1123 0 R 1135 0 R 1147 0 R 1159 0 R 1171 0 R]
+>> endobj
+1200 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1187 0 R 1202 0 R 1218 0 R 1230 0 R 1242 0 R 1259 0 R]
+>> endobj
+1279 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1273 0 R 1281 0 R 1286 0 R 1293 0 R 1301 0 R 1307 0 R]
+>> endobj
+1315 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1311 0 R 1317 0 R 1330 0 R 1350 0 R 1356 0 R 1375 0 R]
+>> endobj
+1389 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1384 0 R 1391 0 R 1396 0 R 1402 0 R 1406 0 R 1411 0 R]
+>> endobj
+1429 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1416 0 R 1431 0 R 1437 0 R 1448 0 R 1455 0 R 1459 0 R]
+>> endobj
+1467 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1622 0 R
+/Kids [1464 0 R 1469 0 R 1474 0 R 1479 0 R 1484 0 R 1488 0 R]
+>> endobj
+1497 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1623 0 R
+/Kids [1493 0 R 1499 0 R 1503 0 R 1511 0 R 1518 0 R 1522 0 R]
+>> endobj
+1530 0 obj <<
+/Type /Pages
+/Count 1
+/Parent 1623 0 R
+/Kids [1527 0 R]
+>> endobj
+1621 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1624 0 R
+/Kids [338 0 R 745 0 R 874 0 R 959 0 R 1048 0 R 1121 0 R]
+>> endobj
+1622 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1624 0 R
+/Kids [1200 0 R 1279 0 R 1315 0 R 1389 0 R 1429 0 R 1467 0 R]
+>> endobj
+1623 0 obj <<
+/Type /Pages
+/Count 7
+/Parent 1624 0 R
+/Kids [1497 0 R 1530 0 R]
+>> endobj
+1624 0 obj <<
+/Type /Pages
+/Count 79
+/Kids [1621 0 R 1622 0 R 1623 0 R]
+>> endobj
+1625 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 291 0 R
+/Count 8
+>> endobj
+291 0 obj <<
+/Title 292 0 R
+/A 289 0 R
+/Parent 1625 0 R
+/Prev 207 0 R
+>> endobj
+287 0 obj <<
+/Title 288 0 R
+/A 285 0 R
+/Parent 275 0 R
+/Prev 283 0 R
+>> endobj
+283 0 obj <<
+/Title 284 0 R
+/A 281 0 R
+/Parent 275 0 R
+/Prev 279 0 R
+/Next 287 0 R
+>> endobj
+279 0 obj <<
+/Title 280 0 R
+/A 277 0 R
+/Parent 275 0 R
+/Next 283 0 R
+>> endobj
+275 0 obj <<
+/Title 276 0 R
+/A 273 0 R
+/Parent 207 0 R
+/Prev 271 0 R
+/First 279 0 R
+/Last 287 0 R
+/Count -3
+>> endobj
+271 0 obj <<
+/Title 272 0 R
+/A 269 0 R
+/Parent 207 0 R
+/Prev 267 0 R
+/Next 275 0 R
+>> endobj
+267 0 obj <<
+/Title 268 0 R
+/A 265 0 R
+/Parent 207 0 R
+/Prev 263 0 R
+/Next 271 0 R
+>> endobj
+263 0 obj <<
+/Title 264 0 R
+/A 261 0 R
+/Parent 207 0 R
+/Prev 259 0 R
+/Next 267 0 R
+>> endobj
+259 0 obj <<
+/Title 260 0 R
+/A 257 0 R
+/Parent 207 0 R
+/Prev 255 0 R
+/Next 263 0 R
+>> endobj
+255 0 obj <<
+/Title 256 0 R
+/A 253 0 R
+/Parent 207 0 R
+/Prev 251 0 R
+/Next 259 0 R
+>> endobj
+251 0 obj <<
+/Title 252 0 R
+/A 249 0 R
+/Parent 207 0 R
+/Prev 247 0 R
+/Next 255 0 R
+>> endobj
+247 0 obj <<
+/Title 248 0 R
+/A 245 0 R
+/Parent 207 0 R
+/Prev 243 0 R
+/Next 251 0 R
+>> endobj
+243 0 obj <<
+/Title 244 0 R
+/A 241 0 R
+/Parent 207 0 R
+/Prev 239 0 R
+/Next 247 0 R
+>> endobj
+239 0 obj <<
+/Title 240 0 R
+/A 237 0 R
+/Parent 207 0 R
+/Prev 235 0 R
+/Next 243 0 R
+>> endobj
+235 0 obj <<
+/Title 236 0 R
+/A 233 0 R
+/Parent 207 0 R
+/Prev 231 0 R
+/Next 239 0 R
+>> endobj
+231 0 obj <<
+/Title 232 0 R
+/A 229 0 R
+/Parent 207 0 R
+/Prev 219 0 R
+/Next 235 0 R
+>> endobj
+227 0 obj <<
+/Title 228 0 R
+/A 225 0 R
+/Parent 219 0 R
+/Prev 223 0 R
+>> endobj
+223 0 obj <<
+/Title 224 0 R
+/A 221 0 R
+/Parent 219 0 R
+/Next 227 0 R
+>> endobj
+219 0 obj <<
+/Title 220 0 R
+/A 217 0 R
+/Parent 207 0 R
+/Prev 215 0 R
+/Next 231 0 R
+/First 223 0 R
+/Last 227 0 R
+/Count -2
+>> endobj
+215 0 obj <<
+/Title 216 0 R
+/A 213 0 R
+/Parent 207 0 R
+/Prev 211 0 R
+/Next 219 0 R
+>> endobj
+211 0 obj <<
+/Title 212 0 R
+/A 209 0 R
+/Parent 207 0 R
+/Next 215 0 R
+>> endobj
+207 0 obj <<
+/Title 208 0 R
+/A 205 0 R
+/Parent 1625 0 R
+/Prev 163 0 R
+/Next 291 0 R
+/First 211 0 R
+/Last 275 0 R
+/Count -15
+>> endobj
+203 0 obj <<
+/Title 204 0 R
+/A 201 0 R
+/Parent 163 0 R
+/Prev 199 0 R
+>> endobj
+199 0 obj <<
+/Title 200 0 R
+/A 197 0 R
+/Parent 163 0 R
+/Prev 195 0 R
+/Next 203 0 R
+>> endobj
+195 0 obj <<
+/Title 196 0 R
+/A 193 0 R
+/Parent 163 0 R
+/Prev 191 0 R
+/Next 199 0 R
+>> endobj
+191 0 obj <<
+/Title 192 0 R
+/A 189 0 R
+/Parent 163 0 R
+/Prev 187 0 R
+/Next 195 0 R
+>> endobj
+187 0 obj <<
+/Title 188 0 R
+/A 185 0 R
+/Parent 163 0 R
+/Prev 183 0 R
+/Next 191 0 R
+>> endobj
+183 0 obj <<
+/Title 184 0 R
+/A 181 0 R
+/Parent 163 0 R
+/Prev 179 0 R
+/Next 187 0 R
+>> endobj
+179 0 obj <<
+/Title 180 0 R
+/A 177 0 R
+/Parent 163 0 R
+/Prev 175 0 R
+/Next 183 0 R
+>> endobj
+175 0 obj <<
+/Title 176 0 R
+/A 173 0 R
+/Parent 163 0 R
+/Prev 171 0 R
+/Next 179 0 R
+>> endobj
+171 0 obj <<
+/Title 172 0 R
+/A 169 0 R
+/Parent 163 0 R
+/Prev 167 0 R
+/Next 175 0 R
+>> endobj
+167 0 obj <<
+/Title 168 0 R
+/A 165 0 R
+/Parent 163 0 R
+/Next 171 0 R
+>> endobj
+163 0 obj <<
+/Title 164 0 R
+/A 161 0 R
+/Parent 1625 0 R
+/Prev 143 0 R
+/Next 207 0 R
+/First 167 0 R
+/Last 203 0 R
+/Count -10
+>> endobj
+159 0 obj <<
+/Title 160 0 R
+/A 157 0 R
+/Parent 143 0 R
+/Prev 155 0 R
+>> endobj
+155 0 obj <<
+/Title 156 0 R
+/A 153 0 R
+/Parent 143 0 R
+/Prev 151 0 R
+/Next 159 0 R
+>> endobj
+151 0 obj <<
+/Title 152 0 R
+/A 149 0 R
+/Parent 143 0 R
+/Prev 147 0 R
+/Next 155 0 R
+>> endobj
+147 0 obj <<
+/Title 148 0 R
+/A 145 0 R
+/Parent 143 0 R
+/Next 151 0 R
+>> endobj
+143 0 obj <<
+/Title 144 0 R
+/A 141 0 R
+/Parent 1625 0 R
+/Prev 111 0 R
+/Next 163 0 R
+/First 147 0 R
+/Last 159 0 R
+/Count -4
+>> endobj
+139 0 obj <<
+/Title 140 0 R
+/A 137 0 R
+/Parent 111 0 R
+/Prev 135 0 R
+>> endobj
+135 0 obj <<
+/Title 136 0 R
+/A 133 0 R
+/Parent 111 0 R
+/Prev 131 0 R
+/Next 139 0 R
+>> endobj
+131 0 obj <<
+/Title 132 0 R
+/A 129 0 R
+/Parent 111 0 R
+/Prev 127 0 R
+/Next 135 0 R
+>> endobj
+127 0 obj <<
+/Title 128 0 R
+/A 125 0 R
+/Parent 111 0 R
+/Prev 123 0 R
+/Next 131 0 R
+>> endobj
+123 0 obj <<
+/Title 124 0 R
+/A 121 0 R
+/Parent 111 0 R
+/Prev 119 0 R
+/Next 127 0 R
+>> endobj
+119 0 obj <<
+/Title 120 0 R
+/A 117 0 R
+/Parent 111 0 R
+/Prev 115 0 R
+/Next 123 0 R
+>> endobj
+115 0 obj <<
+/Title 116 0 R
+/A 113 0 R
+/Parent 111 0 R
+/Next 119 0 R
+>> endobj
+111 0 obj <<
+/Title 112 0 R
+/A 109 0 R
+/Parent 1625 0 R
+/Prev 63 0 R
+/Next 143 0 R
+/First 115 0 R
+/Last 139 0 R
+/Count -7
+>> endobj
+107 0 obj <<
+/Title 108 0 R
+/A 105 0 R
+/Parent 91 0 R
+/Prev 103 0 R
+>> endobj
+103 0 obj <<
+/Title 104 0 R
+/A 101 0 R
+/Parent 91 0 R
+/Prev 99 0 R
+/Next 107 0 R
+>> endobj
+99 0 obj <<
+/Title 100 0 R
+/A 97 0 R
+/Parent 91 0 R
+/Prev 95 0 R
+/Next 103 0 R
+>> endobj
+95 0 obj <<
+/Title 96 0 R
+/A 93 0 R
+/Parent 91 0 R
+/Next 99 0 R
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 63 0 R
+/Prev 67 0 R
+/First 95 0 R
+/Last 107 0 R
+/Count -4
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 67 0 R
+/Prev 83 0 R
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 67 0 R
+/Prev 79 0 R
+/Next 87 0 R
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 67 0 R
+/Prev 75 0 R
+/Next 83 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 67 0 R
+/Prev 71 0 R
+/Next 79 0 R
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 67 0 R
+/Next 75 0 R
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 63 0 R
+/Next 91 0 R
+/First 71 0 R
+/Last 87 0 R
+/Count -5
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 1625 0 R
+/Prev 15 0 R
+/Next 111 0 R
+/First 67 0 R
+/Last 91 0 R
+/Count -2
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 39 0 R
+/Prev 55 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 39 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 39 0 R
+/Prev 47 0 R
+/Next 55 0 R
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 39 0 R
+/Prev 43 0 R
+/Next 51 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 39 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/First 43 0 R
+/Last 59 0 R
+/Count -5
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 19 0 R
+/Prev 31 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 19 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 19 0 R
+/Prev 23 0 R
+/Next 31 0 R
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 19 0 R
+/Next 27 0 R
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 39 0 R
+/First 23 0 R
+/Last 35 0 R
+/Count -4
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 1625 0 R
+/Prev 7 0 R
+/Next 63 0 R
+/First 19 0 R
+/Last 39 0 R
+/Count -2
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 7 0 R
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 1625 0 R
+/Next 15 0 R
+/First 11 0 R
+/Last 11 0 R
+/Count -1
+>> endobj
+1626 0 obj <<
+/Names [(Doc-Start) 298 0 R (Hfootnote.1) 813 0 R (Hfootnote.10) 932 0 R (Hfootnote.11) 980 0 R (Hfootnote.12) 981 0 R (Hfootnote.13) 1254 0 R (Hfootnote.14) 1256 0 R (Hfootnote.15) 1269 0 R (Hfootnote.16) 1271 0 R (Hfootnote.17) 1305 0 R (Hfootnote.18) 1325 0 R (Hfootnote.19) 1327 0 R (Hfootnote.2) 818 0 R (Hfootnote.3) 870 0 R (Hfootnote.4) 903 0 R (Hfootnote.5) 912 0 R (Hfootnote.6) 913 0 R (Hfootnote.7) 914 0 R (Hfootnote.8) 898 0 R (Hfootnote.9) 928 0 R (Item.1) 805 0 R (Item.10) 1425 0 R (Item.11) 1426 0 R (Item.12) 1427 0 R (Item.13) 1428 0 R (Item.14) 1441 0 R (Item.15) 1442 0 R (Item.16) 1443 0 R (Item.17) 1444 0 R (Item.18) 1446 0 R (Item.19) 1451 0 R (Item.2) 807 0 R (Item.3) 826 0 R (Item.4) 810 0 R (Item.5) 827 0 R (Item.6) 828 0 R (Item.7) 1419 0 R (Item.8) 1420 0 R (Item.9) 1421 0 R (cite.Carl99) 840 0 R (cite.Knut86) 1328 0 R (cite.Lamp94) 822 0 R (cite.Lapk05) 1382 0 R (cite.Mitt-etal04) 838 0 R (cite.Reck97) 839 0 R (cite.Somm05) 1400 0 R (figure.1) 470 0 R (figure.10) 569 0 R (figure.11) 570 0 R (figure.12) 571 0 R (figure.13) 572 0 R (figure.14) 573 0 R (figure.15) 574 0 R (figure.16) 575 0 R (figure.17) 576 0 R (figure.18) 577 0 R (figure.19) 578 0 R (figure.2) 471 0 R (figure.20) 579 0 R (figure.21) 580 0 R (figure.22) 581 0 R (figure.23) 582 0 R (figure.24) 583 0 R (figure.25) 584 0 R (figure.26) 585 0 R (figure.27) 586 0 R (figure.28) 587 0 R (figure.29) 588 0 R (figure.3) 472 0 R (figure.30) 589 0 R (figure.31) 590 0 R (figure.32) 591 0 R (figure.33) 592 0 R (figure.34) 593 0 R (figure.35) 594 0 R (figure.36) 595 0 R (figure.37) 596 0 R (figure.38) 597 0 R (figure.39) 598 0 R (figure.4) 473 0 R (figure.4.1) 867 0 R (figure.40) 658 0 R (figure.41) 659 0 R (figure.42) 660 0 R (figure.43) 661 0 R (figure.44) 662 0 R (figure.45) 663 0 R (figure.46) 664 0 R (figure.47) 665 0 R (figure.48) 666 0 R (figure.49) 667 0 R (figure.5) 474 0 R (figure.50) 668 0 R (figure.51) 669 0 R (figure.52) 670 0 R (figure.53) 671 0 R (figure.54) 672 0 R (figure.55) 673 0 R (figure.56) 674 0 R (figure.57) 675 0 R (figure.58) 676 0 R (figure.59) 677 0 R (figure.6) 475 0 R (figure.60) 678 0 R (figure.61) 679 0 R (figure.62) 680 0 R (figure.63) 681 0 R (figure.64) 682 0 R (figure.65) 683 0 R (figure.66) 684 0 R (figure.67) 685 0 R (figure.68) 686 0 R (figure.69) 687 0 R (figure.7) 477 0 R (figure.70) 688 0 R (figure.71) 689 0 R (figure.72) 690 0 R (figure.73) 691 0 R (figure.74) 692 0 R (figure.75) 693 0 R (figure.76) 694 0 R (figure.77) 746 0 R (figure.78) 747 0 R (figure.79) 748 0 R (figure.8) 484 0 R (figure.80) 749 0 R (figure.81) 750 0 R (figure.82) 751 0 R (figure.83) 752 0 R (figure.84) 753 0 R (figure.85) 754 0 R (figure.86) 755 0 R (figure.87) 756 0 R (figure.88) 757 0 R (figure.89) 758 0 R (figure.9) 568 0 R (figure.90) 759 0 R (figure.91) 760 0 R (figure.92) 765 0 R (figure.93) 768 0 R (figure.94) 772 0 R (figure.95) 775 0 R (figure.96) 776 0 R (map.1) 787 0 R (page.1) 297 0 R (page.10) 918 0 R (page.11) 937 0 R (page.12) 963 0 R (page.13) 989 0 R (page.14) 999 0 R (page.15) 1013 0 R (page.16) 1027 0 R (page.17) 1039 0 R (page.18) 1052 0 R (page.19) 1064 0 R (page.2) 342 0 R (page.20) 1076 0 R (page.21) 1088 0 R (page.22) 1100 0 R (page.23) 1112 0 R (page.24) 1125 0 R (page.25) 1137 0 R (page.26) 1149 0 R (page.27) 1161 0 R (page.28) 1173 0 R (page.29) 1189 0 R (page.3) 496 0 R (page.30) 1204 0 R (page.31) 1220 0 R (page.32) 1232 0 R (page.33) 1244 0 R (page.34) 1261 0 R (page.35) 1275 0 R (page.36) 1283 0 R (page.37) 1288 0 R (page.38) 1295 0 R (page.39) 1303 0 R (page.4) 602 0 R (page.40) 1309 0 R (page.41) 1313 0 R (page.42) 1319 0 R (page.43) 1332 0 R (page.44) 1352 0 R (page.45) 1358 0 R (page.46) 1377 0 R (page.47) 1386 0 R (page.48) 1393 0 R (page.49) 1398 0 R (page.5) 698 0 R (page.50) 1404 0 R (page.51) 1408 0 R (page.52) 1413 0 R (page.53) 1418 0 R (page.54) 1433 0 R (page.55) 1439 0 R (page.56) 1450 0 R (page.57) 1457 0 R (page.58) 1461 0 R (page.59) 1466 0 R (page.6) 793 0 R (page.60) 1471 0 R (page.61) 1476 0 R (page.62) 1481 0 R (page.63) 1486 0 R (page.64) 1490 0 R (page.65) 1495 0 R (page.66) 1501 0 R (page.67) 1505 0 R (page.68) 1513 0 R (page.69) 1520 0 R (page.7) 882 0 R (page.70) 1524 0 R (page.71) 1529 0 R (page.8) 896 0 R (page.9) 907 0 R (section*.1) 352 0 R (section*.2) 442 0 R (section*.3) 732 0 R (section*.4) 741 0 R (section*.5) 1333 0 R (section*.6) 1359 0 R (section*.7) 1506 0 R (section*.8) 1514 0 R (section*.9) 1525 0 R (section.1) 6 0 R (section.2) 14 0 R (section.3) 62 0 R (section.4) 110 0 R (section.5) 142 0 R (section.6) 162 0 R (section.7) 206 0 R (section.8) 290 0 R (subfigure.10.1) 990 0 R (subfigure.10.2) 991 0 R (subfigure.11.1) 992 0 R (subfigure.11.2) 993 0 R (subfigure.12.1) 994 0 R (subfigure.12.2) 995 0 R (subfigure.13.1) 1000 0 R (subfigure.13.2) 1001 0 R (subfigure.14.1) 1002 0 R (subfigure.14.2) 1003 0 R (subfigure.15.1) 1004 0 R (subfigure.15.2) 1005 0 R (subfigure.16.1) 1006 0 R (subfigure.16.2) 1007 0 R (subfigure.17.1) 1008 0 R (subfigure.17.2) 1009 0 R (subfigure.18.1) 1014 0 R (subfigure.18.2) 1015 0 R (subfigure.19.1) 1016 0 R (subfigure.19.2) 1017 0 R (subfigure.20.1) 1018 0 R (subfigure.20.2) 1019 0 R (subfigure.21.1) 1020 0 R (subfigure.21.2) 1021 0 R (subfigure.22.1) 1022 0 R (subfigure.22.2) 1023 0 R (subfigure.23.1) 1028 0 R (subfigure.23.2) 1029 0 R (subfigure.24.1) 1030 0 R (subfigure.24.2) 1031 0 R (subfigure.25.1) 1032 0 R (subfigure.25.2) 1033 0 R (subfigure.26.1) 1034 0 R (subfigure.26.2) 1035 0 R (subfigure.27.1) 1040 0 R (subfigure.27.2) 1041 0 R (subfigure.28.1) 1042 0 R (subfigure.28.2) 1043 0 R (subfigure.29.1) 1044 0 R (subfigure.29.2) 1045 0 R (subfigure.30.1) 1046 0 R (subfigure.30.2) 1047 0 R (subfigure.31.1) 1053 0 R (subfigure.31.2) 1054 0 R (subfigure.32.1) 1055 0 R (subfigure.32.2) 1056 0 R (subfigure.33.1) 1057 0 R (subfigure.33.2) 1058 0 R (subfigure.34.1) 1059 0 R (subfigure.34.2) 1060 0 R (subfigure.35.1) 1065 0 R (subfigure.35.2) 1066 0 R (subfigure.36.1) 1067 0 R (subfigure.36.2) 1068 0 R (subfigure.37.1) 1069 0 R (subfigure.37.2) 1070 0 R (subfigure.38.1) 1071 0 R (subfigure.38.2) 1072 0 R (subfigure.39.1) 1077 0 R (subfigure.39.2) 1078 0 R (subfigure.4.1) 863 0 R (subfigure.4.2) 864 0 R (subfigure.4.3) 865 0 R (subfigure.4.4) 866 0 R (subfigure.40.1) 1079 0 R (subfigure.40.2) 1080 0 R (subfigure.41.1) 1081 0 R (subfigure.41.2) 1082 0 R (subfigure.42.1) 1083 0 R (subfigure.42.2) 1084 0 R (subfigure.43.1) 1089 0 R (subfigure.43.2) 1090 0 R (subfigure.44.1) 1091 0 R (subfigure.44.2) 1092 0 R (subfigure.45.1) 1093 0 R (subfigure.45.2) 1094 0 R (subfigure.46.1) 1095 0 R (subfigure.46.2) 1096 0 R (subfigure.47.1) 1101 0 R (subfigure.47.2) 1102 0 R (subfigure.48.1) 1103 0 R (subfigure.48.2) 1104 0 R (subfigure.49.1) 1105 0 R (subfigure.49.2) 1106 0 R (subfigure.50.1) 1107 0 R (subfigure.50.2) 1108 0 R (subfigure.51.1) 1113 0 R (subfigure.51.2) 1114 0 R (subfigure.52.1) 1115 0 R (subfigure.52.2) 1116 0 R (subfigure.53.1) 1117 0 R (subfigure.53.2) 1118 0 R (subfigure.54.1) 1119 0 R (subfigure.54.2) 1120 0 R (subfigure.55.1) 1126 0 R (subfigure.55.2) 1127 0 R (subfigure.56.1) 1128 0 R (subfigure.56.2) 1129 0 R (subfigure.57.1) 1130 0 R (subfigure.57.2) 1131 0 R (subfigure.58.1) 1132 0 R (subfigure.58.2) 1133 0 R (subfigure.59.1) 1138 0 R (subfigure.59.2) 1139 0 R (subfigure.6.1) 476 0 R (subfigure.60.1) 1140 0 R (subfigure.60.2) 1141 0 R (subfigure.61.1) 1142 0 R (subfigure.61.2) 1143 0 R (subfigure.62.1) 1144 0 R (subfigure.62.2) 1145 0 R (subfigure.63.1) 1150 0 R (subfigure.63.2) 1151 0 R (subfigure.64.1) 1152 0 R (subfigure.64.2) 1153 0 R (subfigure.65.1) 1154 0 R (subfigure.65.2) 1155 0 R (subfigure.66.1) 1156 0 R (subfigure.66.2) 1157 0 R (subfigure.67.1) 1162 0 R (subfigure.67.2) 1163 0 R (subfigure.68.1) 1164 0 R (subfigure.68.2) 1165 0 R (subfigure.69.1) 1166 0 R (subfigure.69.2) 1167 0 R (subfigure.7.1) 478 0 R (subfigure.7.2) 479 0 R (subfigure.7.3) 480 0 R (subfigure.7.4) 481 0 R (subfigure.7.5) 482 0 R (subfigure.7.6) 483 0 R (subfigure.70.1) 1168 0 R (subfigure.70.2) 1169 0 R (subfigure.71.1) 1174 0 R (subfigure.71.2) 1175 0 R (subfigure.72.1) 1176 0 R (subfigure.72.2) 1177 0 R (subfigure.73.1) 1178 0 R (subfigure.73.2) 1179 0 R (subfigure.74.1) 1190 0 R (subfigure.74.2) 1191 0 R (subfigure.75.1) 1192 0 R (subfigure.75.2) 1193 0 R (subfigure.76.1) 1194 0 R (subfigure.76.2) 1195 0 R (subfigure.77.1) 1196 0 R (subfigure.77.2) 1197 0 R (subfigure.78.1) 1198 0 R (subfigure.78.2) 1199 0 R (subfigure.79.1) 1205 0 R (subfigure.79.2) 1206 0 R (subfigure.8.1) 485 0 R (subfigure.8.10) 553 0 R (subfigure.8.11) 554 0 R (subfigure.8.12) 555 0 R (subfigure.8.13) 556 0 R (subfigure.8.14) 557 0 R (subfigure.8.15) 558 0 R (subfigure.8.16) 559 0 R (subfigure.8.17) 560 0 R (subfigure.8.18) 561 0 R (subfigure.8.19) 562 0 R (subfigure.8.2) 486 0 R (subfigure.8.20) 563 0 R (subfigure.8.21) 564 0 R (subfigure.8.22) 565 0 R (subfigure.8.23) 566 0 R (subfigure.8.24) 567 0 R (subfigure.8.3) 487 0 R (subfigure.8.4) 488 0 R (subfigure.8.5) 489 0 R (subfigure.8.6) 490 0 R (subfigure.8.7) 491 0 R (subfigure.8.8) 492 0 R (subfigure.8.9) 552 0 R (subfigure.80.1) 1207 0 R (subfigure.80.2) 1208 0 R (subfigure.81.1) 1209 0 R (subfigure.81.2) 1210 0 R (subfigure.82.1) 1211 0 R (subfigure.82.2) 1212 0 R (subfigure.83.1) 1213 0 R (subfigure.83.2) 1214 0 R (subfigure.84.1) 1221 0 R (subfigure.84.2) 1222 0 R (subfigure.85.1) 1223 0 R (subfigure.85.2) 1224 0 R (subfigure.86.1) 1225 0 R (subfigure.86.2) 1226 0 R (subfigure.87.1) 1227 0 R (subfigure.87.2) 1228 0 R (subfigure.88.1) 1233 0 R (subfigure.88.2) 1234 0 R (subfigure.89.1) 1235 0 R (subfigure.89.2) 1236 0 R (subfigure.9.1) 975 0 R (subfigure.9.2) 976 0 R (subfigure.90.1) 1237 0 R (subfigure.90.2) 1238 0 R (subfigure.91.1) 761 0 R (subfigure.91.2) 762 0 R (subfigure.91.3) 763 0 R (subfigure.91.4) 764 0 R (subfigure.92.1) 766 0 R (subfigure.92.2) 767 0 R (subfigure.93.1) 769 0 R (subfigure.93.2) 770 0 R (subfigure.93.3) 771 0 R (subfigure.94.1) 773 0 R (subfigure.94.2) 774 0 R (subfigure.95.1) 1363 0 R (subfigure.95.2) 1364 0 R (subfigure.95.3) 1365 0 R (subfigure.95.4) 1366 0 R (subfigure.96.1) 777 0 R (subfigure.96.2) 778 0 R (submap.1.1) 788 0 R (submap.1.2) 789 0 R (subsection.1.1) 10 0 R (subsection.2.1) 18 0 R (subsection.2.2) 38 0 R (subsection.3.1) 66 0 R (subsection.3.2) 90 0 R (subsection.4.1) 114 0 R (subsection.4.2) 118 0 R (subsection.4.3) 122 0 R (subsection.4.4) 126 0 R (subsection.4.5) 130 0 R (subsection.4.6) 134 0 R (subsection.4.7) 138 0 R (subsection.5.1) 146 0 R (subsection.5.2) 150 0 R (subsection.5.3) 154 0 R (subsection.5.4) 158 0 R (subsection.6.1) 166 0 R (subsection.6.10) 202 0 R (subsection.6.2) 170 0 R (subsection.6.3) 174 0 R (subsection.6.4) 178 0 R (subsection.6.5) 182 0 R (subsection.6.6) 186 0 R (subsection.6.7) 190 0 R (subsection.6.8) 194 0 R (subsection.6.9) 198 0 R (subsection.7.1) 210 0 R (subsection.7.10) 254 0 R (subsection.7.11) 258 0 R (subsection.7.12) 262 0 R (subsection.7.13) 266 0 R (subsection.7.14) 270 0 R (subsection.7.15) 274 0 R (subsection.7.2) 214 0 R (subsection.7.3) 218 0 R (subsection.7.4) 230 0 R (subsection.7.5) 234 0 R (subsection.7.6) 238 0 R (subsection.7.7) 242 0 R (subsection.7.8) 246 0 R (subsection.7.9) 250 0 R (subsubsection.2.1.1) 22 0 R (subsubsection.2.1.2) 26 0 R (subsubsection.2.1.3) 30 0 R (subsubsection.2.1.4) 34 0 R (subsubsection.2.2.1) 42 0 R (subsubsection.2.2.2) 46 0 R (subsubsection.2.2.3) 50 0 R (subsubsection.2.2.4) 54 0 R (subsubsection.2.2.5) 58 0 R (subsubsection.3.1.1) 70 0 R (subsubsection.3.1.2) 74 0 R (subsubsection.3.1.3) 78 0 R (subsubsection.3.1.4) 82 0 R (subsubsection.3.1.5) 86 0 R (subsubsection.3.2.1) 94 0 R (subsubsection.3.2.2) 98 0 R (subsubsection.3.2.3) 102 0 R (subsubsection.3.2.4) 106 0 R (subsubsection.7.15.1) 278 0 R (subsubsection.7.15.2) 282 0 R (subsubsection.7.15.3) 286 0 R (subsubsection.7.3.1) 222 0 R (subsubsection.7.3.2) 226 0 R (subtable.7.1) 785 0 R (subtable.7.2) 786 0 R (subtable.7.3) 1296 0 R (subtable.7.4) 1297 0 R (table.1) 779 0 R (table.2) 780 0 R (table.3) 781 0 R (table.3.1) 859 0 R (table.4) 782 0 R (table.5) 783 0 R (table.6) 784 0 R]
+/Limits [(Doc-Start) (table.6)]
+>> endobj
+1627 0 obj <<
+/Kids [1626 0 R]
+>> endobj
+1628 0 obj <<
+/Dests 1627 0 R
+>> endobj
+1629 0 obj <<
+/Type /Catalog
+/Pages 1624 0 R
+/Outlines 1625 0 R
+/Names 1628 0 R
+/PageMode /UseOutlines
+/OpenAction 293 0 R
+>> endobj
+1630 0 obj <<
+/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords()
+/CreationDate (D:20050705124657-04'00')
+/PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
+>> endobj
+xref
+0 1631
+0000000001 65535 f
+0000000002 00000 f
+0000000003 00000 f
+0000000004 00000 f
+0000000000 00000 f
+0000000009 00000 n
+0000073199 00000 n
+0000620292 00000 n
+0000000054 00000 n
+0000000084 00000 n
+0000073256 00000 n
+0000620233 00000 n
+0000000134 00000 n
+0000000178 00000 n
+0000077433 00000 n
+0000620108 00000 n
+0000000224 00000 n
+0000000259 00000 n
+0000077491 00000 n
+0000619997 00000 n
+0000000310 00000 n
+0000000346 00000 n
+0000077549 00000 n
+0000619923 00000 n
+0000000402 00000 n
+0000000447 00000 n
+0000082136 00000 n
+0000619836 00000 n
+0000000503 00000 n
+0000000549 00000 n
+0000082194 00000 n
+0000619749 00000 n
+0000000605 00000 n
+0000000666 00000 n
+0000082252 00000 n
+0000619675 00000 n
+0000000722 00000 n
+0000000776 00000 n
+0000087438 00000 n
+0000619564 00000 n
+0000000827 00000 n
+0000000862 00000 n
+0000087496 00000 n
+0000619490 00000 n
+0000000918 00000 n
+0000000961 00000 n
+0000087554 00000 n
+0000619403 00000 n
+0000001017 00000 n
+0000001058 00000 n
+0000091070 00000 n
+0000619316 00000 n
+0000001114 00000 n
+0000001163 00000 n
+0000094014 00000 n
+0000619229 00000 n
+0000001219 00000 n
+0000001269 00000 n
+0000094072 00000 n
+0000619155 00000 n
+0000001325 00000 n
+0000001372 00000 n
+0000098137 00000 n
+0000619028 00000 n
+0000001418 00000 n
+0000001465 00000 n
+0000098195 00000 n
+0000618917 00000 n
+0000001516 00000 n
+0000001567 00000 n
+0000111562 00000 n
+0000618843 00000 n
+0000001623 00000 n
+0000001667 00000 n
+0000111620 00000 n
+0000618756 00000 n
+0000001723 00000 n
+0000001768 00000 n
+0000164008 00000 n
+0000618669 00000 n
+0000001824 00000 n
+0000001876 00000 n
+0000164067 00000 n
+0000618582 00000 n
+0000001932 00000 n
+0000001976 00000 n
+0000174194 00000 n
+0000618508 00000 n
+0000002032 00000 n
+0000002078 00000 n
+0000178445 00000 n
+0000618396 00000 n
+0000002129 00000 n
+0000002179 00000 n
+0000178504 00000 n
+0000618322 00000 n
+0000002235 00000 n
+0000002292 00000 n
+0000183728 00000 n
+0000618233 00000 n
+0000002348 00000 n
+0000002407 00000 n
+0000183787 00000 n
+0000618142 00000 n
+0000002464 00000 n
+0000002501 00000 n
+0000189990 00000 n
+0000618064 00000 n
+0000002558 00000 n
+0000002604 00000 n
+0000196528 00000 n
+0000617932 00000 n
+0000002651 00000 n
+0000002705 00000 n
+0000196588 00000 n
+0000617853 00000 n
+0000002757 00000 n
+0000002792 00000 n
+0000196648 00000 n
+0000617760 00000 n
+0000002844 00000 n
+0000002877 00000 n
+0000210375 00000 n
+0000617667 00000 n
+0000002929 00000 n
+0000002965 00000 n
+0000213905 00000 n
+0000617574 00000 n
+0000003017 00000 n
+0000003067 00000 n
+0000216622 00000 n
+0000617481 00000 n
+0000003119 00000 n
+0000003154 00000 n
+0000216682 00000 n
+0000617388 00000 n
+0000003206 00000 n
+0000003240 00000 n
+0000219651 00000 n
+0000617309 00000 n
+0000003292 00000 n
+0000003361 00000 n
+0000222884 00000 n
+0000617176 00000 n
+0000003408 00000 n
+0000003441 00000 n
+0000227435 00000 n
+0000617097 00000 n
+0000003493 00000 n
+0000003529 00000 n
+0000232396 00000 n
+0000617004 00000 n
+0000003581 00000 n
+0000003624 00000 n
+0000235331 00000 n
+0000616911 00000 n
+0000003676 00000 n
+0000003731 00000 n
+0000235391 00000 n
+0000616832 00000 n
+0000003783 00000 n
+0000003818 00000 n
+0000243858 00000 n
+0000616698 00000 n
+0000003865 00000 n
+0000003920 00000 n
+0000243918 00000 n
+0000616619 00000 n
+0000003972 00000 n
+0000004051 00000 n
+0000243978 00000 n
+0000616526 00000 n
+0000004103 00000 n
+0000004188 00000 n
+0000244038 00000 n
+0000616433 00000 n
+0000004240 00000 n
+0000004377 00000 n
+0000244098 00000 n
+0000616340 00000 n
+0000004429 00000 n
+0000004523 00000 n
+0000247771 00000 n
+0000616247 00000 n
+0000004575 00000 n
+0000004662 00000 n
+0000247831 00000 n
+0000616154 00000 n
+0000004714 00000 n
+0000004794 00000 n
+0000247891 00000 n
+0000616061 00000 n
+0000004846 00000 n
+0000004933 00000 n
+0000247951 00000 n
+0000615968 00000 n
+0000004985 00000 n
+0000005059 00000 n
+0000249596 00000 n
+0000615875 00000 n
+0000005111 00000 n
+0000005217 00000 n
+0000249656 00000 n
+0000615796 00000 n
+0000005270 00000 n
+0000005345 00000 n
+0000252966 00000 n
+0000615662 00000 n
+0000005392 00000 n
+0000005420 00000 n
+0000253026 00000 n
+0000615583 00000 n
+0000005472 00000 n
+0000005506 00000 n
+0000253086 00000 n
+0000615490 00000 n
+0000005558 00000 n
+0000005601 00000 n
+0000253146 00000 n
+0000615358 00000 n
+0000005653 00000 n
+0000005697 00000 n
+0000253206 00000 n
+0000615279 00000 n
+0000005754 00000 n
+0000005814 00000 n
+0000255919 00000 n
+0000615200 00000 n
+0000005871 00000 n
+0000005926 00000 n
+0000262490 00000 n
+0000615107 00000 n
+0000005978 00000 n
+0000006016 00000 n
+0000266113 00000 n
+0000615014 00000 n
+0000006068 00000 n
+0000006114 00000 n
+0000269399 00000 n
+0000614921 00000 n
+0000006166 00000 n
+0000006207 00000 n
+0000269458 00000 n
+0000614828 00000 n
+0000006259 00000 n
+0000006296 00000 n
+0000273058 00000 n
+0000614735 00000 n
+0000006348 00000 n
+0000006395 00000 n
+0000276613 00000 n
+0000614642 00000 n
+0000006447 00000 n
+0000006494 00000 n
+0000285496 00000 n
+0000614549 00000 n
+0000006547 00000 n
+0000006622 00000 n
+0000288519 00000 n
+0000614456 00000 n
+0000006675 00000 n
+0000006749 00000 n
+0000292197 00000 n
+0000614363 00000 n
+0000006802 00000 n
+0000006846 00000 n
+0000298199 00000 n
+0000614270 00000 n
+0000006899 00000 n
+0000006948 00000 n
+0000301528 00000 n
+0000614177 00000 n
+0000007001 00000 n
+0000007052 00000 n
+0000304370 00000 n
+0000614059 00000 n
+0000007105 00000 n
+0000007166 00000 n
+0000304430 00000 n
+0000613980 00000 n
+0000007224 00000 n
+0000007264 00000 n
+0000304490 00000 n
+0000613887 00000 n
+0000007322 00000 n
+0000007359 00000 n
+0000304550 00000 n
+0000613808 00000 n
+0000007417 00000 n
+0000007457 00000 n
+0000307886 00000 n
+0000613728 00000 n
+0000007504 00000 n
+0000007539 00000 n
+0000009250 00000 n
+0000009490 00000 n
+0000007591 00000 n
+0000009372 00000 n
+0000009431 00000 n
+0000611063 00000 n
+0000607879 00000 n
+0000610900 00000 n
+0000607278 00000 n
+0000604748 00000 n
+0000607114 00000 n
+0000603848 00000 n
+0000600680 00000 n
+0000603685 00000 n
+0000599595 00000 n
+0000590983 00000 n
+0000599432 00000 n
+0000590334 00000 n
+0000586201 00000 n
+0000590170 00000 n
+0000585444 00000 n
+0000578824 00000 n
+0000585281 00000 n
+0000577397 00000 n
+0000562515 00000 n
+0000577235 00000 n
+0000562043 00000 n
+0000558347 00000 n
+0000561882 00000 n
+0000557571 00000 n
+0000553295 00000 n
+0000557408 00000 n
+0000551823 00000 n
+0000537242 00000 n
+0000551660 00000 n
+0000536912 00000 n
+0000535355 00000 n
+0000536752 00000 n
+0000533899 00000 n
+0000520362 00000 n
+0000533737 00000 n
+0000519672 00000 n
+0000516173 00000 n
+0000519509 00000 n
+0000611554 00000 n
+0000010045 00000 n
+0000009864 00000 n
+0000009718 00000 n
+0000009986 00000 n
+0000022046 00000 n
+0000013540 00000 n
+0000010086 00000 n
+0000514600 00000 n
+0000496433 00000 n
+0000514437 00000 n
+0000495145 00000 n
+0000481985 00000 n
+0000494981 00000 n
+0000021987 00000 n
+0000014066 00000 n
+0000480700 00000 n
+0000466364 00000 n
+0000480536 00000 n
+0000014222 00000 n
+0000014383 00000 n
+0000014539 00000 n
+0000014700 00000 n
+0000014866 00000 n
+0000015032 00000 n
+0000015198 00000 n
+0000015363 00000 n
+0000015524 00000 n
+0000015689 00000 n
+0000015855 00000 n
+0000016021 00000 n
+0000016187 00000 n
+0000016352 00000 n
+0000016508 00000 n
+0000465326 00000 n
+0000458652 00000 n
+0000465162 00000 n
+0000016669 00000 n
+0000016835 00000 n
+0000017001 00000 n
+0000017166 00000 n
+0000017331 00000 n
+0000017497 00000 n
+0000017658 00000 n
+0000017824 00000 n
+0000017988 00000 n
+0000018153 00000 n
+0000018318 00000 n
+0000018473 00000 n
+0000018633 00000 n
+0000018794 00000 n
+0000018955 00000 n
+0000019116 00000 n
+0000019277 00000 n
+0000019437 00000 n
+0000019596 00000 n
+0000019751 00000 n
+0000019911 00000 n
+0000020072 00000 n
+0000020233 00000 n
+0000020394 00000 n
+0000020549 00000 n
+0000020710 00000 n
+0000020871 00000 n
+0000021030 00000 n
+0000021190 00000 n
+0000021351 00000 n
+0000021512 00000 n
+0000021672 00000 n
+0000021830 00000 n
+0000033817 00000 n
+0000025423 00000 n
+0000022169 00000 n
+0000457580 00000 n
+0000446633 00000 n
+0000457416 00000 n
+0000445761 00000 n
+0000441003 00000 n
+0000445596 00000 n
+0000025949 00000 n
+0000026110 00000 n
+0000026271 00000 n
+0000026432 00000 n
+0000026588 00000 n
+0000026747 00000 n
+0000026908 00000 n
+0000027069 00000 n
+0000027235 00000 n
+0000027401 00000 n
+0000027561 00000 n
+0000027720 00000 n
+0000027881 00000 n
+0000028041 00000 n
+0000028202 00000 n
+0000028361 00000 n
+0000028522 00000 n
+0000028683 00000 n
+0000028844 00000 n
+0000029006 00000 n
+0000029168 00000 n
+0000029330 00000 n
+0000029496 00000 n
+0000029658 00000 n
+0000029825 00000 n
+0000033758 00000 n
+0000029980 00000 n
+0000030134 00000 n
+0000030289 00000 n
+0000030444 00000 n
+0000030599 00000 n
+0000030754 00000 n
+0000030909 00000 n
+0000031063 00000 n
+0000031223 00000 n
+0000031378 00000 n
+0000439574 00000 n
+0000426985 00000 n
+0000439410 00000 n
+0000031536 00000 n
+0000031694 00000 n
+0000031854 00000 n
+0000032013 00000 n
+0000032173 00000 n
+0000032333 00000 n
+0000032488 00000 n
+0000032647 00000 n
+0000032807 00000 n
+0000032967 00000 n
+0000033127 00000 n
+0000033287 00000 n
+0000033444 00000 n
+0000033600 00000 n
+0000077113 00000 n
+0000077241 00000 n
+0000077369 00000 n
+0000090824 00000 n
+0000098073 00000 n
+0000111076 00000 n
+0000111017 00000 n
+0000111503 00000 n
+0000111135 00000 n
+0000111194 00000 n
+0000111258 00000 n
+0000111317 00000 n
+0000111381 00000 n
+0000111439 00000 n
+0000116628 00000 n
+0000115156 00000 n
+0000115215 00000 n
+0000115279 00000 n
+0000115338 00000 n
+0000115402 00000 n
+0000115460 00000 n
+0000115524 00000 n
+0000115583 00000 n
+0000045496 00000 n
+0000036234 00000 n
+0000033979 00000 n
+0000045437 00000 n
+0000036808 00000 n
+0000036968 00000 n
+0000037129 00000 n
+0000037290 00000 n
+0000037451 00000 n
+0000037611 00000 n
+0000037771 00000 n
+0000037932 00000 n
+0000038093 00000 n
+0000038254 00000 n
+0000038415 00000 n
+0000038575 00000 n
+0000038735 00000 n
+0000038896 00000 n
+0000039057 00000 n
+0000039218 00000 n
+0000039379 00000 n
+0000039533 00000 n
+0000039687 00000 n
+0000039843 00000 n
+0000039999 00000 n
+0000040155 00000 n
+0000040311 00000 n
+0000040466 00000 n
+0000040621 00000 n
+0000040777 00000 n
+0000040933 00000 n
+0000041089 00000 n
+0000041244 00000 n
+0000041398 00000 n
+0000041552 00000 n
+0000041708 00000 n
+0000041864 00000 n
+0000042020 00000 n
+0000042176 00000 n
+0000042330 00000 n
+0000042485 00000 n
+0000042641 00000 n
+0000042796 00000 n
+0000042952 00000 n
+0000043108 00000 n
+0000043263 00000 n
+0000043418 00000 n
+0000043574 00000 n
+0000043730 00000 n
+0000043885 00000 n
+0000044040 00000 n
+0000044195 00000 n
+0000044350 00000 n
+0000044506 00000 n
+0000044662 00000 n
+0000044818 00000 n
+0000044974 00000 n
+0000045129 00000 n
+0000045283 00000 n
+0000115647 00000 n
+0000115706 00000 n
+0000115770 00000 n
+0000115829 00000 n
+0000115893 00000 n
+0000115952 00000 n
+0000116016 00000 n
+0000116075 00000 n
+0000116138 00000 n
+0000116197 00000 n
+0000116261 00000 n
+0000116318 00000 n
+0000116382 00000 n
+0000116441 00000 n
+0000116505 00000 n
+0000116564 00000 n
+0000123775 00000 n
+0000125687 00000 n
+0000125874 00000 n
+0000126061 00000 n
+0000128115 00000 n
+0000128304 00000 n
+0000128493 00000 n
+0000128682 00000 n
+0000128871 00000 n
+0000130837 00000 n
+0000131027 00000 n
+0000131219 00000 n
+0000131411 00000 n
+0000131603 00000 n
+0000133456 00000 n
+0000133648 00000 n
+0000133840 00000 n
+0000134032 00000 n
+0000135686 00000 n
+0000135877 00000 n
+0000136069 00000 n
+0000136260 00000 n
+0000138077 00000 n
+0000138269 00000 n
+0000138460 00000 n
+0000138650 00000 n
+0000140318 00000 n
+0000140510 00000 n
+0000140702 00000 n
+0000140894 00000 n
+0000142752 00000 n
+0000056769 00000 n
+0000047585 00000 n
+0000045593 00000 n
+0000056710 00000 n
+0000048159 00000 n
+0000048315 00000 n
+0000048471 00000 n
+0000048627 00000 n
+0000048783 00000 n
+0000048937 00000 n
+0000049092 00000 n
+0000049248 00000 n
+0000049404 00000 n
+0000049560 00000 n
+0000049716 00000 n
+0000049871 00000 n
+0000050025 00000 n
+0000050180 00000 n
+0000050336 00000 n
+0000050492 00000 n
+0000050648 00000 n
+0000050803 00000 n
+0000050958 00000 n
+0000051114 00000 n
+0000051270 00000 n
+0000051426 00000 n
+0000051582 00000 n
+0000051737 00000 n
+0000051892 00000 n
+0000052047 00000 n
+0000052203 00000 n
+0000052359 00000 n
+0000052515 00000 n
+0000052669 00000 n
+0000052823 00000 n
+0000052979 00000 n
+0000053135 00000 n
+0000053291 00000 n
+0000053447 00000 n
+0000053602 00000 n
+0000053757 00000 n
+0000053913 00000 n
+0000054069 00000 n
+0000054225 00000 n
+0000054381 00000 n
+0000054536 00000 n
+0000054691 00000 n
+0000054847 00000 n
+0000055003 00000 n
+0000055159 00000 n
+0000055315 00000 n
+0000055470 00000 n
+0000055625 00000 n
+0000055781 00000 n
+0000055937 00000 n
+0000056093 00000 n
+0000056248 00000 n
+0000056403 00000 n
+0000056557 00000 n
+0000142944 00000 n
+0000143136 00000 n
+0000143328 00000 n
+0000145057 00000 n
+0000145248 00000 n
+0000145440 00000 n
+0000145631 00000 n
+0000147488 00000 n
+0000147680 00000 n
+0000147870 00000 n
+0000148062 00000 n
+0000149802 00000 n
+0000149994 00000 n
+0000150186 00000 n
+0000150378 00000 n
+0000152234 00000 n
+0000152425 00000 n
+0000152616 00000 n
+0000152808 00000 n
+0000154557 00000 n
+0000154749 00000 n
+0000154941 00000 n
+0000155133 00000 n
+0000156981 00000 n
+0000157173 00000 n
+0000157365 00000 n
+0000157556 00000 n
+0000159314 00000 n
+0000159505 00000 n
+0000159697 00000 n
+0000159887 00000 n
+0000163562 00000 n
+0000163753 00000 n
+0000163944 00000 n
+0000166556 00000 n
+0000166748 00000 n
+0000166939 00000 n
+0000067190 00000 n
+0000059620 00000 n
+0000056879 00000 n
+0000067013 00000 n
+0000060106 00000 n
+0000060261 00000 n
+0000060417 00000 n
+0000060573 00000 n
+0000060729 00000 n
+0000060884 00000 n
+0000061039 00000 n
+0000061195 00000 n
+0000061351 00000 n
+0000061507 00000 n
+0000061663 00000 n
+0000061818 00000 n
+0000061973 00000 n
+0000062129 00000 n
+0000062285 00000 n
+0000062440 00000 n
+0000062601 00000 n
+0000062761 00000 n
+0000062921 00000 n
+0000063082 00000 n
+0000063235 00000 n
+0000063396 00000 n
+0000063557 00000 n
+0000063713 00000 n
+0000063873 00000 n
+0000064034 00000 n
+0000064195 00000 n
+0000064349 00000 n
+0000064510 00000 n
+0000064671 00000 n
+0000064827 00000 n
+0000064983 00000 n
+0000065144 00000 n
+0000067072 00000 n
+0000065305 00000 n
+0000065459 00000 n
+0000065613 00000 n
+0000065767 00000 n
+0000065921 00000 n
+0000066075 00000 n
+0000066229 00000 n
+0000066388 00000 n
+0000067131 00000 n
+0000066547 00000 n
+0000066699 00000 n
+0000066856 00000 n
+0000611672 00000 n
+0000167129 00000 n
+0000167321 00000 n
+0000170078 00000 n
+0000170270 00000 n
+0000170461 00000 n
+0000170651 00000 n
+0000170843 00000 n
+0000173553 00000 n
+0000173745 00000 n
+0000173937 00000 n
+0000174129 00000 n
+0000177998 00000 n
+0000178190 00000 n
+0000178381 00000 n
+0000193035 00000 n
+0000192795 00000 n
+0000192855 00000 n
+0000192915 00000 n
+0000192975 00000 n
+0000216557 00000 n
+0000216432 00000 n
+0000216492 00000 n
+0000227371 00000 n
+0000227178 00000 n
+0000227243 00000 n
+0000227306 00000 n
+0000232331 00000 n
+0000232201 00000 n
+0000232266 00000 n
+0000239312 00000 n
+0000239502 00000 n
+0000239377 00000 n
+0000239437 00000 n
+0000082077 00000 n
+0000087379 00000 n
+0000101322 00000 n
+0000123593 00000 n
+0000183668 00000 n
+0000213594 00000 n
+0000213654 00000 n
+0000213714 00000 n
+0000210190 00000 n
+0000210250 00000 n
+0000210310 00000 n
+0000067744 00000 n
+0000067563 00000 n
+0000067313 00000 n
+0000067685 00000 n
+0000073617 00000 n
+0000071252 00000 n
+0000067841 00000 n
+0000425896 00000 n
+0000414142 00000 n
+0000425732 00000 n
+0000071474 00000 n
+0000413273 00000 n
+0000407530 00000 n
+0000413111 00000 n
+0000071632 00000 n
+0000073314 00000 n
+0000071793 00000 n
+0000073373 00000 n
+0000071951 00000 n
+0000072107 00000 n
+0000073432 00000 n
+0000072261 00000 n
+0000072416 00000 n
+0000073491 00000 n
+0000072571 00000 n
+0000407101 00000 n
+0000404669 00000 n
+0000406938 00000 n
+0000073555 00000 n
+0000072731 00000 n
+0000072885 00000 n
+0000073044 00000 n
+0000310372 00000 n
+0000077607 00000 n
+0000076413 00000 n
+0000073843 00000 n
+0000077049 00000 n
+0000077177 00000 n
+0000077305 00000 n
+0000076571 00000 n
+0000404232 00000 n
+0000402001 00000 n
+0000404069 00000 n
+0000076734 00000 n
+0000401670 00000 n
+0000399816 00000 n
+0000401504 00000 n
+0000076892 00000 n
+0000310192 00000 n
+0000310312 00000 n
+0000310252 00000 n
+0000082310 00000 n
+0000081099 00000 n
+0000077833 00000 n
+0000081273 00000 n
+0000081434 00000 n
+0000081588 00000 n
+0000081746 00000 n
+0000081912 00000 n
+0000087612 00000 n
+0000086575 00000 n
+0000082472 00000 n
+0000399123 00000 n
+0000396899 00000 n
+0000398961 00000 n
+0000086741 00000 n
+0000086895 00000 n
+0000087061 00000 n
+0000087215 00000 n
+0000105147 00000 n
+0000091192 00000 n
+0000090240 00000 n
+0000087852 00000 n
+0000090701 00000 n
+0000090760 00000 n
+0000090883 00000 n
+0000090942 00000 n
+0000091006 00000 n
+0000090390 00000 n
+0000090544 00000 n
+0000091128 00000 n
+0000396492 00000 n
+0000394630 00000 n
+0000396328 00000 n
+0000611790 00000 n
+0000094130 00000 n
+0000093719 00000 n
+0000091392 00000 n
+0000093861 00000 n
+0000098253 00000 n
+0000097718 00000 n
+0000094318 00000 n
+0000098014 00000 n
+0000393944 00000 n
+0000391264 00000 n
+0000393777 00000 n
+0000390799 00000 n
+0000388827 00000 n
+0000390637 00000 n
+0000097860 00000 n
+0000387877 00000 n
+0000381075 00000 n
+0000387711 00000 n
+0000101445 00000 n
+0000100791 00000 n
+0000098452 00000 n
+0000101263 00000 n
+0000100941 00000 n
+0000101381 00000 n
+0000380663 00000 n
+0000377980 00000 n
+0000380499 00000 n
+0000101099 00000 n
+0000326347 00000 n
+0000105211 00000 n
+0000104291 00000 n
+0000101658 00000 n
+0000105088 00000 n
+0000104457 00000 n
+0000104614 00000 n
+0000104772 00000 n
+0000104930 00000 n
+0000326315 00000 n
+0000326283 00000 n
+0000326251 00000 n
+0000111806 00000 n
+0000109168 00000 n
+0000105372 00000 n
+0000110958 00000 n
+0000109382 00000 n
+0000109537 00000 n
+0000109695 00000 n
+0000109849 00000 n
+0000110008 00000 n
+0000110167 00000 n
+0000110327 00000 n
+0000110488 00000 n
+0000110646 00000 n
+0000111678 00000 n
+0000377628 00000 n
+0000375629 00000 n
+0000377466 00000 n
+0000111742 00000 n
+0000110797 00000 n
+0000116687 00000 n
+0000114477 00000 n
+0000112045 00000 n
+0000115097 00000 n
+0000374851 00000 n
+0000369897 00000 n
+0000374686 00000 n
+0000369054 00000 n
+0000363394 00000 n
+0000368888 00000 n
+0000362686 00000 n
+0000358610 00000 n
+0000362520 00000 n
+0000357885 00000 n
+0000353916 00000 n
+0000357720 00000 n
+0000353226 00000 n
+0000349377 00000 n
+0000353060 00000 n
+0000348686 00000 n
+0000345151 00000 n
+0000348520 00000 n
+0000114635 00000 n
+0000114788 00000 n
+0000114943 00000 n
+0000611908 00000 n
+0000123967 00000 n
+0000120905 00000 n
+0000116940 00000 n
+0000123534 00000 n
+0000121159 00000 n
+0000121318 00000 n
+0000121477 00000 n
+0000121637 00000 n
+0000121796 00000 n
+0000121955 00000 n
+0000122113 00000 n
+0000122273 00000 n
+0000122433 00000 n
+0000122593 00000 n
+0000122753 00000 n
+0000123652 00000 n
+0000123711 00000 n
+0000122911 00000 n
+0000123070 00000 n
+0000123223 00000 n
+0000123839 00000 n
+0000123903 00000 n
+0000123378 00000 n
+0000344815 00000 n
+0000342791 00000 n
+0000344651 00000 n
+0000126125 00000 n
+0000125383 00000 n
+0000124167 00000 n
+0000125505 00000 n
+0000125564 00000 n
+0000125623 00000 n
+0000125751 00000 n
+0000125810 00000 n
+0000125938 00000 n
+0000125997 00000 n
+0000128935 00000 n
+0000127809 00000 n
+0000126235 00000 n
+0000127931 00000 n
+0000127990 00000 n
+0000128050 00000 n
+0000128179 00000 n
+0000128239 00000 n
+0000128368 00000 n
+0000128428 00000 n
+0000128557 00000 n
+0000128617 00000 n
+0000128746 00000 n
+0000128806 00000 n
+0000131668 00000 n
+0000130524 00000 n
+0000129058 00000 n
+0000130649 00000 n
+0000130710 00000 n
+0000130771 00000 n
+0000130902 00000 n
+0000130961 00000 n
+0000131092 00000 n
+0000131153 00000 n
+0000131284 00000 n
+0000131345 00000 n
+0000131476 00000 n
+0000131537 00000 n
+0000134097 00000 n
+0000133143 00000 n
+0000131779 00000 n
+0000133268 00000 n
+0000133329 00000 n
+0000133390 00000 n
+0000133521 00000 n
+0000133582 00000 n
+0000133713 00000 n
+0000133774 00000 n
+0000133905 00000 n
+0000133966 00000 n
+0000136324 00000 n
+0000135372 00000 n
+0000134221 00000 n
+0000135498 00000 n
+0000135559 00000 n
+0000135620 00000 n
+0000135751 00000 n
+0000135811 00000 n
+0000135942 00000 n
+0000136003 00000 n
+0000136134 00000 n
+0000136195 00000 n
+0000612028 00000 n
+0000138715 00000 n
+0000137763 00000 n
+0000136435 00000 n
+0000137889 00000 n
+0000137950 00000 n
+0000138011 00000 n
+0000138142 00000 n
+0000138203 00000 n
+0000138334 00000 n
+0000138395 00000 n
+0000138524 00000 n
+0000138584 00000 n
+0000140959 00000 n
+0000140004 00000 n
+0000138839 00000 n
+0000140130 00000 n
+0000140191 00000 n
+0000140252 00000 n
+0000140383 00000 n
+0000140444 00000 n
+0000140575 00000 n
+0000140636 00000 n
+0000140767 00000 n
+0000140828 00000 n
+0000143393 00000 n
+0000142438 00000 n
+0000141070 00000 n
+0000142564 00000 n
+0000142625 00000 n
+0000142686 00000 n
+0000142817 00000 n
+0000142878 00000 n
+0000143009 00000 n
+0000143070 00000 n
+0000143201 00000 n
+0000143262 00000 n
+0000145695 00000 n
+0000144743 00000 n
+0000143517 00000 n
+0000144869 00000 n
+0000144930 00000 n
+0000144991 00000 n
+0000145122 00000 n
+0000145182 00000 n
+0000145313 00000 n
+0000145374 00000 n
+0000145505 00000 n
+0000145566 00000 n
+0000148127 00000 n
+0000147174 00000 n
+0000145806 00000 n
+0000147300 00000 n
+0000147361 00000 n
+0000147422 00000 n
+0000147553 00000 n
+0000147614 00000 n
+0000147745 00000 n
+0000147804 00000 n
+0000147935 00000 n
+0000147996 00000 n
+0000150443 00000 n
+0000149488 00000 n
+0000148251 00000 n
+0000149614 00000 n
+0000149675 00000 n
+0000149736 00000 n
+0000149867 00000 n
+0000149928 00000 n
+0000150059 00000 n
+0000150120 00000 n
+0000150251 00000 n
+0000150312 00000 n
+0000612153 00000 n
+0000152873 00000 n
+0000151920 00000 n
+0000150554 00000 n
+0000152046 00000 n
+0000152107 00000 n
+0000152168 00000 n
+0000152299 00000 n
+0000152360 00000 n
+0000152489 00000 n
+0000152550 00000 n
+0000152681 00000 n
+0000152742 00000 n
+0000155198 00000 n
+0000154243 00000 n
+0000152997 00000 n
+0000154369 00000 n
+0000154430 00000 n
+0000154491 00000 n
+0000154622 00000 n
+0000154683 00000 n
+0000154814 00000 n
+0000154875 00000 n
+0000155006 00000 n
+0000155067 00000 n
+0000157620 00000 n
+0000156667 00000 n
+0000155309 00000 n
+0000156793 00000 n
+0000156854 00000 n
+0000156915 00000 n
+0000157046 00000 n
+0000157107 00000 n
+0000157238 00000 n
+0000157299 00000 n
+0000157430 00000 n
+0000157491 00000 n
+0000159950 00000 n
+0000159000 00000 n
+0000157744 00000 n
+0000159126 00000 n
+0000159187 00000 n
+0000159248 00000 n
+0000159379 00000 n
+0000159439 00000 n
+0000159570 00000 n
+0000159631 00000 n
+0000159762 00000 n
+0000159823 00000 n
+0000164126 00000 n
+0000162240 00000 n
+0000160061 00000 n
+0000163374 00000 n
+0000163435 00000 n
+0000163496 00000 n
+0000163627 00000 n
+0000163687 00000 n
+0000163818 00000 n
+0000163879 00000 n
+0000162432 00000 n
+0000162589 00000 n
+0000162746 00000 n
+0000162903 00000 n
+0000163060 00000 n
+0000163217 00000 n
+0000167386 00000 n
+0000166242 00000 n
+0000164289 00000 n
+0000166368 00000 n
+0000166429 00000 n
+0000166490 00000 n
+0000166621 00000 n
+0000166682 00000 n
+0000166813 00000 n
+0000166874 00000 n
+0000167003 00000 n
+0000167063 00000 n
+0000167194 00000 n
+0000167255 00000 n
+0000612278 00000 n
+0000170908 00000 n
+0000169422 00000 n
+0000167510 00000 n
+0000169890 00000 n
+0000169951 00000 n
+0000170012 00000 n
+0000170143 00000 n
+0000170204 00000 n
+0000170335 00000 n
+0000170396 00000 n
+0000170525 00000 n
+0000170585 00000 n
+0000170716 00000 n
+0000170777 00000 n
+0000169578 00000 n
+0000169734 00000 n
+0000174250 00000 n
+0000173239 00000 n
+0000171032 00000 n
+0000173365 00000 n
+0000173426 00000 n
+0000173487 00000 n
+0000173618 00000 n
+0000173679 00000 n
+0000173810 00000 n
+0000173871 00000 n
+0000174002 00000 n
+0000174063 00000 n
+0000178563 00000 n
+0000177339 00000 n
+0000174413 00000 n
+0000177810 00000 n
+0000177871 00000 n
+0000177932 00000 n
+0000178063 00000 n
+0000178124 00000 n
+0000178255 00000 n
+0000178316 00000 n
+0000177495 00000 n
+0000177648 00000 n
+0000183978 00000 n
+0000182613 00000 n
+0000178739 00000 n
+0000183607 00000 n
+0000342437 00000 n
+0000340431 00000 n
+0000342273 00000 n
+0000182796 00000 n
+0000182956 00000 n
+0000340074 00000 n
+0000338090 00000 n
+0000339908 00000 n
+0000183115 00000 n
+0000183847 00000 n
+0000183276 00000 n
+0000183913 00000 n
+0000183442 00000 n
+0000190182 00000 n
+0000188426 00000 n
+0000184259 00000 n
+0000189929 00000 n
+0000188636 00000 n
+0000188798 00000 n
+0000188960 00000 n
+0000189122 00000 n
+0000189282 00000 n
+0000189437 00000 n
+0000189596 00000 n
+0000190050 00000 n
+0000189763 00000 n
+0000190116 00000 n
+0000193100 00000 n
+0000192608 00000 n
+0000190409 00000 n
+0000192734 00000 n
+0000337596 00000 n
+0000335576 00000 n
+0000337430 00000 n
+0000612403 00000 n
+0000196708 00000 n
+0000196168 00000 n
+0000193276 00000 n
+0000196467 00000 n
+0000196315 00000 n
+0000210435 00000 n
+0000209491 00000 n
+0000196910 00000 n
+0000210129 00000 n
+0000209656 00000 n
+0000209811 00000 n
+0000209969 00000 n
+0000213965 00000 n
+0000213065 00000 n
+0000210635 00000 n
+0000213533 00000 n
+0000213778 00000 n
+0000213839 00000 n
+0000213221 00000 n
+0000213378 00000 n
+0000216808 00000 n
+0000216065 00000 n
+0000214141 00000 n
+0000216371 00000 n
+0000216212 00000 n
+0000216742 00000 n
+0000219711 00000 n
+0000219464 00000 n
+0000217009 00000 n
+0000219590 00000 n
+0000222944 00000 n
+0000222519 00000 n
+0000219899 00000 n
+0000222823 00000 n
+0000222666 00000 n
+0000612528 00000 n
+0000227627 00000 n
+0000225977 00000 n
+0000223132 00000 n
+0000227117 00000 n
+0000226169 00000 n
+0000226325 00000 n
+0000226484 00000 n
+0000226643 00000 n
+0000226803 00000 n
+0000227495 00000 n
+0000226960 00000 n
+0000227561 00000 n
+0000310431 00000 n
+0000232456 00000 n
+0000229907 00000 n
+0000227815 00000 n
+0000232074 00000 n
+0000232135 00000 n
+0000230153 00000 n
+0000230310 00000 n
+0000230466 00000 n
+0000230622 00000 n
+0000230784 00000 n
+0000230946 00000 n
+0000231108 00000 n
+0000231270 00000 n
+0000231432 00000 n
+0000231594 00000 n
+0000231756 00000 n
+0000231918 00000 n
+0000335125 00000 n
+0000332044 00000 n
+0000334959 00000 n
+0000235451 00000 n
+0000234802 00000 n
+0000232594 00000 n
+0000235270 00000 n
+0000234958 00000 n
+0000235113 00000 n
+0000239567 00000 n
+0000237095 00000 n
+0000235575 00000 n
+0000238921 00000 n
+0000238982 00000 n
+0000237323 00000 n
+0000237480 00000 n
+0000237636 00000 n
+0000239048 00000 n
+0000239114 00000 n
+0000239180 00000 n
+0000239246 00000 n
+0000237792 00000 n
+0000237954 00000 n
+0000238116 00000 n
+0000238278 00000 n
+0000238440 00000 n
+0000238597 00000 n
+0000238759 00000 n
+0000244158 00000 n
+0000242984 00000 n
+0000239691 00000 n
+0000243797 00000 n
+0000243158 00000 n
+0000243315 00000 n
+0000243471 00000 n
+0000243638 00000 n
+0000310131 00000 n
+0000248011 00000 n
+0000247220 00000 n
+0000244334 00000 n
+0000247710 00000 n
+0000247376 00000 n
+0000247543 00000 n
+0000612653 00000 n
+0000249716 00000 n
+0000249226 00000 n
+0000248161 00000 n
+0000249535 00000 n
+0000249373 00000 n
+0000253266 00000 n
+0000252599 00000 n
+0000249840 00000 n
+0000252905 00000 n
+0000252746 00000 n
+0000310070 00000 n
+0000255979 00000 n
+0000255732 00000 n
+0000253441 00000 n
+0000255858 00000 n
+0000259192 00000 n
+0000258823 00000 n
+0000256167 00000 n
+0000259131 00000 n
+0000258970 00000 n
+0000262550 00000 n
+0000262116 00000 n
+0000259354 00000 n
+0000262429 00000 n
+0000262263 00000 n
+0000266599 00000 n
+0000265926 00000 n
+0000262738 00000 n
+0000266052 00000 n
+0000266173 00000 n
+0000266234 00000 n
+0000266295 00000 n
+0000331542 00000 n
+0000328650 00000 n
+0000331377 00000 n
+0000266356 00000 n
+0000266417 00000 n
+0000266478 00000 n
+0000266538 00000 n
+0000612778 00000 n
+0000269518 00000 n
+0000268866 00000 n
+0000266815 00000 n
+0000269338 00000 n
+0000269022 00000 n
+0000269184 00000 n
+0000273423 00000 n
+0000272524 00000 n
+0000269667 00000 n
+0000272997 00000 n
+0000272680 00000 n
+0000273118 00000 n
+0000273179 00000 n
+0000273240 00000 n
+0000273301 00000 n
+0000272843 00000 n
+0000273362 00000 n
+0000276673 00000 n
+0000276016 00000 n
+0000273585 00000 n
+0000276491 00000 n
+0000276552 00000 n
+0000276172 00000 n
+0000276334 00000 n
+0000279607 00000 n
+0000279420 00000 n
+0000276835 00000 n
+0000279546 00000 n
+0000282720 00000 n
+0000282355 00000 n
+0000279756 00000 n
+0000282659 00000 n
+0000282502 00000 n
+0000285556 00000 n
+0000285309 00000 n
+0000282921 00000 n
+0000285435 00000 n
+0000612903 00000 n
+0000288579 00000 n
+0000288144 00000 n
+0000285770 00000 n
+0000288458 00000 n
+0000288291 00000 n
+0000292257 00000 n
+0000291823 00000 n
+0000288741 00000 n
+0000292136 00000 n
+0000291970 00000 n
+0000295317 00000 n
+0000294941 00000 n
+0000292498 00000 n
+0000295256 00000 n
+0000295088 00000 n
+0000298259 00000 n
+0000298012 00000 n
+0000295479 00000 n
+0000298138 00000 n
+0000301588 00000 n
+0000301152 00000 n
+0000298434 00000 n
+0000301467 00000 n
+0000301299 00000 n
+0000304610 00000 n
+0000303999 00000 n
+0000301750 00000 n
+0000304309 00000 n
+0000304146 00000 n
+0000613028 00000 n
+0000307946 00000 n
+0000307699 00000 n
+0000304811 00000 n
+0000307825 00000 n
+0000310492 00000 n
+0000309822 00000 n
+0000308121 00000 n
+0000309948 00000 n
+0000310009 00000 n
+0000328338 00000 n
+0000326379 00000 n
+0000328174 00000 n
+0000315356 00000 n
+0000314766 00000 n
+0000310670 00000 n
+0000315234 00000 n
+0000315295 00000 n
+0000314922 00000 n
+0000315077 00000 n
+0000319236 00000 n
+0000319049 00000 n
+0000315519 00000 n
+0000319175 00000 n
+0000323258 00000 n
+0000323010 00000 n
+0000319373 00000 n
+0000323136 00000 n
+0000323197 00000 n
+0000326127 00000 n
+0000325940 00000 n
+0000323395 00000 n
+0000326066 00000 n
+0000613153 00000 n
+0000328567 00000 n
+0000328542 00000 n
+0000331889 00000 n
+0000331754 00000 n
+0000335413 00000 n
+0000335342 00000 n
+0000337965 00000 n
+0000337820 00000 n
+0000340323 00000 n
+0000340292 00000 n
+0000342683 00000 n
+0000342652 00000 n
+0000345048 00000 n
+0000345015 00000 n
+0000349127 00000 n
+0000348926 00000 n
+0000353680 00000 n
+0000353477 00000 n
+0000358342 00000 n
+0000358135 00000 n
+0000363142 00000 n
+0000362939 00000 n
+0000369609 00000 n
+0000369328 00000 n
+0000375340 00000 n
+0000375113 00000 n
+0000377872 00000 n
+0000377841 00000 n
+0000380934 00000 n
+0000380873 00000 n
+0000388478 00000 n
+0000388169 00000 n
+0000391160 00000 n
+0000391003 00000 n
+0000394423 00000 n
+0000394184 00000 n
+0000396769 00000 n
+0000396724 00000 n
+0000399647 00000 n
+0000399392 00000 n
+0000401908 00000 n
+0000401883 00000 n
+0000404539 00000 n
+0000404454 00000 n
+0000407375 00000 n
+0000407304 00000 n
+0000413794 00000 n
+0000413569 00000 n
+0000426567 00000 n
+0000426234 00000 n
+0000440408 00000 n
+0000440069 00000 n
+0000446325 00000 n
+0000446034 00000 n
+0000458208 00000 n
+0000457926 00000 n
+0000465981 00000 n
+0000465650 00000 n
+0000481530 00000 n
+0000481143 00000 n
+0000495979 00000 n
+0000495588 00000 n
+0000515632 00000 n
+0000515199 00000 n
+0000520157 00000 n
+0000519896 00000 n
+0000534779 00000 n
+0000534389 00000 n
+0000537150 00000 n
+0000537125 00000 n
+0000552758 00000 n
+0000552385 00000 n
+0000558094 00000 n
+0000557815 00000 n
+0000562368 00000 n
+0000562289 00000 n
+0000578320 00000 n
+0000577915 00000 n
+0000585897 00000 n
+0000585700 00000 n
+0000590759 00000 n
+0000590564 00000 n
+0000600222 00000 n
+0000599945 00000 n
+0000604465 00000 n
+0000604176 00000 n
+0000607727 00000 n
+0000607484 00000 n
+0000611366 00000 n
+0000611273 00000 n
+0000613233 00000 n
+0000613355 00000 n
+0000613481 00000 n
+0000613570 00000 n
+0000613652 00000 n
+0000620402 00000 n
+0000632560 00000 n
+0000632601 00000 n
+0000632641 00000 n
+0000632775 00000 n
+trailer
+<<
+/Size 1631
+/Root 1629 0 R
+/Info 1630 0 R
+/ID [<EE062801121FD6A8D496377EB23611E5> <EE062801121FD6A8D496377EB23611E5>]
+>>
+startxref
+633039
+%%EOF
diff --git a/Master/texmf-dist/doc/latex/subfig/test1.pdf b/Master/texmf-dist/doc/latex/subfig/test1.pdf
new file mode 100644
index 00000000000..60083d9bc36
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test1.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test1.tex b/Master/texmf-dist/doc/latex/subfig/test1.tex
new file mode 100644
index 00000000000..97c4505e1ff
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test1.tex
@@ -0,0 +1,712 @@
+%% test1.tex
+%%
+%% This is file `test1.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass[twocolumn]{article}
+
+\usepackage{caption}
+\usepackage[labelfont=bf,textfont={sl,bf},lofdepth,lotdepth]{subfig}
+\DeclareCaptionListOfFormat{colon}{#2:}
+\usepackage{fixltx2e}
+
+\captionsetup[subtable]{listofformat=colon,listofnumwidth=1.5em,
+ listofindent=3.8em}
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ #1%
+ \hfil}%
+ \vfil}}}
+
+\makeatletter
+ \newcommand{\setcaptype}[1]{%
+ \listsubcaptions
+ \renewcommand{\@captype}{#1}}
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\begin{document}
+
+\title{Subfig Package Test Program One}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks five things:
+\begin{enumerate}
+ \item if the {\bf subfig} and the {\bf fixltx2e} packages work together;
+ \item that the subcaption label format for the List-of-Float pages
+ is working;
+ \item that the subcaption numbering in the List-of-Float pages is
+ working;
+ \item it tests the {\bf figure*} and {\bf table*} environemnts in
+ two column mode; and,
+ \item that various position combinations of top and bottom captions and
+ subcaptions work together.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\listoffigures
+\clearpage
+
+\listoftables
+\clearpage
+
+\section{Overview}
+
+This test runs through the various layout options for both figures and
+subfigures; and tables and subtables. It also shows a mixture of
+figures and tables within a single float environment.
+
+\subsection{Multiple figures}
+\captionsetup[figure]{position=bottom}
+\captionsetup[table]{position=bottom}
+
+Figure~\ref{fig:Afirst}[\pageref{fig:Afirst}] has two subfigures
+\ref{fig:AfirstA}[\pageref{fig:AfirstA}] and
+\ref{fig:AfirstB}[\pageref{fig:AfirstB}].
+%
+Figure~\ref{fig:Asecond}[\pageref{fig:Asecond}] has two subfigures
+\ref{fig:AsecondA}[\pageref{fig:AsecondA}] and
+\ref{fig:AsecondB}[\pageref{fig:AsecondB}].
+%
+Figure~\ref{fig:Athird}[\pageref{fig:Athird}] has two subfigures
+\ref{fig:AthirdA}[\pageref{fig:AthirdA}] and
+\ref{fig:AthirdB}[\pageref{fig:AthirdB}].
+%
+Figure~\ref{fig:Afourth}[\pageref{fig:Afourth}] has two subfigures
+\ref{fig:AfourthA}[\pageref{fig:AfourthA}] and
+\ref{fig:AfourthB}[\pageref{fig:AfourthB}].
+%
+Figure~\ref{fig:Afifth}[\pageref{fig:Afifth}] has two subfigures
+\ref{fig:AfifthA}[\pageref{fig:AfifthA}] and
+\ref{fig:AfifthB}[\pageref{fig:AfifthB}].
+%
+Figure~\ref{fig:Asixth}[\pageref{fig:Asixth}] has two subfigures
+\ref{fig:AsixthA}[\pageref{fig:AsixthA}] and
+\ref{fig:AsixthB}[\pageref{fig:AsixthB}].
+
+\begin{figure*}%
+ \captionsetup[figure]{margin=10pt}%
+ \subfloat[One subone.\label{fig:AfirstA}]{\figbox{One subone}}
+ \hfill
+ \subfloat[One subtwo.\label{fig:AfirstB} --- but this one has a
+ very very long caption. So long that it continues over into
+ other lines so that we can test the list-of line settings.]%
+ {\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure --- but this one has a very very long caption.
+ So long that it continues over into a second line so that we can
+ test the margin setting and centering of the caption command in the
+ full page mode.}%
+ \label{fig:Afirst}%
+%
+ \subfloat[Two subone.\label{fig:AsecondA}]{\figbox{Two subone}}
+ \hfill
+ \subfloat[Two subtwo.\label{fig:AsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Asecond}%
+%
+ \subfloat[Three subone.\label{fig:AthirdA}]{\figbox{Three subone}}
+ \hfill
+ \subfloat[Three subtwo.\label{fig:AthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Athird}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[Four subone.\label{fig:AfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:AfourthB}]{\figbox{Four subtwo}}\\[-10pt]
+ \caption{Fourth figure.}%
+ \label{fig:Afourth}%
+%
+ \subfloat[Five subone.\label{fig:AfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:AfifthB}]{\figbox{Five subtwo}}\\[-10pt]
+ \caption{Fifth figure.}%
+ \label{fig:Afifth}%
+%
+ \subfloat[Six subone.\label{fig:AsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:AsixthB}]{\figbox{Six subtwo}}\\[-10pt]
+ \caption{Sixth figure.}%
+ \label{fig:Asixth}%
+ \end{center}
+\end{figure*}
+
+\subsection{Multiple tables}
+
+Table~\ref{tab:Afirst}[\pageref{tab:Afirst}] has two subtables
+\ref{tab:AfirstA}[\pageref{tab:AfirstA}] and
+\ref{tab:AfirstB}[\pageref{tab:AfirstB}].
+%
+Table~\ref{tab:Asecond}[\pageref{tab:Asecond}] has two subtables
+\ref{tab:AsecondA}[\pageref{tab:AsecondA}] and
+\ref{tab:AsecondB}[\pageref{tab:AsecondB}].
+%
+Table~\ref{tab:Athird}[\pageref{tab:Athird}] has two subtables
+\ref{tab:AthirdA}[\pageref{tab:AthirdA}] and
+\ref{tab:AthirdB}[\pageref{tab:AthirdB}].
+%
+Table~\ref{tab:Afourth}[\pageref{tab:Afourth}] has two subtables
+\ref{tab:AfourthA}[\pageref{tab:AfourthA}] and
+\ref{tab:AfourthB}[\pageref{tab:AfourthB}].
+%
+Table~\ref{tab:Afifth}[\pageref{tab:Afifth}] has two subtables
+\ref{tab:AfifthA}[\pageref{tab:AfifthA}] and
+\ref{tab:AfifthB}[\pageref{tab:AfifthB}].
+%
+Table~\ref{tab:Asixth}[\pageref{tab:Asixth}] has two subtables
+\ref{tab:AsixthA}[\pageref{tab:AsixthA}] and
+\ref{tab:AsixthB}[\pageref{tab:AsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \subfloat[One subone.\label{tab:AfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:AfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First table.}%
+ \label{tab:Afirst}%
+%
+ \subfloat[Two subone.\label{tab:AsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:AsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second table.}%
+ \label{tab:Asecond}%
+%
+ \subfloat[Three subone.\label{tab:AthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:AthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third table.}%
+ \label{tab:Athird}%
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \subfloat[Four subone.\label{tab:AfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:AfourthB}]{\figbox{Four subtwo}}\\[-10pt]
+ \caption{Fourth table.}%
+ \label{tab:Afourth}%
+%
+ \subfloat[Five subone.\label{tab:AfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:AfifthB}]{\figbox{Five subtwo}}\\[-10pt]
+ \caption{Fifth table.}%
+ \label{tab:Afifth}%
+%
+ \subfloat[Six subone.\label{tab:AsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:AsixthB}]{\figbox{Six subtwo}}\\[-10pt]
+ \caption{Sixth table.}%
+ \label{tab:Asixth}%
+ \end{center}%
+\end{table*}
+
+\subsection{Multiple figures with the {\bf figure} caption at top}
+\captionsetup[figure]{position=top}
+
+Figure~\ref{fig:Bfirst}[\pageref{fig:Bfirst}] has two subfigures
+\ref{fig:BfirstA}[\pageref{fig:BfirstA}] and
+\ref{fig:BfirstB}[\pageref{fig:BfirstB}].
+%
+Figure~\ref{fig:Bsecond}[\pageref{fig:Bsecond}] has two subfigures
+\ref{fig:BsecondA}[\pageref{fig:BsecondA}] and
+\ref{fig:BsecondB}[\pageref{fig:BsecondB}].
+%
+Figure~\ref{fig:Bthird}[\pageref{fig:Bthird}] has two subfigures
+\ref{fig:BthirdA}[\pageref{fig:BthirdA}] and
+\ref{fig:BthirdB}[\pageref{fig:BthirdB}].
+%
+Figure~\ref{fig:Bfourth}[\pageref{fig:Bfourth}] has two subfigures
+\ref{fig:BfourthA}[\pageref{fig:BfourthA}] and
+\ref{fig:BfourthB}[\pageref{fig:BfourthB}].
+%
+Figure~\ref{fig:Bfifth}[\pageref{fig:Bfifth}] has two subfigures
+\ref{fig:BfifthA}[\pageref{fig:BfifthA}] and
+\ref{fig:BfifthB}[\pageref{fig:BfifthB}].
+%
+Figure~\ref{fig:Bsixth}[\pageref{fig:Bsixth}] has two subfigures
+\ref{fig:BsixthA}[\pageref{fig:BsixthA}] and
+\ref{fig:BsixthB}[\pageref{fig:BsixthB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{First figure.}%
+ \label{fig:Bfirst}%
+ \subfloat[One subone.\label{fig:BfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:BfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second figure.}%
+ \label{fig:Bsecond}%
+ \subfloat[Two subone.\label{fig:BsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:BsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third figure.}%
+ \label{fig:Bthird}%
+ \subfloat[Three subone.\label{fig:BthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:BthirdB}]{\figbox{Three subtwo}}%
+ \end{center}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{Fourth figure.}%
+ \label{fig:Bfourth}%
+ \subfloat[Four subone.\label{fig:BfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:BfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth figure.}%
+ \label{fig:Bfifth}%
+ \subfloat[Five subone.\label{fig:BfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:BfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth figure.}%
+ \label{fig:Bsixth}%
+ \subfloat[Six subone.\label{fig:BsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:BsixthB}]{\figbox{Six subtwo}}
+ \end{center}%
+\end{figure*}
+
+\subsection{Multiple tables with the {\bf table} caption at top}
+\captionsetup[table]{position=top}
+
+Table~\ref{tab:Bfirst}[\pageref{tab:Bfirst}] has two subtables
+\ref{tab:BfirstA}[\pageref{tab:BfirstA}] and
+\ref{tab:BfirstB}[\pageref{tab:BfirstB}].
+%
+Table~\ref{tab:Bsecond}[\pageref{tab:Bsecond}] has two subtables
+\ref{tab:BsecondA}[\pageref{tab:BsecondA}] and
+\ref{tab:BsecondB}[\pageref{tab:BsecondB}].
+%
+Table~\ref{tab:Bthird}[\pageref{tab:Bthird}] has two subtables
+\ref{tab:BthirdA}[\pageref{tab:BthirdA}] and
+\ref{tab:BthirdB}[\pageref{tab:BthirdB}].
+%
+Table~\ref{tab:Bfourth}[\pageref{tab:Bfourth}] has two subtables
+\ref{tab:BfourthA}[\pageref{tab:BfourthA}] and
+\ref{tab:BfourthB}[\pageref{tab:BfourthB}].
+%
+Table~\ref{tab:Bfifth}[\pageref{tab:Bfifth}] has two subtables
+\ref{tab:BfifthA}[\pageref{tab:BfifthA}] and
+\ref{tab:BfifthB}[\pageref{tab:BfifthB}].
+%
+Table~\ref{tab:Bsixth}[\pageref{tab:Bsixth}] has two subtables
+\ref{tab:BsixthA}[\pageref{tab:BsixthA}] and
+\ref{tab:BsixthB}[\pageref{tab:BsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \caption{First table.}%
+ \label{tab:Bfirst}%
+ \subfloat[One subone.\label{tab:BfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:BfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second table.}%
+ \label{tab:Bsecond}%
+ \subfloat[Two subone.\label{tab:BsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:BsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third table.}%
+ \label{tab:Bthird}%
+ \subfloat[Three subone.\label{tab:BthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:BthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Fourth table.}%
+ \label{tab:Bfourth}%
+ \subfloat[Four subone.\label{tab:BfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:BfourthB}]{\figbox{Four subtwo}}
+%
+ \caption{Fifth table.}%
+ \label{tab:Bfifth}%
+ \subfloat[Five subone.\label{tab:BfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:BfifthB}]{\figbox{Five subtwo}}
+%
+ \caption{Sixth table.}%
+ \label{tab:Bsixth}%
+ \subfloat[Six subone.\label{tab:BsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:BsixthB}]{\figbox{Six subtwo}}
+ \end{center}%
+\end{table*}
+
+
+\subsection{Multiple figures with the {\bf figure} and {\bf subfigure}
+ captions at top}
+\captionsetup[subfigure]{position=top}
+
+Figure~\ref{fig:Cfirst}[\pageref{fig:Cfirst}] has two subfigures
+\ref{fig:CfirstA}[\pageref{fig:CfirstA}] and
+\ref{fig:CfirstB}[\pageref{fig:CfirstB}].
+%
+Figure~\ref{fig:Csecond}[\pageref{fig:Csecond}] has two subfigures
+\ref{fig:CsecondA}[\pageref{fig:CsecondA}] and
+\ref{fig:CsecondB}[\pageref{fig:CsecondB}].
+%
+Figure~\ref{fig:Cthird}[\pageref{fig:Cthird}] has two subfigures
+\ref{fig:CthirdA}[\pageref{fig:CthirdA}] and
+\ref{fig:CthirdB}[\pageref{fig:CthirdB}].
+%
+Figure~\ref{fig:Cfourth}[\pageref{fig:Cfourth}] has two subfigures
+\ref{fig:CfourthA}[\pageref{fig:CfourthA}] and
+\ref{fig:CfourthB}[\pageref{fig:CfourthB}].
+%
+Figure~\ref{fig:Cfifth}[\pageref{fig:Cfifth}] has two subfigures
+\ref{fig:CfifthA}[\pageref{fig:CfifthA}] and
+\ref{fig:CfifthB}[\pageref{fig:CfifthB}].
+%
+Figure~\ref{fig:Csixth}[\pageref{fig:Csixth}] has two subfigures
+\ref{fig:CsixthA}[\pageref{fig:CsixthA}] and
+\ref{fig:CsixthB}[\pageref{fig:CsixthB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{First figure.}%
+ \label{fig:Cfirst}%
+ \subfloat[One subone.\label{fig:CfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:CfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second figure.}%
+ \label{fig:Csecond}%
+ \subfloat[Two subone.\label{fig:CsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:CsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third figure.}%
+ \label{fig:Cthird}%
+ \subfloat[Three subone.\label{fig:CthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:CthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{Fourth figure.}%
+ \label{fig:Cfourth}%
+ \subfloat[Four subone.\label{fig:CfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:CfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth figure.}%
+ \label{fig:Cfifth}%
+ \subfloat[Five subone.\label{fig:CfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:CfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth figure.}%
+ \label{fig:Csixth}%
+ \subfloat[Six subone.\label{fig:CsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:CsixthB}]{\figbox{Six subtwo}}\\
+ \end{center}%
+\end{figure*}
+
+\subsection{Multiple tables with the {\bf table} and {\bf subtable}
+ captions at top}
+\captionsetup[subtable]{position=top}
+
+Table~\ref{tab:Cfirst}[\pageref{tab:Cfirst}] has two subtables
+\ref{tab:CfirstA}[\pageref{tab:CfirstA}] and
+\ref{tab:CfirstB}[\pageref{tab:CfirstB}].
+%
+Table~\ref{tab:Csecond}[\pageref{tab:Csecond}] has two subtables
+\ref{tab:CsecondA}[\pageref{tab:CsecondA}] and
+\ref{tab:CsecondB}[\pageref{tab:CsecondB}].
+%
+Table~\ref{tab:Cthird}[\pageref{tab:Cthird}] has two subtables
+\ref{tab:CthirdA}[\pageref{tab:CthirdA}] and
+\ref{tab:CthirdB}[\pageref{tab:CthirdB}].
+%
+Table~\ref{tab:Cfourth}[\pageref{tab:Cfourth}] has two subtables
+\ref{tab:CfourthA}[\pageref{tab:CfourthA}] and
+\ref{tab:CfourthB}[\pageref{tab:CfourthB}].
+%
+Table~\ref{tab:Cfifth}[\pageref{tab:Cfifth}] has two subtables
+\ref{tab:CfifthA}[\pageref{tab:CfifthA}] and
+\ref{tab:CfifthB}[\pageref{tab:CfifthB}].
+%
+Table~\ref{tab:Csixth}[\pageref{tab:Csixth}] has two subtables
+\ref{tab:CsixthA}[\pageref{tab:CsixthA}] and
+\ref{tab:CsixthB}[\pageref{tab:CsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \caption{First table.}%
+ \label{tab:Cfirst}%
+ \subfloat[One subone.\label{tab:CfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:CfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second table.}%
+ \label{tab:Csecond}%
+ \subfloat[Two subone.\label{tab:CsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:CsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third table.}%
+ \label{tab:Cthird}%
+ \subfloat[Three subone.\label{tab:CthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:CthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Fourth table.}%
+ \label{tab:Cfourth}%
+ \subfloat[Four subone.\label{tab:CfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:CfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth table.}%
+ \label{tab:Cfifth}%
+ \subfloat[Five subone.\label{tab:CfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:CfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth table.}%
+ \label{tab:Csixth}%
+ \subfloat[Six subone.\label{tab:CsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:CsixthB}]{\figbox{Six subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\subsection{Mixed figures and tables with only the {\bf table} caption
+ at top}
+\captionsetup[figure]{position=bottom}
+%\setcounter{subfigure}{0}
+\captionsetup[subfigure]{position=bottom}
+\captionsetup[table]{position=top}
+%\setcounter{subtable}{0}
+\captionsetup[subtable]{position=bottom}
+
+Figure~\ref{fig:Dfirst}[\pageref{fig:Dfirst}] has two subfigures
+\ref{fig:DfirstA}[\pageref{fig:DfirstA}] and
+\ref{fig:DfirstB}[\pageref{fig:DfirstB}].
+%
+Table~\ref{tab:Dfirst}[\pageref{tab:Dfirst}] has two subtables
+\ref{tab:DfirstA}[\pageref{tab:DfirstA}] and
+\ref{tab:DfirstB}[\pageref{tab:DfirstB}].
+%
+Figure~\ref{fig:Dsecond}[\pageref{fig:Dsecond}] has two subfigures
+\ref{fig:DsecondA}[\pageref{fig:DsecondA}] and
+\ref{fig:DsecondB}[\pageref{fig:DsecondB}].
+%
+Figure~\ref{fig:Dthird}[\pageref{fig:Dthird}] has two subfigures
+\ref{fig:DthirdA}[\pageref{fig:DthirdA}] and
+\ref{fig:DthirdB}[\pageref{fig:DthirdB}].
+%
+Table~\ref{tab:Dsecond}[\pageref{tab:Dsecond}] has two subtables
+\ref{tab:DsecondA}[\pageref{tab:DsecondA}] and
+\ref{tab:DsecondB}[\pageref{tab:DsecondB}].
+%
+Table~\ref{tab:Dthird}[\pageref{tab:Dthird}] has two subtables
+\ref{tab:DthirdA}[\pageref{tab:DthirdA}] and
+\ref{tab:DthirdB}[\pageref{tab:DthirdB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[One subone.\label{fig:DfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:DfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure.}%
+ \label{fig:Dfirst}%
+%
+ \setcaptype{table}%
+ \caption{First table.}%
+ \label{tab:Dfirst}%
+ \subfloat[One subone.\label{tab:DfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:DfirstB}]{\figbox{One subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Two subone.\label{fig:DsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:DsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Dsecond}%
+ \end{center}%
+\end{figure*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Second table.}%
+ \label{tab:Dsecond}%
+ \subfloat[Two subone.\label{tab:DsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:DsecondB}]{\figbox{Two subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Three subone.\label{fig:DthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:DthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Dthird}%
+%
+ \setcaptype{table}%
+ \caption{Third table.}%
+ \label{tab:Dthird}%
+ \subfloat[Three subone.\label{tab:DthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:DthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+
+\subsection{Mixed figures and tables with {\bf table} and {\bf subtable}
+ captions at top}
+\captionsetup[figure]{position=bottom}
+%\setcounter{subfigure}{0}
+\captionsetup[subfigure]{position=bottom}
+\captionsetup[table]{position=top}
+%\setcounter{subtable}{0}
+\captionsetup[subtable]{position=top}
+
+Figure~\ref{fig:Efirst}[\pageref{fig:Efirst}] has two subfigures
+\ref{fig:EfirstA}[\pageref{fig:EfirstA}] and
+\ref{fig:EfirstB}[\pageref{fig:EfirstB}].
+%
+Table~\ref{tab:Efirst}[\pageref{tab:Efirst}] has two subtables
+\ref{tab:EfirstA}[\pageref{tab:EfirstA}] and
+\ref{tab:EfirstB}[\pageref{tab:EfirstB}].
+%
+Figure~\ref{fig:Esecond}[\pageref{fig:Esecond}] has two subfigures
+\ref{fig:EsecondA}[\pageref{fig:EsecondA}] and
+\ref{fig:EsecondB}[\pageref{fig:EsecondB}].
+%
+Figure~\ref{fig:Ethird}[\pageref{fig:Ethird}] has two subfigures
+\ref{fig:EthirdA}[\pageref{fig:EthirdA}] and
+\ref{fig:EthirdB}[\pageref{fig:EthirdB}].
+%
+Table~\ref{tab:Esecond}[\pageref{tab:Esecond}] has two subtables
+\ref{tab:EsecondA}[\pageref{tab:EsecondA}] and
+\ref{tab:EsecondB}[\pageref{tab:EsecondB}].
+%
+Table~\ref{tab:Ethird}[\pageref{tab:Ethird}] has two subtables
+\ref{tab:EthirdA}[\pageref{tab:EthirdA}] and
+\ref{tab:EthirdB}[\pageref{tab:EthirdB}].
+%
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[One subone.\label{fig:EfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:EfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure.}%
+ \label{fig:Efirst}%
+%
+ \setcaptype{table}%
+ \caption{First table.}%
+ \label{tab:Efirst}%
+ \subfloat[One subone.\label{tab:EfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:EfirstB}]{\figbox{One subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Two subone.\label{fig:EsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:EsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Esecond}%
+ \end{center}%
+\end{figure*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Second table.}%
+ \label{tab:Esecond}%
+ \subfloat[Two subone.\label{tab:EsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:EsecondB}]{\figbox{Two subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Three subone.\label{fig:EthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:EthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Ethird}%
+%
+ \setcaptype{table}%
+ \caption{Third table.}%
+ \label{tab:Ethird}%
+ \subfloat[Three subone.\label{tab:EthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:EthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/subfig/test2.pdf b/Master/texmf-dist/doc/latex/subfig/test2.pdf
new file mode 100644
index 00000000000..51822bb7b2e
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test2.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test2.tex b/Master/texmf-dist/doc/latex/subfig/test2.tex
new file mode 100644
index 00000000000..41016d1f7ba
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test2.tex
@@ -0,0 +1,199 @@
+%% test2.tex
+%%
+%% This is file `test2.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{fullpage}
+\usepackage[format=hang]{subfig}
+\captionsetup[subfloat]{farskip=7pt,nearskip=3pt}
+
+\makeatletter
+ \def\mpt{\@minipagetrue}
+ \def\mpf{\@minipagefalse}
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\fboxsep=-\fboxrule
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ #1%
+ \hfil}%
+ \vfil}}}
+\def\hrl{\hbox to 0pt{\hss\vrule height0pt depth.2pt width9.5pt}}
+\def\hrr{\hbox to 0pt{\vrule height0pt depth.2pt width9.5pt\hss}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Two}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks three things:
+\begin{enumerate}
+ \item subfloat references;
+ \item subfloat options; and,
+ \item extra blank space in the caption layout.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+Figures wrapped to show any extra spaces introduced in processing the
+sub-floats.
+
+\begin{figure}%
+ \centering
+ \fbox{%
+ \fbox{\subfloat[Subfigure One.\label{fig:A1}]{%
+ \figbox{SUBFIG ONE}}}%
+ \hspace{10pt}%
+ \fbox{\subfloat[Subfigure Two.\label{fig:A2}]{%
+ \figbox{SUBFIG TWO}}}}
+ \caption{Two side-by-side figures.}%
+ \label{fig:A}%
+\end{figure}
+
+\begin{figure}%
+ \begin{center}%
+ \fbox{\hbox to 4.13837in{\hss\vbox{%
+ \fbox{\mpt\subfloat[Subfigure Three.\label{fig:B1}]{%
+ \figbox{SUBFIG THREE}}}%
+ \hspace{10pt}%
+ \fbox{\mpt\subfloat[Subfigure Four.\label{fig:B2}]{%
+ \figbox{SUBFIG FOUR}}}\\[-1.5pt]
+ \fbox{\subfloat[Subfigure Five.\label{fig:B3}]{%
+ \figbox{SUBFIG FIVE}}}%
+ \hspace{10pt}%
+ \fbox{\subfloat[Subfigure Six.\label{fig:B4}]{%
+ \figbox{SUBFIG SIX}}}}\hss}}%
+ \end{center}
+ \caption{Four figures with specified suppression of extra padding.}%
+ \label{fig:B}%
+\end{figure}
+
+\begin{figure}
+ \centering
+ \fbox{%
+ \begin{minipage}{4.13837in}%
+%\mpf
+ \subfloat[Subfigure Seven.\label{fig:C1}]{%
+ \figbox{SUBFIG SEVEN}}
+ \hspace{10pt}%
+ \subfloat[Subfigure Eight.\label{fig:C2}]{%
+ \figbox{SUBFIG EIGHT}}\\
+ \subfloat[Subfigure Nine.\label{fig:C3}]{%
+ \figbox{SUBFIG NINE}}
+ \hspace{10pt}%
+ \subfloat[Subfigure Ten.\label{fig:C4}]{%
+ \figbox{SUBFIG TEN}}
+ \end{minipage}}
+ \caption{Four figures with auto fitting in a minipage.}%
+ \label{fig:C}%
+\end{figure}
+
+\begin{figure}
+ \centering
+%
+ \subfloat[First caption.]{\fbox{Under figure/text}}\quad
+ \subfloat[Longer second caption.]{\fbox{Under figure/text}}\\
+%
+ \subfloat[Third caption.]{\figbox{Under figure/text}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Under figure/text}}
+ \caption{Four figures testing caption fitting.}%
+\end{figure}
+
+
+\newpage
+
+\begin{table}
+ \centering
+%
+ \caption{Test for TABTOPCAP with caption.}%
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat[First caption.]{\figbox{Table A with caption}}\quad
+ \subfloat[Second caption.]{\figbox{Table B with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}\\
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat[Third caption.]{\figbox{Table C with caption}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Table D with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}
+%
+\end{table}
+
+\begin{table}
+ \centering
+%
+ \caption{Test for TABTOPCAP without caption.}%
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat{\figbox{Table A with/out caption}}\quad
+ \subfloat[Second caption.]{\figbox{Table B with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}\\
+%
+
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat{\figbox{Table C with/out caption}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Table D with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}
+%
+\end{table}
+
+
+
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/subfig/test3.pdf b/Master/texmf-dist/doc/latex/subfig/test3.pdf
new file mode 100644
index 00000000000..7c89e3dbb96
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test3.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test3.tex b/Master/texmf-dist/doc/latex/subfig/test3.tex
new file mode 100644
index 00000000000..8a4fa99b143
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test3.tex
@@ -0,0 +1,206 @@
+%% test3.tex
+%%
+%% This is file `test3.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{fullpage}
+\usepackage[config=altsf]{subfig}
+\usepackage{booktabs}
+
+\newdimen\testtemp
+\newcommand{\ru}[1]{%
+ \testtemp #1%
+ \advance\testtemp .5pt%
+ \divide\testtemp 2%
+ \hbox to \testtemp{\leaders\hbox to 1mm{%
+ \vrule height1mm depth0pt width.25pt\hfil}\hfil}%
+ \hbox to 0pt{\hss\vrule height3mm depth0pt width.25pt\hss}%
+ \hbox to \testtemp{\leaders\hbox to 1mm{%
+ \hfil\vrule height1mm depth0pt width.25pt}\hfil}}
+
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\def\textfraction{.1}
+\fboxsep=-\fboxrule
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \parbox{2in}{%
+ \centering
+ #1}}%
+ \vfil
+ \vbox to 0pt{%
+ \vss
+ \hbox to 2in{%
+ \hfil
+ \ru{1.1in}%
+ \hfil}}}}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Three}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks three things:
+\begin{enumerate}
+ \item spacing is reduced at the start of a minipage or between
+ horizontal layers of subfloats;
+ \item extra blank spaces; and,
+ \item together with initialization options, that the subfig.cfg
+ file provides approximate compatibility with the old
+ {\bf subfigure} package.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\setcounter{lofdepth}{2}
+\listoffigures
+\newpage
+
+\section{Reference Test}
+
+\begin{figure}%
+ \centering
+ \subfigure{%
+ \label{fig:A}%
+ \figbox{SUBFIGURE ONE:\\
+ (no opt)}}
+ \quad
+ \subfigure[]{%
+ \label{fig:B}%
+ \figbox{SUBFIGURE TWO:\\
+ (empty opt)}}\\
+%
+ \subfigure[Subfigure Three.]{%
+ \label{fig:C}%
+ \figbox{SUBFIGURE THREE:\\
+ (opt)}}
+ \quad
+ \subfigure[][Subfigure Four.]{%
+ \label{fig:D}%
+ \figbox{SUBFIGURE FOUR:\\
+ (empty opt and opt)}}
+ \quad
+ \subfigure[][]{%
+ \label{fig:E}%
+ \figbox{SUBFIGURE FIVE:\\
+ (both empty opt)}}\\
+%
+ \subfigure[The Sixth Subfigure.][Subfigure Six.]{%
+ \label{fig:F}%
+ \figbox{SUBFIGURE SIX:\\
+ (both opt)}}
+ \quad
+ \subfigure[The Seventh Subfigure][]{%
+ \label{fig:G}%
+ \figbox{SUBFIGURE SEVEN:\\
+ (opt and empty opt)}}
+%
+ \caption{Optional argument test.}%
+ \label{fig:main}%
+\end{figure}
+
+The figure~\ref{fig:main} on page~\pageref{fig:main} is composed
+of the seven subfigures~\subref{fig:A} (aka: \ref{fig:A}),
+\subref{fig:B} (aka: \ref{fig:B}), \subref{fig:C} (aka: \ref{fig:C}),
+\subref{fig:D} (aka: \ref{fig:D}), \subref{fig:E} (aka: \ref{fig:E}),
+\subref{fig:F} (aka: \ref{fig:F}), and \subref{fig:G} (aka:
+\ref{fig:G}).
+
+Note that the captions are correctly handled on the List-of-Figures
+page and under the subfigures according to the form of the subfigure
+command (see Table~\ref{tab:calling}).
+
+\begin{table}[b]
+ \centering
+ \caption{{\tt ${\tt\backslash}$subfigure} calling arguments.}
+ \label{tab:calling}
+ \begin{tabular}{llc} \\ \toprule
+ {\bf Subfigure Command}
+ & {\bf LoF/LoT}
+ & \multicolumn{1}{l}{\bf Subfigure Caption}
+ \\ \midrule
+ \verb/\subfigure/\{\dots fig\dots\}
+ & & \\
+ \verb/\subfigure/[~]\{\dots fig\dots\}
+ & (b)\ \ . . . . . . . . . .
+ & (b) \\
+ \verb/\subfigure/[Subcaption.]\{\dots fig\dots\}
+ & (c) Subcaption. . . .
+ & (c) Subcaption. \\
+ \verb/\subfigure/[\space][Subcaption.]\{\dots fig\dots\}
+ & & (d) Subcaption. \\
+ \verb/\subfigure/[\space][\space]\{\dots fig\dots\}
+ & & (e) \\
+ \verb/\subfigure/[List\_entry.][Subcaption.]\{\dots fig\dots\}
+ & (f) List\_entry. . . .
+ & (f) Subcaption. \\
+ \verb/\subfigure/[List\_entry.][~]\{\dots fig\dots\}
+ & (g) List\_entry. . . .
+ & (g) \\ \bottomrule
+ \end{tabular}
+\end{table}
+
+\enlargethispage{12pt}
+\section{Centering Test}
+
+Note that figures~\ref{fig:B}, \ref{fig:E} and \ref{fig:G} are centered.
+This means that \verb|\subfigcapskip| has been set to zero and is not
+offsetting the simple label to the left. Also the remaining captioned
+subfigures (figures~\ref{fig:C}, \ref{fig:D}, and \ref{fig:F}) should
+have centered labels.
+
+
+\end{document} \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/subfig/test4.pdf b/Master/texmf-dist/doc/latex/subfig/test4.pdf
new file mode 100644
index 00000000000..be9738a5dec
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test4.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test4.tex b/Master/texmf-dist/doc/latex/subfig/test4.tex
new file mode 100644
index 00000000000..19b9aa80a59
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test4.tex
@@ -0,0 +1,144 @@
+%% test4.tex
+%%
+%% This is file `test4.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+\usepackage[config=altsf]{subfig}
+% option for use with pdflatex
+%\usepackage{hyperref}
+%\usepackage[draft]{hyperref}
+\usepackage[pdftex]{hyperref}
+\usepackage{makeidx}
+\captionsetup[subfigure]{subrefformat=parens}
+
+% reset the index environment to print the index section in the TOC.
+\makeatletter
+\renewenvironment{theindex}{%
+ \if@twocolumn
+ \@restonecolfalse
+ \else
+ \@restonecoltrue
+ \fi
+ \columnseprule \z@
+ \columnsep 35\p@
+ \twocolumn[\section{\indexname}]%
+ \@mkboth{\MakeUppercase\indexname}{\MakeUppercase\indexname}%
+ \thispagestyle{plain}%
+ \parindent\z@
+ \parskip\z@ \@plus .3\p@\relax
+ \let\item\@idxitem
+ }{%
+ \if@restonecol
+ \onecolumn
+ \else
+ \clearpage
+ \fi
+ }
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\makeindex
+
+\begin{document}
+
+\title{Subfig Package Test Program Four}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{This test checks the interaction with the {\bf hyperref}
+ package and the use of the {\bf altsf.cfg} configuration file.}
+\maketitle
+\clearpage
+
+\tableofcontents
+\clearpage
+\setcounter{lofdepth}{2}
+\listoffigures
+\clearpage
+
+\section{Test of subfigure}
+
+There is a \index{test}test \index{figure}figure \ref{fig:test} with
+\index{subfigure}subfigures \ref{fig:testsub1} and \ref{fig:testsub2}.
+
+Also referenced with \ref{fig:test}\subref{fig:testsub1} and
+\ref{fig:test}\subref{fig:testsub2}.
+
+One other way to reference these is with the starred subref command.
+For example, with \subref*{fig:testsub1} and \subref*{fig:testsub2}.
+
+The chief purpose of this test is to check and verify the interaction
+between the subfigure package and the hyperref package.
+
+
+\begin{figure}[!ht]
+ \centering
+ \unitlength .5cm
+ \subfigure[SubFig1]
+ { \label(SubFig1){fig:testsub1}
+ \begin{picture}(10,10)
+ \put(0,0){\line(1,1){10}}
+ \end{picture}
+ }
+ \qquad
+ \subfigure[SubFig2]
+ { \label{fig:testsub2}
+ \begin{picture}(10,10)
+ \put(0,10){\line(1,-1){10}}
+ \end{picture}
+ }
+ \caption{Testfigures}
+ \label{fig:test}
+\end{figure}
+
+\clearpage
+
+\printindex
+
+\end{document}
+
diff --git a/Master/texmf-dist/doc/latex/subfig/test5.pdf b/Master/texmf-dist/doc/latex/subfig/test5.pdf
new file mode 100644
index 00000000000..ca12be6c3b5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test5.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test5.tex b/Master/texmf-dist/doc/latex/subfig/test5.tex
new file mode 100644
index 00000000000..78ad3f28969
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test5.tex
@@ -0,0 +1,333 @@
+%% test5.tex
+%%
+%% This is file `test5.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+%\usepackage{captcont}
+%\usepackage{caption}
+%\usepackage{ccaption}
+
+\usepackage{subfig}
+\captionsetup[table]{position=top}
+\captionsetup[subtable]{position=top}
+
+%\usepackage{captcont}
+%\usepackage{caption}
+%\usepackage{ccaption}
+
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\newcommand{\figbox}[2][.8in]{%
+ \fbox{%
+ \vbox to .6in{%
+ \vfil
+ \hbox to #1{%
+ \hfil
+ #2%
+ \hfil}%
+ \vfil}}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Five}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks two things:
+\begin{enumerate}
+ \item the use of the references within a subfloat; and,
+ \item continued floats and subfloats.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\setcounter{lofdepth}{2}
+\listoffigures
+\clearpage
+
+\setcounter{lotdepth}{2}
+\listoftables
+\clearpage
+
+In this test, we verify the ability of the subfigure package to
+handle requests for continued figures and tables (with full support
+of the List-of pages and subfigures in continued figures and
+subtables in continued tables).
+
+In addition, by varying the various included packages at the top of
+the source, one can check the interaction of the subfigure package
+along with other common packages, such as the \texttt{captcont},
+\texttt{caption}, and \texttt{ccaption} packages.
+
+First we test the regular figures. The first figure is
+Figure~\ref{fig:First} on page \pageref{fig:First}. The second is
+Figure~\ref{fig:SecondA} and appears on pages~\pageref{fig:SecondA},
+\pageref{fig:SecondB}, \pageref{fig:SecondC}, and \pageref{fig:SecondD}.
+
+\begin{figure}%
+ \centering
+ \figbox[4in]{Regular figure \ref{fig:First}}%
+ \caption{Regular figure 1}%
+ \label{fig:First}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondA}A}%
+ \caption{Continued figure \ref{fig:SecondA}}%
+ \label{fig:SecondA}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondB}B}%
+ \caption[]{Continued figure \ref{fig:SecondB}}%
+ \label{fig:SecondB}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondC}C}%
+ \caption[]{Continued figure \ref{fig:SecondC}}%
+ \label{fig:SecondC}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondD}D}%
+ \caption[]{Continued figure \ref{fig:SecondD}}%
+ \label{fig:SecondD}%
+\end{figure}
+
+Then we test the regular tables. The first table is
+Table~\ref{tab:First} on page \pageref{tab:First}. The second is
+Table~\ref{tab:SecondA} and appears on pages~\pageref{tab:SecondA},
+\pageref{tab:SecondB}, \pageref{tab:SecondC}, and \pageref{tab:SecondD}.
+
+\begin{table}%
+ \centering
+ \caption{Regular table 1}%
+ \label{tab:First}%
+ \figbox[4in]{Regular table 1}%
+\end{table}
+
+\begin{table}%
+ \centering
+ \caption{Continued table \ref{tab:SecondA}}%
+ \label{tab:SecondA}%
+ \figbox[4in]{Continued table \ref{tab:SecondA}A}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondB}}%
+ \label{tab:SecondB}%
+ \figbox[4in]{Continued table \ref{tab:SecondB}B}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondC}}%
+ \label{tab:SecondC}%
+ \figbox[4in]{Continued table \ref{tab:SecondC}C}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondD}}%
+ \label{tab:SecondD}%
+ \figbox[4in]{Continued table \ref{tab:SecondD}D}%
+\end{table}
+
+Next we look at the subfloats in a simple figure. They are
+Figures~\ref{fig:sub1A}, \ref{fig:sub1B}, \ref{fig:sub1C}, and
+\ref{fig:sub1D}, which are part of Figure~\ref{fig:sub1} on
+page~\pageref{fig:sub1}.
+
+The continued subfloats are contained in three parts. The first is
+Figure~\ref{fig:sub21} on page~\pageref{fig:sub21} which contains the
+Subfigures~\ref{fig:sub2A}, \ref{fig:sub2B}, \ref{fig:sub2C}, and
+\ref{fig:sub2D}.
+The second is
+Figure~\ref{fig:sub22} on page~\pageref{fig:sub22} which contains the
+Subfigures~\ref{fig:sub2E}, \ref{fig:sub2F}, \ref{fig:sub2G}, and
+\ref{fig:sub2H}.
+The third is
+Figure~\ref{fig:sub23} on page~\pageref{fig:sub23} which contains the
+Subfigures~\ref{fig:sub2I}, \ref{fig:sub2J}, \ref{fig:sub2K}, and
+\ref{fig:sub2L}.
+
+\begin{figure}%
+ \centering
+ \subfloat[\label{fig:sub1A}]{\figbox{Subfigure \ref{fig:sub1A}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub1B}]{\figbox{Subfigure \ref{fig:sub1B}}} \\
+ \subfloat[\label{fig:sub1C}]{\figbox{Subfigure \ref{fig:sub1C}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub1D}]{\figbox{Subfigure \ref{fig:sub1D}}}
+ \caption{This is a simple figure.}%
+ \label{fig:sub1}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+ \subfloat[\label{fig:sub2A}]{\figbox{Subfigure \ref{fig:sub2A}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2B}]{\figbox{Subfigure \ref{fig:sub2B}}} \\
+ \subfloat[\label{fig:sub2C}]{\figbox{Subfigure \ref{fig:sub2C}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2D}]{\figbox{Subfigure \ref{fig:sub2D}}}
+ \caption{This is a continued figure.}%
+ \label{fig:sub21}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \subfloat[\label{fig:sub2E}]{\figbox{Subfigure \ref{fig:sub2E}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2F}]{\figbox{Subfigure \ref{fig:sub2F}}} \\
+ \subfloat[\label{fig:sub2G}]{\figbox{Subfigure \ref{fig:sub2G}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2H}]{\figbox{Subfigure \ref{fig:sub2H}}}
+ \caption[]{This is a continued figure (cont.)}%
+ \label{fig:sub22}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \subfloat[\label{fig:sub2I}]{\figbox{Subfigure \ref{fig:sub2I}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2J}]{\figbox{Subfigure \ref{fig:sub2J}}} \\
+ \subfloat[\label{fig:sub2K}]{\figbox{Subfigure \ref{fig:sub2K}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2L}]{\figbox{Subfigure \ref{fig:sub2L}}}
+ \caption[]{This is a continued figure (cont.)}%
+ \label{fig:sub23}%
+\end{figure}
+
+Next we look at the subfloats in a simple table environment. They are
+Tables~\ref{tab:sub1A}, \ref{tab:sub1B}, \ref{tab:sub1C}, and
+\ref{tab:sub1D}, which are part of Table~\ref{tab:sub1} on
+page~\pageref{tab:sub1}.
+
+The continued subfloats are contained in three parts. The first is
+Table~\ref{tab:sub21} on page~\pageref{tab:sub21} which contains the
+Subtables~\ref{tab:sub2A}, \ref{tab:sub2B}, \ref{tab:sub2C}, and
+\ref{tab:sub2D}.
+The second is
+Table~\ref{tab:sub22} on page~\pageref{tab:sub22} which contains the
+Subtables~\ref{tab:sub2E}, \ref{tab:sub2F}, \ref{tab:sub2G}, and
+\ref{tab:sub2H}.
+The third is
+Table~\ref{tab:sub23} on page~\pageref{tab:sub23} which contains the
+Subtables~\ref{tab:sub2I}, \ref{tab:sub2J}, \ref{tab:sub2K}, and
+\ref{tab:sub2L}.
+
+\begin{table}%
+ \centering
+ \caption{This is a simple table.}%
+ \label{tab:sub1}%
+ \subfloat[\label{tab:sub1A}]{\figbox{Subtable \ref{tab:sub1A}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub1B}]{\figbox{Subtable \ref{tab:sub1B}}} \\
+ \subfloat[\label{tab:sub1C}]{\figbox{Subtable \ref{tab:sub1C}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub1D}]{\figbox{Subtable \ref{tab:sub1D}}}
+\end{table}
+
+\begin{table}%
+ \centering
+ \caption{This is a continued table.}%
+ \label{tab:sub21}%
+ \subfloat[\label{tab:sub2A}]{\figbox{Subtable \ref{tab:sub2A}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2B}]{\figbox{Subtable \ref{tab:sub2B}}} \\
+ \subfloat[\label{tab:sub2C}]{\figbox{Subtable \ref{tab:sub2C}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2D}]{\figbox{Subtable \ref{tab:sub2D}}}
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{This is a continued table (cont.)}%
+ \label{tab:sub22}%
+ \subfloat[\label{tab:sub2E}]{\figbox{Subtable \ref{tab:sub2E}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2F}]{\figbox{Subtable \ref{tab:sub2F}}} \\
+ \subfloat[\label{tab:sub2G}]{\figbox{Subtable \ref{tab:sub2G}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2H}]{\figbox{Subtable \ref{tab:sub2H}}}
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{This is a continued table (cont.)}%
+ \label{tab:sub23}%
+ \subfloat[\label{tab:sub2I}]{\figbox{Subtable \ref{tab:sub2I}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2J}]{\figbox{Subtable \ref{tab:sub2J}}} \\
+ \subfloat[\label{tab:sub2K}]{\figbox{Subtable \ref{tab:sub2K}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2L}]{\figbox{Subtable \ref{tab:sub2L}}}
+\end{table}
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/subfig/test6.pdf b/Master/texmf-dist/doc/latex/subfig/test6.pdf
new file mode 100644
index 00000000000..bee25a78cfc
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test6.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test6.tex b/Master/texmf-dist/doc/latex/subfig/test6.tex
new file mode 100644
index 00000000000..a491b0a1e32
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test6.tex
@@ -0,0 +1,542 @@
+%% test6.tex
+%%
+%% This is file `test6.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{subfig}
+\captionsetup[figure]{singlelinecheck=false,format=hang,
+ justification=raggedright,indention=38.5pt}
+\captionsetup[subfloat]{singlelinecheck=true,format=default,
+ justification=justified,indention=0pt}
+
+\def\sc{Short caption.}
+\def\lc{Non fuit causa cur postularet. Qui hoc intellegi
+ potest? Naevio neque ex societatis ratione neque
+ privatim quicquam debuit Quinctius.\par
+ Quis huic rei testis est? Idem qui acerrimus
+ adversarius; in hanc rem te, te inquam, testem,
+ Naevi, citabo.\par
+ Annum et eo diutius post mortem C. Quincti fuit
+ in Gallia tecum simul Quinctius.}
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+ \newcommand{\figshape}[3][\@empty]{%
+ \typeout{#2}%
+ \begin{figure}%
+ \centering
+ \captionsetup[subfigure]{#3}%
+ \subfloat[][\sc]{\b}\g\subfloat[][\lc\label{#2b}]{\b}
+ \ifx\@empty#1\relax
+ \caption{Options [\texttt{#3}].}%
+ \else
+ \caption[Options [\texttt{#1}{]}]{Options [\texttt{#3}].}%
+ \fi
+ \label{#2}%
+ \end{figure}}
+ \newcommand{\figfont}[3]{%
+ \captionsetup[subfigure]{#2=#3}%
+ \subfloat[{Option [\texttt{#2=#3}]}]%
+ [\sc]{\label{#1}\B{#2=#3}}}
+ \newcommand{\figfontlist}[3]{%
+ \captionsetup[subfigure]{#2={#3}}%
+ \subfloat[{Option [\texttt{#2=\{#3\}}]}]%
+ [\sc]{\label{#1}\B{#2=\{#3\}}}}
+\makeatother
+
+\def\b{\fboxsep=-\fboxrule
+ \fbox{\hbox to 2.0in{\vbox to 2mm{\vfil\null}\hfil}}}
+\def\B#1{\fboxsep=-\fboxrule
+ \fbox{\hbox to 2.0in{\vbox to 6mm{\vfil\hbox to 2.0in{%
+ \hfil[\texttt{#1}]\hfil}\vfil}\hfil}}}
+\def\g{\hspace{.5in}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Six}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{This test checks the various caption formatting options.}
+\maketitle
+\clearpage
+
+\tableofcontents
+\clearpage
+
+\listoffigures
+\clearpage
+
+\makeatletter
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+\makeatother
+\section{Subcaption Shape Options}
+
+There are seven options for setting the subcaption shape or ``format''.
+The default setting is produced by
+\begin{quote}
+ $\backslash$captionsetup[subfigure]\{ style=default, margin=0pt, parskip=0pt,
+ hangindent=0pt, indention=0pt, singlelinecheck=true\}
+\end{quote}
+which is shown in figure~\ref{fig:shape-01}.
+Figure~\ref{fig:shape-00} shows the same thing, but without setting
+the ``singlelinecheck'' to centering. You can see that the
+``singlelinecheck'' option only affects the short caption.
+
+Any or all of the other shape option may be used at one time, since
+they define orthogonal aspects of the caption shape. The other
+options are:
+\begin{itemize}
+ \item \texttt{singlelinecheck}, (Boolean) which causes a caption
+ that will fit on one line to be centered below the figure
+ (actually, to use the singlelinecheck format) .
+ \item \texttt{indention}, (amount) which indents the caption text.
+ \item \texttt{hangindent}, (amount) which indents the caption text, except
+ for the first line of each paragraph.
+ \item \texttt{parskip}, (amount) which adds some extra space between
+ separate paragraphs in a caption.
+ \item \texttt{format=hang}, which causes the label to hang out to
+ the left of the caption text. \texttt{normal} turns it off.
+ \item \texttt{margin}, (amount) which sets extra space to either side of
+ the caption. The option \texttt{width} may also be used. This sets
+ the margins to provide the requested width of the caption.
+\end{itemize}
+Figures~\ref{fig:shape-00} thru \ref{fig:shape-63} show the different
+combinations of these formats.
+
+\def\exin{15pt} % indention value
+\def\exhi{-10pt} % hangindent value
+\def\exps{5pt} % parskip value
+\def\exma{10pt} % margin value
+\figshape{fig:shape-00}{singlelinecheck=false}
+\figshape{fig:shape-01}{ }
+\figshape{fig:shape-02}{indention=\exin,singlelinecheck=false}
+\figshape{fig:shape-03}{indention=\exin}
+\figshape{fig:shape-04}{hangindent=\exhi,singlelinecheck=false}
+\figshape{fig:shape-05}{hangindent=\exhi}
+\figshape[hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-06}%
+ {hangindent=\exhi,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-07}{hangindent=\exhi,indention=\exin}
+\figshape{fig:shape-08}{parskip=\exps,singlelinecheck=false}
+\figshape{fig:shape-09}{parskip=\exps}
+\figshape[parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-10}%
+ {parskip=\exps,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-11}{parskip=\exps,indention=\exin}
+\figshape[parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-12}%
+ {parskip=\exps,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-13}{parskip=\exps,hangindent=\exhi}
+\figshape[parskip=\exps,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-14}%
+ {parskip=\exps,hangindent=\exhi,indention=\exin,
+ singlelinecheck=false}
+\figshape{fig:shape-15}{parskip=\exps,hangindent=\exhi,indention=\exin}
+\clearpage
+\figshape{fig:shape-16}{format=hang,singlelinecheck=false}
+\figshape{fig:shape-17}{format=hang}
+\figshape[format=hang,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-18}%
+ {format=hang,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-19}{format=hang,indention=\exin}
+\figshape[format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-20}%
+ {format=hang,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-21}{format=hang,hangindent=\exhi}
+\figshape[hang,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-22}%
+ {format=hang,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-23}{format=hang,hangindent=\exhi,indention=\exin}
+\figshape{fig:shape-24}{format=hang,parskip=\exps,singlelinecheck=false}
+\clearpage
+\figshape{fig:shape-25}{format=hang,parskip=\exps}
+\figshape[format=hang,parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-26}%
+ {format=hang,parskip=\exps,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-27}{format=hang,parskip=\exps,indention=\exin}
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-28}%
+ {format=hang,parskip=\exps,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-29}{format=hang,parskip=\exps,hangindent=\exhi}
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-30}%
+ {format=hang,parskip=\exps,hangindent=\exhi,
+ indention=\exin,singlelinecheck=false}%
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-31}%
+ {format=hang,parskip=\exps,hangindent=\exhi, indention=\exin}
+\figshape{fig:shape-32}{margin=\exma,singlelinecheck=false}
+\figshape{fig:shape-33}{margin=\exma}
+\figshape[margin=\exma,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-34}%
+ {margin=\exma,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-35}{margin=\exma,indention=\exin}
+\figshape[margin=\exma,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-36}%
+ {margin=\exma,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-37}{margin=\exma,hangindent=\exhi}
+\figshape[margin=\exma,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-38}%
+ {margin=\exma,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-39}{margin=\exma,hangindent=\exhi,indention=\exin}
+\clearpage
+\figshape{fig:shape-40}{margin=\exma,parskip=\exps,singlelinecheck=false}
+\figshape{fig:shape-41}{margin=\exma,parskip=\exps}
+\figshape[margin=\exma,parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-42}{margin=\exma,parskip=\exps,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-43}{margin=\exma,parskip=\exps,indention=\exin}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-44}{margin=\exma,parskip=\exps,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-45}{margin=\exma,parskip=\exps,hangindent=\exhi}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-46}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-47}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin}
+\figshape{fig:shape-48}{margin=\exma,format=hang,singlelinecheck=false}
+\figshape{fig:shape-49}{margin=\exma,format=hang}
+\figshape[margin=\exma,format=hang,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-50}%
+ {margin=\exma,format=hang,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-51}{margin=\exma,format=hang,indention=\exin}
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-52}%
+ {margin=\exma,format=hang,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-53}{margin=\exma,format=hang,hangindent=\exhi}
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-54}%
+ {margin=\exma,format=hang,hangindent=\exhi, indention=\exin,singlelinecheck=false}%
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-55}%
+ {margin=\exma,format=hang,hangindent=\exhi, indention=\exin}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-56}%
+ {margin=\exma,format=hang,parskip=\exps, singlelinecheck=false}
+\figshape{fig:shape-57}{margin=\exma,format=hang,parskip=\exps}
+\clearpage
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-58}{margin=\exma,format=hang,parskip=\exps,
+ indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-59}%
+ {margin=\exma,format=hang,parskip=\exps, indention=\exin}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,singlelinecheck=false]%
+ {fig:shape-60}{margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi]%
+ {fig:shape-61}%
+ {margin=\exma,format=hang,parskip=\exps, hangindent=\exhi}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin,singlelinecheck=false]%
+ {fig:shape-62}%
+ {margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi,indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin]%
+ {fig:shape-63}{margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi, indention=\exin}
+\clearpage
+
+\makeatletter
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+\makeatother
+\section{Subcaption Justification Options}
+
+There are six options for setting the subcaption format, plus another
+three if the ``ragged2e'' package is loaded. The first is
+\texttt{justified} which produces the format shows in
+figure~\ref{fig:justification-00}. Only one of these options is
+allowed. If multiple options appear, then only the last is used. The
+Figures~\ref{fig:justification-01} thru \ref{fig:justification-08}
+show each of these formats. The shape options selected along with
+each format option is the default (see Figure~\ref{fig:shape-01}),
+this shows the effect of the justification option on a single line
+caption.
+
+\figshape{fig:justification-00}{justification=justified,singlelinecheck=false}
+\figshape{fig:justification-01}{justification=centerfirst,singlelinecheck=false}
+\figshape{fig:justification-02}{justification=centerlast,singlelinecheck=false}
+\figshape{fig:justification-03}{justification=centering,singlelinecheck=false}
+\figshape{fig:justification-04}{justification=Centering,singlelinecheck=false}
+\figshape{fig:justification-05}{justification=raggedleft,singlelinecheck=false}
+\figshape{fig:justification-06}{justification=RaggedLeft,singlelinecheck=false}
+\figshape{fig:justification-07}{justification=raggedright,singlelinecheck=false}
+\figshape{fig:justification-08}{justification=RaggedRight,singlelinecheck=false}
+
+\section{Subcaption Font Options}
+
+First we show the size options and then various combinations
+of the other font options. The first subsection, shows the
+effect of setting the ``font'' or ``size'' key; the second
+subsection shows that of the ``labelfont'' key and the last
+subsection that of the ``textfont'' key.
+
+\subsection{``font'' or ``size'' font Options}
+
+Figures~\ref{fig:f_size-01}--\ref{fig:f_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:f_font-01}--\ref{fig:f_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:f_size-01}{font}{Large}\g
+ \figfont{fig:f_size-02}{font}{large}\\
+%
+ \figfont{fig:f_size-03}{font}{normalsize}\g
+ \figfont{fig:f_size-04}{font}{small}\\
+%
+ \figfont{fig:f_size-05}{font}{footnotesize}\g
+ \figfont{fig:f_size-06}{font}{scriptsize}\\
+%
+ \caption{Font Size Options.}%
+ \label{fig:f_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:f_font-01}{font}{rm,up,md}\g
+ \figfontlist{fig:f_font-02}{font}{rm,up,bf}\\
+%
+ \figfontlist{fig:f_font-03}{font}{rm,it,md}\g
+ \figfontlist{fig:f_font-04}{font}{rm,it,bf}\\
+%
+ \figfontlist{fig:f_font-05}{font}{rm,sl,md}\g
+ \figfontlist{fig:f_font-06}{font}{rm,sl,bf}\\
+%
+ \figfontlist{fig:f_font-07}{font}{rm,sc,md}\g
+ \figfontlist{fig:f_font-08}{font}{rm,sc,bf}\\
+%
+ \figfontlist{fig:f_font-09}{font}{sf,up,md}\g
+ \figfontlist{fig:f_font-10}{font}{sf,up,bf}\\
+%
+ \figfontlist{fig:f_font-11}{font}{sf,it,md}\g
+ \figfontlist{fig:f_font-12}{font}{sf,it,bf}\\
+%
+ \figfontlist{fig:f_font-13}{font}{sf,sl,md}\g
+ \figfontlist{fig:f_font-14}{font}{sf,sl,bf}\\
+%
+ \figfontlist{fig:f_font-15}{font}{sf,sc,md}\g
+ \figfontlist{fig:f_font-16}{font}{sf,sc,bf}\\
+%
+ \figfontlist{fig:f_font-17}{font}{tt,up,md}\g
+ \figfontlist{fig:f_font-18}{font}{tt,up,bf}\\
+%
+ \figfontlist{fig:f_font-19}{font}{tt,it,md}\g
+ \figfontlist{fig:f_font-20}{font}{tt,it,bf}\\
+%
+ \figfontlist{fig:f_font-21}{font}{tt,sl,md}\g
+ \figfontlist{fig:f_font-22}{font}{tt,sl,bf}\\
+%
+ \figfontlist{fig:f_font-23}{font}{tt,sc,md}\g
+ \figfontlist{fig:f_font-24}{font}{tt,sc,bf}\\
+%
+ \caption{Other Font Options.}%
+ \label{fig:f_font}%
+\end{figure}
+
+\subsection{``labelfont'' font Options.}
+
+Figures~\ref{fig:l_size-01}--\ref{fig:l_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:l_font-01}--\ref{fig:l_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:l_size-01}{labelfont}{Large}\g
+ \figfont{fig:l_size-02}{labelfont}{large}\\
+%
+ \figfont{fig:l_size-03}{labelfont}{normalsize}\g
+ \figfont{fig:l_size-04}{labelfont}{small}\\
+%
+ \figfont{fig:l_size-05}{labelfont}{footnotesize}\g
+ \figfont{fig:l_size-06}{labelfont}{scriptsize}\\
+%
+ \caption{Labelfont Size Options.}%
+ \label{fig:l_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:l_font-01}{labelfont}{rm,up,md}\g
+ \figfontlist{fig:l_font-02}{labelfont}{rm,up,bf}\\
+%
+ \figfontlist{fig:l_font-03}{labelfont}{rm,it,md}\g
+ \figfontlist{fig:l_font-04}{labelfont}{rm,it,bf}\\
+%
+ \figfontlist{fig:l_font-05}{labelfont}{rm,sl,md}\g
+ \figfontlist{fig:l_font-06}{labelfont}{rm,sl,bf}\\
+%
+ \figfontlist{fig:l_font-07}{labelfont}{rm,sc,md}\g
+ \figfontlist{fig:l_font-08}{labelfont}{rm,sc,bf}\\
+%
+ \figfontlist{fig:l_font-09}{labelfont}{sf,up,md}\g
+ \figfontlist{fig:l_font-10}{labelfont}{sf,up,bf}\\
+%
+ \figfontlist{fig:l_font-11}{labelfont}{sf,it,md}\g
+ \figfontlist{fig:l_font-12}{labelfont}{sf,it,bf}\\
+%
+ \figfontlist{fig:l_font-13}{labelfont}{sf,sl,md}\g
+ \figfontlist{fig:l_font-14}{labelfont}{sf,sl,bf}\\
+%
+ \figfontlist{fig:l_font-15}{labelfont}{sf,sc,md}\g
+ \figfontlist{fig:l_font-16}{labelfont}{sf,sc,bf}\\
+%
+ \figfontlist{fig:l_font-17}{labelfont}{tt,up,md}\g
+ \figfontlist{fig:l_font-18}{labelfont}{tt,up,bf}\\
+%
+ \figfontlist{fig:l_font-19}{labelfont}{tt,it,md}\g
+ \figfontlist{fig:l_font-20}{labelfont}{tt,it,bf}\\
+%
+ \figfontlist{fig:l_font-21}{labelfont}{tt,sl,md}\g
+ \figfontlist{fig:l_font-22}{labelfont}{tt,sl,bf}\\
+%
+ \figfontlist{fig:l_font-23}{labelfont}{tt,sc,md}\g
+ \figfontlist{fig:l_font-24}{labelfont}{tt,sc,bf}\\
+%
+ \caption{Other Labelfont Options.}%
+ \label{fig:l_font}%
+\end{figure}
+
+\subsection{``textfont'' font Options.}
+
+Figures~\ref{fig:t_size-01}--\ref{fig:t_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:t_font-01}--\ref{fig:t_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:t_size-01}{textfont}{Large}\g
+ \figfont{fig:tlsize-02}{textfont}{large}\\
+%
+ \figfont{fig:t_size-03}{textfont}{normalsize}\g
+ \figfont{fig:t_size-04}{textfont}{small}\\
+%
+ \figfont{fig:t_size-05}{textfont}{footnotesize}\g
+ \figfont{fig:t_size-06}{textfont}{scriptsize}\\
+%
+ \caption{Textfont Size Options.}%
+ \label{fig:t_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:t_font-01}{textfont}{rm,up,md}\g
+ \figfontlist{fig:t_font-02}{textfont}{rm,up,bf}\\
+%
+ \figfontlist{fig:t_font-03}{textfont}{rm,it,md}\g
+ \figfontlist{fig:t_font-04}{textfont}{rm,it,bf}\\
+%
+ \figfontlist{fig:t_font-05}{textfont}{rm,sl,md}\g
+ \figfontlist{fig:t_font-06}{textfont}{rm,sl,bf}\\
+%
+ \figfontlist{fig:t_font-07}{textfont}{rm,sc,md}\g
+ \figfontlist{fig:t_font-08}{textfont}{rm,sc,bf}\\
+%
+ \figfontlist{fig:t_font-09}{textfont}{sf,up,md}\g
+ \figfontlist{fig:t_font-10}{textfont}{sf,up,bf}\\
+%
+ \figfontlist{fig:t_font-11}{textfont}{sf,it,md}\g
+ \figfontlist{fig:t_font-12}{textfont}{sf,it,bf}\\
+%
+ \figfontlist{fig:t_font-13}{textfont}{sf,sl,md}\g
+ \figfontlist{fig:t_font-14}{textfont}{sf,sl,bf}\\
+%
+ \figfontlist{fig:t_font-15}{textfont}{sf,sc,md}\g
+ \figfontlist{fig:t_font-16}{textfont}{sf,sc,bf}\\
+%
+ \figfontlist{fig:t_font-17}{textfont}{tt,up,md}\g
+ \figfontlist{fig:t_font-18}{textfont}{tt,up,bf}\\
+%
+ \figfontlist{fig:t_font-19}{textfont}{tt,it,md}\g
+ \figfontlist{fig:t_font-20}{textfont}{tt,it,bf}\\
+%
+ \figfontlist{fig:t_font-21}{textfont}{tt,sl,md}\g
+ \figfontlist{fig:t_font-22}{textfont}{tt,sl,bf}\\
+%
+ \figfontlist{fig:t_font-23}{textfont}{tt,sc,md}\g
+ \figfontlist{fig:t_font-24}{textfont}{tt,sc,bf}\\
+%
+ \caption{Other Textfont Options.}%
+ \label{fig:t_font}%
+\end{figure}
+
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/subfig/test7.pdf b/Master/texmf-dist/doc/latex/subfig/test7.pdf
new file mode 100644
index 00000000000..fffdcd8e9d3
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test7.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/subfig/test7.tex b/Master/texmf-dist/doc/latex/subfig/test7.tex
new file mode 100644
index 00000000000..1963438e919
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/subfig/test7.tex
@@ -0,0 +1,122 @@
+%% test7.tex
+%%
+%% This is file `test7.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\makeatletter
+%% We pretend that we are a naughty class and are \let'ting our
+%% \endfigure to the \end@float, etc.
+
+\def\thefigure{\@arabic\c@figure}
+\def\fps@figure{tbp}
+\def\ftype@figure{1}
+\def\ext@figure{lof}
+\def\fnum@figure{Fig.~\thefigure}
+\def\figure{\@float{figure}}
+%% This is the bad line, it should be "\def\endfigure{\end@float}"
+\let\endfigure\end@float
+\@namedef{figure*}{\@dblfloat{figure}}
+\@namedef{endfigure*}{\end@dblfloat}
+
+\def\thetable{\@Roman\c@table}
+\def\fps@table{tbp}
+\def\ftype@table{2}
+\def\ext@table{lot}
+\def\fnum@table{TABLE~\thetable}
+\def\table{%
+ \def\@floatboxreset{\reset@font\footnotesize\@setminipage}%
+ \@float{table}}
+%% This is the bad line, it should be "\def\endtable{\end@float}"
+\let\endtable\end@float
+\@namedef{table*}{%
+ \def\@floatboxreset{\reset@font\footnotesize\@setminipage}%
+ \@dblfloat{table}}
+\@namedef{endtable*}{\end@dblfloat}
+\makeatother
+
+% Next we load the subfig package and see if it finds the problem.
+% To check this test result, you need to see the TTY listing or check
+% the test5.log (which we save as test5b.ps).
+\usepackage[position=top,nearskip=10pt,lofdepth,lotdepth]{subfig}
+
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ {\normalsize #1}%
+ \hfil}%
+ \vfil}}}
+
+\newcommand{\goodgap}{\hspace{9pt}}
+
+\begin{document}
+\listoffigures
+\listoftables
+\newpage
+
+\section{Seventh Test}
+
+\begin{figure}%
+ \centering
+ \caption{Figure One.}%
+ \label{fig:first}%
+ \subfloat[Figure subone.\label{fig:first:A}]{\figbox{Figure subone}}%
+ \goodgap
+ \subfloat[Figure subtwo.\label{fig:first:B}]{\figbox{Figure subtwo}}\\
+ \subfloat[Figure subthree.\label{fig:first:C}]{\figbox{Figure subthree}}%
+ \goodgap
+ \subfloat[Figure subfour.\label{fig:first:D}]{\figbox{Figure subfour}}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Figure One (cont.)}%
+ \label{fig:first_cont}%
+ \subfloat[Figure subfive.\label{fig:first:E}]{\figbox{Figure subfive}}
+ \goodgap
+ \subfloat[Figure subsix.\label{fig:first:F}]{\figbox{Figure subsix}} \\
+ \subfloat[Figure subseven.\label{fig:first:G}]{\figbox{Figure subseven}}
+ \goodgap
+ \subfloat[Figure subeight.\label{fig:first:H}]{\figbox{Figure subeight}}
+\end{figure}
+
+This test checks to see if the subfig package reacts correctly to the
+known sort of problem class. We check that on the list-of-figures page
+the continued figure correctly labeled from (a) to (h) and that on the
+list-of-tables page, the table has the two subcaptions in addition to the
+main caption. If not, than the nasty class has zapped us.
+
+(We also need to check the test7.log file to insure that the problem
+was identified by the subfig package and a warning was issued.)
+
+\begin{table}[t]%
+ \centering
+ \caption{Table One.}%
+ \label{tab:first}%
+ \subfloat[Table subone.\label{tab:first:A}]{\figbox{Table subone}} \goodgap
+ \subfloat[Table subtwo.\label{tab:first:B}]{\figbox{Table subtwo}}%
+\end{table}
+
+\end{document} \ No newline at end of file