z3c.rml-2.0.0/0000775000175000017500000000000012065004362014471 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/COPYRIGHT.txt0000644000175000017500000000004012032774152016577 0ustar srichtersrichter00000000000000Zope Foundation and Contributorsz3c.rml-2.0.0/README.txt0000644000175000017500000000076312032774152016200 0ustar srichtersrichter00000000000000=================================================== ``z3c.rml`` -- An alternative implementation of RML =================================================== This is an alternative implementation of ReportLab's RML PDF generation XML format. Like the original implementation, it is based on ReportLab's ``reportlab`` library. You can read all about ``z3c.rml`` and see many examples on how to use it, see the "RML Reference":http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/rml-reference.pdf?view=auto z3c.rml-2.0.0/setup.py0000664000175000017500000000423312065004331016201 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Setup """ import os from setuptools import setup, find_packages def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() setup ( name='z3c.rml', version='2.0.0', author = "Stephan Richter and the Zope Community", author_email = "zope-dev@zope.org", description = "An alternative implementation of RML", long_description=( read('README.txt') + '\n\n' + read('CHANGES.txt') ), license = "ZPL 2.1", keywords = "zope3 rml reportlab pdf pagetemplate", classifiers = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Zope Public License', 'Programming Language :: Python', 'Natural Language :: English', 'Operating System :: OS Independent'], url = 'http://pypi.python.org/pypi/z3c.rml', packages = find_packages('src'), package_dir = {'':'src'}, namespace_packages = ['z3c'], extras_require = dict( test = [ 'zope.pagetemplate', 'Pillow'], pagetemplate = [ 'zope.pagetemplate'] ), install_requires = [ 'Pygments', 'lxml', 'pyPdf', 'reportlab', 'setuptools', 'zope.interface', 'zope.schema', ], entry_points = { 'console_scripts': [ 'dtd = z3c.rml.dtd:main', 'reference = z3c.rml.reference:main'], }, include_package_data = True, zip_safe = False, ) z3c.rml-2.0.0/bootstrap.py0000644000175000017500000000337212032774152017070 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Bootstrap a buildout-based project Simply run this script in a directory containing a buildout.cfg. The script accepts buildout command-line options, so you can use the -c option to specify an alternate configuration file. $Id: bootstrap.py 117264 2010-10-06 06:22:49Z icemac $ """ import os, shutil, sys, tempfile, urllib2 tmpeggs = tempfile.mkdtemp() ez = {} exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py' ).read() in ez ez['use_setuptools'](to_dir=tmpeggs, download_delay=0) import pkg_resources cmd = 'from setuptools.command.easy_install import main; main()' if sys.platform == 'win32': cmd = '"%s"' % cmd # work around spawn lamosity on windows ws = pkg_resources.working_set assert os.spawnle( os.P_WAIT, sys.executable, sys.executable, '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout', dict(os.environ, PYTHONPATH= ws.find(pkg_resources.Requirement.parse('setuptools')).location ), ) == 0 ws.add_entry(tmpeggs) ws.require('zc.buildout') import zc.buildout.buildout zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap']) shutil.rmtree(tmpeggs) z3c.rml-2.0.0/PKG-INFO0000664000175000017500000002277212065004362015600 0ustar srichtersrichter00000000000000Metadata-Version: 1.1 Name: z3c.rml Version: 2.0.0 Summary: An alternative implementation of RML Home-page: http://pypi.python.org/pypi/z3c.rml Author: Stephan Richter and the Zope Community Author-email: zope-dev@zope.org License: ZPL 2.1 Description: =================================================== ``z3c.rml`` -- An alternative implementation of RML =================================================== This is an alternative implementation of ReportLab's RML PDF generation XML format. Like the original implementation, it is based on ReportLab's ``reportlab`` library. You can read all about ``z3c.rml`` and see many examples on how to use it, see the "RML Reference":http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/rml-reference.pdf?view=auto ======= CHANGES ======= 2.0.0 (2012-12-21) ------------------ - Implemented ``saveState`` and ``restoreState`` directives. (LP #666194) - Implemented ``storyPlace`` directive. (LP #665941) - Implemented ``clip`` attribute of ``path`` directive. See RML example 041. - Added ``h4``, ``h5``, and ``h6`` directives. - Implemented ``codesnippet`` directive. - Implemented ``pageBreakBefore``, ``frameBreakBefore``, ``textTransform``, and ``endDots`` attributes for paragraph styles. - Added ``maxLineLength`` and ``newLineChars`` attributes to the ``pre`` directive. - Implemented ``pageNumber`` element for all ``draw*String`` elements. - Implemented ``NamedString`` directive. - Implemented ``startIndex`` and ``showIndex`` directive. Also hooked up ``index`` in paragraphs properly. You can now create real book indexes. - Implemented ``ol``, ``ul``, and ``li`` directives, which allow highly flexible lists to be created. Also implemented a complimentary ``listStyle`` directive. - Implemented the following doc-programming directives: * docAssert * docAssign * docElse * docIf * docExec * docPara * docWhile - Added ``encName`` attribute to ``registerCidFont`` directive. - Renamed ``bookmark`` to ``bookmarkPage``. - Created a new canvas directive called ``bookmark``. - Added ``img`` directive, which is a simple image flowable. - Implemented crop marks support fully. - Added ``pageLayout`` and ``pageMode`` to ``docInit`` directive. - Implemented all logging related directives. - Implemented ``color`` directive inside the ``initialize`` directive. - Renamed ``pdfInclude`` to documented ``includePdfPages`` and added `pages` attribute, so that you can only include specific pages. - Don't show "doc" namespace in reference snippets. - Create a list of RML2PDF and z3c.rml differences. - Implemented the ``ABORT_ON_INVALID_DIRECTIVE`` flag, that when set ``True`` will raise a ``ValueError`` error on the first occurence of a bad tag. - Implemented ``setFontSize`` directive for page drawings. - Implemented ``plugInGraphic`` which allows inserting graphics rendered in Python. - Added `href` and `destination` to table cells and rectangles. - Bug: Due to a logic error, bad directives were never properly detected and logged about. - Bug: Overwriting the default paragraph styles did not work properly. - Bug: Specifying a color in any tag inside the paragraph would fail, if the color was a referenced name. - Bug: Moved premature ``getName`` evaluation into runtime to properly handle synamic content now. This is now properly done for any paragraph and draw string variant. - Bug: Fixed DTD generator to properly ignore Text Nodes as attributes. Also text nodes were not properly documented as element PCDATA. 1.1.0 (2012-12-18) ------------------ - Upgrade to ReportLab 2.6. This required some font changes and several generated PDFs did not match, since some default fonts changed to sans-serif. - Added ``pdfInclude`` directive from Alex Garel. (LP #969399). - Switched to Pillow (from PIL). - Switched RML highlighting in RML Reference from SilverCity to Pygments. - Bug: Addressed a bug in ReportLab 2.6 that disallowed 3-D pie charts from rendering. - Bug: Properly reset pdfform before rendering a document. - Bug: Reset fonts properly before a rendering. 1.0.0 (2012-04-02) ------------------ - Using Python's ``doctest`` module instead of depreacted ``zope.testing.doctest``. 0.9.1 (2010-07-22) ------------------ - I found a more complete paragraph border patch from Yuan Hong. Now the DTD is updated, the border supports a border radius and the tag-para.rml sample has been updated. 0.9.0 (2010-07-22) ------------------ - Upgraded to ReportLab 2.4. This required some font changes and several generated PDFs did not match, since some default fonts changed. - Upgraded to latest lxml. This only required a trivial change. Patch by Felix Schwarz. - Implemented ``linePlot3D`` directive. Patch by Faisal Puthuparackat. - Added paragraph border support. Patch by Yuan Hong. - Bug: Fixed version number in reference.pt. Patch by Felix Schwarz. - Bug: Write PDF documents in binary mode. Patch by Felix Schwarz. 0.8.0 (2009-02-18) ------------------ - Bug: Use python executable as a part of the subprocess command. - Add support for RML's `pageNumber` element. 0.7.3 (2007-11-10) ------------------ - Make sure that the output dir is included in the distribution. 0.7.2 (2007-11-10) ------------------ - Upgraded to work with ReportLab 2.1 and lxml 1.3.6. - Fix sub-process tests for a pure egg setup. 0.7.1 (2007-07-31) ------------------ - Bug: When the specified page size (within the ``pageInfo`` element) was a word or set thereof, the processing would fail. Thanks to Chris Zelenak for reporting the bug and providing a patch. 0.7.0 (2007-06-19) ------------------ - Feature: Added a Chinese PDF sample file to ``tests/expected`` under the name ``sample-shipment-chinese.pdf``. - Feature: Added another tag that is commonly needed in projects. The ```` tag will keep the child flowables in the same frame. When necessary, the frame break will be automatic. Patch by Yuan Hong. - Feature: Added the "alignment" attribute to the ``blockTable`` directive. This attribute defines the horizontal alignment for a table that is not 100% in width of the containing flowable. Patch by Yuan Hong. - Feature: When creating Chinese PDF documents, the normal TTF for Chinese printing is 'simsun'. However, when bold text is neeed, we switch to 'simhei'. To properly register this, we need the ``reportlab.lib.fonts.addMapping`` function. This is missing in the reportlab RML specification, so a new directive has been defined:: Patch by Yuan Hong. - Feature: The ``para`` and ``paraStyle`` directive now support the "wordWrap" attribute, which allows for selecting a different wrod wrapping algorithm. This is needed because some far-East Asian languages do not use white space to separate words. Patch by Yuan Hong. - Bug: Handle Windows drive letters correctly. Report and fix by Yuan Hong. 0.6.0 (2007-06-19) ------------------ - Bug: Fixed setup.py to include all dependencies. - Bug: Added test to show that a blocktable style can be applied multiple times. A user reported that this is not working, but I could not replicate the problem. - Update: Updated the expected renderings to ReportLab 2.1. There were some good layout fixes that broke the image comparison. 0.5.0 (2007-04-01) ------------------ - Initial Release Keywords: zope3 rml reportlab pdf pagetemplate Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Programming Language :: Python Classifier: Natural Language :: English Classifier: Operating System :: OS Independent z3c.rml-2.0.0/LICENSE.txt0000644000175000017500000000402612032774152016321 0ustar srichtersrichter00000000000000Zope Public License (ZPL) Version 2.1 A copyright notice accompanies this license document that identifies the copyright holders. This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. 4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of the copyright holders. Use of them is covered by separate agreement with the copyright holders. 5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. Disclaimer THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. z3c.rml-2.0.0/src/0000775000175000017500000000000012065004362015260 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/0000775000175000017500000000000012065004362015757 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/0000775000175000017500000000000012065004362016551 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/0000775000175000017500000000000012065004362017713 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/expected/0000775000175000017500000000000012065004362021514 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-031-japanese.pdf0000664000175000017500000001712012063667552026721 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 7 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFDictionary 4 0 obj << /BaseFont /HeiseiMin-W3 /DescendantFonts [ << /BaseFont /HeiseiMin-W3 /CIDSystemInfo << /Ordering (Japan1) /Registry (Adobe) /Supplement 2 >> /DW 1000 /FontDescriptor << /Ascent 723 /CapHeight 709 /Descent -241 /Flags 6 /FontBBox [ -123 -257 1001 910 ] /FontName /HeiseiMin-W3 /ItalicAngle 0 /StemV 69 /Type /FontDescriptor /XHeight 450 >> /Subtype /CIDFontType0 /Type /Font /W [ 1 [ 250 333 408 500 ] 5 [ 500 833 778 180 333 ] 10 [ 333 500 564 250 333 250 278 500 ] 18 26 500 27 28 278 29 31 564 32 [ 444 921 722 667 ] 36 [ 667 722 611 556 722 ] 41 [ 722 333 389 722 611 889 722 ] 48 [ 722 556 722 667 556 611 722 ] 55 [ 722 944 722 ] 58 [ 722 611 333 500 333 469 500 333 444 500 444 500 444 333 500 ] 73 [ 500 278 ] 75 [ 278 500 278 778 500 ] 80 82 500 83 [ 333 389 278 500 ] 87 [ 500 722 500 ] 90 [ 500 444 480 200 480 333 ] 97 [ 278 ] 99 [ 200 ] 101 [ 333 500 ] 103 [ 500 167 ] 107 [ 500 ] 109 [ 500 333 ] 111 [ 333 556 ] 113 [ 556 500 ] 117 [ 250 ] 119 [ 350 333 444 ] 123 [ 500 ] 126 [ 444 333 ] 128 137 333 138 [ 1000 889 276 611 722 889 310 667 278 ] 147 [ 278 500 722 500 564 760 564 760 ] 157 158 300 159 [ 500 300 750 ] 162 163 750 164 169 722 170 [ 667 611 ] 172 174 611 175 178 333 179 185 722 187 191 722 192 [ 556 444 ] 194 203 444 204 207 278 208 214 500 216 222 500 223 [ 556 722 611 500 389 980 444 ] 231 [ 500 ] 323 [ 500 ] 325 [ 500 ] 327 389 500 ] >> ] /Encoding /UniJIS-UCS2-H /Name /F3 /Subtype /Type0 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 12 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F5': class PDFType1Font 7 0 obj % Font Times-Bold << /BaseFont /Times-Bold /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page2': class PDFPage 8 0 obj % Page dictionary << /Contents 13 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R9': class PDFCatalog 9 0 obj % Document Root << /Outlines 14 0 R /PageMode /UseNone /Pages 11 0 R /Type /Catalog >> endobj % 'R10': class PDFInfo 10 0 obj << /Author (\(anonymous\)) /CreationDate (D:20000101000000+00'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R11': class PDFPages 11 0 obj % page tree << /Count 2 /Kids [ 6 0 R 8 0 R ] /Type /Pages >> endobj % 'R12': class PDFStream 12 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2207 >> stream Gb!#\lVlP-&HC#as2-bj&'agbk.q:iN.P0ORh$W:T"JQYbBf_t3ohEKl5n:tf5T)_"Hi:%Th0#/D-\(`fcVspar]CU#d8$<6W?!7oSm8e#4^e6lH@dPCX6^KOs-IB>KE@P9856F\n3F'k(>f&jd_Z?81diad@KU9#m3m795qZ,L5MV[5ICV(RE\^5?'N15/ud^O$?h"Lsg^9Ck>Hm)abZe-4?bX2">S+p$^j"n]A"eY8O,g[.qCKgjF]*kTk9j(:Hkh(78FlQn<9n#kHtB9d(IT=ZjJ?O@J1W5LAgI#K:JP9uAfT8E_3=RC;)K+XAPpLUheS,p?7-Md'q^i^6A6,fI$AI$DH0/BN`Amhu9/8R$N2D'SI(RRAm9bX]0%K4$a"YJG02T6@4/I&&H6QiJmA.>/=OYZJYY>NkqU.61o`]Hd.>F$P5&B&U^K#:!Z4Ki])lmE_ugCY[-N2T.,aJbAk9#?R3fW70PW,+ODSWS[.DEc%YYlO>p0`Mhq86g,Z7fti#ejqm!EYs4$`-Wu`NG_+@Ua]lCO1E/-2rJ?'=TMOOR3$5i/kY&i`isF4f&/70JR%>o3]'+60G]l\`TRCif\Ep=NZtTXtiq=n`6cb#KKV4-I4Xq;5>TAnrl%A&#Ni8cGFM`='78)R@[KBq&D8=C+[@:Gt!ml]`_bM=p!aO6IW:Gidj905WuD`he"8k7bF/ge*`8ZFSHu6?%APeGBi?QVLmm^!WW)7Td,Q``E5h9?]RKk/W.<94JEKfhLF#\92@M>,:.O@HLWpC8-lD79ZfI^egk=W[k.B!uRiMSC2UY$W)ROANu6ZpK(6CDXK1Hnlq>+NJ,O5UP,'@4fh]\16/W*pU6;>UB%?W!72<`aK?mR'pkCjF1K;@'mP[1WKbqI%.-qo-O!^+<*'QhXau13*#X$E6"%F7OYXVY@f:Gi>jDu-3-$pR#Fu>W:$"MmR9,fVI:H!`et\\"Qa+!O-L06ZMp.uYGccb"iJgQLVj?d)#4p=u>%B*g6&]osg'W4c!;$7t$d:W24a40)N6+cQPQn$jWB3#4gEM@LZPK+VCX78q^:+'W+ISTW]fP!WX@Bu9%r*6oCHJ=d%AEJ_^L_pIHHen;[\uY2UIG.@mql("#1SB&F7o,(^FD#qRB0G$ZW7$]%?\-HB/?b$lKALpZFf]Vh@,1X27o)j*X6#t>F6Q;-n:GIh.H>(=?uZT4k&Qeh)E'PeTZ\4VV1,PU:thg#usa"hBDgRQCOs-Zmp_sAB)TWVg?qJYSo1)PYendstream endobj % 'R13': class PDFStream 13 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 630 >> stream Gat=(?#S1W&:CtJs0*+h!J.klGJ:E@!0n[,7K(;-"^rJ#EX=17&e[_(o=7"3Y*7F+6A\2*mI&3dke$uDs$X["'&^HWPG%tB?md'rU;3A<#9-1Ji[D_N7)gqoM;H:#5jW`K`$?-+1.8>m%'Dgce)fg*XP6].gP!(U1apA`R+_qnR"ihXYO!?(kprC_ApS>HPK:1S?Aap]cg5.Qa['LNtf12mS=#T-C%dWM-_2QBVYU$TP=W66AN[fq\3HSnJ/(Y"(HZ%njZf=bV^Sq@n`OGP7?bcW5KqGAm@)3so+b18mr>,s!P._iMgc"iHR5b>:)NCY\/27]+sPO&dr(0UU-d8Np@-ET:t85tLqiF]:u:*6I_*i1HK[d4X)5'.YY$QVD9t;XXdFUV@oP8endstream endobj % 'R14': class PDFOutlines 14 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 15 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000612 00000 n 0000002586 00000 n 0000002759 00000 n 0000003040 00000 n 0000003205 00000 n 0000003484 00000 n 0000003621 00000 n 0000003892 00000 n 0000004007 00000 n 0000006357 00000 n 0000007131 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\223\367y\354\321\362\222Ju\262\315V\3448<\372) (\223\367y\354\321\362\222Ju\262\315V\3448<\372)] /Info 10 0 R /Root 9 0 R /Size 15 >> startxref 7183 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-circle.pdf0000664000175000017500000000424412063667552024243 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 389 >> stream Gar?-_.pnB$q0Q8r.E9XW0(r=p2sejlE0l7KtV@'s&`j3`sNt$`1WOG_a9iBo):j[7(8^N^P!l[rZiptB`Ft,^+R1dP0:k>tV9G6'\E.(RlrY0&aI12LMsQmt9b,U6Up@PY66DH5%WPf=U99#aI"%UE92_'nr<-KW=>qendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001701 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1752 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-keepTogether.pdf0000664000175000017500000000743012063667552025430 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 4 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 5 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 3 /Kids [ 3 0 R 4 0 R 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 516 >> stream Gasak_2d7m'YHrY5Kkja,&1pAfgr/,<9d).\"1+i.Q6R*\&_V0YA98i5g<+Z*-[UF+mE9*'?aAJsWQ,obCi6oh$BW?q%UZpWH.EioEoU=I'tf0SGeclK*7':e9*Oi%b1X,f%B!gXgJMn56BK6GTXnN)bcIZlPu>=]Q!6"uYqg"o8B7\HlkEho4ZdqH*qP*Y)!%M_]JDmE[YM6k0tVg%6[C9gm-X1s[;,T:j`$?:KPhnOakGPN=HgeIc0P4/Uo72U)*S!/_%6#U5''E*e446uX?l.kh8S3[:Lcgi1PsiC0c8QL8*W$Pb4En5csR1T?na4dQ:Gq*apUHQ/'uKSk566=QBS(gedo;Y9,LR;Tig=7i,^n`0P_K4uBZp$+K1$fI0~>endstream endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 395 >> stream Gb"/c]2$6t'Sc?QH&$kX$mr^LdM3(c/uX5MW&PT,/gNpJnSns_?$6gVE\IpW=N#t2:@':c#mnL[KjJ3JHS<*'5Mr$aLiL9V_+fdj9G!c#))HOq`dM^q=ZGQ!G4c"?=]PVuku*'B)I:p,7A"]Kg)U"tnd4k*JM&a<]u%K%9'@&:8p08IPj.Lj`@SK4CPAX&#%\-F^$1[)X5+8hh8*k66^MX)_=r\PRMp1q0Hj(\A&AF$-CKSpqTYh>:SS@0[SG(MXMPJ_`]5\+9VaIcOUJ79r-.,G]"lN#,`\i`k5nF2_G7[-UY+B+hB0@[T?%SfoN01\,u~>endstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 220 >> stream Gar'#bmM!0$D&Um)KHP?R!e$"ni.iUO\F['ng0;k(JA\Uk@GWV,Np;Kjmni.V"u]3C\pYOp<;mH[#1\H-Xo?.o2!+%h^\QmnF0=""`@V%sT.2]HZV:DR."8m*!6endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000927 00000 n 0000001205 00000 n 0000001340 00000 n 0000001609 00000 n 0000001730 00000 n 0000002387 00000 n 0000002924 00000 n 0000003288 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 13 >> startxref 3340 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-lines.pdf0000664000175000017500000000361612063667552024116 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 111 >> stream GapA,YmQ"8$j=p?OFObncmFa[Z_3MOq#eITqZ!=aarSOm"=YOCcNYq\E>+/F08L&Ahm#5k__`m@A8&4F]t7K$kr5a;2jG!k-Q7"ZJa!>^0,-S~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001423 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1474 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pageGraphics.pdf0000664000175000017500000000461512063666146025377 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 220 >> stream Gar?*_%)&N&4Gt4r50N%`6rL<$We#3_St.L0NnJj7&q.(hU92jR,.,jc-?`KLS8rG4g;96.fp%0)b;[e>@VU#jHV'S#uE?35toTU!1J:'_5,LO_j$<%c@`PqG4=[-gKdX"&%@/(_li%[1&CnLd["ljb0VODGSKpbOi3q_n%=g),;JncZ=$-@)7[@(4+.>575MG4>3?oqdl0qU<$j0Ej9JAi3j\~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001037 00000 n 0000001172 00000 n 0000001441 00000 n 0000001546 00000 n 0000001909 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 1961 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-curves.pdf0000664000175000017500000000363112063667552024310 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 122 >> stream Gaq3[3spKl&4HC\mP$$8C^`&+TTu'pK7I7?Iq`MWaF52S)aW[4p1jag`I%q:6>oD`'(j,FhE=sc\+MS;Minqj("_'3BL<_3Z!,1TUMN;]9+DYhe_o6kg,'k9~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001434 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1485 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-1.pdf0000664000175000017500000000465112063667552025204 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 266 >> stream Gas2Dh$V"Q%#+-TH\ZZ&"hUVu\d@AMkcVQ1ncDbQrt+l%_(IckJs+QFnDtpnKZ",;]rHVi,;'7t_&JJ9(-KWr_r).3oOKb;biTt5WpcUILrX:mmrLk`;dMiW7NjB@-uUpUML/>+X$?,F?SPouP182_N=\,Ne+@;lI7@9h1~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000001937 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 1989 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-002-paras.pdf0000664000175000017500000003746012064152355026237 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 5 0 R /F4 6 0 R /F5 7 0 R /F6 9 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F3': class PDFType1Font 5 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 6 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 7 0 obj % Font ZapfDingbats << /BaseFont /ZapfDingbats /Encoding /ZapfDingbatsEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page2': class PDFPage 8 0 obj % Page dictionary << /Contents 19 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F6': class PDFType1Font 9 0 obj % Font Courier-Oblique << /BaseFont /Courier-Oblique /Encoding /WinAnsiEncoding /Name /F6 /Subtype /Type1 /Type /Font >> endobj % 'Page3': class PDFPage 10 0 obj % Page dictionary << /Contents 20 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 11 0 obj % Page dictionary << /Contents 21 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page5': class PDFPage 12 0 obj % Page dictionary << /Contents 22 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'FormXob.ce52f900887bbd9ff9881c236099059a': class PDFImageXObject 13 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 86 /Length 3441 /Subtype /Image /Type /XObject /Width 130 >> stream Gb"/kc\l$s&BFP1_2Dt)$d:1-71_WG5t""8d$&bf&I]R7/-[n]Ci0j46p]$_"a0tHAPLlrJ9CjJP]Q3:qi]L#Fa-T"Ac's+Mn;AA&B6[X-o?:8=&#D:N"#.Sd_Jd&9nAMZ$Rc?Cq]/Y@kGCugmI;S1MEQ=hE#?fu]AM8aaT1Fe#Q@"WD]Ve6J*7aNZ3-FN9]5r]/8)?iJrSUU\&9qs,l-cZ%,@Ga:aj1tI*.E%7]"0q@K7*%X`Af\njiWkC+51"lqO*V0*PI'PBJf1OT02\,Erh63ZEf)S^]!jfHpmVVo1#\nh"B/Yc3VT5AJc=Ij'4BjV:+2kk67ig(ZqPk)\b0r:qcXj)4V):BjW1aG9sr[">($q&@&2IVjUXKB`Q6S_#QPVQ<*!=7!gZ)uuaUP>9uEFQc49!Pn$gdSY2"9^dV)^&'O6ZPLEmUUKj=0GrtOFg]EA_)rZ&;rVG*uIo`F7LH(Ktl%Gc6>hI=B"D!/K;VVAbkh_dMaT?"DMF),S/hm>a3)l7K"=C+Ak"]sJfAU=.%EUKQU+N.i;Q//H.6[FEoi_BsN%kVaghJClIbg7+JB.Che#fJj1ZLr,IdH\qC])p?cEfgQim'seq:@jhddafm@3jBfh:gMK;$:u_Tu`Ef5+:,^BULR&2*)B/@nCjXR21K+c_NWo*aNDp9X1"d!$,2'E=2JJn8C4$[G>uV@nc,FbWK.kk;5bN[lL.ac+H'4?u]gpgIb!9C[Nt'diDUboZDk3Q6bqekZfLKir0p'T.OkEb0"GQhe^7P5tiPEKg9`>*6*8=eoGBkm.`S8P!!VW:p8uuM*7C(XQ669?@q5$Q4JD5R:NNg&#\*=Lcs_Ys-4ti8M=plM2=X[jDgXP`d5!5=A/'/D7IZWLoh%R/5#uJD-R#!Ct4c/.JK\;hPKdHbZ*&omX+;2N/bA=BSmAO_!:.d7kKp`k(#fe%"%)Bc>TQpKJ^XW)gN/-g9n9KpU)/\f1$QU>slYX%2rG"CReW\5cHb`#!.+i12ka"f!N[]nrqE:aVl=hB+OEDSh8`2^pdo%QR65*#mk%-#X[",Ofs=\_!N!>3!HV)troQI\?^9^#=7,?QpZadoGqfh>,"Q3`/l#;<4!6LL(3mqm;>D2;-DSjMNd2a'#ggd(q3&M5_iUbYsb]ja""]dcA\fuB?iiO&!^PLOi35WqkHR'-KR*aWf^n:jJn&Tb3('.eah]JEM[&j5^)dgEdO)BF`>l**+9SmWp06Tn\hjj8O#guco7C$_cFSN8udG_'JXgj(:e9P*nnOK[6iK?kn>.LPi?]flJeri[+^]1DMBV`UbNOnV1U'HA3WA`_,Z[[YiY\F\l."XWK>CNV82<:lUW2MZ6]R1"(Qr"9LlJ0]N3]b>>DbL9h[9,de1[W?HDg'Ht=lel/IrgDER(cMeqYC#aZQTG"aM>=r:+og:N9?@rW_D09;hA-aAd$\gEY138bbi'P@0Q6YOP7nqSA49.ffNT8-`cPF!35;&.X&;Js0qoSkiQG5a9P8WsU9K*A$nP[U&kMU"o>YqIs9[^M%D9[uVM0$DR/kl(\cZXB55OdZGEad#;2dKHA#SogbAU\HC\3:Ss4hN7P.K,`5-`og&N[dDq)aI.f@Q[uXZq(#J"84k7RM9GI6Eu=ob5#K["qZi86D#mOt?F/UJLHEq@EFtnV[YYJGC0N2k#UGs_O)`e)0)d_`U4<:#BZoVfh*cco3&^>XC>$l0:NDf3PVCPLkT+K[Gj[;*Mi.`B:GfhIC(l@kjVkHl1:7`XP[)fE9FEV_$!\TETGUITa(dFf,"t3A+]Y"B=CIq/8;/4FH0h2\_-'@F`\hoa*j-]Y^3`L_r8h1=p=Yqo:=/;_DBHiBuE=[u4d*$B&Ie"+Raq&W57a\Ba#YK`!"66+NaMM5$&r>Bgbs;^cVM_sYUWoa3HQEjJX@)NI.r?q0!VETqhE@j3RfpT"pBK,="rZ_6UM,J9AsiZ&.PVuI"=kH,W`(^\H^L/0Pl;f($GEt/HKdKa-Z[#mb4Qck:NdTka@p4=AMKW!n2kO%iX4a+%PsVJqh'Mg+P*jW\U+Mhj#iUt8&bn)#YWO)\+6#NT0,TqCkQIFZS_tQfq9j]iEWVSG/#.HH;1Ks+:^BgHYq798DlD2M\)Jj:bFB^hgC\o;H:%"`HcWs\CTB1n`h!$E@9Mgk%VV"54r_tmMGA@":V56%)>K12KnD(SlW7A\OSmlGX,:m0V8WqK![YP?b0[4SD:rC-*s.&GJA78Y!'=J*A3?!5Hnp!m]cU73i^-fm[`,^NS554-[-=Z5\`Bk;o;Z;nQGDC::$=t0T\E-1Y=kP3K%I"HS5IogSDcLLBO3hleVhS@CWc(mO8<;,DEi0!5GO>7RPopn9ZYXJ#O"H@C(tsj/.PI+-Y"pJ@=gj.uGFR3Z+[*^=BVXt$Cc*W1/+-B5+alZI1hBZo-/BldS`68Ql\;k-:(?g%7u7$pCe%rKe94K)B.N>\f_[4(&VtcnFh/?.eBk5GO<,P\GA;#]]3$>VTQBYBGrpH')5Y:[OJ_i^9Kd5i5KbtHR>X\kU)%s5S\FmonqYG2qrh)*9t?/cqb!YMa/8Ub@.B+9K".)ZAlu_*NdqGMqYu*bendstream endobj % 'Page6': class PDFPage 14 0 obj % Page dictionary << /Contents 23 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.ce52f900887bbd9ff9881c236099059a 13 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R15': class PDFCatalog 15 0 obj % Document Root << /Outlines 24 0 R /PageMode /UseNone /Pages 17 0 R /Type /Catalog >> endobj % 'R16': class PDFInfo 16 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121218153938+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R17': class PDFPages 17 0 obj % page tree << /Count 6 /Kids [ 4 0 R 8 0 R 10 0 R 11 0 R 12 0 R 14 0 R ] /Type /Pages >> endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 171 >> stream GapXM_$\%5&4Gu#=PbgI>b/J`4EipaMI%g&jFUVBujA4-2FQ2E7Wm%r3q1:n/De$\(&8qKY%g=%PgP*nk+L3Au9=f?j..dCsO/6Ld2H?:"&,F]P$7),Tm/fod"7W(IjMSdDMVYiZ#fQR#Z~>endstream endobj % 'R19': class PDFStream 19 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1381 >> stream Gau`SD/\/e&H3^ns5Dl:RlWB`8A/-rQ2s]A!sPtRXn?DL(WrU+/[D0Ee;E\GmmpTeXXKh\(FpI.2L0Mmh=DWD#[$jFlMl/8E#Z[eOoV0e`]tNmJaa.u%kfS"?!aHi$H/9PPaGc9LD+2?LO-ZP3'R,'"lTrMO+5s4qfb[=GqEFSUk6Kaqr7qX$GsP$r)naKE-[S`SB=(:-)T^Q(X,V"LPiuATm$djaDp=kHInu^qC7:G@:f:ZR&gb8P0$nm;f0>VPI-'e_Uji+`'jh\b".O@(YtG\ESIUm_33uNrD'Vh5\l[p7ko=7McCdjSVfe]u6'YZ[S]$RX??8*iNS<"+i^!iIM-/CE8f+arGApPdk$\SZ7Pej.97e>HopaZ@Fl2d0M!!aXPo/l[ZZ/3<;-X"#0r5RNMWWo#na@6qq_jWg2a[%LN#f_\tUeDd]G3aioG4!pZRpZ403,k#GABQ9>]O)JUm8^pca2V3j7Y>`*1LiJCb\Y]G:Jnj5T@A=J?UPG8Q%[Bec&Z#/5YZX;nthWGiL$b56%d"5GP*Ye"?f>;]7mU>kGneE@s@hF'ZOiLEINHRang+(#,#?6bP5kG4N+",=baTNun(9VSF`3\ed[BP!05,R(&.u*B6VkAJp/aTH?<&/e0YK@("ki35ATLKl'9+85P^n6fHj_u!>.bU9./]Z=/]8o#&2eh3ss%Ebh;])tWk"Udpl9K44Rf`H2FE&\m_IVpM=ZW#gWR:n4pn;pk_qmOT'5mop[)/m%?(1B`2Prq:a9:RD@9h.N!ZFU^E:X^1]U=&hI$a0L+E5MfRV>tr15X+prlY8Ug=&"+-V3//g+5?/6_j6R."hFC\89;G=7U1?'49s0_abZ%,6kpf@`"aqb)<.&2_fY=pZT`)Z/FG.9$!0Wo]Mou1<_*.&4f[!^l(f3U?0endstream endobj % 'R20': class PDFStream 20 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1515 >> stream Gb!#\D/\/e&H3^ns5DmaLc[GPpnAQDka/@Ycljpf7_jP&;f(,f/'F>,cc^e9Nhe)HNb$7pgC?+]6mSD:kFOd+6ja]YW;<&9!H*=q\YDD-pbSRp#k7:p'1FJi;]l$5$_J?i%k*C2C1\?1NJ?4_)d6>A_gIMPAE*5=W4b__1G7Z2g714dRiPoV*=3*$km2LRPW9i=*(%#im6\3LNo,EKDlR>rZ[#n9cSp+UsZq#6n'%#?:@GO)E-3Dq)PcWY6`55eIZ]r0lWR1T[WZF+C6@8Lnc5KC^"Mi_IBp,jX/9IC\:X?9l]%TlPP_0)T$R"%d**8Gu;\-(nb,2K%Of2&r3\[bi%q$-35;b@A'3<"-S;]MD%16QKL@`l*>78i"NIces*B5"as5_81dcEU![H7Q.NRSKp)?[<-AAW=Ka!iIcsn:ju-P0mlNh@?Mem>OB[&4!._=kBJ,m:h&XN/A$?C#*=U*\*PcRj;2,n-WF_Z9b4)RTMDF[O=bB3;p?2d/ertJm@@(7^b\h*XaeM-:h-,QM4U8mV]LoX*Z5q=55[JFBEd1l0$N0&3a]AorPJI!EJ]gt;0.LuTHZ&jSI;d;h)t%`V_e=E,;._\;WK%!NVPc.Yr-uN+Cl)jA`UVg)p_Jt=iPp[e>stL/[]&XlUkXZM:s"AnLBhc+,.;oYLi%8a7_Pm72>0"_/,.\[\$"FP\2\a1C^nb&i(E.9n=X\\93)4,F0a:B#j$_\DDsBTPVmRdUMD4A3Wdr'f`FN\+3q0>$5-\^mUqpUIeZ^ijK.i?Hd84jF$SCCf&<_/K'Epj`^#n'(i[*lCCmXqKR((IZp6&B"C08393Gu`75S-iHB@)'EYZO?4B^eO\O7__`HVYfXFBs*ZMX40Y[A6[424tBfh-!O-=",Od6MY1jDRQ[SC,.4uknZ"PNNqRVO7H.TU"qI$,'TsX8IADJC1FsF6Io`("m,om(WqU*I]#J=I5RT3fUrS(H>'`Y=?UGtXCE"#CI9TTEJ3HG("O=JWa0@bD9Q'3.u=,8mA-dB-sYf2,lp$BYUJSX]'=u&qnaiPP,]i#!t*LWQmPlP9^qBX,am]sSlW?n*Ut!kbSQ8NZc@l@>gZbZ6EA(Z5@ieo/)@4SFb\(trrDp[r\+~>endstream endobj % 'R21': class PDFStream 21 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1634 >> stream GauHLD/\Dn&H6"8s'_/h:jQliZ1CF7h3YkD9'kCeV:+2!?OSY7gQ8Xr;i^bJ2g4&.Q47,"!(&EKa3Vsl1S0/LM/TE/-Zag]&U_*b5T,NX5]'uJBE0udj.d^:7s^0rmAi6:M-JC1B$_KN;%raMYB@!uQq7^8Xl5#Xuu4nDVs$%dSNrEZ%Rr&a5K3MOp+Inf0W\RE^W"80fb(BG)Kh/k$9#N^hM)O/#jPfDP_>..m]n_=\,ukokiG2Y3uqBCqW`9HHSOq,P+g>P%*-4]rs;\*124nYm\&md.T5M,*.m)`*t2^gY`LGBGT0O)HC^-V@a\,M^LfelDbf07lN-*o,,7/&ul%o6E8_q&h)/EQ/l"([@CiYmDMWIYu^3,D>f17KlZ?@Hni<(/]V,Y#.4!rd=6K!WIOi1"I]@Necmo>D4>hU$k$-TO@;k_SX-Ln"'EFo["P;"I]E0`N3c.&*0u]q0cXE,.r>PSiZ?JuMNYsj;MclUQXe#Po,O`k-FIO9GWb@M!OE82#*iS5'rf$]nq&o7-$15\k]ghZE_bF+e1Orc^41+50XnI?(3A8tbZRRORQA'J6i1aIo*lBpB9[PnaE%j:-]]tTrcI_`)q\+:ig*?2hdG/P.H_7VG`tkOCe_=V-LW7M8u;6SPQ*.LU8H[^,BekG]u_Tj9UGDm:DXZ4aJZ=!fnW7DU!o:=*V0iQH]paKGnaUhQRrF7?S\RZ^=p/6-](Im]Yg"HHi@>/frjXDjEPhf6_(#LW//LrV3cj\MY6j5U^P*VUl_C>Bd^4%V(8Y!"I>!]VoG,`=7fTgGW!#]-0?X-ZS\(menMR&&^*L:r*0d(kG9J,f"'mI^k8do75s4_",/@'J6K1rO'4non9QrPq,E#1r-b5"7`Z'_6sF@+N/CW1f$)![KDB"]&;oo4K,`or^t>dS/Y^`6jrOHO3pl=bbT\?Cen>:RgiAKaS)O,@u+D$#'ScDuP?$*Z$"JUba3nitB[YkV#BCJ7J@4@<%t_@DlfhDP#R,\\_m;d(?N,9LE6X=GD%"UUOM+&C5pE_ICF1Vt6h7IE3O^G%k^>KZ@Wk$VC`"kFuOA9009kW6u;/qg+loW?BGcfl=AoisBgS34@'Kj0)o6>3Ke1at9)MrJ+,Y4o^L'^^^JX:8OF=[B]kc$cM2HA1_O#+VEJ592Y&5j%5r>,>'b7'^<+eo96gZU3'D'g."ungC+%endstream endobj % 'R22': class PDFStream 22 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 462 >> stream Gasaj>>N*i(k!dbIlPhDVpVc815<7CUJ"97&a?&DgF-R;)r'lVgD5ZO9JgORIHRup3Su9:.mKd&3!UKb\cDi*i%kr,0^o[G\^ahd*R.Fm?ZD;iT&Cq\2LVOe4%&/JG?s\XpA=03^-)YXU1l>bV6.Q+\i?N&i1Jqo]#E=e'GsZS=J%R3_&Ek(cUTQ@dHX1e*U7Dic8FQqU/(E0W*S\4"(l/=b,mg5Q#0\M#`C-"'8Mi(%Xa4rjEeK[\NLPAPfgR]2s>h&9$92Gc0&enGV7uEK3;>%bVHPHJZTV\LOH`qOjqQr0`1!r*Krj;%>683OXl5Y+f`p[UGKA>43gr3S4OE##VS2HS6kTl1$@q,mm5qH'l]t9k:8$*QAK72@+*'bpBC5Kd_D<&m"07gkWAS~>endstream endobj % 'R23': class PDFStream 23 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1991 >> stream GauHKgMYb8&:HLqIi+gh;$pMCF]Vc]8D4D&i1rpq+FV>SP$CnSOBcCABh/!qSlppegN$g@BOG%"GB[q;B$Mq0)W<(5T2AAUE^LZ/J:]Lm&dkMR.;^^%O3Qq2kL1*Z2l:!)HfJKnDt^CIm.H>#bMd3IUuc8XS"']O?R]dLEq3$]4.rW,+0NkLT2SQC9jn7cChHl38Odr"JXL61MdGZdBZZ38hNL%aV(riU%=Y5t+1nMo]X4:ml'(ig0p>=^^_nO>14VP58PMQY558!%sHJ1VBAl&[q6C!I.^*qu`VJeki8P;gSFJIWW8n!Cd'E:5mo>RME)HT9FZAtA_H'?5VXTlL?0b`7Q1&#E\J8Ll3HQlPgip5>Im]ZA4Y$N"["L2>BNJ?:$5jg#dYi5c&a<%j_F:`[F>DaTuJ:P=670ALZ21a=9OWjL'R(A$o*\alu:9*K!FP5U?aO"XZ,S'`.r1B3r-(W/t4nJoZHiDMr[0jo$oN,f<**.`'9k1\`Rdj_1&.jE_NAV\='o/)gCB;>Lu$8N+R1gL9oXF028Lj*:A\E1RJ1B5')OU(=ua28`G*eWNi%qT6u&*6gQbOfRKR)Kr(#>__?hFYNZ\7-.IA?DWT)""BTaAa!@_f;cO6^0(L1c0bKS4q><4kX(JPXtH7N[ki,\8P6\7TD(e87j>Q"kRr?*)E(^m6m'fSHr68ClfL)KBs;5W%F[>%g+gc>O2P9#-4$anGL1F-IQ[@r&dMMLg-=Rc"VR-Q8,#kbF^hANLc"UNrcu/dbY)_=I]*$JT.F$'eb:9t.13bYp$=b=>6j*H77`[U(J^r5it^Z8d[W,%Oc3hUkV$0_p%[Q<$1W8E1_;EPB_')8("BQ`lg4CgoUlH+aj>X^a]DZkj:IO`\nB_BG;mmd>nd=-e=].f9_g&S2qc!=f4&a:fG:aujWGK-N=6p5PD2Y%jnL:,9"fIK-Xh.+*$:*u1X5t2gd$*>B#NmRdBSOo>qQbQn?YsE%Ul@47GAiuI,*]>'ua5?#X&36blIO,O>U09bjLNUBR60:LGVEO0udLTendstream endobj % 'R24': class PDFOutlines 24 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 25 0000000000 65535 f 0000000113 00000 n 0000000269 00000 n 0000000434 00000 n 0000000621 00000 n 0000000902 00000 n 0000001063 00000 n 0000001234 00000 n 0000001408 00000 n 0000001689 00000 n 0000001864 00000 n 0000002144 00000 n 0000002424 00000 n 0000002747 00000 n 0000006424 00000 n 0000006771 00000 n 0000006909 00000 n 0000007180 00000 n 0000007331 00000 n 0000007644 00000 n 0000009168 00000 n 0000010826 00000 n 0000012603 00000 n 0000013207 00000 n 0000015343 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\\\235j\236!`\255\002\350\332z\003\317\346\3325) (\\\235j\236!`\255\002\350\332z\003\317\346\3325)] /Info 16 0 R /Root 15 0 R /Size 25 >> startxref 15395 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-name.pdf0000664000175000017500000000425612064434063023713 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121219165653+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 215 >> stream Gat=bb6l*?&4Q>Er52g?@*I]ZF=le#NAuF7eebb`WW-lT`)oY\'t[">\mKa=.ANA'7b4UnA66Eb/P=1'D6Tp!1S#"R#tNcVd.?IEg/:8#l[P^"&M,8\%nGf/EVLM&BYMCtdlK=%rq6G5#_]^4@)&Nlf#sOP\;-)ht(9LA_)%?E4W,e]4\'RrU95F>1X#MDm:%:h9~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001701 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\317_\373z<\377\333\214\316s\340[t\024a\312) (\317_\373z<\377\333\214\316s\340[t\024a\312)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1752 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pieChart3d.pdf0000664000175000017500000004701012063667552024766 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 17737 >> stream Gb!T\9B8D+Q[r&3N+=neP54SM?jP&qL3F2C9mOH?/Em&[Ys/\_nbfG$!A:>g$^T@J8q]?l?J+L:m^\[^#Oiud/J+q%OfcIp*:QL#"]ANTWIjg@?oSGeit%3#;;_BLnXojE+!1IU+9(DprpSmNs7!r+rg/]'rSup^J#3&AcYn;Sm`V^qH>5><_>io;)u@&6b501NYIn2/+91f=^Ic$0^]'#?6i7>ebQ(^SqKm\ia*0m1GCMDj#5RULS7c-M0j;8cMF+2l*9!6LG96mUMs/&t98.aQIh6+$I0W<]*jgf.^RS!eOP!Ac,5;K#I$TYsW,hj%ag%s>\o%:B7XCHRZ^$;ARB#s\Q1rAW3,eN2NLT@6hT4GNehgI!'kUq=(+[AI[0VeR`Mf@PaY7[hNAXjoI*k?j_WnVuUQOn>!\lo'Q/[fDkVU,R6]Z#LVAWR!be$>unIT4uqUf@QJ+23ESY0>dK<%:>gQn(>u/Lu*?!fsqFTfuUs@^"PYf/$Qa/?mW35b\#5,q&Ib6Yhhu[7X8"d9W8E+`sf_![_;i9-#L\G>h5NaqOO\,e(Sl0js+#M##qL]@qU9l2$.[pX?BGkXN[!<3%;gZg"_lK*34DjQ=obW1qN1Ck3'h7YI!=pJY`t)bIqTLfOjD_Do\0gQSZV:]3eW3m=Eg$ST7>pc90^"[2R[m/$Q=VZVMeLNQ$@lRYkUgc+rn/n#3;aHYiq,CVbsV%P78o%(c7G2T>"t6.=_!;d>*-7GGQ/KfL2<\mDs[cNnjYi?RSMc+ls?J^&FTH&`nPB#HD+Z^DRc9(nBXUP\Aj)_F8)-5k5E2Oji-pXn-YhW:,]osKqnH)B9sX#VMFZD#%C4R+f.\c^)jq^Z:I>+a$;RSV(r/jg%?4k@i#UXggIY1YD2^&8]%#]t9!/!kn=iCgG#mMGEQ$/ZIuq[C[a3Gsi"WdXWP[JS)bQ;^Vq)Y"R(C#A"cYbk30c:7^fm[Yj5el#2k>&eKOh'k`E`V*3_djLVaJ3.-sbSfV-5NZ!`>r%qUA6b!$aE/3`([';2[-c@,hQrH.Eg_p6!.p*\M&0]0oYB-50;#7=TYi2h7lBYmW/'tr*R9!k1t^d6LQ`[#EUq$;_%+LMOo[*Z_^.SW3tgV;1gii%*/OfA,gqf[L0]u.83!guiJo/d4-K)(bar/S1ZU#^aOMM_%6D?b6o;ssd79?=G"M69pcq@-+2%[@kQOJ+0^R40Nh-8poSfQ+(j>-g7rJDiHHX]S$k"TIk>IkhdaFrp8ft^\nR`Sch^JI,oB1b"J/r1,>)')IHh`hD[];+afLdSf?/'Ve%'2&LU]h`kC1tZM\$=CraaTH..H6;)Q"#qf"7l`^Pjf3G&>5290Nu&!gfLc>?WFcYi!Z$F9tQ`M]hUQ&]IGG]'Y'0OBu5G-3qJ=sf5NX0Jqg$T[u=(:(`#I4l(7a;LA%&%uEhj_$#)2U54-$\hg7?(Z\t/:OeU5;3Odq<7s+Qk7?eGg&S@rjfo^X_M$5\f-h@1MaPCL8_o3qcJN3qCcLVB9?6jMgFs7Y?dTF^GF:$A/@V?&tb?(H)L^k:KBuFknc;U*e4?]fT!Ao;[R*P2jmG]ku\eoDP0Ztfa[ZVEI%+/>9fTJN,K]O(0PPs=pC)!tS>?`FQorZIe1J=8\-M#`7DYDO!mSiIuSmgf-f6[t=hL!7TfJUD<%"k_/3+(FhlYFhBoQ3gMR6-&(\N=kKfJU^S'J*06`O01Kj/gn@Y_J^&4mR%5[JkqVg4%GkTdRb?O6OroMs_('qN/i]3]??!j$W9i?1`U>79eBX\Fr^&fD`>SR:4]248[F0CHnD=CY6%5ci,ihg>@YrfQ:JJi:)X_?i8pQPr;usjmX@XlL:F`VV4.KlJcEaaG66j>gKX4lQ,D,fYnjA(H(R=U5.JAG&c9SQ!8`Xjhnb@]=@UonqLFTr^[.//no:#L1-Fu37=Y2QZP5caKQnCNj*9c<>i@lo?74-HetQfL4@d]cA2*_C,!,tX092=-L97l%CYO(:Ee]Tnfd5Eam-9@=oATTtj5E&<>N?CJdZ0Nu1IN(Xg=lt@T0`a[SsYoM!mDK7S'UB)5J?JhC2_u,q6pR/Mdqo82,:\%$MZ+H7$Ytp!U7fWH3W1il'f'Qsn@&A+jj#]`\h?=j#+MKD%"?(7")R`A`++^P/C:PorWg\4+NMU0IZ%[@0gJiO;b&V:I/3M[:;n"[Fff:`rCVjn4\HQ$YKWV7u(_Mf"%_JJuN+u73a#-u.D.SgVo^rRG'"Z:6;&fkcAjb0-UVn)'`:u77Gih3acL'6:j3kJUohiQfSgC%Hg]M5V1Fn2SgChkOgX@le!*,+8O'E1%Cf#kSA_C^(2TH]:L&!-5gFh0H43XF/V:dmJ2HD:(@!h*_b8u'!Xb]fkG3qRGL1-JfWMWPh).'A`+?,VL^7]1a(hB,Ik.nR5(GOkcjUA[e;B)r*Q1N_D:"4+Jr)q?]m3roh"h,(UVB4CXq3lnDKARD*p6n)WQlE+PB6(l#;7p>FeoHKmT?,%HT?]hVZTNbaG^+lZbnr:D1NYp],_iG`:'G&>W\>V=HX@WhMG9=Df(05YUD9kpG.rH-gU.79?HRQ4DGZ&7mX.lc0l8$hDT`3C/^3;R]\Y>:,;@@8lo"0W)+-?!gQ9^9D)T-`./W/YkX7R19\U@o*7(9mDtV;n@;Gd_DYN2KELY1CgM$>#F6DB>V:R((j$$X?Wr8YdI?i$X;"YXmlO*k5nc3"Om.]PHQt3u.-s]a10\+=.!c&L@./1hP;aL3JbippcZO(12@0T[IaP2S',\@G^?O\hgt02SF35Vtl,))k@($RVVTfUjDSPcGYT$LPmuSc%>a$?QK>V*KCD2UBJ`087Yq2QQY4WBB"7,nK$^=G]lpKE7Q!hT^cP4/lJRGI$`X<"6]ea?rYh$^b`Q':7?]87f*c0'l3/Ig3IY^)(#8m$l/nVE'qFHKMr2T[@RUd2$$*>upagS9Jp.O6c"5S$gcFoC+=g)a6hFXSr+]Rp9(C]8LQdKhKYB@dqA2tLDr%@QVDDGS!6.QMrd3!T09RR?P$>h`j50hUPNmU;0e[AWs_bM#i1$52?@b1\KI-ef=44REZQ(Um,`&3``f51,JIE-nKS!pTt6EmffJ'fo4YU&tdMc0oMNc`Mnj2EKe@;,?ZH0Qc->saRd)M2p3>AT't[r[Rf9PXsDZM%I`g]Pq["%/;\i-31_^1Wo*F]@tB>!`D(b8"2lb6En>?'bYOjTA]Q:6(Y#Q[A[8j)RsWp*/))O/'Q.0n_]9`15`_0mQG0isi\9?S#"1`U99iF%kpSQ<-m;]3Fu\,K]fU&uV?J#QGZ,@gbIm)(LU#]8ceuMr"nf+`RiZnnq+]ZSDLYTBO%=M0c:;d-o]m`,DJJqY5rWZZ#ca@l+4BMQq&b`C1D#RS]\*leHJZl*,@bXmacXM#j5nAJRuMKbqTTX6ZN"Mj*=^t>,.Q/lQ$V9@Bcfbs*'+h_tbofh9HUmAAVM9^0!.8kC'tYh:.tDHNmWrP#jU"#VkE4hb=pZPcUQB3<9Hlbf)2Ei^M\aIgpU[&&#GE"dP,O=0ACaF0ki$*7m-8U=1MbAb]]`'$i=k(C/[6bKYQ>6M3LqcYE*ssFQu>#6gj[,IW$ra+F@j.#&gj\UMd:)eD&K9C1EXQ^>WC01oRSCp3)E7:\Z'sA71Q^2o,='m5\QqD\!bZasXoHn8E;"\d:9n_D($@/uH'41`)"_`hcu$;B@=P[H%QR!ja]^:-*@f'sm-`r?+nAEK.4PH;Thsd:GsYfLf^9VHCgT(:`u[H7Fb2=fu/]6YFDO$&Pe)2"hYe:T!f3=NdqrIC5'Mq;"UHB%Ee_-$Fpo$o9DtB.D!<:!$kG]KK?.A63mUF_@*8L)%+0G2i^')m[,@0$>CRL/&l6[1noZ55/ee4@qW5Z^VPG&@$:21PN8)Xd;18sjYYbZffcK_M('1cCAtlWW^h,@hA"$(@,mi,dMq'WH=33_NqESbI.Lt@[akeJ%lr@?(nH!Xh9pf]@8pHC+\BPlnA/g_+qR_>)!PMs`+^+T[-X)VK'>=;fkDJd4m`=3`imI?p%TG=oZ74UZ%HbDs"-uZ:*jW+E1rHAP>OKh(f)$dS+[:Ni\A*[J`4#d40HZ4Ln;o"TK;dB5'b<#DiE#icWMsCLi&r/R(.Ce$U2_Gm$:?Lj#G/4n&HZ@$_T%K3]HQFetiHVkK0OsIcM]"V"[]:mW*"c[>;gWI@[e*jbou+PS"Va=QYbF\2g0t[m2og\bcK&uG,q%p7r:hE[8.T!KT;MV=2[%`Z6Kog".RTE=&1FqPm:X'\Y_/5L/d[;BdZnh9/-\Kc:*:e&QK`r;s#a&+ZD!X0h-N'I1AY_lr\=E>]n=;_T.YuC#sRFN9?Cpi]aLR/'m8VLpoh,Y&2]5rF2l\+0M+uA-elMfFq"C=5dkXk[i)45Y8rNBi#JlL3pc-X0`u/99GEIC^G"d=Z:Zp(R92^G.D$1%hFOF"^!,*<4A97M/+l+ghX:"PWd)g=<YZP*nn0ZhYSK"N$rG9FPDb>G'mg>0q'-FF>oE&+(R(8/";XZj#I#MDH'cTB+^E]q[>H,"e'+EkdRC%UT%SR^mTB#r!3G"uBS^2)Bt3'bfJ(QaU@.#tiI@dk%clga&G-WRrf7.V`56kSTT8=I[!q\!$0c#^/dL?ZHV;Q^Ea:8nOGQYV]U4ilF7,%GZA9Hn%%H`oi)EU]DjI0)41d%ZY3^5\L64I5Q9%'/IKg"-_a,mbc?=DUP<.ddi8UkW<$O>b\N"d5.?E<:&B>lnVlEfQR@>Pq1NO;hU-C>aLmL1553]X1d#86iTLuVX6rYagm0'Km$.h<%-*7#s$VX4DgV1^>1AWR[n-&7V`*Sk,=;MJ.%j#:`c3K_RTP`(>m;Xiff2J\L0$t&^qNg\6oM1\;"=:4uN7;B\/el'Nh%rYaS\4Q'-8ae?%=FP\I$;FrPPIdV:b1dUmmB(_P\tpgBNbO^$65jJpC#sJ)mLL)ah7CEjBPLpDUdiLZfa`$D8q*[T@D9Y3L0"N2"L;=LHM+PQB27otflIab9bkSLcmnY:^3ki@r#CXX)>8A_]G<&)HU`c94JOuF!Hrl[I'&Wgoi,B."@u"h>mQtIOE0nIq0UdS"*F;2$/pPpcdrr]*"l3;E6,pgM*N+WH5J8H?810PQO/!C?bZ:ofq?0r&"=rpHJ&--"tW^ZK-N-p\O=H"/;/k@A2t99f1Q0NP)<@a8?,=W&`l1hm79Dbk""t_#t_)o8B<#IAT!8K4VH@ghBR"nac'@BP51:!L0YGIjZJ:tOn2'^0^R3lNn.UjV)97S@a@]X3',-PQO\'#.X3F0=1NDk*#_>F3P(8[QgSp:,hmss\uNm8C`(cIGEr<$X9&;*&V&d%#/:16fsc1YEDTW;\.gDGoTcG/7MQgm6OMFDrok#Ck'6a@Tlft%=nR1r)B?N\HdQ),L0rWDK(Reu.7uLm[s+4LqSqXpKO%nYEq]9JPFU0Qga)'g"b,">,8$VHaCA#Nf:.e;g;N`1(f)*.rkcG5O7Y1(C4!9k;`5B>.d`j-K4^Q5^"NDIhMU^`He1Z2*Aq#"2"(P@5CS`='cJr/;LM6I.kd34rVi./Qg)\*Q=^;=e?spQrTu9/0&dVC&A$V(&qAkGJ+uIhAX$WiTrAGuL*j,#]-"`O8,rH`h`ar(I_C1,Nb3PXs$sSNI+_-nPX4tqEFeDn!aI3$F`X+@F=3#>A@"0cq\g3e/+1%kFWk+/6Y=!K2XP^KYEJ+JE`&oY&$6LX<\GOWY%Hi2Ht5VcWPYdT/>\D7p%A$,?eHcLVk6GQ0'_4ZL'"5Ko1V?bu5Hm_#/+$1_[`&<&a%@m%JfS&^6&-%Rk2edG;W:B\KB$Ij1#m9C.NC&#T]h?I]-NZKMSOT6o>ArmS&lhcWgg&QfsYmsV6og77(]+[[AHT*O*V1l2:';8]4?0#_2&g,f%%,KFpRJip.A+./Wimat)uRSoQX&GDC,[AY)8o)($"BWLG%+kq+8-7.AVJb>O/Xd=J2(,g1rKi>FSrf3E48OFseUqp)lMSa0KW;Cqd)YWJ>6l6QhSla2LR96M8*^f!.OoMNN!OH-)8%JJ=AN5TCatd.m8]aCG\c*,c:$V"h"h$Q%7l=%jCN5t%2Y<+&$u@MF*4oW@PH!)2C%.7//WRum:/e#9kMa8am+r2G"B/O)6bErU@.G4<+IA^r0Q$CS_2OrqQJ1i3kg>iO_5H:"dA+#Lle]*8Y:k*NP*;)V-jNLWflLj)\l%8?8_S\%#JaM-%@HE1rb3U_?\ht:);!,T*&e<3VISHl@SV5e*8]ur)!"6Ic9D]8gUIlePK@i`=U%Q]nW2euEUrBjP@/3k0nf@M_Bfoe"6t5<$-)U"'NW8rI;E(kZ+T!hFC6ld-nIefU\%4"C>C8TfF2Me!2JrtCpMEc#L'oq#<0%:f`%X6_Zu\u`NdpE@oE`aoSbr-/2f63#^'6V:?aA&e@>n)soV*PTX&k^[*oso!KIXefZp;*36CnheJoK>'WU?E(J90stI@kC('Z4c@u+/Y(TOW>ZK=-_ZW<3/oYGchs\WW5h^p5JimOm=LGb>r_blC:0[cY07._*j`63Y;-l'04A'j$hTWme%b4@;Ee3$;IUfB;np]S3$0T"V)`E[_STtAY\t;gDlV<0^:rr+'ES[@2)V4.unZHR$B7+kh'u'Mp1=`:0Yt1["UcPgsDgYlKVG^GgR'\@Oi([a+K7\>cK0`YLp-gX*Sgl1]YJp8T"#.X9Ac9.ciT8YLl)T<2r%5<"Y-XCKes`di1jC>>t`'gX/.LHq&$aYSjIMam5[Whh3&A;j'^B!#KHsi8/\a)$WHbbLIiJ74E)u0iOl*m=X\3q'V&@,qtK?RUaNFaqa2HW3jH71Z"u`&*cLW%N9o/OM\D%8J(X7l?EP.Wi1!0C'W_FCiXr\dGeT*54^$G,g$_3^dBVD;F5*G;j(2gp[/LWJ6I&LkR=Hs>17>LXu(;N4_8nuE+?;D:XV;$pHbMURu_&VY:0_uUgZNOc3*U#WK@t,k,upq;JKI&jdrL,&d6P3e+R?u<7modB2n>Dd\h6/6ppWdd8l*299H--X[=-5p-rXk1L)B$Qd20ubQS%bq/f56hOeb=Rq-:;MU-8h(4Bu,umMugI6Vb[;P6.U`?UD8r8Bs8K;*b+jXCYl^QX/M%H'gS.KAK+iUEC&(r3.o*P[5cm?2dOh_fEkNab10.G@4ngjeEji%b[5Y-V^?b!46f.56YokWO2F'#3:ejJ*3Z[!+"lT+P[Z075c_?e'40EDu*j)DsbW[.32`0K>6pZF?@6-U4?3feYp3gP8^rH#YpWXs=:qp0EMSiNV`?I,**'FsXl&_2(c?O&Vjc?XEM3eY/p.gkf@g/EWZJ/lB]?qjQ\g\UTNNFoS3;WUS,EL!A_fX>'u#!*MJ.7j'!i_Bk(A5dEOG=VcU_G"Upk7o6-5VaW3?5V3F7!6L3[gl.^JAI52cU\bka/@KnWtSOHn>:so>$.]l7ZNX\7]`J0L=n>Y1ZX8%fs'0$REj?qG'K;DdR@L1PW@/&Te)XmJZY6`5W8NI/j46&^Y6ae,ta14Mu?."d^F[(XT'P3e1\-kHleX9Ldj%=hm"m.RNXicCcf)['NFf!3-VW[jm-o#-GM0[b8arJmMV>127fUWe7=99k0o18U:;=`pN[l:Z[lr\`kg_o7RQMpcS0"nSN"cY@NA-:P&Y/\[h3'J[!pht;^AHUe%$q[)J(F]Or?E%YaRb_ZHhL.1d%FY%CAPg3U5@9oA_+rZ"1U*"Sk^8YC@7=r`1\2#$.G:'AoP:GTW*YtMG<3p7e?BJ-.lAg-^n-Ro3\G5*+("?H*NWip?1FHQL3JJGAY?R>)i`bpg](1IJ",Xp8^&Ptk2L-Nsqi/G1H0f<(9B-^c\NKF'9a*B7@$g>/mSWC!p>b(fhq#Xo)juuE[po]a,:ItABgi@OB1)hWAIq]\to![#+-U^lc<=+^h.;iJ(jQHj"5LksX82Z$ouWIfBOkCbbg4A0JjPlBIjbbKX:f%g]!`,8Z!aH_5L>ljY,2/g**lnI=o(npfP>h)?Xl(nKR7F6+(3jsE_<'Vsqd;jkY]"F;<$fS\Era(G2onYbV6NB-DXn8k\\60.Dc:[#dKbBbN;'d4!6j@F.L8'Q6m#0TYPNLOCq+VCJ?7Ci%MYqe?"?`GL:I>jbg*M'Xe6jRFGbfIo0bI4e4q-+eEBgdoeW4YW[>Qddtc:pS\HaaA-[>cCb.ic$mT;G3Pl)]%u#Z\9&GgDRtSe5S/:s,<6d]5;CgtQ$JEiOfeY;H#^cM)JhuAp2h2Rb-bJ2cdLjV6`$U3!aG^+1G\6Y=N`aiHN[r%q>%beCbjU-9-m'?Z`/E4tU\go+$3!^!]]6qn)UGo84+62ba@/4F>j;"@Y77=7s'R%E"cEMQE*d4)>e<#s\!K8Y_YQQOT']fRQHVe+P#L7O\%OZpL^""=*MVb%8e0n^'BFK%fsEpks-Vs'+PREIN]:7h2a;,i:l+uC3.e!Nt11a3.YSnXQlW(>c9'asTuqHV_s,TEWEq)PG6S&4N'IdcuogoC4epqEQHK$[;1mXNT4b6E)t`_67kRj-jB*)'G?#P"dr-&<)?h'Dd+Op8\$nU2Xoq`0j+5:1jYT^76P\WAN1'd??=h%Ad'l5\*!'mc@gUHH+IX-s\BC%R3Yjq2_j6DKpA%(qD$.oX_Op@\St#jY#5<$q,r0l_is6O37.6AZmBQ0])_91S?=-CDfh9f?VP\k]@YWO98,S4j3taIA+i@C+u2+h1-rl_$MpK56l[Sc0`uSQ!):LhJ5cKsEXBL;&)EqX&GU?VTqYmA&l%gIDM&7MnF^l%fi]!V)@>kk:i?Tnj91HpS2Ml6U4(Hi5gApPE[[A@:@il\=R=;-tN.o+sh)$Mlj++PW[8KErKAs$]ZTg`_gMJe9cjTO-eW\'(-Y/Abcmi(fX%J%'l(-*k<*fB[m-dO.*?jG]:MWqD)&5&_76&.'#C[Qbip(L-Z$DT@eWD+`\T9%B<)cqGHAfR'^LCjk=/QpNl+HS]Be/WPk)Qo_TV8XClUH)L[%HiXVp*n!.Sn\;`Wom4.6,u$)DI/@hC-Qj(P1niI;e>j*(Z]Lfj\SNWl#)I42VMe_=cKF2KURrOai1JD--o>+"ck>&(C60pI7\+/k\R13"cd[IZ#IJsuLQHKi0[lWlGW_q5'0E&8KKMa94H65<3pW.iEJGUKf5+W(EJ(:Lf^SJ*_;Su<1T3,^;:AXc8<<.O`ho3Jg5'7.d:^7,O#FK@.c9+D(4-_O?+1%J35M.!oC/\jkPGuGNp:KZ:o;,j=&B`XAJ`j8\<8Y'RaX!p4iU*D9Vt<')fHue(fOk:Y'cX`Z+Oha6q7W2P.+Pg]o*R'nd[:NhCbATh.cWsS2P@,2I'XEqd.t17]O^oJEan\'a8Dgfj52E:MaqZQ-7.q6Tjj#i('mbf.1N,JO->_'0h>@\t22+8YGN')puL6oD;Ff@XFc:8$V***_3<4h?u]?U0Q[k0_ijZp(O"A3PfL^R,UYU7($/6E&fATTKQTj\:F3GibrU:![>+$r7/])X(Z/L!WK!uneXJ[abqYHu\`Kj?7qb+F@AYYGWfEf,)f[cJFEMF;hk\">1=L[B3#.NI/no"H,F+Jad-rb%HAP[82Cf^i3d-Q8+.YDi,ZmS.C5T%J.`gK^0aKOW2Hh@RR'%E#SK1ip-)Y$TP5;_&98_LukDUD*B*5JG&Iia52+8A8c`X4p;p&u,18tEDrMR;4i0E_<.4STU?W\Qp-$r(?a&/Y:^6U3ZW<'?e[Hk!YPF_,YV=cCPP@&pB#QP/%a2+=TfK9sGHY*Itgm`"1Ge7,gmcOT^5qHff#b^4$oIOO5/L[QN$:]A0?TS/_o/O/K'^O\_Y[,a4GJ\sN\?LtmcuH+KEnln5]O9+@fT,PIPW7F8c2!(V5oC!%MD]:-Zao9?6ro;me6SY=5`PsuXf6TFpim6[#VR6uS`W5\i3"??LMB6#<*#Fd6ZSB>d@Uf_RS"jScRrqs(^\bVRI#hW`#^7O;3.J",_IJ/MPVtHr8MH=mW^JjbOgg^\C5G_!d)L>HLa`U7P6IB&rPO8I21)K\F,5QHi1@K?LWSrqm!glsX8^JAc2oa.WZ9A(8n&Mt?16B,6_6Z>rWC/r_-;i7sd<2_"1p2gV;JkaWr9QZ=6l9(;Nbi/&2ik?XW5c$:$1p0K.p=86J79cZ6o6*5=aQ\C,X?$hfqS7?t*?M1JFp#1a[pkP&BaGsgaYtqT'eTra2g=^u7%4%$@C0ZeT]EE(A).Id&<;3m(SD,pdD;-?q@\mY?DE^!3.(4\]E4kqDie9r910FeuGgN\Sj'%#[^s>)QA3VF^GVCil2nZZmR/==]tV!jTqN(6YR'+_no6dOWa@c5DL(o.(X6:d@.cj]Xgj#c8q#">>Y^QMhoIZ0;Mp.75*CONg]K(R<>^BYKkNIK%@10U=:r8M9d9.^O)R@+_2FG.Ym_h7c1j,1OomRS>?mE+F86Tl[1OJ3^!Cb;Q,&oEDRKMAk@;UMnZ%UI\!ogr3%arq#19Z(Ecg$D:_,9+j1;mW/E9!I9Zo4bWr31(1?Dq"is.(DSAS]gn(i^"]CJI?$is*h.7=6BiV]]+m?Ca'\\IbhXQ\ngTUeaBb*am$*j<:L5TV%a'Dbo$uY=raTf_=^NKI1,'V7slVnW2^,0Lt9ZW!r(O8&0mPr0&o'thNf06M#Q5ZP>TldN.NBMNZRpmN.iRT/GU34/7G_OJ=*.e%jFmQ%=YUoe8W\fi\e\\5..NVHJ1,_^BWr4_8<1#(km3cU@OYRLC$P1:bR9(*8MbS/HHf5c@/BrNq12TJ39^6j?kLG3OWUq3"uiCH?b?>STiV+."ZP(;WAD`!f*O0G6Uk)TM-d^-IobYXaE:?BfYq$:TYh4cU@g@CXa#m#JOf5HI./9jYBEh'"[L3RaH-,(kgYZ1_nh!YY>q;d]l7UX3`5k;gm4["+,S3N-leo6?74>Q9(=%ZMaLb[EVG+U%W8a9tdLZ(r)eWhjneKphe.p`qsThhsJ"t^a[[_2NoGZk@/io(A;kSn4kjT0JpQ6UgB:Q'9DP2%d'd:B2Ffl7u`Rt:i2kV'n<*2Vr91&67oMK9u?-r!>pYe,mn*lkq:8sQ1Ph92P_;%=m#cKsr.d9qbZW?c#p#m2/`YnRL'S_pt!"k&bOW`/I.:mK#[W2hMTiM'-f(!itNF/g%=+Y]#El?PERT&qan5CL/bh1]9G2p-QhWf?E>LFj(Ha>r\EUS3.$H*[%B4)`Il$XAb$RXQS%OjCiZ,5&k)6F?;^#4qUoeE/B%Mc'&al?+?&FT?_a'2O"6k\t/Dtu7"b$@e)>YdHGA;P91I%TTd'9Z5+1]uiE!tW*g/ZB_0P^Or(@rD6`BQrZWLkB`4FLf!cGe>4F#uQ(%):YmIFn2fEBfCK<`:%m%#qEg>O%LU,R;!hr*&PnUW\lH%K:1:2si?2_Hje?iro;!I`]p`R8A$ZZjeJ,6!.lEpTOVr&!'50bNYAX)TZW227dgM/=lCXSDVIBo?KDH@Dc=GW?1N@ZfJUl$b]IZ\Rej2d_9'e>Ou(rKjI>6M/7Vl2j34I4'R1"^W\dsn@KFC*L\[`l]jWJN?>q+8,mr6p,E!nendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000019421 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 19473 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-setNextFrame.pdf0000664000175000017500000000433312063667552025406 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 266 >> stream Gatms_+I'L&4Q>Er52f@_.dMER3Z"QY1s`_"/<1G4Mgdl$^2]e6:!(I6T0"LHO_:m_t/=]JB*E3Nkp>@!D\m+T(1=CqgoN>acaJ4TZ@J"KsXC*)Hi?J=:]ZHmb9i&rV#k1ZVh(>p6$:!1U%q6l]$:Dk]KN'&9&Ke,,8IRU7> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001752 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1803 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-06.pdf0000664000175000017500000000573012063667552025773 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 807 >> stream Gb!#[?#SFN'R`L25@!_62PE$PS.DW:&(O]pdaVu8VEJSQL8KQi->'4VI^VVB3cLW,QmPWB-]ZN`k8mt_"?cK'qD_[\>UOK96\&!(EZj_#61PmW-H![;E'UjQ,75$@j`Gq&ds%kgE$4$a]B/+39=Y`?'!%iW<==e%I"7poH((\L#L(Zi69n^dCA86R'X&[jLZFF!rMmV^62Osrr="c;5b_\/"J13^ah`5ALF-L9s:7o:hb-i7dTl=T]#mI77)1o6R.oQ&&R)7GK&FMJNEp&6879/^V'>K?2('n34KSTnM^F%tbue]hdD2=Cgki!c'OUlIg\J=gQ#KET#isLE.(*-cu4LY(/Lrd&V6lSfp9U4bG%#PJF&eJRfJpj!)K0-WuHY@a#@RWka[!(T7dE@'sfS10gM8P[a/r`?\3qpendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000760 00000 n 0000001037 00000 n 0000001172 00000 n 0000001441 00000 n 0000001546 00000 n 0000002496 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2548 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-003-frames.pdf0000664000175000017500000000603412063667552026411 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 875 >> stream Gb"/&@?6jB&H-M+J!aKUfI!H]Z6Fa7>*C;bUt=W;:qJ3ZJqZ)5J)=fL7"jBiV&)kMEL/I;oA85ip$G)]Q9Re9SSnMbqs\JmJ5G_O5a]O+ItWm^E:@X&:b`Hd.GZOG?L!6!IWC8s!=9WLU8=!mTjKG%%a:qQ7;sYpG,C^H*+J2(8CcINFLo3;!4%<&+m@;<"U8YBk'i`pqa[*u_V]]G>\brZ="Di6s&T62_f9$h(7c2+*]+,;^8+PW=g4E*%Jor!LI)Y85$_4LjiJA;)LPYsGZOH:'7'M>mSB1&BS0WJ7ed#>ZejtrX0+tPp_FXWtME!Uq$GLMbk<,au`G)$u13JV^0k*[PQFDl2Zq`f]_F9t/,I=$l>)LP1AFl8]/l4$u]>ub#Pbft#F=8NM=LOeYB6g%YT1D$U9%dcef-W?`(>nE3)/L)'^)guccF+=.D'uB?^p,8T]d!scR+\+r;lt0_l0cRk=2nU+ofnj/7I>T0O0s=tU@u>&V(?K2UdJkcLmQY.@]RQ(]\fe/j(kbF[CP9YI62L%j(7U8oLOngBbrXPIs-ODVG"WZZ*R7;IU@TR\@AP""@72)qM*:@bhP0m]3T:1_:e`9iVL`QK/3WD:0HAH997P4$(il[[qr3+hi-1bd-bp3o.%bH&G.7Ehe/RfGfmnO:)`ZoaeOG.7jUXDLh2Kk^%.Q^2LL]1?W,9n[PGJ[NDF#2Gp22`5!.E/gF:_K=R0QhCHt_&p0ACBX~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001037 00000 n 0000001172 00000 n 0000001441 00000 n 0000001546 00000 n 0000002564 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2616 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-document-pageDrawing.pdf0000664000175000017500000000361612063667552027050 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 111 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4;:JPNa\iDl!c(WjjT5F95SNS~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001423 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1474 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-nextPage.pdf0000664000175000017500000000540412063667552024554 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 2 /Kids [ 4 0 R 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 174 >> stream Gaqcob6e;*$q9oErki$A346lXfX9Y=>U\Y<"s3pL>r_l!R'_Yl$/n3G%O"4jC@b;QZf3YMLnS``$42$t7D8SC7phR'k`[9CA-jHEm'6Ys!R'PpC$91f7klNHEj[Z(-c['!8*Olo:Maq/oE+D7/7YrhL!J$c\ppeFEc2EUendstream endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 174 >> stream Gaqco5mdZJ$q9oEhVg+fZo4>@kur%,/ei>W6,s#"$g7MI8W*k;n2GXm&ONjuQB)*;'utkj%"3\)8C/k>lJ9KBqQcVYQQuk_9+[e-bm))j/@0PtTqC!X`N0Kje]M-f*+S2.db.ouf\FJl!q.ipA!oSdkSq+Ni?,+]gtT]X'rB;(MZ~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000001114 00000 n 0000001249 00000 n 0000001518 00000 n 0000001631 00000 n 0000001946 00000 n 0000002264 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 12 >> startxref 2316 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pageInfo.pdf0000664000175000017500000000360212063667552024527 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 288 432 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 109 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`1bhi]1,Mo8a]6^W8Bo8uendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000639 00000 n 0000000773 00000 n 0000001055 00000 n 0000001160 00000 n 0000001411 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1462 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/encoding-test-latin1.pdf0000664000175000017500000000463012063667552026161 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 455 >> stream GasJL:N%0q&B4+(r#OYAWR;6[eEc7_.*fr$Wgp*&ONi$:L'8CGrlM&kXQ)iG;FQP+R!J;uc#Bn7pj@91E34)!bJ=A3*aD_YC58op/q,>fr(5WK1iefAF-b)(cn?3GQTs6d`\C[(n4g/#U)7n,<1c,8>ZUT$.>eF\O0.aG]lEusFugKGIKoHcl2s6LUG!t\2ed2PKZX+c]V&:ZGsbMfh*;!uI]$3PH&6CRTP"R>f@Ej2T((4lL:WLk=^!9UhoJp"E,sI)inA^l:8Z&g6[b9iMmiWVP1Z_3@5Ok&AG$7gU_99G'9`%')"a2$8fq'0uhKV",3E[g17PRNI>9Hp^9%kX!@~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001941 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1992 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-3.pdf0000664000175000017500000000567312063667552025213 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Symbol << /BaseFont /Symbol /Encoding /SymbolEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 386 >> stream Gatn!b>*^E(kq]0]YdmHM1r_35Y6nBUTE7"_l`XG2rCAR2W73&1?%rVAC+GsKJt$;(T6&)ocBWI'uGo^<*(l]j*3h.Gm=5+TW$W97H[*Fp%p8l29a"#&a9.CS#U2i\N\'QU-U0phThNW;NdFrN]81O6DRYalYT'pbfF8a%EKAQ0e#MTCk>P\3l&9u':aN!HA@paN5gST9m`r]acm[-D=^q4T7&\YFf[YHUH;BVk%\`(;p'dIWW.QPMO'a+B/#P7T4Jq)SZp)hX?:[XW^tY0mV$U\-]NG:M1':(d4bn@^J"Ic=3~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000593 00000 n 0000000768 00000 n 0000000949 00000 n 0000001105 00000 n 0000001384 00000 n 0000001520 00000 n 0000001790 00000 n 0000001897 00000 n 0000002427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 2479 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-registerTTFont.pdf0000664000175000017500000005460612063667552025734 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2+0 7 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'toUnicodeCMap:AAAAAA+BitstreamVeraSans-Roman': class PDFStream 4 0 obj << /Filter [ /FlateDecode ] /Length 721 >> stream x恪ユヒjロP盪檻テ乏怡Oタr+dミ M饅アORC-ル蓖ォZ陟T t4レサ崕as訐ニンセサヌヘーロa<ョZミ6テLエ[oVヌラユ鮖レル|:|r8カンク-ンp_コ7立ンユ8ュ[ゾニセソカv6<ョロクc~ウmロpホfヒeキn蒋ヌ?OカuウロヒセuzZ fオ[キテセ_Mァ6[悃-サE}Xホレー晁9マ<<ョ~肭゙ウ饂N-lA+[ムニ6エウ@';ムナ.9}チセ@_イ/ムW+5}テセA゚イoムリモ.н\~\~\~\~\~\~\~\敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮降゚7降゚7降゚7降゚7降゚7降゚7降゚7降゚7捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢?????????餔?餔?餔?餔?餔?餔?餔?餔ち/ち/ち/ち/ち/ち/ち/ちッウ胙@Z=上4ォN34x0r6C=Vサ=NHッ_endstream endobj % 'fontFile:/opt/zope/packages/eggs/reportlab-2.6-py2.7-linux-x86_64.egg/reportlab/fonts/Vera.ttf(AAAAAA+BitstreamVeraSans-Roman)': class PDFStream 5 0 obj << /Filter [ /FlateDecode ] /Length 17752 /Length1 28108 >> stream x慝ス |E0\ユユワ等ワヌ膀 瑞naH  &甬4! $赳,$"h@HP@以イニルユvラUPソィャ/サ*$ヘTL.ル胱ス~_樶ョョェ>飩@!dB+A9S棟゙」Z.チ1スhAaオ2CCテキha晤ル雪qルp゚QZ=oチユ」??ッ娶ア、tF?SB藍ョソ)k6ワモ」ハヤ-p瑜「テ滑ェ「Bt?# オ」モy@ロ^ク+。・;へzhy淅kケミカ]Gg。g:MONC n烟txク$亜ツ蚶v* 虧3|_鬼ネ.aコー若ホ>Nエ耘P-:Aセ!)$?7」マネr} Px4hフnヤク8pZホ5pケミ柝mOセ{ヲYワコャ庭0ハ9lZ稻ソ};g&$フ:,&ムa>: 途fコwf候フ啣0レfツ%スデhマ7XJオVセTリ $。@キ汰ト[X穆1|゚yエN5ィア8&3ヤフ%ニ'q蛾>6kマ雨ソp♭k[d爛セkュィ゚」x+ルW 補 V`)F6 bユ~」:Fンクr綱ツオS邂\K>eホ斛>ワ6ワfツxhゥd蠢噴誂m~テサNキウ"@ ユ$&ノ$比$エAフヨ{&カ0Yテスr="ノ@lq!CSS徘繖F[(v:D華フpウ号1ワムb\・鬱}チ?*枹(/ナ{/碪危> レY<0爲; 胱」カ>{メキッー 莊i賎キロB゙j?szチymェュrフ2ェGze)シ"S$Dヤe猿猿アトFナヲ」'牽O |フ( 緜1qQヌE+ト4+&Kクゥソ9ネddl8uニ5w儒藩z%ニィ+ャナ斟J畆zx賂Mハ-rミ/321 f\{ケ!CR仲?b鄭ュナネ濔マ鰌纖ノ犬「モ滑ヲ8ハモm'^鰄2スhEナdP[ヌカー'_ルケ n肆WオエャZンイメ+ッ\シハノ欺aヒェ7o~xe揺コハォセxト%ンV゙セ,hタ3%3V6mv孱Q5リ6・)N_ァЕケムララノaCBCP」BCC\a\xィMQチ4価テ譽J2'*6陛A#ポ Oエ5ンnP慰P4客アb木ヘQラ孺ヤウレ擲覬2ミnカYタ2AヨAヨミ駸ラャメ擱jMMン+ b}曜コラ%AW^ァ゙m/lカtオホ8bIニx収d"枇`古8?C?ヤヌリGチqミ,<[拉8;lVメシミエ mナOq[テ&g黍KトSツッ芭ニXc?、カ`Gーモ7$,9ナ窗%メ゙マァ#ホ劍)セvァン"リSsサaハ蒙カ5ォW遇kレィマェ鮭ロ漣抬W[言サク我mーS壺Nー 7*a<%リ薫ゥリシム.U「6 ゙8L「ンznヤ穂Kpア@@ケ}"ゥkミIX、h爰=T 埔ュ=迯ミラhG炸レS#pN ホ?{ケァオ&シ蔬ワキ゚*:漉hMァnタ^xサ創Rv恣G~ェ阡斎K品d:躊IリA玲ゥ6rミyv_躡nタw=@/@^紗杓v6メタォク硬Z- Xw#揀CSクッ渤ス2W;ィス←<虞gワrn5陌レホFヨKアT+ノsA拈rォwSシ/ツラ!}シstz]!ルワマ榕4コニコ斟aコ;タ@彈 A$旱 jフ!LO1。 狹9@躇ゥ?/ミmモヒ|ウ7Fケ}ト6;j3nエッW-。$リワFqニ$チルャ播H|クリddウ"ー_贍miモキー「x柳#V公gt 郡レエZュQkメjcx ^」tk聘@所&ケ晞、咲レjS010ln旆掃Θィ@虐フ@ フ@ ム 茯Xxnホミp寳截・ォ瘟B%竕サオレ'ワ<@キモV=F{ワア、ト?リェc>ン稽ウゥヘア燥イB QャD 〜|レoー8フ0チhAヤワッ'!フシCP為$O罘 モ・・RaaPS%>ク-k黷W。ニU↓7CM潸」●TXェイ、:ァ$4アャ!゚ネ゙ヲN~ョウ距椦5vdワン8p狢"シqト-Y技モヌ~4(キンS「M酖vミセ澆jpDNオQ ktエ9Mmハ&1クヘオ)r」グlシoー"死58ツ1リO簓エレネャ, pセ^>ト3>ト」x/披ミツーBWq81えh|xD ヘ瑶ト」?Nユ/zKニl|VXセ跚ソソ犒趣9tャeヌウO貎VSチャッーqvjテァ?DGソ=(ケオ癘ス喬k「b室\y閇ヲナ ンwxヌl"&D)χ+囎 6ェ(X輩#ハs」タGア :ャョ箭L竊|oユラ僚P?4ヘB乕zIセク?潅ノ<O5N5Mヌ・ク/%kー ┏タ「 ナFGヤ-Q羃蓑?A轗Btヌerヲ#e渫 ゙ヨeキdW t│zw$(ルュ![張ヘコヨトオ。沸メPソ`ャ蛋X「横Lュァセ」FMュd・攫ΚB。(エOD eJ浹vヌlT2ネ 給楪」2tカ%フLク殴エsレス]6^テ~&_8@{ツbムセ涸kpケNJ:カ}アィン75]ュフ7E。咒(昏ヘWl ンcm3ョ菜シ>レ。汝ーhpV姥仆コメq・[ン謝4>テ!gモツi8r$縛ッI.fケGシエDコィk O蛆?イs#p`%{[g-#<9エ_h旡w8eo##Oz謨W樂u[メ」}?c授゚セメ9サケxOィ.ッ}we /ケG8b翆゚ +" AB覗y看貽_クq*#ζト#!ノォdI0\ フ#ムaQe鰲Hセ松ムナYャuヲ遘゚\)ー帑o語 カ( $Xツヲリr蕚5ニ\ッムウサ癶B=W 11zVG$>2" Z|シ@Aクuルーamマェ差匕qマj?」胛 Wッレエiユ鼾ワ;[尹カnklレ:ンudナヒ#ョw/|誣qaンェUuptュ!&ノ滄M、Q@崋oCk}テレャ}ラGKチチ>。(""リトヤFケッエxオニTタ[{スFネ[。ァツ、賑of(Srサ'・)コョDト`/aタマウキOmq、箟レ-lヨ+6%ヒxエG」ツ@Wー ロァ゚- イケSサ'否籃'JモuP惺HV v崘ユ^HXルナ_fe杵濶uラマ棗ゥ5 堊ー 革@F"澹」スーDpL「ラnX*s・ェz}"毛悋9 Lユyチ嶼\@ Mv羝樅トaAミvQHx#沒0「Hミ麑ノzj禳゚vッr靆_癧8 oトヒ75#ラオ載ヲc匿Jヌ\ \$サ<|0AJ%n轣ER6廱ェbヾ「 G郢ゥ曽ョ艸^ワァコ菌、rDリク」尻課代pコ(@レ*s鎚Eチ蕷/=X リ、b>λ倶1-qッ堀 /`2リw逐^VサG*"ッネム頤扱ナo#H4$ミ、シ凱チ−0ネナD[/A>媚]Yイフ羹j7セウ栫&?貂砦)D3ァ困スオカ%ハRuゥKッオDわ挫スsjX廬ー>テMァOソールウァャョ傅r痾oホklツ刮アイ(j゙クオdユYゥ 啅9蓿aoフ^;}zbjsヤ`O>ゥmv?ノF-d#Q8κlヒヒチ、C」;9eph 患ニクタ。qY箚嗟スt ヤワィw R;E崟=ョ晢!pノIHッrーォt躬添 キ'ヌーL 將8eフ~゚Λz\農j蛙轄欧フム雄セ<]ア花qナ鵺ョ!Q帥Aヲb%耋ヌjxlテメ%ヘ\ィmOママロ>イ=cワeレテ _ノ=EZy?=「ォN"ケ頓w\エヨ%7春゙ネyチワ@ン女k+Y 粳5Yユィ bXdjQJワ「セf3ネ廾@フチセB@@ロp鼈ィIム、払ャシ6<驤%ー5。ョ"]ム痙c jd8゙ヌ=モマj'qヘ7nヨ 謚Zhラou~ヘ}ミiモコkクRmtUヘψ{゚xi.難ウe!@4=c>、カリ3.タカ>P 0。$5世 Iz/鬨%(,h樞ノM u埆n|リメォォn#:カbエ麕鵈oヨ^ミ問F慵ュ0iiメ.hンwル N 賃;ヌ3ロ> =|钁「8h9ォ割S2 Vx;[ 餃ベs、タ1フ「テル9絎7タi殘ァオtsキjeZ桟($゙Z@怙j[エレッエV譌ゥラ|.カ\ Z)キ/ィV$ネ]y#eノケSァコ苺t$フミY9> ;ケ:s?u絹e諱ホヒコ謠カ{跚_狠&Wノuイ靫Cマゥ#? ウ;ォケ慚テメY'<イ、Sv!!キ摺ル醐正ナシQ^ハ。`ロ`>ナ?タ`トZヌ侮S]2ユホ1Wヘj瀉矜0マ)イ/'トノCケ!ツ`y<)剣ァqクワ"a5威,o豸ノW9'NAォ$ァ癒I慴_' 瘍CトT)ノ炉ワ|ン紬8タ鹵楸Hィ6ョ#ヌナfゥルク<->-#ソ尤!H$誓&゚_ #H~~<域<ワチ瞞2iタ|g ヤル傳eセ房ヤ9。2サホA]|)ネ(採湾0』Zモ゚$ケ$)GZAVショL`rクx~>sムチト&ノgテ廰OТTvェ、ォGd`クl。IPナ`~エ |7Q屬^懿.ミ{TワサKコj:Rmヲ悄N$詰Q8ユノ9$5拒\R語RKゥj9ラ -QWpォ、Uホ良窿ォ$N アr2"モ藝J<_Y(/iチロΟウqエIケ瀑x9叱エカ廃セC&?ン/е ワシKマR?Z浜エ使シ#RK\0?DヲスT嵎゙ーvkモェ0ェワICクaメnシTホ弼+8Iト願ト|&ホg燎b .来k」b ゙*4Xヨ犲mL獵ハオ榑ョwホlo渝マ~+ qzヤ[ィEッXRHモマミQ#、ョ+Ucu7ニセI%ュ適0ヨn_ツ#b]ZテイオvK+ュOタ8Oリュン」+!シヨホーzニ(1」|ミキ?ト'ヲVU諄・ニリh腕鞐LW V1t,ホ0ホ妓]q插萎7i塾ン6 ソ誼xKPHンM弘ス|モ/:Q^h?yxSンlVホm&」姚ニtKィ1ヌ歪 5Y b, J諏)ニィ=*8Xンー|pdャ(Fv3尖ナタ1Xスix、UIノ/ルxwレァ゚テzf.、LdLミニ|爭 F/ケS!#ェh」!,メE9 lQ-ヲ^ r'_ウカ15リネ0F泙惴9チ(ハnp{糜WPェァ飫}ー,@R(N萋ホ漣ーjチム\ c、9FqチCクL慄 |スーネ飆I)lォミキスルロ|MマコトJKk}貭ラ-セ!~」遮挂オ'ZZ樅Nn彪旅ホ\+テ;チMョi5ヤ&i=|ネ7ハ=ハd萠.4,TV8I蠶ツBモUChトネ慶ウ牛oA屮!i U aA 0qーd\。+=Nンシュ}キヒE|ラG_Aメ4躪X|bヤx「輾ャvェh"ヲヒ`!簍Oィ=//レサ?j殍Wソ「畛ヘ '峺6|!G氤ン イbaQIX@ ヌ.5)繻フG~UP7J 差7チョ鐃 Mt妣ン匳!-r イワ侮+フ借> 5N[,|ャ滷ツ$ォ齋ェ幅2x゙ャ蔭旻晟ァ帷i 」#澳 Mrハ慙zュエヒチ0葵i.ァ廷ノ8サぞ戡キ#サw贊ウモミ」ッタァ颶s蔬。キ゚:tZ l祠3テラマ椰Nヨuワォ]メ(諡ス&ニヒモ楼lム」>。サミl」tツ]!イFレソ992ユケ咽#脩ツlイ軒&宙$N讖ovp−ミナ.桴「E< ・n?J*N@8ν箋,4],衞ra)ZKァ%。^\!?恩鰯`ー`R`ヘトM|,セホタ埴゚@Fム8└ス4ホw( [@U!↑A1ン"メ カ/xツ/dQリ1]tG賄錐U託ス. 勳<;]ョ%'゚9v攴枚闇DN8俸 イォqBD獏ワhaー圖fs套tユュホ粫sヤオーホ=$,Vィュ\"!ネコ-K<陦、 WU#2'祁ウ\「Krノ遷mp兢覯ワ通ァIeクa1ノ怏2D主OB:゚tル-サ敏鹽」ロ6マ ゙sフ・ワ"PミX^dロGアm戎",~ク;Qb OUu*W・ヘ{ムモ_哘セ曼ソノ>"丘nBZ),HヨK1 ?敍#'ケーエ レ8P石ウx抃マ zM レAラkエ#o・uネエ1ネwワ砺ーケY遼:キV,セワ >蛙賈8フ[/yカレx*ケコC饉'カ悪p澳レ アT{/┥オrエ|(X4:骼 3)fエ゚Oォル\。o゙.餽A闃ミカPxz゚gェ倪Dwョアヤネ倫=トs閖|トK ンセQテK#O_スz.キクP;ゥ沒ナ栓キ/騰 テ4ニ#シケムzワニkァEPサ MpdZ;ョx侠Vコ゚ム・\5hEミカ H粘<ナミO1能暈tホヒセrホモS&簒 鰰,Nロナァ゚3練?匈処dKタ供 (Zu~GfヌqA^onヌ[`奄dnシヘnネa梨ワナッSスEKfL戌f゚橸ネョ/=tモスヤ0n゚>`9ニンオ}ナx貰3ョPsz霰k9ヒ≠Pオ; ヨLJ」謂ワ遵紮q{サq}p嵩統2堝ル-チ ナS槹「7ョ/テo韵5翩Уエ|r=Dθ1ワ逖 !AJオ U*ョハY、フy栖8-<コKヘーBロ%~yヌ纖゚フonムヌh7エp|ヌXj銹<イク匳ok |ィ_Uιj沾レrミェ院リOタk(Xーb」シ_トMh戯<ゥr>A6Y ルb擺[ヒ馴ノdサセ `ヒt9q3kgロA滔 キ3ヌル讀ォ+タ=栃ヤjuワO&絅薙zUt<百Vヤワ践>i橙ハLレt~6ネタ秡` Q>セヌ-艀Ld{I蟶袗タ据$ヌ久サ+#^゚カヒヤ蕚]QエュhKソレア.?+ラスホサ P!ソヤイkOヒ={6キiラエ寉セ{Gッ?ミo;:~ミ黛ワ]_コ{.MB&$蜆~ッセ~Oム\H1魄sPセ麾悋偕}0x3嵶カvCホ2フLVBaa}ユO%)pイZ、MGルFw3ナキ?Pヒチ翩モ_ョ]nw鄂ワ持;^ロンル$::wO&_p鮟ローハ| 昜,(ウZャアvmリXン誠メ~ウ~[m「假Em:嶂,h;リタIネ啣j^E'/Yeォ N5aル2ュl+テン{析mヒアリェm: キ8ャ|ラ刄ハウヤxc{甦bワ7ネヒテ[ッkト'ムo噌F區尭We滞バンマs*、メア\シミ_榻チ Dョ ォクオツ胄&ョUリ"?ヒルie3U#ア<ュ 涙ニ2R`\Kヨタ 1アYレJカHネsツ1メ丈:汰ホメ/-メdz8キホCワラ;゚;.::ハ衾ケネホO∇nルEm(5]5~キノ*x7ト^D]` ,ム5ッ、ー4ロ#レ C$ァア)トEレクX%dウネイ歪-9チ"YYゥ」纎ヲ{ヤィ+7Xq*。ロ')*'ェ:jCT|^嘱,黐Zゥソヒゥ巛Jヤ4>纃U/セvシヲセy哘常=~|フ%K'kZ/ィハ>ウ擡,キcラカラ溏l ヘ廐齟w1ミ焜カ剴wカ+^9Z珱搏k5ホ`5咋厮溘#キ」翦vZ{オ[&vgF咒ネ1 ィA\.-覧テレgケ。チクワエワシワイワコワヨ`o ク`スゥラ6ホレヘ殪ルt爬リョ}wレリF>サチWソ~スoカkkラエoチノ_タテXフ<~q7潯c詆w7fカ嶼絽ノノ励Y蓆粗Xッ\Mキ「ヌヘソxNts<)Fッヤ」ョ 覡;uユ=r 7o瑟魑n゙ァンイ>靱!,yP処ナン>クb紂キgカE礇o 輕サ「因ョ,ィP紹^|珸vルP紬!タ 、ノワョ恃TRL; !フ/B,? ゙Gs|vP犀柤u#テイカ?\:アニg`09jキ捫ュ(Si 0xU陣スbムUO}3マS゙フ *oB>カ殆4:ラモ|,コスサセ$%ルG:ラォセ ア4Aウョozヒ(:オチjー!リ8柱CR、2Rii4ク Gqqj悖欅「#ムルマ7.4.,゙ロィ6麹&;・絅U4#13ア+ $!Jlb傀纓ヌッ衣゚=゙枕-、メ_`饉H・?ネコ)fッ];w牢{~モキ+J゚-\オセ艙Oキ・G1粐ンY礦~Oュン~,2オヤヤYwOハ恩Dオャレqミウキo(トツ=ルB#>)7ゥ2Xユnホ&4ノ楫エセウ粱吸|・i嘉w$MRbRizbテ却ΩfRォッ槧ユヤ$ミ゙jl[;eポsヘxエ鎌|A_オ^ナ'砦?MGナ|ヤ ]」蹄([嘱ゥg=r絢ィレロヌセT踴キキウp醫ラvs キレ]ヤァ 7-@"カサcヨ@Dhカ!$メネエャハa;ケv鶤$目Itキ」7オs萼ンユワi 蒹ク-メ"モFn7'S Qリk@ネヌ Z+臥]r*Jナ#ネ>Iヲ%タ,椎g Dキ<Mヌウネ,>G.E・ク恃2ア@ョGuク4ツRq Zラ跳`ナVヤ換p[ノ入督q溟忸X~CLセ-蒸頻臂o脯}ok゙ :ノチ[mコフヲkR『Fサウiz]v坎進エ.;ソェヒセ」.ヒ=魏斎]ゥ 枯&&|ワ= マ葮{E{0A鷲O]キホ烈"ヤT5桐2Uキzw0MヘQ+ケJ。T]BZ",垪ァク'ヘ鶫、[=;!D"A 恁N.。、8 N#}Oノナ恥>Z#、h9V嘘テ 柁疆?DNォコワ痛サtュクナスM>?0U ツ4猜鳫_}y皚/ロオテP啖2キレHkヌ|ヲ;#チ摩lwヲ@_6ツK$佚トニ:リh)ホヲィ *ィ鍛EJW%2リ$郢[。u疽場ツTw,]{lw,3モ・LY倖ケョ,Oェ<ッN5Fス、N緘H3ユRu!^ハ/緋ヤヌU鶸N~偶┝Aン隅/{、gユ65X%シ&c$Nチゥhチ8Z馮p僥珮dィ0X「e$Sノ2秤キiオnn!LgIモ裨ハ,C自ハエ/7mテ屶銖n魏駢ヲマLキM液'ノJツ`ニ|ア>pA;。攤_ヨj.炬マt~ヨ&nラ&p9_AャラぞD ゙+ノ彙Cハ~,fYL6」 ム遁nエ☆ァ &ェルp^アェuビbーAtケx^ルzス_cラツキ~ノ]R鎗,ャLV妹碧ツJ滔イク."AbULVS、)ユ櫨NUァ惑+ウユj妬i橡ョ"タ Lモ`6Xー撞VチOuニ@s%EA0w.!^惨「ユ(C1ヨヤマワマ箚 ッ嵬%Iツ0uaq亙クyク%ノ昧ワリヘケ央w{L6]ノPヌ峇フYキ-ン搾讎>6 6Cf;ヘ8ヒ<ヒ団+ナ・\兒n.キリ菁貲矛鏖e溝航ュiュyュ)・ナミbワj゙jルmリm|゙シ蟆wカマlキm% cチ光U゚フ^マp屹l~hSEv~Jク6Rwワe/ン:。1沺メア儺ヌfB゙v茘」@Y゚テヲ.G'ノ~A&蔑徹鳥A゚チz鳥キU&7槊%:ヨn<% ルb'ArルeBヒIハテ ニテア 2Kセ゚P クRRタs裹 Aス企訂无ワム仔ワムホセ`_ヌナMロ3宋5_Z`qトh%ミ 1ョp エソ。8シmTT!ハ7ィ蹇ョアェE宛橦ヲ9ヲ裔シラNムナ 、畩;嘴af4Gモスフ梧#イ4コ {!ョ倖Tqリカフ圉~」゙_]w5?ー醵宀Oeユ髀スカaァ゚oゥkョmケ鬥譎A出魍剏N^ チトXロレτK7Aュ!ミ?b@キ: d/碇猴晴 _」E28,シ"(`レF親ソ・鞨@ァCレ闌エ(0フ9L徃廬ヨx腕G゙霑Yャァォメユwキキメug框5t 笨/eT7鋺9呱ァヘョェ=m}譏沺ォx|霽+檢yフkモレxPタ絨梧M歐oゥmョロァ麼=ャp B!(メmナヨ #盥l7"Kィ貧」エ橄8wヘ.Yァiwl ーツネク|P.盟\XБ,ロ孳p.スロ、 イyロ}モ鄭GヲノsD=9ネヤ群2[サ3Bgェモ蕘-」ツt8~ス撈゚垤Q[ォィルン}/w8K エヤ汝|ュ壥/リ?Tハュ WE。wト」h熈H[ム秕h%翌゙!a0サyら2*EBミソ 煮疉c;ナpミy壯リヌ:8VB゚psx~ レヤ4 K振X>ZQュg3゚>S燼Gpメ縋ォ0レ。*騾s6ェ袞麋。レィ価|ヲp。sJ゚qBコ レ:烟/・ 銷|tミuソ` セ=k錢禰ッ;:チ Gorテo_舳鰊メitじ_イ'h?2」*掩ツウCI獸:4ホ#5氓f ~qG0Oマ>ネ >3ムf継;揖ノ1r棟硴 c刈 ルツ」「Y|Dシ&ヘ年ノェ\'Eヨeョー址`ィ02Z9ニニFヘ覗嗜レl3O4ソo カフオイハヨ'lf[ヲq嫻ソ舖タatヤ89ホ9yg茎筏リyモ7モ ゚ソMkンe{BFs`B默タク#Aラ? :Xリ^料kスkwxLx勸gィMユI:籐ホ|7\#゙)!ツ檄bs齢后゙ソ、鯰6マ5tソ逧h轆\ 蝕{ョEk %。<ラ22ヒ枳WV{ョMェヲリ ワユ)ロ<ラナィマ5Tu也奐h轆\ ネ_-\吃夛ケ鳳マオ撃k=ラ檎レd讐ニVU/ゥ)欷V迥+学%'%・ク.qムソ8UWSRク チ俵Y4ミ彪Q睫・スj]ケ%オ%5 KvqM/ゥ)tVヨv5ムレ0 キjAaenIEIam洩ミタAI<奴'&オネZW。ォョヲークdAaヘョェメ_ホcRsJj蕃ヨ妨Uメe%5%o^Mae]Iqきエヲ、,*+ャ儻亭ェォrV.qU琳ヤツェケu蝠蝠N N{ヨ封クJォ*アツ「「ェユミ掀ィ+ル+ハ徽*ミクLレ#"&+vヨヨVpEP纃0 、楠ア垰%`Ot゙z%aaUyj%躯タn\ユユ`ds+J掏仆汁ハ \eオ0cIeoョクn/vユW{P手["tスdkォ*ィu3ムQAコ*ィ幇vャ.,zpXYユ蕕{ユ  YRQェ」5!テ9uJセ+ojf原ワ WV+'wャq綵iyp隊囁?aエ|ネM將?ヒ55モ6e北Rヨ拝 ョ嫌9ケyyョゥケョャノ9ルYミ5elエqYSニサメaワ畠ョャノY0iT6ヤ3UVF挈rFリ p尠桾摯?+チ蕗?ホ 逃ケrメrウニNヒNヒu薛ヒヘ劒s激iァdMノフ(3鷲ヤ弸ケY''タ|hLp裼ヲ才恂;)|8Hホuア.K佚1ホ寳慢JマハマヒマヘH姚R検2u2衽エ)耡ウヲNq・g)i鰮:n@ハリエャノ ョqi噸ニg舫。ン<舩ウ1%#7-;チ風16疑ウr3ニ豕楝{潺6Cwヤ)ywO韈剞チ@io,テ倦?ネ・膂ヘヘBeFV^F+-7+召杉;ミ・犯iタO*シ)|ゥ敬ロ/オzムムヌe、eテи浩e奮クィ、コ殊キヌネu'ノェE俶ホヤx|%弍゙ニ.AァチセXメス\キ禾燧瀲ツヤ項CTメ挾ツ┠ヤ・控Qァイィシ黙;テU檍W[Xタ`TW/刔0ャカ ベF 虎50dQMyクWa=エヨ/Oネ鵺メ囃レjX K* ╂54ョ1Lハ+KォjxHg+ェ磆・uョylb シェf゙タイココ演-8ラ a クB4UA頂ユr4複:脾qィナテ9魴ク =\専姪Z8jP *D Pエf。J?ョメP|\(キkョZvWウセ僑/輌。鬯G!\蠱w%ネas.`3ヨツw<ホ_ニ桾x陋ヌ Uツ|K:W){ZメアFP襤[テュ蛎YノニWウルj=ェ`ヨ:xVw倡。ァネテq忖 ォ潅ヨ.b@O}v エキ施恚`d・G「qーhフ#I錘-f躬W)ミ轤Ωヤ6>ァョ*俐靂^サ!P=、ラ。E#% b7OhK5|W配g76ナ撃:ヲss疂{黼ッ!$0ケQ餬タィ.,bzPスル8ハャュ'E゙kz鬥士=綢B鰔L杰YWCッケlZ晰/鍠陲3fェ⊇Zfy]s養クレ[柬/輻lォサ4コョ裳uSエ鰯cチチk ・@C モヨZ6ヲb1ヲ0リ决b>(b驀z1・キ緩E猶ゾフ0.`:「ヒB=# aヨ*#コ衵モ/us癡。ラy,「カW_ッスtsュァ9ホナ.Hkョ3ンヲs、恪+72・3>」iQ芙ヒュトi% ゚R 鞋チュ7橙eI 3广z6敝-:カ髪ナ=d゚Stハォ挌0K!逾ェ和KeVル#・ィフモVモテ2-メuリ 」/祝#M=}]q/M+dr1 ァ/?ЪGl\ソ5TツZミk^oKm遊zヲo)サ耽彑トィ*f##コ韶;F゙>圜ロNv盜3麟~U|=熾ツBxZ~ョ腹ナ跨彊ノ 冽-ムS:゙゙bハ亶wアsュヌヲMZWt萇鰌zヨォ7暦トYW斐河ヨ2/鼾ンンV邨(唔Tt"5スgャf|マHM緒阜ソ}7シヨソヲjョヌV<アエキ& k*wヨTクヒG3 テフeマイヘケ].<w蕉縦IcO頤f3燠ホ8Mcs駸萃7掉エミケ]槲MS`.:6ヘd02`カ<ヨ3力=Zウ癧硅GG桁吠pOッヌ#圄陝ハマg6DヌQ\tL。スjoャイD/f乍.譟炸J,寶筺タ8Eッァt癨鮹4朔夷L eウ;レ: ホ9ミ/杖3采ャc;ム マuZ2コ$t姑イ??寓1@>テBハL`Rzニア$ヨェc6ユ#ezン=ヒ@/u<(ァwAホcgテヌナ靠g筆フ旛ォ;聘 峠h」/朔a*ヰホ朮.R~fwフ!奮契Tnq R紿゙)ホヨ[:wメ/言 ニゥlヨ;ウコZt}フbエ寿V欖ラ{]'イ{pw,」遷n壯ムゥ4ニザTBヲB諭夂{l柆K絵コcサd=品ル/ケ2ルb僻d旛ナLfソ=楼。a^9N韈ヤ.フzラkG゙~搾ミ銓ツ-チqL浚=誦q?マロソ2 ニアO]ノ{f吊jマ\4。マ鞐x<サOソVンOォ{ ヤ3僚Sョ懾ソ;f#コララJ=3畸無9amW未ヌ測ョLe{レ゚ユヨ」鋺ッ銘ユ)ォ瑚;璃gイフ。ォス7]、サbャfア_イ]ラyイJ_スァ/m_レg表モg峯歸爭?ソノサレウニ*gヲ蕁マシ5ネサ^ 蕁){カ蕉サオ笑6ヘK)踞タシリ#*棒 dッ:タfャj,3。/ =Y!"襟ロQ3コテO;キツ}芳n:ネマム荅dc+ァ咨C#74ソ「ノfVr=嘶h夸スFセk%゚カ談7ノ゚nムネ7#ネラ鱠ェFセJ&_^ノセl%W纒ムネヌ戳~ォ3ュ茱モ。ツG9J>L&h萬56矍`/9・孫5芳゙ヤネy]#ッi膓骨ヤネ+9a#ヌ」iヘ+BサF~sl酒娶ネoVヌ~-帙セM嫉_G謄yケムネK9ャ5rィ仂`&沛鍋リ逎ノ;ルHソIi9作ユネ;ルュ組w刔g橡.3yヲ亢A慮VイS#;6 ;4エ鼠゚ l/&ロカZmdォ<・'5イ・ユ$lムHォ俺タ坊イy添リG6卷7ノニ ッ5イ。y鴫イa゚xエミ<4サヌ」ノcYソnー^#竪⇔GモネレG ツZyト@國。ゥ4ァ」ノyX#ォWルユYe#+5イB#ヒ5篝ォeヒЮidル2P1iネw ムdゥF防dア,2着*ゥラHンMR{屯ワ$゙$ユゥメH・F*ツノ冩K跚喪鵠-#爬T#%)ヨH詮詼、p)クI39ケG#ウ52kヲ*フコIfェdo0#儉ラネ4<-昜;Iカ y$ラA櫁#ワュ飭)働ツ広カ値広'421ヒ*L!Y!&!ヒJ&佇x硬カ柱V2N#cケツリ$6穏52F#」イ 」莪Q.;5メ$罫゚カ髄&2B#テ52lィCv b:ネ慎0トJR dp(I1台A!Y# $)ム $僣「 ュdB棚~ムBbメ/゙.&v-ト・滞hmb,$レ@「4ゥ :テトULツn単 !エ路0p0X#A7I`: 鮭?熹檳|a塵qjト。菜。ゾ#6ユ鋒ャヒ挨5b2 &。キム4「Z欧コノD,&<<腆Z宇8クl%H#クッy テソ鵐ワモendstream endobj % 'fontDescriptor:AAAAAA+BitstreamVeraSans-Roman': class PDFDictionary 6 0 obj << /Ascent 759.7656 /CapHeight 759.7656 /Descent -240.2344 /Flags 4 /FontBBox [ -183.1055 -235.8398 1287.109 928.2227 ] /FontFile2 5 0 R /FontName /AAAAAA+BitstreamVeraSans-Roman /ItalicAngle 0 /StemV 87 /Type /FontDescriptor >> endobj % 'F2+0': class PDFTrueTypeFont 7 0 obj % Font Vera subset 0 << /BaseFont /AAAAAA+BitstreamVeraSans-Roman /FirstChar 0 /FontDescriptor 6 0 R /LastChar 127 /Name /F2+0 /Subtype /TrueType /ToUnicode 4 0 R /Type /Font /Widths [ 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 317.8711 400.8789 459.9609 837.8906 636.2305 950.1953 779.7852 274.9023 390.1367 390.1367 500 837.8906 317.8711 360.8398 317.8711 336.9141 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 336.9141 336.9141 837.8906 837.8906 837.8906 530.7617 1000 684.082 686.0352 698.2422 770.0195 631.8359 575.1953 774.9023 751.9531 294.9219 294.9219 655.7617 557.1289 862.793 748.0469 787.1094 603.0273 787.1094 694.8242 634.7656 610.8398 731.9336 684.082 988.7695 685.0586 610.8398 685.0586 390.1367 336.9141 390.1367 837.8906 500 500 612.793 634.7656 549.8047 634.7656 615.2344 352.0508 634.7656 633.7891 277.832 277.832 579.1016 277.832 974.1211 633.7891 611.8164 634.7656 634.7656 411.1328 520.9961 392.0898 633.7891 591.7969 817.8711 591.7969 591.7969 524.9023 636.2305 336.9141 636.2305 837.8906 600.0977 ] >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 162 >> stream GappV9+&O$&4H6pF,+f!LQ'\FS^1J9>\"L]n,O@1R1RU@(QM4O/o((E2'J81lh^gT'ZUT4)#=A,&87-2HM?ri&Q)+N/JE>ludEpcUEendstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000223 00000 n 0000000386 00000 n 0000000706 00000 n 0000001659 00000 n 0000019585 00000 n 0000019890 00000 n 0000021522 00000 n 0000021658 00000 n 0000021928 00000 n 0000022035 00000 n 0000022341 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 22393 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-2.pdf0000664000175000017500000000567312063667552025212 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Symbol << /BaseFont /Symbol /Encoding /SymbolEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 386 >> stream Gatn!b>*^E(kq]0]YdmHM1r_35Y6nBUTE7"_l`XG2rCAR2W73&1?%rVAC+GsKJt$;(T6&)ocBWI'uGo^<*(l]j*3h.Gm=5+TW$W97H[*Fp%p8l29a"#&a9.CS#U2i\N\'QU-U0phThNW;NdFrN]81O6DRYalYT'pbfF8a%EKAQ0e#MTCk>P\3l&9u':aN!HA@paN5gST9m`r]acm[-D=^q4T7&\YFf[YHUH;BVk%\`(;p'dIWW.QPMO'a+B/#P7T4Jq)SZp)hX?:[XW^tY0mV$U\-]NG:M1':(d4bn@^J"Ic=3~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000593 00000 n 0000000768 00000 n 0000000949 00000 n 0000001105 00000 n 0000001384 00000 n 0000001520 00000 n 0000001790 00000 n 0000001897 00000 n 0000002427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 2479 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-linePlot3D.pdf0000664000175000017500000010400512063667552024753 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 32582 >> stream Gauad9sMTs#9fEj1kNXO+7,c\0'#rq!7tZ_o8hSj0/LTj1kTZTDp1On3:0D?aMJ9q1\,^nKECi>^r!X^SN%Pfg#H4s7"?!rqeqZj8\`2^\VU>O8o$:^]+2P?iQB2oUl-\Vf@fVnOGVa?X;Uiq0uiFJ*Y\o5MRF640Rdqr4da\dijMGO8nV5,\fMloCo_Ll;@T5s+,[uG;g2Td@6gqV;(qBX5RO)Iukc:8'(Jo+$]bLTE"OJaT!%%GPq5/3`#M'J]5fpr1@=['K6TDikN6UYic5u#NNS6IW2E80`Um6%p%(Xr6)opeUKm_f,YfKbOhUDJR8rGjdl4*s!hhJrg)H/j8+p$XO4ZO]<:OMHL60*J(M[<:G:RsNo,!LnFMS(e+L=**e/M+rcJ.BMl5aW5C3Y7O[0:tEShnZWZ8eKar`jbnPrM-;3*qkqUO&*pVhp`VPcG(qUO%Os+SW$4jEfOYF`c0n.gArHCFH'?Tq2A?_6rSV\q_tnnDk8H>.I"oW+n+_]iagkc$S7me"A>]I`:tn]2A.(n7^idr.#"k6(AL62XF]r-XU?5/P(VJ=dA%f8'Ab)=[76qYJqD-3K2-HST!AE50MFr1*k5?[pP4bHH2l1!Y1.&N"mC56(Z[q=A1EWW%fc(Oh&7nC7R^=i4>)"'CKZ.i0,.E^ZK7r#u(SN/q`pq`gLb^R>Bh21dLV$:=`@r]D,3h,j#^8rQ=?.s=F*)SoO8V8TDHd=3/W],c+$Uho`.g)Sr[o/VZ1=6RLr\gcc(etjXUVVa2X.A.J$q;V@'4UN(%s#E&EB2boL"ek/!'O'jCJqEX`Hu/3&RPGCsA?'Se_cT'^iig?iTH?IZ!hAPpJ;Sb;pC(KRbM9?KBMOf?33$tHF7jK?KjX-i*0-A@r'+cQ'p9eWPW?X@jQigY/]t9X^c.h4P5dqJie30)VBW4.!ZdbMD@;*A]XfuXC0*"P^0JX;h`\f<&be^SD%[MA-!EKe)eE*9F]dn1XT;F0YXGT&)o>e4u@Cq9pV1d=UL[b0Z:<7FtnZ2.uLEB1@l]R^,suke.Su`II9s*8rZR'@p@")1mt;)`W*;uU#o:b)A614L"8)+&0k*RGOTZQNi'NIp`?ZXE`>5g`Tu0F-o3lh,WJLiHs)esFu=u79H@?djhZpM%=!-nEn(D&4;cWjY(Z(g`Nc7LCUuX\Of?33$tJD?\Qt3R@p@")P^0JX;[%C7gp;\9N5P&8_\M(ug)!dDI65Z$TZi$/R4=`H,lG,b_JC&&nINUiP^0JX;[)?/eogKKJS/=5VPAnsr^]0Aj'u$.es(Ha,?'*EX.PaD&lhZk/!'O'i&6U@n75%V_O;Km+@IV:Ng9Li-=ODKFuPESBlXXaq)U-Z%=!#;Wc)]C__[Zq;@@@*VF.U*ud;MW6EJGC_[pc4Y[sgN!IBaP\Ir.f[@#nAS-*rX"]K@/>jg$UXL&D[WZIiR6*L9Y=":Gs$?g5gR6*L9<>`_d<\b]0>`D=V@)j%JRG!_)K&c)C^K3O+pT5J]=t'mMOg.93]$/sNetAML:lImr(K:+Mgn@/:->I&ui->7CF&?>UeiX#!%#b_!*EuKSU.2![_\C+*E'7(J9hDEl`th[C\WO"Fiu'8b4Utt^d^(+PQk'YshqFEb%f#Gl$+_"9f3i[7;_Z&0I8S>#]'F7^`B9'ZMnTKm^:^O0'F,<+R7DV?Do,>=ZecC-G,F'EM4b0!>N/:M+,f0MKT9h';]:[3`)(*EuKS,"JL5Np"<_+m.mKY`21"3;H/a41(s/b`$?A\g\&A(4'R`:#R[\N=a)%mutIqMn7.!aAu^dP9U>1kt"lc&hDV>2.[iqaB$.K$]jB.q<_93iWl^Z)tU'b%sDKa0T=+mhFUX6_jCQKT>&L2IA4s0NbfFm:H((V8B.Y;@49TT6Mos91aAu^d_cYrE9tVC.,!JtTQRM`)R6*L9]Hg@q3QFQ+=4G>D6KZ:)rcd)R%0MZ)M5kb094n_.i7QPa7:g(SA?.DC@4\sX_poSf[WH=_R@,)K.X:s%G6qBn3KtSd,[_A1XqY)>AnFQA$H!_#g:g4U,"MdZ;ha]jSF!uf2G,oR)B>TCf-Ug*SDnrf'jur2%5LV9[Xq84uRP";43gmfd[D?(lQ@IZ=k)ma6&Da.J$q;[L0ho4eI6>f>N\)_:ZQi\.J2LmXFN`9q&Uj88'j,#N);:b-b`6KSL+sRlR'0Rqps>tdZ7^?=A8;`Q+msqil0)Or.`n6/a"7_%B<,WbA4eOL@49/-YEn[/26L#65FIY95_qt)Pue]j"tgYC=Y7+ab!_7`$&0l4R>H/G,U%ZB6'I]Qg&+4sYpVU.f#&_Akoi\#`lCQ'2J@-o7Mc#4#U@a;ShTGan8Z!KMlP"FaAsFVX8XSYAg),%Eco]aAu^d;]J!uQ^]^WD!]fK1,D"t<<(/stU4@KG)Yj*Wa[ufP^AS-*rX"]K@/@F7H7bnnF[WH=_R@,)K.Kl>h+u#,IVGY+VnjGV@CKOIKh>2?(#*SDp\"&htjFNO\ql-Tj!69(-6`HTKB51*s(7^`NWPi=^o00NO8VXT_I6]7sSU"4U=?#3H8%&beB:em1%'6fk_NY7`O)5;B:hF<0[L0nh``d&E-lU*9Pnic5/!T1Ei2C8"Po6XQOQG\&ud1)AEqO9.!K96d`7N3fV6r/'WpugBmKg"8!^Gem/.tq-N.@E_$&Halqk0E%rE=ke7>:C[K;ShSQIcXN(:h;6^8(]Z$6U-W\SW?>D$?WiTiPVF$ncLbkcHu;4!+Zfc!8++n5J2`34_a!d<92@bfl)`'i:-SAXU>+lKL^.S-!J.4EPt[K]*SUAp.^c0T9GA2W&FO2^YH+ULT5)bj"s6/]/6"&$01gO^%:%nmk8!$H&6/39lQf(d!`!XC0*"P^0JX>6W%A=a%Ik9M=:fC?M(6^J3"WGQ)im,?ok19L0Aa6F[rOa6&C6.PnCU>6S_4E[8KD&R:ro+2Ad1'89qEHM:f;[L0nh`bJ1!>`Hk,@)j%JRG!_)!XbHZ4$-LOWA+k7\Z0=GR@,)K.L]eo^=hW_Y/Y""gWf&T5G%5_<[$ui1l!2UXBM80;?#3H8%&b<'i8?ON(:q>A!R0)4X`q(lX-_8m)W49(fQl^62kUmXtj$p:hF<0[L+EF^d8*%A7e=9!65)#iJJfUq#gbAlVm)W49(fP^_;k*Kn(rg*X'6S+gR@,)K.cB?[5D!8tPgI=7-l=%q'jFXLAk09:_\gBk4nM\;0SYW?*EuKTAk09:R10NV^K)Xqp_!]KWu%+fRG!_)_D$_LHeN`OJ$1*molN`(*;k?.&0i]$/sNetAL1h,hZ\FAY^+^m*G4FZkPC8KWfd'Vf'LEraNYSNtW_Aj+#&G`fsnR))TjmUcYFf62PHSnX94(d;7CLIoZHlh_MQE9s:-89E6WsP_Tn_]f)M$c1.A5GagRags&LQj1=P&8$=p[9$GI%nK;&/g__"?9[DIt*jda4ueG(%.%%@ZB;=VI[4V:pmrTSc>5g=a]>jk`c\"aFrmN%(=,n#H#iB%lQ7#70'$D>oVd)I<0XNpoX=`n\7mDK<1MlW9&/I@-bJo9ZU\$l*(.rN6&La8&*/_H2:laBP&`\7Y'A8PO#%g:BqZghh[@['d\Z-1-p3\81YoL-I$X&^WugJL^_F@6K&_N6#I6n1I6EFZbe2YK5*@1:EkOH!S976guHQg^'$.=\Z]_&#Uol'9I7fisY=7aC@A:O[0jjAWp0%O/K8(>NA!dM*Fqt6AQ&mC'$NYkmGB4GgS[gnBQh@f'&>J0m)iW>/3IeotYO@65Ek;2Y(X]1W8DHYphASOeJ1UC&1T71K*5j"n.HJA4Z]Qrf%4%>h&sH/sk`'2N.W[-=jCC+AG)TN*qJQW`W90-SE'9Tp_lb)@P_'B8B2jFkn*GGU#NZNM"bT2T:Ao6=`nn'C^4D?P!mt'mPWiS/@C-)VKN>c6.uD"NTkc$R\DSYne!n]*(\Z!FL/^pqf*91+6Y=0rYA%NCb1P0%Tl;nV)0RA5H;?EkOk3@R;Q6ikgNa=fa,sOlH`D2*/iSE+MsQ3&)V8[?uL*iT3g6*4%"F]FuKAEfG<+d3#2TC3YBRL9U/BKFFl,Bll^&opJ7(MKj"/VPnHC65Ec[!@=2tj\skE(#Fe/6'[!NiUUb,:@bjS9i9l-$r&SOdQ(Um,IoXS6e^N+-RNB/KfB'="#*F1^Y9D::5m8'/LDTZ]%hidrS$si_AaXR-qfmP=YFe*^ffN[\1&o?'-`(7RXd'5jV=rYXU1Jk_MJk-XO6hKnagMr`c-LB)Y\Kn4!V%5M[9g)66qqK*?+Zs_AaXR-o6B4,[L]7.W82:'G]I2O[3,E5^1lP5)9MY+hPc.hAMHpRO:g4\!GS1=5B0bRJiZ_=`!3JZ:OY2#G_IpStPRAL*iAA"[f$Gf7;Z;Xmqli_E/>bW2^0WJ%=1mPM6W^:/&`>W%VA`LIF1d_%lO4b0[:5m8'/LI-4o5Z3hf8i'LiLLMtP^,@sZLc7T8Ff[DdPf'tG=#h:)p9ZUZn-D8WBH23gd`.W=YA5I,H``=\oZ'Mtd9ekUb$r&SOdMsdPU*I3*s7)\JE+2-LgEmYOjY?g/NEb6R'2FM-@P&q"[-eR)b!*%V@_t2M1+5(5@`t)==:aE'j//2_@RM!t-Ilqs1'"*+%:T2V:O$M?(2GXUJ`Cbu.ZW0q'Aa%X6+L]4>Ik6];YGjYf_9X-)^-sbWsL4]VBfV;%%C_CM%LW,4UMX0,D[D;"anO!NsR0\A?aTW@gVQL53:D:Di+j.AEZc%5?*K)?UL$A]1FNP/Y;H$KUu/T#q9u:/=2EH6VN:WP1P;7O8b9nJpr2W_9sL=IiPSV&Lg.VXFTclRK?qfFJhK,1QjsC1<^;$Y0i\oApT*9TO1Il03$;J2^/]S^WQoW_5`)_DT,=OH7JCFqg"&87k(]:fG'i=*\K2i6=n<-2V7S/6mcuB&]5cEFj@SX&eQE45.'G]b>.NEkXceFpoKh:7#ijJ1fO0CM]3hFBR=h?7'E2>\j&DGBb(KgGR?#QEM5fsi\3]2Ej$T@kZi%eZ^M2_72o&uLOAXa+kLU$"]WjC2fEpfDRAV!>`o9hobgLIMGA'j))_H@K#EY'?H21,?3pWXKC*l=aD*SgV6'1.l;B;0Z!uO3*FDP*<$Scs*pBQR0Ds9-DBl;*B4rBF(*+hSKZ=SgbeiWgQq?MbGgcMsC`f1m"aTKoWDbm8WT-liqnU@@TSIq:6rDCr3?8ITfl4u)+*=NeUOr[b-j$J`sjLpet@tWC^D':T'n#SZiCM#s]F("*K7B?,c(htm8piOlf75\u4kXci2oKasVr9`l-")]3r*nU"=Hjq)67b&e0]_D.OkH+gPe!L_RKYE)+^1+[lFOO_*e0U)#[soV;s>bKb0qS62'Dl1R*@R1Yk2^$JGXV&-=R7J?mMXp,`c#s,Mr`e>J_lJOA4]Zb_SsT0I(,pUr+fLB2o5,$3A$cXW:VDA"lEsH!,BP*J?oI:;5tpWpjOc2IgP+>J,'`79G_k$FUP6PhmGcq;WW]:7a2!XuJ\*EuM%7Z@iIBQ#/5Fj=tH)5[8Y,)ads\2,=u\I2aSo,B6Bk2A2j"BkfF@;G5^Z5ONoA<;#@(=lgo&Qp^Op3]o2c:5hH*+i??oiI;LgU?20.4Nru1KLcK(>;e11$"og4+M=\kW?5S`bk8!P<<"RaZ#9%mN6Q2Ao7fD'm)b'"jph^JTNf1-mcG$j>o?"48dXgQpeK>[+RbCdlDp7krNKjqp6,g9N3UQF#Yc+PV4R3i"+Xfk="8?F$7@Eo#ikK=i]E\Jr[Mhi,sRr[N9`K,1gDY^,ACM99n$TuXRa34`GQ;Mmo9RuigeZG@+Rb2rR!C]sXA*@d3O+tag!$_#F,mj'j`1a?*O&h(DGRCHJCf:2FN12KMsIJQd7MMCl6-9(Thp?/F"iBB)I@%.Xn=UeC#&fFYLafm5CtS%4_Xj[D3`pj0kr8Hjk;#!<,mr\uu:,D3Xm3Ze#QPc1l8jc0`C1XU:Rf7``*fS0Pc=Wk'qf\XA?64sB,1qH7G[;JimaT<#n"j7*V2PCKFtrmLj1l^paCal!7^Da9&+LKn`?C+:]bu*1ibF#Gu1r57bp##/^pR)p9C1NG#8XFM4Hs"l%T::5\b_U)tCdr)@gX$N'I>QmIhnWbY6)im!0(ej=8F=F,M9g>gYofQ,1mJ?Js8Y+0GN-oe1mZN_b]gnc*JM4hLM.'reU0pLmmeAhjVa^l9O-s%\Q4dRH<^/'>pdC+0&_YAGX4Xf#3UH]G7RlhXlp1,_I9jl]N=>BlC,_`N'9iD8S*DDnN6#VVB#H+pJ)Q_WgWR#4L13@)tXEp"b*FC1NG#a="Am[HR0nWhh1R#g_3"EcpJ):o8E9`NX"&_WuL@=QAEDSoaPZ6a->Y_AH3$E9%2CFgAWL(.LEn$L.Y*jg?k+&.E.8D?WO4d<=ufL,TcJ_Fg$igq_g%qF#4^V>RP:0X_M3T/k8rgZ?plno2C#ZQ6T?hLBo%lTP+=8W[C?kpK6klR#0qD/398Nub+EBf,=EmG_"S$J:X3H3Wg7rT/I:L#?i"Zlps6=WF]*Zd&)'u=NX#Ai!tO!^1d7IiN9^X#(A6#J*grS-UL)oQ-/"^leBMIg1!a:7+8O,-&.5^$9HRT:B]^7UItP)V^#[[,D!M%g#WF)@ndY@q`MaMO+13="L2=_e]#-Ta18outV7qA:hB!hLgJp9(?plno`paQE:i0Vd'7i+o@U1X1]@.sVG_f_W#iHG%<8pB*%,sQsJnQgH-$r)IWgJ#b,+EjKZHRtVIU'5Jfs;e4Wc.J!qOWN\):W)J!;2UIP[0OIHu6HeNK!0,h6uftq$N'pD-)S2X=0LJ1K8D4(lfB=3H[EP@#1Kk>Lqe#N""u;[\r=NPtg!#*8P2SnFM@>Md46#\OWG'">W7p1G"Z2j0WFr0*&Hm^%UtFZY&-H5XW-0+d)lUU^WI0q]gcO-48:k9(]moGr5.Y_BIfCTRR/Zs,R)LBK-86d[-60mp4E>#]Oob[;\,4m.Ea*.,ahA@\IIW\2HVX;Pl,+X2jF3.!Y'_E`V?C^m[%.3Hq@X13Y6740_iD\^%rPon&?s%Sb,8)p$U]7F:GC;L.^lG%SK6B5`'`9U3!9Lbrs;o*=To:P)bNF=grS&s:!'sSI>6Vu3PDH)eL1.4%H5)jN_Bae$9CSbJ?=*F)Q!f&Z.S]\*Q:7ljj&j%%3i5lD4:!SY)O]2&e*m)m^n_"B=cmOOf\[(K8pP(Vl?@ScA/cl5[^!<][5-laLYo(g8VpY$qZcHCN`3/3Zsg[D*t2p+YhZZ,,3r,7.o$>q//k;%/%)e/ZLS4,?k=07_1JXX6!$%$09M*@Qh3li't-ZBTRD1IZLbnUmP=A0tjHf\aKm,5L\^`N_Bag:k9VKE;:=W+;#5Vf"<.DqqsrP#&HuY5s9M7>"ZiUP96rfe;uqo[rWL[QAHNJ!lV&)'cc@;^5_K@Zsc3J(B'!Xp2NF)0?b7O*4R,<16!gs&_-@BRbX-l\X./BhNudXjdfjJHn9B.g^!3oJF45Ai>NbfHW5Wecm'6"(1HVmB5c6G$b7q![QI,W3K4GI'9%u(q7Ff':R%:#Of\[pZ>e^knEbGOdk_N?^`T7L<,>^*4$0`J80$.0W#o)gO4P;9_V-u?lmc_.M?q7X4a\0FrPPUH&OCP_HP^Tb[RsjjUGrlO!d;*eq[R?Ft,Bh1X]e/D8N?6U&La#u.'ZoJkZ;XIR^R8C(GA@dT;.O9-2LBQ+P9oW/JW%i;k9*FV&OAk)Q5-s:,?okTE"7/"'W\f!E\U"(^Y$-X]*.^Qb094nG-p=8:fjqOD,orNe)ME&$n[Wn9RWQDk#ClF^f1TG,pp5``oU8FZC-7+tCRG!_)!b8eQSDSNn1o845JoQGs7Bo9mAp.^cJ@=C!GXbCXs.\Zt]I'EDA](^tl5o<5<["aP1G_+uip*3Yh1_5OZi-2SkFFcFFQ3bTlgl,Xn@7%51Aa\p+<["_\OK:*UpSL'mW1gNi"a0tnOmd;l:DWJm'!5"jrr\n5LXs6H#1agL2/SunqIW-N9K,j`6@K*);Z)]UjY*`!_ieA)1`sKl%0Oq\!(D:HN;oI\,X;;N:k_K"rRd=7AnOXTC1+HoID2F=ed54.[Z2.sYQM4cW[L1Y:6'grU.]8bl?p=h2AB2.Om8KVCaAr=Y<$_\fH9#WaeS&,GCPln[13[nPX,p7ecHB';D-.s'f9hN/^fP`CO:FA^4ENqHlq4?NC7[7(hsDEXM'=`/ZMF)VFj4^)>#q]DkgJ*_[/+rKPF3HE.cdd7jGDWJm'+JV7Eq-SN&8nm?uZm6TKldL&$a_/3?\WNups&3!u(67HZo\C?ic&0#4Ysi0b'9[cP[-bg[ab&nBC?Z$1=\jo?F%:HKLX9ShOFeSUWT_tbDUfLSbXRSS@Z.fkjN*R9:!lD)"U/6291nN.9/?pkf!g0VE[+cj`gW]QnMMk3.pW:CRM*Vqbd_(N2mX`5L#VqAc@RZ]=tZ5(^="g4(#!j8UE:oU?q7X4CeQj8i]\E',`/lb)_:N@n*6E-;!,TSC_^?:XQh?&M`A='Jmi"L`Kle"ZQi\.iq3[%'%BF/,;5h2fn#p1o\HF&c]kuH,?k=07[JE:'LM!2NR8K7)4u!AqTSAI6F&8gQnGctp]RF#;qQP)P*qFlqX3t+-b!fURd=71]sT.(*Uu!Uf-k4fX0f-hs4FPNlZ#7s0?dO^P\Wtj`+sQP(/q9/Z&Ckpf9blggOsGNR.MJK?$qcP#pl.cdW)J[r+%dkOTnBK%P#K8oQ/idT"6j_rb^sbe!BCWT>Hb>"0`N!A:%0ZVX*KN?&U+\dJn1A,u4#oFUO'`%k-OETo1iu@]$B)$._e,9]BkVPl,Fc`P-)BQ=?Ua4+10JoSFJF@Ur/ul&b5>9InB2iLchsI]JM&pkYAFV=YKYGrW$%8+.p:5Rt4l?u:AkllX01A)?!Gb822C#fb'JIi,Ro\j4;fpoZ<8ta,\7n?p38Pt/"?@eqJFEg:R&@#UBbXPPTrDP()tmu8,g*ek]Zf16T/^:dZtRrlKFBMGnmGl7_N+(mPEZH9&-A-6,$$k-2G'*tC%2&t8Y;S]W"DaQ?e>rVhdP0e)@i/\1O`@B@=DCfuf,2)<7rB%V^riF&.f?.dtFMhdi`Oj1S64UaLXl-0*f/BS/#mVKsR>c"]4ok3.sUa[Sar4_XB#7?u+BP(CQDg[-)Ej:U7KGFY[LM^;Ik7r1rAC.GRh[sZecom5LpBV^NmdQt^:1SD^S"sAG,DXi>goj_eHu*[>5!)NpaPpR'\R+[Z`/BhgkhH+$T-uG#+e(>r>$G7),Z4;N66)n'[O>GZG5nGcPSh&Hk)=_HTLm)V4"d-^]T,)Ok^s>tXD@#o/JoEW;mD%U-Lq!=lZ59fim*N7r`+9eebG"$Z-aL:Xe[hR>:hnh/Lubs]29J\YlT(Pn)d3*>HrdNI(>'8!4ue\L*_C%PG%K[;#+iYjWpF5;>2=A]0@UGt@)n(GA/lm;1+bnb2@4+ZX'#u%hP'fXIB?VTdf(B[fXM/ZRY]e$r7"K06T1JiN-4VcA/GlCL!._23!rN+q#MPXoR3ECN9o8KKdfD7Z@iIr(jsfY\&-I6f5&T-Vf)/,+Eq#]rOHeKtqG\Q?.(o+5;N]bnE%Apbup'hHlZcBP^h44]1Nt'A;0G8[RQmn51gX&Q!9%,g(&cG<7s9VT4B/)<@9RpSYQ'%-Q[l6aXJC_`g&Bc+Wr0_#W?r[G\Ul?7h#ARN&9@-Y?noDpfB6q6)TYQ35\_fU3/9Pd(geA@sZ5>)-O>Q:<2PaSp(jr?jY==OG?[J!0OP]]-CCmhE2XhVhf`Crg4JNOU7cKs-.]N9FS@+Z\OHg4g?Z'0!5l2sCG$?<]<1\s._p9DnYE6oK8UeZ@ZN?ZC4QUWSVbr-)%Ld)O(9:aWn#\#AaofFtgP$'@NaV;;=T(!B>K@+Ni.%8kg6^?Z""M%Y#5A2/#NMn>fefI!`3CYTT04ue\LS^#O3p,S]P_"_$60gq<"Ng47$C1NFH?I;?+1MY,0?DTe>l[ol(gfs#Ym-t+^\ImG/E?WoB[ga(o'0!5l2sHCZ?@-HeBlRG-SuD=uM/;V4c9Ur.)9ph1P?N8U?U>B9_]C1LC1NEE28\"A62lTd@qJ(dCW:HB4_(=J3)V:$Y`/OmmQR9,E1o]2db)$3IQ@S?.^)k/'=H+raJ@Tp?`K-dk]i&B?H_t;4WQI\)rHL76+o.(?g8N8eY_e7fb:\U30DrOU5S[afu+,79ISqT5C2CC.\gCpnW30D<'R'-<=*+t$bid._Xj&k2o%HHZC)El1Ei:dJt)7=a8a,p8PiEm[saQ+D&crYQMQ>7L\]p?J\Cu"Vf2?"tLgprQ`+,4;1qVEo#l71Pt]A\.3`6YCTi?M/YP!_i)=1dd'As;VUeDC3dgcmM;^.,Z+C2fhr)XB^/Yf.KrIuWdiOb[)T;Z`S7Si;Y#1Ns_pe>NLnT=6hY7FB=EXt\.Mks:qh:GK3e8*u=p&47rdSKMFF!H<%%)KRIg:sOWO^niHin"D_1:[X+\L.]fd`[J)R+*$6'O6D&lQu#LkXf+)8:mB%RoW/PUU;CsI;gBoHT5bI(laU-O@5;BPfkOI^;N@UM`a8t+Ob?s?-.IqS?IpbW/jQQX;uT%0o9IFSUi65=N(g6Oj]]kL&\4bAj-4\6e4*?=R+-qMTYa7@gUOO%Z37dlD0W&@;P];%#'cbW1pQ,52!i:AE0j4f7Z>+GfkQP1\AIB8$Ypgai%G:59I:p`98ppo'45=bN26"EQ4B]u)miOdnc-HjppjC,C^SLICT,kuThP$.r?To1Mp!G/&^O._A#TSg'rqaGnJfT7dpr`oCkUQSni"$k2rp/lKlKg7e$/8sIkHU2LppUg=70(+3QU?g:u].Ru>C4'>mT<@'onbCRkpS[V,?2Uf8gHWb"EYnHZEidFRMm*%uRAo6Ao;>qYbpE)_b:V0A[F8Bd#Cj;G$@_A!BEfD59?F(lJ,89U]V>8;gg^%c4O#BCs2uu8s0^=#fD0gde=9d?3`%LlN(U3rL^EF@bDQI>V="Iet,2^LqHdXStJJNX0HO_&.&&](*l;EFj"MG3_Gc0itK1s;&A.#OgOKbIZhjM?jM'i&8C_-s:j8E_lWKG.Qgk/!'O'rq0%+hIM;$9th<>sRus`Su`V.J$q;V@'4U6/!QlE&Atq'3eDt_2_2(:r4:fO-#?,9E8#?Vq$!pdIXMlXuoOZtsYaeI)``KD/o*ObjdLoS_uQ;VTaZ5fd[\PFN\j$5Dqa:I0dP0$\j\s*EuJ)_2`=HL+uP_C8I'CBacnRkh)=Z%sDKa!2#[2?qGZNb.Of\\23p2+]lrQ9=1nq+WA*?qLYr-)6m)W49(k^(5UZ@S5>='4SRP#+gA89I$FOkF;BRKF"AkP1><;A""TJ]_]C1IW)$t1Ccl(C0*^`N#S]o2N8(0T]q*hKS:-LBa@)Vb<#OL%^ZuClR`=4]ZB/p--YJL%5H^:K'^C3L)km9b]mN2R`sj6P2J/#qqXn`4fAiU20-5R`OZ1/&=HsjhZsN'i&8c$gGaC?&]0``7C/uYTm'MP^kT>_1C.d8%@9XgeMZ[R0Pf/E#g,FCQ,gIo,JkYr-)6m)W/b1^5PQ99j&8BaeIMN\)^OA4O'8QjuamA,\N:QG3%:%EtBqOtogVA?.DC_(Nj?8[@P:#(+%*Ce^<&40hlEBd_4f,I$C;m-BAn%Z7e1>>s\#NbfGb1$Gg+RO!edA)_K;CW\clOf^s8/\M7jH5,W-05G8)F!nDnb_$qh.L]f2(A@&@A#D&[6V?6R[J#/,%sDKa!7uogm`;[+9ch]868>a(&+.J2l[pr(%Aq9lBqZ&ZH#P!,K@?'@<.L<7d:itHk3:Ne/i,Mn,]HkfMAC3qS!I8#!u2+E=VKm_N(a7I9@12nkpFKhPitnV9p:DP=o@(f^>)R@TTV1,`9q+]8OV+&2,.[hAC<[o60J1k8:'JV"oVpm[\h0jN@Y7gJb<(RBip^^eo]\/>\t*K%;\b(#;n7_(q)hC!J7,%:0S9(F_jd;#8:aZ8#?Wk0bMNXFJPrlfIa(49?KBMd2Nh)Meqmdn&O])"?X@S0.QR(7rMAj`h<39eh%q=@q%R*7:g(SoL9"UG9U#&(C_0Im9Ut1=DD6%b0959N=+L/Lh&dEnS1aV-aottb`:PY_"1<[N9CFiK[WX%*Iu*E;sa[\@#1X?[]%EoNo$_]NCcYF'O?YYN/?f;(6t<@Ofa5Q-Cd1/8)qOV>j2?a@#1X?[]%EoNbfGb0hJf!3Ps;`Cr"T+7:g(SA?4XYPSi=/QnPG'4qJ(@;r`E\.PnCU>D6JoqFeDg_pt-A:M`mrR2ss1302?G8\P_t*(h:Y"Y8]Q(6t<@OfcJS#!7S[c24Ork]Yde7:g(SA?4WbpuU82:.5CS_9R@mAS#IsA?.DC8Ve6foiGW7;KZeQR@,)K._)G7s!i3B-n4nA:b_6>f!.YTAp.^c0T9Ek[3POK0o2nl[]%EoNbfFICFJn>rB7/"ap<_2X#d\fbfl)`'o"GF@p3/6(3O*u>]jjcR6*L9^EU#/C0^S)TYr-)6m-'E9h&,KOPJ)0A@q%U+7:g(SoL9!*Tb.I'P:9#ZWOiGTNY>VrAnFPO<9V=IU^):\g(N.j(3Q%Ud2NO*1Vs,C*_2+D5q$oHfV0u33O0spVP#k>$o^i+c6TPoKg2!Q)[4TMc^.]ZS.:+-*@J:ob!_8+$+_PlM1M->fI(Wn-8R<\q0U]:7u',7='^Z2n5IQ%fV0^:DIi8ZL7epWf*s`86dfs`MlP"FaB$*O?BZHL`_u=MoRTdmG@HK1bjD6KZ6:)fMH8Pos<6#c>RG!_)K'0*\!eZBl6IGTm!%R,,Cf-Ug*SDnN@hKCUrTh`_#4Y[kpA5D1%&40R-0a9E5uFn+@V`P;f[1WQ\hOMJJ?"I#@8%"U[]%EoNo$^2i"A/P^qu4tl`NOYG[cTRbj=PQ$Jh)&6pT3hd4co$'3eFJAk-c=i0bt,)`*daENZnX`Su_+.PnE+2_&oZ&eY4>'1Kg+'M`IAR@,)/;5'ZeZLf4X2_GGh0^@DJpCgP=B(SOn2+6/?+.=G>Q=)FoLDDbX1F%g+3,kXg8S0M2o[-GWKMZ6niqYlu9_-(4m(;DNVM9gOfINb-Mi(3Xa:ob)hlfCXWk#Q%mKlkAJ/1#1R?=Ve0I?<2j%3Xig4C>Q41;*17#jqIcl006s!m'\5u4_kg4*7lR2aft$tD%ZJ$2G;@8'9@[]%BnNbfH7&0-T`YsVeXNn+Fu_9`1d@uJLRm)W49(mC'^nkf.-Y!E'2)@o>=l7:g(SoL9#&eq`mtbss`cG7fF8hr0SI.PnE+2_&oZ1(6^B,T=[uEajsLbj=PQ$N,6]c-GuKl66?mf+fkf1UEi8.Wf0B0*+c[%:`:!Ysi59G4\6-SqCXhA(ZI07UN`b&58P``q@%f:NlA"Kl.l?RG!_)6=e!<&*UPV;$TG,gkdU41UA<1KjdYEkEMaOX"jE0Yr-)6m-'E9G^b7GRW2?9?^K($;.>=^Xm,E77W1+[;_m((\8\\u]7DMKE[+%3r@G"sJYf.+$6:0%(%Wf]XN?_FRI%O/3U?V*@RkSD>#]%p7;qtmj>3\@XL=upr&brKk"fejPDL:4&p.&-&d&%!mZqBJTLDjmB(SOnSp4`4J6doaT`t?r/gFIXYshY>Eb%hi9u2ju+_\/pR"Cm\3ju!1b`1Imct$]9Y[!7CpPnH?33bnXAp3f9Kl0RR1*C89BGcs3M(L309hMXLg=SkF@@%QW/fX\"-0."Y8F6;RnSEQ//I/S[8%SGC<>.!E?b6VX"EiDRb=b5`O@9oPN6#J!4C01IbbAU]A7W]@M[J7mON!S?cXTO.mt'V/^:s]@YeO#.#LVV;lO*P`DegtDYr%pkaDd\aB'8f>N=n[W6)RCueOnWgd_an&><[rCM_jReTK&n]U.DNrd?qPV\Cip,=1+:fS0TL`dM[a#`6B$aQ-Hq=-?A*;KE'n)*jolbS5Ar/u_GiNtkY$k2#$r;krZq=Gr!jCs[AU#l?,c)\T$>X)VDV*[tPEd@#Fq,//&W[G*prl0[d`jp#+G)eV.,EOk>io)4RA?m92pg*g#*:rbB.mI(n7YiVEN-)>UrcoYEfiM$c1.A5Ou8%pkbY&B6r%C4)bmSIq9kAbuobNRPl/YQiZlI6#>P,bHG.oYKH3*hra`hCM"Q`2R7s)r^NAkl&u/B'D/.^gQ?&oeT'eq!*^oPXM'%*S2-H$N.?;#jS8OJ^;gVu`M%*UH&Ro2DIuQ_GagHjtESSKg/Cn83?hWc/PH6n%j5Fm/aInJ_>7burq7RcT-_@p`,(m1i!8i"j"C;Sl'@T[7aC:\b]V,hMm>#Mn]?L2uJh3dH=aj%N?FQU\InqUSB[D_YG.eHRn/?D<+Dt*tGGRP8JpR6W?PhSg?"mb5(/+#L+9d,T#Quf6>tF[6\\X!f*9FJ.]QNbR8QL(QnSi[bAC8WW#H#\c&*2@WceSni76,QVG]C;[3;2/AdnPeBA6n+%?=T"^IS3m-h8G%A`j2uAjaFgc=PD`uY#OUVZueP-)KI+&KJhmr]\JbZ4c,Km"0YJ/aP,lA1#0^%9ZC)Gi+j#nC'jdEDt.c[,;ND'on$8[S'Z:c:Fp];6l+m]5-PR7*e1oLr'l8hR]ZJ&MkcQHV/2%R:+gYO=:SVkGRjc;hQeN#Ri%7+OtWG4pUJYPANc?k;P492Ec`Du)KI+&<:ZnGDU>$q3PB5iDN;.r^Z7O4gr+dqVT#MNI#U0@'`Fg$Gdog[Z<3"kl+$Op3G)&A26UaKC?fqe3SNc]*rTIE"aHO=Vpa_=21e_$Z>KRG=#h;Y2'?ZbK0/6TKVi#SIeqgC\NGtV[FcW9ekJBLeQCJG5F-$7I8+%-_?g[ONCTcD83`%`#_$f@_"!(H4k)[#J8I$B;?!3h8ObfP&&nR>obM?frUZP\<@0Rq&uLXIJD,c-tt-_SiCUs5o*BR+o9[>b3n0QZ.tlU)-![&ri]QhJ/3_'MGe+7tH4[3mqn^l\;gK&.SiH.1KcWYTo's4M?/8A%:CK1e+cC=Ll31N>:t8IJ4`T8qLb.+d6>/0Gu.nJG0dnPeB@U7q0qRCX?<,=^hRokck[#/A70/nD%g@rO+K*L/RBaInT$pdB:$JQ67>q+-a?rCA,]'tGSg?9Q%/*3pZ.cn[QQgX@Y>,u3C6&L@0>@\4"K"j;"XKM$RCl<2Cq=6ZlC^MGkkG%.)MS=/`iEmYN4lO=H8pV^BO,1*Q$ON[!ncXQ`'3eJr8rYCmofiA.I08ni%D?2pF0]c+&%A4`ZBt8F6:KRFHd<6cOWg37_a])T[aPVpG*aTgp1IH?;2#B,H;\Y4=aBonq"X'If9u[3)XTfZo,8C`8*n?8c,u0JYH0)&mHD1jh%L0LrQRF2aSnM`*gE,s6Lcft-QT#Vbl)00A5YmF,.\a:c$ZQGjgcFKaC^E(e]N(?HVV&F57gsPlqQ<@74%LVh_ifIeM-NVJWnbSr$^h)M%VT`Z<9!7RaW6YM7SfQ\d]$jSCjhS=))9-DdG?$4NHY0qcN9+9f!`o=eeUfE3b,BOd\1O5U!aIm_fm+\.GD?mH1T5Xltap;(S?%8ZU)VW0jX0BSTW/K)Rp=IeJo%lSaIqDLmFuu)qhbhp11X;&#/A!tVPqo<3bD'CKbI\?U"rF>EGbh8^m(b\Y@4h%H$WbLVu^Pq_>4MT$654IHaF7=)H\Z8pV_-qT?oQ76moVNn^4/4L%m4VM_i1H"lgG)Q@9QSNUE)K+5M&NSYV&YE,3c3_hEr,2'4i,qd."8K0IB'`5E-FRWIX;@aQ8L+Nqf`QKlq#Vh&KK&MW.a&WolZtLdkD?\BLHe;BhrEqp0fTr^CKC%A0Yjk&P[KqUC_N$2ti,=n<1Mp:jEN)BnBh\B%jSff=AiB:9Fo=?TGJX+draF"r"QNp<@&ln)WKBW`@c>@C[$I97p3b5uSr91AP+(1LH5i8FCg1B@OHSHkN_hCM[Kc,TThf/5j'r>&Wl1/@=lcFBibPo]Z=VW/7l@WH2lq9CkCU.6<,Xt29;uk3pDa6Vn1l:2L8]U+4;5)2*bbV)7RXFbS$'f24O*s,51kr%TNB-bT6:&[]%,u(sTEr_S,>fc6RRUH?cY;PI6`/c_K)udolQ?UVEC.rkqj&\5K(LH/CheSYNT945JqqAi=2*AeVmFNj@83G"t8YZ8Yi9SCjPK(Lf5ML'^F9W*./TfnQKh:5Z$9`Y8mJ@CPC.:1q/TJX?b`?@)_tQCD!kWW)!gs;oa#EYX+2@khm#TrlF$Z>6sE@[OaB#6RF^F>9rD<1UAHhG&b2FOjW0dJ1Z&h`bgMV&0q5u;IFO"V3U1c4XXV91%W#!n$Se)a_ha*F,+[>!l`f9$uAq!.l"?.QQO3@&R.;N/dF%*(A*>52BPBF."4m+M6>/B"QNts[\uG=7HC:dd_.aZf7j?a*@J:q^qEk*+>6@i?_b!X1i75/:H%j"Fo@184biN/9N`-]_5/[E:2Eda$SctU``/h2b=LHIC:?1$-Q@BL)SRCg05_kmk.CLkbb*Of&m&gYO`/io6^ZHk=t"MT(HnrICDHGP[#R1XD$aO?;UQN+OaG4_9m\U8O5$=033cI0Y11N8mgf/.HB-R^b$gL'RbB8oASEGI>+U+e$.cF)*6`,m;%28JVD&"eSG1$E:?,l3)6e8.(AS+:fCW8sp6*M+tl]qgr`ratg`0D5YjB[j1fhY[L0l1]I<&5K!=Z`4r`KD(U07BJ>.>H.6$n\B&DT(a)gL8UCF:7B?M+r+#:GuaiAuqhl)%6<+W$R$=A]2q*-*Gb=+O@r*NSRSl$t1(pe]`V][Ou;(^,rQ7PtPUN"UlL"%_(J$kbRE3eOcgoFE(5Ra3Q?0K;Pu;EBSM]>_a38BANAIOai[YCoL_:EWT\LV_N0gjQO[R$3&%A5kq!g46bP/&#%dLlbhQY:4TiDNOfX%L%is+R*[&Clr(-P6!6??kkg*\_HWYHRcaJR0?"VjJo^fE9DFk>G(5Hn-.Y/JDU/mC$D7VFGd"?VLCDs*kXPq[i(rJS53*]B5f4=-d^;KE8#oa-X!M"bE=e=k6_u=ES2Z42*sr^I$8'OF!6`cqhhZS*tHSkPVH`H%&(.>M^ht&d?Cm.cG+b(f."q@qLg48Z<@&l(1T&`"S/h&is&m5[@'A+`!WI]hk.a-F;R89Xe]/oufVW?C,m,ais7PVJ)?LhpQBF%=1\!QXl8>:3lj;"njDcfB5(bRKSHAjJ=Zca29PMI8$G5$q0C%rLXUnkMf!,O,<;b6N?]/$r$9#nIYZ;IufX`^@,NQ9As+(DT$s^fL87RS!@o-j$o8TU-aotkb_p<:N(Gf-a*6t8ab2\tf:bW%Ao;-pi)qo'mA#NaUNGBBQm>4`moI_`VTXr=R1c_Qdb=aueb&nrV.4CNMn7-faO\.:_t[%Ri]:JG)C&A-"'Uq#-:bKMN(LV`LM=4uqsg@#nf:o"j[P5G"[#D"?.Ltl[l0b(hr#C!E];AN2_l+u.;291*.#0m1#(tq(tb9.%rV#/"75m:1dhbTSR**LS,bqBUW\91]hoqGP6/ccqYi1\Nl6r/)KJ%_R?u.O+97M)$m?E:fJNlGuHoHF@@oXY4@nEY!3_7YIeBqAjZ?B+G@>?l1dqSfZ\NN<\aPO9Pm>>TGF9&6?ua\mYe#F!Fn?V@3>C-6PSR30Q1(2q.)t'!fU.O.mf93UCk3YdkNec79*rCA?-93Y(V!YT_@k3&*t.cZ8-WIA?3McU_\kr23n(`=X*gdo!U,"MdZ;m"[K0Dq7+h;uHD8lFgQBf"e,?k=07TR_p3:Q!72l:)6@#N%K-RAT+N61(%@/N8!fA//GYf5?R925+3#ngAg8UIu&PC7R]@:7:$gt@gl!ZNB1Z@fd+aK3C'/.?>lR@,)K.POo^["24F[VALV_S?qPRG!_)!kLp3I6%2JYBZkuI:gOZ^m:7rZQiZX2CA;@,Ztk')Y9DX`ITTj1UA<1"ib)d\`;Z%[DR,s'][$7@uJLRm)W3N,bC5jc!<>h<7iaUfUobD_R7^3\T9!"".4\jkJ1VN?aiHX5.4s:`]R!eD_@Q%+h.n^I]E)4ppFLcn'Zqj"1-Edh[eD*g'L`!/DY:qG,0[@lZ2/XD`#PH^<,nYR'^"J3)dYM3c_?kt$Wbn[SHCU)R>e''T`r^YMlGf?kA&lA#Dpp6p]t#F?S>;`RGaa9Rc;HA2W93Q[7Xh5YSK5C@U$5`nFpts28<)l$)q^l?1HToX6GmH\/4mj6?bL?9@]2RiCf-Ug*SDp\6e=N6JBdeJi@[4S#I^_XSK6B57,5bY+!,\G4Q\JX@AQ]tY5[]"AS-*rX2(+(Km*AZ*?gDF9uk,d(6t<@Of^t2]-s(SLZsferj"m]LR*(nF!FlkR"E<)^aaZ4FB]Fe"'[To4sASqNaA%Y4+<^j&Vmj\=<,uQ9q%:no7!nm?II11XT_toVKD/AfV0uS2mP;+1L$q%FqM(/3bC:-ag?.W-0Kn$fd]C;X[(\&ZLg3B`cTE6Cg!/f40hl%[ZX`mm._@eco`;G@[NLJ%JdU@40hl%Y$[=nG"CI0@t)l]5HmRfAp.^c&;.,@"ss^(e/6.Y5trI,.ij1*)E.ITI$J0bW+1apBpP4S>CpJ'P*AH3C-I#(VIO%BCW\cld2Ng`Y/PNsjQtZhh^B8o^t+`qYbO-,nG"A&C&+@W`r)]DEF?u4gtC'o'sb!iFc`_>jpJ_^.lnf:W$uAa\pKN=)ekG(ir!qJK!IikQ=pRG#t,'i80haX"TkWJpY4@dHcM[]%EoNo$_]qC:-Rra3B]@lbA1[]I]D*SDnfI`WlHN*;18N%'HiW7a/E>@d;m13[nPX-!1,>Rpe4AU&46n.3JRQ'peS3ju!/b`6KS(m>K;p_J(L4Q\F?3sN-lbfl)`'iO6g4404\s.VSJ`S`B`>?9n3NbfH_L*Sce`l^#J&KNnn[&D0lNGK&%k\EAeEPg*q[m`%Lqn*N_Bc3'O@,p:unH[;V74o\UgmIo&)uU1uLVjd_?hF.-$]J--?2HPO]=+>c)">@#N1Om-'E9\M'aP<=:h!0oC[9/LiQ_UGjY:r;m8+V)Y=c*=DsRJiF^kBG=_m\kX].J]30l)De"IhH[R>FaC:bPr__G7W&Kf8kLe1jBr46EBtcO"orn6Aq;J@h6]#p]Xrum@,qcRg5s!2dog$Ofga$+Xj,b:N/3Wfjbr[-RKg[E)k8un[JR:,G73CFST)Fce2f<0rQ_sa7CRa7"KoW`Q8"55<-aL9=-=:D9e`;HdKKt*:t8fWql'SWZoL8QH$uV5%O7sRp>?WH^1AcmRn6]26WM`BVBr"kmpkXo$h\`K/<7aQALg"si4G31`[]n?!]m#.CJNN>`\q+Ueo'9O;&%qq-N>DWQICQ/hj5A_o>-4=n8;T1EaYh%M08UCNl?Q$C2kCd:YJP"Q#aO3YW0;]Q5K81LMYg`JXr!V5B\`-p==o)%BZ6^-3E$Cc5%$4^1MNRC$*S;)oIC!C@HJGH]6,#=(Dm21=bI_jl]-SMHE$Cc5/J&nE#OWKk!RLba(eAVF)\Ell7;H/sA`.\si8/JJu9^()o=)'mFpL$9FgVSTTA?\m8eF]4^L3LmWQ%?%e0PJj%=LQ6-J%rk*g)]RH3:t%?CrRcM*Kn.bRcEha3i9=,)eKdCC1NDZRb,H,?65qig+BSnK+lqn$_"4BLP8?1m3s?6]B6Nd^_ZUQF!HTmd3%--:?:lQ`1[]*AFhEFds*:c8ML\SWYh$P`UDC1I%\HD(d2SKAe119:N?k>]-RZ0n=_eRo2h#)&jQM]kd%VG&An841dB)Q/LE8mNI=o=H%;nSTVCT:2HEE+jbI't[QljtT#(mR`>W'.6ru#fZ$/O;&M+\pakRD$T,$q=f8diPWG0CJ5.5K)D>L^C<&(%jkgCAunU*$e7SGHh@kWWQTM1E'D\-,XiAPb\F/-Kk3t`m$=bU^d@((tK@S%HHT9(d2SKY-4]Y)QS=3g+BSnK+GZSNCqX#eX[UX2_Mb:X,d=\c;qJ&%NZ5U?eh%Q,=f[(Sg=AjpE(/!&`$[7R4EZJ?5iQdB5p?dq`ceqLsIS3'idijos_lOZbXMj_G:kkV0QljtT&f4aD+PeltLZ`f)PVbMjQAG1LLMYfVc)38k6#gsQ;HWP+_SB3[\8`aO^MI`IC3tYJP38lc:Mfmc6oK8Umj:UX'K68&3/:5d'FP"IeDj#X%.[-aI+\,Xj]T18h%H>D30DIVYpT:KKFdHqpt:\HJM$/,k=-5:/0&BE.mU/pA[]OS%mFOqDF)0`<6Vn7LO2sY4\j$5[C?dC#OSBk^XL6H9D!\?E9!\\Ia&i3N-&3gn'Wt%o8A^j\S7@?f?W:QJ`"VeOInP9O"Q>aZL$_=qFu/g@`+kDR1s,KbO>JXh]L`lYkZnJ,lqtYbYslZB.*M*$YfNf%r88C97>CFf5g(YZ#_3]]`.nkrd4B\s7k9DHPDZM^:B,"b,8a`rdMLjro]ui>h\#kZ2)gtrf]H560F(eiXLFqo"`1mPjfD;hq0"ooY'&T0g#F62u`F//%`f5S=i!Pk6^dYEIL):!-EcER@ff:E*lu85Q?`7%g--f&8rqPe+s#P-1nHk4aSOhd.'Ts@r09QEPu@:rpVlE3Hg;AET-I)mWnqY4hhsZ#S/,1WVnf;59FQDiVYtOkVc]F,2Z1YVec4jElb;)I53i=m]9s\@*EoZnM4FC%0Yr_kk,b_I_SXO5@3cL,3RcFcZ%`h>iY[.S5rno_V\+.kHQ5Q\^>48(f(:XiijRV2W>B[cI#O5L)`GU%0o9IFSUi65=N(g6Oj^HTg(MCNq3\"obtmD)T.Ha?e"s%l?>S8'Gc;F1e?usU5AXY9lS3s9Yg$V)?gmXMTjY,'\'^9oQ3CFIN$Lk.mEWUHuKY(LK1h-AO\$DXbcJg.ko7'"(r29Q:([b7_~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000034266 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 34318 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTableStyle-2.pdf0000664000175000017500000000562312063667552026226 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 756 >> stream Gat%a9okbt&;KY9p^_GAQ0Mb0q2eX(W7k4NH>2!?WX"^6h/"7(0!))Pqi:%P&/o@c6&@=WBBDW=D`C/[iT>L=!5)C;hJhBSe5,!/90doVO"+91%T`MOAcf7`8)3Ij$/PnQ]R`1TBd)t@m6M!u@(d/fEud"kTBCP,Dr-"jKQ(-[m=)$T>??%)hn$+_[pX[:S+q@^<968jW1#*?YMR..E=uR7=*%*9N$G?cnkSHb\m?U@14i6.TmA]*YfCQV*SZqDWeKl7m%B#,f*SQ3'R&RM[M>%);gkV5U$EpFsmXcFl#Ii9I"[&8U?h.\$.F'?Z6RhkS%VM-Xe),pAOXM,qU"51B%Ij@\`p.=0@$!'R/.3`GUa#QLs`H;W6G(6k^fo8I+:])#]pSmdFI*`OO)8_986sAf@U;PX6OJ*6^:$8QFCA:/[+U;9%%Op;GA=Jn6'92?9q%p%)F6>b.f^Y2F;BU)(;VXK2(/j7-oZ(n$@I;"5ttD\\s9b&f[-0>Zb;eiE$Ge9_pB^jlMGmVdM9S"#_/5H?)$=."hS*HKT>T5FkT"@QT2RXSr5LW$HQ~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2479 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-para.pdf0000664000175000017500000000644012064775632023725 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121221010234+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 716 >> stream Gat=igMWKG&;KX*q&SUp&ri@Q*ap'X\YrK:(K'9p]YN7&%g`H,Cm=Y\]-dkdNe/K0B%WOIL4=AL!n\R4?e5O5Y;sfB":0^/",%m/q)s,KVis@E,gkG.OGm$@$mS(#l.cJi#9-IMPW$Y"Vn*C1YtKuQd;0t/WiZKr)=e$RY<:lIHhL98,0!QQ6H0mPK!Q6C-9?]u#G!Fp&F"/`j/KgBP8U^eGl^LN2l1E.f>GGV3mJL,`.s7AIV;aFk1hJZ6`'??'_abSI2!]Y'([h+)GmN)*dn_AM.5.L-pMFe5X7LG73iN7UBm$bKQGJVBV;%98],^GN1kA'b8a6NJVr\OR$cngYc&``Wjl#fg,A6+)p+9([:>hpNS`105oHF*Qfnl:9;.W9K+'CO<:)&`gXVkBJ'I@sFU*%hr^/%ZSZO7[:=b=e3IU\GhX&#[B+#;WPCmTkT9&MVRij_nl`JUj?*CWnnGE*)6K,nO,Uueg-N^Fg#4!WR6UK5FgSM5TQS-pBaZ)gIPbl%m5eu*!8)#M"p.ZF\@kpfP"5/#;l2GN*7F]=t='?$L0%ns$ej7Gt'C`ik=6?^;CM-jjeOn8*L6[drn*L*p-AGhT=OiC8"fa&REE#B3YI6`D-bfWV:L32,ce@S%3:0_[dqu%U;kQ#f]f&Yogd(hF2uC1endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000597 00000 n 0000000786 00000 n 0000000947 00000 n 0000001126 00000 n 0000001405 00000 n 0000001541 00000 n 0000001811 00000 n 0000001918 00000 n 0000002778 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(;\215!\221\3043\334e\246\230%\374\300j\343/) (;\215!\221\3043\334e\246\230%\374\300j\343/)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 2830 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-illustration.pdf0000664000175000017500000000523412063667552025533 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 509 >> stream Gat$tbAQ&g&A/tO5KqM()O`m\=sgR(b@jp*H5@p]k(RkjW7).M=NaBQHR8=El$VC3Cb][5`]U"?qDWj4"r-TTm-jd)Oql##-"+J&(@;#3?M!XYDJ!hcIO7p4RfZI':$=4_Ibq#<_4q7D/POgTqNF]cZe@?rGA!jB2)->s?o#qk\;IdHg)Pbg@#f1%#d3^A?Zm]?3AXh.c29n.*2iN8%?=f4]#W.ic7ghoP$QDpC*eM99Kig9W/^?+>e%TgFSUB#%:Y\geT>"W(g195m@rB8i%%`-u$:-!endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002180 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2232 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-skew.pdf0000664000175000017500000000366012063667552023754 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 145 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4dF2&#a\iDl!c'JhcndF5[kt?hcnhm[2mKT?gOa1-K`r=R1J34b$NSBC,`V~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001457 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1508 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-001-hello.pdf0000664000175000017500000000622412063667552026236 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 5 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class TextAnnotation 4 0 obj << /Contents (\376\377\000X\000:\000:\000P\000D\000F\000 \000P\000X\000(\000S\000)\000 \000M\000T\000(\000P\000I\000N\000K\000)) /F 3 /Rect [ 0 , 0 , 1 , 1 ] /Subtype /Text /Type /Annot >> endobj % 'F3': class PDFType1Font 5 0 obj % Font ZapfDingbats << /BaseFont /ZapfDingbats /Encoding /StandardEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Annots [ 4 0 R ] /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20000101000000+00'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 674 >> stream Gb"/$?#Q2d'Rc%,s)=i,'<(B_!b@L-&<,E/G_1e8+Y;R,Ip_u[?fq\tV=CeLRXIU!$fOPQiEa2G0_XlBL;XN&N2C*/1kB+\W%jdSk/8S\'b)%djZ`5eQmKFJe+YC^Y9#0IF2d]Tihob$llsYu"Z%T\FuS2UmHhdI=\#2F/>\L9DaSVs*DBjUH4./j9VboIVRT0@auk2cLs\cb-\e"X3]36*Pu^kjPXk--VA7EV`Lh7l`FB#>MH290bFE:859;IpY9RnUh(@u0_@mT/V7&^5,$K$)ic)'g6?'o&N2_(P=YN7L-qlRobc!,A9NCja,<5/l9`<<4ZI[[iI'?K:>0W)[Cm1FW(]W:Xfu+uHZ:UhE:;aHF3a6A*WACC])8nSqCk8nrNY^'Slh@eZ#04.*/_+W9R9\i.Ib]UtW+e2Ek2J%77Uo)a.VZi:"VN,8L.kFJGK0su-du!#2;Y6,mrV5&hllM8m'F#oF>j!/Im:.e\c~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000600 00000 n 0000000856 00000 n 0000001026 00000 n 0000001324 00000 n 0000001459 00000 n 0000001728 00000 n 0000001834 00000 n 0000002652 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\223\367y\354\321\362\222Ju\262\315V\3448<\372) (\223\367y\354\321\362\222Ju\262\315V\3448<\372)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 2704 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/encoding-test-utf8.pdf0000664000175000017500000000462712063667552025665 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 454 >> stream GasJL5u/FS&;BS8nfQ^CX^JEIDA'Ie+usX/FY@D]Asr"SHL5*e.HT15hN1>]+QSY2cb+Q&AiNmVI(J&5pni#=jkp2T#;.M5FbPgDcQ;4)rh<[)XQ2FcV_"=CTpsAK0E5gS)i&5U^t6OtLgn:+YN5L7Qdm)lMIM1p@H1O@B3]Y3+)6/6rWI?Sobj\-W!gN9'`X>cs>#q*j'WX)](5f2OV6)CrYE-U`JI`iRZac*=:V5>(/JJkB3Ja+2Dpm-LIXi0R6l5*#cZS-&j@^4U!6[8rXDQ!h4^H:D1NE;bQ@9_P>Edoh+(QBrM6jOKhdDkbq.n2>)!X9S[V<[[)pU0".PPR>c@Nn3#]u9Ll8&f=!o2L@U?P(gWq&pn!(Tl?Ym_ZSQHjYUdReTNR;40m:DN..i5?-C[GBlkB!D+5],Z*<~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001940 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1991 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-004-templates.pdf0000664000175000017500000001046712063667552027140 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 774 >> stream GauHG9lo#B'YH6>J(UG2dV2rZ[__%U:6JAMBg*FWEtLlL\$e^W;3HE9l!Zpb):GlZ#D6me^"q6(M8?YC7_`XDHqa&/S:PZ*;m=UVO^-fql#qN!4+qUXfO::qK,1cnCO#Usp-rJLf_:Mmk^WJU_66Y\O[s>.]?#uMn`o41G_G->P.*#sisl9R3t+7N$od2k08qlF;+01KbmCO;Hof0qjk1,P@$_GQ8qu,Z>=ouDjKm6aXmbq!HP+ZP$O8D\?pm?J1%@uI;dmc''h6ERr':n*>:jhf3OL]P+rL.d8kT55!hP5$n%bp4j`B=I%4KkXP3!VURZ!T@FiTm#U9m]lbhVPuY3bN,jGg$2Lbp",BH!5tBQqS>JFC*4J6d*$=KorM3^6.NiY^^=;SL,'RnW7V(Uc<"hrG$]>7A9.Y.J&SKRPerBE5[f5=cgtp#s-+_6=PA;+%qPR5hFZqap%8KVH]+^8I*B:'*j\N->6"f2DKRaH9ONdnbJW,jKWcVM6NLH;I;X0S4;;1d,SY[4e(6G7M:0!u'[@EmnP[djka*J;,A[QP[BG8k;.V2LO/=KX=\7HnBY@Q*#Y?EHieW?\bm%4aa%W^00VBendstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 937 >> stream Gb"/$9lJ`N&A9=Y+.h\MUc'u,]Jgk&mrXKV";h,Ap(+b&F#0S_@"ID(YqRtebSrOCb^56j6V:SB_jM?'2H>c)<`)JgJTo]ZBWa1KenojY<"u5u[TV6>iBm$%+]f0'AYf]Z2U]\@TUC3k6OoUHD8N9q;af\1=qj'pfD.7aVr,9R267;K;"QLo3AhA/^ns)us7Pe-Jj9l2;eDh8\3l)Bl]B;q+u7pdg:$gqUClg&Tecc`0UrH5prBu-$gqJM)#LQFliN88?m6lBL:NsNAP,C:M-?2T;WG+;j=VQ99"7Y`\sP?2N;7q4^#YI4bFiiElendstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001038 00000 n 0000001316 00000 n 0000001451 00000 n 0000001720 00000 n 0000001834 00000 n 0000002750 00000 n 0000003831 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 13 >> startxref 3883 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-para-wordWrap.pdf0000664000175000017500000000460412063667552025530 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 644 >> stream GauI295g:b'SZ:Ir#^s)+fus*X4XE$72rXmUmnAT=^R@Id,5d&F,AY$hdK1Y]=@7.!hh=ghg=eO$PD#AFO,=>I)p:*.7>!rgEK>h"PIF8ba&WnB^Ni3R\\D"m(:.b?MQmk\q(Xl\m0Vi0#Bg?TM8HGIf(OLD&+K)S3Rn6KhWEp/tt0k[WAB&Z!HLgf7u;/Li3]^8S09^:)"jm"RGX_D].J)IYE&=od*>BSr*YTeD:GmOFQ0[rk3]q6AY4F?L<6(Q>";=#r=+f5q9Oendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000001943 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1994 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-017-outlines.pdf0000664000175000017500000001274112063667552027005 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 19 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 7 0 obj % Page dictionary << /Contents 20 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 8 0 obj % Page dictionary << /Contents 21 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R9': class PDFCatalog 9 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 17 0 R /Type /Catalog >> endobj % 'R10': class PDFInfo 10 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R11': class PDFOutlines 11 0 obj << /Count 7 /First 12 0 R /Last 12 0 R /Type /Outlines >> endobj % 'Outline.0': class OutlineEntryObject 12 0 obj << /Count 4 /Dest [ 5 0 R /Fit ] /First 13 0 R /Last 16 0 R /Parent 11 0 R /Title (TOP Level) >> endobj % 'Outline.6.0': class OutlineEntryObject 13 0 obj << /Count 1 /Dest [ 6 0 R /Fit ] /First 14 0 R /Last 14 0 R /Next 15 0 R /Parent 12 0 R /Title (Level 1) >> endobj % 'Outline.7.0': class OutlineEntryObject 14 0 obj << /Dest [ 7 0 R /Fit ] /Parent 13 0 R /Title (Level 2) >> endobj % 'Outline.6.1': class OutlineEntryObject 15 0 obj << /Dest [ 8 0 R /Fit ] /Next 16 0 R /Parent 12 0 R /Prev 13 0 R /Title (Level 1 Again) >> endobj % 'Outline.6.2': class OutlineEntryObject 16 0 obj << /Dest [ 8 0 R /Fit ] /Parent 12 0 R /Prev 15 0 R /Title (\376\377\000A\000m\000p\000e\000r\000s\000a\000n\000d\000 \000\(\000&\000\)\000 \000a\000n\000d\000 \000J\000a\000p\000a\000n\000e\000s\000e\000 \000\(0~0_0o0T^\014g\0330n0\3330\3060\3530\222\00010d\220xb\2360W0f0O0`0U0D\000\)\000 \000T\000e\000s\000t) >> endobj % 'R17': class PDFPages 17 0 obj % page tree << /Count 4 /Kids [ 5 0 R 6 0 R 7 0 R 8 0 R ] /Type /Pages >> endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 172 >> stream GarWr9aUqV$jGR;Tm(`SF\sNk[,Y36eURq9JQ,KYr'NW^R:';l68fpu(IFlaG4u*C'$N9;@`SQa6\KP`Mg'C6bS\ii`Y;=YSM>Pf1*`].8?E*qZ^@dB1^9#9V:4lNXW=cb;9O3cR`P/VY.RDgmH`Gt/nGAM6Y>ut?$Q)E3m]B+~>endstream endobj % 'R19': class PDFStream 19 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 170 >> stream GarWr_$\%5$jPX:U$qImVh_k%da"mI:BM4"##[nC"@[`fZX>pf67sAXIgE.dff`*G!$HO\sDkkeI:PF7eQ`G3F6T7!P(O_o`\WGpAre-.OP~>endstream endobj % 'R20': class PDFStream 20 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 170 >> stream GarWr_$\%5$jPX:U$qImVh_k%da"mI:BM4"##[nC"@[`fZX>pf67sAXIgE.dff`*G!$HO\sDkkeI:PF7POP>kBOP&"lp"nee`Geh$;I7.OY~>endstream endobj % 'R21': class PDFStream 21 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 282 >> stream Garo<4`A1k'Lhaeq%%\L6ALY8U'*qh_8LrdOi:$(KRD?*8H&:**Z.b>b0om#jEp;N+`W9^((Ka[0jPG`5jgpPS3h+tP%!hp#0[3`4u,EDk1Q%Th4eq@4BobWg]]lOC$qAk#m58,FLmfYg;_6H?7&-A[*][q42*hUZCO7P+CBPJ-Q`-!K316Xpgk59RFoP%Oc4bH'%-SR(DZ:6=Z80:dq^bendstream endobj xref 0 22 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001039 00000 n 0000001318 00000 n 0000001597 00000 n 0000001876 00000 n 0000002013 00000 n 0000002287 00000 n 0000002412 00000 n 0000002584 00000 n 0000002769 00000 n 0000002897 00000 n 0000003061 00000 n 0000003430 00000 n 0000003561 00000 n 0000003875 00000 n 0000004187 00000 n 0000004499 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 10 0 R /Root 9 0 R /Size 22 >> startxref 4896 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-034-cmyk.pdf0000664000175000017500000000547212063667552026110 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20000101000000+00'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 637 >> stream Gatm8d;GF-'Rc%,IlNL'1bieT,S,7d[VF5oBjHju8UYT78[:=C)7-Jq5MHl$?")u\#TK1YO6q"LO!+er6i9%'!LF\\?4da+X8lZ06["HMfm*.14RtK>135HJJu$TC"F4/u@S&7LB:+ArZ5k9!Dm&>k%p-h?D/e*CN4;.H"521"ChJISN^kCOSW_VHqkaNLVrLXpbp-mdU;_@Fe;jlE">eeHMdh+5>F.p\/M$p\8\g]8g?bB6^8oUI(j0<`B_W:t5#WU-Fk(gb6a%bX>"u5M5UZ:-4(,_F-PRBodPm%^"JVm*&L(h.ialoNkr/rbNsSKTli$Pa9LF,\&Sp17Fi4U0]GN'%'/I=2QF)TLWUte53@J-)&MRW#us=k4$<=^e4ilYp#[EIXX,ET>u\aCIlp*A#9PmqcuD&L,=nqpp'<>2E^7O@m'Si^Ljgf~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001037 00000 n 0000001172 00000 n 0000001441 00000 n 0000001546 00000 n 0000002326 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\223\367y\354\321\362\222Ju\262\315V\3448<\372) (\223\367y\354\321\362\222Ju\262\315V\3448<\372)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2378 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-8.pdf0000664000175000017500000000566212063667552025216 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 591 >> stream GasJPh2[sY&;BS8G_`i*/$7hrN01,H<,F*b]kQdK+<*5`2T_tM[d)Uk4F".Jk$4Gf#Hjk;o/'h2C8GWWG.]R-ZdpVKRQ!B25^bEPo!eh9'GUN:sD)\m,#"LhP(Y:%j[lR3G`)i)$&SMeg$Cl+a+oCUau6GH:AWWd^7/^Uh?M4Sk]oHagflgRKQ^n+L5kXi0MSn'eendstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000245 00000 n 0000000410 00000 n 0000000581 00000 n 0000000756 00000 n 0000000915 00000 n 0000001193 00000 n 0000001328 00000 n 0000001597 00000 n 0000001703 00000 n 0000002438 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 2490 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-01.pdf0000664000175000017500000000362212063667552025764 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 115 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`1,I?72-)Cc1tON^#g$)nn4:gGa]Abo0?Ql6do6Up;@(YOlVZU%!W]l;'T)~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1478 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-translate.pdf0000664000175000017500000000364012063667552024776 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 129 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4dF2&#a\iDl!c*=c2E([VNPu#6@jAW5..D6X!/oGQQN~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001441 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1492 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-04.pdf0000664000175000017500000000543712063667552025775 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1054 >> stream GatUs9lJKG&;KY9nfRQ2-o/F#rUQWu,WJcj!QY^i#YbZ*P*Dgqr-``Nn$nCk7V\trmAmMJH$9+eiu"WaO(j)Nm?ROP<:<$hAZT'A/)r+WQ5AiHE^%+)chOU%chRu^=\!,X<$aOT+#*JNf"0!`VioVG\Q<]%[YN,@g)eb1bDYYf>2H4>]Cm/+]"d"m_lklFkOROd8V=j*.ps!2d0'K6LggV?T8M3R^A_Xa)NAT+kYVR:N@!^r*^:Q97'Y7Of"Obm%i;VDEcpkk5*S,2[M#8OTi$lSUUU<7.ROHbWB9\(egRnb2LW*g(,tO;co=HiT!k[K%Qc;(Rj^A1F);?5[:gIFoMu@h]:bEeV,g+@)(1=o^u8MC"KJ`QH.ZJb!=BB=$?`Z?3])X5fb*3g?9IMV/WGSZ"mf7A!n[N_ul6R@UpFC)^MV;U+a=3'rlh:JC`;-nEd0cV&7@YsF`La@*3M>0KAqKY@)CK#["#`[/>`JPc3m0+<\r+BJg4?_)ZQ:/Y(,dMl$Jj_4,QXF='@QdfoBeZrJ*fH;W;@dY?5(Z6lF0>V$N<.6NZirrK.UIth]6L2*?PL,9oOQkC*&1##;&LVaba[Bm&]RBf]a#KfJ.)d=Gn?ZkMDO*UZcPXdW^H>J==g`!F4TF;#~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000002354 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 2405 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-barCode.pdf0000644000175000017500000000553412032774153024332 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (anonymous) /CreationDate (20070415125446) /Producer (ReportLab http://www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 964 >> stream Gaua?heNol%*.69mXLTo/XT9gR8!0To`XeNAO0.?W4!HK]jb@HpW_"?DsRd: MY&=?hTdM+SXCb\3DA-+YlF`PQS+#7^;,DdL*$^>3">?)lX(Bq*Fh\p\ZcmS?"$XKOh%)6_oj=9L1074+O?cdqB+WIS([ f:!30mDssNF4\o!FRZS#"O.ek-u5&(b)jN, P7WUle/D-aCJhE-!`e5l9qc%KAh+.S3D*La-um@8SJ&n>TG!PhN5.U6,G[%[ PGg%j$70HAZ@MSi5u`=a9$$ ejJf6*?8EJ]kAN\df%Jg`M_%??'Fkgs)[+D4QZTqkOB0:6oK<30O:POF:eDWal2bG;qPC4-UpWEdReo[m2(6H'A/X$..e/W`]4 \ET(a=1ht4b,m24aR,!e77+cs'5I^eBT12OE<+Y'FO@*7H7$:5UCg7+!mO&D +^fAV7DkJ;]=@".,t0Im&R\&8BYiOkrK%]-LY6adf8@GU'm-N_iEV#h]FIDP X#h"rV:`rN?+6J`"]MI7>H[L;d(i=3S1=k^/3Dh@6)l;:/f64nc*,_$$l@\) 9M3cI_2UV4=DE(@COUGA;D]Apj6;cg$,?t50aS)3G*Le!2k+C)NgA_9lt7qf **[b`r4m'!J#0='\W19GI'\7MIX$2YEQ>Gi"1WQII\Xg`^E+$m)cWhJgGi0B 8pc_/?45H@GhiR&b=Hs?,a.;rhcY(3Z2~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000553 00000 n 0000000830 00000 n 0000000964 00000 n 0000001160 00000 n 0000001265 00000 n 0000002373 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\)=\347\034a\362\036\313\203\3164\375\270\376/\016) (\)=\347\034a\362\036\313\203\3164\375\270\376/\016)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 2424 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-indent.pdf0000664000175000017500000000543112063667552024262 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 634 >> stream GatU0_2d5''YG[\%s+Ps'!RReUoJ`C[A]@:WKbRI]tkj@:0\dFPeXD=!b,"6#S[Y614D%Nh?8G0]nl^4CZ%4jA55B"=Lc+]:QT&u$a2i_(=8<"T@j:1\dFW]"\DtDWPA'1KkUlmBMBV4&dAk3l".nm[C'-s^m3i2%@sQ`WSao@+dqTaKjqUKd9QEaEDlY`u"miO->j9E&@QIBU]P``1ZYrb`KtKnVuQR*Lj4(n'7,'&LbDVq:o?0!`jY3Yj+;7B,V*XXpd`VGG7kD&J8b"4JWG?8*As"#l*i!W~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002305 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2357 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-textField.pdf0000664000175000017500000001527012063667552024733 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class PDFPattern 3 0 obj << /DA (/Helv 12 Tf 0 0 0 rg) /DV () /F 4 /FT /Tx/MK << /BC [ 0 0 0 ] >> /MaxLen 1000000 /P 5 0 R /Rect [99.2125984252 649.133858268 240.94488189 663.133858268 ]/Subtype /Widget /T (input1) /Type /Annot /V () /Ff 0 >> endobj % 'Annot.NUMBER2': class PDFPattern 4 0 obj << /DA (/Helv 12 Tf 0 0 0 rg) /DV (Default Value) /F 4 /FT /Tx/MK << /BC [ 0 0 0 ] >> /MaxLen 30 /P 5 0 R /Rect [99.2125984252 521.57480315 240.94488189 606.614173228 ]/Subtype /Widget /T (input2) /Type /Annot /V (Default Value) /Ff 4096 >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Annots [ 3 0 R 4 0 R ] /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /AcroForm 11 0 R /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 177 >> stream GasJHYmS?5&4HC\raA?o(2%f3H^D&Q%1&9s"/6T/4LI/bcSkt7[?6#SB&4c^6YPh7!g\^h7j*Q[+DWNMMm\ki0[T^?Q;#Q;Km-uEYmiNu;W[\th'lY?'m+Z<.]1r7HA9^o"lbIK*!f<\"P:dEfNdm+$sNR],`#k^mK;H%#\EN-bLeI>~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj % 'R11': class AcroForm 11 0 obj << /NeedAppearances true /DA (/Helv 0 Tf 0 g ) /DR 12 0 R /Fields [ 3 0 R 4 0 R ]>> endobj % 'R12': class PDFPattern 12 0 obj << /Encoding 13 0 R /Font 14 0 R >> endobj % 'R13': class PDFPattern 13 0 obj << /PDFDocEncoding 15 0 R >> endobj % 'R14': class PDFDictionary 14 0 obj << /CoBO 16 0 R /CoBo 17 0 R /CoOb 18 0 R /Cour 19 0 R /HeBO 20 0 R /HeBo 21 0 R /HeOb 22 0 R /Helv 23 0 R /TiBI 24 0 R /TiBo 25 0 R /TiIt 26 0 R /Time 27 0 R /ZaDb 28 0 R >> endobj % 'R15': class PDFPattern 15 0 obj << /Differences [ 24 /breve /caron /circumflex /dotaccent /hungarumlaut /ogonek /ring /tilde 39 /quotesingle 96 /grave 128 /bullet /dagger /daggerdbl /ellipsis /emdash /endash /florin /fraction /guilsinglleft /guilsinglright /minus /perthousand /quotedblbase /quotedblleft /quotedblright /quoteleft /quoteright /quotesinglbase /trademark /fi /fl /Lslash /OE /Scaron /Ydieresis /Zcaron /dotlessi /lslash /oe /scaron /zcaron 160 /Euro 164 /currency 166 /brokenbar 168 /dieresis /copyright /ordfeminine 172 /logicalnot /.notdef /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu 183 /periodcentered /cedilla /onesuperior /ordmasculine 188 /onequarter /onehalf /threequarters 192 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] /Type /Encoding>> endobj % 'R16': class PDFPattern 16 0 obj << /BaseFont /Courier-BoldOblique /Encoding 15 0 R /Name /CoBO /Subtype /Type1 /Type /Font >> endobj % 'R17': class PDFPattern 17 0 obj << /BaseFont /Courier-Bold /Encoding 15 0 R /Name /CoBo /Subtype /Type1 /Type /Font >> endobj % 'R18': class PDFPattern 18 0 obj << /BaseFont /Courier-Oblique /Encoding 15 0 R /Name /CoOb /Subtype /Type1 /Type /Font >> endobj % 'R19': class PDFPattern 19 0 obj << /BaseFont /Courier /Encoding 15 0 R /Name /Cour /Subtype /Type1 /Type /Font >> endobj % 'R20': class PDFPattern 20 0 obj << /BaseFont /Helvetica-BoldOblique /Encoding 15 0 R /Name /HeBO /Subtype /Type1 /Type /Font >> endobj % 'R21': class PDFPattern 21 0 obj << /BaseFont /Helvetica-Bold /Encoding 15 0 R /Name /HeBo /Subtype /Type1 /Type /Font >> endobj % 'R22': class PDFPattern 22 0 obj << /BaseFont /Helvetica-Oblique /Encoding 15 0 R /Name /HeOb /Subtype /Type1 /Type /Font >> endobj % 'R23': class PDFPattern 23 0 obj << /BaseFont /Helvetica /Encoding 15 0 R /Name /Helv /Subtype /Type1 /Type /Font >> endobj % 'R24': class PDFPattern 24 0 obj << /BaseFont /Times-BoldItalic /Encoding 15 0 R /Name /TiBI /Subtype /Type1 /Type /Font >> endobj % 'R25': class PDFPattern 25 0 obj << /BaseFont /Times-Bold /Encoding 15 0 R /Name /TiBo /Subtype /Type1 /Type /Font >> endobj % 'R26': class PDFPattern 26 0 obj << /BaseFont /Times-Italic /Encoding 15 0 R /Name /TiIt /Subtype /Type1 /Type /Font >> endobj % 'R27': class PDFPattern 27 0 obj << /BaseFont /Times-Roman /Encoding 15 0 R /Name /Time /Subtype /Type1 /Type /Font >> endobj % 'R28': class PDFPattern 28 0 obj << /BaseFont /ZapfDingbats /Name /ZaDb /Subtype /Type1 /Type /Font>> endobj xref 0 29 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000383 00000 n 0000000675 00000 n 0000000979 00000 n 0000001284 00000 n 0000001438 00000 n 0000001720 00000 n 0000001825 00000 n 0000002145 00000 n 0000002223 00000 n 0000002367 00000 n 0000002453 00000 n 0000002533 00000 n 0000002779 00000 n 0000004142 00000 n 0000004292 00000 n 0000004435 00000 n 0000004581 00000 n 0000004719 00000 n 0000004871 00000 n 0000005016 00000 n 0000005164 00000 n 0000005304 00000 n 0000005451 00000 n 0000005592 00000 n 0000005735 00000 n 0000005877 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 29 >> startxref 5978 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-path.pdf0000664000175000017500000000410312063667552023730 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 292 >> stream GarW44\ip\$qC+b\V"Z)1Ub=ge#ifg*P"H]7$2HgP%<8=%'UXaMC8;ST*`[1kk_JE^h&)[T?E,#!7n_/0<[$#0_hijBtU4/G*=5*h=$4JG2*8/-Uh!]E;6hHmK'Z.9G(6gbdEML,r[[\4KC4Ec&5Z3l9="OF@@k16MD9?V~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001604 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1655 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-xpre.pdf0000664000175000017500000000570712063667552023765 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 395 >> stream GarnRbAMqd&A07L+6H+V+P7hHQ)[I@,>t=DgA90seMrX+$8nX$kLVV88/#I=4Eb>gZNELp2DOre'"DQk0*hge>D"1u!qqR#2Y);d*jOK<`@ORqh.0Lh3AaV*;O,M$pkGeE[K<;:_g"I5;Va,e>A!ACYJNU9%%["UP.9f!8W+FWt]94)s\q':DhC1ipZK:8?3L\\NQjjK'k7o![A%B5"_r?-0N@bpC[]YOet0^S4!>M4D.MHD]s"TNPgRfju1EC3kYC(<\WGGYqGP`Yk"CWo&^L/$rdC>(Z)%A%-1D,@A'!alV-_533gid:!QX^HF-7R(op-bgoR,r=Pc*&-P%!?&o+@c68An7P:!?A2o()56"IsH%5$[VHs~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000593 00000 n 0000000768 00000 n 0000000949 00000 n 0000001108 00000 n 0000001387 00000 n 0000001523 00000 n 0000001793 00000 n 0000001900 00000 n 0000002439 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 2491 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-5.pdf0000664000175000017500000000524712063667552025212 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 520 >> stream GasbX9i&Y\%#459qB()987[RHVMg*e+;baN!p#(qm#+GF@tG)<+"+&bL"]:m`,F^+JYYeis7Hu^f"l0r5U!WJ:g.OO:N5dNj?$(8`Kge+SeE/ER\B"8#XOLEeHTVJf?,BTS"(0i)ppE`4gkl_<.79@tqq6[4K0:+=+e*7m0Mkki,*S2ao)tE9@F5EcK6c#0>?$.TF\Ufp<>Hcsp[P^9qdO$N3&*)ap9`u7$RjMK!/2[.FTb,5!#C)4`mE[PA[7hZ,b7mu4k2*VD9T80bW\W:Q[ltJ#-=a-dkVFr.1)@PVT8?F/OZqppgTmn\fbJ'+A"^S%]VZfGrW'Q/'d<~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002191 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2243 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-9.pdf0000664000175000017500000000537412063667552025217 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 605 >> stream Gb"/c9i&Y\%#459qB())87Z_S\k7b\Jfu9i5]2A[*s2g-&7##-3(]Z`Cs=;HSNh&@U=n-Wg7`FmEl6TA9F5VRC&Im&]^\"WoTaQO8KDq?0*h2^PJAi)kh?/n<'>2n[aD#IY)$*D+@9pd:u\d$m_f!+hEl-<"Z0C95e*0BrSP:[@[VV33D:p?E=tq$.lt'JY&UI7>F*N/7.m?7Kml)&V#!_o'0=l3ni>c`6>3;nk:!+Ns^a9(CpRJ*7VeMipVD+q47!"g60!06ZE0*lC;Vnq1ekercZJsTbb>:dXZI5c"^edT7=4X5i'q@SKXL<-:D46endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002276 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2328 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-bookmark.pdf0000664000175000017500000001755012063667552024613 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class LinkAnnotation 5 0 obj << /Border [ 0 0 1 [ 1 2 ] ] /C [ 1 0 0 ] /Contents () /Dest [ 11 0 R /FitV 56.69291 ] /Rect [ 72 730 523 742 ] /Subtype /Link /Type /Annot >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Annots [ 5 0 R ] /Contents 15 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'FormXob.ce52f900887bbd9ff9881c236099059a': class PDFImageXObject 7 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 86 /Length 3441 /Subtype /Image /Type /XObject /Width 130 >> stream Gb"/kc\l$s&BFP1_2Dt)$d:1-71_WG5t""8d$&bf&I]R7/-[n]Ci0j46p]$_"a0tHAPLlrJ9CjJP]Q3:qi]L#Fa-T"Ac's+Mn;AA&B6[X-o?:8=&#D:N"#.Sd_Jd&9nAMZ$Rc?Cq]/Y@kGCugmI;S1MEQ=hE#?fu]AM8aaT1Fe#Q@"WD]Ve6J*7aNZ3-FN9]5r]/8)?iJrSUU\&9qs,l-cZ%,@Ga:aj1tI*.E%7]"0q@K7*%X`Af\njiWkC+51"lqO*V0*PI'PBJf1OT02\,Erh63ZEf)S^]!jfHpmVVo1#\nh"B/Yc3VT5AJc=Ij'4BjV:+2kk67ig(ZqPk)\b0r:qcXj)4V):BjW1aG9sr[">($q&@&2IVjUXKB`Q6S_#QPVQ<*!=7!gZ)uuaUP>9uEFQc49!Pn$gdSY2"9^dV)^&'O6ZPLEmUUKj=0GrtOFg]EA_)rZ&;rVG*uIo`F7LH(Ktl%Gc6>hI=B"D!/K;VVAbkh_dMaT?"DMF),S/hm>a3)l7K"=C+Ak"]sJfAU=.%EUKQU+N.i;Q//H.6[FEoi_BsN%kVaghJClIbg7+JB.Che#fJj1ZLr,IdH\qC])p?cEfgQim'seq:@jhddafm@3jBfh:gMK;$:u_Tu`Ef5+:,^BULR&2*)B/@nCjXR21K+c_NWo*aNDp9X1"d!$,2'E=2JJn8C4$[G>uV@nc,FbWK.kk;5bN[lL.ac+H'4?u]gpgIb!9C[Nt'diDUboZDk3Q6bqekZfLKir0p'T.OkEb0"GQhe^7P5tiPEKg9`>*6*8=eoGBkm.`S8P!!VW:p8uuM*7C(XQ669?@q5$Q4JD5R:NNg&#\*=Lcs_Ys-4ti8M=plM2=X[jDgXP`d5!5=A/'/D7IZWLoh%R/5#uJD-R#!Ct4c/.JK\;hPKdHbZ*&omX+;2N/bA=BSmAO_!:.d7kKp`k(#fe%"%)Bc>TQpKJ^XW)gN/-g9n9KpU)/\f1$QU>slYX%2rG"CReW\5cHb`#!.+i12ka"f!N[]nrqE:aVl=hB+OEDSh8`2^pdo%QR65*#mk%-#X[",Ofs=\_!N!>3!HV)troQI\?^9^#=7,?QpZadoGqfh>,"Q3`/l#;<4!6LL(3mqm;>D2;-DSjMNd2a'#ggd(q3&M5_iUbYsb]ja""]dcA\fuB?iiO&!^PLOi35WqkHR'-KR*aWf^n:jJn&Tb3('.eah]JEM[&j5^)dgEdO)BF`>l**+9SmWp06Tn\hjj8O#guco7C$_cFSN8udG_'JXgj(:e9P*nnOK[6iK?kn>.LPi?]flJeri[+^]1DMBV`UbNOnV1U'HA3WA`_,Z[[YiY\F\l."XWK>CNV82<:lUW2MZ6]R1"(Qr"9LlJ0]N3]b>>DbL9h[9,de1[W?HDg'Ht=lel/IrgDER(cMeqYC#aZQTG"aM>=r:+og:N9?@rW_D09;hA-aAd$\gEY138bbi'P@0Q6YOP7nqSA49.ffNT8-`cPF!35;&.X&;Js0qoSkiQG5a9P8WsU9K*A$nP[U&kMU"o>YqIs9[^M%D9[uVM0$DR/kl(\cZXB55OdZGEad#;2dKHA#SogbAU\HC\3:Ss4hN7P.K,`5-`og&N[dDq)aI.f@Q[uXZq(#J"84k7RM9GI6Eu=ob5#K["qZi86D#mOt?F/UJLHEq@EFtnV[YYJGC0N2k#UGs_O)`e)0)d_`U4<:#BZoVfh*cco3&^>XC>$l0:NDf3PVCPLkT+K[Gj[;*Mi.`B:GfhIC(l@kjVkHl1:7`XP[)fE9FEV_$!\TETGUITa(dFf,"t3A+]Y"B=CIq/8;/4FH0h2\_-'@F`\hoa*j-]Y^3`L_r8h1=p=Yqo:=/;_DBHiBuE=[u4d*$B&Ie"+Raq&W57a\Ba#YK`!"66+NaMM5$&r>Bgbs;^cVM_sYUWoa3HQEjJX@)NI.r?q0!VETqhE@j3RfpT"pBK,="rZ_6UM,J9AsiZ&.PVuI"=kH,W`(^\H^L/0Pl;f($GEt/HKdKa-Z[#mb4Qck:NdTka@p4=AMKW!n2kO%iX4a+%PsVJqh'Mg+P*jW\U+Mhj#iUt8&bn)#YWO)\+6#NT0,TqCkQIFZS_tQfq9j]iEWVSG/#.HH;1Ks+:^BgHYq798DlD2M\)Jj:bFB^hgC\o;H:%"`HcWs\CTB1n`h!$E@9Mgk%VV"54r_tmMGA@":V56%)>K12KnD(SlW7A\OSmlGX,:m0V8WqK![YP?b0[4SD:rC-*s.&GJA78Y!'=J*A3?!5Hnp!m]cU73i^-fm[`,^NS554-[-=Z5\`Bk;o;Z;nQGDC::$=t0T\E-1Y=kP3K%I"HS5IogSDcLLBO3hleVhS@CWc(mO8<;,DEi0!5GO>7RPopn9ZYXJ#O"H@C(tsj/.PI+-Y"pJ@=gj.uGFR3Z+[*^=BVXt$Cc*W1/+-B5+alZI1hBZo-/BldS`68Ql\;k-:(?g%7u7$pCe%rKe94K)B.N>\f_[4(&VtcnFh/?.eBk5GO<,P\GA;#]]3$>VTQBYBGrpH')5Y:[OJ_i^9Kd5i5KbtHR>X\kU)%s5S\FmonqYG2qrh)*9t?/cqb!YMa/8Ub@.B+9K".)ZAlu_*NdqGMqYu*bendstream endobj % 'Annot.NUMBER2': class LinkAnnotation 8 0 obj << /Border [ 0 0 0 ] /Contents () /Dest [ 6 0 R /Fit ] /Rect [ 72 653 523 742 ] /Subtype /Link /Type /Annot >> endobj % 'Annot.NUMBER3': class LinkAnnotation 9 0 obj << /Border [ 0 0 0 ] /Contents () /Dest [ 11 0 R /FitV 56.69291 ] /Rect [ 72 641 523 653 ] /Subtype /Link /Type /Annot >> endobj % 'Annot.NUMBER4': class PDFDictionary 10 0 obj << /A << /S /URI /Type /Action /URI (http://www.reportlab.org) >> /Border [ 0 0 0 ] /Rect [ 72 629 523 641 ] /Subtype /Link /Type /Annot >> endobj % 'Page2': class PDFPage 11 0 obj % Page dictionary << /Annots [ 8 0 R 9 0 R 10 0 R ] /Contents 16 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.ce52f900887bbd9ff9881c236099059a 7 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R12': class PDFCatalog 12 0 obj % Document Root << /Outlines 17 0 R /PageMode /UseNone /Pages 14 0 R /Type /Catalog >> endobj % 'R13': class PDFInfo 13 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R14': class PDFPages 14 0 obj % page tree << /Count 2 /Kids [ 6 0 R 11 0 R ] /Type /Pages >> endobj % 'R15': class PDFStream 15 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 254 >> stream Garo<_$YcZ&;KY*n*kP-+E^`,%AH4S?+L19!gY0E\g9YGh`A:_7Ei'\bl72ih[i*f`:ptM((*?"+9?Tb`I86'_+M8`eTIhB-3?aiNL[&HK3flo?=Pb`8P52G*("`O5q5.*ZOAkJ'&IF1Fb7*O\uN*FH=h6f)l-?7pTc-T2="[Tcc>0dS'">SMct1-NA1>OWoMe'q5+cup%o>T(=rV8JVt#.2])&I(u&81gb^Wd=Vt#2mfPYsHNL_&"5DO-Yl~>endstream endobj % 'R16': class PDFStream 16 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 296 >> stream GatUl]2$9u&4Lq=reF\Z7FpK]Cps\9-I%,gB]J#%!J6Z"rtg^%ck'n'aL)(cUZ8M?:hj>"D"hF9kVS*$Oh0SEZZq_K3Uu)?)*(76$n5i+R=4?b&F7^04X`CII>5F+jP:0?.]Y32jU4U\7g[I!gFs*J_.B`%AS6\C=ul=j]$=t`Xir;(N$qDQX0?VOM@qBT-TpJL&[N*!X2X*G@#EK1YPtms62t?j2CWA>"KD:-QPjl1%q2OYLO8K/f2$0ci9V+U"a[Z~>endstream endobj % 'R17': class PDFOutlines 17 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 18 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000757 00000 n 0000000979 00000 n 0000001321 00000 n 0000005012 00000 n 0000005205 00000 n 0000005410 00000 n 0000005618 00000 n 0000006001 00000 n 0000006139 00000 n 0000006410 00000 n 0000006526 00000 n 0000006922 00000 n 0000007362 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 13 0 R /Root 12 0 R /Size 18 >> startxref 7414 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-buttonField.pdf0000664000175000017500000000370112063667552025256 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 162 >> stream Gar&u]afWZ&;5BChI/aI(+X`U]5X'(W@[cIr'@+:Uquel>V(i%A=E>VA(4.2pE]j2@G^%r#4bT!6JS6Bj=endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001474 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1525 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-nextFrame.pdf0000664000175000017500000000421112063667552024725 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 184 >> stream Gatmr]*\U*$q:&Eq1i1Si4-m`m+;Y_AL$7@`"r\Xm/DKCAe76>Ca:1K]f@'!kendstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001670 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1721 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-scale.pdf0000664000175000017500000000364012063667552024070 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 129 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4dF2&#a\iDl!c*=deh`#KNPu/:@jAWU..D6X!37n"_#~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001441 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1492 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-6.pdf0000664000175000017500000000550212063667552025205 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 675 >> stream Gau1,9lJc?%#43Tr#^/W$WN7!=giihLSDtB@@(iB%6O2,/^Pdqf$"'l.+4>E;CeXg5tmK'W)p/Ka+20jU#5_l^ib=tc@E/2+2Kqu+F]#?Z*+)UPo86"6K`[5.>oEEDM%Wq%$'qqiba&CCK$#Uc@Y:Z:JIIj-eNgVJG9PB]>Nt5ms'2'f^o&3T^-dQ$mR\#p'GX1a&gF(9=UEbOMlRBmmNmeK'L-qRT(2%?#,'cfALf'j8=&mJg;tf2@n_rG<6WLuuTaQ@9A)k;o.0]'CiECbE-kr-ob''m39%ZiYY`uYiQ+$lQB/U,bBD)["B=8.7B6FVL1XU;L^XUe07"6BWORAb2r3aGQ>?npm:,Vg9:MtL-[*#<9!'`HFF&pVNH@cIm?3<=CP/]2REM8Q80W4FM-#!dC1nXKkStiPR^CX:sUTrfGnhO3))CrWN"&jmuWT\/W->O#OPM]0QO/q1O8`nH!16lm4g&.%2bD'O:QUYb8I5Hi!E>1'f8fUH[[nKt`SNZ)2=*ik6i@1suXn+CLCEN)l5C"[G(j5]$`4B":j*s+gX++0hL?\~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002346 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2398 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-stroke.pdf0000664000175000017500000000372212063667552024311 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 179 >> stream GaqKg3sl'E$q,GpmP$"b,"o4cgP$nIWl-hu8@Q-Z)1R6@"CfAs,>3!X-,&aPYSCF2!f80s,*>A.DW"[0^'g$H1KL[-O8LFD"OEe#;HrhtG;(mT+DkV+"usc0+5_.m3hP0B9(#4l9N'2[*%Q!A,cSPQ~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001491 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1542 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-place.pdf0000664000175000017500000000522112063667552024062 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 467 >> stream GatU.9lGY<%)!nU++.U_QKF)^Oet^>[[qZ1RNKn@;IBU\!`T-u+HupJm9rp;i]%JGg!9e?]nlUk)8M/bfn'3tTXR0Gih52f9tO1!5YbE2&`\HNQt(u++>kJJ:WH$5oeoWI7?U0F.EjN%n$93"X6-jt&$$GV"8rQ&h?IS2FIg&TasB>O.L?tH-'7aRmsSp='0\]S8AFkhruLlDf3,]1_0(43(0%]7+L?SaAJf58"CoA1YHN6SPVt+\/LV1`1^2W67,U5^1;&$MK!7,)^n.k94+TP3,'XR'?!$R6.!APhLY\.^aa?L`bBuUD2O(=WfSX;:T&lp1&@P/-ro*;*t4saJX@),]>(+0Ch=$El'Q1iZu!*gKC&n(L6,.1/?gh~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001436 00000 n 0000001541 00000 n 0000002151 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2203 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-022-paras-oas.pdf0000664000175000017500000002143212064152364027011 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R /F6 8 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font ZapfDingbats << /BaseFont /ZapfDingbats /Encoding /ZapfDingbatsEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 15 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F6': class PDFType1Font 8 0 obj % Font Courier-Oblique << /BaseFont /Courier-Oblique /Encoding /WinAnsiEncoding /Name /F6 /Subtype /Type1 /Type /Font >> endobj % 'Page2': class PDFPage 9 0 obj % Page dictionary << /Contents 16 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 10 0 obj % Page dictionary << /Contents 17 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 11 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R12': class PDFCatalog 12 0 obj % Document Root << /Outlines 19 0 R /PageMode /UseNone /Pages 14 0 R /Type /Catalog >> endobj % 'R13': class PDFInfo 13 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121218153938+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R14': class PDFPages 14 0 obj % page tree << /Count 4 /Kids [ 7 0 R 9 0 R 10 0 R 11 0 R ] /Type /Pages >> endobj % 'R15': class PDFStream 15 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1376 >> stream Gb!#[;/`4!&:T\)s"JS&S>tG]Z='o$LJ+h::.j9rRAVMfCO7f.0Y">lFT(m'>n"/uI7rq*=!b._n'$1:bVq=/2H]`eld*Ngi')hKW=:b>0ER^U#2o[^)I?eLI=7s<.+l6pUGhY21H_nNEN&2eJ:VWA&?]I:l*goopjNRD-md*;6jad]?[egC#/\+tr(2\=G^YjnR&YYug4V3MJhceC-j7aNH@qlL>^`t]lN9d%'WVeLJ'UaUZ&P42q)k0.@Nd'rqCYu(q]GPe&IR2/P)/IKJR:fhLdC:%tskb1HdfiT(M+LYoC(WsQ@gV%ndU:_$a<9AIZH"6PTahbRc9q1X\TV^d7fA%P6l;8Kfa%.dr$4Eq\Z5-=PV=N>/1jBsn@E]oP@.Zcogd[ZT&TT^[>-&7uS*Ar+dY04:#$Dk6ZW(W>9_H4269NH*FBZ<`9ToPH6kASN;=?4Q1_#%#d)Vu&4lQW%:^5nL*21"GfrofkG16h'=#Jb"U.D2M@[]g+bOu?f:AEUYYDU5XPXe%["#Eu!ljuW>]b$,MGSB#Y,[6]+m(i(@kIDW'gb\,.gmtLGg`ngQCXW)"Kh\.LGXn;4q(+oF)d4oIUoHOoe's_Q\4jETE)"=lglS1&TZ#3.@*Y\nh1pDg@@h+H,O"$bT]n4,BC3G6GPhbN+D6@C.BC0cc,R")p0!7tg?Y`!NEY(!A)]qs4;F;=QRmDdsBfJ"B:/U+f15m`IZGO1k.Q-3%X#f;sbfSZW11W#50Z[b^,)?!E1l_dR2Wa1l&1rM-oq9TQLJS6hFf"paauF/lY%XqL<*P\g1Z;eh[ifOemSm^Mendstream endobj % 'R16': class PDFStream 16 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1469 >> stream Gb!#\9lJcU&A9%PIi,,>W.hY,W^V7%d>`+b;;'M:8Y[PH'jkKOlc--Yl_87k*IQjn7Xoioq6\-uuk!0(^&DY-@_<&YnQPXCr!VPLlUVnm&\3LEAAp_H4i)pfu.iX5I'>_@Ch4,THfkTbkV%tViYZ]J#=MQ25[l4AeV6hquG5S_-dl\id/0fDl-:sH>I%BC2BCK!t1k-UFMhc7i6Pf\@aUL/lVtYFcHpNfl@U#B+/PV=r?u(@M5c(c.]CGpCWENn4:LT3f<6g1lD>&XmG(oI^I@^g;8!5&NO3H=+p0S?Wjh$qBtcYsW83uCuX4+c;b]aQQs;p0Qg-,VehE`*&^0l,:8hXTt8lIeGmNL2gc]o#ZOG%/GTtWO2j259A5ki95cn*/B4Q6do2<.NuEfV):Pl:H7N\a$;mmf0nOmQtVrpi&T)L(lI']SekU-pnjjZA%i2qf=[:uZYO*t3]S=!oB:/EGsT[\OC03T$B2LN3AoHR+&G/&+X(Ul5h^!ST\UiSnGKWFfOS=O@'JMlL("8f3jE8mk*>Sp4WS"s7nH$.,N?:!hVOj!6E:=R:iUqk%>0Ff<`/SVeD5]A?Rmll=4tENI0o!6+]5q-!X-uuIHOJceE\3gdEDF%"?Ur8JC_k-[FuP^K+dO0)9s7h:rhPts!,>GWP75=h]gTrN$0Sc]+^@V@lQ0?V-Hi9R28bLB3%jQM@[7;i?;)8EZ*]Z7Y9@$6n:V-gaola=_Z4*pi2/S@?,QQRkT[8l)M87--GFG"aW,#kp)i2]fTT;+?qC_R7hR=[r[iX^?D@o^VP:cC8$#SlusKZoiL0fK+4h7W;FVY)67uKS9:o2HWt0_B+[X9c;8#aBs66e66(&oZa58)hp8u`'mkXMLftFQ'BH!OHi'fbr)PaWJQH+4Tm+K_.mQ(s)#0,M1Rp\gCg(*2)/M*Sh5blgdD%.lM>j9_4&#LMHbPTmak:/]b&+=a[Nt.Ng3^,RibL<^]P_'\!\Q/*")Z3#;#~>endstream endobj % 'R17': class PDFStream 17 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1407 >> stream Gaua?D/\-!&BEZub'+]uhU#2?GLqmTlC0W+3JmI``&ZYEnn,]G\2?0WYEO"!rasbX5iR-,ZH1oXaoj6kGuANi=.J?&T)(Vn`QJ3q)l97d_$APSS+,!YXPJ@Aqac'Qn;.%-(*bRJ7;Dk_aS\l57!/IA[An?u)R3i$e20Oj5aesCnqTik;jFWu`UF(s.4IHn88p/S,ekQOglDHj(lC>?kZk`jZ&fgcMEh9+m]q",G8h%fL^(M:cF)*:#S*]nnJ$2t`DMip#42!qE/4a:Cu-ts's7?[D4Ub\boTJZEbOsk=^/&\%ZZ+NX@1Ps;&a+N=/W%8PJn0oK..<6;#=%:dTgEk2G`87<1A0/]SS]MX1raU8s4$R=6o+W7O1msc&=l?sPONosZ"#*qPj&96#YcPS#]RefWJVA;^S/,6;j&Pae'[rUF-oItsXKt5B]W'Yd&I5.NTd&/O!1Qq<3"SWI[#UnYuD\Cq+o:hnddVpY4)L$I?cFpLFX,;G;$bJOtcSlB^)\?m0dC[Q]/dUU[bT`%oR_*h%(*2O/-FS+*T%1)tPueJYGBfRtWPX(&h[S1*[N%'G>7_S(OS2pKXf8T!5S/;J]+NA0AEjdWm@NW'7cTB3kPY[,%+"39ChG%pJ>.;\/O3+O*7CFE3`<4hVM]<;QASZ<3HF+02IPcOl$6.Pdo:B]sKH?4,K1C<=<&P%0*g3+3$M1@Zm98hJNm3`*h,?]rc[VL">(HfW+a5&6ZY!7m1MfH*ud?KDp,bm3TET?Y!*_E'%T'6k<&Cr%)r(PRU;+3!jY'-DT%!-"1G`8E$_?;`+l8pCd5c<6OP^7C.<,r8>ku9&:6)T[8g),f>6eNA#q6$\+:/Cik?ots#~>endstream endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 462 >> stream Gasaj>>N*i(k#bss)=]h:8;=d$4Lh`7S-9-&a?&DgF-R;)r'lVgD5ZO9JgORIHRup3Su9:-U4@"3!UKb3^Ws8_.On7A`+dqF5'mPQKBSdTK#R!T&Cq\2LT6tE!Hf&kCMf8hHreFm:chYRMM)eg'V)gMc35$^d#XgFc3MA($JT(=I6OVTf;2I]`>IU7&q71Ff;@?37ih]M)s>]Tlt.C1\ApC<4R.kX0PHX"CX$=B]?7Z`IX*?Odtn/aR+fqVGu-[4$s53.4sQc%\KX.ijjj]%;'120[%hg"fekBdO5c28jB&\_3m4?KR%]uHW+4iCEc]:l7cP#[R"#RD(\[k/k#6QPd%9.bc/(_~>endstream endobj % 'R19': class PDFOutlines 19 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 20 0000000000 65535 f 0000000113 00000 n 0000000269 00000 n 0000000434 00000 n 0000000623 00000 n 0000000794 00000 n 0000000955 00000 n 0000001129 00000 n 0000001410 00000 n 0000001585 00000 n 0000001864 00000 n 0000002144 00000 n 0000002425 00000 n 0000002563 00000 n 0000002834 00000 n 0000002967 00000 n 0000004486 00000 n 0000006098 00000 n 0000007648 00000 n 0000008254 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\\\235j\236!`\255\002\350\332z\003\317\346\3325) (\\\235j\236!`\255\002\350\332z\003\317\346\3325)] /Info 13 0 R /Root 12 0 R /Size 20 >> startxref 8306 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-grid.pdf0000664000175000017500000000371312063667552023727 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 172 >> stream GaqdZ0abfP%#*Zri&eRbW0XR.SdXf4/\XND;q(W)9k:dG"QJTK,XshLD/VN*kdWbnSC-5%+[LTdkqRQqW#>=TfPsA\Ht$Iq2lhLte^;OE[>AN*/=IQ\#"k;-X9R76*Tb;#rbCh,1:?AtmSYK0[rth"SSmh$p%l]I"(M$+3ZpK,~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001484 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1535 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-outlineAdd.pdf0000664000175000017500000000510212063667552025064 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 12 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 6 0 R /PageMode /UseNone /Pages 11 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFOutlines 6 0 obj << /Count 6 /First 7 0 R /Last 7 0 R /Type /Outlines >> endobj % 'Outline.0': class OutlineEntryObject 7 0 obj << /Count 3 /Dest [ 3 0 R /Fit ] /First 8 0 R /Last 10 0 R /Parent 6 0 R /Title (Top Level) >> endobj % 'Outline.5.0': class OutlineEntryObject 8 0 obj << /Count 1 /Dest [ 3 0 R /Fit ] /First 9 0 R /Last 9 0 R /Next 10 0 R /Parent 7 0 R /Title (Item 1-1) >> endobj % 'Outline.6.0': class OutlineEntryObject 9 0 obj << /Dest [ 3 0 R /Fit ] /Parent 8 0 R /Title (Item 2-1) >> endobj % 'Outline.5.1': class OutlineEntryObject 10 0 obj << /Dest [ 3 0 R /Fit ] /Parent 7 0 R /Prev 8 0 R /Title (Item 1-2) >> endobj % 'R11': class PDFPages 11 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R12': class PDFStream 12 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 99 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TPs#b@LrZCLj,OCgq!cVI4:RWb6-_@LUc.b8!QT2%%!$!#OcA[K~>endstream endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000651 00000 n 0000000786 00000 n 0000001058 00000 n 0000001180 00000 n 0000001349 00000 n 0000001531 00000 n 0000001658 00000 n 0000001782 00000 n 0000001889 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 13 >> startxref 2102 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-004-fpt-templates.pdf0000664000175000017500000001046712063667552027727 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 774 >> stream GauHG9lo#B'YH6>J(UG2dV2rZ[__%U:6JAMBg*FWEtLlL\$e^W;3HE9l!Zpb):GlZ#D6me^"q6(M8?YC7_`XDHqa&/S:PZ*;m=UVO^-fql#qN!4+qUXfO::qK,1cnCO#Usp-rJLf_:Mmk^WJU_66Y\O[s>.]?#uMn`o41G_G->P.*#sisl9R3t+7N$od2k08qlF;+01KbmCO;Hof0qjk1,P@$_GQ8qu,Z>=ouDjKm6aXmbq!HP+ZP$O8D\?pm?J1%@uI;dmc''h6ERr':n*>:jhf3OL]P+rL.d8kT55!hP5$n%bp4j`B=I%4KkXP3!VURZ!T@FiTm#U9m]lbhVPuY3bN,jGg$2Lbp",BH!5tBQqS>JFC*4J6d*$=KorM3^6.NiY^^=;SL,'RnW7V(Uc<"hrG$]>7A9.Y.J&SKRPerBE5[f5=cgtp#s-+_6=PA;+%qPR5hFZqap%8KVH]+^8I*B:'*j\N->6"f2DKRaH9ONdnbJW,jKWcVM6NLH;I;X0S4;;1d,SY[4e(6G7M:0!u'[@EmnP[djka*J;,A[QP[BG8k;.V2LO/=KX=\7HnBY@Q*#Y?EHieW?\bm%4aa%W^00VBendstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 937 >> stream Gb"/$9lJ`N&A9=Y+.h\MUc'u,]Jgk&mrXKV";h,Ap(+b&F#0S_@"ID(YqRtebSrOCb^56j6V:SB_jM?'2H>c)<`)JgJTo]ZBWa1KenojY<"u5u[TV6>iBm$%+]f0'AYf]Z2U]\@TUC3k6OoUHD8N9q;af\1=qj'pfD.7aVr,9R267;K;"QLo3AhA/^ns)us7Pe-Jj9l2;eDh8\3l)Bl]B;q+u7pdg:$gqUClg&Tecc`0UrH5prBu-$gqJM)#LQFliN88?m6lBL:NsNAP,C:M-?2T;WG+;j=VQ99"7Y`\sP?2N;7q4^#YI4bFiiElendstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000760 00000 n 0000001038 00000 n 0000001316 00000 n 0000001451 00000 n 0000001720 00000 n 0000001834 00000 n 0000002750 00000 n 0000003831 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 13 >> startxref 3883 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/symbols-set.pdf0000664000175000017500000001032212063667552024504 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font ZapfDingbats << /BaseFont /ZapfDingbats /Encoding /StandardEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2097 >> stream GatV"lZ3b/'ZIhb.f[E]_LSrVgG;"KX_"IoiX8UoIGt$)a9.Ml#XQG]hsTk!FE]KadsX!\T_O[kc^qbmbheTL3\3&C=oLRLFHOm-WiauuU6TkERIj1sjgJp7XU_t79&GUH4)p/f[Vii>$nje@eUBi,9">4TNmt%b3\A&Bo'lW=ddFMY4'B:E>IDbkF;.aXh=aUWk'rR"W^@nH:jRc8Xs2HmLqW/?OT?nIa:/IWNUJLPEe@7\6fFoaQVJ/g7YWa.95[Q5=];hAnthP'gET):@7tK7$JE,l11It>Jo(3-70?H?O;el8C9PK+P:rCNjAc57>T@)$O-_%oeR'OJh_[naI"n@-D:jsiPX7:B^ID=j%RNYDn0s6L1gs$p:^X1MJ";sSb9Z'93JrR@@7tK7$EB5?o80*`+-JpRM3.-a\+a)G#)jE[heIgHp>:.GJ)&Z8)%CnbJTF9piP:r?&)gV!pp71@[:'jGJ2W$2cGNm5kaG=\8ENM\"1t,eUDE:duT%24fD#@lX_*L9rG;5+)lOSOo>M;B=G!VuuGN'CMK9Qeg4]JS>BD0I`K"4K0c8P/]naQqH2B.5bfKoEgSc*pR`IOHMCg]/V#D8)3cm$a0?EW_]1[KY;!L"BmHQ&ign[4T2&.(g]LX5!\%X)5S8P45?5XE"E1XP/%X-/jlKXE"E)XP/%N"kcCDWlbcYU1t'X/IF_.&QM")j&B6UCJjk`PbrI'(oH#7b9Z&E;O5H7@$GEt/X(j[8Pprr!)]c@[nMn>P+kon!2ELtTPIF"\I>>*E>YP+!aU`$gJX9Y%:GE8o.?/Z?V"$D2h4c*bI:.XIOR^bg]0aA0&JEMG"7Ef\H.Xe?/b,`KjVqu.NaFCW[lH(.(h'!WS@JCW@m'`8NoRAg3PPAfQN(^@:6kT_hSW;Y`G4;17[Ge*DGq@T5OP@T6]JQ_=4YaAD[p"AjO*95.&H0/A&=X4[-f*d3gD?,;HO+ObE;R".M@'E*--#:+jZGm>=Z:50gCO8sd`XQ=_7LE^Bq_GV"a'lDG$AE7#;Rj^U@(8Z5V/$U,;pa1YoQCR)`Ia7)\E;-IZm)VD?*$^,*]ArPu0G'%T>80'XKrd@Q&*(@l>NqZOME#lGB'N)o.u'#R,(kV4`eeJ=ql-,AeeQ'1UEi%:IURKVGmk1=X=a@FRc"ZF8YeXGn17XGmL>D1>)b)`N:U)ekPFr@+R[g]4-eUbUZu;Ms5=!K,W&K=pS)&T6XX-uC1dg\qfU2Em2m2UW^eqc='YpcJ]780c(?58eH&1ELO?[CPfl5m=Oj~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000743 00000 n 0000001020 00000 n 0000001155 00000 n 0000001424 00000 n 0000001529 00000 n 0000003770 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3822 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-alias.pdf0000664000175000017500000000457412063667552024101 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 221 >> stream GarW2h$Sa!&;BQVhr.gX60_.,"q_Oq?$$b($S6"$,`tC=hmiYR&[Uij%VO)_#a#n5qcj5-6'r7?+W!rp`/l5;id23nUL'EDOuQIPS*C3;-7Z3ANIo-4od`%i>DFnB:tg4bY*ou821]"@m&dS>m^\)<@5dSn7Vmoe;;^27VO2dW[p1;)Icra0k_?TsS=c;]dMrU`(QAc.Q,R@rdbIV2I.%M_L-XM~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000001892 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 1944 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-linePlot.pdf0000664000175000017500000000723612063667552024574 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1505 >> stream Gb"/(991#N%)*\MJ'bG0Y_oBgNX:ja./)#C%k3AWRdIQ*_G8G_d/Nr8U86b,a7dg4"/itC]q,f^P+P:&P"]7-r^$OtgG/DB_k)>]$maU*`^"Ui2Ri&GB"c>-P(CjuJP4Dl7>Op/#O@ccZ$47&\:+D9Spe6Lpc!PB^\ddPgH;^bZcr'^H<$@uCM&6[g,&Q&T-O$\U/*KT=^TV^m%A4hZ9mK2B*39WD#?QldaG%,jQkm[1)OZ>TQ1S`@Fpk8I9ofH%k?"eAg$mP'=\I1[.Ao8l<&UbQ:=,`f1A.K,qB.i"Z<-Rm#>fu/*jWutM;Qc$1a68sb\N[%+7-@gtc+`bhXb!AqV<#V=-+R\(0lb;CV?HY5JO]XiROZ;YO)-SER+@]U-:j`X.hpH9;oO8d>YB!49P[?<@l0P"*^rb>9buaumqgHV;oPP?aV#X02(cC68%Z]K1#0^kUE>VfBfO??i-9jNJN+XVdi#Z,hK*1oYugGmaa+Ul..A_3Ct7'8s!:-k7)Ki.kb-i$,i/m,[mkEGB(.N(.&/ZLc/'1fP7C"]ugHq\99c*Up3SMa`$W>IKe(-cohDU+TLQ0-X$SYjWo]M)F\WX@Us8F*;#-M&;Zp/O:5q,['8VCoa:&4S).ECdlp/V?c/Ib,1('k((-E_,k4p"%,Wn\4.Kj$&4@#-El.W\4[5K-U^G&^'I/MAc!S@HA`F\,>;HtTfOq:;Bubs]"/OTWo>5O'^jR"$=a9=:%%66URYdnn]/R:gOdOaGk6?1PcN]ao(c<7^Z3mZFG.6)V3:/3_$4SEM!cu7;LRmW&HXgrdFe_]D^jYrH?\+fsJhK"r8&n@XWtTJKpI&:LRDkBM0B5P_5;`g/:FFl=`g2D5j9^FgS!*[a`]j3nbrb7ftB2_>g@-[Zo:-P1if3>=rZ1kE=Os`)qm6m.2`:m!mZ6ocN/r0M_~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000003188 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3240 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pto.pdf0000664000175000017500000000646612063667552023614 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 459 >> stream Gb"/cbAMqd&4Q>Undfq9/(LnaGsn[DW7n?,73t+t2jf8U=2F.]mqYTG8t(Q1]8MVUn/W$PY/E"jZ^AG0$fEq[@`?,BU(g94J`m./d[JV"JQ(m7%rPdIMj=11l9oZF4&tp!FG['3arT#r]ai\"3j9&84.tXTV/;FM2D(X:`s*iM+nN?mDm=)O/$u]fBB^eNqU!SnWKFT%<10[S-$WI)eL8KoJPmh'lIiK"'GaRj4TE?\ao$*W-\nqJIM/'(E9m2JH~>endstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 245 >> stream Gb"/_]*cD/(kq]LhVi9OLY+hX?<0?>*=@&mOXc6*;*4RJ``QH`MMl?u&-?50Ij^!_\j_)*'Yqq%\fd)fh1E#\YY31lB.)!'\Jn2[RRC\NEGmh[hPa+0l;6]lH,l3;1d+dX;'aPt%bj3X[]*_OuL-<=II"n`CAWg/kP#QoD'<."@:."dhKjLOUf)$)&I]WeQH$k&qpsIH,Q"_ZN-#%j=.SX)+'\7@=l_+src>IhE)bU~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001020 00000 n 0000001298 00000 n 0000001433 00000 n 0000001702 00000 n 0000001816 00000 n 0000002417 00000 n 0000002806 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 13 >> startxref 2858 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/simple-layout.pdf0000664000175000017500000000427112063667552025035 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 180 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (Stephan Richter) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (Test Template Document) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 207 >> stream Gaqcp9a\a&%#+EXF,/q]$B@jCVk'r_\EHBjGQ;RaBeB&X$\tDk8jX:H?h+grR=]I-%)>_Z3"q)k*QT*'BlF]e5&b=#`=NWV@H%8_V-t;[JZT7&Qs/:PqJ&Ijen(XLBPh$G*Z7L,ZoIM)CJ#O_"W=UePAdDu?gVHMHD.jUI6V0KGpeDL:iRSTr].I=o>N'"ZHL!fF$coLN?0o.~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000838 00000 n 0000000972 00000 n 0000001252 00000 n 0000001357 00000 n 0000001706 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(fp\327\366\355\214>\024V\250\000\3111t\316\270) (fp\327\366\355\214>\024V\250\000\3111t\316\270)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1757 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-08.pdf0000664000175000017500000000373112063667552025774 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 186 >> stream Garp%3tB+]&-UA:db\DI$HTB"8K.tLW/tq*#q-DnmU*p!nk4Nbfh_KtO3K:lu0F!nU5T']:,([IK.,<'M]J_U;>7lOQ~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001498 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1549 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-registerType1Face.pdf0000664000175000017500000024345312063667552026337 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 5 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'fontFile:/opt/zope/packages/eggs/reportlab-2.6-py2.7-linux-x86_64.egg/reportlab/fonts/DarkGardenMK.pfb': class PDFStream 3 0 obj << /Length 79804 /Length1 6682 /Length2 72577 /Length3 545 >> stream %!PS-AdobeFont-1.0: DarkGardenMK 1.1 %%Title: DarkGardenMK %Version: 1.1 %%CreationDate: Wed Sep 10 17:07:49 2008 %%Creator: jonas,,, %Copyright: Copyright (C) 1999, 2000, 2004 Michal Kosmulski %Copyright: %Copyright: %Copyright: This font is free software; you can redistribute it and/or %Copyright: modify %Copyright: it under the terms of the GNU General Public License as %Copyright: published by %Copyright: the Free Software Foundation; either version 2 of the %Copyright: License, or %Copyright: (at your option) any later version. %Copyright: %Copyright: This font is distributed in the hope that it will be %Copyright: useful, %Copyright: but WITHOUT ANY WARRANTY; without even the implied warranty %Copyright: of %Copyright: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See %Copyright: the %Copyright: GNU General Public License for more details. %Copyright: %Copyright: You should have received a copy of the GNU General Public %Copyright: License %Copyright: along with this font; if not, write to the Free Software %Copyright: Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %Copyright: %Copyright: As a special exception, if you create a document which uses %Copyright: this font, and embed this font or unaltered portions of %Copyright: this font into %Copyright: the document, this font does not by itself cause the %Copyright: resulting %Copyright: document to be covered by the GNU General Public License. %Copyright: This %Copyright: exception does not however invalidate any other reasons why %Copyright: the %Copyright: document might be covered by the GNU General Public %Copyright: License. If you %Copyright: modify this font, you may extend this exception to your %Copyright: version of the %Copyright: font, but you are not obligated to do so. If you do not %Copyright: wish to do so, %Copyright: delete this exception statement from your version. % Generated by FontForge 20071110 (http://fontforge.sf.net/) %%EndComments FontDirectory/DarkGardenMK known{/DarkGardenMK findfont dup/UniqueID known{dup /UniqueID get 4242151 eq exch/FontType get 1 eq and}{pop false}ifelse {save true}{false}ifelse}{false}ifelse 11 dict begin /FontType 1 def /FontMatrix [0.000488281 0 0 0.000488281 0 0 ]readonly def /FontName /DarkGardenMK def /FontBBox {-23 -677 1915 2296 }readonly def /UniqueID 4242151 def /PaintType 0 def /FontInfo 10 dict dup begin /version (1.1) readonly def /Notice (Copyright \050C\051 1999, 2000, 2004 Michal Kosmulski \012\012\012This font is free software; you can redistribute it and/or modify\012it under the terms of the GNU General Public License as published by\012the Free Software Foundation; either version 2 of the License, or\012\050at your option\051 any later version.\012\012This font is distributed in the hope that it will be useful,\012but WITHOUT ANY WARRANTY; without even the implied warranty of\012MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\012GNU General Public License for more details.\012\012You should have received a copy of the GNU General Public License\012along with this font; if not, write to the Free Software\012Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\012\012As a special exception, if you create a document which uses\012this font, and embed this font or unaltered portions of this font into\012the document, this font does not by itself cause the resulting\012document to be covered by the GNU General Public License. This\012exception does not however invalidate any other reasons why the\012document might be covered by the GNU General Public License. If you\012modify this font, you may extend this exception to your version of the\012font, but you are not obligated to do so. If you do not wish to do so,\012delete this exception statement from your version.\012) readonly def % Copyright (C) 1999, 2000, 2004 Michal Kosmulski % % % This font is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) any later version. % % This font is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with this font; if not, write to the Free Software % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. % % As a special exception, if you create a document which uses % this font, and embed this font or unaltered portions of this font into % the document, this font does not by itself cause the resulting % document to be covered by the GNU General Public License. This % exception does not however invalidate any other reasons why the % document might be covered by the GNU General Public License. If you % modify this font, you may extend this exception to your version of the % font, but you are not obligated to do so. If you do not wish to do so, % delete this exception statement from your version. /FullName (Dark Garden) readonly def /FamilyName (Dark Garden) readonly def /Weight (Medium) readonly def /FSType 0 def /ItalicAngle 0 def /isFixedPitch false def /UnderlinePosition -420 def /UnderlineThickness 80 def end readonly def /Encoding 256 array 0 1 255 { 1 index exch /.notdef put} for dup 1/glyph1 put dup 2/glyph2 put dup 32/space put dup 44/comma put dup 45/hyphen put dup 46/period put dup 58/colon put dup 59/semicolon put dup 65/A put dup 66/B put dup 67/C put dup 68/D put dup 69/E put dup 70/F put dup 71/G put dup 72/H put dup 73/I put dup 74/J put dup 75/K put dup 76/L put dup 77/M put dup 78/N put dup 79/O put dup 80/P put dup 81/Q put dup 82/R put dup 83/S put dup 84/T put dup 85/U put dup 86/V put dup 87/W put dup 88/X put dup 89/Y put dup 90/Z put dup 97/a put dup 98/b put dup 99/c put dup 100/d put dup 101/e put dup 102/f put dup 103/g put dup 104/h put dup 105/i put dup 106/j put dup 107/k put dup 108/l put dup 109/m put dup 110/n put dup 111/o put dup 112/p put dup 113/q put dup 114/r put dup 115/s put dup 116/t put dup 117/u put dup 118/v put dup 119/w put dup 120/x put dup 121/y put dup 122/z put dup 196/Adieresis put dup 211/Oacute put dup 214/Odieresis put dup 220/Udieresis put dup 223/germandbls put dup 228/adieresis put dup 243/oacute put dup 246/odieresis put dup 252/udieresis put readonly def currentdict end currentfile eexec t?clィZPエサ'0*Zc2NソQSュ607ムニヘ)J」Vロャヒ\Jiu沾f hーhT専茎゙/サマムZケ8^R抬、 @闕 qニk/ンニア飲k P2讚ヒ紊ニラ!{Ys.勦BQャクLュ、ーBュz[$塊シ ヒ,sh鬨ユ6告O!Bェ|ェン杙SO」 ロ出$ャn{ミァL椽・hハニsGケd/W ノYォNZ S$ 炯 縫忿モ!T粃/Pf↓ィ#"v棕・水"ョ、屠櫪濾ケニ_ レd'ユorアヤ稈27orンbJァンg0F" ' .ェワd魅!|鍮5:\゚゚i3ャ]0fリ:ン煬丸エ|蛬ニ暑)槭pタw鞭!#犹gdハ>j:ワ辰 us7。ヤc}ン'ル%ロソb4r碑サeシSヨ w?シ尖65吽チ00ロqF浮g&!凵ラヘ粽Gnル.=゙%゙ オam顫ヨzト-ルbニロ昨e+? フツ牴[w?{旛8アR t1ヲiUサニォT7FオBエ;z幾覚ア\」ハicWνwa羣カvイーオ゙ラy}`ミg|。oB&趨ッ/理イムsモコュQPL/クN框「.「ヒr?12モWマサツ[D>孰"2 紫wtjMrgハ7ルV |齒Gロセ_20モェ[£L]ノwクA兪;FU3E6HM「頭ヲ、オスA=Lqミ sネムwツUロnG繞ョpネ9n淅゙P憂蔓)0cHQハb;細Ohゥ5@t/レm Bwメヘ(レQゆ`s誹ェ }o k矗J?_。憐6`"揖(oゥァU ?ルチヒ=zム 功軈{F典ゥ朦ソ誓kDモ}GJユGカィA1慶j款>iM@b y Vpレテ懆顫 ZFuンァy韮GャPH蹈uYoナャ樢ュオケ=7モ'セレツ就q(ノ榴>pゥ=6機1ヲymソツオ「ムx;2ン*T+@ッオ6ュロ%獄sj ニe橋雪。 ホヲヨ)e^H~キdコ号!サ0B留{-k;゚剰^ーエ娶.ヨフ" フ默。%rsムDク=ャ。罵y)、2VX;示ーgbヨエb\ss}ウw'鵁q、怯W桧$ュ「ソHマSク初jkャ{sX<クレLPキ梗"c,p.リオsフRC柢K!7ク#?コウ>AΙ韜ワ崟fユsシE沂RヤqゥスaAア蝕旻的セ3">L憇ァ ゙、 。身xケ{劃,ム雕P{>`景^イzフツ衷0ッgミKトW-;#9*9,Hモ゙ト9vケニモ9ナンCbスut0テユヲン}寶#*リ慟捩⌒嘩>ODqn櫪ワ靨i*oヨ;ツgニLX#hンコロYBソ。゚>6コ:3&包モホ&"ヘ「X#、ホ|: ヒコ1フE>雀8シkZ bHロナZa園mレX!」サ毘(rチス礎'ル族$イnFz諂xC cUョxモ淬晏{ヘ.屍3]岨詑ヒv&g0閖dカ吻ゥjA゚ニU"nメア櫚F =k= :刃-恙Od烈j,2ゥ3水ッ赫[Oj笏W{ソメn; >柎5,y客スWQコゥ4]ず` T ア頒ウ4ャ~ヒg名!瞼{ムsnン8夐Jニ竡PF.Tキ(ウク杼i循オ繁トUb幸O 貽;眛ヘツ笙+ツ諏Dニ@シAKxJタ。kホ-^チ磚/ィY"鐐V帖ムI財l」ュ"爿*ミkマイ:Mュエヨc。゙Kー~TZ?Gc鬆9.ネ竅9ァ2t。j\Sz>マ:゚サ~汪L家イ踝w0舐6E%{#チ ヒミクモニ`腎義ホK冰Hヒ)09ムS{"輟;ロJヤ#V堅&2トkD%!;]hモYェヘォJ゚ノ6タ\! ]」杠コ3}セ2Hコs| #n摘#$i 卷ウ/4QG(アQ鎭奚6d?・&タnS$U7 サ%テg9依S1]フ+Ut ャニDImdァt;1$ゥLケ7ネd:Y荒=ヘモ,ノ=・%ュNTハケセDロP4タ]歌6; ア@NUメオaョンノx.オwヘ堙;ウ゚=Om mヒハヲツ1互スwT&カFc半ハナ ケオサ_ tNル瓦ン マ(「gpハt;q梯Xウ<枢。ヒ-4( n瑠  ア ~!'fメ@マ鶸ヤウ咽スェニァv}ノ捫`ヌムロ}クDtFs度/8eィOC`<ォUT@乗ャ9j /aォウ1マスm?ュー2スOル貯1ゥP イD螂ヒMシMタ!セニ9稷ホ】vムリセ・リ;纂%Us#ウeト霾 慴nヨメu胼マ_コqG"'ッbrYリ餉Bゥゥナ輿ニミ羝WLTxrCア,ンIFls;斎i+點x浄0ソ)>eタ襦セ譜ヤ%?W^マゥテIェヘHQタ]嗟h?抵ニ妻k$エ0ヲ&X)ァ毒iXc゚8y]チ91E=4)M扠/テヌ W靂dカdメ=K薗ャ"+シ檣0i!ォfェリ)<7柬$ヨ0 6犖$モU モ招yu@゙泳C窯>ラマCiヘ%eM+`#Vフ趁w敗ヲN婁ハ&g 」N拉ロNロチFマYホ}iョ「H"&#GワU稻[彫Iキ- =O゚鮭5}掾・黯Y@蹂ウrfSEサgテンHLdp*蛬ナ0ヒイムクx脾ウ%a/e CzQ稚/┘B6Ct;タ1ー+滋KZ礬ホ蘰"Y?~ホーSォFDDロ?^uGK|イR冉3_ナo=K%ソRB|/]fV ォ>9ネlヌ; ]ワスxy嵒チィ<XIャmX慘謳フVciマケ ュl潮、yリ=マ[}Lチ゚゚%xナa ォj9タ vト|V2ヲャ*'ムp茂fナ ・6ノ゚ァヨwUpMキdンア娘d頂廸oVB?H/3_ソjオ ノ塵;@ァソlvW烽1.ァチ(rォ4{輒「ャサユヲヘL$B・コケ狐ラ靡Dル2Jケ僞ユアhzirDソq連 Lッ_e。=ミ ケリ)纈@゙л・悧I佛@番ヘハs]ェキ號7ツ メ%セェ薐フエh[特7タ_ニミキm|&uワuKrテサ膤ウr噴;nルス癘ウトシ゚zp1ヤsb;RロtホoJ竕i.暮~豢Yyュ'瑯腟ne 渮フ害ずy>キk轜53EX4ミQOリッ<:ラfェ忰`yタ%D)\セサLッ賂/hロ剿$ケ<惱Rキd廨tセC6#^「Y#ーェムsヘエンェフツ誥B~Wヨ@5トhハヨナルヒミ5<マMナ1G皿sex姨fヨ V]ーjエ[Sサリ/ア7|オ蕉4ッーソ2&ヌFQZ 拮WヒvAI|s3ゥーゥイw|*セ. Rニ)鎬]O纒堺豁飴僅-B4繕ヘg0臧n,蔽゚躊(ei;槁/カヘ/ユス麟冊`ク#zト ?ミソ傅ノケトbmJsMレ%6剩*゚)~フ 4GメLフネ;4`hm、 ムタIシnク? タ焜7コ ハ偕Mi8ノ{`ヒ]|CO。e s7モヨ:SZ#麌 ヌ戯ホ8窩 誕C49綴{<tウ}ホ]ィ-ヒ7:匿Cユ fyR、a7ュ5霄Ne{ネsッ ゚=h(P5$カyK゚xソ、メ'ー{rミi]ヨァシn嬢 pィ ソ$ZTfウル直kム鴎f_7ケテL`Y@槓 苫ニ彝虞,毬;f@fソ!枦}L@nヒνI+、恋ン7y8(」(噸JBモ(ルウ蔬ホB P Fニd9G3:-8-piサWG 「オU}ヒ cA ィウ ε+~.Wワ0 凩 瀾官カ静u フ*ノ^シv2ワフ;註/1キサィサク s|ソ`%`贓ク2」@Y:&OTt5X學袰ヤ:睚ル" qM4cヒU},セJラテ!゙Yy9ウJIs冕、驟ZiL&!*カメ E]R糧, 矚兌カ黠躍肥yaヘc]ハヌ゙tャm!Ssワリ51ス【cMッ<ノ シ&ーl凍、}筱;ャノニ振7潭トハDE攬nC7*ッ2ホヲツnyaク拂イスゾ繖 ヲミェcゥ9樂0gンィwt ヨKナIn麝ンzテ<+ツgフナ枩ヲ`ェ ・vフ尢段<為6OーDロテ[+ヘ}3キソ[ャ7gヤ1ヤ+シエR}^祚ーYエ "ァ蹉vョaヒFJセ?n_ォオ;Eネ&$縞s]\ソキYZ蘓0仄U_k<諷ヒ清F.フ&ムqrサャYミワエb`档廖チヌス2(w2#4マ黙[^{9jBケッヌS8tT=;セ]~Uxi0 スo+l盒モVo゙ゥセヲ<岌CィW=>,SHンー:ホルЙ Tt`辮/5ン=コ~Yテ'ォハク%ロ枢@ ゙ CEチP碩8ク珪告リHハヲ=コメ0陸"D 叔エ}モ $亨轤S褶5菁ウ瘠YヤヲBfjネユ mモ;,セヌ澹タッツ(>@憮&マネ} #蒻タ%蝦ネMp-e?モ俾u^v^8ャ)WOXョ|R9黏AWQ%テ鬯'ヒ「 xr*~7ハIイ-舫ヲ趙リ辣"ォ;エ。ト゚[ク俎>ィWコaテメ柯W `Qヒ>'エbイO$ケdH 旗ウ:-ヨrヲユ逞ンェi+ハ「6サuョ?ムヘ#チ~ャ-:コ Yu!ュャウs精`苴3]`&]9~剿冓:+S2|ールンエア纓煮 %紳S¨Vo#1菴Fmノ\B[eセjニミァ_買UfRx:竊+ラ#サせtu。ァ 2ア'iaYォluBカ @(オBモ カsョ`Lク俥翁7鵺吠 ネ吭w韃Xセ)_ニウK kセワヤキl[「_*.幌|,ナ聆Qc。&ユ7ヨサ&o`ケJ";9ヤ キF釆ヘ」敷ケヒ誣ミqム嗟ゥ否ャ埃榜R`リmユネ邸(6A#y,DソDA?Nリゥ:.ネOッ栢遙チ)HFxCレタj7Uヒ[リWホ| dJ#羂葦ル嗣1棉ツ拭ヒナ_サ得ロ &カWcE|w鷙ミゥ汚ー(ユ~F:ZZスVXo% ゥX贇Pクレッ笘a癲*クッa$サ4'ュスッソィク゚髭セュP~諠(9梹,M)NPマ?Qフ;嗇8フMzptォoNFレミオV$'テナゥエト^海B_&:麦Tミ?E,c鋏ンコ厶ヒ喪5:KR泝9#($ヘ>ク>-ィミ_( e|MEoLケ擢ユ騁ソコ、ワagセ。 クチ% [固#父ムワシコフテセЕレ掴ミ0シRニ|ェエ熬gニサc)-qノッ6價6Dユニ'DSGK'+FッYOxヲ%dmeム瑁ラ5 <フ-イd5.ィy カOMl'カハtbE ムレ%オツネΦ?コソ q゚HhV)イuシJskfGLPォC%K焉 =X%、 y$EY∴イt愕qッ#-ユタンユワュJO轎Dfーナ&KOホ鱠ヘkc|lU7/チゥモフスn!,pッu犒ヨ75冩6yYrァッテELシ楼「ユs:素AモdzQヘv]8メC8∧群泝」蒋漸,ウ;街鐫,エ榾ッsiノ@8y .nW)ォ「齣リ$ゥ(袵BェxG7クVンヲ属v`\87#*ナbsイMセxヌ1 濂Jl適`サE'ソlカ%ヲョサュuDゥ 。眛E猩O檐:4椡`ゥ3ウ %ネ^*a'!レl蚯}アG&#.zヌ&妙 ケ_+ ク!=ヌ0F$Sネ'Gゥuチc6;鋺6zNメ/マ'Eネ゙g膕ネキ?@;wゥ(フ J}薤pィ=ネm)W゚誣!(!hy]}c<ワテU.ワ(レpュ 6H@1nツケ$髷 ,疝ナ#c} %{1ヘV・&t・エ`@cまヌ#RCテZアuqウヨ・EI:Q%輙GJz閤ハミI 冓ミQWヲ9ョサH"タ"糠~ニ゙ナチfiフMw卑5PX>袢、~.廃3ヌRケ@Fa=@ ネョ稻(7+:vX>J寳Cx攝'ユ ワラシd6=EワェャЧ_芙レ1U蠏ニi>欖ウ祝aZ: 毛峽゙宙5H`タロmn|ns?レB1Q6;キ|エタツ「頌;禦:oクーZケ埆チテ售hネニ眄pユコ2ぽh`洌 檠詫タ娉ロヌ Ox胸(k|'<{KメよouォレリハリIェソロ2}DテA黥F:、"魘イ|OフvELNBネウチR炎七屁R康、>ィ「きu^S=fYo!2ュ、mZ-ゥケコMカP~#KGW゙|カd O5ワ-珪撫イシ偶gフ`CtマrhマュzオN」エH苟メV)ヒ ォlテキII+ク]- コウ;髏fX#スナ雎厠gュ獺エ#z締r'ン1:a-モ3v速S X6M 昇偖a=6シ与ハG/マ_唾蔟ケ)aiキ抑0モL FムXnト啻ホ僮棆菠0ァ覺チTF゙ フ.7Uh」a(サ)^モc テOM薜ォ^*-トq+fニ*vウK牡k'ェ 寝fヨ!m Iオ& ヘ}PEzgコ麗フレワヤ・ン!;サソチU鰆KユfPUヤル佑洌D疋IAFリモ黨1r. ? ィロエ}ム分韜Y'キ倥皺}貯区mケスミ クZャ04沁ルIu"g井@b」 サラヰ唱%-xュ ナ_妣ォCQ女エ7CUラ]゚珞ホ齪)カTウTx彰Xゥホ4y'ェムJツヒヲjロ、>圉1コ.ゥケ-サGJタ_YeVヌh闌スンヲ5エラハヤラムhホd:イ%&e.QAリL4アラw47隼ゥ゙RO73B9メ9*カ+7v:%idO゚モF ォァセユx-oG4怙g弁クオヘcワ`サceヤ D Oイヘ>飜エ^P}憑飾Cオァソ`アン臣勗ヒ・ヱ。 c獰< 芭giスラオ4|ェ怜f ハNラv柿Tセムコモ「w羯J焉マヤ-=Y[ス4Hニdコヲq゚)チ'pォV哉苟ニ轢H~ッヒNソ$!Tャ燈*瀑゙ハヨ奕:.]贍?"Yッノハ0譟舊シY)淤za*w茎ョ:"ッォkDトN;zウミm/yトE ュワdSg)}ラ;?K`婚ュVhエア47 gR0ル}5弊サノ&Dユラネ/講#Fロ@!7篳4Jォm メFMオニTkgワa,lト;^v煦鳥杞~?d{殻,S蜚,ォ」>R鄭Tw{オEモナ 鏗リ3樸愼。垢=Bエx八醍/CUテウ MロX*媾_(ナ粂MY吭!罸 M` 草uケゥ_d>モl,。CヒロリJ妓賽シシニ [チ (v┫先 ハ掀、 箇3K,F・&[ーCpチU(Uョ哀a9.7\リYYォ オ z3厂8|コ姫ヲ{+カb◯<9p V{x輅 5'マ/2]k a rコク6 スVァ主チ{鹸ッ.P姚ヤハィ瓣:#M タ/ヌ 苞k<4ネZ7ー莖Sヒ奎,&1クリ゚・ィ|z .hハ駒2b J>ス皚ムナ猗讐%Bク=レ`JRヘ墜堵減テT・Fケgo ョQsセ -b頷畧dD-コヌ茴蒲KハKンテw ヒ迦ナP ョY)ウgF豚Vトミnヘヘシ杲m'晟ネ#アィggウ"、A靭瓜 フュ\OソXLキ0无ンK0瑣P9・綵Dャチ#L<`cたオ''」nェ覡イIラ7nワY6t拂Ml_キ_Nゥ感ィソ牡 傍c(鋪EYムmc_B/7`V7^`|潴エzュィロ嘲エロルR;ホ}! 6\=櫛ート Wュuqu? ・8マi疆UR3#ノW!~メJq*蟯u%}析ネ居リUメCォeヒコwN!L,G#8ー'6ニa゙RA」ス促*) ーリロVnルォ{W(エム ?ヲAR&ン)贏rJセ?'ウWs3价キ旆ロ梢.ヘ-ナ埔 ラ垰-.ロo^掬;[ゥ{ミ頓s\凋q蓿FチZソ91Oゥ敖( ]. OE舊ヲ"vvナァ゙ミ降!*#d"セ鴟、7]aゥu8Z`梼<シtムb3 4$|Kur|vソok2I5&hュnヲ。(97ヤ5澎y)t8e!n7ナ[zv笠FMk醴kaGエハ「衣ど励ワ]ム~W<'ネヤW; ユリ20o, ゥ r8・#悸i懦[]ト駄2$K?ソムEnフl誨W~ノt $ x$;"tFO6%Vノ茣スdェ:Z3幹リカP%ユ7吋郤寝"ェI>6 K,ヲスзルヒ3揆=Buyケイm5K>゙DホMコッg ルd エ!d)出゙;ヤ蔓ヤ^d]。瀘7Ow4マ祥:クiAユ#瑟ケ況厳1マAミT*v~]Nゥナン]」ゥ「圸厄ムi4 B厶-Eワ%、 」ツ蹐ヒ|ヒゥ4ーナ}Qdd旃。レモニ「;qpJFミヒ7;ー賤ヌ^sj2 <=K%橡J ウ\鵺!KケZォ:K」!,ッ汢iモc\鰆準キス8゙Wkヨ゙Qュ'Yサ釐j'#アb4w?Lク5アi蔡ゥ^瑰%l_ 輒ァツフBヨ粍ォX&]>F;ヲ リdxrKナRネツ{@モ{゚5=レ(yCオT 9LUc歡羲dMh毀?ン賂mアeマナ>3kイQ]啝、ェソ.テYoタ・/磨ー%1ヤふル弍r稿q圭S^ツ・ィ]゚ロ隴fWー(kFmホル!Vw lヤtsrチ0*ハーiY/dy'チワクR「pE%vGPモ , }゚RクF5yクレy 「ィテqシ・P゙合陂・ヨ!ッS#亶2゙sn.rZqs f卍%)=ヌ?=j9Jヲn]繹キuー;5B惇衡)R&舸%ゥ&j茖ヌ>jNカjO ン]zカc;ェ5NーシワzM=# 皚$#m逡ヤノ淨E/ヲseイa。:キラD「4o'S[晋"=zxgj#椢tiーャAuWタャ.Sタ忠d セ9.E!vツウナチkス'ハ答フ;fPソ姫ロBAn%楹I-テU杉@={ス>(/赫Kケ|ニゥ(エ% 栢``ワdメC漸ロTセn盈テ(ョ*c9ュワシ.Y>#.゙ヤマ絮.註-セ凱Bc&eキN^鷽XP6、゙ュ]縱イ楮ヒュGB読cシナ`ネ1柾5柵@u0%tオェ ホY!ツメ= s幃hD虻ホ豪襷゚Hニユ モ?94l胛ソHチkI2ウ リタシHyチcnqek繝Tゥ v=咄圃Yz註KSタマYハヌoォ7uケ7!ヤスZ 洟uKI4シ12嬲^~8(Y叢チ[ナノ 痿ゥキムンYヘ9nヤュマ, 搴エOヘ| :弃erヒ3ヤ5akャヌc"?甥盧<ナiセQ「f八ASロ@Pアヨ[スo6棗Uコョ犬標xeW鳶ミ悽o#「モ\&ヤャネ<[タセ」ゥo)y蚯 RトZニョ((!"p鄒 静ウ堡Gロщ?ュ%キチDlu} @*]L助|&T舫*=cI,0'Uカ6NDxVM「モ^モ'ヌムヘメ舶3u 範丼」Q愃Y[\ 崖tキ!チムSkOSゥ $ソトa7ゥ禀sュyワオッョ糧Eネュアv>4ワ"x竇Jv/pタ=]ャ-VEcユ ッk襷蓐辮g"」ネuヌルィケ68モ ャo。リ#チ"0Djフ ェC<カ| ybZir-%・ ケヒ@餾(vャ跡カ#イ要LZ。Xノj圏ィ ッd勢2モ!v詒抖P踐ノオfホc .台ヌMyキ)e@Uhチ WルツVハレ婢ィPホy拍鐶qホU%F(ルj テ77゚ノイ423毛ケ逢t綰イ!沍タ 。Y|Oッ。フbホ^ョ*モア4<ェ、&ウE、カヘ6Y「tx歯リ映モト闊.)錐ネ5゙Sp{Cd,hr<燃ァ)コFgvwuEMy1%Eネ&uリォ悩7UD翩゚ゥ、<1儘KYワン 」埠モRk8'&科ラ+"r}リ寺個 4o:UECエセ_~舊冫Jスマチ=ラヤ`!トニ]+)ヲュH勳e>茎4ヤ渾q・ミB l亠bタ<*x 膣)チ オ/pR_ォv>oセtハクHソec荳0A\Ntワォク禿如メェXi゙ 'p";追ニ)J8,4迅~担d短V>(}ワEl。7dBハ;ハMカh愎ー([ _ャrk~ヘ充剏[ヨテ|tウケ横)釀-#祟ハP  ツ&cォ」v゚G゚掀.M゙VjsEuQqメ「EV&Vヘ鷁u陜ハロeオ$(uナs樒4アト.テx d7^マq尉]」カfE筮フ_Qoァハノヌゥ4-稙=%煢2膽l=ム忍ゥ*5憺|♀)\ス|オテ掬_オ夬チ@ェ澪0x闘ナ1ヤ蟲\カォケエ抗eウfThワ7ニsヌワ@;蒭_T^ゥz#賺睹へ{yOc$蓮ヌP常モv+ ЬD淵ヘ* *> B*cMUヨエク瀬ケ&X゙リワw5*ル慙渥讖テ眸簗zケHノK3ネヒW 「填52ラ|O~n;15。%3 ッロ画-EヌモHw |)ヨM{ソ /]X(0阪ムア&R yナ_イ V」mエケ・oモFKdh敕+サ 壻ヲk%トf祟r%渣劔ケe。D2+Zj[ケエ縅bレq{鄰ッ テ<8fサ_ ‘。]("W:B&ケnァワODkリ帆ハ}z・ツF:Ν2fκコソh柏_,鰍( C7O|/斯蟾ンオ喟墜メ界イヤ;喃マタ悍ウ~テリ0Sフ4t u`桐ッ据。サ}ИGカA痛Pホdイタ」尋ガ}^vル#ケ5\05/O"「ヲ1シ」蛮e w|T岩ナ├ H<9ョ?pロ|ヌミ拶崖~?4C、コク_凾%dー黄-セ*」mカ@C=戛Hg廚wL <ソ_爽 オo゚%}&二マ^ニ{∋[由BSXユ}9LN モル^ミ゙:ノ6゙$メ「N7ヤ;+影壬9愾fハ - 駅ヌ奢^ /゙i想゚m8粗們J@A抒ァ歔S$蕃ねT称=4淙b_「qD仂4槫ヌ,郢ロ。゙~ン4*E~ッ(Ky<浮・>゙vw#@癰メV$rハ[ゥMシヲ\カ3ヒ。猊}櫁pp(面ワチレTYリ+*ヘ=u6 ョjト ,b豌nヒ~ホノ[]キ麻ノ]ソ1L茘jFクナルュィク嚮ャホD切誠ケBマhu衛l羂・p伉'|ソP ソロユ 汚タ{穫ーョc;dタソRJ-Wー3ミ.ケムサァ"スgcォクコ!@ j杜セx。 ネ/'6、榛メ5/ 統V剤=%ャ濺ナイ7ス ンタヒtu ホ忘ュ::[リヨテチ氛酊}。U●c・ュッ、ヘノ;ヘィBアSー7樢+メ銜Mkフ/#自ラr |p=ケアMCクヘ:怱サ賞。f'iカHBnw ヤ 腦h8體ゥコォー陸Wフイモクェレォ防ケウT?嚏Kム,チカbネ i ソE偬スX擾kYュ\bXHx/廿*b9テ/クナD腸s隠2('tャソV'j<p.%メヌユ}Gス゚1聘ヤV゚ワメァ・ ウ(ツオカoセ<:C繍苳\LケexDラム云!ァz頏D韻ホ&c硼ウャAL^∇ワUニウ、ェアトtGモV)[・ォチJカ"・ナ好/ハ!kB<8 ッ.T、2チムメtワEリシK9衒Z^HN蠱カOゥAfウシサ/Pツ稠{ワヤ4ー\h・E<TゥェyeイWァラ@>Jナソ,A!y39ムチGナ)%鞆コ|萇タlテ英蝣Qホぁハト?ュ惣(ェユ/+茯浅幇テ゚vm6「ホムヤBb、^麭V?朝+8Fネ~「9?c輜B I 。チf叟。キg 徼 算m倥]1Rヌ#"ヲ7m ノOCD <レOュr?A贏ア(/クHョセU0サg`;洪n<X9ムヌロj&`cjホ誰tロェ:# テYケウョf&熕セ-Sヌヌ64エ}yト^耒ュ悶 @フ>ロK8"C5B G汝躋コ p#岷 y2%Sア鬱1)gpb_縱唏)カム菴悼ラォH゚アケ"Kマレ gy听*形d℃!ボh`.ナ省>Bヒ^クOケ}ッ蛞d"EカT7ヌ$*AW。櫟4喚]メ%O~ゥサョ'j歌pB~ テKL.}<ヲ充{8pGソW・ェ゚6+ヨ,Fl{ 7゚f*ッnjf`s截&ネソL,-69ンサメnウ禮ヌ}、^0フ「2。漫`ziLケ[サ(W*「応サQ'セIナn愡)乳i3已lq}イ鬼+セWー!束'4?=歉0ホ*+央6キ;{ /,M嘔サクニデュ5ウx1」ルヲェ蜍tL梦ウキD+ノヨ3崑ゥ-Z~'゙?ワf士ー舟qaR}dj金メ臆攣@ヘ牽ハ6チ&」hXラ拜y咎t。2ヤ羊4チス広韵イマ[ノ混c+マ ユ*゚ヲヘケユタ潺O|#R6ネ゚カ/マ[ホI~ナ五W゙eチeンrツX^メテュノ!ュ5ン鶉ラ」_シミ#buミ癬ケユ=ワJタエ!ャ |呼"CゥH徨ヲ0] M曵ーNク・/(瓩弟0BJ蓆5メ40mエヒ堵ロL疇シ麒ウ筬ウZツ{T"A」ミ笊ukZRヒ-Oe否TコルtCァ犬WZ戉$(竣>Y箆R軅&覬Mh尨A+甅4ヌ ケ侖R゚\7{、8z=讀フkh;peニ51!椽鯉ムj「eヤbx粒ォ誣0;展Aシ3'スBタノ\クメ泱{$テnp3C2シGHウ覦ソ欒8oi踰;錫テ D]"ィ槌7dミヘ0レ 8Kノ5\o;_ィカeーシH゚>vnサ釆>ヘР慵ハx&、uM「)ラXウ粫チ濺s゙ sマ8カ゚フW+「枇d`T・j粘゙傳キ^ロNユGX、メZ謌ュs錘DOJ^氾)ャ4ヲyヲu鐇セ蕨レ霆|=rヤルワュスヌ-ヨfdI*、C[ DTk%)Kryサ7Zp!リWョ>慱 3;ュ:テーュ(ウlケ菓u゙ツ;\醋WトKiネレ赱]lxモ:v;&パ)o鏈ァ"矇フZ6貊卆「G鰻sォ鉋宵JCタ澪:魔A瑚fPn 蟐@ミ」7IGNァ:必メ^ェ遅ゥル%|ワ2}tJ(R !ンン,OGノニI>雁ミ4x゚パ*k.ワΡπ(&ア6ョム殊;諸銘ロA%ラ宿Lィヌナ0ラル&、シ鴈顰H彷wフVノミfョ J苧wR弧/スチ・aユ郎臙0^氾1蚰朏RPbk4努H?l9゙;H疥d|B躑ヌ兀i M涜ュGq~イxャvタ*U$チ_35ャtルiユQw・ツUモMB#ロ ウェ,#徂VVH>=ソィD~\C暢ク;7+K2Z`奮V! $狷ケ2ィー5ウ kッthD塙、 yムヒゥ熱a.J享Sツ>ィQМ@COェロヌカlホ'ム ッO隹ワ>巧o>メ*t捫カc旙<ン0)>タ/%サコdjサEr)slト穩セcヘ兢、゙キ\スッ6」「・マヲ、 }QッcウセシNセ「ィQモh'F~3Bエヤ Cツ殯F,。=匐4儕>M}ネ(癸校勝w曇潯!Pチァ湧フr渊{#リミヨケ+=z費Aヘ 」町莢 {>LQ0q椎后)/qUーZチ冠旨癇~b?43c6ミ瞋゚\∈$]アヌヒ ホ(7ェeキ7=L8ト&ヒw)2ハw+4カエネ構゙ン"イF鮖F{ムアx{飽7(bモル>フィァ~眦E/牝縦7Zyaホ スス咾npyzFe|テナ」ァュ/!カ7Tノ=ネ諂@エ2]ヲC ZV^ッcx+@Ny翫&Jヌホゥg=XコウxBc轤フ"ケ+群6%:鑞<。セhTddキニン8・/'キツメ (}UKC"fXリdヤュアMg6#トリユe録ヒHウf3ャ致7^PェツN1胯WモYォjS 羌ソノ62 ス敏ワ「クヤソ橦ツ儚;eシ'ャーPG.qノ3IアJ^ソv/sf記アネm ユヤ.> C霪ネy0ヘrハf」魔O]*%ztケェネワャナX |;c。*jV2ス\+疎"【GD2I.WW。ィンT耄}」ワX_マ濡dカ昏ゥ*u^モルLtミ#t.(ネ q ヒケ霾 +{,8; ン_Iフ%鵝%」ヌKユ(^'メt凖・*{_ァs晨、ロI揩bレオ^葫~ニハIM Tf=6?ー⌒モィFy\b6ッ35 鰍 oF柧おak喘!Gjd2トe続タケ律L掠モSラ蒜フサ、L;ォV嚶eア_WBhカ55釋9F畭ン啖-nソトィ釀ィ。饋HツOr-!D」cノ;ソチ6ッZoイタΣスー:レ」ア「n\;Я歟g~鰹jT糯~5ゥセッ%/o)Ud・2{pi`u敝,'鰮発Q熊O殪/y杼+\マアfケ}B*コヌャv=ト zy:ホieシ、CB茎チタス:タ8`Cヒ>キエzIォ2q8サ栞ミ[ fヤセ踟ウコXワ聢BW」ヲ濆ゥ2咸 フ堤I ホ5ロペI.M媒#ツ幕ァ亜ヒA Nx:テ裙5ク-薮゚# マIニフェ@馥フiVv・*e0ホワZk五CRウチ.kョ!◎>N) 隹モネ4縊ヤlレW竈qUO$ユヲユ畦%萓」zラレスder7Z3 8|0157Peヘ・卵ユ%ロア揉!暼ン怐!ァy免メMきlヒU5祐疏3NCOゥ!)祉フD0QVハ~ャ[cミAユbル pS2]nロb}テ'リ8チ6 シ4ォチ`Mwネ)・ィエヨ挙!]コNマ?紜bM\鎚^^Ip。4胎ヌ'リraQァレ喃胼エ无~ーイ8%O5レヒ ニオーl^<畉z オィ。聽g3'Zxユウィ_7.S良7ァr0I YPモQ}CS I+9ケヤ i ヨハ。:z6蕁5h瞶ケ!/\没タュ}シー旙モWQ「j"a鈷akタムhエ 貪$シ^ユツ1-T+報pepjq!ラケ境亭UャGd_望@<ベ2榁Gdeュ0Lz>ラ鮭 [4r1gチ狩モJ)8ヤ4s# 66g#9雲4 Zセrf」絲\フ6Y」>(j「Q~゚ホu間標ンAh假ル奔Kェbヘ凝AvG^X#檣Nァ瘡6l!コ!~u冷、8;カdK6ベbネi[゙イム テ~]掃x=RーSKNzb\^N"(掫.ゥルネPノ| ロメ劼2$袞マ8of+ヘエvkT  エ嶇Q}fe Oヨ*Jyl AZゥム(ci5ヒ)ェスz+オ|,jm`u;3Bモ街 #eVメLJ擇dI 9レェrg5iムオKナ"Dェ6Zn掩觸B券」FツE Q6D()レィKQaGニ[ラg\/゚&、ォイ」ヌ瞹ウ射ーャ,シ!ルニ。ニ0縢レ 託?U胙殖ヒーニ現覓?'迴"恰ッNJス僥玄*2娼6G"レ0ヌケ届゚ケャ-.-唹5チOmレリmタ_、ノ_ヌナ鑄Naシザテナェ*フ%)舵ッニv+ワアOj? カエEfキovGjc珍!;sン5ッ゚嘗Rラyタ&タXn惴aOU゚G"ァf碾ュ>#リ藏瘠"賻(z・Fウネ ^ネメ|ァem墫ルヘ}帚 b「磆綮"S甓Юgト.ウH#コP石フ'wU゙5ェE霏ハe:z#<]Qト過゚E\Wス Y@yd7スe[$媾 カレ「 'Kdy)テル「l.?1Fエq,5モX!:糒Wレ>コ法゚ 補e SptAヌ,拑 メaコQハnE辧奄b9^Nォ搨熏ム&テ.A磧キソメ 愨Xメ w9`哨ヌTハナK慚?U鯣pu カェャヲス耄,ッア`Iワ隈リ={Zvキkzァy。ロェru*龕Jx5コC:u3ャ ヌ蔽エ「ヨ5WMV・tー-ヲj?右キln$ホ幽鈕F*憔|ノケ_タチヂィミ=6E揖辯ゥs歹lw陷酋椶2アiB・鉢鈔ョユs慘涜ム_、ー瀧x8ヤスPbマ<鐶Oミルロ。dヨt[嘸ヌ}アイHsワノ確ノミキfリ歙p 造wIセ-妖鳧脂酷ハ=o[コセフcヘ)・Iヲワリーw「XレヘLオ粤イゥC検ョ;ウyツ0#モ丕7it5%u台IヘG゙ヮ)モ `pラ祭詼綸tエメ[r ナ[Qヌ5劭犒Rュ駐 9泛 Dモロaエ仆x_1ク カ"ム'フK~i]/beノタ、槲Uc"癨YyWoシハ|}]た#_s}D39イpf3ゥ`9ッ」ABッW}トZマ:゚ ゙o,キnシクシ杯:ヒ ダヘ=ルヌィャ嫂]8\碍aセルンj`ユツ圖テ・ッ1・8瑤U^彁}z[c4cーキZHZzDソ\$Vツハアn4゚S゚?竏n[M`カリXmャンセzシシカルヲ;ワxシ!4_s濕eP星ォキU蝟躍ぜキpモーウ7#~棘Pレム。F・n肥~лー 鐫イ\貿WmV0ネv貞トD)sロ^ 」@АF B\」bニ杠颯-qチ$:ュ8| ケモ ル恆`ワ9]セ什ェ [{゙>靖LGエヒク ;シカ%*g遙kf9-]D纜許,cVMB{~ァワcタコウ輝貯R0ュK‘ノヌ溌+E&エ= sケ=. 拳斉8;6タツマ4掠ンh 強ネワ賭僞jワ)シ馨zセ醗Qレiュ"ニレハ~ワ愬ラ@」\&5鎖韃鯡這寺Rセ w戯b・'トカE獏 ァラ^マ キh6ラナ阪=F5\タo寂Iト#yノZjホ|2ョis:$2、0@チElケイUユ@Bフ'ヘメアュィホ纏ン逵[セ(シ4現Lヘ*ユ゚FX|d[{} eム゚ツュY「ウイ:r ゚ミホ=・ルミ{a 年拔)rオF「ハCW晏.b第鷆レrテs黐DX惠ォY耗zロカンセf5xuムGッ-]ャク7#fャ9A"_WUヲアイ病 2m9ソjp ラ\-+。ムZケi「チ5 p '=ォ埜!X衂2.テォ$d?イ!ュi侈 #Z(>唾ヘ瘰 ゚ W喪T#sヤユaッ婪8厮_. u,wKリラc`ョ![-蠏9vニ"ー盥ケニウ? f)1リ:;.呆ヌ4TS!'ヌJ'FラC=753WユU卑ニp^カ:濺モォ=ネエLクーQ+ッメキニロユDu>}蠢u1ク梏2<還T剌B[」+クO愚クテヘMヨz/湎Oリcワ_vケ゚y,cU Y&ZuUム^ヤ「&テョuケ LN'Zx5・スsヘ禁漕L%讐sUfヘHワ頁稍5ソ@fZ耐モス6S「コ5。:、5 ュ$3ア」芝v鍜褂 ャン芙匍~驅叭 1坐Kヤt_攸ソ|ヨセLs縦さ-3呼j 螂4@cdM襭霙a$騨ニD/1}=)N「トHx酌"マゥp頓>ャェ@VO|ーtxtュaG3^皿pY,款モ於申gAn珥緊イ゙VJ&ィク゚?ワサ?ニ>ヲe挾Qク=bュeQ2+ヤ>堆}f 」8ツ筵aェkigj輕ル澂エゥ嫁鶲&g)|Oy樞ヒFf「゙'1#ィ抂|ノZe霽\Eタ}ヲQ3kC2n・ミIT inz/ンmンbテ。jサキ2pU\q~ォJ[ロシ耗酖聊Mtフラクd廛I贇ュ*x^ワ洞oeモヲフ)|ッョ=ノZムモ.、ア嚼ュケ!N rラ,x%ス 'ォア!1J>k2卵>┳ツZメ2シ3h戍掾`-0 ヲキ喊C@9k手隣B輊浦ユ=_^嶋RzbCqqtイ゙1Q、璃czGH6'9埖シ\゙ヲ.Gl}-ニ\アナ:畍)需h>エ?ヌ&EHハ'點)セ・ア?Aェ*>%ロオxト漬、|b7DYGnE ホセ隗Aカ;^aォjヒGx醇ョゥOォd床_&.yー慣クIx60=`ウスッt・h|Oh揖ュ&野tテ<ヨ.xサIh",◇ヨqク4t靄蒭慶柬-rbァOBwネO曖暸\アMオt臙セt惑ル`}K1ィャBコォ)主ヤOxシ渇9ユP ラT'蒜゚Oヌホb1wフ1ナイラ)AケdWミ'nロナaクI」+ヌトゥスメ「アy_イm憊・ヒフヨ渤ョ坦Y最付$>YmョスワAニVCァカcWsンヲV=ワ瑟チ「zナ召zァC6ロ~;C]ー微Dm蹌$q3kリ#}4% ゥュt懇ァ゙ケメAtE 晨ァウN&LcvJ#xイ÷.゙ヒカmリヘqrッ`?L " z$ヌ゙*XfンI8@v' tMs+、WOレツルx|ネュル}メリキ滋u~b.レ煙メ賦Y阪呪ェ瀘jメ柄゚#モNW痩&ミ)ュ'コsメ)*埣キlbzタォ約阯リヘ^シイFヒォ pコ42ナb"c柚驍ャQ ョ; :ン倍艸蔕ezノh瞬V缶ネャ喨ヲiネ5「(jテ EステPヘUj蓉オト|觀xハ稜ク]搖鉞z{ワG>蘿ボDp[ワハL( }:覈1臈。EY・oヘY*H&@蒐ホ瘟ワ鍔ヒ(ユ)オTィホ sAソハc゙ノイjヘwン」p介ヌユ(Tチt廖.タ癢奠鮭yHテ%ル2"3茜」ム。ャ貫ヤヤ゚3カリス/wh゙レム跨H秤蠹Ox!ヘ!}9ih jホ}ツ(fs"@P@マ$E)Kエリ゚フヘ>ケ撲 Z f47H齡ワPF驕、瑜Y神\cUPI\。8%鮃b|Kgモ=シQy烹-6E タ0\ &F0ヘA「鑪i譟゙7ソ{7リR婆80 イuO5#酉ロ=@Hウ「タ.シォhJ。癌 Jz鼬&ー゙~\Jメ蝙ョlVヲ{Pヤヤ・ソ*7q磯鶤dオ}橡Jjコnゥ~Bケ鐘s hキa禮В=*uy際<\-g瞋ヒy娯fミ/wU]。 雙!.Sリk%oFェ#Y晤凶M{屶霰yiIタw UJヒ1ノCンィラ助チnメG7ルオ[V(IZク8否ヌRヘv6渣エ電サロ&i旄ホサ,8ソミレFN?アモ3ヘ]%徴ケLsギナgカンナ0K リ驃BT 76ユS止ァeネュサ_ッツン侯"O償NlムンSゥイセ>&~ネ・ヌ9ヲリ攬)Zウ嶂逃Xfキ}ォ啝 ゥ戊ハソ1[ヒP4Gモイ&ネXッRネ's=z2コ*チ&ニ {K鰍RpOリx゙ニコラェIZチeE笳#局/LVサク_P,築'ワハUC'嫡:ウ|t[rzァタヘソ>1ヤEf}ミA=メъ)ワMチ5湯;皀 -モメサ%o゙k 7>。ィコ逆qサ*&。ン@ムク`ナ4>コ&ホララモJi0X"盥オWト ]コDcwワヤェ ラチi@(憮xム|4~レエメ3?,牽ホ冽侵("ケ、_圧UEョゑn;シ痒+Is,レ)O684ンJ<ョッG$+ 弛(ヌョlMc罧」ヤ欺Dケ秦ヤ.j靦0躊5躊ンハ潛6yメムナォス マ 瓢嘛*HAァb_3ウキde) カケ哢nアAセ榧h9iV斡タ、KAi鳳K逾鉄、ヒ)┸O艚=ナL「咆3リフM{QGoチスロク@ネナク@趣゚k!/)l ョ`|V゙)護 ヨノx@}Xy営tケ<袖Q]{Y4、#-\逡bアロヲ熄FLMサフm/P'ロ、&5P ヒ-m徇p7ソキ8Y韭ュ4`vp=ud?鷭ン}ニJHンホ!O:セ:U_クリ6カ醪/q~乱Z%rETR失C3鶯ツIタeテI滓ア鬆fテ,モ/ノ笂]cx&e懋粟w$習Z&ニ.」ユノ3北7^C&ー+曼倬*ン\ナ%4sB權*゙)F4キ X漾c7wソコ*lキウ黐Xzサ優泉\'ストツヒz醫"ョ2゙、4$YゥmDカョfュ7鑛ァ扣ノ マ瘋5cヘ%鉢讎ーロtキzホ[4G0 ツbハ鴾qtl啜6"ホネワv祕ウケハ\;ツABv4ラeク3」ヨラ#|(」lL3E/[沐ム蛻閻ヒ-弁icBOワ ▽hM類H8<カ鯆65萋ァーソ~{:k:槐゙"皴Kノ學X4クヨイ* タ#k@&エ`ソIxKル/n饉スi檻LクV}ン}WA収レWユ2P'僖|・晧+テ很svラrキ$鞣6ョォ溥゚誌 チsuー+gqu8ヨクオ有巵KヌンwNョg豢8@ホカ9ノ>ヤ{T4Hpきァrワy|9、~4deヨ8ケナ~Fリ< r5V廐Q芸E~dイ:6eャ ャHメュ拙J僵、Rc 粨ム7_mHュ`象ロqUエメwpヨj%嘆ゥQp ワト、!・.ネァ3eq箪ェ「澄}mリz +カ足h絲哲タ3碚ャフル5g濕ホヨ(,|狗LsX タiナソィ*治ヲミrT#(蠑誓マ=iヤリJu妣U゙ソA (apWァRゲkェ嶺ノv悸」隶n8Iwl濘UQヨ3R4%ニ停jモ鴿+ャ8;}鞫利ミvY%Lコv??+ラひ瓩ア,]ニミマ コユッzFトtト怨Cェyゥ^<コ`CYサフrEM6ZB6ネQ=ヲュ.7Gメ\皸%ソキリ t^D縢忿2ノ"kk`j O3q8チイ噛河ヘフオ♀セセHN謂}-ヒ{眩捩エNh ゚LケHO飄^ュ愾ョ佝オ「.tiリ濤ル6ヲラ卮M+ョ[!]j@4ッーオ免ゥ[スホネq-JO!h7ムク@ゥ!墺聚Z~)3暑插7(157ー蟆トツLチ*aマ'モハJ挺ユE攬 ミャカ_%野橢!]ヘ`鐫゚*Qタ"Rヒ「 `=、訊xトP矮a%!xヘ 1 ソャe$)枢ム0竒鶇ee0タ英'lナ`俚梏|渫cR叮甚隼搶cszカU'sメン易M{aツ5-ツー ツ宸裄老iTZ"$1ツチOルラt 驃曉ウO3+ッfシ丁:lcゲ^ホ_Iネヒ"撒 #:゙5Aウ 4V&イt蘋カ帥&4wッN繃[ ?A\47YmづナヌP&碼qヲYCV g08^3tノォ;+e!ルイセ|cクミo樽O+L堝クPモミ6\ヒァテ*)Tbモ^TeO殼?K鱇}ハ。d7カ試-ヤリェ 齦ミ錢シj%[)シ1ア針9アミ九沐4劫触=ナ蔀朶ヒ)ヌ%l モfkァF#:\/ャm;wB.Fュd ъ8リx奚K梹Uヤ+ウッU(Ak">mイハ遡P+ヤァ/[l・裁サ'ヌ刃擂JdZ4コ@ケヲ敍サ[ァRゥ}誌ケv、`キ鯉ュ鞁ンVx゚倒テ婁c披ワッzd`コiスバ'韭。oワェ5エ繃犒#慳庄嬋Rラbl0ツ棕ヌマ+xカ9ラ蝗踊剰ミワrlーヌ>ア2<゚zコa髷7ヒッ3kuaO'Zル柾セ幾>嘴コW鯰=シ菰 c個#N q ニH)%キユゥ#ゥヲニRVセn鴟q7]ク「ヒR$カIC傘8I飫「Sト呆yyイマ-Fィオャ/}ィQ8ォ >ヘcャア噌la%o1y#Q昼Q,Wョ:mュサア゚,益FL0* pネ6ャk2-チUラャ|n尓堅8專エコ<ニ島&#妹NnX涜哲Bセ纔ツ館ヌW)スケ![ヤホ モゝSオ楡n 3+ホ\矩ク q' 湲8ヲ`F2Jq莠孀レ アgケhッエ %セRi覯*3ハ =喝#ナ豚:肱Eネユ帝ハ3g釉仁4?Jヨsヘ銛j:J1#|krf ヨ.碯1ヘオフT;梵jf、8,,欖aOvエ;〇ヌq?釖ヒ/twe8釆屐ニj"@ナ>#ネナ+Eネ@嫡6N媾gCM0ニ>・B^ヒp莵迚゙"邇fィDワサd。NK7ル尨@s.0Aケ1}ユF丗/ウ{ュJS!チyレ6ムyン孜{ U0ノム3ヌセ =E5}^しミ= PZ*Sェ?mイ~Nホf7゙~キロd+xv>f}恷bstDxE檠`=UY「9Ao_j輝シ5シj%弧eコゥx'|8。サャLh[忖臻)紕pエnロィイァチィ,Bラ求」蚫ネ$ソャ呼#dツワユソn}睛Uh偵タUVTヌeュ_ロセujkヲG' ィHQメラヒNヲz66f゚ネHQ{)(d@ナク%_0煥箚ソョ%1HミyO 丐b」rク.、Bォェネ8」螽oZ+チ悩鮴e朋!Q@c譚&ム淘゙iO-蒹」TvBォv6廰コLKv|@+番d゙0~ys@x\t!ハォ(g?)ロモe|AF4殘p1!wT]h暗ソU ンヌ訟Cミ僧ッ1ョP+|"%、j裁僚メ英HH鰒t.ッュ異 LG@ x:ヘaQ#ナRテ.sセjヌLqヒ泗w4拳ム権u。゚)冗Wワt0Nセ;マtVメ1Tモ@ク`エhPカス麝+ .uL0_wム摯0@@ーラ=ソfイnナエ鞆オト」ムヲチユ@鯢y-$[裘O+-廢「iァ9~~節碾kワム屮ネiB{)(ミルIミ5ト>キL械聯\鈎ネョキモw'ヒ>o.Dxォg*G| :カ楝Dヲx鴈 |Tキ'LSエ[Hカ含e~賎 メM6Jモフ嶂ィ篷]ソ"%サ「 牧{メ覩範篩?能Qカ`スィ童ぃ$・ムサ閤」メ鉛O舸 V閇2ユob崛6 Aナマ鎰T ノ竢d5)イu繝Eンチ>9cG%O。.}ツW地BgノッOワP1)]KオSケhホ訣:<啖サ[|ヌョmAロ衿駄 オ趨丞>タ7ーt? モMマッネホ物ウ-C+wヒオ|スソis"笑ウチ/'彊-I(O「i4介ッ|ャ+アH0絹:^1h,<鏈^ッ・^=ハーpq0ロs弸ルqΧt:゚W-ッィE飲フ,pセ;NBGoヨ犇ef h}仟丹KャG*ラj 1Vタ)苻ヌ駁(sイュZ「エJ\オiDA」8Kテ`711z肖by堊ラク 繩a矣Eyノ(チ苔蛸N+ソツZ1"ノCEB 」S'鶏モセE被津<ン蹙・,0&`>^イ惡5JIィrルマ3ユモr]ウ稜'5=ャ繽从>lTド~ソレッl&コ .ラ碌副ャヤ。イコ %チg栞ッテd:ひ 恨「ツ[ヘ4N$コヲ=ム拠G wスラシ゚コプlノ"f$タ循況濮?6ヤ#!ムpi廏%ハヤ=鰛ィ7{Rトエ實fル收*ス爛ク -,2.Q。奬sタマュ~Rl躱ハ」nア骭ラf\MHw!#5gWFMXG艨nhWz{+"G如j[Bw8n コ。カZYPレノホ/ 」Xc徹^ウ「wネ`nnKッ-頌/ヒカノ=殞yQ)ケナ +F-wマヲエ y/褞ケE(.+a裼mフNチ1qK闕uエ篆iJウrハD簡伏)*;2ヤ!Ph毫N'1D wア"A ユ出gv}Bツ軅pヤg:0O#ヨ[ムフノ_q經9ムィNa(B#sA+ヤx旬XニテウセタV;W殼t浣擴=ヨテhョ6Γeo 」ネ|Q繞槞dーア`pKL_GWオ゚よフCaメホ+A埆「レH禮ハ兎_y゙oY4;フ 8yRuIャキ;昼mD騁4ー擾I%g゚F3Fュxlテャ梭スシィ゙棔鏝ノ濟ムン「)比面ト]薦ヌ% w93%0ァウT}枉^ヘ8LハンソhKネィヤマF/kCオ-」.ャ.骸a慫,K,岑ヨ蜴$tァOトユ腑カ/轉、箜<ナヨフ[カV晴K体 h舁ヤ 芝 ,tC4wTRjハナueト穐イエ{bf($kvスψカoJチCケ拳オ賓ラ qロ馳S#ワ胼ルアdp>ケホj逑セフサヤw?匳m゚淇エ><ヲラa&1W゚FS?~>Aタ~{iBヤノウノ>ノ滞l[シァッ漬Qク竟豎uI蓿ヤソl縵wメ惑v別ツ厥説カ仙ス]茹5ラLfイ$x簗aカ GOレレケ{bnェツkc-ユョメ増マヌb 僥h k"クoヨ9)ンロ佛3惴モ,5レハ.iiメb譟0キiF7iw餔r%輒{均ミu啌ム丗j;ユタr1セGp。dレコニヨ+P|Oヘ3ホシマS脾SC鮭7コ1ヘAソn-|wナゥキネ ";e黙圄 ホHMク(オケ ̄タ/ムミD7t邉q|E0Eハワホ」我゚0ロノ@qn弾7ク3Sタアs0gJy;賑ヨタ スルミArAチケタ$@/ッケO"糘銃iツ 峯腫B~vャヌ擾ォHス] 侈>hメけレ.モチメKヤ0胄ZミH;7@lW14}xJテPム霖x」゚2nR眞~鵈"ヨス>JンニE9qp礪9セロUIコ0「蓋fLvpDシ\叩-M5杳ユ]舉フgタ 葷uヒ ト=XEM+稻BM`攻鑑ノ`羶B=]ヲヨ贐P0.ウ[rゥzナンレD^ォト梯閣季Uツ RケナQスュ_vンTKhメンsシ鞏'7 AシVLk「M/藍(鶴}エziQン(w タIォSad_*M4 ミクhR、9Sタ*!フ0.r}a 1>4マ・ルuァムャ%W霖t?滅チN?ミリ コyュzり營u&BI5ウ)s僻コ=モ尨ワ;ユラマ1准_Tママ・「e哮Pラ C"zM磧ヨー oAーン\9'ヘ「b瘟還_W;8>^ツ儉ラ;#@]( Q渾母+%O4哨`1hュOR榴カv0Y ソU&シDロc。91ン.哇ムqΦニ %慙リOF %蠧Nモ:rm:ネ屋\布2Nミ・ムs[」pf$7)D) 擘YN}垪ソー8カ4景ホーケ_ SツZY*」 R}ゥ痼護1フ鯆 D鵙bソ $-uテG難ムヘ2~i{v歯@|娥6k[ュスfNル><モォ辜HV|鍄サ4顆6エEヨ%:T[gvチーU乾7gB#ァ#チch!4ロソ彳ウ{T頏゚o蓆イX@)蒻GeHZニ5.-2/オ#/bフ%39X{ ル.o[:Sォス?gI\ウリ"放エシrョ/ヒyNOWe婀ьテョクュ歴}=gL0|nノvォx;ハケ{トtyコlケBwリ瘻述;ャヌ=8Niネ嶄)フz Q~-Vキn文i8|参G%サ \スV蚪ャee釦8:シァc[tハエ/NhYッ@WT訃丗Dム$R囿N関<ス ア]レ椶|ォッ:止mxナ*ワ寄ワフ「ノoユ{菁チ$喰\レ蛙チュ#kugャ aサcF゚RtC4ヤケJ@ヒM;綴[|峭zリGCニp凸sX|h?i浬呶JMハz粽-{Iz灌ユレ#ケwシ-(エッゥカ }\ 碓ナムVリ」 -`挿3ヘ哦c・ F{アナ干,ヌm猊エ/ ロcミテ貰マ\!`}Cb)F)<マキ、?9t、ノ\ラ&キ Lミ┿0}13ア&+ %テWイ7ト"、ス=膃[ト:ェ6ヲ P謠スeュ痊ネヒ&Md譖エl(ルIエガ9 Yケ雹gタ^ー慫g&}釋P丱*ヤ柯ォNマ「/(ム舐Nセo3ス*jNi枌ヒ2yD_?'ロhg2F1情iスチJ定ツヲt招菁躄ノキ\ュ%」鬘PsIャヒydtD娃ルヤk_c焜ヨoヲay9Zヘ ヲ2窰ホy3ユHチiQ ンNP[絮=晢QRレ{ュ}Ykロユ2ひ8X・j EツンI%ァ;ェ耳榻ゥコロ^[ヨシS詢 f^q"カ,ァヨ ナ ゥ0l*レエチッsG}ーSeテ 稻? +皸ヤm=pマy!'オク0o5%遽 ミ サ漲猴zKy5ヤワサチル[餃蔕z゙K %困-ヤツnテ 稚Pョ蔆E8ヘVQ&~゚シ豺TッbHW mツチ|p鎭レエmテ5エヤp節ИAR蟲v,詭愚澳俵》f*ソソ呉6Y4ョpyェムjトル奄C5 +ヒヌッシ娩ョRI k屑zE徒v0]^+`9OW儷メェ'複yネ($ェ羞?貭ヌタ7゙*mnpムmイモ!e0zY8:Pヒ+Mノ!ェr4ユァヒラニトj靫ァ_>AxCW1qv゙逵n臀vkaウ;エQセム4fiJ 7aミマf分=ハC・a"レル2+wヨ棆.ォ恬S'2!W9佶Qli*セ)恢-ト舅Kヌソ僊jアZVン5糯 L閔直 モQeム;'「&ェ&6ヒJfシ\*ホテ ミqヒ疫奪ヨu漱 Aw~eイy 峻ッ=kt;゚ヒラ磯JN)斃掩タ$ヒi9レアb碧タ@r捉貎Pェタ7^ネ剌夏・ヌ維6虚#c1ミト +e7wーラC}w:・勸ュ珮銘モб!セコアリ対ナYト-ェvリ5オッ^{@ オL毅QPホ6n4テ糟焚^嬢]ォmム2ハb葯ZxWセCュ\。p豈zp老腮幻゚)オh胃$ユ蚫Pヌノ4%~艟鐶'Kス鼓眷サ ゚カp拶ャ囚ノラK {lタ@メメ!>!//ヘキ型lw:ァAUA$,ケュョQロ)kIw[ルw。&,gAセ宗抄w1ミ クヌ$^欄オ;定x鳧緊i「k6aキ4||5M@ z8坩オ洞ケ省ジ アュ7$カQ*9Eマw4[e緝 HリT゙ョyltm}:リ&キ゚s齟3モ/f&"マSC j悲ロ;汰。キvrモ Djサ1リ~カp\!ヲセo ).BR鴪_求cクハn@Lコ僞シル}1O フヲ ホIフ7)蔕リキセW> ャf倏5皷ホ$ソ5笙IOァ"Iy筧Itラ筐:X'8&ヌxム椈゚RAZ: ン]ルc甎u?nシj'ノ2~[リn卷゙メ<゙Sj塑粭ェネ隕1 \@oモア シ蛞-M4オ/x 譴)5!q攣縉テ熬伶n=dT悠ヘ セT!<会8B拏コオミ_Wルウぇ蛭C!wF41R%ムニ@中JホコH胤qK3皙ゥ;、"!@ツ'Vhq|曵テョ 8h$J|)ロ室>需イ'Ikーx.髣ワネソシ-ソ@E{f鉈a゚牧ア--CUチ/R(Uメタmカ駛コy珠XQミ1*癒ヌ腦トiBLス~ナリユZシN枋ュ}ィ榜Yラフ 9r8ワ#&G1~ネ0ィ: jッ(渺ソ/t+チサツフcGBィケ>>孵Q灑<}T pfカ}煕iS yウヲ耆J烋モョ-ソ狡礑ェRJAHヌLヌハミナ艾蚋曹1サnフャ゙\;。屎DYH耗F牒モPォ:i退ョ#ァーカ袢XM 。ッリFニマk、sネ金ォ攷テn%f.[[゚Y螽( 敍tDq'%ソ喉)シO|?鷦鍖ソ/kンI、U究モク莱サ{"ヤeQ,チC柧」 器y/悁;_籍JO声羈dヒ没"|W。^`ネゥ・P07Hイ楠J 哇9X5搴庸タ:ニノミfワ曦 ャア~ ?ゥ史ヤ1[=x13-^Hユ估OhvBF惧*ァG<タ「+/0s、カウeW/#(&チ熨;渫cイフj酋% ヌ 」ンォァk.チ。ミ>ァA゚粢炉io="q([ヌヤbラGヒクモ }R撥wg eL]1像fcュマWノト`ヒッ杉譲L莎%リ+\サラ/Yクk サーメロ'p蔕"KモリmEPテク ョフ托ト~チ`ツ綏ュ」「セ5+YニzX堆LA/ ヲ糺14HS+サ贅ヘィ,x}[ハ}j遅< 0劫ミメeツ+6犒z^{チル=匡Z゚ヨdイ9ラ顕piサッヲpメサ1YA{@テAホ#i~!6:メ=>キ蚶レ曹|ェア_;tx屏ラ^ノWBヨクユT}Hチe)踐」">ロニ・}ケ+Bjタp6ャア竹宀aX、犇A磋ョチ立「9~ナ ]C$[港GヒOロ9^}ムー鍔Fフンー$6Kノ皇Cヲァ゙エル@ナpG煌6/*ノ欅鸞m{zス_務゙失_ロy Aヤ7ニ情 ーZG$qS廼f゚經カ彖蓴ヘ!l$taラ降ユ:ュ~(洌к」2xDf\。POテモ帋ャyェ羚(ヒEミ悖h峙nェUクRV ィE鋪逃ーSQ恩゙タP゚PP0姨ャ茘,T跟窄タ佳ソカ~~ュC|ヨヲkュ肭Eォ2イマmネQ=コロz」rdリ 若^・qv|Sゥmケイ2_趺2纐ネォ-リ&?wづヌャ燿-\d゙」嚆ャ-ヌオ゚rlbCsv。I尸籠ゥ馨フg0陽{vw 製~マtJlンITkVvKq、コ}]ホハ* エq!児ワセaトヒトッ7-ニ構1ァ歎.。・*am,yタaA譲 !QDヒ 露悒Gソル]<テ* E・オ感NeDトprッケh|リ:ュC゙孜ェ゚。 %ホァ棲フ#bシ+/]棄cヌR釣0kOヨr=_ゥ>倣qョワfkネ3{j「ミ.H8Y哈ネミニ"+>9リPオ<ニ!2(タ'l,諜蘋}雎 ヨ崗Y?4};ィ桜*I3xrZッ*ud整亭 キUEyヤ析カ OS掃ニフ 0~-wヒSャoサV響ユ鰹 翁"蘗駻ハr躡6「ー臂(ヲ T0SャーEヌヒcリP?#」ァツョx_Ovuヨ&ウヌ$兩エ研拙ユ8P7ミ|彩ヲ(セ#-RR孱)DウCmソ゚x 鷭YG拗スマ琥Hーン51隶"<<)。サ%S~z鯡エB:{釧yi肌Vナ徒ホ邏3V4ホZI+C2ゥB/PYウラUs メf徠藥dV游Oクa)+ミaリy殿 ョY6オテHFr!・ミ躡イルマj、YqgHwf,rPpチ3qz朕。8m7」f"キpオK8Cユ%シ弸 燒5lqラn喚*6=ヒ{/Kノ) U=;m-5&ェキ」硼qオW`濁タイソJ*PBマ;7*P薫Fト8 ァ 廊eQゥチb|vxn *イL本ヌ7Gq路ーz&e8&$1何H「4_WケO メi>k@VュbSャヤ・ヒヾホd#D ゜>!ニヒニCt(6Fp\ `タT騫ソシiGヤ」エゥイ4櫂キ稲カョチ#ロ]xマ@Fr?3セ\<=ナX綮~囘 [Gys ェEG┌4ユ[xレ$メFル6皹コ 蝣ョ`EKuz3靖ク。,セ='ツGォ1レヤs噂SIIソタウ#妬{シ}イャ;偕陪」 W'嬰、D@(9\]O疊チムムネノ億ゥMDゥlク宸ノノdチ&;ソ^D硲 胄Tコ 賄跚カDZ。゙ ョSLMヌaソ ホゾセ~viア"瞞ォ+(゙5fD]TO_\溪 要ヲネ3テ`ロ]M"v謗b`「A c。乱Lヒ掬:Iマ マリイ t ?ハ4ヘサZ/E゚Z縄コ匁]nユッT<ヌル惻aV專-'2 ${Y:オ$>亀oFゥユHヘア1f鑚)/ホr゚K@醂コム@Aネ?"1脹ス\E藩煥Jフリカ`6メ゚箋ムTbョBsf{コィ *ォイモ栃揮 L)ツエキ vp爪U>F}ォキ、?+$ラ掟確謎゚≦俺鍜+ソオ゚國マ兮PoスL蟀AjョZニ;ィ」=,2カpミFァ_rx2ォナOカ3ィャX疵$Tエチユ8|待vィ]nキnエ?.cmヤラ*zソbRnkK}セ莠ヘ:fエr4.4ク海ラ劇!ャス"p諫- |0*・BGvヨHエ臨サC4<キワャーマ棋ォ\鶲S,マタqy`マ h歡(嬬ォ農%lヨトr$sウu邑Vスマ_+:T逗゙}]單Cス腟ッ8メ馴xミYI驕ク^゚1Dg謐h坂サh!アvラ掻ナク・ォS156 ソ:キ劫$M<ス0豺a山ノ"]:bュ1"・ュ眠碚Iマ/*K那3Qヒ・Tシチ゚EウNy蘰ミcォ゚ォワナs[?ロイPトセm「ラZY:{醫ァサネメ鵈3_}サqトチモ6vd轜雹kァニfシMニト゚3Bn8+hャR芦ノUII<)uIヨE$IYp)g帶、ハ共LM!i o゙|≧Exュ疽&ツ2&cマH[搏ンIヒトシ)レPY杠%Kj薮愃hQト鳧7ッ祚x沚 両AルユUオQ8r」yuミc佃 7ExモァッUス;$ユユeソルTz]>%V囘;タjx2/rFQ>Kt゙・d゚CQテオ 1∇ロ曲g 涕ロ}ウ}z契 ャr_Lル、|晰`^ィWY9:aュqj糅\dS。韶婬雌冪b-*唳酔A0j褻r.ラ鰯醫1セラユワリ1m皃Q5i9=.i秧Y賢燒Y}0ケ6g5ユ^アoOワ俶ムケqソュuc ンw})ヒェ* Abァ昨xカJ_託ニ宣トアモ驃"ュァE儲或M'岫ラ9スtZaタレ熔 ルメ寂5アラ' 9睨ナ!"惱SLーュ」Gシ_-_ス}f*ミV@ツ 医テS]Kッ]0N葛チ冨ッェラハ+0譛兮Weuk>z除}ソメ ゙1YCフ篁y声ゥ穉,,|テ1F桙ーノ鏃ルケヘ・%),ゥキG ッh2ヨ{Mュ虐{:L黛]}zッ(ソ伐Tフ2cヨJYョカoQ翌nネ゚ノ[\ョマ>]ニゥヒジ[ムノォ^粮メP%g ケ` ノ$tヌ\タ。Jシか゛テオa6Wkェ臥Wウモケbkュ' ne g ^ 1SpオフサYヌ4嚮vF2]錬サYソSォU1Xx网Nyワc榔ヒ=tYフセ率`Dト李8xoマ@fqソ$ノ「ym{&6呈ス?タャ。・Kシ・慮0ケ9tpオ.4隈ンム:Uケヨ珱クP・>ь$t3.t「SY[ィ08エモo?nヲケホSタセ璧ば$^$?dマ裃'ュ磨np,oUワェ$v}4ム9寢 IホO8ォ]k] (Vメ覩|スP陏痢4,ウdメ顫3 ェrS昧銖s/ 8タtノェ厚シf\率z`ラ瑩シPタZ騰\ルn#)ゥ>トル? ws\8[C馘ivーッワモコ。、,[」ヲルサイWヲ旗ツ鶸u7,換?スコn訂I幣`チYjメ<込サリタ2nばーPヲ ム5ア>盞V價枸ョ=qFン3IロZ泣ZホfN材.ソg/モC洗 ョ/篁w菷azqfスカDO9i垠~ェ柘ナfトホラ2q蚌9渓=隈 dメA!g 「tTJ DオハユロYーカ8袗|エヒヤ粍乞セワユ乞F圜p輸ケ├wk脩ワウテ.ヌ}%!$ェ3h酖凡Hクbクン儂ニ'恃ホ甎「TD深}ハ.$Y粱l枝%マ゙セネOサ_tュ欅仞#ゥ8$!ヘEjC.菲ョrkX$ュ遘Aゥ'聰vqF 7xセセ8フォミロ揮3'mア」YウkM匠[hpソ17}》jユa彊1エロユv@?pァコ;ト2ネ噐p隨?1j~チ戛,'SWXg。權ヨg。8Hkヒ耐環I;nt[sヲリオ\│Bxメ0ゥ請Hl>筑sイ?<ァ・6フ絖」トレ?1季麋s{>ャ'`」yユクt「ョ&ヤ、ル@fラ$?感Y埠4FD#エウ迸゙5?ュV鈬Q員溟P.メ\セメgkイL_CGL60ゥェ}ッU拝ニモチ67$痒ロヌラl3ヌナUーヒ:クモ\レヲL3+A゚>;リmカ「ユh;ツ$%X溲ヒP"誥ネ稼)晶u゙Io biHマォーJWカユ=[OOw>熏{$殪uソg6墳4迥5i{ヤHY%ノ]ッ{忠乏ハ皖ニフ嵩~イ安.ノFクfy紿CムB:レ+mホ)レ+攘イヤS2ソ%ィ宋レゥ:n`$/ オo(/4セ唖g ミb橈5テ/cツ ノBluネ。Mキvqヲ5ユZ琉pコC葮l1ノル傍拉y}」ラス裼= 2''YヘF gz!+フ・圜{`ィヘFョFキfHVイhgO!ッ マニムΛ F%ン弸3トEワ冒シ/xh「<ロvZWuF瘋ヘ擶裴~g ^#蝉ウl紊。トサチ Q:恒ル85w卑o抽ロンPニQ2 ヘ76Il ヨ,嫁bフp1 MI56ー8ロ|ヘォv^ニ3籥?。+ェヘ嗾bgjコレトgロゥjシiナDキ=;售kマナ>ワユ!*ト0挨4}Eナ*n+ノラW6\クDレ腫< r@PチノンゥAルAキ因?ロ&ニ3!杙ネq伜ヨトヤ鹿I」[」ン.豐ン@0|$イ巓タ シホ」$Q\YvシヘiNzdVノォ|kワコ,z2 ヤ5 ゥEスホ篶$ワェ.H鰔・5rホ靠V'0ヘPミメq鱶GmD>8xy'\F蝠2x蟄r欝ツ懸扇eel*#l」dィ"a"o-7Yン>X覯SS圈D)ak瘢サマ]ツマ"}7゙bッWOスヨM!騾 レァn キキトY`(嗽?=;セ」禰剏ko゙(ウ兀W@&U P)セ職^[ン?マ訛z5{GヘElユナ#冒C拷&ヤ賚k.ニヤ"^*aカ伜リヲ「タ、筵[bイNtレヘUCYク%ク1T-j Mカ簑{egオ豹%E┸篆TサwS燥シオ4Y+ケDネュコlLアvンヒ ムクL<鶫Jメ哇/t+hsーsB拈(七uリォq蹤dロ|2u5'チOァ7シンチ節郛eヤ"テUW0=~ェ犠#ホ)カレ\ヘウ宕ndェ剋チHwメ}コ「蹣モ弌セ6K}、サ鯣サ洋O〇ユーヤrs=@:,楕_Iメ リラ_マホ ノルオj7Jワクb「リンLョcq鏡1i ス`P慙o」軾ホ6'珠t緋枝2ザァャQホwヒ`遇!.D。堪V゙9V4マ詫ヘ.$'[3*/,kッ/Fマ(1RZ発ノV桜D1_ 亠F諸>イ"ア働テ/秉nヲ$セRャ剋&。 ノ未u 3レ+ZTウЧlヤ(-掲マヲhZFF゚9ナ荷9 2ャ,クア:@w-qニ7ハ}#g:エキpァノ覯ょyfr偉ワ`T兜x汝ネn ァ]#感、xSホム黙+キキLeフf粮k俚Z淀CGカied、ホLロE夬o療#ッュ5ラ・民7トmォ+匏ニ。ニyィJ]Apア/z%アDル-臍JPP:Vp>O マ゚m?゙{績S涸_Eス飲{ヲキ」Jコ法ゥ<2ヲ }・q托)首メエフ8圭ユ村Yu?|f* }」ハ勁Cq拵P\「VL]Iタソ哉ネラH゚<ア @gスgIuォC梵コ5恤 ?T*ュョ盜;:b#.ユ0HW$ニ↓Zt浩゙ 0 Mホイ8暮D"ロA。7ユホヲw牋Vシ%ソノIテアtウメレ坦フK`霎6Ng」ネ7慷懌ヒミ顱ユ9堯KW廾ー 綛 ツツ萠w]Uoヒ、オ>メメ^#オセ」wーァ8ネツ!鶏ユ8 p XohPボvナテマ3DR哮k*W\B炊カュ/拈鴨 Eワr0」{zロl >k9、マノ?~フ?カルf,;6~ヨム=啖 (N~1赦ヤJスモNッン匕ェ>z&~wオカQ菴琲O$R闔U5zエケ3ロsァ\攤;3 >4lュmェナ?ユ桾WDF@Gス皚vク= ウFレfキゥ$ケク[ヘ2ア 」サ旅ニ-9貰ナセス$jキ.D QNjヤc賦ナエ3}2rLm/E+%浦Q杯=dェ~コe ンサェ錣奢wテAX汗$}/N|摧%ラマ掏_・2ソt'3慘z^キ。ノ5アPカロl|ウsL,オ')謹'ロeH咬lヒ3 ワ5Hコ」クキ辯0瞠メカシ_ pヌセT-a梠レ棗ーヘ+傍r%mト +@カ玻ィxRz6ワイォ邸c盖l]ー5IサカEミオ1セィ(Oャ Uヲ,凹拂7ヤ鯀ッイ0倬盒Q>?躱悵ゥ@ホ=(一゙y「"|gケvノ=゙Kルト!、ンm_'ワBmシQカsnョRdヘ 鎹.2」Y臍Isv7ヘヨョU@m:オ縟|儘ポ q巓=,^コタ ヘ諡エエ煦ト赱jムs7痊トU]; 袁フィ゚[藉B3ヌ"bJ信、i7.^ョh)uat紹JSノf4Ma+<a慈閣F:・;3J痰鄰:ソ.ァN4」Nj゙,ワ]:ツマレc/RTヘテ0Xレtハ] コ5tRJo@モ゙斂゙iW甼qB浜H輳urリ渕N5MA9**xs$沐ャ#袈 シ娥8h D-ネョ"<-ヒ科}W]Us襠 廴aヒ`Lz゙オCク-…O7*瀟網5-ム-」゙(カQョrx=L5uチ4*F篇オJゥムU ニユ; qBリPオ.LFヨ況-F゙Bケ昵1Ks^レoモmシ穃8ッ -カテメtp褊4/オg$ケ藜入椚馴w楹ヒ ル?襾A膨Rノbァ豼WノヨI 3渟9g|ミチ牟寝:ー営衍鋸。&・サYロ概ワm謀C~/:Уロニe午IsjiW sィ"「)ア[ッ、SチクS隘Iカ フgk$3緑・L0=+ォ厰V=6溷UマVDルエ3テ|チ 、ン」0堯vエE。ヤR9ノテW =uoソQ卉}X ヲヤ'I椚t。雜アET嘔Kタモ諾[リヒV"語可ツ?Wcムヒミ傴.u uエt=S9F「賜4゚S橲#ィ請.Mフネ(tjBdツ]]拡ェ.、トcッ|ホ@ネkIZロ'嗣ァ<イ吏#!=3Ly」ニ*Xワ!ネG()Qv} "C]逆Zンホ者醇覯o衰ネヌ「豆eエ[ヒャ溲eB7-kォsテ2K┤ツワ`Hアヨk鰆アfbワ疑}y江鍮ネゥ2tSOァリdア>T5n3ヘ柾w矚ワ誂ョr/ZミCdiネR*TBチp3・'ナア図゚c汪ナシvヌ^d婚dハeテ舫カx%厩\op.T23{ロモ「・ミ-FmXミ5Q゙メヌd=uモpル゚"ヲ垢uヒ品*ソォエRサ路cチ@Sュ)ケ#9X゙N{チ蕁tY娯Eqs#ハモ登ラwdMD「ャPfIePoヒ1 ヤス/猖6サ,キイブ ンJCス }H舘fコ」v|ミ,(>ヤr再ソ=ゥ鋤麝}ヌRS]Bメヒa&セソニyY┸ホ+S~jツ猶ネ: サ「逶.ォt<罎ゥ!トg・]サリuvタ蒡溜JM>E*。ケbナ%元リS{v ゥヌhリTqh宰;ユソ!'c]ツンh(越ヤハE*ZハFR5モFt皎リ1NツD#+$jqウ ヒ緜p4モFTz~追ノ幄協jョモィ(桜冰CL<ラ喫メナ#チワィ[J.。ヨ鎬゙ァLeロhケ_ノ慍V> TVIィ湎トエFマンaレレャ2wwィィ&Tトトf洞ソ#n#「-Ng'*dxs{羮系ヴモwン H`[" $蓐;QDユ@箔+レシワuL]ロ|Qマ1レセzフュク防.國i憲 `ケdコ2スネゥVタ m_]碯ワ5 ミヘサNヘq軍ユ・e(/ッコ)@{ヲィィィ」啼ゥ 」R;8腋`パ崇2,_リIヨ+eE-エ9 #ロDt教ッG鄭ヒ~ヲ*゙樫]FKXッ芸ヘ9ニッ;PNム。J家OュァャテьzツI喝ク估扱NfwZ暾&,橿vワv ュnキヒニ)。」,烈^Gキ~額S韆Wuェ*勇纜 オタx返ナヌДE2"sdカ・MFbョFケ)!L&,セ「7メえウh ォハ{@W\偬テD*{コ}%@娠X3`銷cOdsg&栂ラヲ/ホ}荀Lw^{クオエ拐ニ5ニハ┸エ酋}。・やウs゙季メu瞻uhOdアuヤヤワtho穐qS;テ `h震NGr 、f&ZxカAケツ帝=μ禧シオ悛,ソロZNャ(・サ2ワ篤E-iフメp2F!ェ?2曉&.7盒ィZq燵_ルネ操;3モ0uP洗璞勗}粡ァ赫XkKキ8ゥ)O,H^$ ナ/+%ロ錺愀HD+フa%ワュ}v康ャイホ邇ハ7疂+ォJオヤ]ャcI」jK゙Eキ」ヒ$Hg湊 `セ^edィョ圧ウ鷦p-テQョy殲4(ニn「j5ッハe-ユE^8ク冪ノ$析ニタツEЭ「鱸ミパwニX)ム噺@イ9ィ_カl・ヌc'OB諳ホ、r47 :魃5ワー$qK壻i担 hv$ホ「"コrモ ヨEイ薯テxyヘ8{ーg卜K似v゙メ沾堰r燒ゴqモSェp薄セ東箱4ツBDRクラc 9ョ-」0""エ5テォs・I籍{羲K既 n0Mgン「ン$m~タI疾シユ~9シ;<委ワmスヤeワ =ル>Xソ|0vT莽モホwiレ>ソ5qサ褊#」」 |x眩j|`Gラ環{リ彌Oノ諜オ"ハP ヒ* 2%D瑟&仕DQ5p趙,ススヌ 36遮XL{"Dシ~<ヌヘ:\コ祷R) [1E(kニ{Qy船「サネゥqコrリ(ルカ@n役、^A猶ナ.T^$ツnao|:ヤrP'シnホ4ワ八:q。7u鰤'"4ーdi~{溥2!{j7キセ!3lnヘ/x*qFサニP、アJ熹4iXjJyl、nハ、O・n馭ンカ来片bマvI8マxホzィskホ;リ献[ョ=チ\j,゙梟゚a4リ+廱F'S)*Pha;Fン"(7ルUフ 掀87ユュtマフュ*カソ2ホヤイ カニl0ゥァサ;醤妄xyフ箟ル26ヒセ搴ク゚bv湲ェBa澁$O|笈Pセム[e\b0ュdリ#&オ穉ム=゙ヤ珀ミA 8I X@..=ヌ租漲. .7Jlaホナ^ 桶マ '戀6A"キ=ユNw0・t{|mエkQ+ F」チトPwAbー\ィ]農コネ「ヌCr゚キ.ミH8クi。 {ァイnケ?:kPvS:MSヘ耶ァ邊「キ19Qカkzヌ゚f」_JA|{甑ク 3カJ[p7Lク%トホlツンニ倨スス%"巓jc; 夭mgニ!KハO"q{6)r5"ュ6q*芽撓#v<誦zョd/U。\肥タ褓WKヨ媼リ'?紫チ爐キ;e「v3ヌ:)'カンw J'涕晏<チ!サ曉フ聳ウ{Z゚Oト\葦蜀Hキ槌レスニ=eヌDwリtレムbトフ-Sォユイ7:キVコB4xN9セBシラ7Rr:fD)S「OUvラセke{!橄ワ糺マ-妹7]7ゾ!ト→萸5ン1ヤ ム枚ヲル憫u:zコS橈タテッ1Q奬・0ソ}貯拶&衙VKマm#:pチケォモ`締ナ杉/フィ」 \=TJケr6 セU&トVヲ。レ梏/゚ミj](u6ソカ.162゚gリc1ィ +ヤ焚EuゥTxモヤョ!セルロハオレBd チM\Sfノ イ栃%宮RワGS\ホアW阜ェ悃RcN>)|・4:蜈_IヌN膿,)`ャo゚セx#pJ价ヤYfXァ「ラlOzhk]ネU8ルnチ叟B]O1.BFハYNAヨ 伊 ャ&*リCフゥユ妖f3瑾珠?PlA`d」TnL斃Cス=エ&I宜Kレ鞠欽ホ)@mZ>aフ」/抂躙'w、カォッZマ<サT%fァ「 ョ>ヘミ:N坐糅=ミル'カト:歪G v゙暢[Ge='・メカLナ顋(N<゚潔tUル{28コ9: トニァー;Y L% E1sEЖOノソラu:ョタph Q6~焜Oh0ly1[P M晰弑Nールレヘ"喞 7A iU(チ4C懺ゥZまMエfrbRn看]モ^ホユUチソッ*モ8ウ竒ォュ Y<カ膝Am~F+UK`oンワueX)ヨ訛yンP@ャ,匯0{RR} f, &,Qリ_ZナS偈aaL!>ク榑クロカыB「LZE i圀「憙 )P。w涙Lト-)e浚BJuEgX ムォS-ta=ym(b7,、e,掾ユナゥ$鈴 黔;V?杲胎晩サーイ・ッ弭$コ&タ漆#R匠擲 ソy キCユ3゙TR1pU%Gテツ倥+ミ`ソ%D84/$xRヤ瑳フ訓SZョG4%M~ッ黌\ト 」彖 *膏アCCヒァ?リソクt街bfゥゥゥ瓣Z卻*{UE1稻.、チ。LケFシp゙]ム蓮 輻籾V升Oヨ2メ^#円」,トzウマ7。」Fk f イ^ナ`「抄ソ ルニ2;ヲ+ラミdキ暄s屆Vロナ墮ョk現n鼕u=)|.4Dマ] 含焼{鳧ヘ亡XEトV-ョae゙6梼「>,g疊鴈JPシt,デ+オレマpB+ェ1疋テ5・セ_O」懐Q@|ZIレZメ塁ヤz獰{Ajャヌ」ヤ2ヌ9李鱗67 ωN鴒cマ鋏阮(z]フヘタ'朏クリ}YiS9yツ&Ak LフSOシoミC叉iIェLm`Zウm碓<-Nウ モsC4]゚竕8ゥニZァ6/=Kツ^トヌセ;fl<>藍斌゙<縟△ノイ=瀬!ィキユ~ヘンKb皸臺鵄ャi4ケ 6 XロV速5滞ムユョヲ耜nテ莱cクヌ` \dv7Bヘ'F*rム8衄ヲ-ャ*'eア5'^Q)」噂<シ;xPDシw纜敬ユGナッSトュbフ染招シmy&(h跨%"噎ツ}ソ,塩転促。イ憮qQ 6ユ悠`トカ)KlハヲヌョFエ7rミv}9捌l1ケcフヲ5"セL、ク[ル0ィLソrBテヤ葺Jc!\}柑l愿キ,|j5ヌ6'・zコ」';セb|h'ワ%]゙Sォ}mX@6ッ麈(6,チ苙ヘnzツGrレ、マ寵 白リナ~颯k jv※rミlWエ ケタテ-マ6チzn ーM鮪}オタヤ95ヌ兢/i゙.ロ蚌均…照0ヲuモリ G5晨ヲ}Å)准ユ゙Pゥ」=サ)n゙9@総カャャ8|ッシ7[W埋フ7<uE舊aiw ・「F」3モ@喋」@vXb 慝K゙ヲ'「ッP晁=「、観q窩ツ唹#WTqV鴿"ロョ|挺ァヒMレX序j゙C}マホヲ、ヌ|ュヌオcG2メ2ナ|ヌリ8ロ ァ93ヲオ5r絶,エテZ8Zモ撕LO5UDCワrュ6|$・[Jヘ殖}娃Vヘキチ+ネmハkM/wsヌ2zミ瑟Hス奢x|ゥQミ mャ$ロ牴;dスl_ /\ヨメapマfハネオ'+ エゥ3: サk!ムN.ス擬┴:「0ラ^ZtQ}軆`肚Nリ孛勾蔆l(ァ%Y@・ X^)Wュ-;5フ2梺フ{審ョネエュl;%ースhib9_.$ヤ`アー 岨v%2ェN9}敞ヨwイレオタzr4メL筝抻涙Xーリ゚ゥ「Yラxaソウ81Ko}忿缺ル/癇9 wCqt;ロ$「lゥャィフレ\。アチ+ 2ン@浤.鏨rEゾフ昴 Sヲ・ヒ<許秕ソ荳tzkナツル閊/5モr、ウロ'メ\=sトマセW干2 fKイ}%nシソ/p絮aZUシァィCロ4ケvR-(8B$/ロ肚謌9吭N藝」ハュ}ス7&Jメ毅|YJ"罰_ィ#宋R_(6K'唆]:セwMt+ヌV談#」゚f*尓ケЬVネjkcUкl5ヌ@ーホル蟇Iムj、 q-「mwUGjeWヘ4Kム窄S& y-(6ェヨ 8<胴Cu氣gチ>x|ハョi鰉-%ソ儉Bムニ貝Gネーxヨ詐Tムム垈Qオm@ンュ 染4チンhmカ務ュ邦ス蟄\エ條逕テUレラj贏鰤=6「漑キ]ノロP:ャ'ヘ闕WCヨニjチウ笛O>ォ^mィaィ莉曾らkh%s゚\ニ0U゚+!オH似#ゥ\&ゥミ'5AeセJsカ.jmゥツzsoo旡カ?クユ(;vx.リ?/cナ4#AL A」_甕0oL娩カサ6#゚:゙'イU+葭-R,ウ「,Bク積゙IJ#=9洳。(ミャ悳KISセ4<剃メM恵 3cァf゚'6z\チー歌キ綺コ'クc_ー^=ノ、レpセキャコJ$(ユイ∩9オ_A、ィm)WbRヘ蘂*/10Gラ9Mメtー#<>。淙セモ道]コネL!N!ュム餞セィタ永Vxc_uマ尤sトPッ1e ナS箍/甼`゚t"鼡%-:[,=クkFソラキ$E哲@ュ脂紂瑤`弦EンHク吐ザzb{&兪墺□zァオ*ぎ朖 ゙飄>,$ロ蟄鈿チL朕Yヒワ」トQ脣ノDキ焦丹VハxOVWヲ$モtセヤ榑![ヒ球ワウlリ=タムヲツ?ネ7ワ L万 ニ (覯Eイ想{%キ_把ゥメ5」h擘<5r nYホ1.1?3ァムオミ %'i31マツ*6\」[ソホユ0|甦タz愚rEK#kホーヌテキクxJ3(b- 5Jリヒ"ョ6'.yjlLタq溥'ヤroャ睥:Иサ道p瓷察Rウララ禝、ai-m+H涛ル彦Jx覗5 レEεァヤF^!ョN`Mュ<アヘv゚ス{ケ@s[・費3bフユユv-xラ-ォ.ェ1懐=杼g=ウテモヴルJメツ66J2rB゙щiGコ・>P|5CァHTKrナ穏ヌu% %' uシY8ヌxq029*A磔エ献/D゙ス|^[( ケS゚ V}ォ#7L(皺.、B エVナl萇oモc`tミ%{逅7ァ犲2麑*}耘朱`9ッュChッヘMヤ「ラ #0aヘツホ-イ襦有梛雄[ャ]ヘ 迂1「習ヤ_ッワミ qt"J-Oシ D5ト]ス攴ー;寓?DIキ蓍林ッ檮B昿斃ィV7喘キモ簗眤[l篷,雪ソ,」bγス-丸エ オ攫f屍(?ッc ラD6ナqc+サ・ョ葮RoXセホョ/タウャ3驩ナ蹼.p澡Tuェ瓱ラ2ン フ・陵&iモv瑳・1ヘN5OッハソAシyJ鷄背ム5爪メs`]3$G,ナ?浹:p゙癖^ク-^Lモ ゥ<カッbn\チ)タ煕 Fォィ[/サヘV?ャGs纎オ叶゙xャヘPユCル7Cル抹ケコ{ミヨFケラ*レ0pル#D4ロュ[厰ラRn%*跛*ヨ4~WケH臑e篝b聽 , D畳KΨィ竜Eヒソノママィッラ。B>4コ渮w'「^テ魃6v@マイ%「エ敝f8マ ゙シai噐セ7c4[リネ:ヲ;y5鞏イェ昏Q狛ラ[メ`Lu琺リ "コωヘ黔ォムf~9閊廾イJ・:缸岨rテy4Chd b`ニ゙ Qヺュイsopャ)シ]pi]}Y0td5Q$k窘j>コN吼侏エレンュ6ニテカカナzツ塒}^ィ姑YルG|メラIュ ャ/亭bMネリ櫺ホ轎[;ュAvo2D-ツ8キl<+オ9チ唆DW喇ゲdゥjVQ|ポFルャ =ヨロネヤフ.cェAlsxム)mヲト h.ミワ哥転1・k_絅アノi丈捜_ヲ咀NchvエUァQ{WI匪?BOiウ輛~ルDB=Pモ(簑'=oヲミチワ邦,ホコ2ラセ黽7#opレモ゚3!ヒlクンfメR銓。s[椹@ッHキ8 `媽キuソ\{゚mU!カ~gョNA gVR,(サ碁ツ ル`茂フ4,ネャ<゙↓X9Irn邂+ニロ4ョコDpP1v喙Hpン鎖箘>3ケ羸餝瞶C!!Lリス緑oPXサヤXヌ3'佞E溲チ・硼掏シツW盗UスF,Iハ]( 、殳箴耘^zオOΑ\[コRh,悠A゚eOF/ s5loPア」曵セ"E*クs+狠エv;ル'タQフ#"ツセ8枇・(jソョーC@ホ禽ルO・ Yーク營Eカ蕋ヨ,W」キ纉"ヨテ`]ヘ榧BU0"゙トニ@Gイ]藤1イ槽ウ感Fアx願g豚ノ眷X イシ紂:レEセ@。襭g\fs7Aス冴`ツワフf^T?"欺G虔到4&ャ枉徑nラ!テ骰'マ}o儡4w"ネATn卦9]Q綺Ftf鏡Z淡繦ナマ幡マモSj~ウケ邑wb1 猥g]ト斯 ゚ソ2チd/慚チ@^ Z鮨,タヒ(「2z罩礑 鑓[ウ繖 .エ玩Mェe゚!キ農U3ン リ鴻`Tアイ趺タJエDユd姆H如p6ナI棗クト PホN莚{uカe幾 _trハ<@シ;エ.ヲテムカb'>谿、シ`セ1 F.ygモノk鵡゚hQ砦gVw#夬N<_U}ホ)ェ\oムマeッ ~ソXGヨッ」7]ヘ1ケ虍Cシ@那リ xjv林. ル斌゚/セ>aム=滋雪 }Wソネxレ僚N <)pD袋;*t~垤D1ユa゚l0DH徘啖% @ーLL曦?レLJ,E,u徽$6?.コ,5~X=・ル゚ZヴBk~ソ荵向ュ5V+゚k5: ?`ル鈎5~゚iL。ネ棣ゥ{ュ」M,Ajw=サ ヌ2h2チ5ツ地&Qニ] fw罨&エマ^5゚5s<&沚pルオ$. ォN繧ZPヌ:゙ly2 C?シテ褶E01メオ 燒_|ッ・@濯%|ヲvIメ・ラヤJIケリz,G,ル> 芥~[|f`wコi".垈」ヘサオyワd=キムム徒;:Vェ錏ナCォmuuo袍ツN+笏メ・{)゚1ェ3旻>ム3?イ料* ッム)砌$bワ[桾ォ;ユ窯-VいスTハEnシ)+8鴣{U8K。3h)"#K3:fケeニタ&払/ァコト撞Oヌユ疉Rk&jネS&ワ=譟d7釟、5ヘE 貂t{5ノ"経X&スQ痊挙ヘ,訂悗7旋wszャヘヒ|タSオナ熟Bc)Aキ、#崙^[o 碑[&戒Z楠AF]Vo *eム|、ネ♀ョQ木ヨTシEリナL灰ミイ??雎wh壓鈑BャナNエ原f=`テォjヲ返>!徙P5M゙[ヤソyヲyチwレヒ2E8 VW(z=L椈睚g鮭xオノ嘴レsZ,、瓶Rチ 甜ナh7%f゙ュs殲ツ潮(ャ ツナM`ヤhヌh!`< ?1澣爽セ斟ユ=YヨFュ3鑰コw庵,* y2タ.6現/イ而 逋櫨オ蚫cオs/ヤ戍カr>]竪ワ3濮ヒw&[xuケG;.KF「Aロ}コィ+>]] 吸Xミタ y^チメ'zセ:t+E V絛ェaZ<マD/*宗99ァオg1レョマトa'灌ミヲムIiマl.3頑Uキ6捌 NKナSェ9ャehヤhミ錆8盒公ユ袮v OS嬋Xsヘ`bZ ョキユKbOワヘ蹌チル化^Ng#童テノ4`ニゥロチ▽ォ&X励(plXU@o4wツ皖;?チ蘇{ Pゥ6ミR トUーゥヲ=,4gJム゚コcAHハ杼鍍。qヌ:ハレ`トバ*オ9、[、マル>ナR蹇ケT麁hネ[゚y^:Qス酵@H京88+V諤サ%aO!┛%*貲寥鎬 イ@ヲ6 rレ敕-7['="ヘM6!ゾッーL9hシ!E煥 「ヲB琺ノォ挾褞シ]xU倏肭ア。"ヌ誰 纜タ&Lハャ#INH買zン邂ヤB^宅Lムテ訐sjX;ニ酵エ ク釉繭テ殤a ェ。NチgD既v"オ゚ハ]7+シヲtWN蚣WスQヘテシYrカモノノIB\ヨ。Mpl7zWク售9ヨ(q渉貧7Xヒ cコrhrfソウ!R)ラ幢詔` ツ1#[ow)DN>Yrセ。7/サc~サ]Бj三ウム:pLム假ロ*テNア抔PヨンE模ィ橇ケ援ルN飆ラK_/}_Oエクレ[Smミ籐ィサョ予G卑6ミ5SAフ?(@ウGf゚W+レ撼{ャl9R肪メj料4堊)8w+゚ニ)樶 ンztリ、)#ユ:+_=キムムeカ ソ39*Cュ・ィ僭\エtf'T」ルー2J[ィMBルn拭奇ソ・ノp!蚋・}loKvcァIオ蹟7 ソ9ュ~Cノ鞄鏑 アト炙(ユ2,=、j。gGOリZワMロ倆nエトl8ッ0.ロ呼チ諸^mィ/惴D琵、<ン"%E 鴣ャq'ワハ輪oタコrTX醪F%、2t0/8b\ミ ヨテ^藐ハ ニq桿虍ニ%堀卮砺瘍ィ豎キvキヲaォfPc ~AVR5ァヨ{【RKIY克マ+゚阪чUロ2怙gO胴&マセ9チ4┏ヨl"碩ロZ牴>o精0宵ツワヲ4フヘMォ露ト?rTル・レ¬Xチc痛ーュWTィ$DリW択 ワマ_オユアz?側ヌ醵jUTア OIカユコp 、疝ヒeムフf。ャ?x遐 オIMタ存ySヨヌ%91ワ1ヘ嶺BMp < クン刺**フ,Aワ蝮vネッC棕弓$蟀dfルサオ壮Xp;モN腋モ!k^|ヘRハケ\矛ヘH-ウミaリアィ|sq~\ヤ4$[晄ヤ@蝴)QZZy閭ト `ハKト幔匚窟ン・ヲーゥ;タB瘡p仕mェ>|、1k剱bNpオ蠖ζ゙ァ61xFCq拶ケ蟯牧ユ稙P&e隶貎囂ル5xGタ;ク?ヘ6H虍E,イs衰ェHYH義{Z靦ー/J\ラョ\ネ(.蛉級蜿JD32^ュ3キ廨o4Hp!wメレニ*7リムgA}劔PZL(S6)エ^税ト沫テwシ!ネm9,ロ視,uカ0dkテQ }゚ッ[N芍EGセキヤUr杖・陀ニュハユ< ィP扞Z|0V,ヤォユ 躾` y;ッ*%=B埔'\%&リ翁eョモ」(p2ネR駸輩・,Aノ片1k sァqR"F. Vォhbl7サ、軅涕qhイ4PAIアロ47スG鴆A頒#ア ^伸yネハtt箴偉ユ%エン「ェN蹼スキモh累i!紫カujsソm%wカ$=|ヌe゚ル蕋x。lレネーEh「マトz|。ルSソR。 ィリQンソ7駝・ U運?LTYカc( o焦bmネ オEシ撩フ横m・椚5ヤ[タイテ.イMRュェCOキB]QネネモZ晩んツ'?湟馬{ヘ=a報 ツ>U7mァ}nシ{貰阡:フヘ}ンシぁpW;、幽貍洵I7適ォ「ナヲヘM2゚マ\ ))コキlJ\福Xレサm赦蹉j"ッbセX+nq8I f<翫6\ lIネア゙齪馬6メオ」 ゚oaY功=W′鍜W←ヘ#[」w挫yb *'蔕vB8:'9w洋T^ョXク2ナ9Eッvヤ9カュ~f+-j@ゥ PネSイ獵(モァoキコ_?シハフマ sxmi|ムァZ1ョ9ヲ _霜冖モ渇マく!Сt蹤VNAC)#{弭ァCCdtfナWJ5イ滅rリニre0n俗ーコッ'勣ノェZmチ敕ヘワi塋育/ミ87メJxZ俎Uホ随ケcッ゚切tィ妣cWヲWQ蘢@リ掠冱LvOュ0p0:幾嫁4鞫ユワMO~蟄=V縟o籟覧察=キ退莉晞サ凉Zラヌ!ァDF^ W#Nっ,、科KキNウロ'#ォ v.゙b4覗ウ塁mウ7Зセメqヨ xxッ酩0ウ、e佯]槐,゚{凄' 6-CォKhOXヌ迪u.YXFxyニテヌッCOコ8sR"ヤd |9ゆ゙ウ慚勢炸哺iマィヤ/ュZ27Nsフ;ニ・瞽 ォ/トオサ2$ィ゙aJタE怏杰i膸kノチ睨゙M儒rワk ムK逞 醢MチQノ レM.g冗+A Iシ進a荘#愡_L{lD(Bナbネ{K刃nf`頌ル@ィァ渊佑p彁}x「HトPフ2"#メЫHケ$ゥ躓ロエ恁 s唄キュZEナカヨャレ'腿a2"=ク2」僞q遡フb レkメ。毫解'゚3aロニユ「THb「cmウナ浹ケユ*0ノ:[ーュQナ棡4ahLX黯6テワ#壻ハ{ワ:ュエY%S^ナェ宝 ノF 「=シ(モ41,クニゥL閭遷絳=r亶y,ス:ッ獻aュ(5讌キrl+E-円ヌ~+4^シU」ア[/I3ソヒ マ1ハ;+ェソ>ーMiノH$密チ!麈ζチイ諠瀞Qgァ楠kケ~!/曜コ5 `T)蒄ネ*フモXッ* ヤシェU錙賦KtアQキBjQチ、+Dァy主Mlg瞞 冊4モoD3コ"0 *Nセユ2-瀚-ツレェナr#,マヘ ・ェCQof?ラカG・NヲEyムu?ェ觝 Dj"ユOォRルX タ・ヌホWエ}モツノぢu;奉$gタクn>v2犲Z&ヘ2ン5ェ5:9=4トmpAイ#帆ZゥィLタ1ア゙鋲ノ唳by[=セコpmzhzZtd菫lテ坎溷Z!w3菠DFヲ羯?イ9レコI] ,?[u= vセ鸛C'フ}嗄cュfア&t?S濮KK燎rT*}モモhニサ鯲ムタDk-#%1Y{t膤味ァ>榲ケ<ァS l曉I眸i セシo燼fン階ю)腹 暃アR^蒟L{水ホソカ-ム養ヤ。箭L-引ヒヒbラ銜ヘア摺オイゥ_チvョェ6ハネbO1Lミ\!碓CZ、ュヤEBRル Oゥ キチタ@。"bヒー モuYレメ3晉・@4 aャヨ゙p3 lVッMrnU&Pモ。」敘ェtホイ@_ー トリbz`g?瞳Dチ盂7}゚/o1゙ロT 綵KB齔<「 暁 レ8:涼c(Mヤ(ヨHY4゚| ζナ笶>モンe桜7CvクチFo、tC=~Wk/「G;@yuヤコJ晏L HU8イ /オャ矣 ェ "ル゚ー$ヘハ>:@y鯉t{%U*マ^メuエfヘ奴[ZョZ笄m| }<竚ヵ|"イ7澂盤蓉Vq繃顳=イdB、、<蜩ヲ~散R3ュ」V舅@#ノ鏖O褫hFュ賈ト鷓?クqソ蟠Kk6滯狙ゥ哀績キ從壹:擒マ丹 F_Rトヨa$JM<ア/-*゚P_u茹/u'HU"lm慎ーノ・ツsiイ|囹%~ihニヒR4N趣-桁J5フヒゥpF投mカO蹠フ・栴]エq琉 Jユ窯アt3Tオoウ.纔ナQヤ渣兵dh 僥FM゙ネメPマW9僊。ッytm/女T(_?ケ 受Eb+モ ーモ'瀞ラO(- ゙ケ ウテ~8リシyqモーn押'lケホ匕MP'ョSェOFX≪;具モ9}2Vォkコ胼継wナチmpg"$煤(r」=C僊Xャホ」f フjSGY質V」朞ロMH蓿-0キvレ{!I・)Cホ )V鸞泳na'ツ2レ発ZワホE 曹ンャ〒u{ N・h)利ゥリV$ ミ\ "儁0<ァ9躋KN*%a~L\リ勿オ。ツvp a逸狗U憤釜J- 0ムqC?ヘ>7:kuキ「]Tツ3゙IァU。ホ73ウジ・Gソユシ區慓半ワニ vQ8ン*レq:S<゚ャソ+ァ逝Rz 囁ヲ,[3撃貴.弛GミIラ[崩トヘ5B8T舒ンuミッコッ^ォ%oLLK 獎二Aカfヒムャ,86'ソレ讌kv`"kXoカタ窓Dキ<ノlキk冰。~贇:; :+セ~。オ(ンルクvエ7ワ碾堤險ーケフUメメz[朦ン#Ow\圜 梶*。r来?クVサロ4Mヌ?^ 土漲塩 z椎ホA 抹mlR7Xy]&、窈r脇ンR>ソキ+x&完糟]サ8pvュウッサェ*vモテ4/xc鈎)ヌマィUUヲ+ケホ 、旡TW|ァΒZv 枌儲lソミ濆箴珸Lンqッ l單ヨ疎譏`5テゥBw= モヨs洸HワW/zサ1%ネ癢[eム8邸3ツ )Bユv、リフ+eンeル.?fニゥ\[ユヒt%]ヤ&悃o2;CeP畳褄ユク>uォ叡+ユュノNиワm霆O゚昃L・モ3ィ=ツ恵Nノ dLy、o粹m '殴wB 、丞哮1メ@収sムM*#3!ソYリ(?モヘ尤ヘ`|mP6萇Mオワ`ワミ祖vz P?m+姚衄;S%ロqチ」U唇ヨY)fキJヌ kj:リQ」氷k<+苣顴ウdU6cャ蓮6k8マDj0萱ュp杷Pn爿ムYッソナ4?,Dウ簷ytPマ^-9コケgォ*iNォ篏&粥1`}@趨8Pp Nム洵ヘE勲%オqkシr)豫oヒ レ欖ムカラ 6Sサ"LPオ[湮ニM]7ョaサJル+。。ゥ>3z ュcDiリ2蕭カQu]ナ碎Nァ<瀧彈フcハ莠}フBゥ梼エツx&ezRチN4笏l痾ノ.ス徐6t北Su坡.4o:%イセンq皹座knヘ螽アッ$」ォ=遒9eBタマdbソC噪i」`~調=芬lJFUムdォツケmxO ウ\B盾(mx'Bェモゥメ~ン#7愬ンCッ,ソ|BEマケ\q9"qM@戍a_ウメoo゙悉椅ソZ3誕Rイ_メ,K 、弄1 Yレ,_ニ~!mbフソt0Cー圃~气Fキpロ4キx茎b,シ獰キ鐔辜 uム鱧ケ契Ew5wnI;5Bメ%刋セ・黽抂4ン屹vメーE"3W o %-レ3 }ョエヒ朋ニレ$jqR綜?ユ齋0アタ7H$'旋クD[ヤDlaJuヨ1IMI*!3p_救G訊檻萬vニq溥Z6ナSア゚ェbh?Xェ;yI0ム<劵、スe;4嚇止4マ粘Lィ>簟u4+ぽハヨテ。、mッ驛萋'[}t〔r:柮ェ哦。4フE垂 鐶d ゥ易リ&ヲupV]フ-o馥=`uカIリ袋D]EH=l3<ッ笘)FュNL8雅9コレ7E ル1qワ5!Mマ1 杼bア7寛マ<領フ 悴゚tdア笙3┼・_ア゚ワVb;j3ミKb #ヌヨンWーKmマ\ソrリDBK|キタLS`X|#皀@゚ZYー{sA!TYUセ广(輔.[B カコ[Mカム岼ロ氣XマтGgV冨韋,軻亳:゙ァ qュンタmカ?=v3+ワル~0G#・荵Mサレ吾y?リラ儀"@エy6BモHェウ{u モM溢9ロ誕モ゙4ヲ"EBィ&ーー軣rサJ゚ヨDイKア[g0)r$g$゙$Xレタウカ-Q9~ ア チ?!ホ4 ヘ「U ル%3・ナスUッオハ3トヤ恫Y塹=.Sニ'5ン.J> ホ`メ[ュXケ{オ7顔 {保mD約V4シ藺q鐇<ホl鑛葡孫C7ル]甲7シH+iッヘc/ュT譬胱ト埜3鵞V倚oiサィ 15ャ|顱NサニUハアwテrUq5ム;J。V!.ロ.ォx烹ヨmgY&*櫪-'ヒEJエ BチN翰7C"モハ鳬RTゥ&ヘ爲_絏娟フ0Ec* ルヒ]|4钁/C#麈ェスVヤモ%.棒ヨ<ザツM籵.ムX.ナ5oル'|}/uク@9モx犧d[E杓Vンツ榁魏VクュL4;P'ゥxェg伺pび゚ゃ/ヤ(括タ恙ワi技Pニ含 ヒルyZ \ 蓆1ン鉱?AXuz:_超衍鑵閥ヨ;Vf穗sjサ タ <、ラ!゙=chMュキ蔡4r、ヒTクa`^」^瀏~ク^ク_ッムY2=ムTdC!xVOィ%処コ,*}:キヘj L 感l昼@0@トト?ヲカ漑c拔ヌテナu)a!漢|ヨ盍`リ-ヵァvZダA-桙,カ6ラ` 4Jqiゥ&ス乂ソ=ィ誌 g稗gO°糘6 YKミワ22p Qマ撓[*ェ 巨ヤL匹tシ%;ウM4<サI ヒカ ッ゚&ヒrJB脾キィカ狩s們xIy6*ゥツヲム3絮焔ワ@u3エ_~=ホ ヌnロIe$Bグkク 冱hサフネ,ホモ$TBインd`陣ヤ節イV“ソXcリEs拓凭ヘエkウ垤T(「jホ!_~oエ鰒i撲]xルL親^ヲE/跌柧ヘZハマスP。4huケ3磊&フ@蜆*ーメホIs;/sク 41`rMーォタケ鎹嫁ロユァ{葢マサ7キdsQ。ー{i5)ロ 4マゥ/迅$7杉」ラ&こAィ囹aンX}常}、ツオTkネd標テ堅キ2ク{C(ソA_陬Juラ|,テXウ籍 iAO茸ヤUム, *iPテ印符Pフ繍X\ヘoad莞ラe,けUリ[yセ6 稔lJマハラ33(/T1ヤヨ颱ァン2迅gヤ#シケトウ5ヨセ1、uvニ劉賣鬪7鋒nミイu(Vqoフn|zル±#輒jB&ハイNF3O 狆肩ル~0ョUモカ恃 メZヨm膸&'縦ョュA=Xャモチ盃◎゚マ+ー'D'lI\3グコ搭蝶ノエtイyト;G謁験「x鵡メ {ノ鬨lZ^Uホdメv#Rサルヨタ\シ4ジe`.貨E}>kキ霄糀0v曰lォ#DリU[+kj@']悽恟Fjャ占jhァコB黒ラゥエCluレハ4r苑:l舗n'[扈Y典フ掌搬J-錆):FフナWC9cP檄:W|斜dCォォル xGCEj h・v・e援ョ4o/fェ1ツpルョユ'U゚<63ケLiU載迴pゥz櫪况ツ粥Cュ`ハ^ヌホ愚ュ >%ュ▼ナ9!rUェR7ロ/V|ォ_TンBxツ"&馗 u-ロノィアGコGx#@。ル54ャ5ハニ 倪Idヌ゚[Yエ&#掀ゥ ナmUコツV アー)煙顧<=リ「・、ワnu-l[x-ホ|-コセyャナトシ]pュン>Ov!゙%]>シ漏-クQラョ%5Aテyy*幟サ"a;Iァ湧iUけ荵、x紮Yエ ネ緋\ハハャヲ鎰ツォ(tユト{リ彌)ミ」」e'スJ-レノツ」ヒァチ鵯クuー来7哲コiマ椛oXセ奉O*Ku薗& ヌ>HLマ-=崖 P イ"p9。慂ホハ桙、イpヘウE4(c%玩1圈.;蕭P2O:ロ逧ソ@mqYUャ>AV゚ンE人罠9 るB紮w&y愾躾d2"BヲDツdX8Vヤ$レヒ」ネZyセヒZq@橈ム8ィg瓶エo<「5Azt椴斗ワ=Kネヘ)アテス・濤'0<癪YGk濾モルRe%ョ驗囓ロチ)イ髭エタユーu獗庖MウM_%l<俾!モホ+ァヨソハノgqィ8# 攴キ莨:).。+ZY2O-ス:鳶|5晶ヨ$Maモ妛.;9Hッ娯{kKO"c・s冠Hセケ7シモLo8エ極ccラLgネミF y#゚Dモ)7ユtュ竍矼vエpナ/オソZhB也\ミ岑ツ=チ1ヤ?酋ヨ0/_!ツHォソェァコ%a轄心/ョwェE双m'暎提χ 瘟jHRm着槊!0M9アエX瘧ハ阮朞$ ラ篆^nU0スワeuM ハpG証JIQxR~囓 キfノtオャ+ェオ iHD」用:C朋オ蹂!pt} DテOtu4L0q゚ i9ナセ蔆z?2ケッオ j@Dヨマ`a"ェモ-iチ@ォ5Vヘ最リ、M7>1~KYレ-2])゚セ*b!ヲJoSョ4ナ獗オggャ}nウカエ徃齎袮.UF冪ニbク駢[スF @Ofy鶫u6トノdNN賦。ュ剄ッ ヨ」nVモ$p豎,Paaツ-實ラEノBス酷重7躅(/ト朞w+pケ4'(舎・遠トfソ^悔レD: (\エ゚ヘ> +Zス瘟?ルy bRRエア"ヌ>ク歛 エR疵ユ・屡m祷Z,JKユトBエP:イMサ#8F(」fミGBQナ欝W鵬ャUF_カ゚URスス博RAPa9ヌRチニk^cZォ9,趺2ヌ助カdサHm<~@kォワP臀カHフォI!テ7ォt[ユ、a聿s_=ノX#ユPRdツg=#嬉覈レョ/ミdヤ ト,他L斟 uロオ素ムA c オ<フソxァュナク5≫ラkMオミ"g>gF牛3IPvLxqエ|贐∩孵FAO{トワ`釧゙TNカルs2閲6[ツgッv幢!ク繞.ハoミ ンA7aカ,嬬*hスヌホ6椨」O8{ヘ螟bタ([4GW竦。匍h*4イワ8g*?X`U.kZ赴>T Sョナ|aウ=jr:}XノメゥォJy妹Qヤ鬱變R&2ヨEH(ワ$渾2エcセ」レF萼ハOhナ饕ィpIイナa}+カ嚔Y竡徇テフべ4レm2J1ゥMCi鷯ァyヨ去1!ル蓆ェBl^eマ9BN闕箝エv6;ト-nカナ; タツ*m サA`ィタコ9フ 紊イ蒻,ト^a箕-廢{听モLュチ6#ロ"L"I耆J ニ}サ2ー)ャ[/リvj,\南W,aE!Yl+チ敏菱ツU株qJ江。コiDJ尨"キ/ч?キdロィヘミPDDワb"d寥0レク0碯kコワ檢ォR<ンァク^fッ汝N_[Cタ`ルャ「 蛍筐wRツ二蕪 マ`テ9"ヘタ"#テユエウシ:レ(Cワ、モ}逸;アUc掾%ユケmミ_ケ枯Hン;森穐9X?。Hメヨ2T# サC) 1ヒ線|訥オ+urZ%vレuツNホフ$j舷瘻オョUヤ蹶Mリ職墨3゚ムrイ}メZ(9wチ/!uiカ机逋*$ワDロkL0ハ9]ナ蜀レ]),ヘ/%イ<ッァ接ヲIリ0^5 wQ僣コnォ鷯溜EfP5!ロ].ヨツ7Y~!ユ9}f L[?vョト>ホ]ヘv5・TV$kー_穗r2ヒk'レ 鼈Fス8oアィo宅 符セエ」FWロ ^ト7J!隹ユ鞁普」|、カソ~@\ッタBU%C$HEざゥgbタヂPヒワッスョ玄z「ァcE2tqタヨS衽リ帙、~斡1p7ーYT}5゚ハォ轢ヌ)餠~MFハlRm誥j"徊9yasロ 」)~rノ3ヒC/笙& 8逡溶葎AEワl雫Rs"VH5猥=6/R頓/;Z+ ヲ `e裼(ヌg+$k式ユ窯!e偬スキャ菷|スモメワハhォホmmR」鮮ネBル裂ェoi ホ螻t(m鯆イFヤオ>kk)#V~7テソ;ネ= Qモコ⇔ ヨO5A゙8ョヤ=テAbアハn e愀オスσノ澗ン促レmメp邃、qSQ$C 、5ュユフ{r%k7(ムX迪云冥oE7ハ「=n季/ソニ茸リ)練vツ4\I役Wム牟"u #&イAs^鯵イx]8ン」MV3Nム !ニY膠`|邨゚ョa砒ヒVJカアJ 池B@5CnN(=ヌGdム%Sチ恣フiラ贖メ})ミヨM3n、ャjフェ"テm(菷ユDッ蛬鴪#供%#pンCYg:テェ?Inエ艟停Lユf喬fyDN?ラ疫ss0超~オ躋[サワ 律値t誌圸D「u#ラL7fRIョア5チカンc蓉Y軸w盞ス冏ヘ帙.垢E忍釀mw`;7序3:積コ/]フ輾イ涯3ユッ;F#ヨォ。Eレj爭sト,Q薀趁駲239!衷>91ィtハe&/オム嚠サ`篋. 轉5夲仮r*ケ0Wセ」W聯?サセメ咤vラ彪」4 CH+KP瞰X5ハ)シOVヒ ョ耿KR玲チ`]敏蜒ト 案ミ夷2 ョ枷≒穣QW M顧'シX疑羹4ョs。狭瓢 テ)b|ョク1@}」Ev_ワ40ェ1ナW盆7Cツ8fIYア@ー)ッiオン0モ聿x\瘠JョエクニTヨbmヘP畝`伯d&マ&G縄3槹ノ"ファ綛〕eイ8℃籃コfYsny且dク_ス「倏kシ\、ヨメF靜M斐ヨ*Aチレ頒-リ,キrV矩MFH゙1・CXy麺キ`ケ.コ$SォNェョシnカQPリム3,戸(SRcヲンiuャF枹VアHlフipE=ア輳磧 モタオw*kトリ潸ケ&cT6 ヤ亨イ7。%5c凅゙リゥlム.~キ7レタJュワuvK株コs4ッ%pヌ弓銹yレ鳧竰$ メDレュヨKm%*^エT/遶懸コw03Иjr(マ\ン,/鉋 Fテ荒ェGロヌ9h9 :+ャxu<ッLマ;ャ\陵樗5,p゚VQァ$Mナn。。ォ0クー`u3&NキpO>d,BSブム蘇 ゥ鄒KyイO9uミ「リ3ヤ、」je軒メヲYタH?aTX「扎疽・~ッ S辮?エヨ`H\┏142b|.シIヌG犹P3灘ノ網uTYー4翻9{e コ-ャキハRW|C孰oイ&2ァッラg7モah幄ユ|_ワn瀏w~レSア展~3=果`ゥ5tXr+Cセラ+ZZ?%HCネマゥクヒニ?1_。χ\mWマ: Nチ0XA5X4リゥHT・ワuレEエシlメナヤR&リ隨 ヘ'UpSヌナ{ eコJナU觜ハ、dリカ ォン顕トヌ~ケ臾0ヌx ~t4」コG點ワf臧・ツ:直メPJu瞰!屎!];du蜃ッ.オhfス;ュォデ{異「ヌMッ(ヘp9タ~?Ym咋6旙ト4トサ J斡vヤTヤ6タ"wJH#?Qァミ9鎮 Rサ[ケ<ケ~+ニ|y箒是9hニャ0撈:IルノZS4蹣![@テ貉嵜欷ロメヤw鎚゚u%ソq/忖ネ1ェrTシ堯ノワBdz H9W 。\逓ッ{wfJUemナメミ ゥJ n彼ムwエVhニャァワUヌJHョt畳~AーリuUフエ1ィオC7Vt|レNB熟攸?!j8瞽m寉サイc'ョ$タ愉セLユ Sムj礦ソ拷xd鶫HlxSレYサw忝W)4G jィgァ「]蠹 # aコ.ワ~b獎タ琳uエ"エテケヒ}\Jスゥ.ホゥ紜" 齧ヨ^.3?ゥルツ/酖(Z罩猥E#ミメ>ャa ヤ4ウ3セヨ'64/友コァsHuz ェ猷oR PqB栃ウゑヨコ」%ム vトツル耨サ者ムレか峠"゚u8穿ニヌ變セ&直n\tT傾tjO゙cノrョ`y゙餾fミ!錏5 ゥZテ n%Yワルyァ.「H菩ス4ャanメキォユg/ー]HOAaネw売ー9zサソ頸憫攻戞3]カェGEミ+ 揩]入ケ曖戳ム=エ棉ッ~z.,榧?タ&"WF・シS"@0蚤?Bエ 0ウ搏,ィ・0- 。Rsタ*侖2w<サ袗Wュ<aウォェ~gf!ヌミヨBlユ雅ウ_ノェ.゙慌Z\Pイイワケj$ナワネ=)凰^ゲcハヘクBコクABァ87オ/9 }シCxてFPiLノ、paBC3Rt桓Qヘ(ヘzトe。舎ツリシニェソ稜ュZfリマムv:5。゚」$メNミEケャ^mク)ワシ}ッ樶$・Cヤ<ヒ)笥「ャ「%ヤ犧爬<ュ困俐リ1゚dy gサエr*シ椏~エッI'zl;チhロフn「T";エ玄クGワ浚e)9セl=PPツ3 o認NSェEイコmUセf2vセx2ンムv櫓ツSレs3ョ:ゥOフサ0チッ18\膺3=t、Gロヌ.ョ、カ.ァ!kホvzメhJ クnyvェK梍ケアサZ]マ。シ」rヤ+踝槨:$)ネキ( ォキw F7卓H]エ悁ナdT「ニcdモ聒萎[<訓ヌ 0悸\,G吐ユK|Tスェt,ィ3魏ユNQDリiDN 鯔(Mマヲlwヤ@寢エv>齊40 qエト0ノ裸GハiB--j_cO%v>Wキ2娥ヒ1」ルa8*^$ィネSrミ。eヲ泓C「トワ\毬!゙Qq0Ph,0h`9父 ラ「,9Lトマ1ヒャ輹 f標Y。lソ7r_゚5]晉aqリ)y9BF恊ツム!ノリヤ#J~樣學 JY"。]'鯒y,淅ニe'm龝bleュハ8'@+#レーbDアKゃイァウ.魄軛モ{Ivof3zセーーヤ/マS#ツ$"%}7゙Y+ixョェQNヤ/ト椴ヒ.n、メ*}@ヨホモュ・+閂 cテ] 迢{)d@+菖゚レァ=シ"dュヌネユ. B4スQ雌#隣エ-@ヲソxdK怺;゚?eコメ5U餓1Aタ、ウコ8Rm/&ッ隙巫フPツR医Cツ5ネ4凋苛$9{N倫6躓膂≠wp メマ、 b# L8 .ニェスtモツ8foア8ァ+匣G描-セ嵎w∬ナ/溥_ユ9[DFラィカ鰰|獅 S8ゥ|ヨ@粋史: 「7ソk Lト!殕scッ#テADяIR98鑞6'2gVコクC>部短ーエナy壤ナF金~♭rゥ゙士HKg4$.、ク$欣レ墟Xz馬T[エァャAYP'ゥコ}$肆N}ヨュz m倏坐夫3ォbウ}b゙TXHB「>スホ「ツリsBeルhoメム雀o鷽ヌt\d#$ハ ァ!& 急 ユヘnサf徐麟GT櫃== マUム唔餽エルAケ エxコYv%=*9摯カL=ゥ。1ノ「Zヨ)TマdwWiキEェシフsy-r3ホュフ籐{iヤ,_Nモ4ミ クヲyキ8xoKチsィ9eティT[ 毳アノリ 。^ク#熙ーy) J仍で#ィヘロチ 鴇嗾ネ~"0潦<戛サル ウuアTク1トユ_Rツシc颯<張崗ョ翕・瀏闃甘6キ/an瓷 Eセハロシ汝`~`クニ1瑟」ヌネヘHE 宣Ajュ6゚jT゙3R;=ノ2j"K劇2d`lマkv1ン7_"E;娘{ユa゚#{f敖ロケ :ス晁 ヘワP^0_w]xF3コ酲Wワ1キソムャウYチwN9拱ヘトツlュW)(ミロ鰺、vエ(「欄ノpル螂JP4ェゥ$g遡g+4ョrfaーホam#ヤノワーーv pイkDOx7G%<抻M<ロ蝋Oン窪B憖ニ+ルャシ7D<1v`TCルマz粡ユホヤkャ&カ」N゙&らh%n$oV鰍エjwDクuメ擽v瘉ス7」w宏ヤxP%c 。チ1閼9R鎧愀キ帽ヅbォイノワ堯>鼡ヨス2ワvイz3;i?ュ"SX+ォコト溟](シ`ァN3、ホ=、ヨ^Yャ{OハHトァ?^g-g~モBe@QWa紂脊x碧孤(ユ埣pーシ`ェスゥ:ォテK:-jR "ムッヌ,]v 卉ゥトJ界X菘6qe6h7肭ワiザァiPンホ恰`廣ィ゙De #咢ン蝣裼eX#Pェメ,ノ4`(サ,ヽ葩サ箇7コヒルモィ5枅7 ヨ鞘ワ\)幇ワヌ佰狃\dレm疆ホQァャ天゚m颱・pヤ゙緒L[]ヒQエ肖 i 9?レキ%Ja搜`?「疵o、倒zァア苫マC0ヤhIシwシ」越タPキヘ:!エ・馘・jェP:9;Q2ネ5_.ヌ抹ロ・ャ+基=1・0ケ}妓 T愆ァsッ-${G菘|皓2VwA丑 0。QッP f ミ`_ヘEd Q カ"ュョX_Kアヘ@:のkアTA'ッムヘi)MマユXH 5SbアワhCN>ェu恵$Xユ-ャi}UヒTマzlね:コ\V4リ ゙タォ'ユツ'a異J:#,セァ・L汞wYLメ」タメ;m 雖RFォ(ゥ"ウpG摸キ、カュ hnー;\(6p>qォ(羂漫U言タ8隘シC*+ワLHjD陝ナ:&^` Rシルli尓ヤJフ@」?(タ}q眺掛C~軣ハ(&_ン5ヘ"_!iuヲ 狆ァ,9nホhEィ裴ツ彁>クdV ロ&レ09席メウ7g サォュナテ ェ>イO棟スJ,ケツ\*?}苣}d廱P)皇ヨレミスサ_ク濡[ヒラ。マテ某倶-ugサラチ;篩-テ海8JVcカrJΞサゥワrf+h,ェ8!iラ!.(-コм%ёwxコ膚g*ヘ_・ レ層W.ナw\3ア#;晄2ぐホチ゚gbr]^鶤チケ(チクィ副竟サ荅Mュvヒ;、c亡ヨsq屡=Zr゙/ィャArアhタャタ・rOレユX=d\」qKァ6棟險カフx:ゥP紙譎珞Xエc{イz味 1ュゥ」m゚w シx;カ;蛾}モ4ナo9チ({. 瑠ス纉ma= a5Sハ|」テFメCeセ舐7GU%.#>ェ"コTSj勹ラ#=J>ナ゚[@叨N。エロIッ2Y2AQ>q蓚トナ又S%U隕L<ツoネルMCTヒ猛ァD;觀Lヘc堊`ュル)」KHbイ鋩C$1]ツ」措キ朽HNケa$ャ^'[オ%$輦gンイァセD忍N!ィ啀.vv)YユォYヌQ98[隰テyu該U8咏eカ0ワ飮ネォコヘ=\*蜥呆麕ウソ^ >tzvY(y@リL酣ル|ァd:R鑛dチwu'聾ヨク:アレ6Mミ・ワ&ヘ8 #l4カ゚yユs洲シ{ノ ラyィン~;ンフ+Gイレ@y。yォsレe5Pヌゥe"mC7!M{ッワ%*醵セヘSム辷レWeッ; <態ロ|」"4L*。p#eJ柞+*裨qウ埣イィ松Lpヲ}キキ裃fmヨ鬮ワgpケ甲昜゙Pアク/&G<ッΥwKスiコ-wふj bシネi媽d p2ル「ネp#アlハ6キ:0r6ネMZ甅 ネスvx儚ミャス.wネse靄IFc」t M] ニ(褄}トss:ナ高Fナ(J殳f%ッy)&Jウャdhムx此:/ロ_LK5 ルヘcMgYカ蕚/'tl勘Ru]/j*Oス+蹤。l)ツハ4z岡肬襾!繊ラtネェヤL'・/ヲマ9J+ニ`ハェ・6テ硫wナ柑ヤ8~z蛭i\aカノコ ,"B?寄a$HNヒ.サ MェFw)Jミ觸S;ク。ロy宴ニ菫UセΖ「ン)]cルR1ス エ#ロ td?}モwuァYェ{ニメツ掾随サy>ネ、偸?_莨ミ3ケ;m椣燕Xァ!{vァマ}譚ョスッ(O祉$jイQ2Rj0コcb媒 1Gフョリセサン }~"薗及4ネォ_w8[ン3ムォホウカ叶@w{蜀隴漕「トャl4-\%Pk3メヲ9スC菠 イkクタZFO叱ヲ。ッ゙アG>ウ_「AV-}邵O}!緝・ム%トhuヌ騰F殴フ=%|トア0&\ エヌ嬌Dhリ/駘Wチエル゙Kr-vXo1Ln汨AeD2evヘ@3p#v モュ合略官鯆Wコ2叔、Y採*;ヤ鯲yfケd┳スイ。6ツQ1。モ朱ヘOタ瞑潸テE_W゚柚'ィaヲーm0ミ゚モj@DAシーMMオeE=ソ。,G__!タ"姐t^ニu"y・ー%d 簧}ハ9qエ1^K1dO語ァ,ウ壓畊鑪-。4駭D-'ヌ曁3Dネハ6 シ$ {ア:ヌ舶弟Wニ赳&╂訥k_'l\孝レ08エユxチナjシ更ンッ゚ロ蘊、LI)ラWス/ァヲヘイヘ「槭。beppオホ7o6aクoPヌ g妻*s惑翫YイZソ ォモ/ホ緡( Bヘハ#オ(xマ" ワT{eチK1、0椋モ剃キ3{キ$蹲W硫z狂mャネMオ:ヘm?hン暉ミsfExj4\0餓歹SAマ咾D吻菷3e酸Jmj}ゥ$゚ツャM疸コモレ柾貴BニZST。執Mメラ袷・Mフチ[}ンLs脚ャャイ鞁ZJQヘシM lホiprP゚S洳4椿凧朏カd'キゥt*vモ1リタママ|^寸褶Oウcゥ政ネ/萇フ|]怜 0倶、〉ニ!。ハコJZ橸ニナK#2茎fウ」テ?「$・>E権ヲ>'f&1Nサワ9ク8q?Kc%T樓MJ、ラPV/ユノ^, ィX7?I=rGS腎ロCョqH枋ナ衰ハJ剪"庚ッ4"ツテbエyッYZコ Bt!|{フカqクkエソトエ¶G&テヒa=9\椀Q`&瘻゚D聡NUQョ*メスVテ.痒=儷aラカEMヘc6ハツ $g_2~J1>Cカce檬8e7jヨN}[M nO}嘴y譌キ)u戎キネフゥ%VクZ ロハチ。ト0濡殻、ワ@"p<ゝマg9ルォ\ァRs」テエPOHア#充%-pトCヒfトotイ"/ュスネf.0p`I}; 豌P蛮召c賎zXンシヒュ寄フュ逖樛jqGッ、 ミ孤f6コ=キルトツ !ホ4逹-3k楮モ7軣\ェ=s ユクソ_ラ♯呰ケfゥヲ0キ罠 [eC4T甲8 #BbヌメルP歿7。gイ\]yYユ\6シmワ{~j?。<,Hg~カ癆カケ ル?A5蔡|(xjェレノ゙d!X桑2ケx 首ゥ済gJjEィ\チ葉詳イpHDdサエテッ掾ァ蓍4Hゥォ沃ラ呆Cラwd1 ラレワIc呼ル !セ更兀 kロ5倔゙エ=ンケCユ+|D*(ス{ メ畿'シケ]Ceテ鴣%ェカ勾Aノ「1幾iオセヤ4嶷]レ瘍s#ユOユQツキゾv9チレG0ネ)AKB゙l'ム、゚シ}ルkイ詮ユVV0 RァタララE愁ゥ3 [跚8メレ?シ?`q蛾C+籃v煉2! サ粡y44ントヲW覦3ゐ縦・6*U =餐ハ}u2、菫」エーヤ臑ラ GコF>0僣ィォX<ユwZqヨァw悃Z@ィゥHトマイエ「lソdD透<5ニ<ラFW蠏sWN奈Y」歌-ル サ&9`lfメモjス院|「 旌ミ清」<_辟゙ッ">、`ユ往KGム オ%ウ7ァ u 穉頷ニ杠イYオ劒#|キSリ秩ナ1}Tホヲ`G6゙w埃ナノx羸q較&シ"ェエ「DjSメ]レメリ航Pネ8}Uテg!ア"g皆+?イラn艪モフFz枴`Fウネ゙4モイ巻4ョン銃イノ゙ムユォ。'ェソユnヨOv":マ3ァ7ニF6i$Kィ。藉ヨ」 スN送9 f チ6Cルケィ]頤7、*wシ?テヘfキ,笘`IテoEノ1.i1-:ナnXケO6肓;Iッ):_擬ョ楪y $z x¥ェソイ「唾手ク8ョゥzr/讖7「サ彪a珈@qラ#ア「oェ4トラトZBィ*t D刊書CY纉ャ稜ュヘ/ツ Oネ\{hユ。A31`8f9D.ルュロ}嵬k アカ冖ェョテヒ+ lフt"ーチ游ワ'・@g3)t)ル 淳LY%ァM$、?ウ$e蛞$試畑2馘Ek1得 4ツ亟H0・X--S<交o#ルヌHワ{fIHーヘ約Nレフス"Q<5_キ畜GEソチg・dnフX!#メ .ァnツ|iッ鄭yッ]T$A2Vノhミ鍛ォ5icアャsヒッ7Zャホ @リFテSユG[セ3セ、L椁ツロス`クニュ搏:g8」rマハPメユ!ヒjネ:4a・/ヤ臭iョ 窒)(ア灯吭Jク鼈「ャ8l ェ,ヒコ{'ユ='oqX@DyチN媒カ,P巽^料釟ィ、<ォ;ルチニ弼ヒ外ss 30;Wヒ?a゚)Z鵐ロNヘ秡モホママ皖F&1E{![ミ!+q$、ュEHニ謄ア:ラタ」x巽_Jコk膝ャO 鞭Qメ*」gU>\/xタ+f骰coヨ-Rtリレ{K$裡p,浙桑G+ーk:}';鈩垈ルJ ルAPv6JO味%Bンケ槝偖タ^,@ノzャア,Cソ「Zv蓁 0モ サPラ* ゚X商 Um_z2ネoツqラ Djホムム\gD 'ムn_'ツ(ン3,ァ ユe囎ク ァAァマタB゙Z2fレヲョ蠶イ"{@/ユIp」リ(EQィRロヘカ|,チ蓑cサ9」ロSF9Hワw_ラxfネkOェ?!Lス+M霆Vカンヘ箏 5 h゙Z JOD規電% ヘ:2- "5サミh|W (hoオq洶マ'oOワラQnGer゙幣hカxマm5#o祢p。シ: 堪2:_t:セ弋ィ絏豐(」廚ャ3タ粘{Ν神6チロ懈モ施lカ4l+K*Oz(Fカレ^LdネwェハニBマM爆,Uミ3"r'EユK 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark {restore}if endstream endobj % 'fontDescriptor:DarkGardenMK': class PDFDictionary 4 0 obj << /Ascent 831 /CapHeight 931 /Descent -123 /Flags 34 /FontBBox [ -11 -331 935 1122 ] /FontFile 3 0 R /FontName /DarkGardenMK /ItalicAngle 0 /StemV 0 /Type /FontDescriptor /XHeight 869 >> endobj % 'F2': class PDFType1Font 5 0 obj % Font DarkGardenMK << /BaseFont /DarkGardenMK /Encoding /WinAnsiEncoding /FirstChar 0 /FontDescriptor 4 0 R /LastChar 255 /Name /F2 /Subtype /Type1 /Type /Font /Widths [ 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 130 611 131 0 0 0 0 0 0 0 0 0 0 0 187 187 0 0 0 0 0 706 624 619 730 613 660 624 660 284 603 639 658 833 614 691 648 612 647 666 829 688 618 985 690 645 841 0 0 0 0 0 0 612 528 571 641 527 563 549 581 256 527 543 525 718 523 612 561 566 548 567 718 587 530 774 604 559 764 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 765 0 0 0 0 0 0 0 0 0 0 0 0 0 0 704 0 0 791 0 0 0 0 0 763 0 0 543 0 0 0 0 650 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 672 0 0 0 0 0 648 0 0 0 ] >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 160 >> stream GappV9+&O$&4H6pF,+e66H88]c=\^W0&-^A*l(Po9F/c=(E".u?.A/iCI0RBeuoZF.o'.I1%Yj:+OE2&lJ:eIrE8PTP"$@sFUG+6<0d_V".%fUU7oh:Eendstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000483 00000 n 0000080447 00000 n 0000080708 00000 n 0000082106 00000 n 0000082384 00000 n 0000082519 00000 n 0000082788 00000 n 0000082894 00000 n 0000083198 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 83250 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-setNextTemplate.pdf0000664000175000017500000000675412063667552026140 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 5 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 6 0 obj % Page dictionary << /Contents 12 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 13 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 3 /Kids [ 4 0 R 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 211 >> stream Garo:5mkIo$q9oEhVg+fE13T_b]GAfPoCk_&?V[/d+X2oGQ$`k(3c!Z*o^t)WO()tN)8"R[=O15%\k'<>nXITIjdKV0hp_VS1m\I5?XbTo5/lV$FbL?5Xqo`TdS&!kS!!MdV>/74mFOBSd-q,&G301>_^!m=+`d:\/VLN$Ti&HgZ/tbjOkKJHTNV~>endstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 211 >> stream Garo:5mkIo$q9oEhVg+fE13T_b]GAfPoCk_&?V[/d+X2oGQ$`k(3c!Z*o^t)WO()tN)8"R[=O15%\k'<>nXITIjdKV0hp_VS1m\I5?XbTo5/lV$FbL?5Xqo`TdS&!kS!!MdV>/74mFOBSd-q,&G301>_^!m=+_i:\/VLN$Ti&HgZ/tbjOkKJ`&fC~>endstream endobj % 'R12': class PDFStream 12 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 199 >> stream Gar?*_$\%E$q0Q> endobj xref 0 14 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000837 00000 n 0000001115 00000 n 0000001393 00000 n 0000001528 00000 n 0000001797 00000 n 0000001919 00000 n 0000002272 00000 n 0000002625 00000 n 0000002968 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 14 >> startxref 3020 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-4.pdf0000664000175000017500000000505612063667552025207 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 399 >> stream GasbWbAP0N&4Q>Undfr4,%3SIa2([(7Fe^/VNQFZ7mLg_#l]U<endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002070 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2122 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-fixedSize.pdf0000664000175000017500000000525312063667552024735 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 524 >> stream Gb!koCMVZY'`B)oIlQ?N%BAXNa=`Ff`YKup9:>d0CWhPqa3&..D>3@?XiB$ldKfCFV3[4Ea1:s"F*.XG2%dlL$%+UtbQNTPW?G0*_OTPr)396+7q-O@k"MU4e]:Y-e210YN#)aN[e:!;K[>V<\Pfdm'r:2u9kG"^n*T`!0'5\gI=O=J;S+G`rG[8Qc13[M4IN/X+>LhThsAe3IIe&+]+0.]Vm5]e.sC.emV`[ROa0oW7hm66`%5/K5lQ\=nWt8F>.\f,/^`5O?_aLciiKC*>YD]*DemtY$Jh^1/]3o1X9j34@k+kr?!tS;qmFdRp)#BWhQ+VP%gQA^F0J^HF&+MDlidRg$3scmhBn)ml!Z$-7m)^8&-)HiEHS'49JaYp(4&O%IkR)1]1\1kR4>=GXRc.HK>"IJ,Eoendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002195 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2247 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-032-images.pdf0000664000175000017500000001637312063667552026412 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.342918e84a4c367d82ddafb577fcd900': class PDFImageXObject 5 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 178 /Length 1396 /Subtype /Image /Type /XObject /Width 223 >> stream Gb"0VlZ/IK&-btfs/"K7AEk>H&Kk-&,0p#7M&d/UQX)4es82ltz!!%Ne/AJmsI,Mfu-\7me'M^FYRR?$ZK3&OiC&H]KTsLrcSAIj$_F[MGLX@>uG@F-I_F[qJ8Qru&>/Ej7_F[qJ8Qru&>/Ej7_F]6L%k'(LI6cRW<0g:m;fqi8;&H#c-*,AAFL`?-=\>UD@=:4R?UUgA@9J;J3ZZN*RVmEHrN.AXZlXc);9gnf$@Qk+:sasiY&PWt\$q,j'>\lSfLBe-)`Ot`C5-9nfDFg:!R8Kp^FJt^m8Y)a;eB5=r?&oao/o"6D'hgrILJoa\'&1t`P<`!1;_'5#83"SO(,!%<"d=,4<)0]oWTqVTRC$!2:omM2#u;;6YF@fHetp3!sh1MMSfa^g4RH/"l];nYgN6S-t.4";Uf/ZVP86;Wa@*+CM_n#HgDI8jJH#U^XW:YLMd;(sN64_-eU\<-g:;H,='MSblT%g&#oE7K9K7kD(_:JS5dB!=3=4*m""hC3Fc@T=X`Hq[:B7Db<,8$-Q'46L@N_22ea:9Pg,c/(>^_m$KDL)p8N8_>aJ*J9ll*:k.OPC0^W7srC`0t6g,bjhr6Gm'-ZARWYAge5C2pY(IO&Xh5F2.8Woc)f`AKIlk_b#uDJ.F"N"1.Q1/.U)C'9%2c2]CCMj2nV#KT&bLRfb%[\aR="CE=??oMJp+Dk63kMItZ&.$-.(FskQ?A4_i6<7b3lb+eVSf^bYm^E/43(!*JjZ3(l2!/Ej7_F[qJ8Qru&>/Ej7_F[qJ8Qru&>/Ej7_F[qJ8Qru&>/CRGz!!&hc(U458[/~>endstream endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 12 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.342918e84a4c367d82ddafb577fcd900 5 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 7 0 obj % Page dictionary << /Contents 13 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.342918e84a4c367d82ddafb577fcd900 5 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 8 0 obj % Page dictionary << /Contents 14 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R9': class PDFCatalog 9 0 obj % Document Root << /Outlines 15 0 R /PageMode /UseNone /Pages 11 0 R /Type /Catalog >> endobj % 'R10': class PDFInfo 10 0 obj << /Author (\(anonymous\)) /CreationDate (D:20000101000000+00'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R11': class PDFPages 11 0 obj % page tree << /Count 3 /Kids [ 6 0 R 7 0 R 8 0 R ] /Type /Pages >> endobj % 'R12': class PDFStream 12 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 947 >> stream GatU09i'M/&A:TVIi,/?L5HnQ^Z)2i+r[EnPm[<5".,!18X=8,_7M%j^V2L>3s:,!$3YD9SXoN3m*6ON+oM`I/2mRl"eG]Z.kq,dbDk?'!]CktqRoJe%b"u?:*(dbKYan:_3-;Z`"@BOmi/f(R(%5&Pc:K[mdUF;4"*:<`2iF,L2"U+$16'%*#aJL04UZL=I(>1g966[[95Xk'10PkcK6k"^7s7qSfDCXH9mg-8#W/BMU0'[?KA)C[Be^/KbdAJ^mY^!NB:7:FD\pr92I1[#"KuXs';bJr#LJt!ai`@C#Y;ak;l(tk2?oP3.J?k-a)3\Bu$iJ26\CL;S$n.NNu[6\$i1G<78m+oBcjKZA&NLbON31\j`[W31LDIUGb2Y2!lE5@b7L-'j*jH&3qsPnXaM\`HNZpBomikp9`W-N_),o'W%7RH>SQ"gLh><^I[nhDE[ip5@\N-,U]Y8<5^@.c(WnHbR^;e&X_fLEOpF44rSR7.Z7d7iVg-Sd.2Cg,ptHSPGM_2'\Ir1Q\J>\+Dn'6E(3CoKXLVm?bH:2aV`1r&dC9jmmF+]`Yr@mPXF[VeI9Z4A@q.7a>G2oW9*]p)Z%P?qS!k@M-hYS2R5.4,CK/j8c@CH*-\$Gi)oTL4o$uW>c:BULKT=4<+r\=8SEIK9Ikr7;O%7X5/pdYLs<$ScN6)e8b^2SRjIlDaH_4#JQ3Eql0a0u?Ju[cMKb1Q'hL+?A*LsaGO?tFL%4@KGWtendstream endobj % 'R13': class PDFStream 13 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 740 >> stream Gb!Sj9omaW&A:TVIi+#86,FRje4HfV.0;(6]:/m.EC^bPc)QUnlr*]KnMj74/K@RuQ`+f]^@BF[H1j(g&@i>Ef:iIoPJPLq!bIIqJ-mJC]7[Rq(jlhrDdu$GZnY0`DfZ,/MF4/+U_Jt?Juj^[_oFk4l#m)q1):r*Pu[=*1O'Atl[5gBZ#9tRkpG:gp@o9+-cfWiM"b?)5g40Q[pFpp=p9tY7\@iVA1AU8O%(1-f?`*ZYR=0)FMS&tV9,gRYk?YL,p5[-RQb4nUd!D#t"$9dGerVCFm]VQ3]IWtajk#ch[]Xh<^]a[!YCVZ(PXo%ErLPp&+gXIR7Y1(OkEMhMnUX\75IMSiKW&WF2,K1PulV+di7Qmo;92h6-GL\qOPaSI,fMeQ:<:Qf[bk,*(6Pt2nN5)pa-2rAYot^\X*&*sG;_g\bm^4!H>7B*Xendstream endobj % 'R14': class PDFStream 14 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 722 >> stream GasJOd;RJf&BH\kuiJC)a-rkI^3[q2uo_:DTR&#@&!g\&j`n-lQX>A;T:MT8MmoqfEHl3O3eKj]Sm8c>b$ip;tb+jF)c*R\K""qf7%IhgO:Q+Qr8K85FK:aDlds:@&7U6!%A2/X5m_EtmM.]T!s#V\>'54FEK#^KRdK#nKnQo-hndek9$aUM5\@h&gB0jK"pu>"YQd4G]SGUh)j/Hg5nfDpU"3&VPmt_T#VW/R%+"86B5fI=eZ@OWT8!P42F<+BTSZDfJFX'N\n-mEE'3lsr#a5q"_gPL,G2K;Irq7,M4O>bpV5ad@B![sd.n,Pg`V$HUf6UE9C9k,8AV/FWgS"spR!!@G>;8J@E)_@1__`oK2,QhpU6Q4KW,nYW2"i["$iKrfPS`S6-nj/T;Z:K%N!+&0^CdfX8;o8,Y_Zftr_ohJi*%q8)N)HXbi$keCLsL)Gt!^RPY+hcS>50C.;[09NnBA/Ll7$0Um15ZXS=9^keK%!$\PppCX&?f)'p5jT;k4PNR[#ulqD@1P<@glamr?%77CIulT)tY,s`J05;Z*=i+*j%DpOL.V:0'@EgM*-"8N'APV_n2C.H)_B^`(MA-Vc`Xu(d6"`k*h)Jcp/c$+=%lTO6m,%3i+iD16OJjII)lpgIu>/LN=34s:jQqj4Q$&(.X~>endstream endobj % 'R15': class PDFOutlines 15 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 16 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000587 00000 n 0000000803 00000 n 0000002435 00000 n 0000002779 00000 n 0000003123 00000 n 0000003402 00000 n 0000003539 00000 n 0000003810 00000 n 0000003933 00000 n 0000005022 00000 n 0000005904 00000 n 0000006770 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\223\367y\354\321\362\222Ju\262\315V\3448<\372) (\223\367y\354\321\362\222Ju\262\315V\3448<\372)] /Info 10 0 R /Root 9 0 R /Size 16 >> startxref 6822 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-spacer.pdf0000664000175000017500000000510412063667552024253 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 421 >> stream Gat=e;/:e<'SYEPr=A)=%;&>A[Y6Hgf_VtA6!j7%1hoK;cD20SrK:.7X_TAM";C5e\bYY"6"C5jhlI#g(hROb6GX"j,YZ#1n]%Gin*,K6g',G>=^&@sg(WOD`6)kW3">,0g0^.u;HI;8VBAN51\.:k&Nnp$I3HrhcU>8"5JaP0FZcT)`_3t%>5:.ia2=P/%d_*Z'>-:Cn](H$5cFkYSOU=l:DpB/C=m5MJO4P6T]I1I45O#s89!h=FM>6FIj.J1HK>a[@*]+![)]KmXp8lL_)qV=+Kl:]A!]VAP==q7gWA5U[q`Xg@+BXmhSf#ed18cOLa*4H,r?NOlit,e9dQ8a"LIo/A_UBFL)[,Y.Gig72t$((>1W(1\?*d!$Zi0g9IE'dcGEr~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002092 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2144 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-10.pdf0000664000175000017500000000575512063667552025775 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 622 >> stream Gat%ac#28i%"RdInd[d*`M/0aI]k>ldk1h%!a2!$)k:G5HJ%7RZ4kOkXY,;.gQ;'Tr$6k`d-8F8riuWNBOJA;5_!l%ZVL\hWOP]HEnlL$8+cQ"3X.a[,-hq@H\,tr"6UEAMlr4_m9k.X@Fl)cPMLeI1b<^j*Z&MMrV:]+n*'51`h;bAL6%@FOS\83d)#LL/#ceLkof5[$WXp-$)bYu[W$nt5b2f;=AP//p'S8(me]PrKYJ]=AbmrSC7u<.e+*Kp/<8ph<+icRPD;i+9V8r0NE'#`.p3YF9A&/7)rqu]69;i+9W$AbaE",H'"2%m:*$VDBb?5JhcQ2$T:KX_@L.!hl)h5k:fJu^C:*S(,7V.c^ElF4s/'BZX9"lZKl~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000245 00000 n 0000000410 00000 n 0000000585 00000 n 0000000774 00000 n 0000000943 00000 n 0000001221 00000 n 0000001356 00000 n 0000001625 00000 n 0000001731 00000 n 0000002497 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 2549 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-document-story.pdf0000664000175000017500000000417712063667552026003 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 174 >> stream Gaqco5mdZJ$q9oEhVl(F_:k]iNa"ehiC4)t!(R4W0KAf6Qkg8ZiG\;d,D9_t/T1`q=0.Gc@d!n>6(hj1e@W26oOYQ@8[;lC-&&^gABb=s##%h]9LD%N3endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001660 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1711 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pageInfo-2.pdf0000664000175000017500000000361712063667552024674 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 612 1008 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 121 >> stream Gap@D0b-H6'Eri?4%tJ4?T&B:U!i`H+=n\%!fbYBOdA`to7Zb,I-_jf8l>tYTd+#UK@Z:PH`rOG'k><17ianM:tqsR3Tf'+%"!Ia]:Eqt/njl_n\#0[,T#2~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000640 00000 n 0000000774 00000 n 0000001056 00000 n 0000001161 00000 n 0000001424 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1475 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-rectange.pdf0000664000175000017500000000416212063667552024571 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 339 >> stream Gar?-]1rJ`$q:%aq$5LcB)KfH>mVuAjpsp(MHpSg^VDCX',X.V77YYRobiA+&)G"@%H+P0j"g]jm-d2s$Mt2nm5]RrF2;%ZJsCqY]2'ka'c(J;RrkY!o`hT`RhM87;'Sp29.q<'3JhWE8Z2<4DVg[XucRLk>/R&-U%CfRN(hU8ooKPj0#^LIrX40[GV+0a_SE>I*;?O("B;6V^[LP'%=/ht`l85r,pt5L\mFUUa+Xb@q)u\KRkl~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001651 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1702 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-drawCenteredString.pdf0000664000175000017500000000362212063667552026577 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 115 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`1,I?72-)Cc1tON^#g$)nn4:gGa]Abo0?Ql6do6Up;@(YOlVZU%!W]l;'T)~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1478 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf0000664000175000017500000000633612063667552026071 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 891 >> stream Gb"/ebAJ7R$q9mpr"!&D!MYD")^r9G>-GLd3^8_%:4P55,j;+T?V26i@s]I]n[>[\a7p'cF`ke/61P-,lg5q4k5ha:#Y6Z)!G\<:p]b)\jl0j^^l`aB:4("0$11)hH^X$UG/c4s4P_?-mQTjETp3"*YQXG.]L(UtMI&P:nO_b[C%h.H2?j$%p&_CK=?!*?h=UjgU#gLAsi,023()/d\\b-s!t&k*,+eb^s9tJIeS4@4:R.fVCo4AGS4V!Nh'5"m"MTAN++PR\O15014DfY>.YM*A`YXh>`54!`F5^rinocpg.>@$L$_0#+`=ng=Gn4h&V[7HKk$d!/(W,]]\l#`L!g]nm;_NmR?\SgXh7JIjb7G"0@Z]d:=E>_-Y7GEjUDs)]qId#2cQaLL'gpF$I^%i=h'lf8k6HS'.:ukN16pF%C8N..4f56c5O[.Adc7_P)^FHo[p[SE(XIOWcf4h;XpQYid=Z(LL__WMF0_]\_3'(@=U<_>MpVLeF*6TW&8LXg`fa2oG4G&ik$'q8_o'edaaF`OG;PB2!"@>*9Hl\gn1Vu[l[PbR&IaR.8fNdI1im5Bp*q#q!Pn5P1n.]bJc\lQj@(~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000245 00000 n 0000000410 00000 n 0000000581 00000 n 0000000756 00000 n 0000000915 00000 n 0000001193 00000 n 0000001328 00000 n 0000001597 00000 n 0000001703 00000 n 0000002738 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 2790 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-spiderChart.pdf0000664000175000017500000000751212063667552025253 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1677 >> stream Gb"/'>Amb(&:Ru#s+;De;N5>Un`@/TO:XO=DRg&C&<`87g=):',p[q&A"Ve&I-f+TA5AX_6>;m!4J)B2im4q8U%f#Ds6#pacSjd@Y<`/Gc"d>L)R9*54Q!5AB`SCiZk+Ju$SWD`7-TXB0(I!KkCq]NValu#!'Rqo9SP4njb?KHUNHUo"YOMnp5`mTd]V&#_ebL%Jh^Xap#[f5d@A>G8/Y$Bkq[GSCh,Q@E($prhLd@q%I75Q,tE(D;]kq+q`K9,?7d9E;9RQuEIBok_hF:?G&n4'-!/[h0JPiOu?,O0T=ACb`eXVFCT=l-P$`4mJJ+LIEVOG^?`pf:Y%=0J6t="daY.H(_"E)PF%U3@uEEKgJB.fl0"@)tsB/Z2N?Vg?RAUc.-603P,gPZ]R].#!7sC,DA'BItf&+Poc>>#,A88d\TZcT1)co<*!cZHjlUAqA2^Dg@9Jr(W?<#S-E*!?JZ1!Dh.uF-a3M8Gdl5YXCU-'7tlMeU]V8J)l.Z2mgBDPUc0H?&*MLd/K5Pg\:.d;Y'l;W(G?#CEZe-'3^LC(JaJ;nXg<\>k&/XFoC0Ve7#?(ejk3EP$/2cQ><#+Dqc>)0c9IJ0c,Z[9In8uc$8F_/J$FM:Wd;Pc9+2mM:2aQ,QTfNM@mlG:#+4)^4HB#C;SoQo9@E&s=ZfLXPIOu91.^IL1+H!t2$bC@1,;[2S@!BL8'cU[?!2oEEhh&r#&7dI3#a$#>.uoU)fPIH':7=sDMtY3p(V%88K=I]F:Ur[\n85nU?B,YR0f].2Q!_LQo8P";\.kAs7W<`j3a)41U'Hq25]XUO3&6&URg;=>q'm#-@G2`rXe+Sdt3XE:MS?)S0\T]K(LO+.+D4+9%>!C`_jfoA[F=(18PqN]'qZ\)qClAe\l]+`]3?>T/=-IcnSN*N:gYH2E&"1&ClXMAWSSSSh&0,mh]`cR"F%%gc,W9?M@.[Kdki&e<@oZ=B;bfW@#Ue)>f6cH2k[CB<"('EP7)=X!c2%k"=,Bo(mp\jW7fE]'EPVgpT&ID$b,p@+MZ)3E;BK,[@ridKHHu]j`/h5O'g-Nb:MDO1/CLnoCR]OdB]DWlO$hc]!1.JpY!nk*%niir4.a;dk=[/J,e)QT;qtZHt+.!E&Qb@s8LE)ZodtdAqh`pphN>`uendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000003360 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3412 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-07.pdf0000664000175000017500000000371412063667552025774 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 204 >> stream Garo<4V#=_%#&mu^;HEX!'=oNY*FNk"dBs*!eqHsmQZdor3QQ`jF"8*T:H7rq2!(?"M092?6G,IJ])\!3b"GC*_]#q]J=>pc3L4.1`B%B3_6+kpWZ:#F@!_lr1TjC$^,H$8&_Vh<+Q(deFFJ]23m'APAT#)DABih9ptcW"=ZJsJejsZ2l:K3FIG?rVHIN[+*dl\0,ED,W;~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000001503 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1554 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-02.pdf0000664000175000017500000000402412063667552025762 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 276 >> stream Gat=b5tf-M&;BS,reF!=lClsslL%g-"^sPBq#dmiD(9C#P:=*ChD?`,i^knYR5]%*T1#6Ab^VPPpBmCBKP[;VODWN7*O/[WnQ$FrbI_Vq^"ju];9^#$VIPPr"Nca)#fcskJng+n!8eMj5!TUSGa)9oYISX*d'uM\qYNb]#g14\ULflGQ2-#?ps=IdGT^DXrDd7K>Bi!81gL*J_44RepZQPi$C>kM9_r+?1gM02ZCOKZM4R7HXUC~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000001575 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1626 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-bulkData.pdf0000664000175000017500000000500412063667552026564 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 357 >> stream GasJN_.nWW'LhbJs6s(.(96LC)MQUn9O2egdQlEE3nDSY4-';ij"hIKTHt4B3'"Mc_SFcUd@<,qM#o>A^_"urQuE5-B6[=_Fg`l6=G\.hUiG,=-ePUjj,H5B\0=DU[5#Et;9ZNYZRf>nN!,jOd/C\)&h?T+/R`c+oo`'h8i7J3:sTNnS@"=$6]e6gbQ1j->\1cR8$C.(ff;YM!;JY_+?)\%gT^$h2imBb8bfh!HmU7LK1!OhY'XMpk#~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002028 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2080 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-hr.pdf0000664000175000017500000000374712063667552023422 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 231 >> stream GatUk]*\To&4QI]ro'/X&MoW:N4foA.HloU>T)k/6T-X@%'5;P.A0V43_0i;oHZq-BW4$i\RBY^ALL@k[p!q5O79iY=ep>,jfDS=N0.9;+_+cHe?%15Q;]6`Ubn%YS%.-CEDDGmCUD6TCQKpF^.;RiGkbpH:f]er6&Ia&4\:V~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000001530 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1581 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-12.pdf0000664000175000017500000001541312063667552025767 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.a9475650de663a97fd49920ba129d955': class PDFImageXObject 5 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 86 /Length 3441 /Subtype /Image /Type /XObject /Width 130 >> stream Gb"/kc\l$s&BFP1_2Dt)$d:1-71_WG5t""8d$&bf&I]R7/-[n]Ci0j46p]$_"a0tHAPLlrJ9CjJP]Q3:qi]L#Fa-T"Ac's+Mn;AA&B6[X-o?:8=&#D:N"#.Sd_Jd&9nAMZ$Rc?Cq]/Y@kGCugmI;S1MEQ=hE#?fu]AM8aaT1Fe#Q@"WD]Ve6J*7aNZ3-FN9]5r]/8)?iJrSUU\&9qs,l-cZ%,@Ga:aj1tI*.E%7]"0q@K7*%X`Af\njiWkC+51"lqO*V0*PI'PBJf1OT02\,Erh63ZEf)S^]!jfHpmVVo1#\nh"B/Yc3VT5AJc=Ij'4BjV:+2kk67ig(ZqPk)\b0r:qcXj)4V):BjW1aG9sr[">($q&@&2IVjUXKB`Q6S_#QPVQ<*!=7!gZ)uuaUP>9uEFQc49!Pn$gdSY2"9^dV)^&'O6ZPLEmUUKj=0GrtOFg]EA_)rZ&;rVG*uIo`F7LH(Ktl%Gc6>hI=B"D!/K;VVAbkh_dMaT?"DMF),S/hm>a3)l7K"=C+Ak"]sJfAU=.%EUKQU+N.i;Q//H.6[FEoi_BsN%kVaghJClIbg7+JB.Che#fJj1ZLr,IdH\qC])p?cEfgQim'seq:@jhddafm@3jBfh:gMK;$:u_Tu`Ef5+:,^BULR&2*)B/@nCjXR21K+c_NWo*aNDp9X1"d!$,2'E=2JJn8C4$[G>uV@nc,FbWK.kk;5bN[lL.ac+H'4?u]gpgIb!9C[Nt'diDUboZDk3Q6bqekZfLKir0p'T.OkEb0"GQhe^7P5tiPEKg9`>*6*8=eoGBkm.`S8P!!VW:p8uuM*7C(XQ669?@q5$Q4JD5R:NNg&#\*=Lcs_Ys-4ti8M=plM2=X[jDgXP`d5!5=A/'/D7IZWLoh%R/5#uJD-R#!Ct4c/.JK\;hPKdHbZ*&omX+;2N/bA=BSmAO_!:.d7kKp`k(#fe%"%)Bc>TQpKJ^XW)gN/-g9n9KpU)/\f1$QU>slYX%2rG"CReW\5cHb`#!.+i12ka"f!N[]nrqE:aVl=hB+OEDSh8`2^pdo%QR65*#mk%-#X[",Ofs=\_!N!>3!HV)troQI\?^9^#=7,?QpZadoGqfh>,"Q3`/l#;<4!6LL(3mqm;>D2;-DSjMNd2a'#ggd(q3&M5_iUbYsb]ja""]dcA\fuB?iiO&!^PLOi35WqkHR'-KR*aWf^n:jJn&Tb3('.eah]JEM[&j5^)dgEdO)BF`>l**+9SmWp06Tn\hjj8O#guco7C$_cFSN8udG_'JXgj(:e9P*nnOK[6iK?kn>.LPi?]flJeri[+^]1DMBV`UbNOnV1U'HA3WA`_,Z[[YiY\F\l."XWK>CNV82<:lUW2MZ6]R1"(Qr"9LlJ0]N3]b>>DbL9h[9,de1[W?HDg'Ht=lel/IrgDER(cMeqYC#aZQTG"aM>=r:+og:N9?@rW_D09;hA-aAd$\gEY138bbi'P@0Q6YOP7nqSA49.ffNT8-`cPF!35;&.X&;Js0qoSkiQG5a9P8WsU9K*A$nP[U&kMU"o>YqIs9[^M%D9[uVM0$DR/kl(\cZXB55OdZGEad#;2dKHA#SogbAU\HC\3:Ss4hN7P.K,`5-`og&N[dDq)aI.f@Q[uXZq(#J"84k7RM9GI6Eu=ob5#K["qZi86D#mOt?F/UJLHEq@EFtnV[YYJGC0N2k#UGs_O)`e)0)d_`U4<:#BZoVfh*cco3&^>XC>$l0:NDf3PVCPLkT+K[Gj[;*Mi.`B:GfhIC(l@kjVkHl1:7`XP[)fE9FEV_$!\TETGUITa(dFf,"t3A+]Y"B=CIq/8;/4FH0h2\_-'@F`\hoa*j-]Y^3`L_r8h1=p=Yqo:=/;_DBHiBuE=[u4d*$B&Ie"+Raq&W57a\Ba#YK`!"66+NaMM5$&r>Bgbs;^cVM_sYUWoa3HQEjJX@)NI.r?q0!VETqhE@j3RfpT"pBK,="rZ_6UM,J9AsiZ&.PVuI"=kH,W`(^\H^L/0Pl;f($GEt/HKdKa-Z[#mb4Qck:NdTka@p4=AMKW!n2kO%iX4a+%PsVJqh'Mg+P*jW\U+Mhj#iUt8&bn)#YWO)\+6#NT0,TqCkQIFZS_tQfq9j]iEWVSG/#.HH;1Ks+:^BgHYq798DlD2M\)Jj:bFB^hgC\o;H:%"`HcWs\CTB1n`h!$E@9Mgk%VV"54r_tmMGA@":V56%)>K12KnD(SlW7A\OSmlGX,:m0V8WqK![YP?b0[4SD:rC-*s.&GJA78Y!'=J*A3?!5Hnp!m]cU73i^-fm[`,^NS554-[-=Z5\`Bk;o;Z;nQGDC::$=t0T\E-1Y=kP3K%I"HS5IogSDcLLBO3hleVhS@CWc(mO8<;,DEi0!5GO>7RPopn9ZYXJ#O"H@C(tsj/.PI+-Y"pJ@=gj.uGFR3Z+[*^=BVXt$Cc*W1/+-B5+alZI1hBZo-/BldS`68Ql\;k-:(?g%7u7$pCe%rKe94K)B.N>\f_[4(&VtcnFh/?.eBk5GO<,P\GA;#]]3$>VTQBYBGrpH')5Y:[OJ_i^9Kd5i5KbtHR>X\kU)%s5S\FmonqYG2qrh)*9t?/cqb!YMa/8Ub@.B+9K".)ZAlu_*NdqGMqYu*bendstream endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.a9475650de663a97fd49920ba129d955 5 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 891 >> stream Gb!;c9i'M/&A:U)J!_HL@bI1JYkO"^Pq!8tqG=0V_8/\KNFNl)d@]=pnCgXu5QOa(MA38Omd//Xh`Q5s\G`-$^Sq4YE]C`t5_=@n.%,bd'$g)Zngg,5q1!33;M%k[f#XWAURO\-Yrc@*WAUmGL'3mS%>ik`&t'?ccK6DmSc:.=qpio94Fq'D/7oDhX@p&Vb&Y%!^iBn=@_/!kI";,)nmaZDS%HbEL*B"$ZkCN:[l^WITYPH2V2C4"fY>#(XK@3!#\5:?"LX!/%-GU]"u@])!Ya@"]XpWPM)s9ces\_]7V(21h%7t,h4Tl`GE_E@fm2;L(BT\F^/0kB1#J@M9Soai'K7>UUu;dOP0)rW]rA`r;cXa'.]mqUdomG4SX7bAimRtNPX[+s=SjJgmEq`gQT4ZIL$jRB=*=nq0!2Om3ctoXu%s"_HI@*NNAP5!oHs^E9oR<#FHF_(^Nof4P`9R=17uP-F96ic["cRb>Tm4_#q&k2W;8'*tnIV%Hdq'8VbmJ_]!S^T0UB11C$,cg1IVZBK%(lC^8$9unjGJV[/S[n\!!@d"RKe:qUVolb1;p!ug5T_3R*(d8nY>Z"611-+J1OK51T.h1UuS%-q)s!%j'CBVK$/+.elY%,r1[7\..K0o(M"Eae9cJJo"PKA"f`t(77])0*)'rIe4I>Xp6H3urOegfRZ\BtYt#+.=lhh?<)endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000803 00000 n 0000004479 00000 n 0000004822 00000 n 0000004957 00000 n 0000005226 00000 n 0000005332 00000 n 0000006367 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 6419 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-010-linkURL.pdf0000664000175000017500000000522312063667552026451 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class PDFDictionary 4 0 obj << /A << /S /URI /Type /Action /URI (mailto:robin@reportlab.com) >> /Border [ 0 0 0 ] /Rect [ 0 0 595.2756 841.8898 ] /Subtype /Link /Type /Annot >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Annots [ 4 0 R ] /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 427 >> stream GauI1_+oVJ&;KX!]Yb_)'=Z2km"-Tpd[D"_@bmOD5[.u-=\r;pp"e:&/r0/Y_6AJ!o?I45$m7t36?ccTJ/\r])$4j*CI#]=k^/]^0W76V3[-j:"NX7kR6jif;]'n8!OdC^8mH+F>U"3Fju!Q`C[BSfIreSHS.[3?OkpfL!qr,[ZWt.!I=usm#4''VAVl7\LDq+*eQd6'jIh0V^C;e-Wg\3A*3Gn>PX5mM6:4`VsT]ETtY84iOUJplfM%+$b!.]q>Ch(]B!674Bpmc1+S6+SX]F,L#;j+c0qfP<72:W3RCDe_tT9`HH_4@p&fUY)mpOtGVi0\IF)!bs0?lS."oDI-TA[9~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000579 00000 n 0000000795 00000 n 0000001092 00000 n 0000001227 00000 n 0000001496 00000 n 0000001601 00000 n 0000002171 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2223 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-008-tables.pdf0000664000175000017500000004756612063667552026432 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 6 0 R /F4 8 0 R /F5 9 0 R /F6 12 0 R /F7 14 0 R /F8 15 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class PDFDictionary 4 0 obj << /A << /S /URI /Type /Action /URI (mailto:robin@reportlab.com) >> /Border [ 0 0 0 ] /Rect [ 0 0 595.2756 841.8898 ] /Subtype /Link /Type /Annot >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Annots [ 4 0 R ] /Contents 23 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F3': class PDFType1Font 6 0 obj % Font Times-Bold << /BaseFont /Times-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page2': class PDFPage 7 0 obj % Page dictionary << /Contents 24 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F4': class PDFType1Font 8 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 9 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page3': class PDFPage 10 0 obj % Page dictionary << /Contents 25 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 11 0 obj % Page dictionary << /Contents 26 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F6': class PDFType1Font 12 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F6 /Subtype /Type1 /Type /Font >> endobj % 'Page5': class PDFPage 13 0 obj % Page dictionary << /Contents 27 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F7': class PDFType1Font 14 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F7 /Subtype /Type1 /Type /Font >> endobj % 'F8': class PDFType1Font 15 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F8 /Subtype /Type1 /Type /Font >> endobj % 'Page6': class PDFPage 16 0 obj % Page dictionary << /Contents 28 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page7': class PDFPage 17 0 obj % Page dictionary << /Contents 29 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page8': class PDFPage 18 0 obj % Page dictionary << /Contents 30 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page9': class PDFPage 19 0 obj % Page dictionary << /Contents 31 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 22 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R20': class PDFCatalog 20 0 obj % Document Root << /Outlines 32 0 R /PageMode /UseNone /Pages 22 0 R /Type /Catalog >> endobj % 'R21': class PDFInfo 21 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R22': class PDFPages 22 0 obj % page tree << /Count 9 /Kids [ 5 0 R 7 0 R 10 0 R 11 0 R 13 0 R 16 0 R 17 0 R 18 0 R 19 0 R ] /Type /Pages >> endobj % 'R23': class PDFStream 23 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2141 >> stream GauHLD/\/e&H3^ns5=N^86WC#pnG7bbM'A[3Xc2G)T[teIpHCYH[.nl4VG]#'WhuoYa$?g?=':>U9.9/(.i)[;EtMg3*P-mb?0:JPSqD:H4.murXI$aXE"o=;7]3W5!EeX'TQ&$_iGGuX'--GkADPu?,'Y9D5P:Z3_[:^AqJMPJ69m$JDo&`H]gI$^G?50rpH0-a?0eLhZ-.uB%^[4#u!\;MoOZC9l1r9r030@4mh"PT(Pa0>^'o>'HK'a-)6T`LLPJSTVHb"7J8f*1FqMn@buB11j'o0b2RFlMfi);0H;L)Sa0IWptCK#;-IDr+n.]6ijO#kom2;:\!>b=%D!?!rZoWC4TrZ+:\G.$dm@5M`DaOk!'8mC9al-+K8^^WHNagZa;?cCmCieJ$+?Pr&:#,20E24euO:WueS5_S:3q]/n8Ulur6\j;?,DR+I:>efi;SkpbBk0+tkDN7tT]8f*nL_%75TZe,CdH$(9J(LUQ*PspVJlQX0E68pghINuj(F0+E68ZU64#[?1A!p/ne@f2]/8e<=-"au456VAqEdJ$DkYrYnNG3TO`:6XG9MlVu,,+&YhJBm`JRp`J4SSpLB,qP8ENlQ(0lBWlV+UA)+Ek>@/$"$<`+'QJJuuLpW!!@6#$Z;02pU.Hhb&;_3fs&7(pX0tI;cB9)LIa+Rq\&YN*@p(;o=6u;V`P=E\i)q`P_h9ptQ<$YUu=JbYuLQ@dI!egnGKsM1L+9Ju5u;bf8fmqU[GYU>1:q-Ml8[Ep^A0jKa<[F50#V3c:T<*B2?oN[+.-lGf7R\:L5ngd"XrDP3mJGNO2;b]D=&kG'ikgfI;m6$%432cVigj*bF9eZ*1s0h(lKOu6S46Aj:/qOqkA$74/cF+M^0egrF6<958e:bHMQ[]+B1U"(R_^CEe$X'YR^k6DN1:<-c`QjR18rk+CDtmrQrDKR@"J(FUmT,%qBIDcI,A!a2R:&>\LV&(h?dF=;LE@,[qSDE>:!(%rCHs$p7l@c^09T?Npds8Kl0:baS3jY+$stU_M`\FBgt9)T-g2WbU6oZ+l'?$De$PTe3a/U+$po`D[pVprW?l0%b;2>"G8UIkTkRmPubPGRQ_@F+ajdg5[Xi:f"gaNNs*R:hurh6SOXd8l0=b])XH,+]=I_cTOj&.@>QR%P[Skl98&)+__t'(o".13QD=97q0+l*Ak;:($E-ZhWM-c:I5;JC%K!cki.Lp"hnb%0TU\RmA8iVHCg\^OU`E.`@,=9FnJ*tWs0`H/%n^FS^@1e7n:EZrg.'LU3B,>qKT@h_.`]85TZ;:!E@$M:cni0\R7!tn`sq[:is'hXEdmOf~>endstream endobj % 'R24': class PDFStream 24 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1261 >> stream GasaogQ(#X%"1(mIphkG-h&Us?dK1BUihc.PO*1GoV(NeX@-9VN+Q>>BH@,$3?q]#/lpfF(K_jl%u39C*.Uhg^jVOY_!Qk[lYhhVVHSMTTiV3"m-6Wca4&,i1NZfu00?p1Zpb\WA1S4h<*:&h)el4R!g%@^:RO:TE)2Kg\q(na[*:[U4Jo=TWh5fAK@U4$a\lO1SX,+c/:)\%Jro+D%O-^edGq0R2^g=\d4c43LffD)!(?%fGBr#A6*!+&$9E,gPW]NB+cnVX(4c[!)VA_Z5M1acKZ/K6O\-Ktu,Y<6)%?mBAI'WT[4A75k!m^$\_O%:H[7,YuiIo/2`hi$0h(Wb%ZH\dQgFJ'r,r71iB+n1T\B>5I3B+NAFCh4L<$qN!A,&GJM9X&QLi69Lg&4aoXA"7XJXMo-iTMY]Hc\hUGjj!Esiat;s[YnFFN5*[_JC0Z7;3l>J)#C-%)X::3^lmQZ!PDMH-Q)MkYbQftDV)5ZUQs<%nQb16u`,CO)nWPb%=[r5NlbSR-UAf-"mWRn$MtX[g!]A]N@n#8r'%3kKU,KHXO!t8aStu8o@^m>+(e+~>endstream endobj % 'R25': class PDFStream 25 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1332 >> stream Gau0CgMYb8&:G@fJ(R7M:h\-p04[oo8;atp(e#,(/a*9_;DMa><%5rjo(CfXpEH$"oMAYoG]m]ES/on290fcW"8./W6g3PCh*1l@N0YCc,U-ptLjiXTB+]%T%Mo_Lk'f2Yau/;<$DF1$I2b/;&")cTq0miACjF_lBMlY2up98u0;6toD`eXFO[nL:g7ZHNZ&b`AJ@-cC&Ij&PT5!&^uE!VhXsQ?3E"b/+[Hh[1!Q3#tejSOO9\crGKFYK;H?:!I`e]HZ]?8I=Jp=O,`Z:0JYb4gEiQYZpQr_R#^W`Q9_"8TsJ2"s&4a4G?`mg]REZ*b2&/#Aj`tGat$E=0iB?9upJF4]ZVkr"Hr'1M/U=#]VSc`1!+,L6eWif#6Lq3Hhbh`QH/j@&@hn&90ud2H@>>e3mP>.\9IOD#NtU,k#h`_6i*:]Q$'1(JFqBKARC-&@&F-QZ62-W>fN+2OBtUqP+jIRqeqokp3BNQI@Y8BKGW,A!TSH:5F%!QVDsQ"E9lF2G&a>)T=tCY8Wj,6E\N2Iaip`(4BL2oeL080cF7UP>2P,Gct`nML]'/LgDIMOR9'BW.X5/kMAGdZS*N`*t_FBr,m6^If<'YDse1KF2qAhC\`;/.+b$[0MBtK^)5n@flbHS)!9QY%Vu2-)^^,15\H!X?k^o@8/ghf6>,>0(($N@!_s'(/`D6r$([%[E=t<:&nmESfl3TQ6>)4/\k$LO=M2e$2@5p+b_Q.E(m;Z]TX@(q5OeCPiVpXM+,'I*cNiG.^u$5eqZD=tBcn_pP_@<@HH!T2ab1G^k/@9ia6Qf'1nX^O[:'\O~>endstream endobj % 'R26': class PDFStream 26 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 332 >> stream Gatm48P?uU(qg1F+5TiuA%sipg7na"L_hqX@4mSJG3FOS3.Kg2?(;e3?6fok]HtZE6uGiR[l(Cq\@NuJKREqOTjSs]@l\=4Un9+[TbMT\KMKqVGin@F1E(<_8OSj_!u#6PYcTpD!nS0WKldWY6Fr\mh=9RX:^4AJg#Y6\%een[+AROHo=?E0Al0l7?XlVE@:CT&FY@Uh\+O4aE+N$-q'rT%rEl7N]ISp7r_OMZ]'!ns$leASolrD1oQ99ThH0)Qm?Wc/q19R,1_r\6*JbS\o?f:4E39utPTDRiN=76S^>YV=R%3_sT=CJN39fAb'rS4T0YuEY]pt+N~>endstream endobj % 'R27': class PDFStream 27 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1219 >> stream Gaua??Z4XP&A[1cp^Va`Q'V7dgI\2TdT3K>VJ=gchPr^A#`pqi*JA=aVkLe!$:6aTS7mf;kA^/56r&D@u'h]ike()#tlWC+K7CM+7T(4SK:l0X"mt6jP^IcPs!FoFM#(]=&2(JZP!@&2As!*O+;5KPZ+%@6*LkNK43T]H^W:DMnU]m\(fN.\B"U\So'-@hESY-jH4:%o>bX*4U(*P?J&90ZdLFDLHs'Kc8^/-t7GtmSkXkH;5Ph'"XZ&$NaROlEiIu-+@^88uD*SKcU8:rBUMu9GnNVE`AgiZi_DK8bD[qW-2DPTSbU4JnILLKNMF(506A5>dbc=9@jZ*b&>D>NF_StL$&4:@\;6Uth;c5()d"/u1>M&N<;[YWUE?PQ^P1`Wk*]r2((:q+R+R'kOu^r,Lq?FAuB*d50bB%]?cbXZqY^+>*Wio\[ul'62dgnn"fXX*@H4U=,@GO7oYD@Jle0M>\-5BQ58'3hKAn7qKeb1$ZIfS^H)ZNAp#J,oL>j#L9g)uunbcglNrE&n`t@p1jpr4EW-`,9$omrS-El#">G+PeO.'/fjAm,#G[BP"GUF_3,'5L*bjSMd_f%(7FQA+[*e$2^K<($6,:fj3^q&h@n3f5*&3X_XrVf?:an+EW5p3'Rt8O)E-F#"t=0TM,(4>C)Uo;O7f@'U/Sd.AE]iAklP>XK\5N+20;1OF?VX*6L8f%j<_c?LJ8PcYu#&b8[6`q&Pn:dcArAq.<`;LLaU/:a,SlNf]f>s]+d>t361>G+gsF@`Zodl_O.#1@])$R,C4fHjp-3]@)`:3*glbSSfa?qJY!qpK11["/i:d=c&*FUBH+"#\g0RGTl!Ws0<^,BqMM@,endstream endobj % 'R28': class PDFStream 28 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2466 >> stream GatU4>ArQ1&q1@Qs"MM]lR``LP&4KD/jT0ZG)P`JD)XEj2!9FU-sM[!BdkNls*\NN9"&6QMN>$Yg(HWqHun8jclT^lcdVnA-,A8^q"B%F4[e8uaghrs.>/UDa!0s7UR=iH.TASqb$.'kGB5A!0KB3]\tj(RH)>1;sDrK#=#`eUXZ-aVB2;F2`\r;(70Kim7BK6*qr)GlfELbQWS9.(1N`gd-\\r0`g-5%V#LJT]`q"CJBfUKFWs6=,gp4>i;-]\j:tg/][>9412^Fft9>P"J?$XMu;/g>n5'c^_;dX!N?c'(7W2aPTE]Ys#**K_o97G>Pp,ionZ$O,7`A]Z"MBQAbl%p/ffT"sC"H4>;MMKT.SjKlT#f1O9T__UQ8P!MATfi+:R,?s6fkJi(_('N$cS%'F>j/4:T=;HaBK+s-]RM>DY)[GISm64.QlFp6$kq-5Z_>Tl)UVj<@Zg@A7@&[AIGFl-gE34D!7qSN1H(Tu-j'PCD:4Y:g^hC]8/8pccpXH+1M#n$h1MpZs.#4)XO3-]I1!ccHue?Y#G1a^45c_1n*4H99J)Iu/R;bSL<^#Xc<$F"OHR&Pp8oVV#saVuuq5!%NMEX:bKXe)crN$_>QIL!;`>^f)_KD-?"K873,k;nmt^?8s@\T5)I%*0:#!n?uMjVJ+rfoY@LT6\oV6`%/fa+j,oNq;EB#SOYnM?i?##ruj.oke=FmRhkpn`K)oh^S=8V,7,b^p!?bPGB&*RB%:S&XD`!tAn@)sDcg2;ctkCi`]%e`rg'lSAC0.eDP8*ZihUbK>8A$S29nNm1XEM(K"0V,'+ZLaAf[K88=UWXZ%2=P]I8-+lJ>abiZU:sI$=\_@1%n\J*pbpHRn3S$@WLpNhTHM/4Wqn&[mD:k.m)C9I\A8eD^.TmL9Tpi<)l*aMA30dpRFLpA(1toE+&Y!:-Mj:;Wh+/P!J,3EB0Pn]*3@W[HVkthaU,eNeh1Sq:dTmY8csBm@$Q9K"7EU>$c:B+aBWI+b"CM5s$Yl3q/SqlVE#O.FdAu$1!tuZ[<8mMLA7c;Kc>o%FsV%VPYIlH^+pch\+]X$p3Gt/ghk[BhI3,(WlB?YE296"Kb]tR+t\W@=O3B>Y@s]Oa5IQTk[6As.%X0=ca5WOVK'gA34tb`$k6a3pJ3Wr2L+9iVOKSW"q>Q1(5B1f1n9pe=n_r/=r(MIV.'/OLoF8-a\MM"hD0.moQ5CE>;EJE#F$sfA<'>C&[,q1&$-V/iR$A1COWYVD=?Oj(\SXq*T,1&hJ_=>+(Q:BdQrSVc=IT0Z5G`#-hG8TrVenmSG(3gf&_rrD8>Xo07GOAl/@!IkabbCma';cK(Y`G9YPdJ$0R(9o4GHPUJ7AD]aS0jXB[6Zh/25>(&06>A6jrhdMhU.^KT@C<,Sur/[@Q^X;l'A.68smiHkhGee\tRJFDj=6A2G2I+X5%`,/6kf-``\8[[oi,AZ(2S2T+kVgF?dj6aQQ?X[8K'2kp6#ZfU9`8]Y&G3F!>ND6ijsuV!QJR#o`,`JJ67U\FViZ.3SM"]?NFi&BA"&4:[FbZf&[l/GO%1(>KGHJfh>ki'J#PY(T;X;9q+@0ihRD0T=<>:)n27*u-F6O<0^<3;0gJq;U>Xd:;?[N=SR[7RYrN56W(2lP?s<48Wi&[1,SHDG$,-Cl^g#WipI"h)U\1.jq`CHF":[`\]#"62l$5MR9TFibcQOqjq]o"4IDb[gqk^PDC(5s\%#l/oAD1^(4H:*.q+[Q`=4VqKkE-Ln-bUf$)>]rDOC5V3fCP&?bkGh(hIT)_p&)S/ER^s!HTc"Pe"c(@.'W,gqB)cqb$#=#]n/k*Ic(Ukbg'im*O'acFj1jbL=4+ftiK9qOb61_;0OiToSR9h.j5_jVECX4$S>5p!o\"%a]k~>endstream endobj % 'R29': class PDFStream 29 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 537 >> stream GatUr>>Kl*(l%KNp^c8Y/fD*o/bF5.1bmjcg_k$@lkBrPR.KLqZB#k6X>UN@PkO(taa;K7+Sqi21Tpdj)-gHGTFA+P:`aVtmU2W?5n+,V2]"=1*2H1NR6k,n@i2k4!Q?$J<"pjrSg^q:=()Z:<6/&(`F79!9HF52^IVl\"bWd0=j+oI>lWU`(Yf=XV%ZVQ5B,&[@$&+C'Vq]_)*6926Ve?C(pXK$=?7aCap?smODQ/1r$8h/PWIdpO4U,_D;GXKpN=3)_kpX*?>bY3gPl>4QKSH0,Z$hI5S7dNi2.``KS2FT,OT!#$!)-.`m(?!1.U-;*##F9aGlYsl"#gaLH-\`c&ir(kD>B_iZ@6L?o:GlgcS?&bRsS'`rrG'EoZ:U3LM,[@?(XpF6(W6'/t!lD,1(E:+YOl3gh5\@?(XpF6(VgmT+U/c^M"P.VP:Rm+0Fq>eiu5X0sE+>MhqbC9.6@F+;?B%>-$f5&5=MhRCD"qf&endstream endobj % 'R30': class PDFStream 30 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 3192 >> stream Gb!$K;01L%&]`clj6qL^27Y^t!(__&A(nP:/otm-NSc@:TOh[RI,qFX%<*>Bl,drO2%aM))t]"YIUX5Rg9G._saP5V5!GG05iqe&d-MQ.G9cXPRDNnaDWnPlo3dB<4Tfc=i$#J3pfJ#[@r&0Eid7[3T)BVc];D(52'P?=1%C>BrL@q#7M)mNY7bMV07gL%qeGN)o5>TWXYnl[d[idP5s^LJH,EAcFUQ4/B-aR0A"MIb=u!fm=?)ioUr!*"pNr0"D55`0h4:_!RdYH=uq2_dOiA!DPFU4LCW6g]?Tjg[`,71DS'Uo\LtXSp]Dq[CqfIpUVr;?&4+qmkZg"%glQ///Qfj.c#Ws96]3-CWji0Jf]_K6CT`6YXhuW5p@!@?[FF<%hF@J=Z.NMgK5*MNUm*=83G%YKEbc&AG$k;nbm*oEeL'BN$X%%-UDA+(Oo%n8T@+ZIT(p/*7oqR**;/;]q#3oE$)d=sUjl1-)otYF>]SU*D'qm95,!OTPU:.+Q@0n*k^+2,/\iHqEDX"AWT#FtaNed13Cs'Y(YulC%5J%%p8hZo$&P8Ge/ciQYOiiALr)NgkoBq?L[(*B1"J0c7p)^K287Wb"EK8J0mCke4>!tFC3lg:sKl`30IEp5`fk;"B+m!i5P1bc3][9,F>,1fSfMPNtT6r2+_E8-gAFm76NM,bLDP27ds?%2`^QorQ"97^D?^gWF+DL0jOP7DA'>6ejuDoI%K?gb]Yror-Y"QMUp2n"Mr=s(ooCdn[P"h:$`k\^b=ee$I"[\c2%6WCAAZ;e%Z4+uq.gp]^PDsamJ]E.80@PAo63Wj[jA30nATJI_8JH8=R%7l+Z5T0b-d\&B=aajJ,%Lbm\?pFkf,l(o;6X[_IZ^hP^iXQGXeE)r`"B/Q+[X-"N.N<[461^I-W6"`'<"09fh=H*O$C'`,1C7IkT4fA*NBq@,LmtBg`TD;5p^9a6rAEGt?GtqqB1R[]"ju\W0oG/ehQZT2Na?([04PpaP,eNpp3ACF*jrRYN(^/CS"mFEo\VTo;01KeY6OoECM;kTfU$^FUAYM9=i($QeeNRgT"S:k-<^"?*Pjii^U<":)*B7\80g,fldN)B2edu&^ko72pK>6k*K[aG-qhc;2DZjgQ^^EkrLe$75(^no@t>)I8g0N($jl,*YPN%FoT-71nn9BW-28/gFb^*q/.1s6e@.bhppgehr!&[Y)g.+S#YmOrk5oQ(>XkJ?AR>nW-G97LUOsD\%=*UcF-hT9of_f.clXk-+rcJLc8Y:GiR%o_p*G$29[`BJ"_m;AuL:"<3`hPoofb3&-:4SS8.9;URhhG[hMf\MHAPbr*+W!*bcu<\sQXHQupa;obCW&,FK9-o'I_aW*YWE3hTfB2**b(81/n6Pn'b5/kGX@c;b_Ol?&*u;4it2A5JmqPr_d^/(HpL83NB,7.jNa:6b=LFc[,2T9>Tp:nLYY3g&B$ll[CEhN0`3:iE:Aa=)milB=/n6OrCT$X,]D1[="fV]PUEp!"QJ[_L2S64P!-^==_L[:ib]&.!]d5`@a^S#gTBpGd/%[&G;H(X@7(tIEIJUaG6]i4_$'q1[5E&efl31hK[%D"D?43]NC)>M#,%Gefm)K53Bgfj?qG;T!9'I)>+Rpefl3154XZ?#gTC#]NC)>LjJG+CD!(`l&Z]sOUk0.1CLqalQ+jM(;R&.CL"\XKdcR-P2Q,PN`XB+UE0SU0K5=#rfT[1]e)1M$H3W#dMQ_aN?;5B\24hY7:pH;]Wu$rWaI7>Xeo0c=-f@d4I=EsJmJQC*i?s8LM;iI:=!nE%JjOE^5H%_.=h4*&H3*rqZoICF5AJZ^>keDr3^97X`dc;3-sOJMI0CRNt,Ilr<,LZ05r5=2B3l`n#UtBSlKYu.-8endstream endobj % 'R31': class PDFStream 31 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 566 >> stream GatUr9i$C,&;KX!r.d:IPLA8u5HfN*j$i'A4D70c.7@CIrd8AC!6,A%UnmDG4T"\'LJBi`I.?cUScKfV0K\7/"XK/EAL&G0JE%m`E\P@;;Xm:Md*>&5_CC9*0R*s-:-!p:aE!;`jm2Lh$ui>UeaW0Op#K$h(^\tGgpJiTP8O*TBhn1=?H3NDqJiJ=iPH#?h(LT8Hf9geRk\U69N-'H2lgh1cjGpEp5\QuFo0e(6An;EFnIWoR9ZETdiO=%R"'n%m0.E`-.!tBn'+7.CBLu$XJiXC$`-.X60*eH9SFls7R4Gg[RlTTVpn`hWj>b0m@:p?o(>um!o>V,j?bY'YEQ>*7+=9m_;jn9/>S-EM&a2Jg-"=(mqe,J%#Dr*:Q1k.Z;=^Kti4oQ2k2WM%H@IOG\>K`?~>endstream endobj % 'R32': class PDFOutlines 32 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 33 0000000000 65535 f 0000000113 00000 n 0000000296 00000 n 0000000461 00000 n 0000000654 00000 n 0000000870 00000 n 0000001171 00000 n 0000001336 00000 n 0000001617 00000 n 0000001788 00000 n 0000001947 00000 n 0000002227 00000 n 0000002509 00000 n 0000002683 00000 n 0000002965 00000 n 0000003155 00000 n 0000003323 00000 n 0000003603 00000 n 0000003883 00000 n 0000004163 00000 n 0000004444 00000 n 0000004582 00000 n 0000004853 00000 n 0000005031 00000 n 0000007315 00000 n 0000008719 00000 n 0000010194 00000 n 0000010668 00000 n 0000012030 00000 n 0000014639 00000 n 0000015318 00000 n 0000018653 00000 n 0000019363 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 21 0 R /Root 20 0 R /Size 33 >> startxref 19415 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-addMapping.pdf0000664000175000017500000000445712063667552025054 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 350 >> stream GatUl_+oY;'LhaAr57>FRL.EZ0ZN3"]$c;;d<1-Je,Voc63#fMc57qS@M7.eMt^ORmjUV5(\;:e!BYk53sN\J.^1JL+RX5"_VdQcfRB,na(^iP3OYHskpB'j9g=a7J[#[eMd\h\DBYRko#+rsGL4n.'.$Y!DTs(4V(UnjH@nYo/`qmt)FC9;,r2Kq.9^4q<7*s*Y&sd8#'#Kb+46@Ufu@P/e/&f@g+N5shkpVJ/cUUAM_Y_c=dBS=(fXj4=9tH;I.C@pQ8\`p\SQTp(k")"NZUF5.&.VTg*(2d*mrGl6*#=C3R]>0S7V:D_iJA^q`a`kVFJli]6,;X6M:*gnS\tl_&"miOcf~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001836 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1887 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-drawString.pdf0000664000175000017500000000362112063667552025124 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 114 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9g^f/$>2a]6^W8Bo8uendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001426 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1477 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-lineMode.pdf0000664000175000017500000000373112063667552024536 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 186 >> stream GaqK'0b2&S%,k)=K([0=_J"aVMU:l[21^B8nT:6cPsN$g/)p^E\MBEhendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001498 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1549 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-drawAlignedString.pdf0000664000175000017500000000430512063667552026410 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 422 >> stream GasbW4\l/7%#4LKr=9qd>%l_O+&4S56%Xs```pRl"A!+_s%E,jpT=diTTeeu4SRKWP7T^!kk#pV!;@N#*XTnTpBhTh6MCTnh/XYHUo_lPWBbV5)7h&oDLfSB\e""BJ$Ck=$N:B%2H^gH(#V^J04I]do1Yo8g!!Q]YiAg0\`KAa[&7E",U+r>0r^@\>FXc3`gA;88bKl\Qo$bmRpb9VSoJ;IN@ZW;3bAi(Q<)0bMe)NX`a_k2GRZ9OF1NhQLmEoFZ)*EjZ.6gH@q'LP6nP?!KDd:RkXDO'k0gI5f#CTFhuAM9B[a#U`LJbmhqEu+L%ipPmH(CFAuGOR]VRDF*)3K(YgH'GB01WX't!NH\d/6DG@4dUL`qZ1"eG,_>6mt'KTCQiNdPl&;KTkVD"#t;hl8C1["f_,@(H%::>H>%~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001734 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1785 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-condPageBreak.pdf0000664000175000017500000000541112063667552025464 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 2 /Kids [ 4 0 R 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 171 >> stream GarW1]aDVQ%#+E`pDqPXK%K/*[^2Wj+@9C"U_\V!'aGi<1l*cIOQClc%\`He\Eqp_A6!mN;Zs1c*,V7jR`X-%4;G~>endstream endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 182 >> stream GatUj]*\U*$q:&Eq1i1Si4+(!UDC3L7*#mpX:)lt.MdKIfg2uB)bESCEpb4f5*YN0#F:+`RQq9CJi"omK9aDpM1M6L2bCC)$FNKh;T1jV:h8M<`S_Y\RGH9&PsNZ.AKIBUC[X29k1C/'n%0>tKq2VX*4O,g0i[F^kVn7=5E!YP@YitDMMOJD~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000001114 00000 n 0000001249 00000 n 0000001518 00000 n 0000001631 00000 n 0000001943 00000 n 0000002269 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 12 >> startxref 2321 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-fill.pdf0000664000175000017500000000372312063667552023731 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 180 >> stream GaqKg]ahn5%#"@GH&%k,%$'_P=Y%>,QoCrH;]0i[Jc$XkZ=Me1h`5<(>4LhR!GiM&#D3]T$`p/&:Y]^o'D]@Ppr":JV?H!S$P'Y38JX1>.$ZE,/Ib7iqK1paL1Eb'k0kU=m,*iJ*?J7%VR8oV.r)eDl3@.#o4;7ig%3GthC^N*L*)Nm0C8~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001492 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1543 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pieChart.pdf0000664000175000017500000000724012063667552024540 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1507 >> stream Gb!;cac7T7&A;<=5NEDGEfdQe&kE?-EsA9NQ3DBboU1J>u4p,RQlr?%*bbK&e\5#(>RC&MWps*Mr6o!/ap$(fOJS;5I0QVcc0JEci2Sh+q(i3=!WX.[[o-7DcHm/8us]@Vsph,n\,4[@AcVc^^i-'kL&-5d6n?Z*:&5d[(;aXh>k,jL/]/Z9j!S]XcfBu5Z+\joN&@CYr4%`:_j$f[boib^buJ6I0Js+ci53t2Q1='F_80fp(>ZN1igZj)e'a@5Q#`[YDPR2C=b`iO/Jk6A+8J!i&3DNC/Mk.(;kd-]qB_gbK0S'5:OGs/H3af$o/LQlRU9J@^#^i#94=DWbdJcr6l``7tpR`,J,D%26R-qj:bQ3FouFMsU?k*ErRZGW_;63V#tm4k.L:gsjkdUO[[$j8H3.#\Ls)g8Ig^D^K)CUNIC\**_$n$^HZlL/Qi(qhff[+Et@i>/SVFF/*O>hpnk[G/@^i7Lj>hK;?-O:PQ5]+-mI_j*-oYj]&h_468u;oT5L0r%DU00J#/fI13=U;.V2SsG;,%V8OL3\=PJH3NQYkeSFoT>,kL]]+=?g8DKQd1;'O3V!I$kZ!IX2l<dgkiB,8j@q"ao:(1')"W8BQ`N<`Rc+ELF#nuC*/d#&5L$O;6Xj`k+KPE^-kZQ@/[TTG3B);$LN;Z_nZjlQ]9&P[*)<^@*h&jp-4X^QZ!AeA_ocU:P`jdU09qbr1B=1fU3PtBbU7_8)hhHokJP'j(*ccL$uN#k:endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000003190 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3242 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-image-1.pdf0000664000175000017500000001106412063667552024220 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.5b6bc7d162ec057a9a7579a9e03fadfe': class PDFImageXObject 3 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 42 /Length 2262 /Subtype /Image /Type /XObject /Width 145 >> stream Gb"/iqed-;*63>W5!g?bO5M8T&c)c]KYDu6-H:_;Z"da\"Obd-(^_=WXT^/\gpCd/as@U``"FdQo#L9aIc[&=B6SNBpU%n]^R:U^bKT>>mlTFaA^1d@4aQbadA+`Z`7$rBDeqWtIHB$-B.k;*k+^V.k:SEh?N5$:mZXQp%XX0url+9:O$4LfH2"B2iooFAeSd+uUd6*+?X-_1i:QU;Vj@,b2PKf_bEn!tjJ.Y1^]&tDhH:]2(K/u"s7k:=^Z'-M[.WpT`G7]-\Eud^%XtfK`8\*fnK=G((/rqYRB_nLu&!_a%bnFcMQ3VgQ'^K\MrMQAHa?9Pj3%ZbLTj@b<(_ae?g0Pc&0YVnX-rC1iJTGd`)J;#pX/A`29;t,B)Je[X5*.o"r/(,&Y8][Zr=bAJa-Wn:c`u8E%C?g=CY]&1Ifbk2&]=Y["S.i6H(D9)<34dJg=M[/&D)_^()di1Zpo*TR,&D8*_ZB<8\Cm6Fi`$,QD"k1l.CXoAh'r)DN\rn0bQcQbDWhL9PH%ND/'pj/R[=,7?Hm]8HR]$eiec')G-]W7N-!`pitc;(=U-1UW*"g!"Pg3cg:"7JsVQn9H&ggq`M5D6^YpB%UH=g@nu_.h(33QWEN`p<=HE1:pm:NOMkh?R5pk#HB#9RIn52L$]R+ob4(D'VjiF&^q^kF9)a-a4&mHJFJNsjXh?HE!,O>'%Q-UH&K+^oEbbh$p\8/".pI9n>(,B!N=LDKnfq^SR%r];Yn@Xdop-QZc,#(=/&IoM(U/:1([kAp'nCM1&P5j;],dM_$RRU`)b4W+Jb.K7kZ:7J).b;n(,A\\\GZCo&OX[S,-V,^`$>I.T6WRs#/E\Q=E='Np8R&'k]a/[&/nDBp1tgP$ILCQr#N)BKON&6bj)]p:E$m1>W@HgN5f4128U%C$s=WOsuhXJ+Qp9c8B=e'WR-WV#f,10Zj"@[/Aof?(7"o3jhKDu)\1RPLcGa"l)@N[gg@$GQnn9Z16$!_/c1F?HlZfMd1^E7j@L@Z@leHJ`1c$-LVZ_c'@ON`,PU4UUs,n`Zn;mM<7PR:C&,sGOE?d$_F7;2.h8,U@8MWcQrYQaCYZuo)C6=+YS3BL0%IjlNr26`+&*lJbTRJj%V3IYP[unPf8qc.YIK^5FF8t@lAW"Am'dI.ofUOJ+L5p8`k8UHMUD86s>H1]r=/0p`MTONeFR"L=Fpfq)Sml(Coo'Qj7[3^2,bHhESM$5?U`Y1DKRIThe$(O,a)lq>HHa/IrDjOP)T4P;Z4)pB&ntG83QA>,6d#%>\5jOZ;'oOj,fP)"&[bYW+nsoCW0_VT5@RV%Kn^3JZhd.I;[#(Z+/Me6,p6VP66Id9R]"Cb:AS>^W_'QR=UCUE%8rfMOS0To=7lg7OTO%j&Bo([UI7hMkMgH>/Y93ZbZB#RHXoIEiRS?"/I-N%q8;XN6'"L.R'Pghs1oE57VAP;q+l>/(a2F:9EBST(.u-TIj.?0NP*B/\Apc6qo_ci8\9$?_LWuiZp$G:0ldhjTECmAendstream endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.5b6bc7d162ec057a9a7579a9e03fadfe 3 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 210 >> stream Gat=b0b2)D$q5@cmbe`i$jMKpC,:"3b0ZD!A4r][r^.!oEWBY'MuS;,,Npmbn$E.$,'3ng)MebD.=uf">En+l"d5oI1?Cm=k-.D(%GSV2[SaT_Nt]k'9qJ`P'G>A==VImg^HS*N@2GrjZ#@f75UNBGa]>E-?\,*CRt9/j$S"1F*o"U8.DB,g>*/~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000415 00000 n 0000002912 00000 n 0000003254 00000 n 0000003388 00000 n 0000003670 00000 n 0000003775 00000 n 0000004127 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 4178 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-11.pdf0000664000175000017500000000701012063667552025760 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 944 >> stream Gat=*a_oie&A9%P57DRQ$A[b_k95VfZ-sI@g8%%fFUq7,"A*1&=h9!0.8$<_ag0jAJ1M/e,N%N>K0\6'rUY=En2>j>$iq4k[t'&98EMU#L4cD_i7pQ%?t]aJ(e=-olD)[L_h%+S6`5sYFr`>'PBFrKet!AjEpd+p)]2:'d1@*V"^A/$S44qYY=NS2XAoU(%+$M]"CX:08GWO5k5,>@X]ZkI%)tR6qK#E^3ZifKP&@e.Ujer&#nfcbW$a<1VcW_OY&tqN4'#IE+1*c-:a!Anp!?h-&][[kjmdoq>=fD=A!IS^_m`Sb%:lA1kps&B'gAfJ`@bm'F-W52Be.t^n=1AV6u1sa(ZltU7"a$1Ien#03hLSU>WHU-hVrM?a]*do\mo.Aoie-LR.'@K0l4VVC_=A4/^2[h[WV=bNJ;Bsc+^>j)NI7QKq5E7T-U.<=am/I@pG=!#jf2+e/0oE?K4MMcX3V\+LP'N*p>,7VZLa?c3.=;!gmLYWr-P)K'*OW53aQ*a@oNHZ2q:CQ=62.Vn0GSBtQeo[+2,08fLO1W`rZ/bh/rgWDS\\CpW;mgfJbbZ^4`>\23W$RJpC+mGg"t@ka=m!]7J\+0U0aPZ:k68@E5C>5u&=GI.%b\Fe<[Y6H:g)ELJiQC"PUam6H!aU6F2=*_FY+#@9!np:/U28F2#%jR`SM#~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000597 00000 n 0000000786 00000 n 0000000957 00000 n 0000001136 00000 n 0000001415 00000 n 0000001551 00000 n 0000001821 00000 n 0000001928 00000 n 0000003016 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 3068 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-barChart3d.pdf0000664000175000017500000001026512063667552024757 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2040 >> stream Gb!;e9<[,-']+m-s1q@,FH)@AkI)rb+Z>&-+VkfWd0,9Wp-VshaZVrJru^^6t/K;BRd!""=jENksHpNJZ^0;aNVjQ5,do'4-Ia3Wi>]CVpRalt$1]a0@B*Y6p8KHQEakj(Gd55#i^@t.TE')crHJV[HHB71s0:6g?TJBl6&c2>4"+/HQSE>TG&58q),m(%+UDT76qZaj(B]MCpgSr<[O2-/UA@m6]=`^Agc^+^I&,7s+VDDXCdZ.-,Yr10/OO+)V-;1CW'sCMJQ[_Qb_fO3_9eR=aO%br11HPTbUj^lYj4DN/>A&?2)^,r>D?0=.'#K\j"WX2-CXlcA"[M$AhX6tBi;h8A6;)or=JQqDu+#^nki;+KgbQR[Ub1=^*FS_U%O!ADLMOf?Wrre?SG'?6p?Y<;p$*i"i#m(4Us(ik1R`0;IUAdQ&;#"oF\7HLB7.LOY\Y,OM2_pUmi)i?#ioa1n-oGCt*P33G))m7DujbRsmApKTtP&Tb4u>9gR&Z59Um[j9.d&B$+sNnU)]?2@HgLq:f.(GVZYk2M/:CQP/oVj),2:7:)mdV@e60lg\E!h1F_3^J?ZMgOZDi,CguZ1<)bF5dUQ?HU/ED>XclLbFbMbCX=Z`4R%KJYo"H!/=CUQR:@b;qpW#S-.D#$jI#XI2Elh.8BIT9\>YCs09XOHtRuJ.Y`bP=S[Uear(6#jI$1q;6h=^M^,DJWPs''O^Gd*Y.C/G@W-hM2q7o+g3N.jFkt)=>6[lV$ct(:7fUT06XbKT).JRm'a_O)si=GL/+JI"(.s%/UB@%H%l7_s,2'iC&'uqkEjeC/mGe]pW2N;A^4!oh&G2?n8s\uL12A95f3$r6U5%B6S*T&#*HDj82_^G6)8Pe1^V8G$mF0Cc?S)@\=k5Nq:4I-'b@d+8PS4X0en9[";VNWK,I*H"9Y$iaN9=[gYi,XjU"_%atm?d*l&HB].e06s@AJeq?!MuQB;Y!:g_M0eUCqR*&4.IC+I`JHJ4D579KC_aWF2(LG:;(#Bs[(`0UNjcVWY8'',.u8?D^qUe&b_3gKgIF%i"pBZ8*`plT#Yo`K<=;?BR;a"Ll%@ZedtjZ*+K@,b8n1T#^.^d>gB0"sqn'jZ'fh1de&jR3]cdUdRPK)6dc.lZ*S=KtL&0(5p.@Z%Nc0p-cee7ao>!_LAaXf1gW*`JPq$!P/cOe3.KM?8)h/CS3Xe9GhqP3F!]1\O=S3-PM0]VsF,hf0,01AeU8uZ:[eF5hLIk0VfR#CQ1RU2"51pnK?%=>2]["Kc?hQGiCbDKFfcB]W(K4[7&UKT5(e'c2TF4Mj%?+B!ci&a+[QliB->/JB_Y2.i;@JHUOo]nenj6Br<$C^-cD6SC-B47R:)K&`O`4TN''toZoKHZJL+"lgU`JHogJB-b<&D\,m8^/2_m"@?SbWdIjeejZ4(+Kn)uTI(e_%OKTEgEG=(?rsol@.,_VIZPg0!P;N8GFs*^A5bBK1Jo5Lqc--?q.-SoL5HY*T"/40N@pbO8&leMVm-[4T.9]CtOG=O$EkOmA42p!kS-LDLFZ",KA&<=-$DaDSb8+?F[^Eg^f9%RAhrM7p0,PKS>,qSoC,DNfFp2g0%1Qedg3;.VM4CYpK3l.tR8pMJ"An.-3J=u6~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000003723 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3775 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-color.pdf0000664000175000017500000000372612064766253024123 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121220235908+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 202 >> stream Gat=a]aDV1'SZ9HhVkuD?u191lRM,Z,2crGeH`Ysb(Y(b/\Nm"-C=2KNpLllWH9GJ\:\0ajRePjM1Ci5&K&(K^sLSih$nn0%6'@7%B:#]I$0>1ZF%t4/4^223,M[s+HFt^W*p4K\!8Ph`X~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000001501 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(.q\250Z\230\301\305<~\027\177\015\311!\235\367) (.q\250Z\230\301\305<~\027\177\015\311!\235\367)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1552 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-textAnnotation.pdf0000664000175000017500000000422212063667552026015 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class TextAnnotation 3 0 obj << /Contents (\376\377\000X\000:\000:\000P\000D\000F\000 \000P\000X\000(\000S\000)\000 \000M\000T\000(\000P\000I\000N\000K\000)) /F 3 /Rect [ 0 , 0 , 1 , 1 ] /Subtype /Text /Type /Annot >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Annots [ 3 0 R ] /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 61 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TSdkb67m]#7+K~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000387 00000 n 0000000641 00000 n 0000000938 00000 n 0000001072 00000 n 0000001354 00000 n 0000001459 00000 n 0000001661 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1712 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-image.pdf0000664000175000017500000001102512063667552024057 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.5b6bc7d162ec057a9a7579a9e03fadfe': class PDFImageXObject 3 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 42 /Length 2262 /Subtype /Image /Type /XObject /Width 145 >> stream Gb"/iqed-;*63>W5!g?bO5M8T&c)c]KYDu6-H:_;Z"da\"Obd-(^_=WXT^/\gpCd/as@U``"FdQo#L9aIc[&=B6SNBpU%n]^R:U^bKT>>mlTFaA^1d@4aQbadA+`Z`7$rBDeqWtIHB$-B.k;*k+^V.k:SEh?N5$:mZXQp%XX0url+9:O$4LfH2"B2iooFAeSd+uUd6*+?X-_1i:QU;Vj@,b2PKf_bEn!tjJ.Y1^]&tDhH:]2(K/u"s7k:=^Z'-M[.WpT`G7]-\Eud^%XtfK`8\*fnK=G((/rqYRB_nLu&!_a%bnFcMQ3VgQ'^K\MrMQAHa?9Pj3%ZbLTj@b<(_ae?g0Pc&0YVnX-rC1iJTGd`)J;#pX/A`29;t,B)Je[X5*.o"r/(,&Y8][Zr=bAJa-Wn:c`u8E%C?g=CY]&1Ifbk2&]=Y["S.i6H(D9)<34dJg=M[/&D)_^()di1Zpo*TR,&D8*_ZB<8\Cm6Fi`$,QD"k1l.CXoAh'r)DN\rn0bQcQbDWhL9PH%ND/'pj/R[=,7?Hm]8HR]$eiec')G-]W7N-!`pitc;(=U-1UW*"g!"Pg3cg:"7JsVQn9H&ggq`M5D6^YpB%UH=g@nu_.h(33QWEN`p<=HE1:pm:NOMkh?R5pk#HB#9RIn52L$]R+ob4(D'VjiF&^q^kF9)a-a4&mHJFJNsjXh?HE!,O>'%Q-UH&K+^oEbbh$p\8/".pI9n>(,B!N=LDKnfq^SR%r];Yn@Xdop-QZc,#(=/&IoM(U/:1([kAp'nCM1&P5j;],dM_$RRU`)b4W+Jb.K7kZ:7J).b;n(,A\\\GZCo&OX[S,-V,^`$>I.T6WRs#/E\Q=E='Np8R&'k]a/[&/nDBp1tgP$ILCQr#N)BKON&6bj)]p:E$m1>W@HgN5f4128U%C$s=WOsuhXJ+Qp9c8B=e'WR-WV#f,10Zj"@[/Aof?(7"o3jhKDu)\1RPLcGa"l)@N[gg@$GQnn9Z16$!_/c1F?HlZfMd1^E7j@L@Z@leHJ`1c$-LVZ_c'@ON`,PU4UUs,n`Zn;mM<7PR:C&,sGOE?d$_F7;2.h8,U@8MWcQrYQaCYZuo)C6=+YS3BL0%IjlNr26`+&*lJbTRJj%V3IYP[unPf8qc.YIK^5FF8t@lAW"Am'dI.ofUOJ+L5p8`k8UHMUD86s>H1]r=/0p`MTONeFR"L=Fpfq)Sml(Coo'Qj7[3^2,bHhESM$5?U`Y1DKRIThe$(O,a)lq>HHa/IrDjOP)T4P;Z4)pB&ntG83QA>,6d#%>\5jOZ;'oOj,fP)"&[bYW+nsoCW0_VT5@RV%Kn^3JZhd.I;[#(Z+/Me6,p6VP66Id9R]"Cb:AS>^W_'QR=UCUE%8rfMOS0To=7lg7OTO%j&Bo([UI7hMkMgH>/Y93ZbZB#RHXoIEiRS?"/I-N%q8;XN6'"L.R'Pghs1oE57VAP;q+l>/(a2F:9EBST(.u-TIj.?0NP*B/\Apc6qo_ci8\9$?_LWuiZp$G:0ldhjTECmAendstream endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.5b6bc7d162ec057a9a7579a9e03fadfe 3 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 179 >> stream GatVU4UT(\$jGSFi&eRb,aRG^GV*d0/d2bkD("1l8ael#0bi>!77`?4O%3#n;4Dh7/cko=+@[b%h._O(DF'.S$IYg-C#1ceNfOu*qPh3[B2+pg2J"h2jWuG;U6!SZ+8qpg''HRY>,?I#C9Zum1WUjDgLqO\,~>endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000415 00000 n 0000002912 00000 n 0000003254 00000 n 0000003388 00000 n 0000003670 00000 n 0000003775 00000 n 0000004096 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 4147 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-transform.pdf0000664000175000017500000000366012063667552025016 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 145 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4dF2&#a\iDl!c'Jhcne_L2#sX5e,pV&!$Y*fG+]ab@0+CC$rZ$F!W[>o,O>~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001457 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1508 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-blockTable-7.pdf0000664000175000017500000000530712063667552025211 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 552 >> stream Gas2H9i&Y\%#459qB())PEmM/RPkf<0Yrjt/r\QsLOF8uYu6r9nb9;PVX'UQ[;$]EM>bFc.Y-P(gilZtbUcHN!e^]g"/2(`]7:,*7mCu=)E*e@W>op@`>PBZJp7G#k@l0GCUYE47@;@HLn%pppDcgCh;3\<_e=Is2kP9$4qt_\#HjWCP@hhUY"H2WWnR:9(a^%*8DLOu3tc+6=9^hH:*iPmk#i2Y/04\LXB_-1"T'6^giN7^i:+bIU"o2^+)gGNrU78K(Le3%fQV/1&Dh8pVnL1YgJFWPOOQ1,5:R:r=.QeX'.nAi`9L*^Ud"71PP!<$%uHjW\cqX?N3?C:L8R>^hq+I>uc\9bkI/gUt7iI$;p?9tZ9pm@"!&*3R>;*a5ndZFclN$p%UoGG%ZOMOe$Z7e*2dZ3X\Qrl,DOF=<.##.U'7:-*n^]_2O29Rak7Js'^q'C"$q($o!HI`:nGendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000002223 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2275 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-09.pdf0000664000175000017500000000774512064405005025766 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R /F6 7 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Courier-BoldOblique << /BaseFont /Courier-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Symbol << /BaseFont /Symbol /Encoding /SymbolEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'F6': class PDFType1Font 7 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F6 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 8 0 obj % Page dictionary << /Contents 12 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 11 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R9': class PDFCatalog 9 0 obj % Document Root << /Outlines 13 0 R /PageMode /UseNone /Pages 11 0 R /Type /Catalog >> endobj % 'R10': class PDFInfo 10 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121219133528+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R11': class PDFPages 11 0 obj % page tree << /Count 1 /Kids [ 8 0 R ] /Type /Pages >> endobj % 'R12': class PDFStream 12 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1219 >> stream Gat=j95iiK&:j3Mr#b(b/dt2`+-MMULBTS%JH^ohg-^q.bh-Z@aXbJQoC"c:8=F;QGT5:sWStnV4@rIBn3cTLg&l^TiV&959qcq;apEjo.src^2r>E1mG]J;$0.1A#_W)$.&8+W>#8lJ2aS-k`t9/!0pi?3Y_$F@(h>?l.3gA[Gmjo1%-3X`/7gWab@30M)0tV.PKfYokNgVgaX)!MS*m*'N@+.!$_n;8C="K07l+M]M#:_A?63(LVU;S$WpL/E7q>*XdB`%tbm)`;<;R*HlQ/>n71Jeb@PY5_=T+6euY-#sE,^=_Tan(6*RiW-Wr,oOnHrfQRdHcajYQ:HRBJ]ATJgCJ,`h).;er*=c9GjN!F>/TEY)/>nhuR(f31^RSeV>;\nZd=&4ke'DE]]=m6b?`NdBj()K:njbj)`H;\njJ=f\3ca(qo"jZ-q1fF(N.]=2qq.?n8..b`Vt@<506#S6(/aPcR@&-GQ&'K)&s:O-ddZS./JDNKaYjX=FP-qPBbm/rJ2"3KFuI3K6qY5JjI+BM8:e"@aHQ5aTD-o7/.l=iEX?e)iiS7Lbr\SR4.kZGT;UjrpPNssn'oZ^#>e3lN^uAM85G5]T'S&=7J?iK`+M?~>endstream endobj % 'R13': class PDFOutlines 13 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 14 0000000000 65535 f 0000000113 00000 n 0000000269 00000 n 0000000434 00000 n 0000000605 00000 n 0000000790 00000 n 0000000948 00000 n 0000001117 00000 n 0000001296 00000 n 0000001575 00000 n 0000001712 00000 n 0000001983 00000 n 0000002090 00000 n 0000003454 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\344l\301\320j\307\346\376\210=\215\256\246l\2546) (\344l\301\320j\307\346\376\210=\215\256\246l\2546)] /Info 10 0 R /Root 9 0 R /Size 14 >> startxref 3506 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-005-fonts.pdf0000664000175000017500000031614512063667552026276 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 5 0 R /F3+0 12 0 R /F4 6 0 R /F5 7 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'fontFile:/opt/zope/packages/eggs/reportlab-2.6-py2.7-linux-x86_64.egg/reportlab/fonts/DarkGardenMK.pfb': class PDFStream 3 0 obj << /Length 79804 /Length1 6682 /Length2 72577 /Length3 545 >> stream %!PS-AdobeFont-1.0: DarkGardenMK 1.1 %%Title: DarkGardenMK %Version: 1.1 %%CreationDate: Wed Sep 10 17:07:49 2008 %%Creator: jonas,,, %Copyright: Copyright (C) 1999, 2000, 2004 Michal Kosmulski %Copyright: %Copyright: %Copyright: This font is free software; you can redistribute it and/or %Copyright: modify %Copyright: it under the terms of the GNU General Public License as %Copyright: published by %Copyright: the Free Software Foundation; either version 2 of the %Copyright: License, or %Copyright: (at your option) any later version. %Copyright: %Copyright: This font is distributed in the hope that it will be %Copyright: useful, %Copyright: but WITHOUT ANY WARRANTY; without even the implied warranty %Copyright: of %Copyright: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See %Copyright: the %Copyright: GNU General Public License for more details. %Copyright: %Copyright: You should have received a copy of the GNU General Public %Copyright: License %Copyright: along with this font; if not, write to the Free Software %Copyright: Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %Copyright: %Copyright: As a special exception, if you create a document which uses %Copyright: this font, and embed this font or unaltered portions of %Copyright: this font into %Copyright: the document, this font does not by itself cause the %Copyright: resulting %Copyright: document to be covered by the GNU General Public License. %Copyright: This %Copyright: exception does not however invalidate any other reasons why %Copyright: the %Copyright: document might be covered by the GNU General Public %Copyright: License. If you %Copyright: modify this font, you may extend this exception to your %Copyright: version of the %Copyright: font, but you are not obligated to do so. If you do not %Copyright: wish to do so, %Copyright: delete this exception statement from your version. % Generated by FontForge 20071110 (http://fontforge.sf.net/) %%EndComments FontDirectory/DarkGardenMK known{/DarkGardenMK findfont dup/UniqueID known{dup /UniqueID get 4242151 eq exch/FontType get 1 eq and}{pop false}ifelse {save true}{false}ifelse}{false}ifelse 11 dict begin /FontType 1 def /FontMatrix [0.000488281 0 0 0.000488281 0 0 ]readonly def /FontName /DarkGardenMK def /FontBBox {-23 -677 1915 2296 }readonly def /UniqueID 4242151 def /PaintType 0 def /FontInfo 10 dict dup begin /version (1.1) readonly def /Notice (Copyright \050C\051 1999, 2000, 2004 Michal Kosmulski \012\012\012This font is free software; you can redistribute it and/or modify\012it under the terms of the GNU General Public License as published by\012the Free Software Foundation; either version 2 of the License, or\012\050at your option\051 any later version.\012\012This font is distributed in the hope that it will be useful,\012but WITHOUT ANY WARRANTY; without even the implied warranty of\012MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\012GNU General Public License for more details.\012\012You should have received a copy of the GNU General Public License\012along with this font; if not, write to the Free Software\012Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\012\012As a special exception, if you create a document which uses\012this font, and embed this font or unaltered portions of this font into\012the document, this font does not by itself cause the resulting\012document to be covered by the GNU General Public License. This\012exception does not however invalidate any other reasons why the\012document might be covered by the GNU General Public License. If you\012modify this font, you may extend this exception to your version of the\012font, but you are not obligated to do so. If you do not wish to do so,\012delete this exception statement from your version.\012) readonly def % Copyright (C) 1999, 2000, 2004 Michal Kosmulski % % % This font is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) any later version. % % This font is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with this font; if not, write to the Free Software % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. % % As a special exception, if you create a document which uses % this font, and embed this font or unaltered portions of this font into % the document, this font does not by itself cause the resulting % document to be covered by the GNU General Public License. This % exception does not however invalidate any other reasons why the % document might be covered by the GNU General Public License. If you % modify this font, you may extend this exception to your version of the % font, but you are not obligated to do so. If you do not wish to do so, % delete this exception statement from your version. /FullName (Dark Garden) readonly def /FamilyName (Dark Garden) readonly def /Weight (Medium) readonly def /FSType 0 def /ItalicAngle 0 def /isFixedPitch false def /UnderlinePosition -420 def /UnderlineThickness 80 def end readonly def /Encoding 256 array 0 1 255 { 1 index exch /.notdef put} for dup 1/glyph1 put dup 2/glyph2 put dup 32/space put dup 44/comma put dup 45/hyphen put dup 46/period put dup 58/colon put dup 59/semicolon put dup 65/A put dup 66/B put dup 67/C put dup 68/D put dup 69/E put dup 70/F put dup 71/G put dup 72/H put dup 73/I put dup 74/J put dup 75/K put dup 76/L put dup 77/M put dup 78/N put dup 79/O put dup 80/P put dup 81/Q put dup 82/R put dup 83/S put dup 84/T put dup 85/U put dup 86/V put dup 87/W put dup 88/X put dup 89/Y put dup 90/Z put dup 97/a put dup 98/b put dup 99/c put dup 100/d put dup 101/e put dup 102/f put dup 103/g put dup 104/h put dup 105/i put dup 106/j put dup 107/k put dup 108/l put dup 109/m put dup 110/n put dup 111/o put dup 112/p put dup 113/q put dup 114/r put dup 115/s put dup 116/t put dup 117/u put dup 118/v put dup 119/w put dup 120/x put dup 121/y put dup 122/z put dup 196/Adieresis put dup 211/Oacute put dup 214/Odieresis put dup 220/Udieresis put dup 223/germandbls put dup 228/adieresis put dup 243/oacute put dup 246/odieresis put dup 252/udieresis put readonly def currentdict end currentfile eexec t?clィZPエサ'0*Zc2NソQSュ607ムニヘ)J」Vロャヒ\Jiu沾f hーhT専茎゙/サマムZケ8^R抬、 @闕 qニk/ンニア飲k P2讚ヒ紊ニラ!{Ys.勦BQャクLュ、ーBュz[$塊シ ヒ,sh鬨ユ6告O!Bェ|ェン杙SO」 ロ出$ャn{ミァL椽・hハニsGケd/W ノYォNZ S$ 炯 縫忿モ!T粃/Pf↓ィ#"v棕・水"ョ、屠櫪濾ケニ_ レd'ユorアヤ稈27orンbJァンg0F" ' .ェワd魅!|鍮5:\゚゚i3ャ]0fリ:ン煬丸エ|蛬ニ暑)槭pタw鞭!#犹gdハ>j:ワ辰 us7。ヤc}ン'ル%ロソb4r碑サeシSヨ w?シ尖65吽チ00ロqF浮g&!凵ラヘ粽Gnル.=゙%゙ オam顫ヨzト-ルbニロ昨e+? フツ牴[w?{旛8アR t1ヲiUサニォT7FオBエ;z幾覚ア\」ハicWνwa羣カvイーオ゙ラy}`ミg|。oB&趨ッ/理イムsモコュQPL/クN框「.「ヒr?12モWマサツ[D>孰"2 紫wtjMrgハ7ルV |齒Gロセ_20モェ[£L]ノwクA兪;FU3E6HM「頭ヲ、オスA=Lqミ sネムwツUロnG繞ョpネ9n淅゙P憂蔓)0cHQハb;細Ohゥ5@t/レm Bwメヘ(レQゆ`s誹ェ }o k矗J?_。憐6`"揖(oゥァU ?ルチヒ=zム 功軈{F典ゥ朦ソ誓kDモ}GJユGカィA1慶j款>iM@b y Vpレテ懆顫 ZFuンァy韮GャPH蹈uYoナャ樢ュオケ=7モ'セレツ就q(ノ榴>pゥ=6機1ヲymソツオ「ムx;2ン*T+@ッオ6ュロ%獄sj ニe橋雪。 ホヲヨ)e^H~キdコ号!サ0B留{-k;゚剰^ーエ娶.ヨフ" フ默。%rsムDク=ャ。罵y)、2VX;示ーgbヨエb\ss}ウw'鵁q、怯W桧$ュ「ソHマSク初jkャ{sX<クレLPキ梗"c,p.リオsフRC柢K!7ク#?コウ>AΙ韜ワ崟fユsシE沂RヤqゥスaAア蝕旻的セ3">L憇ァ ゙、 。身xケ{劃,ム雕P{>`景^イzフツ衷0ッgミKトW-;#9*9,Hモ゙ト9vケニモ9ナンCbスut0テユヲン}寶#*リ慟捩⌒嘩>ODqn櫪ワ靨i*oヨ;ツgニLX#hンコロYBソ。゚>6コ:3&包モホ&"ヘ「X#、ホ|: ヒコ1フE>雀8シkZ bHロナZa園mレX!」サ毘(rチス礎'ル族$イnFz諂xC cUョxモ淬晏{ヘ.屍3]岨詑ヒv&g0閖dカ吻ゥjA゚ニU"nメア櫚F =k= :刃-恙Od烈j,2ゥ3水ッ赫[Oj笏W{ソメn; >柎5,y客スWQコゥ4]ず` T ア頒ウ4ャ~ヒg名!瞼{ムsnン8夐Jニ竡PF.Tキ(ウク杼i循オ繁トUb幸O 貽;眛ヘツ笙+ツ諏Dニ@シAKxJタ。kホ-^チ磚/ィY"鐐V帖ムI財l」ュ"爿*ミkマイ:Mュエヨc。゙Kー~TZ?Gc鬆9.ネ竅9ァ2t。j\Sz>マ:゚サ~汪L家イ踝w0舐6E%{#チ ヒミクモニ`腎義ホK冰Hヒ)09ムS{"輟;ロJヤ#V堅&2トkD%!;]hモYェヘォJ゚ノ6タ\! ]」杠コ3}セ2Hコs| #n摘#$i 卷ウ/4QG(アQ鎭奚6d?・&タnS$U7 サ%テg9依S1]フ+Ut ャニDImdァt;1$ゥLケ7ネd:Y荒=ヘモ,ノ=・%ュNTハケセDロP4タ]歌6; ア@NUメオaョンノx.オwヘ堙;ウ゚=Om mヒハヲツ1互スwT&カFc半ハナ ケオサ_ tNル瓦ン マ(「gpハt;q梯Xウ<枢。ヒ-4( n瑠  ア ~!'fメ@マ鶸ヤウ咽スェニァv}ノ捫`ヌムロ}クDtFs度/8eィOC`<ォUT@乗ャ9j /aォウ1マスm?ュー2スOル貯1ゥP イD螂ヒMシMタ!セニ9稷ホ】vムリセ・リ;纂%Us#ウeト霾 慴nヨメu胼マ_コqG"'ッbrYリ餉Bゥゥナ輿ニミ羝WLTxrCア,ンIFls;斎i+點x浄0ソ)>eタ襦セ譜ヤ%?W^マゥテIェヘHQタ]嗟h?抵ニ妻k$エ0ヲ&X)ァ毒iXc゚8y]チ91E=4)M扠/テヌ W靂dカdメ=K薗ャ"+シ檣0i!ォfェリ)<7柬$ヨ0 6犖$モU モ招yu@゙泳C窯>ラマCiヘ%eM+`#Vフ趁w敗ヲN婁ハ&g 」N拉ロNロチFマYホ}iョ「H"&#GワU稻[彫Iキ- =O゚鮭5}掾・黯Y@蹂ウrfSEサgテンHLdp*蛬ナ0ヒイムクx脾ウ%a/e CzQ稚/┘B6Ct;タ1ー+滋KZ礬ホ蘰"Y?~ホーSォFDDロ?^uGK|イR冉3_ナo=K%ソRB|/]fV ォ>9ネlヌ; ]ワスxy嵒チィ<XIャmX慘謳フVciマケ ュl潮、yリ=マ[}Lチ゚゚%xナa ォj9タ vト|V2ヲャ*'ムp茂fナ ・6ノ゚ァヨwUpMキdンア娘d頂廸oVB?H/3_ソjオ ノ塵;@ァソlvW烽1.ァチ(rォ4{輒「ャサユヲヘL$B・コケ狐ラ靡Dル2Jケ僞ユアhzirDソq連 Lッ_e。=ミ ケリ)纈@゙л・悧I佛@番ヘハs]ェキ號7ツ メ%セェ薐フエh[特7タ_ニミキm|&uワuKrテサ膤ウr噴;nルス癘ウトシ゚zp1ヤsb;RロtホoJ竕i.暮~豢Yyュ'瑯腟ne 渮フ害ずy>キk轜53EX4ミQOリッ<:ラfェ忰`yタ%D)\セサLッ賂/hロ剿$ケ<惱Rキd廨tセC6#^「Y#ーェムsヘエンェフツ誥B~Wヨ@5トhハヨナルヒミ5<マMナ1G皿sex姨fヨ V]ーjエ[Sサリ/ア7|オ蕉4ッーソ2&ヌFQZ 拮WヒvAI|s3ゥーゥイw|*セ. Rニ)鎬]O纒堺豁飴僅-B4繕ヘg0臧n,蔽゚躊(ei;槁/カヘ/ユス麟冊`ク#zト ?ミソ傅ノケトbmJsMレ%6剩*゚)~フ 4GメLフネ;4`hm、 ムタIシnク? タ焜7コ ハ偕Mi8ノ{`ヒ]|CO。e s7モヨ:SZ#麌 ヌ戯ホ8窩 誕C49綴{<tウ}ホ]ィ-ヒ7:匿Cユ fyR、a7ュ5霄Ne{ネsッ ゚=h(P5$カyK゚xソ、メ'ー{rミi]ヨァシn嬢 pィ ソ$ZTfウル直kム鴎f_7ケテL`Y@槓 苫ニ彝虞,毬;f@fソ!枦}L@nヒνI+、恋ン7y8(」(噸JBモ(ルウ蔬ホB P Fニd9G3:-8-piサWG 「オU}ヒ cA ィウ ε+~.Wワ0 凩 瀾官カ静u フ*ノ^シv2ワフ;註/1キサィサク s|ソ`%`贓ク2」@Y:&OTt5X學袰ヤ:睚ル" qM4cヒU},セJラテ!゙Yy9ウJIs冕、驟ZiL&!*カメ E]R糧, 矚兌カ黠躍肥yaヘc]ハヌ゙tャm!Ssワリ51ス【cMッ<ノ シ&ーl凍、}筱;ャノニ振7潭トハDE攬nC7*ッ2ホヲツnyaク拂イスゾ繖 ヲミェcゥ9樂0gンィwt ヨKナIn麝ンzテ<+ツgフナ枩ヲ`ェ ・vフ尢段<為6OーDロテ[+ヘ}3キソ[ャ7gヤ1ヤ+シエR}^祚ーYエ "ァ蹉vョaヒFJセ?n_ォオ;Eネ&$縞s]\ソキYZ蘓0仄U_k<諷ヒ清F.フ&ムqrサャYミワエb`档廖チヌス2(w2#4マ黙[^{9jBケッヌS8tT=;セ]~Uxi0 スo+l盒モVo゙ゥセヲ<岌CィW=>,SHンー:ホルЙ Tt`辮/5ン=コ~Yテ'ォハク%ロ枢@ ゙ CEチP碩8ク珪告リHハヲ=コメ0陸"D 叔エ}モ $亨轤S褶5菁ウ瘠YヤヲBfjネユ mモ;,セヌ澹タッツ(>@憮&マネ} #蒻タ%蝦ネMp-e?モ俾u^v^8ャ)WOXョ|R9黏AWQ%テ鬯'ヒ「 xr*~7ハIイ-舫ヲ趙リ辣"ォ;エ。ト゚[ク俎>ィWコaテメ柯W `Qヒ>'エbイO$ケdH 旗ウ:-ヨrヲユ逞ンェi+ハ「6サuョ?ムヘ#チ~ャ-:コ Yu!ュャウs精`苴3]`&]9~剿冓:+S2|ールンエア纓煮 %紳S¨Vo#1菴Fmノ\B[eセjニミァ_買UfRx:竊+ラ#サせtu。ァ 2ア'iaYォluBカ @(オBモ カsョ`Lク俥翁7鵺吠 ネ吭w韃Xセ)_ニウK kセワヤキl[「_*.幌|,ナ聆Qc。&ユ7ヨサ&o`ケJ";9ヤ キF釆ヘ」敷ケヒ誣ミqム嗟ゥ否ャ埃榜R`リmユネ邸(6A#y,DソDA?Nリゥ:.ネOッ栢遙チ)HFxCレタj7Uヒ[リWホ| dJ#羂葦ル嗣1棉ツ拭ヒナ_サ得ロ &カWcE|w鷙ミゥ汚ー(ユ~F:ZZスVXo% ゥX贇Pクレッ笘a癲*クッa$サ4'ュスッソィク゚髭セュP~諠(9梹,M)NPマ?Qフ;嗇8フMzptォoNFレミオV$'テナゥエト^海B_&:麦Tミ?E,c鋏ンコ厶ヒ喪5:KR泝9#($ヘ>ク>-ィミ_( e|MEoLケ擢ユ騁ソコ、ワagセ。 クチ% [固#父ムワシコフテセЕレ掴ミ0シRニ|ェエ熬gニサc)-qノッ6價6Dユニ'DSGK'+FッYOxヲ%dmeム瑁ラ5 <フ-イd5.ィy カOMl'カハtbE ムレ%オツネΦ?コソ q゚HhV)イuシJskfGLPォC%K焉 =X%、 y$EY∴イt愕qッ#-ユタンユワュJO轎Dfーナ&KOホ鱠ヘkc|lU7/チゥモフスn!,pッu犒ヨ75冩6yYrァッテELシ楼「ユs:素AモdzQヘv]8メC8∧群泝」蒋漸,ウ;街鐫,エ榾ッsiノ@8y .nW)ォ「齣リ$ゥ(袵BェxG7クVンヲ属v`\87#*ナbsイMセxヌ1 濂Jl適`サE'ソlカ%ヲョサュuDゥ 。眛E猩O檐:4椡`ゥ3ウ %ネ^*a'!レl蚯}アG&#.zヌ&妙 ケ_+ ク!=ヌ0F$Sネ'Gゥuチc6;鋺6zNメ/マ'Eネ゙g膕ネキ?@;wゥ(フ J}薤pィ=ネm)W゚誣!(!hy]}c<ワテU.ワ(レpュ 6H@1nツケ$髷 ,疝ナ#c} %{1ヘV・&t・エ`@cまヌ#RCテZアuqウヨ・EI:Q%輙GJz閤ハミI 冓ミQWヲ9ョサH"タ"糠~ニ゙ナチfiフMw卑5PX>袢、~.廃3ヌRケ@Fa=@ ネョ稻(7+:vX>J寳Cx攝'ユ ワラシd6=EワェャЧ_芙レ1U蠏ニi>欖ウ祝aZ: 毛峽゙宙5H`タロmn|ns?レB1Q6;キ|エタツ「頌;禦:oクーZケ埆チテ售hネニ眄pユコ2ぽh`洌 檠詫タ娉ロヌ Ox胸(k|'<{KメよouォレリハリIェソロ2}DテA黥F:、"魘イ|OフvELNBネウチR炎七屁R康、>ィ「きu^S=fYo!2ュ、mZ-ゥケコMカP~#KGW゙|カd O5ワ-珪撫イシ偶gフ`CtマrhマュzオN」エH苟メV)ヒ ォlテキII+ク]- コウ;髏fX#スナ雎厠gュ獺エ#z締r'ン1:a-モ3v速S X6M 昇偖a=6シ与ハG/マ_唾蔟ケ)aiキ抑0モL FムXnト啻ホ僮棆菠0ァ覺チTF゙ フ.7Uh」a(サ)^モc テOM薜ォ^*-トq+fニ*vウK牡k'ェ 寝fヨ!m Iオ& ヘ}PEzgコ麗フレワヤ・ン!;サソチU鰆KユfPUヤル佑洌D疋IAFリモ黨1r. ? ィロエ}ム分韜Y'キ倥皺}貯区mケスミ クZャ04沁ルIu"g井@b」 サラヰ唱%-xュ ナ_妣ォCQ女エ7CUラ]゚珞ホ齪)カTウTx彰Xゥホ4y'ェムJツヒヲjロ、>圉1コ.ゥケ-サGJタ_YeVヌh闌スンヲ5エラハヤラムhホd:イ%&e.QAリL4アラw47隼ゥ゙RO73B9メ9*カ+7v:%idO゚モF ォァセユx-oG4怙g弁クオヘcワ`サceヤ D Oイヘ>飜エ^P}憑飾Cオァソ`アン臣勗ヒ・ヱ。 c獰< 芭giスラオ4|ェ怜f ハNラv柿Tセムコモ「w羯J焉マヤ-=Y[ス4Hニdコヲq゚)チ'pォV哉苟ニ轢H~ッヒNソ$!Tャ燈*瀑゙ハヨ奕:.]贍?"Yッノハ0譟舊シY)淤za*w茎ョ:"ッォkDトN;zウミm/yトE ュワdSg)}ラ;?K`婚ュVhエア47 gR0ル}5弊サノ&Dユラネ/講#Fロ@!7篳4Jォm メFMオニTkgワa,lト;^v煦鳥杞~?d{殻,S蜚,ォ」>R鄭Tw{オEモナ 鏗リ3樸愼。垢=Bエx八醍/CUテウ MロX*媾_(ナ粂MY吭!罸 M` 草uケゥ_d>モl,。CヒロリJ妓賽シシニ [チ (v┫先 ハ掀、 箇3K,F・&[ーCpチU(Uョ哀a9.7\リYYォ オ z3厂8|コ姫ヲ{+カb◯<9p V{x輅 5'マ/2]k a rコク6 スVァ主チ{鹸ッ.P姚ヤハィ瓣:#M タ/ヌ 苞k<4ネZ7ー莖Sヒ奎,&1クリ゚・ィ|z .hハ駒2b J>ス皚ムナ猗讐%Bク=レ`JRヘ墜堵減テT・Fケgo ョQsセ -b頷畧dD-コヌ茴蒲KハKンテw ヒ迦ナP ョY)ウgF豚Vトミnヘヘシ杲m'晟ネ#アィggウ"、A靭瓜 フュ\OソXLキ0无ンK0瑣P9・綵Dャチ#L<`cたオ''」nェ覡イIラ7nワY6t拂Ml_キ_Nゥ感ィソ牡 傍c(鋪EYムmc_B/7`V7^`|潴エzュィロ嘲エロルR;ホ}! 6\=櫛ート Wュuqu? ・8マi疆UR3#ノW!~メJq*蟯u%}析ネ居リUメCォeヒコwN!L,G#8ー'6ニa゙RA」ス促*) ーリロVnルォ{W(エム ?ヲAR&ン)贏rJセ?'ウWs3价キ旆ロ梢.ヘ-ナ埔 ラ垰-.ロo^掬;[ゥ{ミ頓s\凋q蓿FチZソ91Oゥ敖( ]. OE舊ヲ"vvナァ゙ミ降!*#d"セ鴟、7]aゥu8Z`梼<シtムb3 4$|Kur|vソok2I5&hュnヲ。(97ヤ5澎y)t8e!n7ナ[zv笠FMk醴kaGエハ「衣ど励ワ]ム~W<'ネヤW; ユリ20o, ゥ r8・#悸i懦[]ト駄2$K?ソムEnフl誨W~ノt $ x$;"tFO6%Vノ茣スdェ:Z3幹リカP%ユ7吋郤寝"ェI>6 K,ヲスзルヒ3揆=Buyケイm5K>゙DホMコッg ルd エ!d)出゙;ヤ蔓ヤ^d]。瀘7Ow4マ祥:クiAユ#瑟ケ況厳1マAミT*v~]Nゥナン]」ゥ「圸厄ムi4 B厶-Eワ%、 」ツ蹐ヒ|ヒゥ4ーナ}Qdd旃。レモニ「;qpJFミヒ7;ー賤ヌ^sj2 <=K%橡J ウ\鵺!KケZォ:K」!,ッ汢iモc\鰆準キス8゙Wkヨ゙Qュ'Yサ釐j'#アb4w?Lク5アi蔡ゥ^瑰%l_ 輒ァツフBヨ粍ォX&]>F;ヲ リdxrKナRネツ{@モ{゚5=レ(yCオT 9LUc歡羲dMh毀?ン賂mアeマナ>3kイQ]啝、ェソ.テYoタ・/磨ー%1ヤふル弍r稿q圭S^ツ・ィ]゚ロ隴fWー(kFmホル!Vw lヤtsrチ0*ハーiY/dy'チワクR「pE%vGPモ , }゚RクF5yクレy 「ィテqシ・P゙合陂・ヨ!ッS#亶2゙sn.rZqs f卍%)=ヌ?=j9Jヲn]繹キuー;5B惇衡)R&舸%ゥ&j茖ヌ>jNカjO ン]zカc;ェ5NーシワzM=# 皚$#m逡ヤノ淨E/ヲseイa。:キラD「4o'S[晋"=zxgj#椢tiーャAuWタャ.Sタ忠d セ9.E!vツウナチkス'ハ答フ;fPソ姫ロBAn%楹I-テU杉@={ス>(/赫Kケ|ニゥ(エ% 栢``ワdメC漸ロTセn盈テ(ョ*c9ュワシ.Y>#.゙ヤマ絮.註-セ凱Bc&eキN^鷽XP6、゙ュ]縱イ楮ヒュGB読cシナ`ネ1柾5柵@u0%tオェ ホY!ツメ= s幃hD虻ホ豪襷゚Hニユ モ?94l胛ソHチkI2ウ リタシHyチcnqek繝Tゥ v=咄圃Yz註KSタマYハヌoォ7uケ7!ヤスZ 洟uKI4シ12嬲^~8(Y叢チ[ナノ 痿ゥキムンYヘ9nヤュマ, 搴エOヘ| :弃erヒ3ヤ5akャヌc"?甥盧<ナiセQ「f八ASロ@Pアヨ[スo6棗Uコョ犬標xeW鳶ミ悽o#「モ\&ヤャネ<[タセ」ゥo)y蚯 RトZニョ((!"p鄒 静ウ堡Gロщ?ュ%キチDlu} @*]L助|&T舫*=cI,0'Uカ6NDxVM「モ^モ'ヌムヘメ舶3u 範丼」Q愃Y[\ 崖tキ!チムSkOSゥ $ソトa7ゥ禀sュyワオッョ糧Eネュアv>4ワ"x竇Jv/pタ=]ャ-VEcユ ッk襷蓐辮g"」ネuヌルィケ68モ ャo。リ#チ"0Djフ ェC<カ| ybZir-%・ ケヒ@餾(vャ跡カ#イ要LZ。Xノj圏ィ ッd勢2モ!v詒抖P踐ノオfホc .台ヌMyキ)e@Uhチ WルツVハレ婢ィPホy拍鐶qホU%F(ルj テ77゚ノイ423毛ケ逢t綰イ!沍タ 。Y|Oッ。フbホ^ョ*モア4<ェ、&ウE、カヘ6Y「tx歯リ映モト闊.)錐ネ5゙Sp{Cd,hr<燃ァ)コFgvwuEMy1%Eネ&uリォ悩7UD翩゚ゥ、<1儘KYワン 」埠モRk8'&科ラ+"r}リ寺個 4o:UECエセ_~舊冫Jスマチ=ラヤ`!トニ]+)ヲュH勳e>茎4ヤ渾q・ミB l亠bタ<*x 膣)チ オ/pR_ォv>oセtハクHソec荳0A\Ntワォク禿如メェXi゙ 'p";追ニ)J8,4迅~担d短V>(}ワEl。7dBハ;ハMカh愎ー([ _ャrk~ヘ充剏[ヨテ|tウケ横)釀-#祟ハP  ツ&cォ」v゚G゚掀.M゙VjsEuQqメ「EV&Vヘ鷁u陜ハロeオ$(uナs樒4アト.テx d7^マq尉]」カfE筮フ_Qoァハノヌゥ4-稙=%煢2膽l=ム忍ゥ*5憺|♀)\ス|オテ掬_オ夬チ@ェ澪0x闘ナ1ヤ蟲\カォケエ抗eウfThワ7ニsヌワ@;蒭_T^ゥz#賺睹へ{yOc$蓮ヌP常モv+ ЬD淵ヘ* *> B*cMUヨエク瀬ケ&X゙リワw5*ル慙渥讖テ眸簗zケHノK3ネヒW 「填52ラ|O~n;15。%3 ッロ画-EヌモHw |)ヨM{ソ /]X(0阪ムア&R yナ_イ V」mエケ・oモFKdh敕+サ 壻ヲk%トf祟r%渣劔ケe。D2+Zj[ケエ縅bレq{鄰ッ テ<8fサ_ ‘。]("W:B&ケnァワODkリ帆ハ}z・ツF:Ν2fκコソh柏_,鰍( C7O|/斯蟾ンオ喟墜メ界イヤ;喃マタ悍ウ~テリ0Sフ4t u`桐ッ据。サ}ИGカA痛Pホdイタ」尋ガ}^vル#ケ5\05/O"「ヲ1シ」蛮e w|T岩ナ├ H<9ョ?pロ|ヌミ拶崖~?4C、コク_凾%dー黄-セ*」mカ@C=戛Hg廚wL <ソ_爽 オo゚%}&二マ^ニ{∋[由BSXユ}9LN モル^ミ゙:ノ6゙$メ「N7ヤ;+影壬9愾fハ - 駅ヌ奢^ /゙i想゚m8粗們J@A抒ァ歔S$蕃ねT称=4淙b_「qD仂4槫ヌ,郢ロ。゙~ン4*E~ッ(Ky<浮・>゙vw#@癰メV$rハ[ゥMシヲ\カ3ヒ。猊}櫁pp(面ワチレTYリ+*ヘ=u6 ョjト ,b豌nヒ~ホノ[]キ麻ノ]ソ1L茘jFクナルュィク嚮ャホD切誠ケBマhu衛l羂・p伉'|ソP ソロユ 汚タ{穫ーョc;dタソRJ-Wー3ミ.ケムサァ"スgcォクコ!@ j杜セx。 ネ/'6、榛メ5/ 統V剤=%ャ濺ナイ7ス ンタヒtu ホ忘ュ::[リヨテチ氛酊}。U●c・ュッ、ヘノ;ヘィBアSー7樢+メ銜Mkフ/#自ラr |p=ケアMCクヘ:怱サ賞。f'iカHBnw ヤ 腦h8體ゥコォー陸Wフイモクェレォ防ケウT?嚏Kム,チカbネ i ソE偬スX擾kYュ\bXHx/廿*b9テ/クナD腸s隠2('tャソV'j<p.%メヌユ}Gス゚1聘ヤV゚ワメァ・ ウ(ツオカoセ<:C繍苳\LケexDラム云!ァz頏D韻ホ&c硼ウャAL^∇ワUニウ、ェアトtGモV)[・ォチJカ"・ナ好/ハ!kB<8 ッ.T、2チムメtワEリシK9衒Z^HN蠱カOゥAfウシサ/Pツ稠{ワヤ4ー\h・E<TゥェyeイWァラ@>Jナソ,A!y39ムチGナ)%鞆コ|萇タlテ英蝣Qホぁハト?ュ惣(ェユ/+茯浅幇テ゚vm6「ホムヤBb、^麭V?朝+8Fネ~「9?c輜B I 。チf叟。キg 徼 算m倥]1Rヌ#"ヲ7m ノOCD <レOュr?A贏ア(/クHョセU0サg`;洪n<X9ムヌロj&`cjホ誰tロェ:# テYケウョf&熕セ-Sヌヌ64エ}yト^耒ュ悶 @フ>ロK8"C5B G汝躋コ p#岷 y2%Sア鬱1)gpb_縱唏)カム菴悼ラォH゚アケ"Kマレ gy听*形d℃!ボh`.ナ省>Bヒ^クOケ}ッ蛞d"EカT7ヌ$*AW。櫟4喚]メ%O~ゥサョ'j歌pB~ テKL.}<ヲ充{8pGソW・ェ゚6+ヨ,Fl{ 7゚f*ッnjf`s截&ネソL,-69ンサメnウ禮ヌ}、^0フ「2。漫`ziLケ[サ(W*「応サQ'セIナn愡)乳i3已lq}イ鬼+セWー!束'4?=歉0ホ*+央6キ;{ /,M嘔サクニデュ5ウx1」ルヲェ蜍tL梦ウキD+ノヨ3崑ゥ-Z~'゙?ワf士ー舟qaR}dj金メ臆攣@ヘ牽ハ6チ&」hXラ拜y咎t。2ヤ羊4チス広韵イマ[ノ混c+マ ユ*゚ヲヘケユタ潺O|#R6ネ゚カ/マ[ホI~ナ五W゙eチeンrツX^メテュノ!ュ5ン鶉ラ」_シミ#buミ癬ケユ=ワJタエ!ャ |呼"CゥH徨ヲ0] M曵ーNク・/(瓩弟0BJ蓆5メ40mエヒ堵ロL疇シ麒ウ筬ウZツ{T"A」ミ笊ukZRヒ-Oe否TコルtCァ犬WZ戉$(竣>Y箆R軅&覬Mh尨A+甅4ヌ ケ侖R゚\7{、8z=讀フkh;peニ51!椽鯉ムj「eヤbx粒ォ誣0;展Aシ3'スBタノ\クメ泱{$テnp3C2シGHウ覦ソ欒8oi踰;錫テ D]"ィ槌7dミヘ0レ 8Kノ5\o;_ィカeーシH゚>vnサ釆>ヘР慵ハx&、uM「)ラXウ粫チ濺s゙ sマ8カ゚フW+「枇d`T・j粘゙傳キ^ロNユGX、メZ謌ュs錘DOJ^氾)ャ4ヲyヲu鐇セ蕨レ霆|=rヤルワュスヌ-ヨfdI*、C[ DTk%)Kryサ7Zp!リWョ>慱 3;ュ:テーュ(ウlケ菓u゙ツ;\醋WトKiネレ赱]lxモ:v;&パ)o鏈ァ"矇フZ6貊卆「G鰻sォ鉋宵JCタ澪:魔A瑚fPn 蟐@ミ」7IGNァ:必メ^ェ遅ゥル%|ワ2}tJ(R !ンン,OGノニI>雁ミ4x゚パ*k.ワΡπ(&ア6ョム殊;諸銘ロA%ラ宿Lィヌナ0ラル&、シ鴈顰H彷wフVノミfョ J苧wR弧/スチ・aユ郎臙0^氾1蚰朏RPbk4努H?l9゙;H疥d|B躑ヌ兀i M涜ュGq~イxャvタ*U$チ_35ャtルiユQw・ツUモMB#ロ ウェ,#徂VVH>=ソィD~\C暢ク;7+K2Z`奮V! $狷ケ2ィー5ウ kッthD塙、 yムヒゥ熱a.J享Sツ>ィQМ@COェロヌカlホ'ム ッO隹ワ>巧o>メ*t捫カc旙<ン0)>タ/%サコdjサEr)slト穩セcヘ兢、゙キ\スッ6」「・マヲ、 }QッcウセシNセ「ィQモh'F~3Bエヤ Cツ殯F,。=匐4儕>M}ネ(癸校勝w曇潯!Pチァ湧フr渊{#リミヨケ+=z費Aヘ 」町莢 {>LQ0q椎后)/qUーZチ冠旨癇~b?43c6ミ瞋゚\∈$]アヌヒ ホ(7ェeキ7=L8ト&ヒw)2ハw+4カエネ構゙ン"イF鮖F{ムアx{飽7(bモル>フィァ~眦E/牝縦7Zyaホ スス咾npyzFe|テナ」ァュ/!カ7Tノ=ネ諂@エ2]ヲC ZV^ッcx+@Ny翫&Jヌホゥg=XコウxBc轤フ"ケ+群6%:鑞<。セhTddキニン8・/'キツメ (}UKC"fXリdヤュアMg6#トリユe録ヒHウf3ャ致7^PェツN1胯WモYォjS 羌ソノ62 ス敏ワ「クヤソ橦ツ儚;eシ'ャーPG.qノ3IアJ^ソv/sf記アネm ユヤ.> C霪ネy0ヘrハf」魔O]*%ztケェネワャナX |;c。*jV2ス\+疎"【GD2I.WW。ィンT耄}」ワX_マ濡dカ昏ゥ*u^モルLtミ#t.(ネ q ヒケ霾 +{,8; ン_Iフ%鵝%」ヌKユ(^'メt凖・*{_ァs晨、ロI揩bレオ^葫~ニハIM Tf=6?ー⌒モィFy\b6ッ35 鰍 oF柧おak喘!Gjd2トe続タケ律L掠モSラ蒜フサ、L;ォV嚶eア_WBhカ55釋9F畭ン啖-nソトィ釀ィ。饋HツOr-!D」cノ;ソチ6ッZoイタΣスー:レ」ア「n\;Я歟g~鰹jT糯~5ゥセッ%/o)Ud・2{pi`u敝,'鰮発Q熊O殪/y杼+\マアfケ}B*コヌャv=ト zy:ホieシ、CB茎チタス:タ8`Cヒ>キエzIォ2q8サ栞ミ[ fヤセ踟ウコXワ聢BW」ヲ濆ゥ2咸 フ堤I ホ5ロペI.M媒#ツ幕ァ亜ヒA Nx:テ裙5ク-薮゚# マIニフェ@馥フiVv・*e0ホワZk五CRウチ.kョ!◎>N) 隹モネ4縊ヤlレW竈qUO$ユヲユ畦%萓」zラレスder7Z3 8|0157Peヘ・卵ユ%ロア揉!暼ン怐!ァy免メMきlヒU5祐疏3NCOゥ!)祉フD0QVハ~ャ[cミAユbル pS2]nロb}テ'リ8チ6 シ4ォチ`Mwネ)・ィエヨ挙!]コNマ?紜bM\鎚^^Ip。4胎ヌ'リraQァレ喃胼エ无~ーイ8%O5レヒ ニオーl^<畉z オィ。聽g3'Zxユウィ_7.S良7ァr0I YPモQ}CS I+9ケヤ i ヨハ。:z6蕁5h瞶ケ!/\没タュ}シー旙モWQ「j"a鈷akタムhエ 貪$シ^ユツ1-T+報pepjq!ラケ境亭UャGd_望@<ベ2榁Gdeュ0Lz>ラ鮭 [4r1gチ狩モJ)8ヤ4s# 66g#9雲4 Zセrf」絲\フ6Y」>(j「Q~゚ホu間標ンAh假ル奔Kェbヘ凝AvG^X#檣Nァ瘡6l!コ!~u冷、8;カdK6ベbネi[゙イム テ~]掃x=RーSKNzb\^N"(掫.ゥルネPノ| ロメ劼2$袞マ8of+ヘエvkT  エ嶇Q}fe Oヨ*Jyl AZゥム(ci5ヒ)ェスz+オ|,jm`u;3Bモ街 #eVメLJ擇dI 9レェrg5iムオKナ"Dェ6Zn掩觸B券」FツE Q6D()レィKQaGニ[ラg\/゚&、ォイ」ヌ瞹ウ射ーャ,シ!ルニ。ニ0縢レ 託?U胙殖ヒーニ現覓?'迴"恰ッNJス僥玄*2娼6G"レ0ヌケ届゚ケャ-.-唹5チOmレリmタ_、ノ_ヌナ鑄Naシザテナェ*フ%)舵ッニv+ワアOj? カエEfキovGjc珍!;sン5ッ゚嘗Rラyタ&タXn惴aOU゚G"ァf碾ュ>#リ藏瘠"賻(z・Fウネ ^ネメ|ァem墫ルヘ}帚 b「磆綮"S甓Юgト.ウH#コP石フ'wU゙5ェE霏ハe:z#<]Qト過゚E\Wス Y@yd7スe[$媾 カレ「 'Kdy)テル「l.?1Fエq,5モX!:糒Wレ>コ法゚ 補e SptAヌ,拑 メaコQハnE辧奄b9^Nォ搨熏ム&テ.A磧キソメ 愨Xメ w9`哨ヌTハナK慚?U鯣pu カェャヲス耄,ッア`Iワ隈リ={Zvキkzァy。ロェru*龕Jx5コC:u3ャ ヌ蔽エ「ヨ5WMV・tー-ヲj?右キln$ホ幽鈕F*憔|ノケ_タチヂィミ=6E揖辯ゥs歹lw陷酋椶2アiB・鉢鈔ョユs慘涜ム_、ー瀧x8ヤスPbマ<鐶Oミルロ。dヨt[嘸ヌ}アイHsワノ確ノミキfリ歙p 造wIセ-妖鳧脂酷ハ=o[コセフcヘ)・Iヲワリーw「XレヘLオ粤イゥC検ョ;ウyツ0#モ丕7it5%u台IヘG゙ヮ)モ `pラ祭詼綸tエメ[r ナ[Qヌ5劭犒Rュ駐 9泛 Dモロaエ仆x_1ク カ"ム'フK~i]/beノタ、槲Uc"癨YyWoシハ|}]た#_s}D39イpf3ゥ`9ッ」ABッW}トZマ:゚ ゙o,キnシクシ杯:ヒ ダヘ=ルヌィャ嫂]8\碍aセルンj`ユツ圖テ・ッ1・8瑤U^彁}z[c4cーキZHZzDソ\$Vツハアn4゚S゚?竏n[M`カリXmャンセzシシカルヲ;ワxシ!4_s濕eP星ォキU蝟躍ぜキpモーウ7#~棘Pレム。F・n肥~лー 鐫イ\貿WmV0ネv貞トD)sロ^ 」@АF B\」bニ杠颯-qチ$:ュ8| ケモ ル恆`ワ9]セ什ェ [{゙>靖LGエヒク ;シカ%*g遙kf9-]D纜許,cVMB{~ァワcタコウ輝貯R0ュK‘ノヌ溌+E&エ= sケ=. 拳斉8;6タツマ4掠ンh 強ネワ賭僞jワ)シ馨zセ醗Qレiュ"ニレハ~ワ愬ラ@」\&5鎖韃鯡這寺Rセ w戯b・'トカE獏 ァラ^マ キh6ラナ阪=F5\タo寂Iト#yノZjホ|2ョis:$2、0@チElケイUユ@Bフ'ヘメアュィホ纏ン逵[セ(シ4現Lヘ*ユ゚FX|d[{} eム゚ツュY「ウイ:r ゚ミホ=・ルミ{a 年拔)rオF「ハCW晏.b第鷆レrテs黐DX惠ォY耗zロカンセf5xuムGッ-]ャク7#fャ9A"_WUヲアイ病 2m9ソjp ラ\-+。ムZケi「チ5 p '=ォ埜!X衂2.テォ$d?イ!ュi侈 #Z(>唾ヘ瘰 ゚ W喪T#sヤユaッ婪8厮_. u,wKリラc`ョ![-蠏9vニ"ー盥ケニウ? f)1リ:;.呆ヌ4TS!'ヌJ'FラC=753WユU卑ニp^カ:濺モォ=ネエLクーQ+ッメキニロユDu>}蠢u1ク梏2<還T剌B[」+クO愚クテヘMヨz/湎Oリcワ_vケ゚y,cU Y&ZuUム^ヤ「&テョuケ LN'Zx5・スsヘ禁漕L%讐sUfヘHワ頁稍5ソ@fZ耐モス6S「コ5。:、5 ュ$3ア」芝v鍜褂 ャン芙匍~驅叭 1坐Kヤt_攸ソ|ヨセLs縦さ-3呼j 螂4@cdM襭霙a$騨ニD/1}=)N「トHx酌"マゥp頓>ャェ@VO|ーtxtュaG3^皿pY,款モ於申gAn珥緊イ゙VJ&ィク゚?ワサ?ニ>ヲe挾Qク=bュeQ2+ヤ>堆}f 」8ツ筵aェkigj輕ル澂エゥ嫁鶲&g)|Oy樞ヒFf「゙'1#ィ抂|ノZe霽\Eタ}ヲQ3kC2n・ミIT inz/ンmンbテ。jサキ2pU\q~ォJ[ロシ耗酖聊Mtフラクd廛I贇ュ*x^ワ洞oeモヲフ)|ッョ=ノZムモ.、ア嚼ュケ!N rラ,x%ス 'ォア!1J>k2卵>┳ツZメ2シ3h戍掾`-0 ヲキ喊C@9k手隣B輊浦ユ=_^嶋RzbCqqtイ゙1Q、璃czGH6'9埖シ\゙ヲ.Gl}-ニ\アナ:畍)需h>エ?ヌ&EHハ'點)セ・ア?Aェ*>%ロオxト漬、|b7DYGnE ホセ隗Aカ;^aォjヒGx醇ョゥOォd床_&.yー慣クIx60=`ウスッt・h|Oh揖ュ&野tテ<ヨ.xサIh",◇ヨqク4t靄蒭慶柬-rbァOBwネO曖暸\アMオt臙セt惑ル`}K1ィャBコォ)主ヤOxシ渇9ユP ラT'蒜゚Oヌホb1wフ1ナイラ)AケdWミ'nロナaクI」+ヌトゥスメ「アy_イm憊・ヒフヨ渤ョ坦Y最付$>YmョスワAニVCァカcWsンヲV=ワ瑟チ「zナ召zァC6ロ~;C]ー微Dm蹌$q3kリ#}4% ゥュt懇ァ゙ケメAtE 晨ァウN&LcvJ#xイ÷.゙ヒカmリヘqrッ`?L " z$ヌ゙*XfンI8@v' tMs+、WOレツルx|ネュル}メリキ滋u~b.レ煙メ賦Y阪呪ェ瀘jメ柄゚#モNW痩&ミ)ュ'コsメ)*埣キlbzタォ約阯リヘ^シイFヒォ pコ42ナb"c柚驍ャQ ョ; :ン倍艸蔕ezノh瞬V缶ネャ喨ヲiネ5「(jテ EステPヘUj蓉オト|觀xハ稜ク]搖鉞z{ワG>蘿ボDp[ワハL( }:覈1臈。EY・oヘY*H&@蒐ホ瘟ワ鍔ヒ(ユ)オTィホ sAソハc゙ノイjヘwン」p介ヌユ(Tチt廖.タ癢奠鮭yHテ%ル2"3茜」ム。ャ貫ヤヤ゚3カリス/wh゙レム跨H秤蠹Ox!ヘ!}9ih jホ}ツ(fs"@P@マ$E)Kエリ゚フヘ>ケ撲 Z f47H齡ワPF驕、瑜Y神\cUPI\。8%鮃b|Kgモ=シQy烹-6E タ0\ &F0ヘA「鑪i譟゙7ソ{7リR婆80 イuO5#酉ロ=@Hウ「タ.シォhJ。癌 Jz鼬&ー゙~\Jメ蝙ョlVヲ{Pヤヤ・ソ*7q磯鶤dオ}橡Jjコnゥ~Bケ鐘s hキa禮В=*uy際<\-g瞋ヒy娯fミ/wU]。 雙!.Sリk%oFェ#Y晤凶M{屶霰yiIタw UJヒ1ノCンィラ助チnメG7ルオ[V(IZク8否ヌRヘv6渣エ電サロ&i旄ホサ,8ソミレFN?アモ3ヘ]%徴ケLsギナgカンナ0K リ驃BT 76ユS止ァeネュサ_ッツン侯"O償NlムンSゥイセ>&~ネ・ヌ9ヲリ攬)Zウ嶂逃Xfキ}ォ啝 ゥ戊ハソ1[ヒP4Gモイ&ネXッRネ's=z2コ*チ&ニ {K鰍RpOリx゙ニコラェIZチeE笳#局/LVサク_P,築'ワハUC'嫡:ウ|t[rzァタヘソ>1ヤEf}ミA=メъ)ワMチ5湯;皀 -モメサ%o゙k 7>。ィコ逆qサ*&。ン@ムク`ナ4>コ&ホララモJi0X"盥オWト ]コDcwワヤェ ラチi@(憮xム|4~レエメ3?,牽ホ冽侵("ケ、_圧UEョゑn;シ痒+Is,レ)O684ンJ<ョッG$+ 弛(ヌョlMc罧」ヤ欺Dケ秦ヤ.j靦0躊5躊ンハ潛6yメムナォス マ 瓢嘛*HAァb_3ウキde) カケ哢nアAセ榧h9iV斡タ、KAi鳳K逾鉄、ヒ)┸O艚=ナL「咆3リフM{QGoチスロク@ネナク@趣゚k!/)l ョ`|V゙)護 ヨノx@}Xy営tケ<袖Q]{Y4、#-\逡bアロヲ熄FLMサフm/P'ロ、&5P ヒ-m徇p7ソキ8Y韭ュ4`vp=ud?鷭ン}ニJHンホ!O:セ:U_クリ6カ醪/q~乱Z%rETR失C3鶯ツIタeテI滓ア鬆fテ,モ/ノ笂]cx&e懋粟w$習Z&ニ.」ユノ3北7^C&ー+曼倬*ン\ナ%4sB權*゙)F4キ X漾c7wソコ*lキウ黐Xzサ優泉\'ストツヒz醫"ョ2゙、4$YゥmDカョfュ7鑛ァ扣ノ マ瘋5cヘ%鉢讎ーロtキzホ[4G0 ツbハ鴾qtl啜6"ホネワv祕ウケハ\;ツABv4ラeク3」ヨラ#|(」lL3E/[沐ム蛻閻ヒ-弁icBOワ ▽hM類H8<カ鯆65萋ァーソ~{:k:槐゙"皴Kノ學X4クヨイ* タ#k@&エ`ソIxKル/n饉スi檻LクV}ン}WA収レWユ2P'僖|・晧+テ很svラrキ$鞣6ョォ溥゚誌 チsuー+gqu8ヨクオ有巵KヌンwNョg豢8@ホカ9ノ>ヤ{T4Hpきァrワy|9、~4deヨ8ケナ~Fリ< r5V廐Q芸E~dイ:6eャ ャHメュ拙J僵、Rc 粨ム7_mHュ`象ロqUエメwpヨj%嘆ゥQp ワト、!・.ネァ3eq箪ェ「澄}mリz +カ足h絲哲タ3碚ャフル5g濕ホヨ(,|狗LsX タiナソィ*治ヲミrT#(蠑誓マ=iヤリJu妣U゙ソA (apWァRゲkェ嶺ノv悸」隶n8Iwl濘UQヨ3R4%ニ停jモ鴿+ャ8;}鞫利ミvY%Lコv??+ラひ瓩ア,]ニミマ コユッzFトtト怨Cェyゥ^<コ`CYサフrEM6ZB6ネQ=ヲュ.7Gメ\皸%ソキリ t^D縢忿2ノ"kk`j O3q8チイ噛河ヘフオ♀セセHN謂}-ヒ{眩捩エNh ゚LケHO飄^ュ愾ョ佝オ「.tiリ濤ル6ヲラ卮M+ョ[!]j@4ッーオ免ゥ[スホネq-JO!h7ムク@ゥ!墺聚Z~)3暑插7(157ー蟆トツLチ*aマ'モハJ挺ユE攬 ミャカ_%野橢!]ヘ`鐫゚*Qタ"Rヒ「 `=、訊xトP矮a%!xヘ 1 ソャe$)枢ム0竒鶇ee0タ英'lナ`俚梏|渫cR叮甚隼搶cszカU'sメン易M{aツ5-ツー ツ宸裄老iTZ"$1ツチOルラt 驃曉ウO3+ッfシ丁:lcゲ^ホ_Iネヒ"撒 #:゙5Aウ 4V&イt蘋カ帥&4wッN繃[ ?A\47YmづナヌP&碼qヲYCV g08^3tノォ;+e!ルイセ|cクミo樽O+L堝クPモミ6\ヒァテ*)Tbモ^TeO殼?K鱇}ハ。d7カ試-ヤリェ 齦ミ錢シj%[)シ1ア針9アミ九沐4劫触=ナ蔀朶ヒ)ヌ%l モfkァF#:\/ャm;wB.Fュd ъ8リx奚K梹Uヤ+ウッU(Ak">mイハ遡P+ヤァ/[l・裁サ'ヌ刃擂JdZ4コ@ケヲ敍サ[ァRゥ}誌ケv、`キ鯉ュ鞁ンVx゚倒テ婁c披ワッzd`コiスバ'韭。oワェ5エ繃犒#慳庄嬋Rラbl0ツ棕ヌマ+xカ9ラ蝗踊剰ミワrlーヌ>ア2<゚zコa髷7ヒッ3kuaO'Zル柾セ幾>嘴コW鯰=シ菰 c個#N q ニH)%キユゥ#ゥヲニRVセn鴟q7]ク「ヒR$カIC傘8I飫「Sト呆yyイマ-Fィオャ/}ィQ8ォ >ヘcャア噌la%o1y#Q昼Q,Wョ:mュサア゚,益FL0* pネ6ャk2-チUラャ|n尓堅8專エコ<ニ島&#妹NnX涜哲Bセ纔ツ館ヌW)スケ![ヤホ モゝSオ楡n 3+ホ\矩ク q' 湲8ヲ`F2Jq莠孀レ アgケhッエ %セRi覯*3ハ =喝#ナ豚:肱Eネユ帝ハ3g釉仁4?Jヨsヘ銛j:J1#|krf ヨ.碯1ヘオフT;梵jf、8,,欖aOvエ;〇ヌq?釖ヒ/twe8釆屐ニj"@ナ>#ネナ+Eネ@嫡6N媾gCM0ニ>・B^ヒp莵迚゙"邇fィDワサd。NK7ル尨@s.0Aケ1}ユF丗/ウ{ュJS!チyレ6ムyン孜{ U0ノム3ヌセ =E5}^しミ= PZ*Sェ?mイ~Nホf7゙~キロd+xv>f}恷bstDxE檠`=UY「9Ao_j輝シ5シj%弧eコゥx'|8。サャLh[忖臻)紕pエnロィイァチィ,Bラ求」蚫ネ$ソャ呼#dツワユソn}睛Uh偵タUVTヌeュ_ロセujkヲG' ィHQメラヒNヲz66f゚ネHQ{)(d@ナク%_0煥箚ソョ%1HミyO 丐b」rク.、Bォェネ8」螽oZ+チ悩鮴e朋!Q@c譚&ム淘゙iO-蒹」TvBォv6廰コLKv|@+番d゙0~ys@x\t!ハォ(g?)ロモe|AF4殘p1!wT]h暗ソU ンヌ訟Cミ僧ッ1ョP+|"%、j裁僚メ英HH鰒t.ッュ異 LG@ x:ヘaQ#ナRテ.sセjヌLqヒ泗w4拳ム権u。゚)冗Wワt0Nセ;マtVメ1Tモ@ク`エhPカス麝+ .uL0_wム摯0@@ーラ=ソfイnナエ鞆オト」ムヲチユ@鯢y-$[裘O+-廢「iァ9~~節碾kワム屮ネiB{)(ミルIミ5ト>キL械聯\鈎ネョキモw'ヒ>o.Dxォg*G| :カ楝Dヲx鴈 |Tキ'LSエ[Hカ含e~賎 メM6Jモフ嶂ィ篷]ソ"%サ「 牧{メ覩範篩?能Qカ`スィ童ぃ$・ムサ閤」メ鉛O舸 V閇2ユob崛6 Aナマ鎰T ノ竢d5)イu繝Eンチ>9cG%O。.}ツW地BgノッOワP1)]KオSケhホ訣:<啖サ[|ヌョmAロ衿駄 オ趨丞>タ7ーt? モMマッネホ物ウ-C+wヒオ|スソis"笑ウチ/'彊-I(O「i4介ッ|ャ+アH0絹:^1h,<鏈^ッ・^=ハーpq0ロs弸ルqΧt:゚W-ッィE飲フ,pセ;NBGoヨ犇ef h}仟丹KャG*ラj 1Vタ)苻ヌ駁(sイュZ「エJ\オiDA」8Kテ`711z肖by堊ラク 繩a矣Eyノ(チ苔蛸N+ソツZ1"ノCEB 」S'鶏モセE被津<ン蹙・,0&`>^イ惡5JIィrルマ3ユモr]ウ稜'5=ャ繽从>lTド~ソレッl&コ .ラ碌副ャヤ。イコ %チg栞ッテd:ひ 恨「ツ[ヘ4N$コヲ=ム拠G wスラシ゚コプlノ"f$タ循況濮?6ヤ#!ムpi廏%ハヤ=鰛ィ7{Rトエ實fル收*ス爛ク -,2.Q。奬sタマュ~Rl躱ハ」nア骭ラf\MHw!#5gWFMXG艨nhWz{+"G如j[Bw8n コ。カZYPレノホ/ 」Xc徹^ウ「wネ`nnKッ-頌/ヒカノ=殞yQ)ケナ +F-wマヲエ y/褞ケE(.+a裼mフNチ1qK闕uエ篆iJウrハD簡伏)*;2ヤ!Ph毫N'1D wア"A ユ出gv}Bツ軅pヤg:0O#ヨ[ムフノ_q經9ムィNa(B#sA+ヤx旬XニテウセタV;W殼t浣擴=ヨテhョ6Γeo 」ネ|Q繞槞dーア`pKL_GWオ゚よフCaメホ+A埆「レH禮ハ兎_y゙oY4;フ 8yRuIャキ;昼mD騁4ー擾I%g゚F3Fュxlテャ梭スシィ゙棔鏝ノ濟ムン「)比面ト]薦ヌ% w93%0ァウT}枉^ヘ8LハンソhKネィヤマF/kCオ-」.ャ.骸a慫,K,岑ヨ蜴$tァOトユ腑カ/轉、箜<ナヨフ[カV晴K体 h舁ヤ 芝 ,tC4wTRjハナueト穐イエ{bf($kvスψカoJチCケ拳オ賓ラ qロ馳S#ワ胼ルアdp>ケホj逑セフサヤw?匳m゚淇エ><ヲラa&1W゚FS?~>Aタ~{iBヤノウノ>ノ滞l[シァッ漬Qク竟豎uI蓿ヤソl縵wメ惑v別ツ厥説カ仙ス]茹5ラLfイ$x簗aカ GOレレケ{bnェツkc-ユョメ増マヌb 僥h k"クoヨ9)ンロ佛3惴モ,5レハ.iiメb譟0キiF7iw餔r%輒{均ミu啌ム丗j;ユタr1セGp。dレコニヨ+P|Oヘ3ホシマS脾SC鮭7コ1ヘAソn-|wナゥキネ ";e黙圄 ホHMク(オケ ̄タ/ムミD7t邉q|E0Eハワホ」我゚0ロノ@qn弾7ク3Sタアs0gJy;賑ヨタ スルミArAチケタ$@/ッケO"糘銃iツ 峯腫B~vャヌ擾ォHス] 侈>hメけレ.モチメKヤ0胄ZミH;7@lW14}xJテPム霖x」゚2nR眞~鵈"ヨス>JンニE9qp礪9セロUIコ0「蓋fLvpDシ\叩-M5杳ユ]舉フgタ 葷uヒ ト=XEM+稻BM`攻鑑ノ`羶B=]ヲヨ贐P0.ウ[rゥzナンレD^ォト梯閣季Uツ RケナQスュ_vンTKhメンsシ鞏'7 AシVLk「M/藍(鶴}エziQン(w タIォSad_*M4 ミクhR、9Sタ*!フ0.r}a 1>4マ・ルuァムャ%W霖t?滅チN?ミリ コyュzり營u&BI5ウ)s僻コ=モ尨ワ;ユラマ1准_Tママ・「e哮Pラ C"zM磧ヨー oAーン\9'ヘ「b瘟還_W;8>^ツ儉ラ;#@]( Q渾母+%O4哨`1hュOR榴カv0Y ソU&シDロc。91ン.哇ムqΦニ %慙リOF %蠧Nモ:rm:ネ屋\布2Nミ・ムs[」pf$7)D) 擘YN}垪ソー8カ4景ホーケ_ SツZY*」 R}ゥ痼護1フ鯆 D鵙bソ $-uテG難ムヘ2~i{v歯@|娥6k[ュスfNル><モォ辜HV|鍄サ4顆6エEヨ%:T[gvチーU乾7gB#ァ#チch!4ロソ彳ウ{T頏゚o蓆イX@)蒻GeHZニ5.-2/オ#/bフ%39X{ ル.o[:Sォス?gI\ウリ"放エシrョ/ヒyNOWe婀ьテョクュ歴}=gL0|nノvォx;ハケ{トtyコlケBwリ瘻述;ャヌ=8Niネ嶄)フz Q~-Vキn文i8|参G%サ \スV蚪ャee釦8:シァc[tハエ/NhYッ@WT訃丗Dム$R囿N関<ス ア]レ椶|ォッ:止mxナ*ワ寄ワフ「ノoユ{菁チ$喰\レ蛙チュ#kugャ aサcF゚RtC4ヤケJ@ヒM;綴[|峭zリGCニp凸sX|h?i浬呶JMハz粽-{Iz灌ユレ#ケwシ-(エッゥカ }\ 碓ナムVリ」 -`挿3ヘ哦c・ F{アナ干,ヌm猊エ/ ロcミテ貰マ\!`}Cb)F)<マキ、?9t、ノ\ラ&キ Lミ┿0}13ア&+ %テWイ7ト"、ス=膃[ト:ェ6ヲ P謠スeュ痊ネヒ&Md譖エl(ルIエガ9 Yケ雹gタ^ー慫g&}釋P丱*ヤ柯ォNマ「/(ム舐Nセo3ス*jNi枌ヒ2yD_?'ロhg2F1情iスチJ定ツヲt招菁躄ノキ\ュ%」鬘PsIャヒydtD娃ルヤk_c焜ヨoヲay9Zヘ ヲ2窰ホy3ユHチiQ ンNP[絮=晢QRレ{ュ}Ykロユ2ひ8X・j EツンI%ァ;ェ耳榻ゥコロ^[ヨシS詢 f^q"カ,ァヨ ナ ゥ0l*レエチッsG}ーSeテ 稻? +皸ヤm=pマy!'オク0o5%遽 ミ サ漲猴zKy5ヤワサチル[餃蔕z゙K %困-ヤツnテ 稚Pョ蔆E8ヘVQ&~゚シ豺TッbHW mツチ|p鎭レエmテ5エヤp節ИAR蟲v,詭愚澳俵》f*ソソ呉6Y4ョpyェムjトル奄C5 +ヒヌッシ娩ョRI k屑zE徒v0]^+`9OW儷メェ'複yネ($ェ羞?貭ヌタ7゙*mnpムmイモ!e0zY8:Pヒ+Mノ!ェr4ユァヒラニトj靫ァ_>AxCW1qv゙逵n臀vkaウ;エQセム4fiJ 7aミマf分=ハC・a"レル2+wヨ棆.ォ恬S'2!W9佶Qli*セ)恢-ト舅Kヌソ僊jアZVン5糯 L閔直 モQeム;'「&ェ&6ヒJfシ\*ホテ ミqヒ疫奪ヨu漱 Aw~eイy 峻ッ=kt;゚ヒラ磯JN)斃掩タ$ヒi9レアb碧タ@r捉貎Pェタ7^ネ剌夏・ヌ維6虚#c1ミト +e7wーラC}w:・勸ュ珮銘モб!セコアリ対ナYト-ェvリ5オッ^{@ オL毅QPホ6n4テ糟焚^嬢]ォmム2ハb葯ZxWセCュ\。p豈zp老腮幻゚)オh胃$ユ蚫Pヌノ4%~艟鐶'Kス鼓眷サ ゚カp拶ャ囚ノラK {lタ@メメ!>!//ヘキ型lw:ァAUA$,ケュョQロ)kIw[ルw。&,gAセ宗抄w1ミ クヌ$^欄オ;定x鳧緊i「k6aキ4||5M@ z8坩オ洞ケ省ジ アュ7$カQ*9Eマw4[e緝 HリT゙ョyltm}:リ&キ゚s齟3モ/f&"マSC j悲ロ;汰。キvrモ Djサ1リ~カp\!ヲセo ).BR鴪_求cクハn@Lコ僞シル}1O フヲ ホIフ7)蔕リキセW> ャf倏5皷ホ$ソ5笙IOァ"Iy筧Itラ筐:X'8&ヌxム椈゚RAZ: ン]ルc甎u?nシj'ノ2~[リn卷゙メ<゙Sj塑粭ェネ隕1 \@oモア シ蛞-M4オ/x 譴)5!q攣縉テ熬伶n=dT悠ヘ セT!<会8B拏コオミ_Wルウぇ蛭C!wF41R%ムニ@中JホコH胤qK3皙ゥ;、"!@ツ'Vhq|曵テョ 8h$J|)ロ室>需イ'Ikーx.髣ワネソシ-ソ@E{f鉈a゚牧ア--CUチ/R(Uメタmカ駛コy珠XQミ1*癒ヌ腦トiBLス~ナリユZシN枋ュ}ィ榜Yラフ 9r8ワ#&G1~ネ0ィ: jッ(渺ソ/t+チサツフcGBィケ>>孵Q灑<}T pfカ}煕iS yウヲ耆J烋モョ-ソ狡礑ェRJAHヌLヌハミナ艾蚋曹1サnフャ゙\;。屎DYH耗F牒モPォ:i退ョ#ァーカ袢XM 。ッリFニマk、sネ金ォ攷テn%f.[[゚Y螽( 敍tDq'%ソ喉)シO|?鷦鍖ソ/kンI、U究モク莱サ{"ヤeQ,チC柧」 器y/悁;_籍JO声羈dヒ没"|W。^`ネゥ・P07Hイ楠J 哇9X5搴庸タ:ニノミfワ曦 ャア~ ?ゥ史ヤ1[=x13-^Hユ估OhvBF惧*ァG<タ「+/0s、カウeW/#(&チ熨;渫cイフj酋% ヌ 」ンォァk.チ。ミ>ァA゚粢炉io="q([ヌヤbラGヒクモ }R撥wg eL]1像fcュマWノト`ヒッ杉譲L莎%リ+\サラ/Yクk サーメロ'p蔕"KモリmEPテク ョフ托ト~チ`ツ綏ュ」「セ5+YニzX堆LA/ ヲ糺14HS+サ贅ヘィ,x}[ハ}j遅< 0劫ミメeツ+6犒z^{チル=匡Z゚ヨdイ9ラ顕piサッヲpメサ1YA{@テAホ#i~!6:メ=>キ蚶レ曹|ェア_;tx屏ラ^ノWBヨクユT}Hチe)踐」">ロニ・}ケ+Bjタp6ャア竹宀aX、犇A磋ョチ立「9~ナ ]C$[港GヒOロ9^}ムー鍔Fフンー$6Kノ皇Cヲァ゙エル@ナpG煌6/*ノ欅鸞m{zス_務゙失_ロy Aヤ7ニ情 ーZG$qS廼f゚經カ彖蓴ヘ!l$taラ降ユ:ュ~(洌к」2xDf\。POテモ帋ャyェ羚(ヒEミ悖h峙nェUクRV ィE鋪逃ーSQ恩゙タP゚PP0姨ャ茘,T跟窄タ佳ソカ~~ュC|ヨヲkュ肭Eォ2イマmネQ=コロz」rdリ 若^・qv|Sゥmケイ2_趺2纐ネォ-リ&?wづヌャ燿-\d゙」嚆ャ-ヌオ゚rlbCsv。I尸籠ゥ馨フg0陽{vw 製~マtJlンITkVvKq、コ}]ホハ* エq!児ワセaトヒトッ7-ニ構1ァ歎.。・*am,yタaA譲 !QDヒ 露悒Gソル]<テ* E・オ感NeDトprッケh|リ:ュC゙孜ェ゚。 %ホァ棲フ#bシ+/]棄cヌR釣0kOヨr=_ゥ>倣qョワfkネ3{j「ミ.H8Y哈ネミニ"+>9リPオ<ニ!2(タ'l,諜蘋}雎 ヨ崗Y?4};ィ桜*I3xrZッ*ud整亭 キUEyヤ析カ OS掃ニフ 0~-wヒSャoサV響ユ鰹 翁"蘗駻ハr躡6「ー臂(ヲ T0SャーEヌヒcリP?#」ァツョx_Ovuヨ&ウヌ$兩エ研拙ユ8P7ミ|彩ヲ(セ#-RR孱)DウCmソ゚x 鷭YG拗スマ琥Hーン51隶"<<)。サ%S~z鯡エB:{釧yi肌Vナ徒ホ邏3V4ホZI+C2ゥB/PYウラUs メf徠藥dV游Oクa)+ミaリy殿 ョY6オテHFr!・ミ躡イルマj、YqgHwf,rPpチ3qz朕。8m7」f"キpオK8Cユ%シ弸 燒5lqラn喚*6=ヒ{/Kノ) U=;m-5&ェキ」硼qオW`濁タイソJ*PBマ;7*P薫Fト8 ァ 廊eQゥチb|vxn *イL本ヌ7Gq路ーz&e8&$1何H「4_WケO メi>k@VュbSャヤ・ヒヾホd#D ゜>!ニヒニCt(6Fp\ `タT騫ソシiGヤ」エゥイ4櫂キ稲カョチ#ロ]xマ@Fr?3セ\<=ナX綮~囘 [Gys ェEG┌4ユ[xレ$メFル6皹コ 蝣ョ`EKuz3靖ク。,セ='ツGォ1レヤs噂SIIソタウ#妬{シ}イャ;偕陪」 W'嬰、D@(9\]O疊チムムネノ億ゥMDゥlク宸ノノdチ&;ソ^D硲 胄Tコ 賄跚カDZ。゙ ョSLMヌaソ ホゾセ~viア"瞞ォ+(゙5fD]TO_\溪 要ヲネ3テ`ロ]M"v謗b`「A c。乱Lヒ掬:Iマ マリイ t ?ハ4ヘサZ/E゚Z縄コ匁]nユッT<ヌル惻aV專-'2 ${Y:オ$>亀oFゥユHヘア1f鑚)/ホr゚K@醂コム@Aネ?"1脹ス\E藩煥Jフリカ`6メ゚箋ムTbョBsf{コィ *ォイモ栃揮 L)ツエキ vp爪U>F}ォキ、?+$ラ掟確謎゚≦俺鍜+ソオ゚國マ兮PoスL蟀AjョZニ;ィ」=,2カpミFァ_rx2ォナOカ3ィャX疵$Tエチユ8|待vィ]nキnエ?.cmヤラ*zソbRnkK}セ莠ヘ:fエr4.4ク海ラ劇!ャス"p諫- |0*・BGvヨHエ臨サC4<キワャーマ棋ォ\鶲S,マタqy`マ h歡(嬬ォ農%lヨトr$sウu邑Vスマ_+:T逗゙}]單Cス腟ッ8メ馴xミYI驕ク^゚1Dg謐h坂サh!アvラ掻ナク・ォS156 ソ:キ劫$M<ス0豺a山ノ"]:bュ1"・ュ眠碚Iマ/*K那3Qヒ・Tシチ゚EウNy蘰ミcォ゚ォワナs[?ロイPトセm「ラZY:{醫ァサネメ鵈3_}サqトチモ6vd轜雹kァニfシMニト゚3Bn8+hャR芦ノUII<)uIヨE$IYp)g帶、ハ共LM!i o゙|≧Exュ疽&ツ2&cマH[搏ンIヒトシ)レPY杠%Kj薮愃hQト鳧7ッ祚x沚 両AルユUオQ8r」yuミc佃 7ExモァッUス;$ユユeソルTz]>%V囘;タjx2/rFQ>Kt゙・d゚CQテオ 1∇ロ曲g 涕ロ}ウ}z契 ャr_Lル、|晰`^ィWY9:aュqj糅\dS。韶婬雌冪b-*唳酔A0j褻r.ラ鰯醫1セラユワリ1m皃Q5i9=.i秧Y賢燒Y}0ケ6g5ユ^アoOワ俶ムケqソュuc ンw})ヒェ* Abァ昨xカJ_託ニ宣トアモ驃"ュァE儲或M'岫ラ9スtZaタレ熔 ルメ寂5アラ' 9睨ナ!"惱SLーュ」Gシ_-_ス}f*ミV@ツ 医テS]Kッ]0N葛チ冨ッェラハ+0譛兮Weuk>z除}ソメ ゙1YCフ篁y声ゥ穉,,|テ1F桙ーノ鏃ルケヘ・%),ゥキG ッh2ヨ{Mュ虐{:L黛]}zッ(ソ伐Tフ2cヨJYョカoQ翌nネ゚ノ[\ョマ>]ニゥヒジ[ムノォ^粮メP%g ケ` ノ$tヌ\タ。Jシか゛テオa6Wkェ臥Wウモケbkュ' ne g ^ 1SpオフサYヌ4嚮vF2]錬サYソSォU1Xx网Nyワc榔ヒ=tYフセ率`Dト李8xoマ@fqソ$ノ「ym{&6呈ス?タャ。・Kシ・慮0ケ9tpオ.4隈ンム:Uケヨ珱クP・>ь$t3.t「SY[ィ08エモo?nヲケホSタセ璧ば$^$?dマ裃'ュ磨np,oUワェ$v}4ム9寢 IホO8ォ]k] (Vメ覩|スP陏痢4,ウdメ顫3 ェrS昧銖s/ 8タtノェ厚シf\率z`ラ瑩シPタZ騰\ルn#)ゥ>トル? ws\8[C馘ivーッワモコ。、,[」ヲルサイWヲ旗ツ鶸u7,換?スコn訂I幣`チYjメ<込サリタ2nばーPヲ ム5ア>盞V價枸ョ=qFン3IロZ泣ZホfN材.ソg/モC洗 ョ/篁w菷azqfスカDO9i垠~ェ柘ナfトホラ2q蚌9渓=隈 dメA!g 「tTJ DオハユロYーカ8袗|エヒヤ粍乞セワユ乞F圜p輸ケ├wk脩ワウテ.ヌ}%!$ェ3h酖凡Hクbクン儂ニ'恃ホ甎「TD深}ハ.$Y粱l枝%マ゙セネOサ_tュ欅仞#ゥ8$!ヘEjC.菲ョrkX$ュ遘Aゥ'聰vqF 7xセセ8フォミロ揮3'mア」YウkM匠[hpソ17}》jユa彊1エロユv@?pァコ;ト2ネ噐p隨?1j~チ戛,'SWXg。權ヨg。8Hkヒ耐環I;nt[sヲリオ\│Bxメ0ゥ請Hl>筑sイ?<ァ・6フ絖」トレ?1季麋s{>ャ'`」yユクt「ョ&ヤ、ル@fラ$?感Y埠4FD#エウ迸゙5?ュV鈬Q員溟P.メ\セメgkイL_CGL60ゥェ}ッU拝ニモチ67$痒ロヌラl3ヌナUーヒ:クモ\レヲL3+A゚>;リmカ「ユh;ツ$%X溲ヒP"誥ネ稼)晶u゙Io biHマォーJWカユ=[OOw>熏{$殪uソg6墳4迥5i{ヤHY%ノ]ッ{忠乏ハ皖ニフ嵩~イ安.ノFクfy紿CムB:レ+mホ)レ+攘イヤS2ソ%ィ宋レゥ:n`$/ オo(/4セ唖g ミb橈5テ/cツ ノBluネ。Mキvqヲ5ユZ琉pコC葮l1ノル傍拉y}」ラス裼= 2''YヘF gz!+フ・圜{`ィヘFョFキfHVイhgO!ッ マニムΛ F%ン弸3トEワ冒シ/xh「<ロvZWuF瘋ヘ擶裴~g ^#蝉ウl紊。トサチ Q:恒ル85w卑o抽ロンPニQ2 ヘ76Il ヨ,嫁bフp1 MI56ー8ロ|ヘォv^ニ3籥?。+ェヘ嗾bgjコレトgロゥjシiナDキ=;售kマナ>ワユ!*ト0挨4}Eナ*n+ノラW6\クDレ腫< r@PチノンゥAルAキ因?ロ&ニ3!杙ネq伜ヨトヤ鹿I」[」ン.豐ン@0|$イ巓タ シホ」$Q\YvシヘiNzdVノォ|kワコ,z2 ヤ5 ゥEスホ篶$ワェ.H鰔・5rホ靠V'0ヘPミメq鱶GmD>8xy'\F蝠2x蟄r欝ツ懸扇eel*#l」dィ"a"o-7Yン>X覯SS圈D)ak瘢サマ]ツマ"}7゙bッWOスヨM!騾 レァn キキトY`(嗽?=;セ」禰剏ko゙(ウ兀W@&U P)セ職^[ン?マ訛z5{GヘElユナ#冒C拷&ヤ賚k.ニヤ"^*aカ伜リヲ「タ、筵[bイNtレヘUCYク%ク1T-j Mカ簑{egオ豹%E┸篆TサwS燥シオ4Y+ケDネュコlLアvンヒ ムクL<鶫Jメ哇/t+hsーsB拈(七uリォq蹤dロ|2u5'チOァ7シンチ節郛eヤ"テUW0=~ェ犠#ホ)カレ\ヘウ宕ndェ剋チHwメ}コ「蹣モ弌セ6K}、サ鯣サ洋O〇ユーヤrs=@:,楕_Iメ リラ_マホ ノルオj7Jワクb「リンLョcq鏡1i ス`P慙o」軾ホ6'珠t緋枝2ザァャQホwヒ`遇!.D。堪V゙9V4マ詫ヘ.$'[3*/,kッ/Fマ(1RZ発ノV桜D1_ 亠F諸>イ"ア働テ/秉nヲ$セRャ剋&。 ノ未u 3レ+ZTウЧlヤ(-掲マヲhZFF゚9ナ荷9 2ャ,クア:@w-qニ7ハ}#g:エキpァノ覯ょyfr偉ワ`T兜x汝ネn ァ]#感、xSホム黙+キキLeフf粮k俚Z淀CGカied、ホLロE夬o療#ッュ5ラ・民7トmォ+匏ニ。ニyィJ]Apア/z%アDル-臍JPP:Vp>O マ゚m?゙{績S涸_Eス飲{ヲキ」Jコ法ゥ<2ヲ }・q托)首メエフ8圭ユ村Yu?|f* }」ハ勁Cq拵P\「VL]Iタソ哉ネラH゚<ア @gスgIuォC梵コ5恤 ?T*ュョ盜;:b#.ユ0HW$ニ↓Zt浩゙ 0 Mホイ8暮D"ロA。7ユホヲw牋Vシ%ソノIテアtウメレ坦フK`霎6Ng」ネ7慷懌ヒミ顱ユ9堯KW廾ー 綛 ツツ萠w]Uoヒ、オ>メメ^#オセ」wーァ8ネツ!鶏ユ8 p XohPボvナテマ3DR哮k*W\B炊カュ/拈鴨 Eワr0」{zロl >k9、マノ?~フ?カルf,;6~ヨム=啖 (N~1赦ヤJスモNッン匕ェ>z&~wオカQ菴琲O$R闔U5zエケ3ロsァ\攤;3 >4lュmェナ?ユ桾WDF@Gス皚vク= ウFレfキゥ$ケク[ヘ2ア 」サ旅ニ-9貰ナセス$jキ.D QNjヤc賦ナエ3}2rLm/E+%浦Q杯=dェ~コe ンサェ錣奢wテAX汗$}/N|摧%ラマ掏_・2ソt'3慘z^キ。ノ5アPカロl|ウsL,オ')謹'ロeH咬lヒ3 ワ5Hコ」クキ辯0瞠メカシ_ pヌセT-a梠レ棗ーヘ+傍r%mト +@カ玻ィxRz6ワイォ邸c盖l]ー5IサカEミオ1セィ(Oャ Uヲ,凹拂7ヤ鯀ッイ0倬盒Q>?躱悵ゥ@ホ=(一゙y「"|gケvノ=゙Kルト!、ンm_'ワBmシQカsnョRdヘ 鎹.2」Y臍Isv7ヘヨョU@m:オ縟|儘ポ q巓=,^コタ ヘ諡エエ煦ト赱jムs7痊トU]; 袁フィ゚[藉B3ヌ"bJ信、i7.^ョh)uat紹JSノf4Ma+<a慈閣F:・;3J痰鄰:ソ.ァN4」Nj゙,ワ]:ツマレc/RTヘテ0Xレtハ] コ5tRJo@モ゙斂゙iW甼qB浜H輳urリ渕N5MA9**xs$沐ャ#袈 シ娥8h D-ネョ"<-ヒ科}W]Us襠 廴aヒ`Lz゙オCク-…O7*瀟網5-ム-」゙(カQョrx=L5uチ4*F篇オJゥムU ニユ; qBリPオ.LFヨ況-F゙Bケ昵1Ks^レoモmシ穃8ッ -カテメtp褊4/オg$ケ藜入椚馴w楹ヒ ル?襾A膨Rノbァ豼WノヨI 3渟9g|ミチ牟寝:ー営衍鋸。&・サYロ概ワm謀C~/:Уロニe午IsjiW sィ"「)ア[ッ、SチクS隘Iカ フgk$3緑・L0=+ォ厰V=6溷UマVDルエ3テ|チ 、ン」0堯vエE。ヤR9ノテW =uoソQ卉}X ヲヤ'I椚t。雜アET嘔Kタモ諾[リヒV"語可ツ?Wcムヒミ傴.u uエt=S9F「賜4゚S橲#ィ請.Mフネ(tjBdツ]]拡ェ.、トcッ|ホ@ネkIZロ'嗣ァ<イ吏#!=3Ly」ニ*Xワ!ネG()Qv} "C]逆Zンホ者醇覯o衰ネヌ「豆eエ[ヒャ溲eB7-kォsテ2K┤ツワ`Hアヨk鰆アfbワ疑}y江鍮ネゥ2tSOァリdア>T5n3ヘ柾w矚ワ誂ョr/ZミCdiネR*TBチp3・'ナア図゚c汪ナシvヌ^d婚dハeテ舫カx%厩\op.T23{ロモ「・ミ-FmXミ5Q゙メヌd=uモpル゚"ヲ垢uヒ品*ソォエRサ路cチ@Sュ)ケ#9X゙N{チ蕁tY娯Eqs#ハモ登ラwdMD「ャPfIePoヒ1 ヤス/猖6サ,キイブ ンJCス }H舘fコ」v|ミ,(>ヤr再ソ=ゥ鋤麝}ヌRS]Bメヒa&セソニyY┸ホ+S~jツ猶ネ: サ「逶.ォt<罎ゥ!トg・]サリuvタ蒡溜JM>E*。ケbナ%元リS{v ゥヌhリTqh宰;ユソ!'c]ツンh(越ヤハE*ZハFR5モFt皎リ1NツD#+$jqウ ヒ緜p4モFTz~追ノ幄協jョモィ(桜冰CL<ラ喫メナ#チワィ[J.。ヨ鎬゙ァLeロhケ_ノ慍V> TVIィ湎トエFマンaレレャ2wwィィ&Tトトf洞ソ#n#「-Ng'*dxs{羮系ヴモwン H`[" $蓐;QDユ@箔+レシワuL]ロ|Qマ1レセzフュク防.國i憲 `ケdコ2スネゥVタ m_]碯ワ5 ミヘサNヘq軍ユ・e(/ッコ)@{ヲィィィ」啼ゥ 」R;8腋`パ崇2,_リIヨ+eE-エ9 #ロDt教ッG鄭ヒ~ヲ*゙樫]FKXッ芸ヘ9ニッ;PNム。J家OュァャテьzツI喝ク估扱NfwZ暾&,橿vワv ュnキヒニ)。」,烈^Gキ~額S韆Wuェ*勇纜 オタx返ナヌДE2"sdカ・MFbョFケ)!L&,セ「7メえウh ォハ{@W\偬テD*{コ}%@娠X3`銷cOdsg&栂ラヲ/ホ}荀Lw^{クオエ拐ニ5ニハ┸エ酋}。・やウs゙季メu瞻uhOdアuヤヤワtho穐qS;テ `h震NGr 、f&ZxカAケツ帝=μ禧シオ悛,ソロZNャ(・サ2ワ篤E-iフメp2F!ェ?2曉&.7盒ィZq燵_ルネ操;3モ0uP洗璞勗}粡ァ赫XkKキ8ゥ)O,H^$ ナ/+%ロ錺愀HD+フa%ワュ}v康ャイホ邇ハ7疂+ォJオヤ]ャcI」jK゙Eキ」ヒ$Hg湊 `セ^edィョ圧ウ鷦p-テQョy殲4(ニn「j5ッハe-ユE^8ク冪ノ$析ニタツEЭ「鱸ミパwニX)ム噺@イ9ィ_カl・ヌc'OB諳ホ、r47 :魃5ワー$qK壻i担 hv$ホ「"コrモ ヨEイ薯テxyヘ8{ーg卜K似v゙メ沾堰r燒ゴqモSェp薄セ東箱4ツBDRクラc 9ョ-」0""エ5テォs・I籍{羲K既 n0Mgン「ン$m~タI疾シユ~9シ;<委ワmスヤeワ =ル>Xソ|0vT莽モホwiレ>ソ5qサ褊#」」 |x眩j|`Gラ環{リ彌Oノ諜オ"ハP ヒ* 2%D瑟&仕DQ5p趙,ススヌ 36遮XL{"Dシ~<ヌヘ:\コ祷R) [1E(kニ{Qy船「サネゥqコrリ(ルカ@n役、^A猶ナ.T^$ツnao|:ヤrP'シnホ4ワ八:q。7u鰤'"4ーdi~{溥2!{j7キセ!3lnヘ/x*qFサニP、アJ熹4iXjJyl、nハ、O・n馭ンカ来片bマvI8マxホzィskホ;リ献[ョ=チ\j,゙梟゚a4リ+廱F'S)*Pha;Fン"(7ルUフ 掀87ユュtマフュ*カソ2ホヤイ カニl0ゥァサ;醤妄xyフ箟ル26ヒセ搴ク゚bv湲ェBa澁$O|笈Pセム[e\b0ュdリ#&オ穉ム=゙ヤ珀ミA 8I X@..=ヌ租漲. .7Jlaホナ^ 桶マ '戀6A"キ=ユNw0・t{|mエkQ+ F」チトPwAbー\ィ]農コネ「ヌCr゚キ.ミH8クi。 {ァイnケ?:kPvS:MSヘ耶ァ邊「キ19Qカkzヌ゚f」_JA|{甑ク 3カJ[p7Lク%トホlツンニ倨スス%"巓jc; 夭mgニ!KハO"q{6)r5"ュ6q*芽撓#v<誦zョd/U。\肥タ褓WKヨ媼リ'?紫チ爐キ;e「v3ヌ:)'カンw J'涕晏<チ!サ曉フ聳ウ{Z゚Oト\葦蜀Hキ槌レスニ=eヌDwリtレムbトフ-Sォユイ7:キVコB4xN9セBシラ7Rr:fD)S「OUvラセke{!橄ワ糺マ-妹7]7ゾ!ト→萸5ン1ヤ ム枚ヲル憫u:zコS橈タテッ1Q奬・0ソ}貯拶&衙VKマm#:pチケォモ`締ナ杉/フィ」 \=TJケr6 セU&トVヲ。レ梏/゚ミj](u6ソカ.162゚gリc1ィ +ヤ焚EuゥTxモヤョ!セルロハオレBd チM\Sfノ イ栃%宮RワGS\ホアW阜ェ悃RcN>)|・4:蜈_IヌN膿,)`ャo゚セx#pJ价ヤYfXァ「ラlOzhk]ネU8ルnチ叟B]O1.BFハYNAヨ 伊 ャ&*リCフゥユ妖f3瑾珠?PlA`d」TnL斃Cス=エ&I宜Kレ鞠欽ホ)@mZ>aフ」/抂躙'w、カォッZマ<サT%fァ「 ョ>ヘミ:N坐糅=ミル'カト:歪G v゙暢[Ge='・メカLナ顋(N<゚潔tUル{28コ9: トニァー;Y L% E1sEЖOノソラu:ョタph Q6~焜Oh0ly1[P M晰弑Nールレヘ"喞 7A iU(チ4C懺ゥZまMエfrbRn看]モ^ホユUチソッ*モ8ウ竒ォュ Y<カ膝Am~F+UK`oンワueX)ヨ訛yンP@ャ,匯0{RR} f, &,Qリ_ZナS偈aaL!>ク榑クロカыB「LZE i圀「憙 )P。w涙Lト-)e浚BJuEgX ムォS-ta=ym(b7,、e,掾ユナゥ$鈴 黔;V?杲胎晩サーイ・ッ弭$コ&タ漆#R匠擲 ソy キCユ3゙TR1pU%Gテツ倥+ミ`ソ%D84/$xRヤ瑳フ訓SZョG4%M~ッ黌\ト 」彖 *膏アCCヒァ?リソクt街bfゥゥゥ瓣Z卻*{UE1稻.、チ。LケFシp゙]ム蓮 輻籾V升Oヨ2メ^#円」,トzウマ7。」Fk f イ^ナ`「抄ソ ルニ2;ヲ+ラミdキ暄s屆Vロナ墮ョk現n鼕u=)|.4Dマ] 含焼{鳧ヘ亡XEトV-ョae゙6梼「>,g疊鴈JPシt,デ+オレマpB+ェ1疋テ5・セ_O」懐Q@|ZIレZメ塁ヤz獰{Ajャヌ」ヤ2ヌ9李鱗67 ωN鴒cマ鋏阮(z]フヘタ'朏クリ}YiS9yツ&Ak LフSOシoミC叉iIェLm`Zウm碓<-Nウ モsC4]゚竕8ゥニZァ6/=Kツ^トヌセ;fl<>藍斌゙<縟△ノイ=瀬!ィキユ~ヘンKb皸臺鵄ャi4ケ 6 XロV速5滞ムユョヲ耜nテ莱cクヌ` \dv7Bヘ'F*rム8衄ヲ-ャ*'eア5'^Q)」噂<シ;xPDシw纜敬ユGナッSトュbフ染招シmy&(h跨%"噎ツ}ソ,塩転促。イ憮qQ 6ユ悠`トカ)KlハヲヌョFエ7rミv}9捌l1ケcフヲ5"セL、ク[ル0ィLソrBテヤ葺Jc!\}柑l愿キ,|j5ヌ6'・zコ」';セb|h'ワ%]゙Sォ}mX@6ッ麈(6,チ苙ヘnzツGrレ、マ寵 白リナ~颯k jv※rミlWエ ケタテ-マ6チzn ーM鮪}オタヤ95ヌ兢/i゙.ロ蚌均…照0ヲuモリ G5晨ヲ}Å)准ユ゙Pゥ」=サ)n゙9@総カャャ8|ッシ7[W埋フ7<uE舊aiw ・「F」3モ@喋」@vXb 慝K゙ヲ'「ッP晁=「、観q窩ツ唹#WTqV鴿"ロョ|挺ァヒMレX序j゙C}マホヲ、ヌ|ュヌオcG2メ2ナ|ヌリ8ロ ァ93ヲオ5r絶,エテZ8Zモ撕LO5UDCワrュ6|$・[Jヘ殖}娃Vヘキチ+ネmハkM/wsヌ2zミ瑟Hス奢x|ゥQミ mャ$ロ牴;dスl_ /\ヨメapマfハネオ'+ エゥ3: サk!ムN.ス擬┴:「0ラ^ZtQ}軆`肚Nリ孛勾蔆l(ァ%Y@・ X^)Wュ-;5フ2梺フ{審ョネエュl;%ースhib9_.$ヤ`アー 岨v%2ェN9}敞ヨwイレオタzr4メL筝抻涙Xーリ゚ゥ「Yラxaソウ81Ko}忿缺ル/癇9 wCqt;ロ$「lゥャィフレ\。アチ+ 2ン@浤.鏨rEゾフ昴 Sヲ・ヒ<許秕ソ荳tzkナツル閊/5モr、ウロ'メ\=sトマセW干2 fKイ}%nシソ/p絮aZUシァィCロ4ケvR-(8B$/ロ肚謌9吭N藝」ハュ}ス7&Jメ毅|YJ"罰_ィ#宋R_(6K'唆]:セwMt+ヌV談#」゚f*尓ケЬVネjkcUкl5ヌ@ーホル蟇Iムj、 q-「mwUGjeWヘ4Kム窄S& y-(6ェヨ 8<胴Cu氣gチ>x|ハョi鰉-%ソ儉Bムニ貝Gネーxヨ詐Tムム垈Qオm@ンュ 染4チンhmカ務ュ邦ス蟄\エ條逕テUレラj贏鰤=6「漑キ]ノロP:ャ'ヘ闕WCヨニjチウ笛O>ォ^mィaィ莉曾らkh%s゚\ニ0U゚+!オH似#ゥ\&ゥミ'5AeセJsカ.jmゥツzsoo旡カ?クユ(;vx.リ?/cナ4#AL A」_甕0oL娩カサ6#゚:゙'イU+葭-R,ウ「,Bク積゙IJ#=9洳。(ミャ悳KISセ4<剃メM恵 3cァf゚'6z\チー歌キ綺コ'クc_ー^=ノ、レpセキャコJ$(ユイ∩9オ_A、ィm)WbRヘ蘂*/10Gラ9Mメtー#<>。淙セモ道]コネL!N!ュム餞セィタ永Vxc_uマ尤sトPッ1e ナS箍/甼`゚t"鼡%-:[,=クkFソラキ$E哲@ュ脂紂瑤`弦EンHク吐ザzb{&兪墺□zァオ*ぎ朖 ゙飄>,$ロ蟄鈿チL朕Yヒワ」トQ脣ノDキ焦丹VハxOVWヲ$モtセヤ榑![ヒ球ワウlリ=タムヲツ?ネ7ワ L万 ニ (覯Eイ想{%キ_把ゥメ5」h擘<5r nYホ1.1?3ァムオミ %'i31マツ*6\」[ソホユ0|甦タz愚rEK#kホーヌテキクxJ3(b- 5Jリヒ"ョ6'.yjlLタq溥'ヤroャ睥:Иサ道p瓷察Rウララ禝、ai-m+H涛ル彦Jx覗5 レEεァヤF^!ョN`Mュ<アヘv゚ス{ケ@s[・費3bフユユv-xラ-ォ.ェ1懐=杼g=ウテモヴルJメツ66J2rB゙щiGコ・>P|5CァHTKrナ穏ヌu% %' uシY8ヌxq029*A磔エ献/D゙ス|^[( ケS゚ V}ォ#7L(皺.、B エVナl萇oモc`tミ%{逅7ァ犲2麑*}耘朱`9ッュChッヘMヤ「ラ #0aヘツホ-イ襦有梛雄[ャ]ヘ 迂1「習ヤ_ッワミ qt"J-Oシ D5ト]ス攴ー;寓?DIキ蓍林ッ檮B昿斃ィV7喘キモ簗眤[l篷,雪ソ,」bγス-丸エ オ攫f屍(?ッc ラD6ナqc+サ・ョ葮RoXセホョ/タウャ3驩ナ蹼.p澡Tuェ瓱ラ2ン フ・陵&iモv瑳・1ヘN5OッハソAシyJ鷄背ム5爪メs`]3$G,ナ?浹:p゙癖^ク-^Lモ ゥ<カッbn\チ)タ煕 Fォィ[/サヘV?ャGs纎オ叶゙xャヘPユCル7Cル抹ケコ{ミヨFケラ*レ0pル#D4ロュ[厰ラRn%*跛*ヨ4~WケH臑e篝b聽 , D畳KΨィ竜Eヒソノママィッラ。B>4コ渮w'「^テ魃6v@マイ%「エ敝f8マ ゙シai噐セ7c4[リネ:ヲ;y5鞏イェ昏Q狛ラ[メ`Lu琺リ "コωヘ黔ォムf~9閊廾イJ・:缸岨rテy4Chd b`ニ゙ Qヺュイsopャ)シ]pi]}Y0td5Q$k窘j>コN吼侏エレンュ6ニテカカナzツ塒}^ィ姑YルG|メラIュ ャ/亭bMネリ櫺ホ轎[;ュAvo2D-ツ8キl<+オ9チ唆DW喇ゲdゥjVQ|ポFルャ =ヨロネヤフ.cェAlsxム)mヲト h.ミワ哥転1・k_絅アノi丈捜_ヲ咀NchvエUァQ{WI匪?BOiウ輛~ルDB=Pモ(簑'=oヲミチワ邦,ホコ2ラセ黽7#opレモ゚3!ヒlクンfメR銓。s[椹@ッHキ8 `媽キuソ\{゚mU!カ~gョNA gVR,(サ碁ツ ル`茂フ4,ネャ<゙↓X9Irn邂+ニロ4ョコDpP1v喙Hpン鎖箘>3ケ羸餝瞶C!!Lリス緑oPXサヤXヌ3'佞E溲チ・硼掏シツW盗UスF,Iハ]( 、殳箴耘^zオOΑ\[コRh,悠A゚eOF/ s5loPア」曵セ"E*クs+狠エv;ル'タQフ#"ツセ8枇・(jソョーC@ホ禽ルO・ Yーク營Eカ蕋ヨ,W」キ纉"ヨテ`]ヘ榧BU0"゙トニ@Gイ]藤1イ槽ウ感Fアx願g豚ノ眷X イシ紂:レEセ@。襭g\fs7Aス冴`ツワフf^T?"欺G虔到4&ャ枉徑nラ!テ骰'マ}o儡4w"ネATn卦9]Q綺Ftf鏡Z淡繦ナマ幡マモSj~ウケ邑wb1 猥g]ト斯 ゚ソ2チd/慚チ@^ Z鮨,タヒ(「2z罩礑 鑓[ウ繖 .エ玩Mェe゚!キ農U3ン リ鴻`Tアイ趺タJエDユd姆H如p6ナI棗クト PホN莚{uカe幾 _trハ<@シ;エ.ヲテムカb'>谿、シ`セ1 F.ygモノk鵡゚hQ砦gVw#夬N<_U}ホ)ェ\oムマeッ ~ソXGヨッ」7]ヘ1ケ虍Cシ@那リ xjv林. ル斌゚/セ>aム=滋雪 }Wソネxレ僚N <)pD袋;*t~垤D1ユa゚l0DH徘啖% @ーLL曦?レLJ,E,u徽$6?.コ,5~X=・ル゚ZヴBk~ソ荵向ュ5V+゚k5: ?`ル鈎5~゚iL。ネ棣ゥ{ュ」M,Ajw=サ ヌ2h2チ5ツ地&Qニ] fw罨&エマ^5゚5s<&沚pルオ$. ォN繧ZPヌ:゙ly2 C?シテ褶E01メオ 燒_|ッ・@濯%|ヲvIメ・ラヤJIケリz,G,ル> 芥~[|f`wコi".垈」ヘサオyワd=キムム徒;:Vェ錏ナCォmuuo袍ツN+笏メ・{)゚1ェ3旻>ム3?イ料* ッム)砌$bワ[桾ォ;ユ窯-VいスTハEnシ)+8鴣{U8K。3h)"#K3:fケeニタ&払/ァコト撞Oヌユ疉Rk&jネS&ワ=譟d7釟、5ヘE 貂t{5ノ"経X&スQ痊挙ヘ,訂悗7旋wszャヘヒ|タSオナ熟Bc)Aキ、#崙^[o 碑[&戒Z楠AF]Vo *eム|、ネ♀ョQ木ヨTシEリナL灰ミイ??雎wh壓鈑BャナNエ原f=`テォjヲ返>!徙P5M゙[ヤソyヲyチwレヒ2E8 VW(z=L椈睚g鮭xオノ嘴レsZ,、瓶Rチ 甜ナh7%f゙ュs殲ツ潮(ャ ツナM`ヤhヌh!`< ?1澣爽セ斟ユ=YヨFュ3鑰コw庵,* y2タ.6現/イ而 逋櫨オ蚫cオs/ヤ戍カr>]竪ワ3濮ヒw&[xuケG;.KF「Aロ}コィ+>]] 吸Xミタ y^チメ'zセ:t+E V絛ェaZ<マD/*宗99ァオg1レョマトa'灌ミヲムIiマl.3頑Uキ6捌 NKナSェ9ャehヤhミ錆8盒公ユ袮v OS嬋Xsヘ`bZ ョキユKbOワヘ蹌チル化^Ng#童テノ4`ニゥロチ▽ォ&X励(plXU@o4wツ皖;?チ蘇{ Pゥ6ミR トUーゥヲ=,4gJム゚コcAHハ杼鍍。qヌ:ハレ`トバ*オ9、[、マル>ナR蹇ケT麁hネ[゚y^:Qス酵@H京88+V諤サ%aO!┛%*貲寥鎬 イ@ヲ6 rレ敕-7['="ヘM6!ゾッーL9hシ!E煥 「ヲB琺ノォ挾褞シ]xU倏肭ア。"ヌ誰 纜タ&Lハャ#INH買zン邂ヤB^宅Lムテ訐sjX;ニ酵エ ク釉繭テ殤a ェ。NチgD既v"オ゚ハ]7+シヲtWN蚣WスQヘテシYrカモノノIB\ヨ。Mpl7zWク售9ヨ(q渉貧7Xヒ cコrhrfソウ!R)ラ幢詔` ツ1#[ow)DN>Yrセ。7/サc~サ]Бj三ウム:pLム假ロ*テNア抔PヨンE模ィ橇ケ援ルN飆ラK_/}_Oエクレ[Smミ籐ィサョ予G卑6ミ5SAフ?(@ウGf゚W+レ撼{ャl9R肪メj料4堊)8w+゚ニ)樶 ンztリ、)#ユ:+_=キムムeカ ソ39*Cュ・ィ僭\エtf'T」ルー2J[ィMBルn拭奇ソ・ノp!蚋・}loKvcァIオ蹟7 ソ9ュ~Cノ鞄鏑 アト炙(ユ2,=、j。gGOリZワMロ倆nエトl8ッ0.ロ呼チ諸^mィ/惴D琵、<ン"%E 鴣ャq'ワハ輪oタコrTX醪F%、2t0/8b\ミ ヨテ^藐ハ ニq桿虍ニ%堀卮砺瘍ィ豎キvキヲaォfPc ~AVR5ァヨ{【RKIY克マ+゚阪чUロ2怙gO胴&マセ9チ4┏ヨl"碩ロZ牴>o精0宵ツワヲ4フヘMォ露ト?rTル・レ¬Xチc痛ーュWTィ$DリW択 ワマ_オユアz?側ヌ醵jUTア OIカユコp 、疝ヒeムフf。ャ?x遐 オIMタ存ySヨヌ%91ワ1ヘ嶺BMp < クン刺**フ,Aワ蝮vネッC棕弓$蟀dfルサオ壮Xp;モN腋モ!k^|ヘRハケ\矛ヘH-ウミaリアィ|sq~\ヤ4$[晄ヤ@蝴)QZZy閭ト `ハKト幔匚窟ン・ヲーゥ;タB瘡p仕mェ>|、1k剱bNpオ蠖ζ゙ァ61xFCq拶ケ蟯牧ユ稙P&e隶貎囂ル5xGタ;ク?ヘ6H虍E,イs衰ェHYH義{Z靦ー/J\ラョ\ネ(.蛉級蜿JD32^ュ3キ廨o4Hp!wメレニ*7リムgA}劔PZL(S6)エ^税ト沫テwシ!ネm9,ロ視,uカ0dkテQ }゚ッ[N芍EGセキヤUr杖・陀ニュハユ< ィP扞Z|0V,ヤォユ 躾` y;ッ*%=B埔'\%&リ翁eョモ」(p2ネR駸輩・,Aノ片1k sァqR"F. Vォhbl7サ、軅涕qhイ4PAIアロ47スG鴆A頒#ア ^伸yネハtt箴偉ユ%エン「ェN蹼スキモh累i!紫カujsソm%wカ$=|ヌe゚ル蕋x。lレネーEh「マトz|。ルSソR。 ィリQンソ7駝・ U運?LTYカc( o焦bmネ オEシ撩フ横m・椚5ヤ[タイテ.イMRュェCOキB]QネネモZ晩んツ'?湟馬{ヘ=a報 ツ>U7mァ}nシ{貰阡:フヘ}ンシぁpW;、幽貍洵I7適ォ「ナヲヘM2゚マ\ ))コキlJ\福Xレサm赦蹉j"ッbセX+nq8I f<翫6\ lIネア゙齪馬6メオ」 ゚oaY功=W′鍜W←ヘ#[」w挫yb *'蔕vB8:'9w洋T^ョXク2ナ9Eッvヤ9カュ~f+-j@ゥ PネSイ獵(モァoキコ_?シハフマ sxmi|ムァZ1ョ9ヲ _霜冖モ渇マく!Сt蹤VNAC)#{弭ァCCdtfナWJ5イ滅rリニre0n俗ーコッ'勣ノェZmチ敕ヘワi塋育/ミ87メJxZ俎Uホ随ケcッ゚切tィ妣cWヲWQ蘢@リ掠冱LvOュ0p0:幾嫁4鞫ユワMO~蟄=V縟o籟覧察=キ退莉晞サ凉Zラヌ!ァDF^ W#Nっ,、科KキNウロ'#ォ v.゙b4覗ウ塁mウ7Зセメqヨ xxッ酩0ウ、e佯]槐,゚{凄' 6-CォKhOXヌ迪u.YXFxyニテヌッCOコ8sR"ヤd |9ゆ゙ウ慚勢炸哺iマィヤ/ュZ27Nsフ;ニ・瞽 ォ/トオサ2$ィ゙aJタE怏杰i膸kノチ睨゙M儒rワk ムK逞 醢MチQノ レM.g冗+A Iシ進a荘#愡_L{lD(Bナbネ{K刃nf`頌ル@ィァ渊佑p彁}x「HトPフ2"#メЫHケ$ゥ躓ロエ恁 s唄キュZEナカヨャレ'腿a2"=ク2」僞q遡フb レkメ。毫解'゚3aロニユ「THb「cmウナ浹ケユ*0ノ:[ーュQナ棡4ahLX黯6テワ#壻ハ{ワ:ュエY%S^ナェ宝 ノF 「=シ(モ41,クニゥL閭遷絳=r亶y,ス:ッ獻aュ(5讌キrl+E-円ヌ~+4^シU」ア[/I3ソヒ マ1ハ;+ェソ>ーMiノH$密チ!麈ζチイ諠瀞Qgァ楠kケ~!/曜コ5 `T)蒄ネ*フモXッ* ヤシェU錙賦KtアQキBjQチ、+Dァy主Mlg瞞 冊4モoD3コ"0 *Nセユ2-瀚-ツレェナr#,マヘ ・ェCQof?ラカG・NヲEyムu?ェ觝 Dj"ユOォRルX タ・ヌホWエ}モツノぢu;奉$gタクn>v2犲Z&ヘ2ン5ェ5:9=4トmpAイ#帆ZゥィLタ1ア゙鋲ノ唳by[=セコpmzhzZtd菫lテ坎溷Z!w3菠DFヲ羯?イ9レコI] ,?[u= vセ鸛C'フ}嗄cュfア&t?S濮KK燎rT*}モモhニサ鯲ムタDk-#%1Y{t膤味ァ>榲ケ<ァS l曉I眸i セシo燼fン階ю)腹 暃アR^蒟L{水ホソカ-ム養ヤ。箭L-引ヒヒbラ銜ヘア摺オイゥ_チvョェ6ハネbO1Lミ\!碓CZ、ュヤEBRル Oゥ キチタ@。"bヒー モuYレメ3晉・@4 aャヨ゙p3 lVッMrnU&Pモ。」敘ェtホイ@_ー トリbz`g?瞳Dチ盂7}゚/o1゙ロT 綵KB齔<「 暁 レ8:涼c(Mヤ(ヨHY4゚| ζナ笶>モンe桜7CvクチFo、tC=~Wk/「G;@yuヤコJ晏L HU8イ /オャ矣 ェ "ル゚ー$ヘハ>:@y鯉t{%U*マ^メuエfヘ奴[ZョZ笄m| }<竚ヵ|"イ7澂盤蓉Vq繃顳=イdB、、<蜩ヲ~散R3ュ」V舅@#ノ鏖O褫hFュ賈ト鷓?クqソ蟠Kk6滯狙ゥ哀績キ從壹:擒マ丹 F_Rトヨa$JM<ア/-*゚P_u茹/u'HU"lm慎ーノ・ツsiイ|囹%~ihニヒR4N趣-桁J5フヒゥpF投mカO蹠フ・栴]エq琉 Jユ窯アt3Tオoウ.纔ナQヤ渣兵dh 僥FM゙ネメPマW9僊。ッytm/女T(_?ケ 受Eb+モ ーモ'瀞ラO(- ゙ケ ウテ~8リシyqモーn押'lケホ匕MP'ョSェOFX≪;具モ9}2Vォkコ胼継wナチmpg"$煤(r」=C僊Xャホ」f フjSGY質V」朞ロMH蓿-0キvレ{!I・)Cホ )V鸞泳na'ツ2レ発ZワホE 曹ンャ〒u{ N・h)利ゥリV$ ミ\ "儁0<ァ9躋KN*%a~L\リ勿オ。ツvp a逸狗U憤釜J- 0ムqC?ヘ>7:kuキ「]Tツ3゙IァU。ホ73ウジ・Gソユシ區慓半ワニ vQ8ン*レq:S<゚ャソ+ァ逝Rz 囁ヲ,[3撃貴.弛GミIラ[崩トヘ5B8T舒ンuミッコッ^ォ%oLLK 獎二Aカfヒムャ,86'ソレ讌kv`"kXoカタ窓Dキ<ノlキk冰。~贇:; :+セ~。オ(ンルクvエ7ワ碾堤險ーケフUメメz[朦ン#Ow\圜 梶*。r来?クVサロ4Mヌ?^ 土漲塩 z椎ホA 抹mlR7Xy]&、窈r脇ンR>ソキ+x&完糟]サ8pvュウッサェ*vモテ4/xc鈎)ヌマィUUヲ+ケホ 、旡TW|ァΒZv 枌儲lソミ濆箴珸Lンqッ l單ヨ疎譏`5テゥBw= モヨs洸HワW/zサ1%ネ癢[eム8邸3ツ )Bユv、リフ+eンeル.?fニゥ\[ユヒt%]ヤ&悃o2;CeP畳褄ユク>uォ叡+ユュノNиワm霆O゚昃L・モ3ィ=ツ恵Nノ dLy、o粹m '殴wB 、丞哮1メ@収sムM*#3!ソYリ(?モヘ尤ヘ`|mP6萇Mオワ`ワミ祖vz P?m+姚衄;S%ロqチ」U唇ヨY)fキJヌ kj:リQ」氷k<+苣顴ウdU6cャ蓮6k8マDj0萱ュp杷Pn爿ムYッソナ4?,Dウ簷ytPマ^-9コケgォ*iNォ篏&粥1`}@趨8Pp Nム洵ヘE勲%オqkシr)豫oヒ レ欖ムカラ 6Sサ"LPオ[湮ニM]7ョaサJル+。。ゥ>3z ュcDiリ2蕭カQu]ナ碎Nァ<瀧彈フcハ莠}フBゥ梼エツx&ezRチN4笏l痾ノ.ス徐6t北Su坡.4o:%イセンq皹座knヘ螽アッ$」ォ=遒9eBタマdbソC噪i」`~調=芬lJFUムdォツケmxO ウ\B盾(mx'Bェモゥメ~ン#7愬ンCッ,ソ|BEマケ\q9"qM@戍a_ウメoo゙悉椅ソZ3誕Rイ_メ,K 、弄1 Yレ,_ニ~!mbフソt0Cー圃~气Fキpロ4キx茎b,シ獰キ鐔辜 uム鱧ケ契Ew5wnI;5Bメ%刋セ・黽抂4ン屹vメーE"3W o %-レ3 }ョエヒ朋ニレ$jqR綜?ユ齋0アタ7H$'旋クD[ヤDlaJuヨ1IMI*!3p_救G訊檻萬vニq溥Z6ナSア゚ェbh?Xェ;yI0ム<劵、スe;4嚇止4マ粘Lィ>簟u4+ぽハヨテ。、mッ驛萋'[}t〔r:柮ェ哦。4フE垂 鐶d ゥ易リ&ヲupV]フ-o馥=`uカIリ袋D]EH=l3<ッ笘)FュNL8雅9コレ7E ル1qワ5!Mマ1 杼bア7寛マ<領フ 悴゚tdア笙3┼・_ア゚ワVb;j3ミKb #ヌヨンWーKmマ\ソrリDBK|キタLS`X|#皀@゚ZYー{sA!TYUセ广(輔.[B カコ[Mカム岼ロ氣XマтGgV冨韋,軻亳:゙ァ qュンタmカ?=v3+ワル~0G#・荵Mサレ吾y?リラ儀"@エy6BモHェウ{u モM溢9ロ誕モ゙4ヲ"EBィ&ーー軣rサJ゚ヨDイKア[g0)r$g$゙$Xレタウカ-Q9~ ア チ?!ホ4 ヘ「U ル%3・ナスUッオハ3トヤ恫Y塹=.Sニ'5ン.J> ホ`メ[ュXケ{オ7顔 {保mD約V4シ藺q鐇<ホl鑛葡孫C7ル]甲7シH+iッヘc/ュT譬胱ト埜3鵞V倚oiサィ 15ャ|顱NサニUハアwテrUq5ム;J。V!.ロ.ォx烹ヨmgY&*櫪-'ヒEJエ BチN翰7C"モハ鳬RTゥ&ヘ爲_絏娟フ0Ec* ルヒ]|4钁/C#麈ェスVヤモ%.棒ヨ<ザツM籵.ムX.ナ5oル'|}/uク@9モx犧d[E杓Vンツ榁魏VクュL4;P'ゥxェg伺pび゚ゃ/ヤ(括タ恙ワi技Pニ含 ヒルyZ \ 蓆1ン鉱?AXuz:_超衍鑵閥ヨ;Vf穗sjサ タ <、ラ!゙=chMュキ蔡4r、ヒTクa`^」^瀏~ク^ク_ッムY2=ムTdC!xVOィ%処コ,*}:キヘj L 感l昼@0@トト?ヲカ漑c拔ヌテナu)a!漢|ヨ盍`リ-ヵァvZダA-桙,カ6ラ` 4Jqiゥ&ス乂ソ=ィ誌 g稗gO°糘6 YKミワ22p Qマ撓[*ェ 巨ヤL匹tシ%;ウM4<サI ヒカ ッ゚&ヒrJB脾キィカ狩s們xIy6*ゥツヲム3絮焔ワ@u3エ_~=ホ ヌnロIe$Bグkク 冱hサフネ,ホモ$TBインd`陣ヤ節イV“ソXcリEs拓凭ヘエkウ垤T(「jホ!_~oエ鰒i撲]xルL親^ヲE/跌柧ヘZハマスP。4huケ3磊&フ@蜆*ーメホIs;/sク 41`rMーォタケ鎹嫁ロユァ{葢マサ7キdsQ。ー{i5)ロ 4マゥ/迅$7杉」ラ&こAィ囹aンX}常}、ツオTkネd標テ堅キ2ク{C(ソA_陬Juラ|,テXウ籍 iAO茸ヤUム, *iPテ印符Pフ繍X\ヘoad莞ラe,けUリ[yセ6 稔lJマハラ33(/T1ヤヨ颱ァン2迅gヤ#シケトウ5ヨセ1、uvニ劉賣鬪7鋒nミイu(Vqoフn|zル±#輒jB&ハイNF3O 狆肩ル~0ョUモカ恃 メZヨm膸&'縦ョュA=Xャモチ盃◎゚マ+ー'D'lI\3グコ搭蝶ノエtイyト;G謁験「x鵡メ {ノ鬨lZ^Uホdメv#Rサルヨタ\シ4ジe`.貨E}>kキ霄糀0v曰lォ#DリU[+kj@']悽恟Fjャ占jhァコB黒ラゥエCluレハ4r苑:l舗n'[扈Y典フ掌搬J-錆):FフナWC9cP檄:W|斜dCォォル xGCEj h・v・e援ョ4o/fェ1ツpルョユ'U゚<63ケLiU載迴pゥz櫪况ツ粥Cュ`ハ^ヌホ愚ュ >%ュ▼ナ9!rUェR7ロ/V|ォ_TンBxツ"&馗 u-ロノィアGコGx#@。ル54ャ5ハニ 倪Idヌ゚[Yエ&#掀ゥ ナmUコツV アー)煙顧<=リ「・、ワnu-l[x-ホ|-コセyャナトシ]pュン>Ov!゙%]>シ漏-クQラョ%5Aテyy*幟サ"a;Iァ湧iUけ荵、x紮Yエ ネ緋\ハハャヲ鎰ツォ(tユト{リ彌)ミ」」e'スJ-レノツ」ヒァチ鵯クuー来7哲コiマ椛oXセ奉O*Ku薗& ヌ>HLマ-=崖 P イ"p9。慂ホハ桙、イpヘウE4(c%玩1圈.;蕭P2O:ロ逧ソ@mqYUャ>AV゚ンE人罠9 るB紮w&y愾躾d2"BヲDツdX8Vヤ$レヒ」ネZyセヒZq@橈ム8ィg瓶エo<「5Azt椴斗ワ=Kネヘ)アテス・濤'0<癪YGk濾モルRe%ョ驗囓ロチ)イ髭エタユーu獗庖MウM_%l<俾!モホ+ァヨソハノgqィ8# 攴キ莨:).。+ZY2O-ス:鳶|5晶ヨ$Maモ妛.;9Hッ娯{kKO"c・s冠Hセケ7シモLo8エ極ccラLgネミF y#゚Dモ)7ユtュ竍矼vエpナ/オソZhB也\ミ岑ツ=チ1ヤ?酋ヨ0/_!ツHォソェァコ%a轄心/ョwェE双m'暎提χ 瘟jHRm着槊!0M9アエX瘧ハ阮朞$ ラ篆^nU0スワeuM ハpG証JIQxR~囓 キfノtオャ+ェオ iHD」用:C朋オ蹂!pt} DテOtu4L0q゚ i9ナセ蔆z?2ケッオ j@Dヨマ`a"ェモ-iチ@ォ5Vヘ最リ、M7>1~KYレ-2])゚セ*b!ヲJoSョ4ナ獗オggャ}nウカエ徃齎袮.UF冪ニbク駢[スF @Ofy鶫u6トノdNN賦。ュ剄ッ ヨ」nVモ$p豎,Paaツ-實ラEノBス酷重7躅(/ト朞w+pケ4'(舎・遠トfソ^悔レD: (\エ゚ヘ> +Zス瘟?ルy bRRエア"ヌ>ク歛 エR疵ユ・屡m祷Z,JKユトBエP:イMサ#8F(」fミGBQナ欝W鵬ャUF_カ゚URスス博RAPa9ヌRチニk^cZォ9,趺2ヌ助カdサHm<~@kォワP臀カHフォI!テ7ォt[ユ、a聿s_=ノX#ユPRdツg=#嬉覈レョ/ミdヤ ト,他L斟 uロオ素ムA c オ<フソxァュナク5≫ラkMオミ"g>gF牛3IPvLxqエ|贐∩孵FAO{トワ`釧゙TNカルs2閲6[ツgッv幢!ク繞.ハoミ ンA7aカ,嬬*hスヌホ6椨」O8{ヘ螟bタ([4GW竦。匍h*4イワ8g*?X`U.kZ赴>T Sョナ|aウ=jr:}XノメゥォJy妹Qヤ鬱變R&2ヨEH(ワ$渾2エcセ」レF萼ハOhナ饕ィpIイナa}+カ嚔Y竡徇テフべ4レm2J1ゥMCi鷯ァyヨ去1!ル蓆ェBl^eマ9BN闕箝エv6;ト-nカナ; タツ*m サA`ィタコ9フ 紊イ蒻,ト^a箕-廢{听モLュチ6#ロ"L"I耆J ニ}サ2ー)ャ[/リvj,\南W,aE!Yl+チ敏菱ツU株qJ江。コiDJ尨"キ/ч?キdロィヘミPDDワb"d寥0レク0碯kコワ檢ォR<ンァク^fッ汝N_[Cタ`ルャ「 蛍筐wRツ二蕪 マ`テ9"ヘタ"#テユエウシ:レ(Cワ、モ}逸;アUc掾%ユケmミ_ケ枯Hン;森穐9X?。Hメヨ2T# サC) 1ヒ線|訥オ+urZ%vレuツNホフ$j舷瘻オョUヤ蹶Mリ職墨3゚ムrイ}メZ(9wチ/!uiカ机逋*$ワDロkL0ハ9]ナ蜀レ]),ヘ/%イ<ッァ接ヲIリ0^5 wQ僣コnォ鷯溜EfP5!ロ].ヨツ7Y~!ユ9}f L[?vョト>ホ]ヘv5・TV$kー_穗r2ヒk'レ 鼈Fス8oアィo宅 符セエ」FWロ ^ト7J!隹ユ鞁普」|、カソ~@\ッタBU%C$HEざゥgbタヂPヒワッスョ玄z「ァcE2tqタヨS衽リ帙、~斡1p7ーYT}5゚ハォ轢ヌ)餠~MFハlRm誥j"徊9yasロ 」)~rノ3ヒC/笙& 8逡溶葎AEワl雫Rs"VH5猥=6/R頓/;Z+ ヲ `e裼(ヌg+$k式ユ窯!e偬スキャ菷|スモメワハhォホmmR」鮮ネBル裂ェoi ホ螻t(m鯆イFヤオ>kk)#V~7テソ;ネ= Qモコ⇔ ヨO5A゙8ョヤ=テAbアハn e愀オスσノ澗ン促レmメp邃、qSQ$C 、5ュユフ{r%k7(ムX迪云冥oE7ハ「=n季/ソニ茸リ)練vツ4\I役Wム牟"u #&イAs^鯵イx]8ン」MV3Nム !ニY膠`|邨゚ョa砒ヒVJカアJ 池B@5CnN(=ヌGdム%Sチ恣フiラ贖メ})ミヨM3n、ャjフェ"テm(菷ユDッ蛬鴪#供%#pンCYg:テェ?Inエ艟停Lユf喬fyDN?ラ疫ss0超~オ躋[サワ 律値t誌圸D「u#ラL7fRIョア5チカンc蓉Y軸w盞ス冏ヘ帙.垢E忍釀mw`;7序3:積コ/]フ輾イ涯3ユッ;F#ヨォ。Eレj爭sト,Q薀趁駲239!衷>91ィtハe&/オム嚠サ`篋. 轉5夲仮r*ケ0Wセ」W聯?サセメ咤vラ彪」4 CH+KP瞰X5ハ)シOVヒ ョ耿KR玲チ`]敏蜒ト 案ミ夷2 ョ枷≒穣QW M顧'シX疑羹4ョs。狭瓢 テ)b|ョク1@}」Ev_ワ40ェ1ナW盆7Cツ8fIYア@ー)ッiオン0モ聿x\瘠JョエクニTヨbmヘP畝`伯d&マ&G縄3槹ノ"ファ綛〕eイ8℃籃コfYsny且dク_ス「倏kシ\、ヨメF靜M斐ヨ*Aチレ頒-リ,キrV矩MFH゙1・CXy麺キ`ケ.コ$SォNェョシnカQPリム3,戸(SRcヲンiuャF枹VアHlフipE=ア輳磧 モタオw*kトリ潸ケ&cT6 ヤ亨イ7。%5c凅゙リゥlム.~キ7レタJュワuvK株コs4ッ%pヌ弓銹yレ鳧竰$ メDレュヨKm%*^エT/遶懸コw03Иjr(マ\ン,/鉋 Fテ荒ェGロヌ9h9 :+ャxu<ッLマ;ャ\陵樗5,p゚VQァ$Mナn。。ォ0クー`u3&NキpO>d,BSブム蘇 ゥ鄒KyイO9uミ「リ3ヤ、」je軒メヲYタH?aTX「扎疽・~ッ S辮?エヨ`H\┏142b|.シIヌG犹P3灘ノ網uTYー4翻9{e コ-ャキハRW|C孰oイ&2ァッラg7モah幄ユ|_ワn瀏w~レSア展~3=果`ゥ5tXr+Cセラ+ZZ?%HCネマゥクヒニ?1_。χ\mWマ: Nチ0XA5X4リゥHT・ワuレEエシlメナヤR&リ隨 ヘ'UpSヌナ{ eコJナU觜ハ、dリカ ォン顕トヌ~ケ臾0ヌx ~t4」コG點ワf臧・ツ:直メPJu瞰!屎!];du蜃ッ.オhfス;ュォデ{異「ヌMッ(ヘp9タ~?Ym咋6旙ト4トサ J斡vヤTヤ6タ"wJH#?Qァミ9鎮 Rサ[ケ<ケ~+ニ|y箒是9hニャ0撈:IルノZS4蹣![@テ貉嵜欷ロメヤw鎚゚u%ソq/忖ネ1ェrTシ堯ノワBdz H9W 。\逓ッ{wfJUemナメミ ゥJ n彼ムwエVhニャァワUヌJHョt畳~AーリuUフエ1ィオC7Vt|レNB熟攸?!j8瞽m寉サイc'ョ$タ愉セLユ Sムj礦ソ拷xd鶫HlxSレYサw忝W)4G jィgァ「]蠹 # aコ.ワ~b獎タ琳uエ"エテケヒ}\Jスゥ.ホゥ紜" 齧ヨ^.3?ゥルツ/酖(Z罩猥E#ミメ>ャa ヤ4ウ3セヨ'64/友コァsHuz ェ猷oR PqB栃ウゑヨコ」%ム vトツル耨サ者ムレか峠"゚u8穿ニヌ變セ&直n\tT傾tjO゙cノrョ`y゙餾fミ!錏5 ゥZテ n%Yワルyァ.「H菩ス4ャanメキォユg/ー]HOAaネw売ー9zサソ頸憫攻戞3]カェGEミ+ 揩]入ケ曖戳ム=エ棉ッ~z.,榧?タ&"WF・シS"@0蚤?Bエ 0ウ搏,ィ・0- 。Rsタ*侖2w<サ袗Wュ<aウォェ~gf!ヌミヨBlユ雅ウ_ノェ.゙慌Z\Pイイワケj$ナワネ=)凰^ゲcハヘクBコクABァ87オ/9 }シCxてFPiLノ、paBC3Rt桓Qヘ(ヘzトe。舎ツリシニェソ稜ュZfリマムv:5。゚」$メNミEケャ^mク)ワシ}ッ樶$・Cヤ<ヒ)笥「ャ「%ヤ犧爬<ュ困俐リ1゚dy gサエr*シ椏~エッI'zl;チhロフn「T";エ玄クGワ浚e)9セl=PPツ3 o認NSェEイコmUセf2vセx2ンムv櫓ツSレs3ョ:ゥOフサ0チッ18\膺3=t、Gロヌ.ョ、カ.ァ!kホvzメhJ クnyvェK梍ケアサZ]マ。シ」rヤ+踝槨:$)ネキ( ォキw F7卓H]エ悁ナdT「ニcdモ聒萎[<訓ヌ 0悸\,G吐ユK|Tスェt,ィ3魏ユNQDリiDN 鯔(Mマヲlwヤ@寢エv>齊40 qエト0ノ裸GハiB--j_cO%v>Wキ2娥ヒ1」ルa8*^$ィネSrミ。eヲ泓C「トワ\毬!゙Qq0Ph,0h`9父 ラ「,9Lトマ1ヒャ輹 f標Y。lソ7r_゚5]晉aqリ)y9BF恊ツム!ノリヤ#J~樣學 JY"。]'鯒y,淅ニe'm龝bleュハ8'@+#レーbDアKゃイァウ.魄軛モ{Ivof3zセーーヤ/マS#ツ$"%}7゙Y+ixョェQNヤ/ト椴ヒ.n、メ*}@ヨホモュ・+閂 cテ] 迢{)d@+菖゚レァ=シ"dュヌネユ. B4スQ雌#隣エ-@ヲソxdK怺;゚?eコメ5U餓1Aタ、ウコ8Rm/&ッ隙巫フPツR医Cツ5ネ4凋苛$9{N倫6躓膂≠wp メマ、 b# L8 .ニェスtモツ8foア8ァ+匣G描-セ嵎w∬ナ/溥_ユ9[DFラィカ鰰|獅 S8ゥ|ヨ@粋史: 「7ソk Lト!殕scッ#テADяIR98鑞6'2gVコクC>部短ーエナy壤ナF金~♭rゥ゙士HKg4$.、ク$欣レ墟Xz馬T[エァャAYP'ゥコ}$肆N}ヨュz m倏坐夫3ォbウ}b゙TXHB「>スホ「ツリsBeルhoメム雀o鷽ヌt\d#$ハ ァ!& 急 ユヘnサf徐麟GT櫃== マUム唔餽エルAケ エxコYv%=*9摯カL=ゥ。1ノ「Zヨ)TマdwWiキEェシフsy-r3ホュフ籐{iヤ,_Nモ4ミ クヲyキ8xoKチsィ9eティT[ 毳アノリ 。^ク#熙ーy) J仍で#ィヘロチ 鴇嗾ネ~"0潦<戛サル ウuアTク1トユ_Rツシc颯<張崗ョ翕・瀏闃甘6キ/an瓷 Eセハロシ汝`~`クニ1瑟」ヌネヘHE 宣Ajュ6゚jT゙3R;=ノ2j"K劇2d`lマkv1ン7_"E;娘{ユa゚#{f敖ロケ :ス晁 ヘワP^0_w]xF3コ酲Wワ1キソムャウYチwN9拱ヘトツlュW)(ミロ鰺、vエ(「欄ノpル螂JP4ェゥ$g遡g+4ョrfaーホam#ヤノワーーv pイkDOx7G%<抻M<ロ蝋Oン窪B憖ニ+ルャシ7D<1v`TCルマz粡ユホヤkャ&カ」N゙&らh%n$oV鰍エjwDクuメ擽v瘉ス7」w宏ヤxP%c 。チ1閼9R鎧愀キ帽ヅbォイノワ堯>鼡ヨス2ワvイz3;i?ュ"SX+ォコト溟](シ`ァN3、ホ=、ヨ^Yャ{OハHトァ?^g-g~モBe@QWa紂脊x碧孤(ユ埣pーシ`ェスゥ:ォテK:-jR "ムッヌ,]v 卉ゥトJ界X菘6qe6h7肭ワiザァiPンホ恰`廣ィ゙De #咢ン蝣裼eX#Pェメ,ノ4`(サ,ヽ葩サ箇7コヒルモィ5枅7 ヨ鞘ワ\)幇ワヌ佰狃\dレm疆ホQァャ天゚m颱・pヤ゙緒L[]ヒQエ肖 i 9?レキ%Ja搜`?「疵o、倒zァア苫マC0ヤhIシwシ」越タPキヘ:!エ・馘・jェP:9;Q2ネ5_.ヌ抹ロ・ャ+基=1・0ケ}妓 T愆ァsッ-${G菘|皓2VwA丑 0。QッP f ミ`_ヘEd Q カ"ュョX_Kアヘ@:のkアTA'ッムヘi)MマユXH 5SbアワhCN>ェu恵$Xユ-ャi}UヒTマzlね:コ\V4リ ゙タォ'ユツ'a異J:#,セァ・L汞wYLメ」タメ;m 雖RFォ(ゥ"ウpG摸キ、カュ hnー;\(6p>qォ(羂漫U言タ8隘シC*+ワLHjD陝ナ:&^` Rシルli尓ヤJフ@」?(タ}q眺掛C~軣ハ(&_ン5ヘ"_!iuヲ 狆ァ,9nホhEィ裴ツ彁>クdV ロ&レ09席メウ7g サォュナテ ェ>イO棟スJ,ケツ\*?}苣}d廱P)皇ヨレミスサ_ク濡[ヒラ。マテ某倶-ugサラチ;篩-テ海8JVcカrJΞサゥワrf+h,ェ8!iラ!.(-コм%ёwxコ膚g*ヘ_・ レ層W.ナw\3ア#;晄2ぐホチ゚gbr]^鶤チケ(チクィ副竟サ荅Mュvヒ;、c亡ヨsq屡=Zr゙/ィャArアhタャタ・rOレユX=d\」qKァ6棟險カフx:ゥP紙譎珞Xエc{イz味 1ュゥ」m゚w シx;カ;蛾}モ4ナo9チ({. 瑠ス纉ma= a5Sハ|」テFメCeセ舐7GU%.#>ェ"コTSj勹ラ#=J>ナ゚[@叨N。エロIッ2Y2AQ>q蓚トナ又S%U隕L<ツoネルMCTヒ猛ァD;觀Lヘc堊`ュル)」KHbイ鋩C$1]ツ」措キ朽HNケa$ャ^'[オ%$輦gンイァセD忍N!ィ啀.vv)YユォYヌQ98[隰テyu該U8咏eカ0ワ飮ネォコヘ=\*蜥呆麕ウソ^ >tzvY(y@リL酣ル|ァd:R鑛dチwu'聾ヨク:アレ6Mミ・ワ&ヘ8 #l4カ゚yユs洲シ{ノ ラyィン~;ンフ+Gイレ@y。yォsレe5Pヌゥe"mC7!M{ッワ%*醵セヘSム辷レWeッ; <態ロ|」"4L*。p#eJ柞+*裨qウ埣イィ松Lpヲ}キキ裃fmヨ鬮ワgpケ甲昜゙Pアク/&G<ッΥwKスiコ-wふj bシネi媽d p2ル「ネp#アlハ6キ:0r6ネMZ甅 ネスvx儚ミャス.wネse靄IFc」t M] ニ(褄}トss:ナ高Fナ(J殳f%ッy)&Jウャdhムx此:/ロ_LK5 ルヘcMgYカ蕚/'tl勘Ru]/j*Oス+蹤。l)ツハ4z岡肬襾!繊ラtネェヤL'・/ヲマ9J+ニ`ハェ・6テ硫wナ柑ヤ8~z蛭i\aカノコ ,"B?寄a$HNヒ.サ MェFw)Jミ觸S;ク。ロy宴ニ菫UセΖ「ン)]cルR1ス エ#ロ td?}モwuァYェ{ニメツ掾随サy>ネ、偸?_莨ミ3ケ;m椣燕Xァ!{vァマ}譚ョスッ(O祉$jイQ2Rj0コcb媒 1Gフョリセサン }~"薗及4ネォ_w8[ン3ムォホウカ叶@w{蜀隴漕「トャl4-\%Pk3メヲ9スC菠 イkクタZFO叱ヲ。ッ゙アG>ウ_「AV-}邵O}!緝・ム%トhuヌ騰F殴フ=%|トア0&\ エヌ嬌Dhリ/駘Wチエル゙Kr-vXo1Ln汨AeD2evヘ@3p#v モュ合略官鯆Wコ2叔、Y採*;ヤ鯲yfケd┳スイ。6ツQ1。モ朱ヘOタ瞑潸テE_W゚柚'ィaヲーm0ミ゚モj@DAシーMMオeE=ソ。,G__!タ"姐t^ニu"y・ー%d 簧}ハ9qエ1^K1dO語ァ,ウ壓畊鑪-。4駭D-'ヌ曁3Dネハ6 シ$ {ア:ヌ舶弟Wニ赳&╂訥k_'l\孝レ08エユxチナjシ更ンッ゚ロ蘊、LI)ラWス/ァヲヘイヘ「槭。beppオホ7o6aクoPヌ g妻*s惑翫YイZソ ォモ/ホ緡( Bヘハ#オ(xマ" ワT{eチK1、0椋モ剃キ3{キ$蹲W硫z狂mャネMオ:ヘm?hン暉ミsfExj4\0餓歹SAマ咾D吻菷3e酸Jmj}ゥ$゚ツャM疸コモレ柾貴BニZST。執Mメラ袷・Mフチ[}ンLs脚ャャイ鞁ZJQヘシM lホiprP゚S洳4椿凧朏カd'キゥt*vモ1リタママ|^寸褶Oウcゥ政ネ/萇フ|]怜 0倶、〉ニ!。ハコJZ橸ニナK#2茎fウ」テ?「$・>E権ヲ>'f&1Nサワ9ク8q?Kc%T樓MJ、ラPV/ユノ^, ィX7?I=rGS腎ロCョqH枋ナ衰ハJ剪"庚ッ4"ツテbエyッYZコ Bt!|{フカqクkエソトエ¶G&テヒa=9\椀Q`&瘻゚D聡NUQョ*メスVテ.痒=儷aラカEMヘc6ハツ $g_2~J1>Cカce檬8e7jヨN}[M nO}嘴y譌キ)u戎キネフゥ%VクZ ロハチ。ト0濡殻、ワ@"p<ゝマg9ルォ\ァRs」テエPOHア#充%-pトCヒfトotイ"/ュスネf.0p`I}; 豌P蛮召c賎zXンシヒュ寄フュ逖樛jqGッ、 ミ孤f6コ=キルトツ !ホ4逹-3k楮モ7軣\ェ=s ユクソ_ラ♯呰ケfゥヲ0キ罠 [eC4T甲8 #BbヌメルP歿7。gイ\]yYユ\6シmワ{~j?。<,Hg~カ癆カケ ル?A5蔡|(xjェレノ゙d!X桑2ケx 首ゥ済gJjEィ\チ葉詳イpHDdサエテッ掾ァ蓍4Hゥォ沃ラ呆Cラwd1 ラレワIc呼ル !セ更兀 kロ5倔゙エ=ンケCユ+|D*(ス{ メ畿'シケ]Ceテ鴣%ェカ勾Aノ「1幾iオセヤ4嶷]レ瘍s#ユOユQツキゾv9チレG0ネ)AKB゙l'ム、゚シ}ルkイ詮ユVV0 RァタララE愁ゥ3 [跚8メレ?シ?`q蛾C+籃v煉2! サ粡y44ントヲW覦3ゐ縦・6*U =餐ハ}u2、菫」エーヤ臑ラ GコF>0僣ィォX<ユwZqヨァw悃Z@ィゥHトマイエ「lソdD透<5ニ<ラFW蠏sWN奈Y」歌-ル サ&9`lfメモjス院|「 旌ミ清」<_辟゙ッ">、`ユ往KGム オ%ウ7ァ u 穉頷ニ杠イYオ劒#|キSリ秩ナ1}Tホヲ`G6゙w埃ナノx羸q較&シ"ェエ「DjSメ]レメリ航Pネ8}Uテg!ア"g皆+?イラn艪モフFz枴`Fウネ゙4モイ巻4ョン銃イノ゙ムユォ。'ェソユnヨOv":マ3ァ7ニF6i$Kィ。藉ヨ」 スN送9 f チ6Cルケィ]頤7、*wシ?テヘfキ,笘`IテoEノ1.i1-:ナnXケO6肓;Iッ):_擬ョ楪y $z x¥ェソイ「唾手ク8ョゥzr/讖7「サ彪a珈@qラ#ア「oェ4トラトZBィ*t D刊書CY纉ャ稜ュヘ/ツ Oネ\{hユ。A31`8f9D.ルュロ}嵬k アカ冖ェョテヒ+ lフt"ーチ游ワ'・@g3)t)ル 淳LY%ァM$、?ウ$e蛞$試畑2馘Ek1得 4ツ亟H0・X--S<交o#ルヌHワ{fIHーヘ約Nレフス"Q<5_キ畜GEソチg・dnフX!#メ .ァnツ|iッ鄭yッ]T$A2Vノhミ鍛ォ5icアャsヒッ7Zャホ @リFテSユG[セ3セ、L椁ツロス`クニュ搏:g8」rマハPメユ!ヒjネ:4a・/ヤ臭iョ 窒)(ア灯吭Jク鼈「ャ8l ェ,ヒコ{'ユ='oqX@DyチN媒カ,P巽^料釟ィ、<ォ;ルチニ弼ヒ外ss 30;Wヒ?a゚)Z鵐ロNヘ秡モホママ皖F&1E{![ミ!+q$、ュEHニ謄ア:ラタ」x巽_Jコk膝ャO 鞭Qメ*」gU>\/xタ+f骰coヨ-Rtリレ{K$裡p,浙桑G+ーk:}';鈩垈ルJ ルAPv6JO味%Bンケ槝偖タ^,@ノzャア,Cソ「Zv蓁 0モ サPラ* ゚X商 Um_z2ネoツqラ Djホムム\gD 'ムn_'ツ(ン3,ァ ユe囎ク ァAァマタB゙Z2fレヲョ蠶イ"{@/ユIp」リ(EQィRロヘカ|,チ蓑cサ9」ロSF9Hワw_ラxfネkOェ?!Lス+M霆Vカンヘ箏 5 h゙Z JOD規電% ヘ:2- "5サミh|W (hoオq洶マ'oOワラQnGer゙幣hカxマm5#o祢p。シ: 堪2:_t:セ弋ィ絏豐(」廚ャ3タ粘{Ν神6チロ懈モ施lカ4l+K*Oz(Fカレ^LdネwェハニBマM爆,Uミ3"r'EユK 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark {restore}if endstream endobj % 'fontDescriptor:DarkGardenMK': class PDFDictionary 4 0 obj << /Ascent 831 /CapHeight 931 /Descent -123 /Flags 34 /FontBBox [ -11 -331 935 1122 ] /FontFile 3 0 R /FontName /DarkGardenMK /ItalicAngle 0 /StemV 0 /Type /FontDescriptor /XHeight 869 >> endobj % 'F2': class PDFType1Font 5 0 obj % Font DarkGardenMK << /BaseFont /DarkGardenMK /Encoding /WinAnsiEncoding /FirstChar 0 /FontDescriptor 4 0 R /LastChar 255 /Name /F2 /Subtype /Type1 /Type /Font /Widths [ 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 130 611 131 0 0 0 0 0 0 0 0 0 0 0 187 187 0 0 0 0 0 706 624 619 730 613 660 624 660 284 603 639 658 833 614 691 648 612 647 666 829 688 618 985 690 645 841 0 0 0 0 0 0 612 528 571 641 527 563 549 581 256 527 543 525 718 523 612 561 566 548 567 718 587 530 774 604 559 764 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 765 0 0 0 0 0 0 0 0 0 0 0 0 0 0 704 0 0 791 0 0 0 0 0 763 0 0 543 0 0 0 0 650 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 672 0 0 0 0 0 648 0 0 0 ] >> endobj % 'F4': class PDFType1Font 6 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 7 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 8 0 obj % Page dictionary << /Contents 16 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 15 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'toUnicodeCMap:AAAAAA+BitstreamVeraSans-Roman': class PDFStream 9 0 obj << /Filter [ /FlateDecode ] /Length 721 >> stream x恪ユヒjロP盪檻テ乏怡Oタr+dミ M饅アORC-ル蓖ォZ陟T t4レサ崕as訐ニンセサヌヘーロa<ョZミ6テLエ[oVヌラユ鮖レル|:|r8カンク-ンp_コ7立ンユ8ュ[ゾニセソカv6<ョロクc~ウmロpホfヒeキn蒋ヌ?OカuウロヒセuzZ fオ[キテセ_Mァ6[悃-サE}Xホレー晁9マ<<ョ~肭゙ウ饂N-lA+[ムニ6エウ@';ムナ.9}チセ@_イ/ムW+5}テセA゚イoムリモ.н\~\~\~\~\~\~\~\敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮降゚7降゚7降゚7降゚7降゚7降゚7降゚7降゚7捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢?????????餔?餔?餔?餔?餔?餔?餔?餔ち/ち/ち/ち/ち/ち/ち/ちッウ胙@Z=上4ォN34x0r6C=Vサ=NHッ_endstream endobj % 'fontFile:/opt/zope/packages/eggs/reportlab-2.6-py2.7-linux-x86_64.egg/reportlab/fonts/Vera.ttf(AAAAAA+BitstreamVeraSans-Roman)': class PDFStream 10 0 obj << /Filter [ /FlateDecode ] /Length 17752 /Length1 28108 >> stream x慝ス |E0\ユユワ等ワヌ膀 瑞naH  &甬4! $赳,$"h@HP@以イニルユvラUPソィャ/サ*$ヘTL.ル胱ス~_樶ョョェ>飩@!dB+A9S棟゙」Z.チ1スhAaオ2CCテキha晤ル雪qルp゚QZ=oチユ」??ッ娶ア、tF?SB藍ョソ)k6ワモ」ハヤ-p瑜「テ滑ェ「Bt?# オ」モy@ロ^ク+。・;へzhy淅kケミカ]Gg。g:MONC n烟txク$亜ツ蚶v* 虧3|_鬼ネ.aコー若ホ>Nエ耘P-:Aセ!)$?7」マネr} Px4hフnヤク8pZホ5pケミ柝mOセ{ヲYワコャ庭0ハ9lZ稻ソ};g&$フ:,&ムa>: 途fコwf候フ啣0レfツ%スデhマ7XJオVセTリ $。@キ汰ト[X穆1|゚yエN5ィア8&3ヤフ%ニ'q蛾>6kマ雨ソp♭k[d爛セkュィ゚」x+ルW 補 V`)F6 bユ~」:Fンクr綱ツオS邂\K>eホ斛>ワ6ワfツxhゥd蠢噴誂m~テサNキウ"@ ユ$&ノ$比$エAフヨ{&カ0Yテスr="ノ@lq!CSS徘繖F[(v:D華フpウ号1ワムb\・鬱}チ?*枹(/ナ{/碪危> レY<0爲; 胱」カ>{メキッー 莊i賎キロB゙j?szチymェュrフ2ェGze)シ"S$Dヤe猿猿アトFナヲ」'牽O |フ( 緜1qQヌE+ト4+&Kクゥソ9ネddl8uニ5w儒藩z%ニィ+ャナ斟J畆zx賂Mハ-rミ/321 f\{ケ!CR仲?b鄭ュナネ濔マ鰌纖ノ犬「モ滑ヲ8ハモm'^鰄2スhEナdP[ヌカー'_ルケ n肆WオエャZンイメ+ッ\シハノ欺aヒェ7o~xe揺コハォセxト%ンV゙セ,hタ3%3V6mv孱Q5リ6・)N_ァЕケムララノaCBCP」BCC\a\xィMQチ4価テ譽J2'*6陛A#ポ Oエ5ンnP慰P4客アb木ヘQラ孺ヤウレ擲覬2ミnカYタ2AヨAヨミ駸ラャメ擱jMMン+ b}曜コラ%AW^ァ゙m/lカtオホ8bIニx収d"枇`古8?C?ヤヌリGチqミ,<[拉8;lVメシミエ mナOq[テ&g黍KトSツッ芭ニXc?、カ`Gーモ7$,9ナ窗%メ゙マァ#ホ劍)セvァン"リSsサaハ蒙カ5ォW遇kレィマェ鮭ロ漣抬W[言サク我mーS壺Nー 7*a<%リ薫ゥリシム.U「6 ゙8L「ンznヤ穂Kpア@@ケ}"ゥkミIX、h爰=T 埔ュ=迯ミラhG炸レS#pN ホ?{ケァオ&シ蔬ワキ゚*:漉hMァnタ^xサ創Rv恣G~ェ阡斎K品d:躊IリA玲ゥ6rミyv_躡nタw=@/@^紗杓v6メタォク硬Z- Xw#揀CSクッ渤ス2W;ィス←<虞gワrn5陌レホFヨKアT+ノsA拈rォwSシ/ツラ!}シstz]!ルワマ榕4コニコ斟aコ;タ@彈 A$旱 jフ!LO1。 狹9@躇ゥ?/ミmモヒ|ウ7Fケ}ト6;j3nエッW-。$リワFqニ$チルャ播H|クリddウ"ー_贍miモキー「x柳#V公gt 郡レエZュQkメjcx ^」tk聘@所&ケ晞、咲レjS010ln旆掃Θィ@虐フ@ フ@ ム 茯Xxnホミp寳截・ォ瘟B%竕サオレ'ワ<@キモV=F{ワア、ト?リェc>ン稽ウゥヘア燥イB QャD 〜|レoー8フ0チhAヤワッ'!フシCP為$O罘 モ・・RaaPS%>ク-k黷W。ニU↓7CM潸」●TXェイ、:ァ$4アャ!゚ネ゙ヲN~ョウ距椦5vdワン8p狢"シqト-Y技モヌ~4(キンS「M酖vミセ澆jpDNオQ ktエ9Mmハ&1クヘオ)r」グlシoー"死58ツ1リO簓エレネャ, pセ^>ト3>ト」x/披ミツーBWq81えh|xD ヘ瑶ト」?Nユ/zKニl|VXセ跚ソソ犒趣9tャeヌウO貎VSチャッーqvjテァ?DGソ=(ケオ癘ス喬k「b室\y閇ヲナ ンwxヌl"&D)χ+囎 6ェ(X輩#ハs」タGア :ャョ箭L竊|oユラ僚P?4ヘB乕zIセク?潅ノ<O5N5Mヌ・ク/%kー ┏タ「 ナFGヤ-Q羃蓑?A轗Btヌerヲ#e渫 ゙ヨeキdW t│zw$(ルュ![張ヘコヨトオ。沸メPソ`ャ蛋X「横Lュァセ」FMュd・攫ΚB。(エOD eJ浹vヌlT2ネ 給楪」2tカ%フLク殴エsレス]6^テ~&_8@{ツbムセ涸kpケNJ:カ}アィン75]ュフ7E。咒(昏ヘWl ンcm3ョ菜シ>レ。汝ーhpV姥仆コメq・[ン謝4>テ!gモツi8r$縛ッI.fケGシエDコィk O蛆?イs#p`%{[g-#<9エ_h旡w8eo##Oz謨W樂u[メ」}?c授゚セメ9サケxOィ.ッ}we /ケG8b翆゚ +" AB覗y看貽_クq*#ζト#!ノォdI0\ フ#ムaQe鰲Hセ松ムナYャuヲ遘゚\)ー帑o語 カ( $Xツヲリr蕚5ニ\ッムウサ癶B=W 11zVG$>2" Z|シ@Aクuルーamマェ差匕qマj?」胛 Wッレエiユ鼾ワ;[尹カnklレ:ンudナヒ#ョw/|誣qaンェUuptュ!&ノ滄M、Q@崋oCk}テレャ}ラGKチチ>。(""リトヤFケッエxオニTタ[{スFネ[。ァツ、賑of(Srサ'・)コョDト`/aタマウキOmq、箟レ-lヨ+6%ヒxエG」ツ@Wー ロァ゚- イケSサ'否籃'JモuP惺HV v崘ユ^HXルナ_fe杵濶uラマ棗ゥ5 堊ー 革@F"澹」スーDpL「ラnX*s・ェz}"毛悋9 Lユyチ嶼\@ Mv羝樅トaAミvQHx#沒0「Hミ麑ノzj禳゚vッr靆_癧8 oトヒ75#ラオ載ヲc匿Jヌ\ \$サ<|0AJ%n轣ER6廱ェbヾ「 G郢ゥ曽ョ艸^ワァコ菌、rDリク」尻課代pコ(@レ*s鎚Eチ蕷/=X リ、b>λ倶1-qッ堀 /`2リw逐^VサG*"ッネム頤扱ナo#H4$ミ、シ凱チ−0ネナD[/A>媚]Yイフ羹j7セウ栫&?貂砦)D3ァ困スオカ%ハRuゥKッオDわ挫スsjX廬ー>テMァOソールウァャョ傅r痾oホklツ刮アイ(j゙クオdユYゥ 啅9蓿aoフ^;}zbjsヤ`O>ゥmv?ノF-d#Q8κlヒヒチ、C」;9eph 患ニクタ。qY箚嗟スt ヤワィw R;E崟=ョ晢!pノIHッrーォt躬添 キ'ヌーL 將8eフ~゚Λz\農j蛙轄欧フム雄セ<]ア花qナ鵺ョ!Q帥Aヲb%耋ヌjxlテメ%ヘ\ィmOママロ>イ=cワeレテ _ノ=EZy?=「ォN"ケ頓w\エヨ%7春゙ネyチワ@ン女k+Y 粳5Yユィ bXdjQJワ「セf3ネ廾@フチセB@@ロp鼈ィIム、払ャシ6<驤%ー5。ョ"]ム痙c jd8゙ヌ=モマj'qヘ7nヨ 謚Zhラou~ヘ}ミiモコkクRmtUヘψ{゚xi.難ウe!@4=c>、カリ3.タカ>P 0。$5世 Iz/鬨%(,h樞ノM u埆n|リメォォn#:カbエ麕鵈oヨ^ミ問F慵ュ0iiメ.hンwル N 賃;ヌ3ロ> =|钁「8h9ォ割S2 Vx;[ 餃ベs、タ1フ「テル9絎7タi殘ァオtsキjeZ桟($゙Z@怙j[エレッエV譌ゥラ|.カ\ Z)キ/ィV$ネ]y#eノケSァコ苺t$フミY9> ;ケ:s?u絹e諱ホヒコ謠カ{跚_狠&Wノuイ靫Cマゥ#? ウ;ォケ慚テメY'<イ、Sv!!キ摺ル醐正ナシQ^ハ。`ロ`>ナ?タ`トZヌ侮S]2ユホ1Wヘj瀉矜0マ)イ/'トノCケ!ツ`y<)剣ァqクワ"a5威,o豸ノW9'NAォ$ァ癒I慴_' 瘍CトT)ノ炉ワ|ン紬8タ鹵楸Hィ6ョ#ヌナfゥルク<->-#ソ尤!H$誓&゚_ #H~~<域<ワチ瞞2iタ|g ヤル傳eセ房ヤ9。2サホA]|)ネ(採湾0』Zモ゚$ケ$)GZAVショL`rクx~>sムチト&ノgテ廰OТTvェ、ォGd`クl。IPナ`~エ |7Q屬^懿.ミ{TワサKコj:Rmヲ悄N$詰Q8ユノ9$5拒\R語RKゥj9ラ -QWpォ、Uホ良窿ォ$N アr2"モ藝J<_Y(/iチロΟウqエIケ瀑x9叱エカ廃セC&?ン/е ワシKマR?Z浜エ使シ#RK\0?DヲスT嵎゙ーvkモェ0ェワICクaメnシTホ弼+8Iト願ト|&ホg燎b .来k」b ゙*4Xヨ犲mL獵ハオ榑ョwホlo渝マ~+ qzヤ[ィEッXRHモマミQ#、ョ+Ucu7ニセI%ュ適0ヨn_ツ#b]ZテイオvK+ュOタ8Oリュン」+!シヨホーzニ(1」|ミキ?ト'ヲVU諄・ニリh腕鞐LW V1t,ホ0ホ妓]q插萎7i塾ン6 ソ誼xKPHンM弘ス|モ/:Q^h?yxSンlVホm&」姚ニtKィ1ヌ歪 5Y b, J諏)ニィ=*8Xンー|pdャ(Fv3尖ナタ1Xスix、UIノ/ルxwレァ゚テzf.、LdLミニ|爭 F/ケS!#ェh」!,メE9 lQ-ヲ^ r'_ウカ15リネ0F泙惴9チ(ハnp{糜WPェァ飫}ー,@R(N萋ホ漣ーjチム\ c、9FqチCクL慄 |スーネ飆I)lォミキスルロ|MマコトJKk}貭ラ-セ!~」遮挂オ'ZZ樅Nn彪旅ホ\+テ;チMョi5ヤ&i=|ネ7ハ=ハd萠.4,TV8I蠶ツBモUChトネ慶ウ牛oA屮!i U aA 0qーd\。+=Nンシュ}キヒE|ラG_Aメ4躪X|bヤx「輾ャvェh"ヲヒ`!簍Oィ=//レサ?j殍Wソ「畛ヘ '峺6|!G氤ン イbaQIX@ ヌ.5)繻フG~UP7J 差7チョ鐃 Mt妣ン匳!-r イワ侮+フ借> 5N[,|ャ滷ツ$ォ齋ェ幅2x゙ャ蔭旻晟ァ帷i 」#澳 Mrハ慙zュエヒチ0葵i.ァ廷ノ8サぞ戡キ#サw贊ウモミ」ッタァ颶s蔬。キ゚:tZ l祠3テラマ椰Nヨuワォ]メ(諡ス&ニヒモ楼lム」>。サミl」tツ]!イFレソ992ユケ咽#脩ツlイ軒&宙$N讖ovp−ミナ.桴「E< ・n?J*N@8ν箋,4],衞ra)ZKァ%。^\!?恩鰯`ー`R`ヘトM|,セホタ埴゚@Fム8└ス4ホw( [@U!↑A1ン"メ カ/xツ/dQリ1]tG賄錐U託ス. 勳<;]ョ%'゚9v攴枚闇DN8俸 イォqBD獏ワhaー圖fs套tユュホ粫sヤオーホ=$,Vィュ\"!ネコ-K<陦、 WU#2'祁ウ\「Krノ遷mp兢覯ワ通ァIeクa1ノ怏2D主OB:゚tル-サ敏鹽」ロ6マ ゙sフ・ワ"PミX^dロGアm戎",~ク;Qb OUu*W・ヘ{ムモ_哘セ曼ソノ>"丘nBZ),HヨK1 ?敍#'ケーエ レ8P石ウx抃マ zM レAラkエ#o・uネエ1ネwワ砺ーケY遼:キV,セワ >蛙賈8フ[/yカレx*ケコC饉'カ悪p澳レ アT{/┥オrエ|(X4:骼 3)fエ゚Oォル\。o゙.餽A闃ミカPxz゚gェ倪Dwョアヤネ倫=トs閖|トK ンセQテK#O_スz.キクP;ゥ沒ナ栓キ/騰 テ4ニ#シケムzワニkァEPサ MpdZ;ョx侠Vコ゚ム・\5hEミカ H粘<ナミO1能暈tホヒセrホモS&簒 鰰,Nロナァ゚3練?匈処dKタ供 (Zu~GfヌqA^onヌ[`奄dnシヘnネa梨ワナッSスEKfL戌f゚橸ネョ/=tモスヤ0n゚>`9ニンオ}ナx貰3ョPsz霰k9ヒ≠Pオ; ヨLJ」謂ワ遵紮q{サq}p嵩統2堝ル-チ ナS槹「7ョ/テo韵5翩Уエ|r=Dθ1ワ逖 !AJオ U*ョハY、フy栖8-<コKヘーBロ%~yヌ纖゚フonムヌh7エp|ヌXj銹<イク匳ok |ィ_Uιj沾レrミェ院リOタk(Xーb」シ_トMh戯<ゥr>A6Y ルb擺[ヒ馴ノdサセ `ヒt9q3kgロA滔 キ3ヌル讀ォ+タ=栃ヤjuワO&絅薙zUt<百Vヤワ践>i橙ハLレt~6ネタ秡` Q>セヌ-艀Ld{I蟶袗タ据$ヌ久サ+#^゚カヒヤ蕚]QエュhKソレア.?+ラスホサ P!ソヤイkOヒ={6キiラエ寉セ{Gッ?ミo;:~ミ黛ワ]_コ{.MB&$蜆~ッセ~Oム\H1魄sPセ麾悋偕}0x3嵶カvCホ2フLVBaa}ユO%)pイZ、MGルFw3ナキ?Pヒチ翩モ_ョ]nw鄂ワ持;^ロンル$::wO&_p鮟ローハ| 昜,(ウZャアvmリXン誠メ~ウ~[m「假Em:嶂,h;リタIネ啣j^E'/Yeォ N5aル2ュl+テン{析mヒアリェm: キ8ャ|ラ刄ハウヤxc{甦bワ7ネヒテ[ッkト'ムo噌F區尭We滞バンマs*、メア\シミ_榻チ Dョ ォクオツ胄&ョUリ"?ヒルie3U#ア<ュ 涙ニ2R`\Kヨタ 1アYレJカHネsツ1メ丈:汰ホメ/-メdz8キホCワラ;゚;.::ハ衾ケネホO∇nルEm(5]5~キノ*x7ト^D]` ,ム5ッ、ー4ロ#レ C$ァア)トEレクX%dウネイ歪-9チ"YYゥ」纎ヲ{ヤィ+7Xq*。ロ')*'ェ:jCT|^嘱,黐Zゥソヒゥ巛Jヤ4>纃U/セvシヲセy哘常=~|フ%K'kZ/ィハ>ウ擡,キcラカラ溏l ヘ廐齟w1ミ焜カ剴wカ+^9Z珱搏k5ホ`5咋厮溘#キ」翦vZ{オ[&vgF咒ネ1 ィA\.-覧テレgケ。チクワエワシワイワコワヨ`o ク`スゥラ6ホレヘ殪ルt爬リョ}wレリF>サチWソ~スoカkkラエoチノ_タテXフ<~q7潯c詆w7fカ嶼絽ノノ励Y蓆粗Xッ\Mキ「ヌヘソxNts<)Fッヤ」ョ 覡;uユ=r 7o瑟魑n゙ァンイ>靱!,yP処ナン>クb紂キgカE礇o 輕サ「因ョ,ィP紹^|珸vルP紬!タ 、ノワョ恃TRL; !フ/B,? ゙Gs|vP犀柤u#テイカ?\:アニg`09jキ捫ュ(Si 0xU陣スbムUO}3マS゙フ *oB>カ殆4:ラモ|,コスサセ$%ルG:ラォセ ア4Aウョozヒ(:オチjー!リ8柱CR、2Rii4ク Gqqj悖欅「#ムルマ7.4.,゙ロィ6麹&;・絅U4#13ア+ $!Jlb傀纓ヌッ衣゚=゙枕-、メ_`饉H・?ネコ)fッ];w牢{~モキ+J゚-\オセ艙Oキ・G1粐ンY礦~Oュン~,2オヤヤYwOハ恩Dオャレqミウキo(トツ=ルB#>)7ゥ2Xユnホ&4ノ楫エセウ粱吸|・i嘉w$MRbRizbテ却ΩfRォッ槧ユヤ$ミ゙jl[;eポsヘxエ鎌|A_オ^ナ'砦?MGナ|ヤ ]」蹄([嘱ゥg=r絢ィレロヌセT踴キキウp醫ラvs キレ]ヤァ 7-@"カサcヨ@Dhカ!$メネエャハa;ケv鶤$目Itキ」7オs萼ンユワi 蒹ク-メ"モFn7'S Qリk@ネヌ Z+臥]r*Jナ#ネ>Iヲ%タ,椎g Dキ<Mヌウネ,>G.E・ク恃2ア@ョGuク4ツRq Zラ跳`ナVヤ換p[ノ入督q溟忸X~CLセ-蒸頻臂o脯}ok゙ :ノチ[mコフヲkR『Fサウiz]v坎進エ.;ソェヒセ」.ヒ=魏斎]ゥ 枯&&|ワ= マ葮{E{0A鷲O]キホ烈"ヤT5桐2Uキzw0MヘQ+ケJ。T]BZ",垪ァク'ヘ鶫、[=;!D"A 恁N.。、8 N#}Oノナ恥>Z#、h9V嘘テ 柁疆?DNォコワ痛サtュクナスM>?0U ツ4猜鳫_}y皚/ロオテP啖2キレHkヌ|ヲ;#チ摩lwヲ@_6ツK$佚トニ:リh)ホヲィ *ィ鍛EJW%2リ$郢[。u疽場ツTw,]{lw,3モ・LY倖ケョ,Oェ<ッN5Fス、N緘H3ユRu!^ハ/緋ヤヌU鶸N~偶┝Aン隅/{、gユ65X%シ&c$Nチゥhチ8Z馮p僥珮dィ0X「e$Sノ2秤キiオnn!LgIモ裨ハ,C自ハエ/7mテ屶銖n魏駢ヲマLキM液'ノJツ`ニ|ア>pA;。攤_ヨj.炬マt~ヨ&nラ&p9_AャラぞD ゙+ノ彙Cハ~,fYL6」 ム遁nエ☆ァ &ェルp^アェuビbーAtケx^ルzス_cラツキ~ノ]R鎗,ャLV妹碧ツJ滔イク."AbULVS、)ユ櫨NUァ惑+ウユj妬i橡ョ"タ Lモ`6Xー撞VチOuニ@s%EA0w.!^惨「ユ(C1ヨヤマワマ箚 ッ嵬%Iツ0uaq亙クyク%ノ昧ワリヘケ央w{L6]ノPヌ峇フYキ-ン搾讎>6 6Cf;ヘ8ヒ<ヒ団+ナ・\兒n.キリ菁貲矛鏖e溝航ュiュyュ)・ナミbワj゙jルmリm|゙シ蟆wカマlキm% cチ光U゚フ^マp屹l~hSEv~Jク6Rwワe/ン:。1沺メア儺ヌfB゙v茘」@Y゚テヲ.G'ノ~A&蔑徹鳥A゚チz鳥キU&7槊%:ヨn<% ルb'ArルeBヒIハテ ニテア 2Kセ゚P クRRタs裹 Aス企訂无ワム仔ワムホセ`_ヌナMロ3宋5_Z`qトh%ミ 1ョp エソ。8シmTT!ハ7ィ蹇ョアェE宛橦ヲ9ヲ裔シラNムナ 、畩;嘴af4Gモスフ梧#イ4コ {!ョ倖Tqリカフ圉~」゙_]w5?ー醵宀Oeユ髀スカaァ゚oゥkョmケ鬥譎A出魍剏N^ チトXロレτK7Aュ!ミ?b@キ: d/碇猴晴 _」E28,シ"(`レF親ソ・鞨@ァCレ闌エ(0フ9L徃廬ヨx腕G゙霑Yャァォメユwキキメug框5t 笨/eT7鋺9呱ァヘョェ=m}譏沺ォx|霽+檢yフkモレxPタ絨梧M歐oゥmョロァ麼=ャp B!(メmナヨ #盥l7"Kィ貧」エ橄8wヘ.Yァiwl ーツネク|P.盟\XБ,ロ孳p.スロ、 イyロ}モ鄭GヲノsD=9ネヤ群2[サ3Bgェモ蕘-」ツt8~ス撈゚垤Q[ォィルン}/w8K エヤ汝|ュ壥/リ?Tハュ WE。wト」h熈H[ム秕h%翌゙!a0サyら2*EBミソ 煮疉c;ナpミy壯リヌ:8VB゚psx~ レヤ4 K振X>ZQュg3゚>S燼Gpメ縋ォ0レ。*騾s6ェ袞麋。レィ価|ヲp。sJ゚qBコ レ:烟/・ 銷|tミuソ` セ=k錢禰ッ;:チ Gorテo_舳鰊メitじ_イ'h?2」*掩ツウCI獸:4ホ#5氓f ~qG0Oマ>ネ >3ムf継;揖ノ1r棟硴 c刈 ルツ」「Y|Dシ&ヘ年ノェ\'Eヨeョー址`ィ02Z9ニニFヘ覗嗜レl3O4ソo カフオイハヨ'lf[ヲq嫻ソ舖タatヤ89ホ9yg茎筏リyモ7モ ゚ソMkンe{BFs`B默タク#Aラ? :Xリ^料kスkwxLx勸gィMユI:籐ホ|7\#゙)!ツ檄bs齢后゙ソ、鯰6マ5tソ逧h轆\ 蝕{ョEk %。<ラ22ヒ枳WV{ョMェヲリ ワユ)ロ<ラナィマ5Tu也奐h轆\ ネ_-\吃夛ケ鳳マオ撃k=ラ檎レd讐ニVU/ゥ)欷V迥+学%'%・ク.qムソ8UWSRク チ俵Y4ミ彪Q睫・スj]ケ%オ%5 KvqM/ゥ)tVヨv5ムレ0 キjAaenIEIam洩ミタAI<奴'&オネZW。ォョヲークdAaヘョェメ_ホcRsJj蕃ヨ妨Uメe%5%o^Mae]Iqきエヲ、,*+ャ儻亭ェォrV.qU琳ヤツェケu蝠蝠N N{ヨ封クJォ*アツ「「ェユミ掀ィ+ル+ハ徽*ミクLレ#"&+vヨヨVpEP纃0 、楠ア垰%`Ot゙z%aaUyj%躯タn\ユユ`ds+J掏仆汁ハ \eオ0cIeoョクn/vユW{P手["tスdkォ*ィu3ムQAコ*ィ幇vャ.,zpXYユ蕕{ユ  YRQェ」5!テ9uJセ+ojf原ワ WV+'wャq綵iyp隊囁?aエ|ネM將?ヒ55モ6e北Rヨ拝 ョ嫌9ケyyョゥケョャノ9ルYミ5elエqYSニサメaワ畠ョャノY0iT6ヤ3UVF挈rFリ p尠桾摯?+チ蕗?ホ 逃ケrメrウニNヒNヒu薛ヒヘ劒s激iァdMノフ(3鷲ヤ弸ケY''タ|hLp裼ヲ才恂;)|8Hホuア.K佚1ホ寳慢JマハマヒマヘH姚R検2u2衽エ)耡ウヲNq・g)i鰮:n@ハリエャノ ョqi噸ニg舫。ン<舩ウ1%#7-;チ風16疑ウr3ニ豕楝{潺6Cwヤ)ywO韈剞チ@io,テ倦?ネ・膂ヘヘBeFV^F+-7+召杉;ミ・犯iタO*シ)|ゥ敬ロ/オzムムヌe、eテи浩e奮クィ、コ殊キヌネu'ノェE俶ホヤx|%弍゙ニ.AァチセXメス\キ禾燧瀲ツヤ項CTメ挾ツ┠ヤ・控Qァイィシ黙;テU檍W[Xタ`TW/刔0ャカ ベF 虎50dQMyクWa=エヨ/Oネ鵺メ囃レjX K* ╂54ョ1Lハ+KォjxHg+ェ磆・uョylb シェf゙タイココ演-8ラ a クB4UA頂ユr4複:脾qィナテ9魴ク =\専姪Z8jP *D Pエf。J?ョメP|\(キkョZvWウセ僑/輌。鬯G!\蠱w%ネas.`3ヨツw<ホ_ニ桾x陋ヌ Uツ|K:W){ZメアFP襤[テュ蛎YノニWウルj=ェ`ヨ:xVw倡。ァネテq忖 ォ潅ヨ.b@O}v エキ施恚`d・G「qーhフ#I錘-f躬W)ミ轤Ωヤ6>ァョ*俐靂^サ!P=、ラ。E#% b7OhK5|W配g76ナ撃:ヲss疂{黼ッ!$0ケQ餬タィ.,bzPスル8ハャュ'E゙kz鬥士=綢B鰔L杰YWCッケlZ晰/鍠陲3fェ⊇Zfy]s養クレ[柬/輻lォサ4コョ裳uSエ鰯cチチk ・@C モヨZ6ヲb1ヲ0リ决b>(b驀z1・キ緩E猶ゾフ0.`:「ヒB=# aヨ*#コ衵モ/us癡。ラy,「カW_ッスtsュァ9ホナ.Hkョ3ンヲs、恪+72・3>」iQ芙ヒュトi% ゚R 鞋チュ7橙eI 3广z6敝-:カ髪ナ=d゚Stハォ挌0K!逾ェ和KeVル#・ィフモVモテ2-メuリ 」/祝#M=}]q/M+dr1 ァ/?ЪGl\ソ5TツZミk^oKm遊zヲo)サ耽彑トィ*f##コ韶;F゙>圜ロNv盜3麟~U|=熾ツBxZ~ョ腹ナ跨彊ノ 冽-ムS:゙゙bハ亶wアsュヌヲMZWt萇鰌zヨォ7暦トYW斐河ヨ2/鼾ンンV邨(唔Tt"5スgャf|マHM緒阜ソ}7シヨソヲjョヌV<アエキ& k*wヨTクヒG3 テフeマイヘケ].<w蕉縦IcO頤f3燠ホ8Mcs駸萃7掉エミケ]槲MS`.:6ヘd02`カ<ヨ3力=Zウ癧硅GG桁吠pOッヌ#圄陝ハマg6DヌQ\tL。スjoャイD/f乍.譟炸J,寶筺タ8Eッァt癨鮹4朔夷L eウ;レ: ホ9ミ/杖3采ャc;ム マuZ2コ$t姑イ??寓1@>テBハL`Rzニア$ヨェc6ユ#ezン=ヒ@/u<(ァwAホcgテヌナ靠g筆フ旛ォ;聘 峠h」/朔a*ヰホ朮.R~fwフ!奮契Tnq R紿゙)ホヨ[:wメ/言 ニゥlヨ;ウコZt}フbエ寿V欖ラ{]'イ{pw,」遷n壯ムゥ4ニザTBヲB諭夂{l柆K絵コcサd=品ル/ケ2ルb僻d旛ナLfソ=楼。a^9N韈ヤ.フzラkG゙~搾ミ銓ツ-チqL浚=誦q?マロソ2 ニアO]ノ{f吊jマ\4。マ鞐x<サOソVンOォ{ ヤ3僚Sョ懾ソ;f#コララJ=3畸無9amW未ヌ測ョLe{レ゚ユヨ」鋺ッ銘ユ)ォ瑚;璃gイフ。ォス7]、サbャfア_イ]ラyイJ_スァ/m_レg表モg峯歸爭?ソノサレウニ*gヲ蕁マシ5ネサ^ 蕁){カ蕉サオ笑6ヘK)踞タシリ#*棒 dッ:タfャj,3。/ =Y!"襟ロQ3コテO;キツ}芳n:ネマム荅dc+ァ咨C#74ソ「ノfVr=嘶h夸スFセk%゚カ談7ノ゚nムネ7#ネラ鱠ェFセJ&_^ノセl%W纒ムネヌ戳~ォ3ュ茱モ。ツG9J>L&h萬56矍`/9・孫5芳゙ヤネy]#ッi膓骨ヤネ+9a#ヌ」iヘ+BサF~sl酒娶ネoVヌ~-帙セM嫉_G謄yケムネK9ャ5rィ仂`&沛鍋リ逎ノ;ルHソIi9作ユネ;ルュ組w刔g橡.3yヲ亢A慮VイS#;6 ;4エ鼠゚ l/&ロカZmdォ<・'5イ・ユ$lムHォ俺タ坊イy添リG6卷7ノニ ッ5イ。y鴫イa゚xエミ<4サヌ」ノcYソnー^#竪⇔GモネレG ツZyト@國。ゥ4ァ」ノyX#ォWルユYe#+5イB#ヒ5篝ォeヒЮidル2P1iネw ムdゥF防dア,2着*ゥラHンMR{屯ワ$゙$ユゥメH・F*ツノ冩K跚喪鵠-#爬T#%)ヨH詮詼、p)クI39ケG#ウ52kヲ*フコIfェdo0#儉ラネ4<-昜;Iカ y$ラA櫁#ワュ飭)働ツ広カ値広'421ヒ*L!Y!&!ヒJ&佇x硬カ柱V2N#cケツリ$6穏52F#」イ 」莪Q.;5メ$罫゚カ髄&2B#テ52lィCv b:ネ慎0トJR dp(I1台A!Y# $)ム $僣「 ュdB棚~ムBbメ/゙.&v-ト・滞hmb,$レ@「4ゥ :テトULツn単 !エ路0p0X#A7I`: 鮭?熹檳|a塵qjト。菜。ゾ#6ユ鋒ャヒ挨5b2 &。キム4「Z欧コノD,&<<腆Z宇8クl%H#クッy テソ鵐ワモendstream endobj % 'fontDescriptor:AAAAAA+BitstreamVeraSans-Roman': class PDFDictionary 11 0 obj << /Ascent 759.7656 /CapHeight 759.7656 /Descent -240.2344 /Flags 4 /FontBBox [ -183.1055 -235.8398 1287.109 928.2227 ] /FontFile2 10 0 R /FontName /AAAAAA+BitstreamVeraSans-Roman /ItalicAngle 0 /StemV 87 /Type /FontDescriptor >> endobj % 'F3+0': class PDFTrueTypeFont 12 0 obj % Font Vera subset 0 << /BaseFont /AAAAAA+BitstreamVeraSans-Roman /FirstChar 0 /FontDescriptor 11 0 R /LastChar 127 /Name /F3+0 /Subtype /TrueType /ToUnicode 9 0 R /Type /Font /Widths [ 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 317.8711 400.8789 459.9609 837.8906 636.2305 950.1953 779.7852 274.9023 390.1367 390.1367 500 837.8906 317.8711 360.8398 317.8711 336.9141 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 336.9141 336.9141 837.8906 837.8906 837.8906 530.7617 1000 684.082 686.0352 698.2422 770.0195 631.8359 575.1953 774.9023 751.9531 294.9219 294.9219 655.7617 557.1289 862.793 748.0469 787.1094 603.0273 787.1094 694.8242 634.7656 610.8398 731.9336 684.082 988.7695 685.0586 610.8398 685.0586 390.1367 336.9141 390.1367 837.8906 500 500 612.793 634.7656 549.8047 634.7656 615.2344 352.0508 634.7656 633.7891 277.832 277.832 579.1016 277.832 974.1211 633.7891 611.8164 634.7656 634.7656 411.1328 520.9961 392.0898 633.7891 591.7969 817.8711 591.7969 591.7969 524.9023 636.2305 336.9141 636.2305 837.8906 600.0977 ] >> endobj % 'R13': class PDFCatalog 13 0 obj % Document Root << /Outlines 17 0 R /PageMode /UseNone /Pages 15 0 R /Type /Catalog >> endobj % 'R14': class PDFInfo 14 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R15': class PDFPages 15 0 obj % page tree << /Count 1 /Kids [ 8 0 R ] /Type /Pages >> endobj % 'R16': class PDFStream 16 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 576 >> stream Gat$u>u/?\'Ra>os)>:\X4(6SgY#Zg=5o/n+[5_=>.1/a:gf_EF?Ke.'@:&mrci;Y11.@6MPB=lJ]4&KHF5eV=Ans+W>KuR;K#%mr+88_L9KkTLg*ch/:KjU%JV-8+[$ta4273U#+l6"&lj.hb$:WPZ$EdL6`Q$V-!Z/_@7T%D\Gu02Ol`0Gu$Y=ZGaNOl9^6n%CKstG=.$nkM@FqF6oW\MOPendstream endobj % 'R17': class PDFOutlines 17 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 18 0000000000 65535 f 0000000113 00000 n 0000000260 00000 n 0000000522 00000 n 0000080486 00000 n 0000080747 00000 n 0000082147 00000 n 0000082328 00000 n 0000082515 00000 n 0000082835 00000 n 0000083788 00000 n 0000101715 00000 n 0000102022 00000 n 0000103657 00000 n 0000103795 00000 n 0000104066 00000 n 0000104173 00000 n 0000104893 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 14 0 R /Root 13 0 R /Size 18 >> startxref 104945 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-para-border.pdf0000664000175000017500000000445412063667552025203 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 347 >> stream Gas2Dbtc/1&;9M%speCQk0F)U2cUl^S?FQgbJ\$%#=4SF2pYj[O=)1n%Af+q))#Am,MWL7oJ]HMu.=?eB(<]OSS8utg8mqVTNcJDK(=oR[GV"7:+;ulH.PnIY"$m66>2tf,endstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000386 00000 n 0000000559 00000 n 0000000836 00000 n 0000000970 00000 n 0000001239 00000 n 0000001344 00000 n 0000001833 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 1884 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-registerCidFont.pdf0000664000175000017500000000766512064523007026072 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFDictionary 3 0 obj << /BaseFont /HeiseiMin-W3 /DescendantFonts [ << /BaseFont /HeiseiMin-W3 /CIDSystemInfo << /Ordering (Japan1) /Registry (Adobe) /Supplement 2 >> /DW 1000 /FontDescriptor << /Ascent 723 /CapHeight 709 /Descent -241 /Flags 6 /FontBBox [ -123 -257 1001 910 ] /FontName /HeiseiMin-W3 /ItalicAngle 0 /StemV 69 /Type /FontDescriptor /XHeight 450 >> /Subtype /CIDFontType0 /Type /Font /W [ 1 [ 250 333 408 500 ] 5 [ 500 833 778 180 333 ] 10 [ 333 500 564 250 333 250 278 500 ] 18 26 500 27 28 278 29 31 564 32 [ 444 921 722 667 ] 36 [ 667 722 611 556 722 ] 41 [ 722 333 389 722 611 889 722 ] 48 [ 722 556 722 667 556 611 722 ] 55 [ 722 944 722 ] 58 [ 722 611 333 500 333 469 500 333 444 500 444 500 444 333 500 ] 73 [ 500 278 ] 75 [ 278 500 278 778 500 ] 80 82 500 83 [ 333 389 278 500 ] 87 [ 500 722 500 ] 90 [ 500 444 480 200 480 333 ] 97 [ 278 ] 99 [ 200 ] 101 [ 333 500 ] 103 [ 500 167 ] 107 [ 500 ] 109 [ 500 333 ] 111 [ 333 556 ] 113 [ 556 500 ] 117 [ 250 ] 119 [ 350 333 444 ] 123 [ 500 ] 126 [ 444 333 ] 128 137 333 138 [ 1000 889 276 611 722 889 310 667 278 ] 147 [ 278 500 722 500 564 760 564 760 ] 157 158 300 159 [ 500 300 750 ] 162 163 750 164 169 722 170 [ 667 611 ] 172 174 611 175 178 333 179 185 722 187 191 722 192 [ 556 444 ] 194 203 444 204 207 278 208 214 500 216 222 500 223 [ 556 722 611 500 389 980 444 ] 231 [ 500 ] 323 [ 500 ] 325 [ 500 ] 327 389 500 ] >> ] /Encoding /UniJIS-UCS2-H /Name /F2 /Subtype /Type0 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 9 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121220004523+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 1 /Kids [ 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 200 >> stream Gb!$=]a@(\$qBtXhr,MS[-":R]sFZ$M\$GnS*1%7,5V:k[>9J1!0Rmapi8>&Wl8hH7UTe0DAb"0$TNkHgL4UKh7_imendstream endobj % 'R9': class PDFOutlines 9 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 10 0000000000 65535 f 0000000113 00000 n 0000000221 00000 n 0000000387 00000 n 0000002359 00000 n 0000002636 00000 n 0000002770 00000 n 0000003039 00000 n 0000003144 00000 n 0000003486 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\(H\034\005*\356\310m\004\220\254\206\030\343%\225) (\(H\034\005*\356\310m\004\220\254\206\030\343%\225)] /Info 6 0 R /Root 5 0 R /Size 10 >> startxref 3537 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-03.pdf0000664000175000017500000000557712063667552026001 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1150 >> stream Gat=+b>K96&A5Wts"MKH,)Y72]ojREaH;I\[s*S7!f;CVI86+/B+t(<3VCgt1TaBg_\XM$S(>&,X_r!E^9L7K&<_%\ajo&KYn&bgoXpF-QL[L,DEg33k,PlR;t%eu?/[k-5.XGN`kM4'hb::.5#ECaD)^cfZW"A^hSO":p[c@ul&1EkRj21CR$ibT+.&6.%BBA3[qcbG](^o_[UDNoa_GQl7/5RDeQWL*=lC*%32bebm&>#^H"+g]cJd9o96K@3M&R\d;AeXZi$-W)A\O*t=q3*-lVc8p*c4_XgPUg+);X#`p8MkBT-ST-[k?4>erW^ja)tO3A0%31R/LUO9dXbTEJ6f40T8hUH"(B^POl*UU'GF;B4%A&JS'#0`utbmY(H[5cf_Tg*7)r6G+lq"\o7D^`FWqB#`*oBn%oUl.8tTDrK8o+'$s9(_:>1;<8%CB@KQ[_U>S?#GdXW'JL,mF@pr2YslL'J>/',P*!L)<]qEEIJD`$Tbpdb@WWWJd7l#,k"l>'-lEdR9LMA7'FogBE%9Qf6X=#la.0+a/@cX6@f&2$gGc*BQr>0HWFT,40G,2!;`GMT^o:GlUdDaW;!B;AJgH\@=JDrsWLQj9HcL^)L%Xt19>rX!HQ]-8gT7#KGHVqpl6'^jh8/m/EI:=?l$qItg%Xc%OhqoBSendstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001052 00000 n 0000001157 00000 n 0000002450 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 2501 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-029-keepinframe.pdf0000664000175000017500000010144212063667552027431 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3+0 11 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 4 0 obj % Page dictionary << /Contents 15 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 5 0 obj % Page dictionary << /Contents 16 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page3': class PDFPage 6 0 obj % Page dictionary << /Contents 17 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 7 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 14 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'toUnicodeCMap:AAAAAA+BitstreamVeraSans-Roman': class PDFStream 8 0 obj << /Filter [ /FlateDecode ] /Length 721 >> stream x恪ユヒjロP盪檻テ乏怡Oタr+dミ M饅アORC-ル蓖ォZ陟T t4レサ崕as訐ニンセサヌヘーロa<ョZミ6テLエ[oVヌラユ鮖レル|:|r8カンク-ンp_コ7立ンユ8ュ[ゾニセソカv6<ョロクc~ウmロpホfヒeキn蒋ヌ?OカuウロヒセuzZ fオ[キテセ_Mァ6[悃-サE}Xホレー晁9マ<<ョ~肭゙ウ饂N-lA+[ムニ6エウ@';ムナ.9}チセ@_イ/ムW+5}テセA゚イoムリモ.н\~\~\~\~\~\~\~\敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮敷_餮降゚7降゚7降゚7降゚7降゚7降゚7降゚7降゚7捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢捫゚駢?????????餔?餔?餔?餔?餔?餔?餔?餔ち/ち/ち/ち/ち/ち/ち/ちッウ胙@Z=上4ォN34x0r6C=Vサ=NHッ_endstream endobj % 'fontFile:/opt/zope/packages/eggs/reportlab-2.6-py2.7-linux-x86_64.egg/reportlab/fonts/Vera.ttf(AAAAAA+BitstreamVeraSans-Roman)': class PDFStream 9 0 obj << /Filter [ /FlateDecode ] /Length 17752 /Length1 28108 >> stream x慝ス |E0\ユユワ等ワヌ膀 瑞naH  &甬4! $赳,$"h@HP@以イニルユvラUPソィャ/サ*$ヘTL.ル胱ス~_樶ョョェ>飩@!dB+A9S棟゙」Z.チ1スhAaオ2CCテキha晤ル雪qルp゚QZ=oチユ」??ッ娶ア、tF?SB藍ョソ)k6ワモ」ハヤ-p瑜「テ滑ェ「Bt?# オ」モy@ロ^ク+。・;へzhy淅kケミカ]Gg。g:MONC n烟txク$亜ツ蚶v* 虧3|_鬼ネ.aコー若ホ>Nエ耘P-:Aセ!)$?7」マネr} Px4hフnヤク8pZホ5pケミ柝mOセ{ヲYワコャ庭0ハ9lZ稻ソ};g&$フ:,&ムa>: 途fコwf候フ啣0レfツ%スデhマ7XJオVセTリ $。@キ汰ト[X穆1|゚yエN5ィア8&3ヤフ%ニ'q蛾>6kマ雨ソp♭k[d爛セkュィ゚」x+ルW 補 V`)F6 bユ~」:Fンクr綱ツオS邂\K>eホ斛>ワ6ワfツxhゥd蠢噴誂m~テサNキウ"@ ユ$&ノ$比$エAフヨ{&カ0Yテスr="ノ@lq!CSS徘繖F[(v:D華フpウ号1ワムb\・鬱}チ?*枹(/ナ{/碪危> レY<0爲; 胱」カ>{メキッー 莊i賎キロB゙j?szチymェュrフ2ェGze)シ"S$Dヤe猿猿アトFナヲ」'牽O |フ( 緜1qQヌE+ト4+&Kクゥソ9ネddl8uニ5w儒藩z%ニィ+ャナ斟J畆zx賂Mハ-rミ/321 f\{ケ!CR仲?b鄭ュナネ濔マ鰌纖ノ犬「モ滑ヲ8ハモm'^鰄2スhEナdP[ヌカー'_ルケ n肆WオエャZンイメ+ッ\シハノ欺aヒェ7o~xe揺コハォセxト%ンV゙セ,hタ3%3V6mv孱Q5リ6・)N_ァЕケムララノaCBCP」BCC\a\xィMQチ4価テ譽J2'*6陛A#ポ Oエ5ンnP慰P4客アb木ヘQラ孺ヤウレ擲覬2ミnカYタ2AヨAヨミ駸ラャメ擱jMMン+ b}曜コラ%AW^ァ゙m/lカtオホ8bIニx収d"枇`古8?C?ヤヌリGチqミ,<[拉8;lVメシミエ mナOq[テ&g黍KトSツッ芭ニXc?、カ`Gーモ7$,9ナ窗%メ゙マァ#ホ劍)セvァン"リSsサaハ蒙カ5ォW遇kレィマェ鮭ロ漣抬W[言サク我mーS壺Nー 7*a<%リ薫ゥリシム.U「6 ゙8L「ンznヤ穂Kpア@@ケ}"ゥkミIX、h爰=T 埔ュ=迯ミラhG炸レS#pN ホ?{ケァオ&シ蔬ワキ゚*:漉hMァnタ^xサ創Rv恣G~ェ阡斎K品d:躊IリA玲ゥ6rミyv_躡nタw=@/@^紗杓v6メタォク硬Z- Xw#揀CSクッ渤ス2W;ィス←<虞gワrn5陌レホFヨKアT+ノsA拈rォwSシ/ツラ!}シstz]!ルワマ榕4コニコ斟aコ;タ@彈 A$旱 jフ!LO1。 狹9@躇ゥ?/ミmモヒ|ウ7Fケ}ト6;j3nエッW-。$リワFqニ$チルャ播H|クリddウ"ー_贍miモキー「x柳#V公gt 郡レエZュQkメjcx ^」tk聘@所&ケ晞、咲レjS010ln旆掃Θィ@虐フ@ フ@ ム 茯Xxnホミp寳截・ォ瘟B%竕サオレ'ワ<@キモV=F{ワア、ト?リェc>ン稽ウゥヘア燥イB QャD 〜|レoー8フ0チhAヤワッ'!フシCP為$O罘 モ・・RaaPS%>ク-k黷W。ニU↓7CM潸」●TXェイ、:ァ$4アャ!゚ネ゙ヲN~ョウ距椦5vdワン8p狢"シqト-Y技モヌ~4(キンS「M酖vミセ澆jpDNオQ ktエ9Mmハ&1クヘオ)r」グlシoー"死58ツ1リO簓エレネャ, pセ^>ト3>ト」x/披ミツーBWq81えh|xD ヘ瑶ト」?Nユ/zKニl|VXセ跚ソソ犒趣9tャeヌウO貎VSチャッーqvjテァ?DGソ=(ケオ癘ス喬k「b室\y閇ヲナ ンwxヌl"&D)χ+囎 6ェ(X輩#ハs」タGア :ャョ箭L竊|oユラ僚P?4ヘB乕zIセク?潅ノ<O5N5Mヌ・ク/%kー ┏タ「 ナFGヤ-Q羃蓑?A轗Btヌerヲ#e渫 ゙ヨeキdW t│zw$(ルュ![張ヘコヨトオ。沸メPソ`ャ蛋X「横Lュァセ」FMュd・攫ΚB。(エOD eJ浹vヌlT2ネ 給楪」2tカ%フLク殴エsレス]6^テ~&_8@{ツbムセ涸kpケNJ:カ}アィン75]ュフ7E。咒(昏ヘWl ンcm3ョ菜シ>レ。汝ーhpV姥仆コメq・[ン謝4>テ!gモツi8r$縛ッI.fケGシエDコィk O蛆?イs#p`%{[g-#<9エ_h旡w8eo##Oz謨W樂u[メ」}?c授゚セメ9サケxOィ.ッ}we /ケG8b翆゚ +" AB覗y看貽_クq*#ζト#!ノォdI0\ フ#ムaQe鰲Hセ松ムナYャuヲ遘゚\)ー帑o語 カ( $Xツヲリr蕚5ニ\ッムウサ癶B=W 11zVG$>2" Z|シ@Aクuルーamマェ差匕qマj?」胛 Wッレエiユ鼾ワ;[尹カnklレ:ンudナヒ#ョw/|誣qaンェUuptュ!&ノ滄M、Q@崋oCk}テレャ}ラGKチチ>。(""リトヤFケッエxオニTタ[{スFネ[。ァツ、賑of(Srサ'・)コョDト`/aタマウキOmq、箟レ-lヨ+6%ヒxエG」ツ@Wー ロァ゚- イケSサ'否籃'JモuP惺HV v崘ユ^HXルナ_fe杵濶uラマ棗ゥ5 堊ー 革@F"澹」スーDpL「ラnX*s・ェz}"毛悋9 Lユyチ嶼\@ Mv羝樅トaAミvQHx#沒0「Hミ麑ノzj禳゚vッr靆_癧8 oトヒ75#ラオ載ヲc匿Jヌ\ \$サ<|0AJ%n轣ER6廱ェbヾ「 G郢ゥ曽ョ艸^ワァコ菌、rDリク」尻課代pコ(@レ*s鎚Eチ蕷/=X リ、b>λ倶1-qッ堀 /`2リw逐^VサG*"ッネム頤扱ナo#H4$ミ、シ凱チ−0ネナD[/A>媚]Yイフ羹j7セウ栫&?貂砦)D3ァ困スオカ%ハRuゥKッオDわ挫スsjX廬ー>テMァOソールウァャョ傅r痾oホklツ刮アイ(j゙クオdユYゥ 啅9蓿aoフ^;}zbjsヤ`O>ゥmv?ノF-d#Q8κlヒヒチ、C」;9eph 患ニクタ。qY箚嗟スt ヤワィw R;E崟=ョ晢!pノIHッrーォt躬添 キ'ヌーL 將8eフ~゚Λz\農j蛙轄欧フム雄セ<]ア花qナ鵺ョ!Q帥Aヲb%耋ヌjxlテメ%ヘ\ィmOママロ>イ=cワeレテ _ノ=EZy?=「ォN"ケ頓w\エヨ%7春゙ネyチワ@ン女k+Y 粳5Yユィ bXdjQJワ「セf3ネ廾@フチセB@@ロp鼈ィIム、払ャシ6<驤%ー5。ョ"]ム痙c jd8゙ヌ=モマj'qヘ7nヨ 謚Zhラou~ヘ}ミiモコkクRmtUヘψ{゚xi.難ウe!@4=c>、カリ3.タカ>P 0。$5世 Iz/鬨%(,h樞ノM u埆n|リメォォn#:カbエ麕鵈oヨ^ミ問F慵ュ0iiメ.hンwル N 賃;ヌ3ロ> =|钁「8h9ォ割S2 Vx;[ 餃ベs、タ1フ「テル9絎7タi殘ァオtsキjeZ桟($゙Z@怙j[エレッエV譌ゥラ|.カ\ Z)キ/ィV$ネ]y#eノケSァコ苺t$フミY9> ;ケ:s?u絹e諱ホヒコ謠カ{跚_狠&Wノuイ靫Cマゥ#? ウ;ォケ慚テメY'<イ、Sv!!キ摺ル醐正ナシQ^ハ。`ロ`>ナ?タ`トZヌ侮S]2ユホ1Wヘj瀉矜0マ)イ/'トノCケ!ツ`y<)剣ァqクワ"a5威,o豸ノW9'NAォ$ァ癒I慴_' 瘍CトT)ノ炉ワ|ン紬8タ鹵楸Hィ6ョ#ヌナfゥルク<->-#ソ尤!H$誓&゚_ #H~~<域<ワチ瞞2iタ|g ヤル傳eセ房ヤ9。2サホA]|)ネ(採湾0』Zモ゚$ケ$)GZAVショL`rクx~>sムチト&ノgテ廰OТTvェ、ォGd`クl。IPナ`~エ |7Q屬^懿.ミ{TワサKコj:Rmヲ悄N$詰Q8ユノ9$5拒\R語RKゥj9ラ -QWpォ、Uホ良窿ォ$N アr2"モ藝J<_Y(/iチロΟウqエIケ瀑x9叱エカ廃セC&?ン/е ワシKマR?Z浜エ使シ#RK\0?DヲスT嵎゙ーvkモェ0ェワICクaメnシTホ弼+8Iト願ト|&ホg燎b .来k」b ゙*4Xヨ犲mL獵ハオ榑ョwホlo渝マ~+ qzヤ[ィEッXRHモマミQ#、ョ+Ucu7ニセI%ュ適0ヨn_ツ#b]ZテイオvK+ュOタ8Oリュン」+!シヨホーzニ(1」|ミキ?ト'ヲVU諄・ニリh腕鞐LW V1t,ホ0ホ妓]q插萎7i塾ン6 ソ誼xKPHンM弘ス|モ/:Q^h?yxSンlVホm&」姚ニtKィ1ヌ歪 5Y b, J諏)ニィ=*8Xンー|pdャ(Fv3尖ナタ1Xスix、UIノ/ルxwレァ゚テzf.、LdLミニ|爭 F/ケS!#ェh」!,メE9 lQ-ヲ^ r'_ウカ15リネ0F泙惴9チ(ハnp{糜WPェァ飫}ー,@R(N萋ホ漣ーjチム\ c、9FqチCクL慄 |スーネ飆I)lォミキスルロ|MマコトJKk}貭ラ-セ!~」遮挂オ'ZZ樅Nn彪旅ホ\+テ;チMョi5ヤ&i=|ネ7ハ=ハd萠.4,TV8I蠶ツBモUChトネ慶ウ牛oA屮!i U aA 0qーd\。+=Nンシュ}キヒE|ラG_Aメ4躪X|bヤx「輾ャvェh"ヲヒ`!簍Oィ=//レサ?j殍Wソ「畛ヘ '峺6|!G氤ン イbaQIX@ ヌ.5)繻フG~UP7J 差7チョ鐃 Mt妣ン匳!-r イワ侮+フ借> 5N[,|ャ滷ツ$ォ齋ェ幅2x゙ャ蔭旻晟ァ帷i 」#澳 Mrハ慙zュエヒチ0葵i.ァ廷ノ8サぞ戡キ#サw贊ウモミ」ッタァ颶s蔬。キ゚:tZ l祠3テラマ椰Nヨuワォ]メ(諡ス&ニヒモ楼lム」>。サミl」tツ]!イFレソ992ユケ咽#脩ツlイ軒&宙$N讖ovp−ミナ.桴「E< ・n?J*N@8ν箋,4],衞ra)ZKァ%。^\!?恩鰯`ー`R`ヘトM|,セホタ埴゚@Fム8└ス4ホw( [@U!↑A1ン"メ カ/xツ/dQリ1]tG賄錐U託ス. 勳<;]ョ%'゚9v攴枚闇DN8俸 イォqBD獏ワhaー圖fs套tユュホ粫sヤオーホ=$,Vィュ\"!ネコ-K<陦、 WU#2'祁ウ\「Krノ遷mp兢覯ワ通ァIeクa1ノ怏2D主OB:゚tル-サ敏鹽」ロ6マ ゙sフ・ワ"PミX^dロGアm戎",~ク;Qb OUu*W・ヘ{ムモ_哘セ曼ソノ>"丘nBZ),HヨK1 ?敍#'ケーエ レ8P石ウx抃マ zM レAラkエ#o・uネエ1ネwワ砺ーケY遼:キV,セワ >蛙賈8フ[/yカレx*ケコC饉'カ悪p澳レ アT{/┥オrエ|(X4:骼 3)fエ゚Oォル\。o゙.餽A闃ミカPxz゚gェ倪Dwョアヤネ倫=トs閖|トK ンセQテK#O_スz.キクP;ゥ沒ナ栓キ/騰 テ4ニ#シケムzワニkァEPサ MpdZ;ョx侠Vコ゚ム・\5hEミカ H粘<ナミO1能暈tホヒセrホモS&簒 鰰,Nロナァ゚3練?匈処dKタ供 (Zu~GfヌqA^onヌ[`奄dnシヘnネa梨ワナッSスEKfL戌f゚橸ネョ/=tモスヤ0n゚>`9ニンオ}ナx貰3ョPsz霰k9ヒ≠Pオ; ヨLJ」謂ワ遵紮q{サq}p嵩統2堝ル-チ ナS槹「7ョ/テo韵5翩Уエ|r=Dθ1ワ逖 !AJオ U*ョハY、フy栖8-<コKヘーBロ%~yヌ纖゚フonムヌh7エp|ヌXj銹<イク匳ok |ィ_Uιj沾レrミェ院リOタk(Xーb」シ_トMh戯<ゥr>A6Y ルb擺[ヒ馴ノdサセ `ヒt9q3kgロA滔 キ3ヌル讀ォ+タ=栃ヤjuワO&絅薙zUt<百Vヤワ践>i橙ハLレt~6ネタ秡` Q>セヌ-艀Ld{I蟶袗タ据$ヌ久サ+#^゚カヒヤ蕚]QエュhKソレア.?+ラスホサ P!ソヤイkOヒ={6キiラエ寉セ{Gッ?ミo;:~ミ黛ワ]_コ{.MB&$蜆~ッセ~Oム\H1魄sPセ麾悋偕}0x3嵶カvCホ2フLVBaa}ユO%)pイZ、MGルFw3ナキ?Pヒチ翩モ_ョ]nw鄂ワ持;^ロンル$::wO&_p鮟ローハ| 昜,(ウZャアvmリXン誠メ~ウ~[m「假Em:嶂,h;リタIネ啣j^E'/Yeォ N5aル2ュl+テン{析mヒアリェm: キ8ャ|ラ刄ハウヤxc{甦bワ7ネヒテ[ッkト'ムo噌F區尭We滞バンマs*、メア\シミ_榻チ Dョ ォクオツ胄&ョUリ"?ヒルie3U#ア<ュ 涙ニ2R`\Kヨタ 1アYレJカHネsツ1メ丈:汰ホメ/-メdz8キホCワラ;゚;.::ハ衾ケネホO∇nルEm(5]5~キノ*x7ト^D]` ,ム5ッ、ー4ロ#レ C$ァア)トEレクX%dウネイ歪-9チ"YYゥ」纎ヲ{ヤィ+7Xq*。ロ')*'ェ:jCT|^嘱,黐Zゥソヒゥ巛Jヤ4>纃U/セvシヲセy哘常=~|フ%K'kZ/ィハ>ウ擡,キcラカラ溏l ヘ廐齟w1ミ焜カ剴wカ+^9Z珱搏k5ホ`5咋厮溘#キ」翦vZ{オ[&vgF咒ネ1 ィA\.-覧テレgケ。チクワエワシワイワコワヨ`o ク`スゥラ6ホレヘ殪ルt爬リョ}wレリF>サチWソ~スoカkkラエoチノ_タテXフ<~q7潯c詆w7fカ嶼絽ノノ励Y蓆粗Xッ\Mキ「ヌヘソxNts<)Fッヤ」ョ 覡;uユ=r 7o瑟魑n゙ァンイ>靱!,yP処ナン>クb紂キgカE礇o 輕サ「因ョ,ィP紹^|珸vルP紬!タ 、ノワョ恃TRL; !フ/B,? ゙Gs|vP犀柤u#テイカ?\:アニg`09jキ捫ュ(Si 0xU陣スbムUO}3マS゙フ *oB>カ殆4:ラモ|,コスサセ$%ルG:ラォセ ア4Aウョozヒ(:オチjー!リ8柱CR、2Rii4ク Gqqj悖欅「#ムルマ7.4.,゙ロィ6麹&;・絅U4#13ア+ $!Jlb傀纓ヌッ衣゚=゙枕-、メ_`饉H・?ネコ)fッ];w牢{~モキ+J゚-\オセ艙Oキ・G1粐ンY礦~Oュン~,2オヤヤYwOハ恩Dオャレqミウキo(トツ=ルB#>)7ゥ2Xユnホ&4ノ楫エセウ粱吸|・i嘉w$MRbRizbテ却ΩfRォッ槧ユヤ$ミ゙jl[;eポsヘxエ鎌|A_オ^ナ'砦?MGナ|ヤ ]」蹄([嘱ゥg=r絢ィレロヌセT踴キキウp醫ラvs キレ]ヤァ 7-@"カサcヨ@Dhカ!$メネエャハa;ケv鶤$目Itキ」7オs萼ンユワi 蒹ク-メ"モFn7'S Qリk@ネヌ Z+臥]r*Jナ#ネ>Iヲ%タ,椎g Dキ<Mヌウネ,>G.E・ク恃2ア@ョGuク4ツRq Zラ跳`ナVヤ換p[ノ入督q溟忸X~CLセ-蒸頻臂o脯}ok゙ :ノチ[mコフヲkR『Fサウiz]v坎進エ.;ソェヒセ」.ヒ=魏斎]ゥ 枯&&|ワ= マ葮{E{0A鷲O]キホ烈"ヤT5桐2Uキzw0MヘQ+ケJ。T]BZ",垪ァク'ヘ鶫、[=;!D"A 恁N.。、8 N#}Oノナ恥>Z#、h9V嘘テ 柁疆?DNォコワ痛サtュクナスM>?0U ツ4猜鳫_}y皚/ロオテP啖2キレHkヌ|ヲ;#チ摩lwヲ@_6ツK$佚トニ:リh)ホヲィ *ィ鍛EJW%2リ$郢[。u疽場ツTw,]{lw,3モ・LY倖ケョ,Oェ<ッN5Fス、N緘H3ユRu!^ハ/緋ヤヌU鶸N~偶┝Aン隅/{、gユ65X%シ&c$Nチゥhチ8Z馮p僥珮dィ0X「e$Sノ2秤キiオnn!LgIモ裨ハ,C自ハエ/7mテ屶銖n魏駢ヲマLキM液'ノJツ`ニ|ア>pA;。攤_ヨj.炬マt~ヨ&nラ&p9_AャラぞD ゙+ノ彙Cハ~,fYL6」 ム遁nエ☆ァ &ェルp^アェuビbーAtケx^ルzス_cラツキ~ノ]R鎗,ャLV妹碧ツJ滔イク."AbULVS、)ユ櫨NUァ惑+ウユj妬i橡ョ"タ Lモ`6Xー撞VチOuニ@s%EA0w.!^惨「ユ(C1ヨヤマワマ箚 ッ嵬%Iツ0uaq亙クyク%ノ昧ワリヘケ央w{L6]ノPヌ峇フYキ-ン搾讎>6 6Cf;ヘ8ヒ<ヒ団+ナ・\兒n.キリ菁貲矛鏖e溝航ュiュyュ)・ナミbワj゙jルmリm|゙シ蟆wカマlキm% cチ光U゚フ^マp屹l~hSEv~Jク6Rwワe/ン:。1沺メア儺ヌfB゙v茘」@Y゚テヲ.G'ノ~A&蔑徹鳥A゚チz鳥キU&7槊%:ヨn<% ルb'ArルeBヒIハテ ニテア 2Kセ゚P クRRタs裹 Aス企訂无ワム仔ワムホセ`_ヌナMロ3宋5_Z`qトh%ミ 1ョp エソ。8シmTT!ハ7ィ蹇ョアェE宛橦ヲ9ヲ裔シラNムナ 、畩;嘴af4Gモスフ梧#イ4コ {!ョ倖Tqリカフ圉~」゙_]w5?ー醵宀Oeユ髀スカaァ゚oゥkョmケ鬥譎A出魍剏N^ チトXロレτK7Aュ!ミ?b@キ: d/碇猴晴 _」E28,シ"(`レF親ソ・鞨@ァCレ闌エ(0フ9L徃廬ヨx腕G゙霑Yャァォメユwキキメug框5t 笨/eT7鋺9呱ァヘョェ=m}譏沺ォx|霽+檢yフkモレxPタ絨梧M歐oゥmョロァ麼=ャp B!(メmナヨ #盥l7"Kィ貧」エ橄8wヘ.Yァiwl ーツネク|P.盟\XБ,ロ孳p.スロ、 イyロ}モ鄭GヲノsD=9ネヤ群2[サ3Bgェモ蕘-」ツt8~ス撈゚垤Q[ォィルン}/w8K エヤ汝|ュ壥/リ?Tハュ WE。wト」h熈H[ム秕h%翌゙!a0サyら2*EBミソ 煮疉c;ナpミy壯リヌ:8VB゚psx~ レヤ4 K振X>ZQュg3゚>S燼Gpメ縋ォ0レ。*騾s6ェ袞麋。レィ価|ヲp。sJ゚qBコ レ:烟/・ 銷|tミuソ` セ=k錢禰ッ;:チ Gorテo_舳鰊メitじ_イ'h?2」*掩ツウCI獸:4ホ#5氓f ~qG0Oマ>ネ >3ムf継;揖ノ1r棟硴 c刈 ルツ」「Y|Dシ&ヘ年ノェ\'Eヨeョー址`ィ02Z9ニニFヘ覗嗜レl3O4ソo カフオイハヨ'lf[ヲq嫻ソ舖タatヤ89ホ9yg茎筏リyモ7モ ゚ソMkンe{BFs`B默タク#Aラ? :Xリ^料kスkwxLx勸gィMユI:籐ホ|7\#゙)!ツ檄bs齢后゙ソ、鯰6マ5tソ逧h轆\ 蝕{ョEk %。<ラ22ヒ枳WV{ョMェヲリ ワユ)ロ<ラナィマ5Tu也奐h轆\ ネ_-\吃夛ケ鳳マオ撃k=ラ檎レd讐ニVU/ゥ)欷V迥+学%'%・ク.qムソ8UWSRク チ俵Y4ミ彪Q睫・スj]ケ%オ%5 KvqM/ゥ)tVヨv5ムレ0 キjAaenIEIam洩ミタAI<奴'&オネZW。ォョヲークdAaヘョェメ_ホcRsJj蕃ヨ妨Uメe%5%o^Mae]Iqきエヲ、,*+ャ儻亭ェォrV.qU琳ヤツェケu蝠蝠N N{ヨ封クJォ*アツ「「ェユミ掀ィ+ル+ハ徽*ミクLレ#"&+vヨヨVpEP纃0 、楠ア垰%`Ot゙z%aaUyj%躯タn\ユユ`ds+J掏仆汁ハ \eオ0cIeoョクn/vユW{P手["tスdkォ*ィu3ムQAコ*ィ幇vャ.,zpXYユ蕕{ユ  YRQェ」5!テ9uJセ+ojf原ワ WV+'wャq綵iyp隊囁?aエ|ネM將?ヒ55モ6e北Rヨ拝 ョ嫌9ケyyョゥケョャノ9ルYミ5elエqYSニサメaワ畠ョャノY0iT6ヤ3UVF挈rFリ p尠桾摯?+チ蕗?ホ 逃ケrメrウニNヒNヒu薛ヒヘ劒s激iァdMノフ(3鷲ヤ弸ケY''タ|hLp裼ヲ才恂;)|8Hホuア.K佚1ホ寳慢JマハマヒマヘH姚R検2u2衽エ)耡ウヲNq・g)i鰮:n@ハリエャノ ョqi噸ニg舫。ン<舩ウ1%#7-;チ風16疑ウr3ニ豕楝{潺6Cwヤ)ywO韈剞チ@io,テ倦?ネ・膂ヘヘBeFV^F+-7+召杉;ミ・犯iタO*シ)|ゥ敬ロ/オzムムヌe、eテи浩e奮クィ、コ殊キヌネu'ノェE俶ホヤx|%弍゙ニ.AァチセXメス\キ禾燧瀲ツヤ項CTメ挾ツ┠ヤ・控Qァイィシ黙;テU檍W[Xタ`TW/刔0ャカ ベF 虎50dQMyクWa=エヨ/Oネ鵺メ囃レjX K* ╂54ョ1Lハ+KォjxHg+ェ磆・uョylb シェf゙タイココ演-8ラ a クB4UA頂ユr4複:脾qィナテ9魴ク =\専姪Z8jP *D Pエf。J?ョメP|\(キkョZvWウセ僑/輌。鬯G!\蠱w%ネas.`3ヨツw<ホ_ニ桾x陋ヌ Uツ|K:W){ZメアFP襤[テュ蛎YノニWウルj=ェ`ヨ:xVw倡。ァネテq忖 ォ潅ヨ.b@O}v エキ施恚`d・G「qーhフ#I錘-f躬W)ミ轤Ωヤ6>ァョ*俐靂^サ!P=、ラ。E#% b7OhK5|W配g76ナ撃:ヲss疂{黼ッ!$0ケQ餬タィ.,bzPスル8ハャュ'E゙kz鬥士=綢B鰔L杰YWCッケlZ晰/鍠陲3fェ⊇Zfy]s養クレ[柬/輻lォサ4コョ裳uSエ鰯cチチk ・@C モヨZ6ヲb1ヲ0リ决b>(b驀z1・キ緩E猶ゾフ0.`:「ヒB=# aヨ*#コ衵モ/us癡。ラy,「カW_ッスtsュァ9ホナ.Hkョ3ンヲs、恪+72・3>」iQ芙ヒュトi% ゚R 鞋チュ7橙eI 3广z6敝-:カ髪ナ=d゚Stハォ挌0K!逾ェ和KeVル#・ィフモVモテ2-メuリ 」/祝#M=}]q/M+dr1 ァ/?ЪGl\ソ5TツZミk^oKm遊zヲo)サ耽彑トィ*f##コ韶;F゙>圜ロNv盜3麟~U|=熾ツBxZ~ョ腹ナ跨彊ノ 冽-ムS:゙゙bハ亶wアsュヌヲMZWt萇鰌zヨォ7暦トYW斐河ヨ2/鼾ンンV邨(唔Tt"5スgャf|マHM緒阜ソ}7シヨソヲjョヌV<アエキ& k*wヨTクヒG3 テフeマイヘケ].<w蕉縦IcO頤f3燠ホ8Mcs駸萃7掉エミケ]槲MS`.:6ヘd02`カ<ヨ3力=Zウ癧硅GG桁吠pOッヌ#圄陝ハマg6DヌQ\tL。スjoャイD/f乍.譟炸J,寶筺タ8Eッァt癨鮹4朔夷L eウ;レ: ホ9ミ/杖3采ャc;ム マuZ2コ$t姑イ??寓1@>テBハL`Rzニア$ヨェc6ユ#ezン=ヒ@/u<(ァwAホcgテヌナ靠g筆フ旛ォ;聘 峠h」/朔a*ヰホ朮.R~fwフ!奮契Tnq R紿゙)ホヨ[:wメ/言 ニゥlヨ;ウコZt}フbエ寿V欖ラ{]'イ{pw,」遷n壯ムゥ4ニザTBヲB諭夂{l柆K絵コcサd=品ル/ケ2ルb僻d旛ナLfソ=楼。a^9N韈ヤ.フzラkG゙~搾ミ銓ツ-チqL浚=誦q?マロソ2 ニアO]ノ{f吊jマ\4。マ鞐x<サOソVンOォ{ ヤ3僚Sョ懾ソ;f#コララJ=3畸無9amW未ヌ測ョLe{レ゚ユヨ」鋺ッ銘ユ)ォ瑚;璃gイフ。ォス7]、サbャfア_イ]ラyイJ_スァ/m_レg表モg峯歸爭?ソノサレウニ*gヲ蕁マシ5ネサ^ 蕁){カ蕉サオ笑6ヘK)踞タシリ#*棒 dッ:タfャj,3。/ =Y!"襟ロQ3コテO;キツ}芳n:ネマム荅dc+ァ咨C#74ソ「ノfVr=嘶h夸スFセk%゚カ談7ノ゚nムネ7#ネラ鱠ェFセJ&_^ノセl%W纒ムネヌ戳~ォ3ュ茱モ。ツG9J>L&h萬56矍`/9・孫5芳゙ヤネy]#ッi膓骨ヤネ+9a#ヌ」iヘ+BサF~sl酒娶ネoVヌ~-帙セM嫉_G謄yケムネK9ャ5rィ仂`&沛鍋リ逎ノ;ルHソIi9作ユネ;ルュ組w刔g橡.3yヲ亢A慮VイS#;6 ;4エ鼠゚ l/&ロカZmdォ<・'5イ・ユ$lムHォ俺タ坊イy添リG6卷7ノニ ッ5イ。y鴫イa゚xエミ<4サヌ」ノcYソnー^#竪⇔GモネレG ツZyト@國。ゥ4ァ」ノyX#ォWルユYe#+5イB#ヒ5篝ォeヒЮidル2P1iネw ムdゥF防dア,2着*ゥラHンMR{屯ワ$゙$ユゥメH・F*ツノ冩K跚喪鵠-#爬T#%)ヨH詮詼、p)クI39ケG#ウ52kヲ*フコIfェdo0#儉ラネ4<-昜;Iカ y$ラA櫁#ワュ飭)働ツ広カ値広'421ヒ*L!Y!&!ヒJ&佇x硬カ柱V2N#cケツリ$6穏52F#」イ 」莪Q.;5メ$罫゚カ髄&2B#テ52lィCv b:ネ慎0トJR dp(I1台A!Y# $)ム $僣「 ュdB棚~ムBbメ/゙.&v-ト・滞hmb,$レ@「4ゥ :テトULツn単 !エ路0p0X#A7I`: 鮭?熹檳|a塵qjト。菜。ゾ#6ユ鋒ャヒ挨5b2 &。キム4「Z欧コノD,&<<腆Z宇8クl%H#クッy テソ鵐ワモendstream endobj % 'fontDescriptor:AAAAAA+BitstreamVeraSans-Roman': class PDFDictionary 10 0 obj << /Ascent 759.7656 /CapHeight 759.7656 /Descent -240.2344 /Flags 4 /FontBBox [ -183.1055 -235.8398 1287.109 928.2227 ] /FontFile2 9 0 R /FontName /AAAAAA+BitstreamVeraSans-Roman /ItalicAngle 0 /StemV 87 /Type /FontDescriptor >> endobj % 'F3+0': class PDFTrueTypeFont 11 0 obj % Font Vera subset 0 << /BaseFont /AAAAAA+BitstreamVeraSans-Roman /FirstChar 0 /FontDescriptor 10 0 R /LastChar 127 /Name /F3+0 /Subtype /TrueType /ToUnicode 8 0 R /Type /Font /Widths [ 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 600.0977 317.8711 400.8789 459.9609 837.8906 636.2305 950.1953 779.7852 274.9023 390.1367 390.1367 500 837.8906 317.8711 360.8398 317.8711 336.9141 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 636.2305 336.9141 336.9141 837.8906 837.8906 837.8906 530.7617 1000 684.082 686.0352 698.2422 770.0195 631.8359 575.1953 774.9023 751.9531 294.9219 294.9219 655.7617 557.1289 862.793 748.0469 787.1094 603.0273 787.1094 694.8242 634.7656 610.8398 731.9336 684.082 988.7695 685.0586 610.8398 685.0586 390.1367 336.9141 390.1367 837.8906 500 500 612.793 634.7656 549.8047 634.7656 615.2344 352.0508 634.7656 633.7891 277.832 277.832 579.1016 277.832 974.1211 633.7891 611.8164 634.7656 634.7656 411.1328 520.9961 392.0898 633.7891 591.7969 817.8711 591.7969 591.7969 524.9023 636.2305 336.9141 636.2305 837.8906 600.0977 ] >> endobj % 'R12': class PDFCatalog 12 0 obj % Document Root << /Outlines 19 0 R /PageMode /UseNone /Pages 14 0 R /Type /Catalog >> endobj % 'R13': class PDFInfo 13 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R14': class PDFPages 14 0 obj % page tree << /Count 4 /Kids [ 4 0 R 5 0 R 6 0 R 7 0 R ] /Type /Pages >> endobj % 'R15': class PDFStream 15 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 3049 >> stream Gb!#^gQL=$&Uekgs.QLaOE!&,MAK.>URcX-:-"g"oi1#rc3$I#&o40@B8KUSJM:EtFREu,6>8!/:WBT1&a;\Z0RdBN;$?._DX,;9_!qGB"2WnGm$#%pI^ngMbYZ"5^98e5&U^J]MCXODD`B#&,hqdYM3GTeu,J=1^VD\Gldc#qWB8GY#965ASgJg*FbG]*qKJVFW9i2W..QpCdOl#I1GW%PB$bR`A[prJm7Yhg;1l=U]=B9lIsVg?PpH/P*+O^h$qN4JLp'ULh`[ooXN%Y`lXn[.7<0R,B>0;S.1#d&3.EohUiRdRXep]b&atN-!NO_)gm>ZLsY3BLFLu^XM'o:Mo+OR^n(B=q5=n^ab7]ZF-4O3`1C-o2#\\aoqX'9)a&=!>D9dM<#ZV3b!hUO[A!SI3UNP!ptj9'_(#Mort46DQ?IKq-OaVE^n3X1`?JuYY\VU-TU_@'ZP"7>n#T4Q'sZI=#KtN?,f:1Jkt2IZcBjae#3:K'c?1#FZM7'2[n3;qF&tODQXY%fdSeBMa`Z^\igsY*O6S^;Jnnf:8#;bt49JL`E`Y/j[jKW8l>J#J$*p7aAT.^4"I7suF/sL7O]0%PF!es\QE>UT&NPTdX*%5.QUY(F,D,?hd5p26[BQuNKWjBW,\Aq"BMRO#Y^H)d4Kad#K[DObGq"0%#^;Tc%i:CP3e`OhfDb&+,0cO*LASD$.heJSbJC!k&-`rJ*"t$6uT8q=Z#H]mOJ2g<.)*mG&In6nYlLr3NqEBKf\lcbNmA__h:trnL&"c>4PVbFZGlep_pa:q]pW7%n2.7k-`^mhbW4+`dm25s?e/KSmPLnUDcARF1fJ^DC3t)-_:>-JY4q5Kr6(\&^2^>Os$SQ*)Ks([A@t6XDu%dMk)i\INDjY$94"V*(#=l?Vm$%!(JYWmL+hD-DEbMu4E3(F92b**S@=eG_'[hIL?jdt7s&Y+T16W+9=;X812a^ioiraXj$E1pX>IXi(5R^jW>4YF$%6@hCOb$J\(NZK:?-[h_nZ;5buZg'ck4_+KB7NN&ld&.CY;l9L]#B07e2BVU2h^FNSd^S:Uu@!V]<4Bpi$;l:Df:C^%7-dL`Yna5>[j/bp$jLZS@MD!\rg7.2QoFV<=*hEH%s36iPjG"+5cN1PbMMsWWdBm!mh;]@)?Xn*BGZqP%7=.T-WrcurHOrfA.qX#ucU8K[r3uBT;f$IWa1PXHD\b_WQ4#*i)qn$&M!nC7;'iE;)FPHr@[d3in`Dj_kLAlJs[>oX2(4.W^PKeFr'\mjQCd(NHsupa`HnYTo60.dWO;uS\?s^rAh!H2:Bt,id`':@X<_[dOd#4L=foR*EQ>eh80Zd)CoWi)e"MD4"K[^2lpV0$7hoVg#0@)otN!bm!U=2Sc)]^dYS.UD=$^?"gaj"d>b5g-F1=Sm[o5te/R^d"?No1GV,+$HPi.%s'n%+AL6<``gi\[;l5u1A?kJBYk^!pY576GO*+afCT\+8&i<@ORSf3OVqo0oGJH*UhTf9nLRpa-+9"A3jo~>endstream endobj % 'R16': class PDFStream 16 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1195 >> stream Gb"/$9lJcU&A9%PIi+st3H5mba>.o%V.]uGE8.03OGbbZE_(&Qgnf4]MUc(kfqh)/:##G>TI=4#Q=0-"p:WD'AeKpq-OHDF#Ok(]D`.nI.234:b@h4$*PC4:)jg%)>u)37MVp'):BPA``FjcDN<@u::;Es[Aq(8'6#+sHDrC]lh*s@C4UpiFRrss+)412MpC(UKV]Ot+D?bIK`-=.=>;TGB1?*KZA?;dOKQX!j8NW)SG$m:fU`6+8?bNh0cDlAC+2udP;$gdm1#sU%ecm>NpT3lQq9XGJ0eBYktTQ14jJ69XK;sb\ql?emdbj<$c:6jV_Bcf_g^;M.ui*NlpQtHD>&4Fi[-O.^GAV;4mpA1p#7GDsPVD"^*gKcPs1Ci/Ob2hI.k/E;SmR`ommN'Sc;;MKTC%$]jX7rU`#"E0H17$Z,\'P3.Bb#(7LuN-J:14,fEh>l0?0+7ncIEf9*Qlfi0^Pu2W3B3U?f3qN"0T@:_d6V&3qFd(0cC,daU46G78?bSETX>cQTU6Kb'"`8!<14.%)r&jJs:+l6BK\V(-O<\8,!*oMhP^hi;NXn65p'Hc3h)71o]kR^N;cn&%a'AP-FT>>q^2:&>cH.>$\RfCpendstream endobj % 'R17': class PDFStream 17 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1181 >> stream Gat%!9lK&M&A8=iIi)]LDX6DAqP8Yt"hN=j237mqXtDjm&nS&)8M*NQahR;+ZDBNXgb]%@.l5\fpZB_^6@ci#s"/Ep?OHRI9nA$qe3ILV6ZE4C'pf_$/h_T'"Njt#Ua/+C0L-0;Ti">t97[6I'K]FqouBf%kLXJtKX(#pBWZgZj28JObi)[_Z(-@\nD.S9et3F`;,4D>@*$J<"?o+i:XB:W3g:_hUL3LFophF[[JCW6fYa:FJlU1.O/A1H")>%CJ"D5i[YuA@lib3tjbUIq:?\0Eo"^MT_Ltq:Zj&)=678jc_*GnLeHlHb5oAh>45iFCN*Dtb?l3Wb>13b$U6WN&2j=d<'Zq]3*Am6#fZ-_ufLVr?3UDF+k"'+G?\q1q)O(r'+:LeP;$Lb)i)&$3%DhM'%\Wn=SER4J#`VDReM?B23c7[>>1R0Ie;Mucb6RZm-'MC`'`FiASXADK]kI1&QC!:(090>!X2V(\e9;lL!'(94-@N]>K=^_ILS[%$b`-hn(J+K>pFT0eZKRn4au#M[_W3tc*>')fiTM]0e7>pk1_t3TS5c)l%T'P#I,>d-0B(i#ha6%`*k)=bn(1$=XCn8Di0dui32uM'W?g3WpW85q#X+NlCF7"=JlV?h3>m[X`+gCf*I[m%%8Y.o$:?6\3JoTK=&O&fD9"+Seh]qd9q07"'>JgYXW1#DDV8i3BKF5qaJP#]."%!6DGra.*P4%i:Ggid^&XJ=)3'*WG\kEDW3VtLjq0DC:*g8ELPV`&uOXN;8T>V$^6'TE.]2,"QpQYU`3\VD[cIgB1XC9$QV*XleZc%eVb4=/h:1lm5Td3A(s2)?03A81.lOXR'&D-G7,2?R%q-Kfl[C^!TqUf!5cd#T"0%Qk7o1<$_#Lg5IEUYendstream endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 3747 >> stream Gau`VD3*G]&cNgos'_"6_G(@Q'#;@M6mO>^!]G#NP>f#1575UM(NripbgkX]`DeBJEWoMpWri;jdY21I,e=],e_TG5:OCjNmV]gmgC!;r+R!*8\eBF8QRJ.4^[ioO*HhS61"u]jbEWfZ5U*2Tu*B+dYtI+1^*]1kd;SmQae<[Eq"nASh?YGle^u9BJId\5YZjm?QNWOah\"]YtkfiB3J\dFbSO_JgBOAi&67FFaXU-I.Xf@PV4YG+6b>G(MCfiuppNk%O0>o3$Fsc7(+Q*Rc(T*O[[/gqA8,nL#`/6A$nkbm$"cAY.\0X@eQnr2'Y;?-^SbYnX!+\@RHi.SGnB6'TA_+pS;ugU>!WgXFc(28?Ze6/(.LIR;eGKWgeiA^,[7cF^jG^Oifka0SO<(OSCQVnHF:B`g(V9_3UH$&2jBC]&\e?uEGOAZQT,*#K0:JdFjJ1bWR9)ofun>XQ_U=E@%.7cZZ4[#_BLSN#L@gXB,u"HaE3!JM'2-WRIbCe#d\_lY>YnRPGZ^2F7_dS>OGJl6,m+J+Ha+;/o()C_h]>'n4C01rYgW@7MF;)3b5=t8@;@s;CoK+E/gfEV-&ElgMXrpZAXn0h7=+hkBo^#fYHY'n6JNY36N^it-I=gf)+T#U.Uq,gcmBbR9sg4Y=/s5L"sY'&QN=`bT5V20[le@0QTJt_F?%.58eF6_Z:Ye_a:uI/Cuu0R\EPInbXS(7?'$):)>`.CNYVh9CKbu+0T$Nr5?srUT\++O+I'`3*\fWgI]a`;#CZ83g-iO,%AjYpb)>=<[cDT+qens?M#I^!Upg"1h54pZfHUk8Ui#t^G[&LOP^gL]fik6WlT("$.U@k5sBqT%1^k,*5Z**=_sU7/T\<^f1Qf]h6c&VZF&rD`;T$[,TRs@W*.:r4c30'@tCU$XF&'YO%"$,JW*c+/=j=T>;QKQg`%"0,Iq9>Fd&9tuU\@4lUP81T'`/,@1)d0E#7J>R7b5CZX@_i0eU@Y?rDf2f=D,rU\l3di`SJWk[=Ad+*Lj:BRSKCP>=]%+W51^h1BA;M#/#c8hGn_k>.KP3.4<:+K^?VKW`e^gAK"Q:bb(=O=))ij%sBFcVa?Il.a6M*F<%AgSUt/7R1mJ!N>1\cJ"D;T"7=Y$L*%he6^6)9Ai".tUP=)i#NVLK3@q0GCmr<>=RnXet"n32F7]!c1J%]#WN(tmG"7PhFDi+4^+r.(4WOQ5S;rL"jY0]dG.;:'24hjd'V3sGchJ+G%dnH)Q%XKgg=#T"A?2PH#Nk]n`M\2&C^jX8:2:_bt/dn[hCO*qG_&tUdIUR-8_Q9FQIR@gK*r5kE;*IC?l/a$b(dJ,V?E8grEM@/&qg+a=3&EpX@Ugp/QiK(hqiZ(-E,IW=f@naDcLqdf"oEn#H'So,>BMCRKU+Xp@8eN(,U's!C6fJkm77$%t-:V?j\GPan^HTbX`2"R!c9aT!Ya1IV+9+$W_L_Ar(EP\RO564M&m5e'+RpZA:Q$]%LoTo]bS7p[gS(_Jn0QBI9Jn3Qpi?OE?3bOr9chG-U4W7ILh3,^#[R'@Ig*k/8u`,;9:^r14Fhkk.3Ma5]c1UYlQd13"_.9SBi3+)%Xr-GiU`IP_0T45DnVd?ScHYB^-:ABDLj(so!j_el&q4"P^4.)e()(*geaN21$q+j(nuD+YfdN:i>X=PHH>CX^GF_cSZ.W5]1)J)F258g5-ue_Y#k*+C,@\0Rr4GDqb.7eBcVHV^XYFka(nQ;2D4qsK<+)#]2*ct[M%ZCY+Q"Xt(E8'gJHK]/jgYeNs_T_:8XrCn">A%@G;_eG?%A54L7B[=JU[S3UBGIgET_n36ogm)14O9b'@gf\p4jGmAfONJ2B"SmKod'$AiHLUHYQukr?!6_gZEo?;=>%7#Q&GqH."6'FcGg?0%JXb%4Bc2Q'8n>-Ljo\8?Tgi2P6SI_fb^MO`!`-,m*"Ko$9JHrL=HPU,gD-:qMWjWNJU]?`-s'k`@opFX!6'!1=/\dmn[:>nJ![e"_L^,gspOaND9Db;/8Rl*E/[@+:B"-Qkl@"ZHh1K%O'oh$5Q9V1Hha0N;*M/Bj^Y5PJD(e?CfO1XS1nD53!9':5mn^iDbpgrSrr0lA4Ngf^jrNGhrL?O/oW#8pm?,cTj(7-Y^8?KpM]Fm4nio^RN@)l7he_\doptJcgC>I0N]n'gE)]8a0`VMnVdh/K#rN:j8Z5]rPURLFO0%mDbGjGWTP>WEn$NJh"=0!AbrD"jB2rE8I\].Sk]W+*K1WS5fF4'B>V;ik?WTfr-_L(2O.8B(N3NM=budY\G](MDQCAk2A^914M>tFRk*nT]XHXmY5S0naRNNE[o7bm+`gjendstream endobj % 'R19': class PDFOutlines 19 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 20 0000000000 65535 f 0000000113 00000 n 0000000236 00000 n 0000000401 00000 n 0000000588 00000 n 0000000867 00000 n 0000001146 00000 n 0000001425 00000 n 0000001745 00000 n 0000002698 00000 n 0000020624 00000 n 0000020930 00000 n 0000022565 00000 n 0000022703 00000 n 0000022974 00000 n 0000023105 00000 n 0000026297 00000 n 0000027635 00000 n 0000028959 00000 n 0000032851 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 13 0 R /Root 12 0 R /Size 20 >> startxref 32903 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-plugInFlowable.pdf0000664000175000017500000000471712063667552025721 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 304 >> stream Garo;4\rsL&;KpMq%)q-O@XaoTWNka&7f69otoo.2[W/dE*WME*p8tk-r?I_QJ_RcNZb)/qeZSnCZH4]'_Dl7AgR'_*d*p!U^<$k$\_$[N9RF`$9C&$koEen-#V`c%=(NW7"9UtoYscWLB3,5_c&d#"l;[?NBYYI@W[.'M`_.FtZ.#kfeH1DOWp"0]s\j8~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001019 00000 n 0000001154 00000 n 0000001423 00000 n 0000001528 00000 n 0000001975 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2027 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/sample-shipment-chinese.pdf0000644000175000017500000020667512032774153026755 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2+0 10 0 R /F3+0 14 0 R /F4 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.727fd0cdaeb8d46ce9aa0763629135e9': class PDFImageXObject 3 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 219 /Length 7013 /Subtype /Image /Type /XObject /Width 729 >> stream Gb"0Wl#,T@&jYE)s-NFei'GA&gJmPJFhYV==fd=?(nd(?HiO-Hzz!!'fYJ%k-l"TSP8aIcg]k61hc0)+*HKF8(d!(\EHKQ&(8!!':22\7Se!!"-po+Joo"98GS"C=F)O8o7\\YMk((D6]JE)poaiBdSG!<-#H$/n2P!!#2??:)BkD?Bk=W7HCopd'*s!!#9_:m^<,r!3bhF7"F\@!WW4YmMeQumWJX3!3,Bj6_a#"!W[b7m[HP*mPY.IJFC'f#7\7K%KHM.X8>B5XLnE2!5)D-/RX\.;#gUc0&9n6\[j-j!5R^-5P7*[:C.#O$[$sUpZ\7d!!&ALrhT#64ZrcF(@1sYhkPO]!!"S!rTV$ppJ_.n=J5P4ID>1V!rt#SpF#fC\u,u;^`_I*jnJ&349,B+\j+1/YO5VXihZHn!!&+Zq_JVZmZR\P5d9ZP.kJ8-%7]8<5_YO2#-.N9,"qY:6F6EVMS#o>_^bncKRF4_5ketZS+dn]ZKa(1i?qq\QpCFh_`HU$$Ots64DIL#\:J##jNM!Yq-+5RFe:FRHHFhgX7"sgIe/;(K5'DE%X7,#E@CC@;c-TUopu$G%4;AoaA3_We9q=ZmL=rFm**5M5cFQV_s$+%(**4trmYcVFiTI?`'t-\\Y()oj*_,^U[A3o[9I9IE7u7BZm`?@WPP>JJcbX5%k)QBFsu-,c%:#nL_fq@UaO74I6d:"h$5#G,H+K7\T`Cfp7K*e/A$KAi+2KV+OQ%N3Bm6KQC6CpfCt/E"]i"_r13PC=E*aB(@dBL7gq"hf^c[B_qf8]F!D@Q"BCA_\MifZSQ%,R^/Ia>]"LR!(b*JU'.cL^u*]Gdm,(ms\jHcPX,UVIX++g@F@fD@!_Xje$'POtW^o9>JNXT>d;MF?X3cLC!I<_G'kf$eLiZ+g:4P*)s]A@dXG:\d&^=eGWY/WM&EGK0HB%#8H<^SZjR]o3R41o%uA]oDpl+UB[U]IR`XFGIj!?3PYNl2O&A)k(1[aORFBPp+<0&`tN-U!3PYq".OBsY8+Wqge?Ij_k3t*X,Yag!/('h1!5L]WH,O;e/"QN]r6bLa3S1&pV%Vk;Z=_CR[nAo$4*YT=\aJZGgaFc6r*bh9U2#m-9lpq2eCr@G7BgmC"?slk5[J5(t%I!<:LGHnTPJHSZ/^9_1=c^.VE30,J^1!BfRpf%7F5[i9Dfa,2=qA2pg_4/gFAJ.UP_r;r,dDX$H[P;*#-9/?/&3P5Yka_(i$6h`ZM1eI#AoQ0\6(nS:6[isF:a+#9"li?,2INJtEC"eG>N]doiXXBq@)f9N6,o]V0sFr`RHi'`X81#Ip!^R^UE@r&q@?u#mak,QGom5K8i=c2ED)I2CoO4iIftNm(e"7JHt.%XJ;q-I3U'K`(t^$^r\[\4DJ`/8OJHi\7nYf'/*K*GRCZ`iM6sZ$m#NsuRM#grY/eriQC`&h9mn+l88UG=/\5:X.C:D)mS)Y[kFATnF+2D,\GVE\mg0eR!_1BAGN4>m1OL!>ImG!fJ.k,\O5k]57iObhqlY[hL10%YSFC!BO2C2.8)rcNk19)[KL,TnmidIYAMjNT(`)PZ#qmY*X@QA,-Z>Z[o_P\D]:U>G(sVm:pb![!PJZ-8iK`J2$K8kEjD>=E?Ej*`]6i*m/G5RtIm]&FROEY@7=`W.JQH@+1M4n6S7!M*n;[[>t>9pBP%[*ScVf?9n1+n:\q7_5oBGZ!DZ<&*H'/b9^R+];#P)_;.*0fsG)kB=,<32\6b+:N-_"3$W8m`#RZVYW.EUJ76,POC]+Jd3"l,(NStY)-^?+r0cZ=]N_XmW$?(S;AZ8$q=aIfc[$C[0c`S6W:ZMj:2-94A%UV:aq*55s"UY^Xc?U4LQbuE&[Ub,oLEfLgY:Mc3]]"2EcQT9kOlQNrf'fpgFm3=Mf6$&3tG`V\E:,kT&$n(,_gRN2Vk%J'R9OM&]hLM2)_!l^\<7%/2/RDo'"<.l7+h\1B[.M:uTdj&`"F1mfH[%JQI=](!/BE3WF%0kk;%N\A9LrYg2mg-Ko(3'Ik;0?1(Sf(gfK7$'bkF#.NqW5=jKD%"!p:OQdnjW;aj:ntSlfCG32or%^@/J^!17Ml;d3G@^Q*ScVsQQk"n1;a(5*N7>2K=R8F%b7Un*UGDHEjmqkh'JM1HhGGF,8eL'[^b$e$`^Z?]dfap7kiK1`l7Un*UGDHEjmqkgpZ#=%-V^!M`$&r\lQ`'Z-aZ6g!B5WM6Pp*8i4cT+Q>PBjaL^"$NmqkgXaliTNZj1b@]=OjTdV\6mg`)XpY_@eROG4"3`YOQ9q\V+WK7_>A2Q,Em6iPW7a*'eil3E['@HlDW.]mM-IPdkfr^5>=Z#q-uL1jDFq;16J)gf5I2!;+QaWskWRAtS>j4EY`M$C(*SbF,=#o[%B0kQ4G"e"gr:794:qd@KTlVAa08=>We$b".54fN.?P]pSlUp2ZFhFt9`1>giV)VOTQ<2VBJAXOr)A<\q^cBcOu1XR\$Td=Q\e/`K#p)2!WX).U>C-'(t,umR:pRT!<?07(P!:Za,0C$2,2Fd,WV#IN>`teXTO!-1AN>IQ;kF)\d111Yu^Bl&`5T?6&u-.J4UKIntS>9,mY?keXq9nl=q09(sRlSCPK[T)NJTBIOg*5THZgDGI0I)SC$U9lG*BYU3-b[PGrP@Tbk3Y%QOM^V;fGM.YPJ_HS:mq-@/Md)_*&=:Jd6B88mLkePX`/d6$&-RgXbe-hV_I).30KYl:$&ul?qB7%Bl&`5SB9f4-WH`6O=`6_qs99'G74rh%D,#>jXf1#\[QPRf(JRVZAjhjM(I=]')rk;$I;@TA)td+cHh)1=6=S4aP_!H-\CMD4N;RLs11X,=(WY%;R?s3:$-N*aP`SHD/+f*"\T9c"K(fqY7@V?^Gf,#=E;LJ:nsq'D'muTr:(4.%.-1kAp_374ip?,A)sph*ZpU4kGY&/F2k$8+,s]DL*_RS22R$_FK!otC1-!Y_C`&LEQ5I>f<4u;pT^j1^lZ"cV6Maq=XK3UaS@je(LGJ+3Fbs4m(A*^;d68!]*'bVs#>Cm`klSG>@_C+N,N%*>56j5"8d%m+e?_J@q4T*9I*ESiDK0t?I6SM@o@Sg]8(Q":U]g9)rcW(0itJ_4003,/1MrAfWqo1j^2UjBCaL'(qD12ahkrjjKH7iLNCJ2o%8*rm>dcSjZbZA%p";,%<)Hd:2@BjeW;I6C09b)kcHV6McGZqP;^TJggu_So_in98(U_6]nOX^RRG-&:R+lDr!.U(naIOL)(;n<+mfod'>_6^j4*`l?*K19iupg;ngO(N5GPhed35c]5$5L0[]D*0N7]YJRrj>AE^EZ-CChqRj!Za]BA.S;`(tWNgRfjWF-1%MWQIZpb1KX0iO%40$jMG"Gt[8D^G^$JQ23SaNR7@NLg\'n4fePN8bQBhl[aW79J2&$@,4>@d64=rY;aUM?o>Qdd>DWjS]=Ie[o-2eVDPM2iBlV&P&MO%O#5]\PS2T4Jo/+`04R4g_^r[&R.fJ_9_$JZh?M';k,hl\H995IW.[`[/R:Hm&\!isC8ni^[3"j2SpgLFgO]ccpC-f!Ti6Nk;G".'j>M-?W*i>eYo$LO"li'/hnFjH/14Hk`chh"62oia38!bF_]4M8,Y$Sl(8_Ym3;78V7\Fr1:e$="3GbEg"F-(fZ<=^oJJ]MOd>3DSMHg*@3bGUJr$J]],SSp+VMJqT>raPcNk/]-Oqjg85/Z3jjrXk'aG=5i!sT=.8tCYg8C"+_,5-^o+-as!2qaiA&u#q'SP_;A[BKZ=Zt(ugT^U,B97e<5=:+sWstMpr4>:@Offc39)\BRVGWTaJ)"g*20a]q,Lj,J*8C\2T:+l76DsG])Z6I]c6413E9mog=[a8..39KEK#/]VmL11;o9(;W'#+!8p:oJ]=`]8._pJ!:XU5W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!5,6`Y]kn.70!>#W%YB!Lg3@K!.TONk^M4c!'f]H2un*4T/H\b&%Xt85b7>@%05mMmZ.HHVu(01zzzzzG5hS%PiLX~>endstream endobj % 'F4': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.727fd0cdaeb8d46ce9aa0763629135e9 3 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 19 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 17 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.727fd0cdaeb8d46ce9aa0763629135e9 3 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'toUnicodeCMap:AAAAAA+SimSun-0': class PDFStream 7 0 obj << /Filter [ /FlateDecode ] /Length 886 >> stream x徇ヨロ伎Hニ{"3lュテェ浮Fーオセ縷キヲ{m閥}ムo?kタf uネ/eイ*諍<ンコ_モ蟆nンヒi> stream x懍シy能ユy/コ9怡讖ホTsUWラミc\jゥE$$$タV娉 eノフセB伊 $6%fエ紂 ホ Bウ%:ア, Kケォ^$fンSユR 羮キヨ]^uラ勠jo}テ9#дt7簷トハォ+蜀キ猜!x_t蜊泗エョカ х烋゙7臧!~x塰kos耻pノBセ罪゚゚0ケ 3ヌ漕ミ}蕣ォ'C+テ>レ_q7゙リセイZサ3金ーxフ^p圏 tu%K裏:ハヘシヘB或 ツ'/タュm 悦Yエ鉅\ 0^Q$!)H_ミ早LサC.随「8J$J。4ハ,ハ。マ|セ。?0XHラWサゥ>2ネリラニ汢=<5鯉漆瑜xナョ鎖5烈試 拂]ホ」 8ケsRス[薺aN6yOzシr{`_cレ:ヤ\ロ」ミ 搾ロソz゚,m'm。n9Bケ瀾駕ラス鎹!: 「^Hリ^ケチー(.倣EA4部亟餡QDYアスク.飭亡5ルョ-ネb槻<ノ 8ヌ黄イD髞ィ旧x悧;JL^(咄ァエ襤N9Uチタ「ャ毬,nンセc茴=:{s]ョ6ンロオチg セヤハ琿Xャヨ憐=xアqノ5ニ5メワ η サィクHチ!ウ#ー ツ;嘉m{{pOサpーヤュテ}+`m>ーy`p*8 Vキoト搦フ5タ6ヨラタク'E|8t/7゙亘繚モl9ヘ凌jmル#ェウv@ルSオ9ヌヒエ\ヒ,P*8圸剿ェ僂「ヤ<、コjア#゙rャg-?n:セ纐拇顋a:ロ昌qテワxワ繪マ5ラL゙?t4 ャヨ/セリセリソ(h3^:蹼柵チ。ε?;f;[=ウブサマスイwメケケ磨ノレn8鄒゙セXサ怫jUロモ谿恥愧qメフoyy鴒、=@c橿u」.Oネk腦nyJ】8撚゚ {交jno]ォb暮\cン跣Fォs&、Fソ+タ^」ルワh\Gイmシ瓰 タBgptAーlXサg$R[テアzmS梱 Kw甍mゥ;`オ#ヨW寇cjトネ QオQm 1_ヨユh犢liケ)ウZ」'%ィV桾。 (檻.・'ンユmm:y^$Y界.VハEオュ*pム詑クャコ.鮎ト|ェー゚吮aラト `ー」ウソホーBg角"!BゥコnC_um 覿[$Qルマリ"9- )9ゥOZ#MJOJ崔U セヤSax。<0 \1:*テニフ冤 キュ1(L+枕R.゚狸 "、[!&祺8;繦Ua<モヘアHk/騒ソmテサ!ヘツ)以Tdツ l汳省愍 セ: v{コq:ヒ23Yニ稀・顯d7「伶キu}d冓蛉a2Pオハ"(ラ疑Cc サォチ譁晶カ>-コovム ?ヲ?V鼕リ癌ぺスワス艤髮XツCツコ@]蒲 +(E4ーォリUヨXNッフ 3A-゙>oy攣>ホ儷ン闇 モカ,?t勸Rggゥス鰰ホr_oGGオ1ァ!^セ"}-ワY・>o7g18n カ)fA5ニNノ鰌&5N8スox v@4鞍0Jヒホみ\。ネハ Yチ5斗yャ億oサ)E<ヨ磔'’pス檮サャリ ワ郢/q゚\xワ)y{ァキ?ルGl3,オ9ソァI、z>[0遁d59杤兔拿崗+`我sノ$オ$Nヲレ藁K^!フリ@$ュコb&ヘ6+獻t5ハdcン陦脯ルj惷゙ヌヘ巵 - 曙^7,Kウ)t坡テ@ユメY~〓q「リxmン翔tE$P キ」jェ F.ァbv&竇Epマ」ヌメワメ=巫ヨwミノ/ワ_v+ス、キ'W\s剱ケマg鎹濾]ホ8 {J@与フ [<P"1Q?タ"c /`u〕Yロ-アチフ繻ツ" bロ阪ウD8}'ョミDO ゚櫚ナ揆DタP2`ト3-j5"4aサ。iヨ@,槇|<クO脛4f$ヨL販Xワ0=AJ4c炸!BオケVョEゥL/葎シX戊J2i笑(イ4/lクY\s鬣'鵈*。?ュナOcョSコチソ!アッセ9トw;[ッ|ュミセ Kロウル\&巖u{-ヒ[ト'W澎p8r%イ<ケュケl>d槧媒2ヒeヘ]菰r!霎Pレレラ、rc]D蠖{!壜ロ「タG)y含[ハL粨ネネメXO8)cェe屹jQY8柔N蛮t侘yヲ(K#0ヒレェ奚 : ラ[n淪ケ,閻チfル ヲd,`:9ハZ球シ8AQサ8タ」Kソンカ($ヲ"欝赦[bクワ鴻右Lヌ齠;s/^釵衒ラ・ヌヌァソ-=敷:キ#-゚'゚ォ|Iナモt扣*7ws7JWto>OPtoi|I*ヲニ・m鋩輳 駛疾%韆セルウK゙ヨ幵チ檐蘢='芍,x冤ヤリ)イgsマ゙棠#=B裳嘶X@詁O ロ_、喇[4ァ楠撮0[u g!Tモミ2+3レEc4bw+で"V7N1ノ 凜|旬VフCM_ シ稽f" 貌ル1+4ュヌr]S)ヤb延m2t遣y枸xョェz定0テhセセ・゚ッ鯡NイウイOxゥrソ・Muシ近SケCサ=クュ+_ゥケxm亂^ナ]・\\..{]計鴣 クK・ 廼1レ鴪フh峩)鞍3ヘゥ-勝鮒1縞恤听ナtィ棡H>吁憔 :UMx3Bネ@モ鬥5冢嗟ァ・7ァォM[ mA3ナ発崟袙Vメ a<桧10タテXワ; ・鱠9T亅:k咤/c\ゥjV3ユs.コ3ツ@ カ?9sm<8潤2畝モv瘻邃テ9 qウ(c「8ミ>Nノaワルlワニヨ覿ュ5径p諳tvリtC滋ミ弍[ヲェツク@fN請'Hワ@|j゚-n q8)"dlmアTcア@」j=6vc]>YルLUコ「(チ}27裳「甸uネネ89゙bオア淒RリC!|M-オ.マ?_シ"ーy櫛。ナi速キレ;=シメ{カf<礫Uーリフc脯シUー*スモ{ {絞カニ昂XW礫|[3癲ワ+ tS=2|'".%^セ笈<稜^逋%Yeyワヌ?・H=逎(N"x誚ーモ゚ゥwユ/${ワシLiO驥ニO激アλw慶アcIテO笨ア6ア.燵杤ミ`{.ァ「環  P +dォ Eb( nチフシヘュ =倏-ョヒォfaJ8!B允k貿ア5ヨ5。ARN11dサ ョkヤN +[(ノZケ)&,Tc戝オD ホ辯 ャTネロ1ラ メ躬ェKDB$拆テ。4aケ cセw!ソ憮D.7メ隶z>iM=擇? W8キs o誕3ア盟%o$T~GeM({QレBィ尹n#'Dヲ.犲槫Wワ$ソ過ルツQニ@ィ蓴緜{A?「яセムメ鰛キ4/dィ!%Eムオシタ ャ箘$ラルS8セ寞ケスmナホ ニ{ノネカ -Yミ@Oャキ坂aK レスチK。t'wァUォ盥シ'テ<ハロQ~=|WX^ナチコ#fホクマ?マシOァウIァノ,槎簣ルゥ,殞q8ィチt暁ァナラヘノ皮0ク僉セ*P* ~f%ーウ'[l/tQ―ヨU畏令,ャtv河zヒGtフォョkケケ ゚萓Yリチ(シネスX8鏈ヘル9ァォコユワ}9ム.nC,矣筝コ梛ラq>ヌ-メ0aigEリホ」v亳 憂u;ニヌキ眄カテm3m|[冒ウ@lョユ1ム1ユチOu潼嫗D8MレGUァY%Hアッ)坤モソne:#マ 0KYヲ廱エHWィゆィ)"、綿RメI(ィラL ロ8悼エ「 穐∴ロWnハD31イ厮。ュコ鰯罰テxム8hシciFf梛Sャ'掛アィs1n盡-lEョ窶:iクVムホ6q9ムE/`君 錣u樮ヌキ擇ナ幄鍍3l泛=I。_G$(トヤ婁!北:-ヘ_ミj、洲v:M酢H俳(/ElYvホイゥヒ0殄レM(霾擒Uエゥ゙q/~H炳クケ。srKロ/ヒ]ヤ~gQ瞋ァァロw。ハカハセ o(ヲYフ"V&ャtGノシ,カuuフ シスレツ轎杠5ロカц゚ヤロ6`゚>ォe緒ロ9eナl!网マゥgx^d_「.含$リキGrBトマ、ユAyF核崢'テル> 1徘ヨ8鳶&gウ#@4垢ュ ou゚tK覲キイ}lャ+!蝎eオ1dKキ「9ヨ?pヨ賍暸ワUマ゙)~シ0゙セイクイエイ|mMー ・キ誼訖黐o畳ク減[|S|dヘVォスエW鬲J=侶ンミ・カッオ=ロカァユカ涎ェMn芹z.ヒ)l~Oュ/b紀RO^「スUアュGイ筰Rgr[A c-カ求、棗ス==弼・*。Yチmノョ窺2ルヘヤキクVにョ5矮)?駭vァワ.qOルキア那uY2、j詳,ワaX0Mュ驢o*アKィ%L7$リe笥ヘ、ソSー-uメ=゙ル哢レ,∴ス祖』榔メナ 叶)ィシ(ムチ鑛"セb 荒ィン雷Bウ.モアI{uス$n庖ノ蚰e!p」,Kkー0ゥヌVK%ー┘遠Lミ ・LOa矧[諢9eS&Is道vOYeTb4欺ツコM麟Dオ杖ウィ$iク _ロU))マラメY/フ・鉤}U」jVュセrス,芒ユハuャ/ウ+ソlシbスZ~テzウ樸~7ニソ孥ゥ "エユ(*ー゙QCケト^@ュ楸mヒカbゥ\。售ヌナ補jqュxミ閃フ炯ヤム'`∀ソシムfbEAイイQZ1 ツz8ョ 'AEル',mマエ症q<1328c・2)$: M-`フ#Yネテナ54e,1フャ)メ鬟 ミu斎v$} zヨ゙ャiノ菅jァ儺Z/彎 kMLンサタhqmb芒マ薦Mァケl5ツ滌ンァ゙{ナ=c|}潭「>ワm蜉gXナ崎ヨ箙ュラ禅G綾=曖;ミ紹OムQDーキ浤wロ?カfハヲ_[ [Cホ@vム2ミ11鱒フ瑕jマー1cpFf茂[2+39黛3;6IdアHシ⇔`フ[ニ)G$棗1゙」 シ索Gァ掌胤!!メkYヨモ煎;H{5Gゥ"4 ュHイモンキ4 合;Eノル゙ーロ[ネ幀聯Wョト qノ|iHY^籥゚?ハ=ヘ=ュエtケ・ス'ス, Y7,mB嶬)ニi,q_7ウ>ンYャ`ソTY#ケヌ9ョ"藝カヒケ0ネg繪フ・]蘆O{w・メQォ眉aフフ'l゙ヌ訟ボSdJ}-s0u,)zG珠!_d)Bヘ5CXqェZ刎azォ!. >「hウメEVヒワ「ルエ苛g'7i56O「搦Dラュ沾慮ヲqマモぴ普}mミdレヘ Dク`)^ナcA(:セ#,ァK3ヌチセ2セ・ム(zョセ袙ォチK揖d5>マコ4{y發ヨ菖ァ餞簔トケラ+ッw堙nO%ヨケルs K概脩Lサヌ冠o壷v「QwS逑?鵈E'I簡ャu既rソウ+穽y「ヨセ t碑ョ 'b*怩 」Al゚t攪J\;幤礒ヒO牡サタ菓ア 洒_ラG!培鶏|-X3ゥン=/op? ゚釵 ゚Mhハ^ツ繙ツウe鸛Φ!シス缸ー` ャ メb覇総?T訶 (Fv+ケo荳\ア診 U%Hクィ禽ウコX:ヤノ&V'ク>著Ip セミイK盆nuウ8叫ル&#KB削Β1e家l*ェアゥ杜Aヘ 渝2cI7(ーンrフz:筍be$メクeロア4'f&)O:8マ4Uラ丙、タsSb's,g擢+踴.9#ホ2wt@Q峡ネf#8ノEヒS 勢8fキ?`meyi娃Oン゚イfヨ〆ラ~Jハル右Rrノ nェ$ハォ%A 称Rh$q鰹K%ゥ戛゚I7gセマ黼.owャャキヌ゙リ;ネスァル徃sI蜩?慰$ナエヌA]Uy侘4Zeqオuリ[气ヘ狭r鮴4庸W`)クハ懿1-5ハ? >ィ 8ンS諳Yマxウユュoヤ>鎌宀C"モケoS超$Daンレ殻nhJ7pセナ5P+Nセ=ツヌ゚ョヌ+ォ否萇范蝸縊ネノーネC<ン x畑 <ハオコョ(イ竇ヤDホ舸磅ヨ Kャ。Oツタ村i壓TL姻'+}HヲイnW臾トユロ錻袒pczッ"u 9ケュヤロ1"_\;h:JGユ待2eY顳B裘メUオハmV6uc骰=蔬裼u恤ソクmMロdロヌzソンサォg:ァホ0ホ0コ;探抹2[ナRケゲ^トJ册ィ ニY゚!%棚_リ&MS ソ'|Ix\xF8ゥS/|d」エ4ya莽Iイ,yQrc丹「\ーQテ嗚CクムGtぐ。メ'鑚TェR=L9塒!サ琿@トl=>;J:ゥ>ゥnwcノヘ忙「aVヲ紜衙冏ラ 3srノフ篇方ムcx歴嬉r8e厥庄H\垪 ]ュ^Qセ}'Bユマ稻3蛇%トRU5G 劑D"ヲE、1[.iq{x6Q/ォ{nツ|ゥラ、憲'煩D。(]マ*$rzsゥ||コ鰡#Jマ*モif=縱イ(ァ!ヲモヘ臻,Pョフ ヌネワe' \キDLr゚ミ靆MルZ}吉7{ コ鐺B、3ヤn.3/」垤モ肴#ツ脣Sツウaキ#睇甌ンコ絶/メ76コG)穀b1テ0512w/ヘc&5Y~U・フサ齪ナfヤFカI ム レJqBa% レラl<セヌL襦#Gノr,ウヘKtケEuヘェゐI「vル*ナカq[ヲノオ}+秩_nBッU殉xр%ナ麭,|鉾朋j~-OY曲 `アンXFbォY:Y`nXO゚Mcッハ蝓ウ赦シ6=0(・モ.ヤ備9タo~bo「ィofx均茘朦G<サI゙:ホJムoタモaxb ~4?ハ~3Ωマラ`゚輓チシP坐v鞍゚~サ颯ハn8ラ羇9ホ-ノケ.妖3o」サf~cカvウ>-ーUュ"{ャeンU#[遑h9Aヨ◆xャル5^テWラ|<タス謫oニ3*|マ)wALスwLЦ5眸ワdモョwwコワ市}'q旄テヒーT|d炎ユ,s}'~+,v1ソ縅因ク|@AV皷 スツ夢リy{"涌:モムトvxノ~景ミ。C呷9bヌ4#テ貎KQ55ZオフZ+7猾I#キz Oエェ「リクル^ルイ p1ラeタ唄シェノ者籾mユ MムUタヨ [ヲアX稙ノPAhV6)ュ湛D;hキD!ヤ=+ル冷Kロッホ\僚7sQ栓-イタソタニI.Oノ$剩HロU ムVkm亀准歛ヤhスイ笛Vトkq(セ |ウ Vト モh|<コ?~可Oンネ覦 ァレィOk-セ窕IWアE卩d2モtLンミア。餤*ME沙TBTオ糂0n8'^7Bカ/ケ9マ:・μメQ.・メ巖サワム盻X(eナ=Q剽゚9e篏kj{壟シ杪Iハ~ッ?株ハFーシ!t琴キv>カ|フ烱ウ、スキv+hャηl痍臈ネヌw曾1V4モs<#フca*レ1v耋% oDM~メム8モヒ、窕G。ゥ&醐v牆zム渣?。ワgネUメ]ニ]ホAAネ%ルフ ワリレ"#|T-E]K2LTV&アキナヨJ,クX敝ル<^"Z槃G+kMX彿Y0sXー<3ーyラ,゙8.ラ觀Oカァ3サ駻 謀レ湊$$R1ノK*PケHTOK4пaエァS,・#フ=?リ&1Ye4iエnケO{ケ?迅J/J・」漬//妄留俳漫ガ%R\テ爽Prb9J jク0ソュOヌコ= 章$抛z6'p_'\惣」幕矚ュ6ヨ7%}ィA戟κァF屑ヌ5リ6フ枠マ メi/忙 。'&S袂医噂tTotKvn雷#囚ィせ桃ャ沛ハリ、nシヲヨ>ミxM,a&チ7ィ芒ユヌヲ ャ!脯XB勳レヌカG7ツ憊>リ凍p杠(,ェ壑ル)壬+嵜ヌ4):A0Lヌ/oaヒナfo1stGEg。巾サUュ7ンwュ]ニイヌレ散~オ襃_D_<ナ於/)ゥ}K}}匐幟Vw惱cみd*}U放カ苓鉈;≧ヒ曜ホxヲiシ)dzszoz*}$}"MモA402Sf"DT$Q゙ハ銓}yイ9ソ7???ィ狢akCxzMルリロ$B|芝廩d doX「サンdv゙soMn&*銜シリヌHヨ;':ラt晧縅オ囲bカクケネ琳N,\ウ神\*y 5KV愧ョR7-チヨ爪沈%駐rモ`輊cムニコCGl53sャEi4イAQタxハネ7ヲソAナヷラfoy3似ィ 7s{ヨ) 、鯱.Rp|(謝Z「髫レfィuoンヌ頽燵ヘ>キ鼠馬Wn6エж/ユ」ウマリ@シ⊇「牒函イ[偶イ{;Pシ(u%綰コ懦ハ6鸛97オb科+E恚*:ヲ[]オ耜シチ掀テ&揀ア6d|モA六蝎vフ3 ,柞 O嬰掴≠ロ.ァ?_殉ア絳];志+溏 'S、%ワx0ニノコdc`Kケヲ4#uリQz !aキ==埋゙$m8衛q゚>賑Yoキ\s戟,T >ホホナぢクイ?'4・ュ:・フ路mナI5ルcMLナpMSvhク&l$B棟ノt*C!、&」O┌ェ5ィ nCキ?ヒ闖ラォラ'Hク>>靭シ桀松婀ョ WHw、ネCL/ヲィ]ク顧$,L!fs鞘ヨXQ Y i(+Yッユ渙9スCfアマョフV,理!!ワ{Yェ;~齧萼レソ蹕*ィ ^F 亠ュォ61XdXエ5;続US繁・イヲ缺「 L水「$・Sノ$ウコ~ 閊コ「ョネゥ芝」クlツ$廂ミa>pヘヨ^ラOVナ")ト22\ヲ餮ニ汪ッ゚゚泝ィ.qP 4EH0Pル.繆L「1∩ミイ(Oヘラi*顋 湾ヘ熟ンD/ヤG駐1M\ク2ョ.妹ヒVyォ゙閇」^マ{Um廁Bn滲jウワQW9ノzIZT」:嵶HQ耀w7ケb。イァゥ;{サP獺Q ZSZャL' Bカルキ=Hoン6。ヘH4Uラ5M` q<ハHGゥリア鎖タ{Yyソル*エョVw!x`ノサ lXLモM*SO傍マユuツ":)%覇饕タ淺コゥネ栂チy「Kヲ-\[未P#濮44{ッロ崎(>]マ<<<錮タyヘ9|獎ェz Rs51a2WCjb箸_オ}eヌゥ帽kマ孵u4竍「|ムV>*ホ [ナ崎ョ1EQ4N瀝テ43断ゃゥTレ Eラ8テqbヒDモ通"jユ'xミ;P/コソf俟ュホセヤモ椒=4宅2コJRqアカ些T_fxdロdpL ~挽ォY帶クケメヌO。gエソЭニヌミWカA槍G渓ム豁6&M3ヒフ%ヨ剃e元 IラミIレシy・エレマモルXUs゙…マ-x7k哺MねkS桿迢ト6 V1コォ*脾ネラQマ_ム.[ハェ^認Oイ輜@ン/腴_9VモセMレィlT7キ包暦SK|[viサイ+a蜍ヒ緘彪ナッ。ツ樅ク2-)ナbケ4BG濃q]ヲ\リ~ス|]コ箝。ーィh◆悖ワ匯 rW蚣ホB3h&ォ(桔ホYホナホオホ, 期B; | ォl*rB瀦メCeフ`レZ,=TチQマ*諺ルウ*ア榕r"!アメキ弊オ5MマL'棊ク*qs簍憶CケGGB稜クxサネ'較EpVヤ| 4ユヲ2uiBZ#=(=!ヘH8} 惧ンラ狃0哨Bヲf。{ィU鞐. ャヤ ゚V*WDユRc處7ラ,t」,Nn"QV>カミンャr7衿」リ唄nkxウエキ^77F・筒ヘ赧邨溺ソユロrメh磽ム演妃ー屆ノ醺ニウmlcミヤ @薜毬,EナEci3ー^ニ ヲウソ h゚Uソ!,卯o驥o腐、了ツq⊇タ[喀:xaツチヌハサヒ/ャタ{ワ{盂F4|-ララサワュョr'zナンkzow7、6h \4富R+W篋腱J゚。%゙LuK・靤Vヤ KU*8[ニ ロッッ{エ-レ゙ハ!mェ゚オ#飫レ=膝*マjYЙP*ス#エgキアスc繚・キ検梅i「$ン[zエャヘ \Jニ ヒ,ウ8「ル6cc\迎摧コロェてw7」`ヨs哘ハLユ\'Hタ冊ツ&ュUT2洶ウ=キス痙V>嘱oAミ:0オ゚n?UR%娼X8銭ヲx襟「9/ト瀚ヒ"QD汲ミナ キ"ノェ蝌ッFマ"m!*泓;ケhソ髻ヤ#靹ネ埋マ|/)Kx hy,ソ[゚府ノx%コz1聨クカ*w?セ゚x,非]N|ヤxヤ|アサキvフソdH+r例U5廖 )ヒヘ」ヒ*zス iэLリ9ョユタ産Bw[Wンク1サ槃邂モo廱IRノ+ユK・5・ノ0UツV 憂=+・オメ]/ヨサ9ア侏・構Pャ2_沓)r、 $イイケ&ラFルスヘZ<聢コサIy]ウ゚8Y黍訣E&サユV4;ム;曦FN耙bホg^イS$ラ&eQ/@ョ稿;!4ニケ%QM^クp実渠SZナ,ス エ」'&煖込ャ;旬ノー~YM>Kョム$キ?ト17コeuイ崗B゙$ハ柯V流ミ_ヤヌt「テニ4"フm蛄[゚モショ]胱jX;0{゙<ナc &トHkフV龜ムh1キZマャルZス=、&zムメ「ャ;oYI7IWYクZキpュナ黷#3ソ 潛ヨラ;.}WEイrァMセッ、4鋪キUUc藁・j釁縲mH傍ノ8Y _K鐶d 鈍ヲヤUォc,メaュケ艦y 49ワwテヘエDp6%澤Yなヘカljlヺo彷チ掴ンミ「xFAマ凡ニ?ッnn ソ輦i扉-=ヲ1鱒Iサ`D糎ョチH+慓綻*ユI^L(Qトユウイタ+?$S綯'+」q カOmルイ゚CッアG苛`e`dp枢オ」Em_#ノ?'W{ヨ|蠏偈ャトマZ=AFフサy匁.。n4Fミ呵<エ }セッP#]dヤcルウヨ譴V<8怛0h、Tヲム2`gヒ炮豬#5Zf氣ウ「_*唆.許゚=洌シQヨ・K1ムメョヒR-セロRm^メ桧hr$アCV4ナ蘚Q梨甃 諚シgq枹ュ]& }$ゥぅモ4-トX,rェ「晩dMクィjチ 垂bメタアヤaKuEァ、,Sゥ)ヒヨェテTg 玳惆ゥr_jcオC2レ纓zZqFハd1エw(Zク 霤hRnQコフlbDZ=カト6:メ$ホHD.カ」KDヨuJk#lォpス濠Zィ9ハ竹fィ痃IナWコ}テu゚%]Nザ9Z貌Wヨ、ル儔オャlク路懃鏈Jフヌ会AJ/=?#.キ!靡ワаエ$DK、Wホhル フ/ミソ「諭ヨ-ZミH査ユ\ツ ワ贄杏-&7マス@1Wy舂モスシ・ゥd筏5ン>W受菟|:リ順JWナフEj アシ架C$ogM7チヌイqウ,ゥ芹%>Wム\ョクfゥホキ ネ*Y?Rィム:l碼テテ'ナ ッゥチモll0{摘&圉[kエ訊袒Jテ<.Cァ,ワ}8、^唱:KスソXャホ ェ蕋モヤ%\`r:牀\Lq元M 傾a`lx!B-9Vウヤsn ツ<゙NY齢t j*儂偬Y゙?ル./ァR阻46 2uニメB6垤>疫!赭戒`嵯E縊 淤Zヘfモエ&尹b4カ)記aツ媒゙mサセソ_ラujメ゙ク*j87M0:ル`&e-ナヌキ$。+<ョd7/006トョwヤV V岡|jヲNPーカ粢A7}N4CヘUo!ぃ8wr囑聆妹6LンF」)L「6瑜0ヌ_(ーh-ヒ,輕タY6+贄fs@hカ-ヤ"A考(カア##&P2・L チテM>ラ(Uqqミ5-ィxby瀉キィ嗷ハi ェ諜xQ准シ!リ6t[ィvヤ違7ェ侈`Uィ゚餝ォソ?&:ー+Tqロ澱丈 Wスj靼 A1コチ`ケRテホ捗@*@ヲ<4ムLオルォホサ肖埔frDn0br燈'uイヨbi髓ヒ5チ赤腕。ョ∫ャd)ユヒ`&cnwネ坪シワケス]hォム *スU4Uロ,ナ4;枇RAャ[枩肇[Ns0ョ_」W`\エ旌混ナ カ腿p<SゥュhrアアB膤[Tu洪価L-+4{;gtPウヘ)U駟>5涸l佑ワ喞カラ=サロU募クメekヌO}>Y5エ?靭ラ\3ホ戴П抱ヒE粲チXek」Tオa<ケムRt9XB0#"%##ロニ1{v^Q\EュネjL桝偉D+zbg fG ッe>リサ 4揩(#蠱%x侈鼡1+,YuiJ)$f(゚ヲx槎=モVェ+Bエ2セ#敕ナ]U%8ン姿i;ネホ?」`ノG2jケ^kナ%一Pエ3∋胙ヲPkCユ セiUb%#オfャコ.的i-シ*vA#チィH"m採ミiー+`G釐ヌウNヲテN1v.旭ワ$KN ヨ%K狠マqf{*ヲ+猛+官・yロ成L'NXリ4ウススシcK+ワQア コメアdメn*ッCャ燧サ`t祝北ィ<マ切ェ%}ー譲ツ俎Eュgゥ3゚ル0NUo憙ヤカ:jゥUエコィ&Sォ'.(ラ3e]N@彳@$ミ;ラo棡kP、oヲSル ク蕭fNッ2ォョコM1ユK鶏o%y搬0衢・意彳{ィヲHnhッ*CPS-:コト1艙イJ4O$M1ナJモォイk麹ィツ3戔゙ョッスz緇ッラvラnヌv^n絅q売ヤqC[ラqR7云オィ*腿JUQォA D%寧ェ 蔭ィPTU%レB。 、 5B5g賽ョキ「牋ホス3醫}フ撕|gt 徇鷲Aッ+3倨`raルヨュンケ値ミ?飮サテKi(拳sUン9Wハgj`尊ム<< 9ソ@_クj エ6xュ天g,嶐Qeリ暉Tj「2ムR ヨコYュムチ・」驗hタ3迦メャリ-「%呈ユウンアル゙79lYマクヲヤc尠ツテ圖蟋aUゞ俗ftEッbW8陌テ緕QャフJ6}ユレケIァ澑{ケメig[lu ;jqCィ54p嘔C゙ホLOヒ汕綮,オ8セラ>ネpエ、クヌニッル慈pNーゥラ5`豺ァァァ蝎劔イ忠莇~BソdD%ンs6%k[モケ1*eェ「oA]R゚N襪,憶返ミNizJR4ッ ォYテMwンPIo1%マ"蔀\タ#・,Bi%砺dンRCuyqム テ8額3l髢rQO瓲6[_ 88ェヲ 酢ツニvhEVFオaタサツP 絃fhqレSLsl<モ」z革スw-゚ヘ醐A948」9ァv[壇[wLアvァハヤ2TW*C .z$大bッdナCリS瀕81ヲ$k弟モx3C崛Oィニ「ヘLP∇8 cIL忌v綉チキw;ナホdtリエ$U奮キヲ゚`rrrnjj鹿ソ」S搗Pユd7[ ールーユ _Y53}z]n4tャタ・6アm准キノ8oウ6ホヨXーYメtォ= %ミ8p[キ込朸4m゙*ホe繕+Rモ>Gピsルェ!kル:ーhjy"Lャ槙ナ粗AモトQ5モハ)^クサァ礦Eロq゙z*「縁鰲\詢1?オ'タ午b繆ム枉ロ啀レ2xブ%モN b$鉄ゥjヒセk弗9ラlHtNIiizY&4スDロロ1ホ')ッ`ヨ騾N,SKYー:Y瞠ョ @`d「リュ.ト0Xp#yDsBhΜ邦Kd閨H 餅イRカリ怕アgh岶qヨ゙3YヒタP」ワカヘmkヘk゙yロl,Vメロ綢ィ笹セoヌヲkW・3セ=+ネ!ニァ@;モ@フタiZjFNモ゚琳フ」鶩ォョヌ壺jT辿 9潰ky藥}@。wj4B翔8wwキh斫ラェゥィ ノe`YoTVmGt クT隱ェ)hェ%タ%|ム%NFLGヲfHz6カmン3セ蠶p.)ュ[創轗ラ「ーZrアSメl゚イ瞥yョヲKbェ?,ト;、ナー_W盈狆シ-活ナ夲廈#ホ?ルwGay$璢マヨg曖hCエ円{ョ %q'yタノヘョネ橡r)ョ0At拾LоL|淤u/ァウ8聾PЁuクホ痙C・ 2ニu肓1"qス 「(|K~^クt4~暘1/モ>-; k踊ン#~慊ロ磔Hクミ胚 !ソF?細Q襄ミケワョ皸蹤ッ92ノヨ6緩>ヲ署Aゥヒ$臺Zチ轌」KGソo@[ラツe*ウ 燻K=η緡}}眩 ッ官7ト゚K鮗[ノ)yJ^,゚U朿5オョセ。MjWロFチ8eスアzK?y ゙~eメニレ2lト#;vエ鹿^8vy靆ルヒ逞6Nャl\\]_局ヘアKァW.,m恚ラマヤ=+ォOャョ戲Uエ マ/捌cセ> セ*{ t玖4Ρr~tリ゚2ロメkPrルレソ: ーセ %撮ウ:叙燔瀬1eWルム1 T針 汽{&;ヨム齔レ{iロUリw。ッヘC"菫# }ホイ;ワャwxU-ヒ,lm'積$淮V鐘孰猷ヘムエ゙シR> endobj % 'F2+0': class PDFTrueTypeFont 10 0 obj % Font simsun subset 0 << /BaseFont /AAAAAA+SimSun-0 /FirstChar 0 /FontDescriptor 9 0 R /LastChar 157 /Name /F2+0 /Subtype /TrueType /ToUnicode 7 0 R /Type /Font /Widths [ 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 ] >> endobj % 'toUnicodeCMap:AAAAAA+SimHei': class PDFStream 11 0 obj << /Filter [ /FlateDecode ] /Length 1254 >> stream x彳ヨヘn6狄淞ヒ]8叩@$%.貔@ョ」、ヌp廢゙セ>キhk チリ「、O」瘰サe|9.ロン釋zル>誌鋏シ_キ゚ヨ酖q腋ーソ|~ヒテiウサ桍vY_セ歐7キキロンラバ烈ヌ押溥/?ッ7サ゚ホ壌p|蛸モ魃e=^カ7崕サ脣tス/ァ_^ヨ_テ9羔n=ソ;ノッ壌ロ饌ソ煮踐跏n{;ロンf=>逖溽|{レp{sワ]cァリ!=笄8 至#筅8!6ナ8+ホ銀ず*ョ'ナ筥ク!;筍x マナヒ5v;暼~'ソ゚ノ烱;暼~'ソ゚ノ烱;暼~'ソ゚ノ烱;暼~'ソ゚ノ璞{ス~/ソ゚ヒ磔{ス~/ソ゚ヒ磔{ス~/ソ゚ヒ磔{ス~/ソ゚ヒ ?ネ ?ネ ?ネ ?ネ熄G」(?ハ瘴G」(?ハ瘴G」(?ハ瘴G」(?ハ甍'入 $?ノ游O'入 $?ノ游O'入 $?ノ游O'入 $?ノ游7 ~那7 ~那7 ~那7 ~那7 ~那7 ~那7 ~那7 ~那猾gウ,?ヒ溂マgウ,?ヒ溂マgウ,?ヒ溂マgウ,?ヒ溂/ァハ^Q猾mちタ飮ΙタヨU?ホロ4/吾キフ:,猷\・p ラ ラ8F゚fョ#・s kイタ_ ヘeヲg穹Y髀\#*ヒツ杤==ラッGヨgソj梱gョj雇*~\3ラセZi梠キ ZクV゚W・゚fz歹碌毯紫ソ,フテDツ?チo楫7チ_4O'N・ ワk2ニフマ毘セク邦[9セ2'\w&ユヤ佚Nf\g'ワ9\:魃カソロ譏ォgc蹙αコ収6ヨマツ榴k懐iニ1フIヒ|苗痕點,冱ェ1ゥa^エホ\駢=p尓sz\G:セb~マ聢Nソヨ鑞ィォソu1コ堯オヤY±サg>#淇モ゙KgまIカホ豼w>性>xヨvソ゚Wg;ョG繙べ5S0fpzヌF`~クカヨOaェヨ菻蠎?X ゚(フ!{赳 ナ{ホ旃8クgヘッソ5誑ィ ヌhイ/ヘ7ェO\gfラル:クラ8椹囎kNW3輟テ嗽ン~nアナ~栩~>_キロワヤs3肯盧~゚歐O8 1{壗endstream endobj % 'fontFile:c:\\windows\\fonts\\simhei.ttf(AAAAAA+SimHei)': class PDFStream 12 0 obj << /Filter [ /FlateDecode ] /Length 26731 /Length1 42632 >> stream x懍ス{ラu/クョ]サjラ]釼ァtミM?ih閭@@-$ヤIxHヲAП"lc鯡$アアl;_Eコ q@ミ[""GアtM贊迚'h蕘%ホ行ン7ハテセ/モ雄サCH棘;醂iェN旁躓ュ゚Z{W0BネD槍FWョォg?_燵Kーンrマw晃ソユ аlsマセ=e6*=巨尿蔭蝟{_サ_;苡ナYスo盟セ|ケ!/ソルカu]ィ6Bソモo l7ニ帋Fxンシ=濟サ懶ト};ケ:R{нキョユzh徼ミw_マ?ラ已zイヌべ 渝3セ='吹ミ]/~?セ{,9シ^゚゚マ"#H゚戌AホR8fHツaホ;Xソ麁ィハ.]セ囁リ靂睥8y6テg+P/C RGメ &イ cw燥|E(F忍9濡TD%ヤハィ5。 元オ「*jCィu「9h.嚊コP7囂zP/鵑h 「h-D巾0Z喧迅)コ -Cヒムユt-コュ@+ム*t=コンV」Qtコ}ュAkム-鏃tZヨ」ロムh ン6崎.t7コmB嶝t/レ憾。hコン>竣「qエ F=h/レD。鐶t=~ :zlE%t}=G=∪」゚@ソ円 =猿゚F_E_CGムラムS陋鑛-t }}:晒゚E゚E=ミ=京C=淳戰セ截ァム :勤。ムyzス^Eッ。ラム鎬コ16Sx%^?べ "Rドエ =按"0ムWお鐸鱇>Y8マ'?s5Diコ~ェケ_9朏?┴サ。!ルセ 10交>渥2萵lb b PゥgNキヘYumW/マ76ョ+Pタ)D)タヘI/ct-ユー#a_@シ冥&>魯#テ禿ネn<ィTェq・ソF豌l旡オd麦ラ鞋材Oホサ、訃怯賓ナキハ窖eF丶ラ諜bl!言/クXラマ?t.チu (ョ1ャタカサ稙リ゙∞クア蹉#oラレ-3g;゙;ム重チワΗヌs女(チケlセ枯唔 ~HL.=Wシモャ黽8Jア枢 マ$サヤ嵩t冀IオUナqケr@)$F$蘰LkQ9H 幅n8 按3ネ臂テ螺]ohィ1F秣両ァヌe<&ナツ羌糸彡サ1働ソ7ルz錨 +Joカ%ミs#lAト ウ充Ycマレvl゙:饌pシcE苜縱NZァ賻9i:ムD唸・Ty緑謔ケ&<溘L木XF!.A 0>7ァ!冶ヒリィqウ)薪ケトュrィ営算ア「縋サト廁`磴p1P鑢2_鯤ホ禿bKv伽ニミリ`タ*a・ソゥオソ7z[[{テ(ャオVツ(ェ7ア0遺セヨj80彳ケルリ3V鏤n魎`:ヤTf2ルl。5履。蠻ト[.P3mンコョ聾ツ圭o%税^hエチェ深/ユョタ倶Eハ>. ナkノ yrオvュキ"\_媽Kヨノ鳩レZo]ク.^已Bカハ[-レokク5゙/キ,uqャヨ{フトュ宍h>}ミョ牙Zk1bャ66ヤ([ンVヘオィV疸モ[mァーp。驥m讖к鐫滴舘獨K5秡璧Dhzs皿: チチトX荘卯橡.陰ミs撤noO4ィT綺ッォ錺ヌス=ャ!WU]アヘソAス!營ア毀2ロネヤチ。「a3@/ヨx眞カャ戉イミミy ー卩鞳レ疊嘸KGムムワ3ルノ゙羶G[L汾xl矣ナエゥメンLNム婦*メ嘩改果映z、p、D瓮#7{ヘチケマ Fョ7ッョ門jeヘkテ孑キヨ4゚ヤuOvSas螳寐踐Wvu購*ミB抹rケ+ロoハセス^書j#纎awe{h・慢粒}カ原ヨキ"4$ーロHD;淀モヌChdrdx竈qリ%vサク會1タチヨヨ*ォ}ーオョ0`Jナ禀レV忿!オニホクャzFPt 刔カ驟ヲbk dYメ)景U-ナ亂x「eハd蛭イNネ{アjrIンァィWlNンサュ乎lンカYツd#`usチN ンR lメ@コネ。 莱D 幣マ9I$沫アVs#詮ノF2"操コ&擲ア直3|ilラチ"逧圜ナヌJ・(eミ.b須ャオUxウI(ァfタ 入ネ7&ン*m庖K裼ク契ナ驚l jョ*J2Pez} 棣r晨ヲ,チU祈Rヤルオ+VR>、g癸ヌqフL_cc_V昭J・ョdL 景y2ヲ嫐ヘ暈NtY轌9マ鯀ノニノ丞sイo1痾跿\牝xt、*ュKロゥI4弩ー#ョ+ヌQゥTチmゲエ<D テYラリ林C1Hマ岐 +ア-ィ#ホラサ]ォワ6硼dサシ貨ォl纛Mヨ6蹉bmA[B皺ハ0ヲェテ-]Sg`圍Bη>ヲxァ'ィD7リxハ}ワル1欸欷果4ト置 rマ思テコニタ~Cp>Oc'ヤ5!ネイxィkリq澆ーーx糟@攤"タァレォ ニハュ、]:クニヒ貍(rンン r3ィ揮Cユ」カ3棒ニナU!壕#Y髢ーラ|or シKdp/H#ス扈矚奠暹゚|:2會mgレキO“ツ^ニホph` g :;諦ユl檣SセMコo3ィスJBラシオkWヘtp 轍Kp・%オ2:nI?+時ハコ゚]7`メリ%ミ4ロ5)、}h5Nzクヤ尻Bケ7.w# ケk X_;s笘ヨヌ$_゚@キッチw6ユnレжH{.ヌォ、5v6絲ゥ/(ツホKメメK<)Q-xォ ゙/=次裾ナマKK:昵GノqPメ5゙・Kィォ+・Fニ゚ソ]ロ剛cェー=倅ュュオ毫_#ユ`。5  」kネ コBスFサャ」ヤ[エ}チ翆ウホウ.5「チ ス亦4k`N霖R%!H禎>鐸悩ゥチ\ア佰胸 pGーラ7576李嵳蝟。殕ツュ_qホ{ョ?CU蠏エ゚Eア(スノト F/・zョ ゙両@2阯 ヒJunタ9wテ9 オョEt銑zイ;ワ朔=クミ?f綬ソ汕Od}<鈬血=[9ハテ「モル モ3rH ェpロ森T3#y)゚Mー0チ倭Hオq8ソrミユ=チf*S1・wミ瀕黽fヌ8G卻,カ:N゙5#モVlネヌ~チr=筆啄ルZムcオハ鋩2==aキ'slrモ夕4|ュノnv\W┣紿・\,$+‥ pハトエ/6;臣蘇39gヒy5酣n6 E唖實pIY由コトウXOobs!eO]XeFリ(レU犬bl屹e鹿# 」 Xヘ驪ゑ:ョ蟶残Xョイ橄ヒR琵0M|X アォネΧニ 蛟yXyフ|ハ|ヨ菷k 樗ホ〉1@L鮠ノRハォ 7H|ホT5タ躑「!゙ 3慍fネ ツ+Ev&ゥ萄7j uムt敷蠱0^カ,醂3ヌ躙ョ惴ノ)ィtソV+ッ硴5゙fーハv{ウwズoメ゚フ}'gg゙^アP[/a TOナsf爺 D?e& ィァニヒ^q@5ロ:o梢@=森&1Rb秦bツ劍1Puニ@ツ2Δ^Jフウォ 8カL騒,`キ,」フ2フU・ヲBニ「8U6cナエnオ`%*/ユレェォヤ蜊キl」ロmm芙}ハネW/トO息゚キ}`ヤ・5D2vトpuliェc ネ チ崘 ホ}エィNjk@朏I箇伏h6%% H8p%ホd2b゙ワマm+腫g2nレカノュ%rロワWsハヲVハyA`E/9Q蔡2エャ襾クwモnケFkPゥォ% Kz苣アPニYx久}錬ヨ、(k'/L隷ス;サ粽セヤ7┨ ztC.B゚ゥ =ュ?m>>衲C11ア漫P渙0鮓ヨヘm帷l峭?"?「<「?bq{b#蒄ニ*クメK#査アQイoツD}47Uケシ(#bワCヘIタ与KT゙ 履5堕ルト8鍮2Pハゥf ォ栢 zヌ2フゑLテr粍[カヲルヤカ,ロ1Mァ?嵳eヘP=+ハ"ヒ灘pトh_テチュLRセw、ヨ{寵ヤノ1zL? 饌zリ=Jd9Y柄ワbュ荷Vカ@(n樹゙籥Fヒnネ尹、ィフ0モ゙ャサ^#狐(+ ウ烟辟ヲ^闖ト: &~゙Xe鬱Ljウ箘)'エ餓 '蘚黽i゚:aS」nrケr[En^"{/甄エ/ゥレ濺&O Eメzヒ]bI抖'$`ス+ン者sGKマ・。[^KN'コ&7ネ]LOノ容"7)彑5v拜メ(ロネニ1ムVリ「6!*濾SL(Lョ挾5ク|ツヨ0笳;`饗ケッゥuオJxT$)r(>O゚。?「KI襃Rシ悵。サ餮)板」iハス$ク0ハス$クッ+ スハポ&m=ラoソCサ・ッ焙_JtVxUКb@[ェ脱C Ae?1」&炮サw?玳P轎3羮ョ6ソハアQsイ$(~セKLF別゚」xス郡nIミ'G:viz、ユチ7オuキ」7k ヲRykムァロQk9Jタ。3メ!rH:9鰓、[ZN訪;サ=d\レ胚ネュ・ャ、某チB*カ1DH!ン3E "ン瓸xミd0(0ムト/ルチш y゚ァhシ。iェヌuコ,・Dルヨ(zフ卦ユ砂喘+@UB>L]8 牘5|u。琴砧?ゥ、ャl;リ.晃ヌロニロ・祭肯ロ・ム麌ロhサTォヨレjRwオサュサ]ォnX゙鴿q>挿:|瞼2ルメpィ甕654Uu/\マ~k\ユC5ァVョIk?ゥ}\哲ラ.ヤH jモa /」Z候5M笘Nロ|Yシ イ肯サs~8:!JXt恥ヘ=フZ0l ニ Eッネ殍+45h^^T0ホEォhュFミ[`ハFxナ .ホ#フH得蹈圸ヌ hメラ!ウ祥&チ[ュホ、y>9|「トス 嵋)エb{sfbhネ*5Yウ ヲL%Yキ0・:ー\ U[跋ル贍lヲミ←ャz肝゙ヨR`p掟a悟3・ヲ試&ホUッホ;ッヘgJKk垈9檬タ dウjヒWk4.{G!マ?ヤネキ皮ルウ幾ー蝗閇DW「 |プレョ;58?ョ昶ァ4(T{?ゥQョ,ク國Bコh:軼&ォコp工\$弩4)ミ;Y4 uCGミjCQ5Cノ清究iツSレ;Jt Lス*レハス1<=蝶觜辨@qCソキyb@#癸ァ VcTFラ圈U湲ノS鷁ィ)ト_T驥Lz_センx\ンュカ}゚0曝硫筈 *Zサ昿4(缶ツ'ァ」t。2叛ィツSOツ撞0ト跪シ[ I79xー懦鰺f]n[/uf.チbt2轌ョ$テヲムo.vフナ迷9ュ゙ォヘ「オ密エgワgB11(HH[ンw \゚o&峽スレ^8アjJ゙jz-;==徴ル隴+徭: g!ヨQk@2D粨ロ=qIP チ[ヌ`ォ」ムlュフp)フ45譴"死セュ{ラオ稔拆KQヤXm.%ク腸ム>ー相\tK-{X?9phァ゙,ム8W+ソョコ」婁-a剛ュ#8)#H孟ヲ,A敦V2。電SUヤ扁tェp%麕a#Tツタ/Mヌ 稱%S5蠹ーアレRン溲!<切m芽K膿TU冓M語譬Y,旦)ゥヌ膕`K0ト蹐Aスト2T「シーニナ庶時シコ農チuV%s錦實K犇ァаラdメナ^ヌdyォ^kコタ宸-6sッセ゚ト富%_;~|jkメマチラU.ワマ%コ&iPC餤f\S、ホ!$麪ョiX'エ縄祿メ 熱蟀ネキヨg罍dp&ッヨ.QトW米 6蓙9`|?]ヨNョ\ケ ユcFトゥ:睦0pメI ァョii@'!9。循ン゚DO~ユc"=Gオ{.フ業E冬Cレ"ヒUiヨ;ュ>}ノWキjjoケミコィdム'ュW,:ェoー驥-Zヨサャ:$w#ヨU斎&}オG?`ニi/c<ユ砕カ闕Dヘキキシ~ [ oレ窟セ 的T4>^ニ61閥Gョ「為M腋4'「t荘-メ3メi驍t∨フ0%ハ5ィヨ$@&t^!ユハ`::K逅A内LR増_8田c*雪)2ウkラョ、旆iカ堝Dワ;リサ/ 'CfD ax憔オkェラ5ツオャU ャ「ィェ2ヌEP45VO_"*タ漣k峨K璧]0"2'/ユg菖ミzワ處ワ僣タ瑶p Dウ8}苟棟<ゥヨレ恠ァ?X4N楊kネzコ^]」m&ロ騅uウカ嬢Wiマ逹チ/ュミ~ズ↑?*a鰈エ纏罩7槹 物。h!ェUe[オ侏弼ケ\1纖ヲ屹キセォススォォュュォ#零霾鉈=囈ォhネG7ラ醐誚o勇|山ヲリ" ):ヨヤ1Gーャャフコ貼ヘXh的JpナnテOfチ ルbワ-トテv SXvイ栴ュォfゥ[「CUー^;Udsルb&}ト¢E$;Q>ムx「駑勵b;リvー;メx、Iルリクアiシqシ / y囎;iサ ラソハ畠ァリノヲsメ城丞湲淤8=.gヌ夊MOOEO乕Yチ梍募ニrヤh\。ュー:wjwZ殱vハ;J礁諸ホ銕レ~k灌.・ロエmヨ鉉m(ヒキテエ盾寵0\筵F%タBO鍖゚鞍 :eDスオ3卷ル籌蘚:S雅|^トJY'0クXゥ蛙§ネx゙瞞P>ax瑪仔イ>モィル.0コルN 7ッ9iソホィッ1Qライ僑"O:Oヌ昴!ン碆w]:%)2嵎$ツC|_f゙ォ)e晄ラgMMイDlCチ^懇N・反ヨアy\耶<6QoV$vbhコ66w)懿」呎\ワ)ヲ踰Qチ靆'綵Is-g痩ヲケヌ^ァ*zカヨt+w叔淤メテ訛アp恩6UW8ラkオチ躬ラTムカチス=ムxホjy楊壅?^渠iq唔Uq顋ヤ葮a睿、#゙P、モウ暇a:「HJRXCe=奏トa゚{/虔CS'タ燎゙ミt橲kュNwマ*S・ZE{戯Bc{n&,ケ8ニ吠Xze窩!T倆ク*<イテ\Ι{「oヒyヘ- jzヒoユKチトrNY黝o宙裔兀シレ筝{ソヘ、劈Β= ヌクコnq」t狂ナz?*SG 蔀A%ンモ艤各、ツ喘ノ跿ルX4竅L。拙ソ゚uw?\[Jヨ/鰯VュxT>ハNヒァュノP8ネ」l涵廠oミァ⊂*温",'是K。ェ:チ;m7ャナコOイ#!%DL?RIb-ラL(リョノノノ:遭シxンW噌YPゥ割u'靄TH袂セ・/MュJ%P栢oヤ<ヘ祝GLiオエRZ蔓柏コ饕、$=ソ;ナソォ}ラ4ヲ~qB;aイd倒bbケア!<屠ヌナ4#鞫wス}i゙」捶ツ 珊c6クzAス _pトS釣.Va隋g囹2]冀1モAッケfMK勿T渺1?慟YソQモVQ欟朸ゥ(Z ォ。bBS4Q午貌ハ。4ET8ッ礬^マヨd1ユ'aーホ碗ンWム;R躬J庚N$モbSUホ ー]g ァォ ェュ?ワwナ\9u 7ワケbナ?ン寥KオケッI躓rL:ェ梍朮i循X:、メ.ゥ]iUIオ黝u峩EMヤ_ァ^ホYアD蟄鯔5eヒ5_vD%x伯#1p塙/ユ?9<2)ニォ8モ Jレ%ンサ罔Uw゚エ_/テ8{/=レ材ィシ冲mEユU昇 hRャネ髓hr Bラォ矍##襴9o・オメ蝓ツ9^H@烙ヒY羮xQp}8鮖Kク湾"p!(ハーyF66|ibヨケH^ァ奥キ應ワ6z「ソ\ヒ,"+ノzイ毫|0"S&KKJn;a。6「0リI$8'ヲィbス;スRノkホ<届カ'蹙?D戎雇オ{ A゚GSyムG+\#:腫Hヨ伺jテx!5rィCヤ府?Ww籥;ワ者y 仞篇\DュZ柄ェ ヒm}ヲUz%ソ星琿8kIf鶚j*ケ諾TLb_茂 ワjB3ヤid紛HH後6。|ユmュ[#夊|06饅JV詞L|狹YvI19pzケヨタヌ.ェ[ejyヨ !J;QZ!キ 戰$ xB3L7m署Eイdロ曠DツUヌシAヲアョDSネ悚Gレ q燿レW+ニx攵ホXッマo暦ヒ憐墅$K絳-0L[X=、=."WPーェヌIelPqワj7+珱サ'哭&P}b9m&e鬧ァ+ ( 跖A!イmテu ロ.Un歃ノyゥ鍜托疸fハ「サkムZwmxキサ)|8フ'ヘ肆)0dスY'ユフムxメャ;装?」]wN遺OJ彫G79ユ」サイ. チ|3]害T.GQ.0ぢ0暹@Pリ18 ユキDbシ;コソキVZ+ュ5ラkウ屶ヘ跏psv抄'ワ党B1握;R」ョ{スョ{1マ惇!幕ナハ)1觜源Kナjメm斫ヨw ウサスウ平3Us]蕋ムB瞞詼アX,qセ)e'聆Qュ9kュ-ヨ姿Gv\L{JSL1痢ヒIbァシ 1憎ヤG慟J2!R戡bE」] G]1ム鯛隲 ク~Zg:、゜Bホエ&儉モソ(7闖鷆ムX$推悟y 首騏(周vm゙N(Kッa4~滉opレ笞~ウNGUシQW/ェメS3馘炎}VO埀世チ i「Qfォ「#;mトj.I47kfMラ9チT,拗サf~ 膂vdQ鞠,xi`テ剰:唐ゥSDUuルwニ キ髷セクLロ働メナQ=ュB゙‥ス闕W^@ L惇Bァw・ホreミ噸ワhォ ォ5榻)塔ケ/柾萓Zヲ褪rュ|SySyO"?+[「ソモ P"?タ莨ァq8ミム狭ナ:R\テx淅P -Gテ5 祝ァチ#Wシe嘱xオソチメ?ソ(C幄ケツノサ'ァヤ2YgIW`カ歙鴪qハ#ン飭NdS5 zSmcyコキUホU副嚴O臓ィe虹lv捧5軆ケ。コニャ%蹇^I{5iyハ騙i奘チ剰」^[n7owラk糺ヘンMヲXオ劣幡$ヌiヤS」hウス8ホ痔 :5Y哨_ム&ンWNノH9 チE形8W.酘、嘱=X扈aLkp7シw4$ム4ョッCC]3ユ ャモ+`f ャホ`゚Lgpgヨマ隋巨茶リ坤 Lヘr烈*狩{ハY$ラ2|マ襦姫7ユュ塋| "Zn肛g琢Dt|$uネC2qTセ"忍ツ帙ト)トaヒ鎌丗崟∩ナ ラ悧0~OBイクq祿ハfペOンシ/螯;eS「ヲヲス])+D シaァZuォ:$〆b^shq}-非ャA豐ハB{・イ^聡鉄タc1p訟。,ア フ。yセト゚蘯エ据M・ラノ竰ネpスォマラ掎lg涯)nムェVァク5ンg゙? 校ヌ95カFEcmmFノメ蚌y9サIセ呰蜘1&囀TsメN囀L&IソQdV(モ1}iヲ]ラ令ナ/レメクD$p鯔鯔ェxXLVヘ4#モ+Sンネ=QGリ@゙}ュ3スネ=ヘk/芹E「EOKァ)9ヘOkァヘモVメu$ンシ[6サュ、AYヨハ&m瑠i嶷ゥ絡x付 ]キ疥&テxE;o珍メ?0ネ+霈樫゙OOママ |X?dHア鍼骸倩\Rヒエlノタg?1レgC,コ6_ム中、]ナ\Sケ。聆滔サNu*モ、Siラ;彪ュ(~イnCイエJhヲkCq。,>g!メDロ2mWメ%リ● Ayヨ%ニDrle?>」7j_ルオgFノLoヤ呟"&ヨキレ5・旃エk7モン#「ュ兔.モJ;;;:モu。スI<ォu捏_ネ*エワ^ャ鳫ヨFイン:f擽蒟r須ネ」eオモZ益ケサ<ル内vУヘカ 、Gdレユィ=nアゥzトカ,マナオIXフメ閑4メネ茹}ナC-A罍ョOFQ8 妣チ扁C謾ェ通、9Q7ルoYネ|マmキ。)5qオツQ髦JKヌ、瀞商Kェワ、.Wラィィィ2XヲxVQESク(Vュ見$KK5@1ア安)ヤ、)Zィ&0pEAヤ!ンxuモ5lアー・ dvuL uョ蠏ロ民ホィ繻1.シ^v6ヌナkYUu巫トyb+y(d忖QT「ァ驟ト#DA4WG&ヲォラ8ホ "=シ ,Aスゴ゙搦a0\テpTニト}ォ見訴ユ話1eゥ 5&[ャY5オa尤9pC璧昿X*ラユBqcヨニ$ネ衲タヲ.「麾カ:ユ h乳エvM棋エナ*8・瞥 ユ嘩#gン&ヤ$腱(ヌワ*ネ揀,^p<3sjh兜タIS灘^禍「6:Hg-ミW1Oト7黷クンャー啼ざテ逍カ1テ2*ャ;マCl%トFN゙pF凅2替u uMシ眛ロpト7EOァ垈B癸{勵)9ョィTc&ラ 5、?キ從阮櫪?G。ケ Fq/羽ワル;0ツネ#xトLimMn|ィlモ V囈シclXY煥。7Hャ|%ヤ;伎DナPム粫恪"0ニ蛹Nーヨ稈筧\フェワ秣ヲ蕣82tMヘ納|1iワヒ?E」)ゥヘshコ ス lユ1Fトノ:ゥ∪joォ直 g゙庵'ッV黹/罠f゙歉}ラ]ロWh哽nヌリ桴ンメミc?ニ゙vwHイョ謗ェ錢FVニ~2幸イァ*嗚狼3レ「ヨラ G0テエイyテモオv`ウ^zコ蕪虜[ア丘]「kク缶フF騎ニ]O北i建Y妍<ンソ湲?「ム tBユ)岨?,モム鰭Rソ添イ芬g%J>ワレ|prソッ( A逋還:G」イ]7ニカCセ<ォ&n マrM1UスLwマe4%JQ(ホTvC'6激゚ 1゙@・リヒAソvナT(+k萱2ラク &Fjrh峇ャノ・ャョ^K(モ\ナ マ%カo房ャ。;チoト{/ミ親Jミトネ3ェキッ曁ヲ7$yア/u曩Uヘ「纎fk\∬ェヲケVユdX゚qU迪SマPクFヘ靴(ュQ汀シヘ%゙u$ル -゚癢g3ナ附Poロェ fヤfO袋ケ53模$]ヌT}覦キヤ:hP オnユゥ釀メ};bワ{3p」キタw゙q) タク`シ髣ZQオ =("セキO(%ァ藻L]゙陝コPT゚マシ7娉/DS稟ムタ SXゥ「 :チnッ}ワ塾(Hpユ4レJセ脛%x3c{ョティ煎シシ/= ゙H・R9エKF3サケ{窕喬Yンエl,ョ1ル,Fヲl@霎皿ホM#キ褐PHq瀉漫lリ斈ソ ォ#ユ2タョ% jH@'pZ曙タトフ暗イムェφコ兩頌?「f`唯`ζ紐ユ%%2タャ慎Lツ/Lt:ヒT攀セソマ1レqH(3ャHbョ4ニ頑wXyテ勠ェL5根2!ロ:ヌワシセaサョ察}~=bΦS゙レ9/ghヌ T譫Fテ螢a+^ワル勢ン2ワ L宋ソ_$%ヤ基JwP$Tエチチハ'歟@Dラl'IЙu2{Eツ;圜シc`4sl0谷|沃TX*2ヒR4 2`M<^ヌュ2xD莠ネク┬タ「フュsョuエ`オ地ネォ醢シa6Ap-シュ0ス鐫゚鰕アュケ_/ハーケ槭ラa+zf:赳z。J揉シO鞭ン0'E拭僥ロ 8I ]彬3寥テ ・-呷#q.^テ0_ナト+3冽)5*[ン&マ b魯メ尤非フM巛ク5嗔2&銓゚。ス "・7 スウQ{4愆 湾&ツWヲ艘タ0&ュォヌVヒハ%4ンN_・ナVヌフP-゚盧マ 5ミotナー ZVコヲS0栽Wtナ25ユ|Oニz(Bホカ3UKSアf2SモEラゥノプ?VコョルTU枴/A「蕭6`2ヘ聴0ヌbェ廏7ノ?レ(*`ゼ\慚_"サマp乃lwび(1ヲ8 zWヌィ b-*ニムス!^C臑オQ竇謳fイラ彗RXyD7T`ロ\eAヒウ&[Q姑互ヒDモ厥D)S'wォUサ貉%`38イf`ユサ9フs.1gミu婉3fエFVラJ\7hュ殴j浦 銓゚&テA「ゥGヲヨ梠]IЛ-ゥフqナs fr股W糠o籤ユ:レ 20Z5,+T衡呟V\A| ょ込[潟タqぢ+8N゙(メ>/オ澁ネOーv7゙xN)賢゙U\QLY鐫セツエ9! 攅AhB@8ノ 岔C矧テ3ワ慎サヘ觧“/ヨヤサ]キAワュ^料H搶ムZ彙Yオ繝ツ經.。DI・.ウ觚 エンリチtヨヒ"ヒ浴XKヽヌヒVr尚;跿w2眤フu菠ーッウイ0モlァャ[ ツ]藩u蔘ケJ|\ワO-茲.tコmラヌ6袍}ユxハェ3ゥ逵角ル誹S顕ユ4Xzァ=蘿ライワf「j WU ッ&泌Lツ泡dU  畭 メヘ埠N勅%6%{ $ゥPg欠oa妄qルl3PyR40チクニz3ー&ミY%ZNY゚j匙ltnpュコ9昏リ埣トヘWユE ?癲!?「h コ 4$T0テォモX7錬ン,コ? {[[S靡 ョーnM%Oオ誅ヒネ9ラ7ョq#ヲ%(稘ンフケ-愃kスイDゥ4t\Jヨチ档ンE迦ヘuラ,7イ"ヲK\3ィ8d━蛉ョ*e猷ェル騨tb鏗A5d審鬢ッ亳U(rマ1ケ+カ_ニWJロ:柵淒t Y゚ッコ(WPネ_3ツィ儘T繍ヨ`コ怠箸lPpQ%,ェ6鬼オBホ瞿/9指o頁[杓タ$U冐マaeュ・ラ* 皴5x\5ヤ+ト/%)rリ "サワ5テyz>l#ーユ滓gクD放プ「ソJ竈A=ホァ4%vウ]d:ユ咎ャ|8p}ロ]Q・qン;7= i地 9dテ マ\テc[vヘネ1Gzzセェ@ヘツ\セhロニカ;殃ウAヨ9納 <」`S合qV厳|_ムユPマノMPモオ2`ヘ}ュ窪ヒー フヤ $_ラ齔s_Oヨ/oェI踴$m 6ヘ/ァル澣0ロi]|t`ミ laロl3Kユe^rx煩]釋C衛ムカLォタ@eY・ケX0Y*エァqVIvM2藝ェ价高r.マdラィ4baセ徴ウH|"ヒエl/メokl Qj,ヲ佇/ ム ラ57。スウ*9mン&%{ナo?I~*モlサッレ敦=癆Bェツfモラ゙ル、u`0}ンi惟9^燿=タ槲mn丱ノa」ヲUイヘシツ「、sモ7 j=ネ早nY:oヲテ&コヌーン"ヨMSィEqト xィ3ナAコヲ宝 %CS罵Nhヘt4カ.ネェ淌タ&雖牴7 エ郡3ゥトEチgFkgxkイO┃ 4I$Uナ2駆ばヲ シ-チカォ圍*ュYwヒカユK{ル\'徽l弱フ#Uマ[|[ヰミ49G4ハクz}sムユ赫般セC郎 /ビ Xι4キ1 ョh :ホーォIホサア-0bユオチキ\~}ハ総ヒ?ア& ルリg`qンャΛ$;斉ヨt疹Aメ#;タ~ァE呱演da、{:ァ誕テ1汁g5翅ハァレ(B-@l袴X蹴。[5 I^+ヌ52n△I4繧ヒ辻;j-+j "哘仙・ョ硅掬ヲj<;S;/S*C姫$|:f'>eJ7 }蟲タ#リBケ痞・ケレリネ'ホ[「ワeカェ0ユ(aツン呶M;ウ;橸{- マヨヤO杵↑ンVMSrウ ラカ]チ杵、「h'uヘHフ僻ノ_:XZャDマbfトlX!u@奚SP?ydム「E゙yラmト驥チVDェェ燿?タ紺;nYラ;カル*77カエ&Gq`哂h$]ヌn(ロ「Gァ「"pヘソC憔マ梹YtYn拔'^1ヨチOV ム" W2rチコォWネ;見@装ヒ蟯[ト4ホヌ嵩eソチ)サママvd4夭7毬(桜怫泓YKイ:8・ゥ金{ホb]:儔,弥U籾リワ08.:eナムョR 蜘nOカy阯"jNj/ハ] cWO" 幃* A笏琳荷%d:ユPfウmx0メr0_述゙0MCh閃Y5Y滷CW臾片カ求B&盗q/g1綱巻ソ1ZQU_ミチd泳rァ櫞嶽婦Nl6ロmmヤ!レ;;;ソ穐サ[Wu ィッj:8]5ラ`ヤbケf。サ$7xネヤ宇A/歉l}&擬ァサ麾甍、コeYヌノオ omk俄8レサnワVハxnカヤ uケュ猾KhゥLフ五疊ZqVZ オxw⊥訛ヒヲMラlenRカLE4ホLSsト゚ェは+リ\Ab テ(コ喉mrラ3 g*ホゥR価エTO+ジv獗vEjツリ甕ソ,*ヤ咏茜ッQネ5 ウZ\ユTゥムヒTカ犒。ヌ"=;アE1政eDメuB9X2 "YIn.@nk& ニ<ヤΠJ{唄Xマ仭ホDX(!iSTDYーーレイタ,却ィ$8ソミ C%捏3"ハヘホ緘ソ蔕x Gタf7躋ッ隹 ゥ惺厰sマルルツク濤挈q嶌evレ 豆カnッウ6`K;b`ヘоュシ _ヌクユ セ瞼カキ巨ス彫クmヒLレ+7ホ67;v議カョケツtィチナa簀aァ}ッろ0vlスチナzz=qapコ誼ァi~zF、ラsoユ゚鞳6ウロcネ/齲ケヒョN{Mjソ*vG*醍ナMVS(Q/khョ7フMJタ8羹鱚B咫ナ9`,0:洶Elェ(シ蓬カczセチ ユラ:クサタeZP-ゥТxヲ氏製銚Mカ鬻?sェV、チn「iコョ{ィ イ)4。$サ鷄ニΟq萱5フ濔1ゥーxオラpUゥB々j*1"K[跳ョ Nob瑟リ\ユI*G剰拙ッF7、z溷0ツ_+ナムァォ葉RイZ/{トャァヲ^ Dカ=伶~メ'Q)`)4I巡{cヌゼ]サ>1]b+┝テ砧i膜掲pb峪哩ケ筑 サ洪sヲ;P%n`eクワワ圏?二ノ捌Y行ウミTZМPOユF6ヲ9/|ヤサ3ムwQ+コmヲb飭' ]*ウ ヲ!&jスン・ゥャ2ョ猿囈タ角H4ロヨlCRル癰uW1エ敷セpXト・1T セ佃{Cナモ梶ェ蜍RRスU|(nC‐ュ謙@Aッ3梅DTゥJレ\テ慈マィM>裏ニ。ニカネT-S儡ivユOqS侘鉤ソ8・牘h.@紵ホ隸Tァ чg8u「鎮Y3Kモ}ヘヤヤモミ2 B6ンOMO巾柤 錢C蟻,0,搴オノ*モ<フ亊昧!sfRケ紅\ラ 0.嚴c觜s、タ \ =ノ`コgゥト。on&1 mxP %bRB"Q?{Dcフ憎$、ゥi~オコ0nォ破ハtGt.嬶挿ロeヲ3ォ衷[<ハ ツャ obリモXチ+p皈h%Z#3等Iヌ>i)モS晞 セU$ゥwコ8モ2nXロ"kSュ袴ロ喨fГ蛟ォzム2m*~,アH[6ツIL"9e゙Jeョ[Us妾L/Af臉SKー,ノT ケ%〕5ネカフxホTW0Y茫ヤヤ$ュC2%擦夷6!レチ J娼<゙fFHFmPヌ#ヤq蜆yホAン^xCu ー凾s&・Y レWミY8タォ0^eレ繆 ,(ゥRh犧)鉋rs鵬ーヨyyモFuK q>fk_ヲケ笥タIツナ}(舌^鶻艪5Kアu8jJ7オ6Ap;G,Iqフ`蟄e褫ソ戴o繿ムツd96lサd0Y。)槐Tアv牽|鴆ム、=ィx?Y ヤΘ:fyレ桜{'ー70イ`∨{с>>5o橄ヘuンy[?_,)ケ楾ハqWリ也ュLョ゚y?。キ_ヨ窓ム煬G'マ)"E賀ォゥ史_OSSモUx{ラチ嘶|*^ 蛄^!ソラムアp゙シ蚓m クッWム(t+吁hT2$ンタ>キサェネ5m1潔'=。wa\舉 砦ラン)3 エ>エ致ハ瀏埋スコノモqtオルェx6イャァ!利枳尺Clマqノ3M[dk シヲw礁セHョウ:゚}゚キ渾ンモ3モ3モ嚊贄」キmi$硬ノ2カ%ヒ!ノ2~!ロbョ aM Y ,KEv 。シ^通頓ート@$オ別R[[サ qH`)/*稗{ロキ{zFv6ロメ暾゚gス轎゚マ9υ!ヌロZ&hH=ウケgaヌ」飴葷麹9V教*{キoッッ゚イアqヒz.澎経#ム;ン]ワ淞変ッhモ+ーEWイ!合p禄_gテ}重タ@ホJ  > %(ヌRs蔵涜tヨ 9HKdnフJ(L。#チ x' ェヒTjXH蟾d"カM榮盈ヲK96岑コVヷOェg※r爐ニrラqナクoサIk凅dNケiPヨYカ孅コ(6ヌW*Gdθ;Uュyワ諺7^ケリ幎ホxォ}a。4yT讎レシ*。ッPメ゙h(テ 曄i訛スAハc-(&0.6J 宵o8「ョ$@愨IヌクヌD蛮「ムトtlRルァ=D~ロlZ搆随fajテ-q*「Xz@ンス駻z[f!カ3、~H%桶]。叟C豎FkケッCナp\Kcコ7蔔罅3エ淵川*W鬻劉==35##G瞬cマH#ラア-0ク>ンサ.>#ロチ偐e乢L5Oe瓲瑾"唐G_ウ\;N@J9OOWzケU゚ッ>ワ驂リアーL&8!rGP&ァ9旗ゥー」コO*NpO茱e3n0ホ簾y{姑Vニレk9{WguエZ8モ7U箍SホqIWサ莉GCミクソ)トチ_Zv&1+ ツI・ツ=L・マ"jヨAuhj*;笈 j綱D yゥJ,ト%qモ Lサjbp N+ヌツコ S蓴ミrィ$Q2V3+[ヌオヒ8?:鰒AヅH]ヲIToュ/<ヒロテC゙ハ族ェラ腸∴チ^泣jネチ 守餘Q→ンキ盡カ破鴪スLレ薪,:.廠;テ倆t侏ル$,-レ^キ\ ]ァQルz ヌア^c)Z。メlテ椴aQ刀1-ツxLl;"粗 aロ*rl[ロサm7生uQ=Iレィf・ニミ z船カe笛觜ヒノァ.伜%ーキヌュ舊EQ%<ワラチ)OサテヲレTK+猿L>C神ォY'u リソ姆0,油Rン淌ュ_ハ^コ|゙[ル涯{Sエ0q++++Oッョョn|ツ47誦霖!]&7 TKー,6PモOソ0r裨,謝g*藜分HYノNV#iH「ミ畔[Aヘ;~-Mk+N%メYテ熄邊^フ=クWEpヲカ梔\カ(カw3ツ1eホ^_ 穎投2zx筅マl)ニ#L eBイ%fチア~=メ1S?S$MO Cォ墅ホヲmゥnロ6ンナ<レu?-ワyコ;+Bク磧チg&W:t*勝Hウ-。絡 ロ_サラ玩|-s|;ンFsワ碵J+5ヘュqn寒+芦1@:Tモ1m{ODhケキw ハ7チA俯ef7Vィ拆mアホロ+セ_ケ'耶9猷W^鄲@主Q@i ラ`gT鋳r_%WyX\ンオ瘟陟竕スノ lムZ髭1マニ8 ヌcn;VcI<Qエミ智,ニ娉、p7Zc「b所*cС yヨ薬ォ河タヲョュ+ モzッ1:S庸ワ、I箚Bネッ?k; (b膵予淹ソ!46ニ」ニ3ニサ iロqト」ケ孱Bk」QY゚ヘカ-Tll ー"キ}悁,恋G,Y.アfIィlネEx \f'DトニリッテMq0蠧リ ャッJワホjq襍]nBル4゚ボ3 炒ユ*メイ0・絣蠹M セj咫y|/(ア芦vMケM挟@z8i,'"ョq。゚ヌヲMュz|nwエs$ 莨茨ケ7VJ5簣ノゥXfヨ゚^( `臘`ネ_=6:タz。 ケテQェmhwdトzョ 4テUヲx陋XケホuU霄Qヌア寅オ|タアDユ a&義O キL辿フ筆E;ャI=vbz款烙ンp<~ト%淞N6ヌ=/<哀a鵡ヲ!?0=>9ョィ#[ウ:n*78ッ猷,>P{Lq悶6ソ油タョ3nヘ3uカ8li3'ナ」?暈」ワロ?q3t遲z b ッ釜g9<Yツセ8 剪「コTメッ唸."フ モcs!亘IFaェvha。aョK?:fシ[ご蜑Qq レツトkW樣3N喘聨ユエ:ンokソ8テ :tチvpd;|0Fヲヌ8セjエ-庶R \ラ6ワタ]禎コ導zトO秡襦ノミ塢、ォ?/ ヤфユWマケモ「.ゥコ/オワRノr+mラェヤ\;衆+芯抂п}lハh゚7ヌ霧?V゚マタ龠N(`ヲDャyァ・}R ゥオK蠡A%"涕XYカ夲ケ8讌ス鴬G@ユ瓰キト。尓&゚罩ケ,y誹カ性跫」@[*籖H 。チЁ徭n(: @STウ-蛹Mp3M6^wUケ#d>3gp溲槭ヨZh BセdュM)&[7ー0&キ4醋フ糞 ゙<胥j功-詆@Zサp芟エRi$榎=刈yサpOハ;ラ濃d{ハ・ハ饗ー糴扶ケ}[ーu_3eフ貍滉翔Wャ0鵝ナサ拊Hlエ否qリムナ脩H焜瘢ax2yネアコODSaクヒ Y7q|BhL聘Xロ$a。ムフハD墸P?\レョ儿モオモfゥm゚v莨:J<|>・ユ.;Pq8CU1g| $ャ=ソ+瞬ユノ:七ウメG#eキ赤~ lLョイxミs餉 シ4jテk゙趁ル;_メq{ィマBョ7M笵.テサツ)W=「"ト.゚a-ッHu#O'而k5ミ∫Dユ゚阪vタワ6フ(毎0#uu%^瓣臣Kdgmヲ觚Qカ]]チ\ヨCヘ~ノ6ノXィ,ハシトw咏c ゙(r>t\ヒ :枸ナ戻襁オ'Nワ・s梍袮(ハ-ォゥR)J"杼臟V据@&JソヌlulW 壱秘ツ #38ウ,ワァf膜`ォΤホ^L」ゥ(Beィタz {ニホヌ,O贄r樵^ヲgt隶P シ^゙ハタ缺ス> ,0タ"a膝セウヲC盗ンンjQf。)d"ツ匈KgBイBミ-9lナH$ヲ+驥澄QッヲMSヒ>;:ム}&ヤtミ蒿タ呆ュ「C リZs6l55ヲξN.c "'ァ$_」゚ケ 沓|P轉hフxnュ<~`帽洵J?ロez5オセGdqンイzヲ劈g9g」4Uc'N忸涜、トク6J_メ嚀シ|<兇X桧r坤]33{fg?葮、LオTゥ廬キケi:'eニリi6}jm[(輒 ミヤユ卯ィKイ&ー}7モハL。#EL暝*Oモラ6習}5:p先 沫G留fduゥ )\マ殫;h4ユク-ュIマOロ Fヘ0個r9|ィ シYェク&儿@La゚オF鏥)ヤキ圃 M輳u@W敬エワq31ュモレユ> 9g鑾門畑LnM瘠TB艨\;スgスkM芦dエZycホタ[:rュ;謝yコ讚レ%n}Sー?だZノ聆N・B^ヲコm獪ク*E`0ヌ-合驫k」7スム lノPXn$-I\覘D鎭` )L、u゚預スヲe>コCヒ}牌&S_ェ?計寛R卸[B&eリ'鰥*渇裾&0戲-+?Kw[雜|」ム衝ネヒ梁ホフma:(乱xgオ晄丼ンwe T9Vヨy\ 1\髢ミ、}モcvユ2ナ.ム0`r6}ヒマ5ラj」;ァ)ョ゙nノ]オ9Nィフ<m聚゚踪xu嵩ラdヘQ宦スヌt髯zヤ’ア垣能r6フスA.ォ暾t゙稿6`轣1'起巉Vx"ヒヌ顔3圖オシ5nTナュョシXサュ沽3<カRNWフs墾+ QェpQnIユ9゚_根マ13#蔬 賦ヒ茎ヌヤホ<カ゚aレ?驢眼Of('!〇*Iファcテ(鞠6&ウ圓&E囓ェ.磁ヌdhUY.#| アヌtノ7\ネワ'ニ ン}34/「ホF8找キc7ャ、ノ竓トフ/EヤL儉ユoJェ痔頴`ワ2\HPョgヤRiE0/(ゥ鎰6^ =]WuZ蕩聢キ#>:nケ>&ィヒJ兎モjlc%Jqサロ_ノアメ、ア`゚Zオ`九zェウep 柬恟ヨUネPア ヤ!h誉Lョ8 ・駸>(ロ/嘘ヘ袁2蠍イW-W要bwウ情k殺JDァ"-'B9柴→ヤUソ(遣PWdゥカ唸テRq゚jァメ4wt*ツQi舍゚シッkiフzォqサqキニペO゙ユUfjアW泄エGiTfワオ q\ォr,ケ里p楮゙,Xニjワエ8ゐルォ:ト繋a#4Oワy$ 1cル8;穉ィVォ~ツオラNyョ雜 ルユRf$唏ヤ~jWォQbムVッ'!`rs?X~QニVヤヒ 2L鈕zキZヨ8ヨe Af44Gワ2舘鼻0;丈ヲgcモ聯3゚ゥT=レ顕*W}+/@eェア_bリ)槙lニ袴JV5Dpavy!ー喙Z廰設レオイ_サXeVDmツホ陂シ`欷cラ9vリス・コヒvZ%F|蝕、ョ1K誅ソ]アZadェCセミゥイコシゥ : ツ;Dラ淳~≫。.Oウー リェコレスレ=フ0サ{nw補x゚匪ヌミ礼ニ9cオィB3ル^bf{ヘ塵lK釛L ク)樮ユ|;)ヌ%-9ワ釿@+ヘ:テ3Т祐サ糒ナOwlkvラT)S:bラ鉤#ィT4T>ァヂー;徇「クフチィ繙ロ近aZオル∃畚)剋gc ;9惘蓴灌ytH.ロ鑚シ-\ヌ佚シ ェcC?ヤ菅ホ簣5LVゥエtE*$ ミ麓n0^メッ=セェK& %星アタ3}ォサ{拑Ls6ソ1セ RミマwmケTチmキP隼虱W縢 「Y>輳 lo7QスbR2 %鸛ノDャ持jP -sアッタュ:'サニヒ9ヒネ3チカッユ6ヘ(ァ的加ッ嬋uウ U"@Z#沽カ*cカwクハ 舒iM@6カヒネ蹌ニオゥ Vu kナJQン@mチ進NLDキンユ紫3k.カヘシPロu創トRニ'「ョ ?奔餐ヲpメッXサタ6{ ゙キチ= 嵯[ウ Eワエシ2貯扶収)リX xviOナjレ゚ヒハルrリ1WN皀{タ濱ネ#+_/mp[粍~-=」Cvサ`ョ8M」EBD.(淒]只f暾`:ルgァチテモA}=]性o!凝コロハc傑7@鑑AjWY掲ュ後_6ン3:゚,A钁ロヲサpキミリモ~^ン恂ej ]ォp陪 1-ラクU衝7スDfャム%Lh侍ヒまト3c6h6]ヌヤテI・Zネk~0l71鞴ッQ!ョOI「yホ礬ーx睾H^*lラ垉a 'ミeェI」脹トDu殴モフJ oッr゚釁,ア[>@ッ4vヒカ薹トリフ纔P"ハ\モ\ナYgRW陏ノニ皮ナ3ル\9借俶AGc$レラタハwワ}メケG?ンー6*71゙NkノЪ」s6ヌwdセ渭嶼ハサイEオs,Z゜+ユマ%メ-q堆叟リイE:Fムタ覽騁gヲ0庸經:8ョ慕ノ|Lkニt'^MrヌkB_ヌキウVク9uPv゚E'<ムナ゚巴`V t1、ス=扁チチサ~n"エネクjモbユコ4l役^%gJウノ9モィnX辣!セj゙2ゥ啌オZmソP%>%&L$チ 2:Qylpィk9輙_9\壯{@ュヌァヲzスXk煽4vT#ゾ 竏堕+<」<ヘケb?ロケュ(歴mI笠 p[HネHア慊ァタ耄ソwnn.\XXク的ヌs。([ャyS放フッツ鉱4諮リ^mgHPタY楯吁逃S/コカヘー゚斉A彁+冠JヲN+フO"6m1ムpLZヌVエ愨mィe$ェb`_qd゙E%雅ラA;リユミレヲラ」XリF捌0 4 テRVゥ、G+セェ埠MツHQラ 「U幽扁ヤチルナc.ス)Rヲ-#6「U呪ヘハ掃q静キ3モラX_ァ蒄ヤ昶コヲ銑テ ・~意ヲ/n\蒙:K」5OG]Wュハoム ヌCヤウネウ#[:ツヘッ゙Nミ NUS嶄0夫騾U変a、pヘfユキ儀EUT抛素yヤシ(ェ颶:Cョ=AカラrJセ鵁イツ*イゥ ィ`S 癆tレキA+ム圄M(ヌrk1循!ッ 粧僧nロョ餝ゥハ [シ;メylテ+ G カkトG-埒連貞fヘセ|廱'/鉚。{フ}。zTヌum」kQ92ュ阿c!亊& ユq?|ル4KLnk<・リ鋼ラ優W(1ト`晒クミ:n@V羚ーyキレ入オ73?ャシSテク繩_aアlq゚†a{ム~寨W<娑K0 禄$Lク漏偬mァリ、X鄰T嘉ト各V愽/レワヒナD翫Iア鋤ソ+イ<-讙8fーシRヒGヨセKム脉dチdソム)カ-銀;オキカ掫pチVa*ラモ+ホァ笠ヌUa 玩2リfsRャロSセ゚zナP00E05`ab0鷲アペ6ャ0 #ヌ託ワb[Tフk#醴ヒ L睚>モE;;ーョ.ネY8ノ」sャ紮、ォ<タ'ミヨロ[5> a降オmEソヨ カ| G、ーュm t=B嗤kテム5鉗kBリヨホソェ責ニ]ニ紹Gヘ3ヨャuチャcqテ_8カ3贖蠑珱・{ト} 9マ名ッ訊4o蓍t円キe_ト8+゙#Aホヒ#]U分?毬ホDpOrx&|Kb腮沂y|!;+ Mzノ萓蕘骰鬧2/{4メs・?+Cyス蠢ェ惆|イテ齷遶ッヤォ}ョ匈齎GエqG繞ニ_6ァ嬌矚oオf[ソaユ}N噎ari+Sヘゥマuf;_嚴ァ遘?=ウ1ルOホcsヌテs鰤都沺_オw盪ナルナショ據Yコq鴦・-ソyナw-ォ鶉zスマョスsァサリ粽サク醢{ンス7鞐溏ロア」恋p9フッ_Cッヤ5xラルラケ? ^8戮c゙オセイッ寐゚wY:劵ス」ルFシ1スq゚ニW鹿{xz|褸Gッ隣ソt".ハWム cァム0ム:Rtョx^%45ヤ5ナロ'ソ.,。(Oヨo[#存ミ+レネz p撮カ2ソノxエhwホスTエ{ハソ^エュ託Hロォ「汐ヌニY絛ンヘC6:^エ銷66ラロ#碼=}U幎O゚?モ<リ縊ス|鰾グ6マm惻礪mヌ嚊>痘{メーqセケsユ/=イqメM/>ス倫愾ト・ヌm.マ/.ンr゙ホ?r76サ:'リムコ wヒーェヒー⊂伍魂1翊/リュキ>モ」ニナ殉ヤヘMャケ拐セチ細\w-。敞1貢「E8テ4ZDux>モhャ俎Q37aYo檸3 墅醺 モォ0)、陽.a楪<せ>>,フ 泝宀^ソ寄キi゙粟旭{QウKラ゚tウマヨo3セ緯テツ滾俗[カn9y=ミメ区pムヤ許^4「・冴VC/"スh錵ヤ^GOt7?F13 K"8endstream endobj % 'fontDescriptor:AAAAAA+SimHei': class PDFDictionary 13 0 obj << /Ascent 859 /CapHeight 859 /Descent -141 /Flags 4 /FontBBox [ 0 -141 996 855 ] /FontFile2 12 0 R /FontName /AAAAAA+SimHei /ItalicAngle 0 /StemV 87 /Type /FontDescriptor >> endobj % 'F3+0': class PDFTrueTypeFont 14 0 obj % Font simhei subset 0 << /BaseFont /AAAAAA+SimHei /FirstChar 0 /FontDescriptor 13 0 R /LastChar 230 /Name /F3+0 /Subtype /TrueType /ToUnicode 11 0 R /Type /Font /Widths [ 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 ] >> endobj % 'R15': class PDFCatalog 15 0 obj % Document Root << /Outlines 20 0 R /PageMode /UseNone /Pages 17 0 R /Type /Catalog >> endobj % 'R16': class PDFInfo 16 0 obj << /Author (anonymous) /CreationDate (20070609222450) /Producer (ReportLab http://www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R17': class PDFPages 17 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 3269 >> stream GauHPhfIR2%Y"/2rs(\63JAd[rle<=e#"plHb#^iDPjrL2g2@Ke8aKFPCNTt m7JQ]K#hVLSRe;M!r)m2+$gO&%%ZOq0`60mR"4:asEfqDbt6K!.U(p`#ll=b9+bH rs"&9^iI.ma$3]/=9DY-=9DZX9doR^XFq"6XFdO*(*FKh98:NFPb9R7&W+q[ `)=GQm$VJWk@Ds')#PLe(c&;+]nj93d3(XAY2=HT08An,I>+B$i0DlbmA8*k *SpbooB21,I-'q"3X1R=7_gd`GXH*%/RmIK9%ou#hgIia&;*rW]TrV#sI m^I.NgtTGcF/-DnLCqVa`U8M:bDUiZs3`4e4e)T#^pc2uG:p]?93CDBXZkW@+o4^Jf>k%giIPCeZM-(OokpF1jt#@aT1PK9:M9-QHc j=+6(S0RbTjTd[uCgpen:m!iRmNb%m KlEK`"a-:'UJ"doW0`$o:<)23hTM;djtBnkBp@I>1"9#`MEXf]3;+IOoCeXBjXMbSN/$ReC\R S(;.dJG6+7>^?(^LQn/1p"bOZOoA*Z4F!8p(pu=(H=NX1r-u$$-F4r1N,H;] KPml,5tABnSOp8#=/&XCS'ZGqg4F4ON=8\-aH57:1)N=[3ne/I.QY"s4!1R` q$sZ@gqbZ8[Yes+p^XM;4Y2ej"F&%OY;0^X$8ZjkSq9r`>bWSA/5O*DVs#7! V,OI<6Ks?QE4d[)bpj>JSXdFR+6dk+:-a1 Jtj=c2mU+S4Wu6rCV3f&TH:)T)]:np..bHu1Z]!\N:dbmHs<\c MF4Hc8/&?Ze=ntehH7tuBJInqOchlSI0)-I?qBkfj,,2V>)a! qA9GqKpnaCAi@nKff\I^38H9hAI.-NoYsiH!uX?mGqgGV4b'Vig/Sk+\T!4W gUQ1Co+I[@t<^Ai,KTQP74nMTEgW,]dU:CURe%hR@[-4OtNANW3 _eh67ddbL=V$,3$],jYh68(\;Vj2lRf8ElF!E=@B/@e%/3XLJ>66d;,n8K<_ N3puMj+:s)d%_%B4OhV\&0XgR+F/&Z@(=?S1958Q''#+g,e !HGI'6lXN95Yj*_OD:RID+"Y9DgDc@%AXE*U(M+WHot=7J]@!80ck.g2+D;X h,I+1c+WSR!sR,JQrC(t#dC02nQF-dehY%W@TCG%eOFk3_6I+fI:S a$&r^".`OBDISW>*c,bs;7]r2Q6F%2&%\2UA,rH-Qp^%H%^p0&RF>9S7!^?F m&SZ-@bdEPeZq?KhKZ6&Soe!U9^f[5]pUo*J3pe5JT.b!"]T9)crc`!`lDqQ "N6cG9l(BcanHslpE4?4`e&@CU.PX;rnuc>)'GNOL66BLehl+%E/]jIE^P-o rKu@_gIKT]g)\sW=NV(g&<,Qn3_a^X!S6[L61k`OAi_c709>X2e'&&He.tA/ -gD]a?_fUOAI.JrK-qEM6S7#m891ZRq/1@Wl^+qII0\/%l\+P=+K$QHPnNM2 X`GbJBHABoE'C\ZPCs5#@VEJM!8lk@78pj>h#*RF>7Z"ak(ITG[MP k(r.&^"/uiLl",9"T$bdWbst2J:km!$Kd$5&Z8eSSMf]NBrn-popn#2/l`R% 6u*%@F8k)mf+Mje"D_kXTissOn$9'38_gj+lHiZ04MlYD;>*nmR9H=9>4]1b 40HMS`"Zbp!BIi>b+cR)ne2Yd]+USh6[Bl`e[S?6-9g>h4c.K`cd+A))m-;ZHjd[s @/!8ZHEBj9nQ,ae[ug%@(D'JcHKdZ-H^)^`Gp(SH6(tfIM.$(=[1=a.F&kkn pSM:gYud?_R7ctkHeq*UN=!iKmdh'6^?%YHuf+'1[TM\Cj _n!2(aCj5ceC)=S)ATJ&ZY2(;kXCtH6L?BYrX[NVN3W~>endstream endobj % 'R19': class PDFStream 19 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1953 >> stream GauHM95bb.&AAP!J)E%Qf/.,p:S3N=9nB%*VE,EIMo)a\VEknDNXPmc%ei[h Zb)L]`1^5]b^:[K4q8YBb4$M&T@Z0t_a^33"pLq`[gK4FC@eM&BsV,o=g(p3 X`e[;.?'^s[pEopCkU[`'sgog4r_2F6t<_,(Z[nf//Q@GEs\0=/-hJ^CPk>Z "'>Y-"'>Y-K2!caK9_NaOB%BBciIZEo[sdYOYW0](6L$F7P#je_-Rs:In:EX 8MS^]L*:o;=qM8gTga@.2BUH2W.^5Fr$?Z4EDPmO$E-6Tcl lGpO0lF6V>DPA.[+%Sn!3t/h-27<)Un+GrZ5LDeBNYp7`,^$k%\$%PVrp-s' a',asdTj6keGce`1\RbQM%7q*KFU2+m)TIr'Mh(dZN*-/=.06cAq==UEMj=> ,;r&i"*eH=<%XGn\I;<\GA=\TGilLuf6C=V0?ag2QDqq`P=Rep]fG8:4<^6q 7:`o09Y`)*c^jWKhTR`n"Xou'g/+.X+'?ei?L!N0SG+F+GK+9K0LcoAb@kY\ OA)UNe!I>ZW&5q%W"i7?Jo*#hr?#F'7p3lb?Oes5*B]kd#Wtq8-hXa$E-3_K 9nVIcgRqJ?1h`$PaB:?UJMBW(bcqo-_,h>0-4jZ[g)B-$+Cp7uPk#LY63r%eT?2n6PWXG5)^[[c/)dk,eMjP`X]3+U>JToSLb`O'1 QoWSiBjcr,^`.6\3CqJ]8&E,F5G8=[/K3hJ>;T033nU/ia2uc$[u]ne-4jY* :72R!B[8:G6_3B;I!Ug/b;JF'6sRa$oW@g*?&C>a3k[(5LurA#52,9IKmcK( +p:<8b^pNP!phLU"`O>1nKoj>R-.1I`Z+r;Gn\,h/YS/;D6\+6l6L7D]4<^M 0ZP'Y>]/7OAS"?lh1E!Cl@[Rd*';D,CtpKu+eHuPFfB&27QYV%DH_N`=O4NU 1mOQle#]pV?]m-KUu;gHmkj3"YmJgC`jKGjamq!ZUf3HC;g6TZZCa9+Mu0'n [Rb"O\SReYClK;oDs&VpT.agA4(C%a`H#s'4I:"Y]R_2UV@L\$Fhfo]>4*:h A9hj[a>Op>]H]V]-e>c-5a8DeWXu-RnOfqXRfoD_iAU4mp$++2r5f4'\c/;7 q0V`)HDQ7?*%l2S_`_G2IT4&mf=#0,=8-6;CeuN$a$aku[;2&$3iETfIAu&& %+UJ4$p'(&3gIE?W*%*T,tG)[;!h4#&nPEtWk[rT1$t%@L`RriAtdh8/S&,R Abd6k,g4_(k$oRpl6)j"7Um;O^!,#5Q3pJ-8UM]O,De",B#c,H#A+JkDMs#U ?5Z2AM"aGM#]LCD6)0LE.>$A)J9D%PO7a0Q9EudThFuYiP=0lI_W)\D[!ZT" Km>-YFFB(9j1qLs'Dk(mo7*_.p%LQWj 5M%i1(Gs>ZRV:A5ft;)\B6E;%SDX565*MC8pPt&VQXB2=0+7Q%ITPIuQB8kn `h$jSa10&IQK=Dem#_^+Cd`*5pC5\U1\5s3p:nkMT'A41fqeb_R pQ)B]"0J5c!R\=R(f@73D)V2IF(AYXpd?R=A>`mi_5T5^aZH9+V9R7A>;L1K a56[ZZbI"MF`';l5mOTnp$+cAZX4p~>endstream endobj % 'R20': class PDFOutlines 20 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 21 0000000000 65535 f 0000000113 00000 n 0000000251 00000 n 0000000457 00000 n 0000007710 00000 n 0000007877 00000 n 0000008221 00000 n 0000008591 00000 n 0000009641 00000 n 0000030468 00000 n 0000030720 00000 n 0000031992 00000 n 0000033410 00000 n 0000060301 00000 n 0000060553 00000 n 0000062313 00000 n 0000062451 00000 n 0000062649 00000 n 0000062764 00000 n 0000066178 00000 n 0000068278 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\365\337\325\241\240\200\255\256\273\015\031\260g\230\355') (\365\337\325\241\240\200\255\256\273\015\031\260g\230\355')] /Info 16 0 R /Root 15 0 R /Size 21 >> startxref 68330 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-keepInFrame.pdf0000664000175000017500000000642012063667552025166 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 459 >> stream Gb!lZhb(d?'ZTSHH\_(8.P/dC[NJn4(51KLH%Bj+\*D\m[@iS!R]RNmiY7+k2PFt_F&%2/Q]H^/`r(6c!4N0mKRn-1$qq9?1VpaB%UOkl[[YGb,,CMCTbKmC.9raBi0)d-T$&\#PTVdq_Mue[S@@%g#mZCBqUE"!!l=OUbS,S@CY').Z:PG9%G\``a,/HF"=@F4c5)\+Rk'GXQY95"at,45*;)@`=jd>#:8jr_98'kmEDeY1Fc4]#[g%c5Te,TN')]P#mf3877'A^@KTT0;htHJ$;M9p0KM^BZVRYoe3iKqEn$U)72(j\s.ctC:7#.rL$0eU7E9*32,_Ca+ZG!/t3eNq^GYF^H)ge!eit7.\-+(?\\O6*1p_Q]SJ&seYjuS6LG?]*lT`~>endstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 207 >> stream GappW5n8K#&4Q=fHAB7'(J&6Teg@tK@knk!fO>R&=q\#WWCgbXMa),d7\GP`dVO5;:Y6Wj6j^.1.T`8V%`I%a1\"tu3gXTZG,RfobH6rt1''fF?7fee,8RVe62akh,],P71V1,I8[m&P2n[$8F9eq14cC8LO"l6S0\BrF,Gm,b$#gr3M4;=ckKO`Me;_TMq>BkF2)tI50J#/1~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000742 00000 n 0000001020 00000 n 0000001298 00000 n 0000001433 00000 n 0000001702 00000 n 0000001816 00000 n 0000002417 00000 n 0000002768 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 13 >> startxref 2820 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-imageAndFlowables.pdf0000664000175000017500000001476512063667552026357 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'FormXob.2936907bfdf77cbc498f016927101147': class PDFImageXObject 5 0 obj << /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 86 /Length 3441 /Mask [ 1 1 1 1 1 1 ] /Subtype /Image /Type /XObject /Width 130 >> stream Gb"/kc\l$s&BFP1_2Dt)$d:1-71_WG5t""8d$&bf&I]R7/-[n]Ci0j46p]$_"a0tHAPLlrJ9CjJP]Q3:qi]L#Fa-T"Ac's+Mn;AA&B6[X-o?:8=&#D:N"#.Sd_Jd&9nAMZ$Rc?Cq]/Y@kGCugmI;S1MEQ=hE#?fu]AM8aaT1Fe#Q@"WD]Ve6J*7aNZ3-FN9]5r]/8)?iJrSUU\&9qs,l-cZ%,@Ga:aj1tI*.E%7]"0q@K7*%X`Af\njiWkC+51"lqO*V0*PI'PBJf1OT02\,Erh63ZEf)S^]!jfHpmVVo1#\nh"B/Yc3VT5AJc=Ij'4BjV:+2kk67ig(ZqPk)\b0r:qcXj)4V):BjW1aG9sr[">($q&@&2IVjUXKB`Q6S_#QPVQ<*!=7!gZ)uuaUP>9uEFQc49!Pn$gdSY2"9^dV)^&'O6ZPLEmUUKj=0GrtOFg]EA_)rZ&;rVG*uIo`F7LH(Ktl%Gc6>hI=B"D!/K;VVAbkh_dMaT?"DMF),S/hm>a3)l7K"=C+Ak"]sJfAU=.%EUKQU+N.i;Q//H.6[FEoi_BsN%kVaghJClIbg7+JB.Che#fJj1ZLr,IdH\qC])p?cEfgQim'seq:@jhddafm@3jBfh:gMK;$:u_Tu`Ef5+:,^BULR&2*)B/@nCjXR21K+c_NWo*aNDp9X1"d!$,2'E=2JJn8C4$[G>uV@nc,FbWK.kk;5bN[lL.ac+H'4?u]gpgIb!9C[Nt'diDUboZDk3Q6bqekZfLKir0p'T.OkEb0"GQhe^7P5tiPEKg9`>*6*8=eoGBkm.`S8P!!VW:p8uuM*7C(XQ669?@q5$Q4JD5R:NNg&#\*=Lcs_Ys-4ti8M=plM2=X[jDgXP`d5!5=A/'/D7IZWLoh%R/5#uJD-R#!Ct4c/.JK\;hPKdHbZ*&omX+;2N/bA=BSmAO_!:.d7kKp`k(#fe%"%)Bc>TQpKJ^XW)gN/-g9n9KpU)/\f1$QU>slYX%2rG"CReW\5cHb`#!.+i12ka"f!N[]nrqE:aVl=hB+OEDSh8`2^pdo%QR65*#mk%-#X[",Ofs=\_!N!>3!HV)troQI\?^9^#=7,?QpZadoGqfh>,"Q3`/l#;<4!6LL(3mqm;>D2;-DSjMNd2a'#ggd(q3&M5_iUbYsb]ja""]dcA\fuB?iiO&!^PLOi35WqkHR'-KR*aWf^n:jJn&Tb3('.eah]JEM[&j5^)dgEdO)BF`>l**+9SmWp06Tn\hjj8O#guco7C$_cFSN8udG_'JXgj(:e9P*nnOK[6iK?kn>.LPi?]flJeri[+^]1DMBV`UbNOnV1U'HA3WA`_,Z[[YiY\F\l."XWK>CNV82<:lUW2MZ6]R1"(Qr"9LlJ0]N3]b>>DbL9h[9,de1[W?HDg'Ht=lel/IrgDER(cMeqYC#aZQTG"aM>=r:+og:N9?@rW_D09;hA-aAd$\gEY138bbi'P@0Q6YOP7nqSA49.ffNT8-`cPF!35;&.X&;Js0qoSkiQG5a9P8WsU9K*A$nP[U&kMU"o>YqIs9[^M%D9[uVM0$DR/kl(\cZXB55OdZGEad#;2dKHA#SogbAU\HC\3:Ss4hN7P.K,`5-`og&N[dDq)aI.f@Q[uXZq(#J"84k7RM9GI6Eu=ob5#K["qZi86D#mOt?F/UJLHEq@EFtnV[YYJGC0N2k#UGs_O)`e)0)d_`U4<:#BZoVfh*cco3&^>XC>$l0:NDf3PVCPLkT+K[Gj[;*Mi.`B:GfhIC(l@kjVkHl1:7`XP[)fE9FEV_$!\TETGUITa(dFf,"t3A+]Y"B=CIq/8;/4FH0h2\_-'@F`\hoa*j-]Y^3`L_r8h1=p=Yqo:=/;_DBHiBuE=[u4d*$B&Ie"+Raq&W57a\Ba#YK`!"66+NaMM5$&r>Bgbs;^cVM_sYUWoa3HQEjJX@)NI.r?q0!VETqhE@j3RfpT"pBK,="rZ_6UM,J9AsiZ&.PVuI"=kH,W`(^\H^L/0Pl;f($GEt/HKdKa-Z[#mb4Qck:NdTka@p4=AMKW!n2kO%iX4a+%PsVJqh'Mg+P*jW\U+Mhj#iUt8&bn)#YWO)\+6#NT0,TqCkQIFZS_tQfq9j]iEWVSG/#.HH;1Ks+:^BgHYq798DlD2M\)Jj:bFB^hgC\o;H:%"`HcWs\CTB1n`h!$E@9Mgk%VV"54r_tmMGA@":V56%)>K12KnD(SlW7A\OSmlGX,:m0V8WqK![YP?b0[4SD:rC-*s.&GJA78Y!'=J*A3?!5Hnp!m]cU73i^-fm[`,^NS554-[-=Z5\`Bk;o;Z;nQGDC::$=t0T\E-1Y=kP3K%I"HS5IogSDcLLBO3hleVhS@CWc(mO8<;,DEi0!5GO>7RPopn9ZYXJ#O"H@C(tsj/.PI+-Y"pJ@=gj.uGFR3Z+[*^=BVXt$Cc*W1/+-B5+alZI1hBZo-/BldS`68Ql\;k-:(?g%7u7$pCe%rKe94K)B.N>\f_[4(&VtcnFh/?.eBk5GO<,P\GA;#]]3$>VTQBYBGrpH')5Y:[OJ_i^9Kd5i5KbtHR>X\kU)%s5S\FmonqYG2qrh)*9t?/cqb!YMa/8Ub@.B+9K".)ZAlu_*NdqGMqYu*bendstream endobj % 'Page1': class PDFPage 6 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << /FormXob.2936907bfdf77cbc498f016927101147 5 0 R >> >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 11 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 1 /Kids [ 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 597 >> stream Gb!kq995Pr&ACZWJ,#&2;@,5aK2bk)COD:DOH\VWmr_*U)DL![K\ia]fR@bDF?c&FC57`T8(-3ltE@Y4,j6:o<\:tk+a7>W':Dlage,arrdgPjD,n8jIL0.6n44Bp7Qa!=L0M48h`&ft38C`^FEa25jZ5AF`h_"q<=K^rD2jX[9Q75=YN/'7j89_C%`&Wsh*[+hHQ2a/Zq0*ZNRV#C['u\@9"7taRW$*m.Eg7_i%E8U2S8=Q0MAYbR-BPT=KRQe#_^QrNjII1'@6-]8!U9NrJA4)N1lrGO`P^#5d3u3-b$O~>endstream endobj % 'R11': class PDFOutlines 11 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 12 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000569 00000 n 0000000785 00000 n 0000004495 00000 n 0000004838 00000 n 0000004973 00000 n 0000005242 00000 n 0000005348 00000 n 0000006089 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 8 0 R /Root 7 0 R /Size 12 >> startxref 6141 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-mergePage.pdf0000664000175000017500000010567112064405213024665 0ustar srichtersrichter00000000000000%PDF-1.3 1 0 obj << /Kids [ 4 0 R ] /Type /Pages /Count 1 >> endobj 2 0 obj << /Producer (Python PDF Library \055 http\072\057\057pybrary\056net\057pyPdf\057) >> endobj 3 0 obj << /Type /Catalog /Pages 1 0 R >> endobj 4 0 obj << /Parent 1 0 R /Contents 5 0 R /Resources << /ColorSpace << /CS1 6 0 R /CS0 8 0 R >> /ExtGState << /GS0 10 0 R >> /Font << /T1_6 11 0 R /T1_4 15 0 R /T1_5 18 0 R /T1_2 23 0 R /T1_3 26 0 R /T1_0 29 0 R /T1_1 32 0 R /F2 35 0 R /F1 36 0 R >> /ProcSet [ /ImageC /Text /PDF /ImageI /ImageB ] >> /Rotate 0 /CropBox [ 18 20.59200 630 812.60000 ] /LastModified (D\07220070112140310\05505\047) /MediaBox [ 18 20.59200 630 812.60000 ] /Type /Page >> endobj 5 0 obj << /Length 11617 >> stream q /CS0 cs 0.30000 scn 1 i /GS0 gs 470.19100 519.34600 m 470.19100 519.34600 122.40000 12.08000 re f* /CS0 CS 1 SCN 0.49800 w 10 M 0 j 0 J [ ] 0 d 469.94200 519.34600 m 470.19100 519.34600 l 592.59100 519.34600 l 592.83900 519.34600 l 592.59100 519.34600 m 592.59100 531.42500 l 592.83900 531.42500 m 592.59100 531.42500 l 470.19100 531.42500 l 469.94200 531.42500 l 470.19100 531.42500 m 470.19100 519.34600 l 297.39100 471.34600 m 297.39100 519.34600 l 376.59100 471.34600 m 376.59100 519.34600 l 462.99100 471.34600 m 462.99100 519.34600 l 542.19100 471.34600 m 542.19100 519.34600 l 592.59100 471.34600 m 592.59100 519.34600 l S 0.79700 w 52.50100 771.33600 m 592.59100 771.33600 l S 0.49800 w 117.30100 747.33600 m 117.30100 771.33600 l S 1 scn BT /T1_0 1 Tf 0.00020 Tc 0.05180 Tw 0 Ts 100 Tz 0 Tr 6.97100 0 0 6.97100 451.56820 447.35570 Tm (For Privacy Act and Paperwork Reduction) Tj 0.05570 Tw 4.76000 -1.14300 Td (Act Notice\054 see back of Copy D\056) Tj 0 Tc 0 Tw -18.61400 43.02900 Td (1) Tj /T1_1 1 Tf 0.00020 Tc 0.05950 Tw -24.83900 3.44100 Td (Employee\222s social security number) Tj ET 0.79700 w 52.50100 471.34600 m 52.50100 771.29600 l 592.59100 471.34600 m 592.59100 771.33600 l S 0.49800 w 52.50100 747.34600 m 592.59100 747.34600 l S BT /T1_1 1 Tf 0.00090 Tc 0 Tw 4.97920 0 0 4.97920 398.19060 597.75900 Tm (Retirement) Tj 0 -1 TD (plan) Tj 0.00080 Tc 7.27000 1 Td (Third\055party) Tj -0.00050 Tc 0.06980 Tw T* (sick pay) Tj 0.00070 Tc 0 Tw -14.56200 1 Td (Statutory) Tj 0.00080 Tc T* (employee) Tj /T1_0 1 Tf 0 Tc 6.97100 0 0 6.97100 477.39060 691.33900 Tm (6) Tj 0 6.88600 TD (2) Tj /T1_1 1 Tf 0.00020 Tc 0.06110 Tw -58.87300 -3.44400 Td (Employer\222s name\054 address\054 and ZIP code) Tj ET 52.50100 723.33600 m 592.59100 723.33600 l 470.19100 519.34600 m 470.19100 747.34600 l S BT /T1_1 1 Tf 0.06490 Tw 6.97100 0 0 6.97100 488.49430 667.33900 Tm (Allocated tips) Tj /T1_0 1 Tf 0 Tc 0 Tw -19.15100 0 Td (7) Tj /T1_1 1 Tf 0.00020 Tc 0.06970 Tw 1.59300 -3.44300 Td (Advance EIC payment) Tj /T1_0 1 Tf 0 Tc 0 Tw 15.96600 3.44300 Td (8) Tj ET 347.79100 699.34600 m 592.59100 699.34600 l S BT /T1_0 1 Tf 0.00780 Tc 6.97100 0 0 6.97100 473.48680 643.33900 Tm (10) Tj 0 Tc -16.99900 0 Td (9) Tj /T1_1 1 Tf -0.00040 Tc 0.06290 Tw 6.18420 0 0 6.97100 366.09440 739.33900 Tm (Wages\054 tips\054 other compensation) Tj 0.00020 Tc 0.05970 Tw 6.97100 0 0 6.97100 488.49430 739.33900 Tm (Federal income tax withheld) Tj ET 347.79100 675.34600 m 592.59100 675.34600 l S BT /T1_1 1 Tf 0.07090 Tw 6.97100 0 0 6.97100 488.49430 715.32900 Tm (Social security tax withheld) Tj 0.06730 Tw -17.55900 0 Td (Social security wages) Tj /T1_0 1 Tf 0.00190 Tc 0 Tw 15.40600 -13.77000 Td (12a) Tj 0.00780 Tc -17.55900 0 Td (11) Tj /T1_1 1 Tf 0.00020 Tc 0.06180 Tw -37.18700 -15.49400 Td (Employer\222s state ID number) Tj /T1_0 1 Tf 0 Tc 0 Tw 55.30600 29.26400 Td (4) Tj -17.55900 0 Td (3) Tj /T1_1 1 Tf 0.00020 Tc 0.05790 Tw -41.31400 3.44400 Td (Employer identification number \050EIN\051) Tj ET 52.50100 651.34600 m 592.59100 651.34600 l S BT /T1_1 1 Tf 0.06430 Tw 6.97100 0 0 6.97100 366.09440 691.33900 Tm (Medicare wages and tips) Tj 0.06550 Tw 0 -3.44300 TD (Social security tips) Tj /T1_0 1 Tf 0.00780 Tc 0 Tw -2.15300 -10.18700 Td (13) Tj 0 Tc 0.56000 13.63000 Td (5) Tj /T1_1 1 Tf 0.00020 Tc 0.05700 Tw -41.31400 -6.88600 Td (Control number) Tj ET 52.50100 627.34600 m 592.59100 627.34600 l S BT /T1_1 1 Tf 0.06350 Tw 6.97100 0 0 6.97100 66.99080 619.33900 Tm [ (Employee\222s first name and initial) -28197 (Nonqualified plans) ] TJ 0.07230 Tw 60.46600 10.32900 Td (Medicare tax withheld) Tj /T1_0 1 Tf 0.00780 Tc 0 Tw -62.30100 -25.82300 Td (15) Tj 42.59000 8.60700 Td (14) Tj ET 347.79100 603.34600 m 592.59100 603.34600 l S BT /T1_0 1 Tf 6.97100 0 0 6.97100 300.67700 511.32920 Tm (17) Tj -12.39300 0 Td (16) Tj /T1_1 1 Tf 0.00220 Tc 21.77700 8.60700 Td (Other) Tj /T1_0 1 Tf 0.00780 Tc 1.97700 -8.60700 Td (18) Tj /T1_1 1 Tf 0.00020 Tc 0.05990 Tw -44.88400 1.57900 Td (Employee\222s address and ZIP code) Tj ET 52.50100 519.34600 m 592.59100 519.34600 l S BT /T1_1 1 Tf -0.00040 Tc 0.07880 Tw 6.87140 0 0 6.97100 311.47200 511.32920 Tm (State income tax) Tj /T1_2 1 Tf -0.00010 Tc 0 Tw 5.97510 0 0 5.97510 66.99080 511.32920 Tm (State) Tj /T1_1 1 Tf -0.00020 Tc 0.07630 Tw 6.27390 0 0 6.97100 225.08200 511.32920 Tm (State wages\054 tips\054 etc\056) Tj 0 Tc 0.07610 Tw 5.67630 0 0 6.97100 555.59470 511.32920 Tm (Locality name) Tj ET 210.99100 471.34600 m 210.99100 519.34600 l S 0.79700 w 52.50100 471.34600 m 592.59100 471.34600 l S BT /T1_0 1 Tf -0.00010 Tc 0.05920 Tw 7.96680 0 0 7.96680 52.50120 435.14660 Tm [ (Copy ) -7 (A) -500 (For Social Security Administration) -500 (\227) ] TJ /T1_1 1 Tf 0.07590 Tw 22.42000 0 Td (Send this) Tj 0.06740 Tw -22.42000 -1.12500 Td (entire page with Form W\0553 to the Social Security) Tj 0.06440 Tw 0 -1.12500 TD (Administration\073 photocopies are ) Tj /T1_0 1 Tf 0 Tw 14.73000 0 Td (not ) Tj /T1_1 1 Tf 0.00170 Tc 1.89000 0 Td (acceptable\056) Tj 0.00020 Tc 0.06790 Tw 6.97100 0 0 6.97100 420.19890 459.34580 Tm [ (Department of the Treasury\227Internal) -354 (Revenue ) -19 (Service) ] TJ /T1_3 1 Tf -0.00020 Tc 0.03880 Tw 10.45640 0 0 10.95440 88.18250 404.83290 Tm [ (Do Not Cut\054 Fold\054 or Staple For) -10 (ms on This Page) -377 (\227) -340 (Do) -340 (Not Cut\054 Fold\054 or Staple For) -10 (ms on This Page) ] TJ /T1_0 1 Tf 0.00030 Tc 0 Tw 6.97100 0 0 6.97100 52.50120 447.14660 Tm (Form) Tj ET 0.49800 w 2 J [ 0.99600 2.49000 ] 0 d 55.98700 603.34600 m 369.30100 603.34600 l 55.98700 495.34600 m 590.26000 495.34600 l S BT /T1_1 1 Tf 0.00020 Tc 0.07610 Tw 6.97100 0 0 6.97100 488.49430 643.33900 Tm (Dependent care benefits) Tj 0.06640 Tw 0 -3.44300 TD (See instructions for box 12) Tj 0.07070 Tw -25.02900 -28.99400 Td (Cat\056 No\056 10134D) Tj ET 0 J [ ] 0 d 81.39100 495.34600 m 81.39100 507.29600 l S BT /T1_0 1 Tf 0 Tc 0 Tw 6.97100 0 0 6.97100 172.94930 763.32900 Tm (a) Tj -16.47600 -3.44100 Td (b) Tj 0 -3.44400 TD (c) Tj 0 -10.32700 TD (d) Tj 0 -3.44300 TD (e) Tj 0 -13.91600 TD (f) Tj ET 297.30100 747.33600 m 297.30100 771.33600 l S BT /T1_1 1 Tf 6.97100 0 0 6.97100 129.08210 756.82600 Tm (Void) Tj /T1_4 1 Tf -0.00050 Tc 23.90040 0 0 23.90040 74.87800 447.14660 Tm (W\0552) Tj /T1_3 1 Tf 0.00010 Tc 0.03950 Tw 10.95440 0 0 10.95440 122.81820 459.09680 Tm [ (W) 40 (age and T) 70 (ax) ] TJ 0 Tc 0 Tw 0 -1.09100 TD (Statement) Tj /CS1 cs 1 scn /T1_5 1 Tf 23.90040 0 0 23.90040 307.37910 447.14660 Tm (2) Tj ET 81.39100 471.35600 m 81.39100 483.30600 l S BT /T1_5 1 Tf -0.00010 Tc 9.95850 0 0 9.95850 65.17840 756.34810 Tm (22222) Tj 0 Tc 23.90040 0 0 23.90040 339.80400 447.14660 Tm (0) Tj 0.65750 Tc -0.67800 0 Td (07) Tj ET 0.99600 w 150.20400 754.36600 m 160.16300 754.36600 l 160.16300 754.36600 m 160.16300 764.32500 l 160.16300 764.32500 m 150.20400 764.32500 l 150.20400 764.32500 m 150.20400 754.36600 l S /CS1 CS 1 SCN 1.99200 w 2 J 594.08400 469.95200 m 594.08400 491.55200 l 594.08400 469.95200 m 572.48400 469.95200 l 51.10700 469.95200 m 51.10700 491.55200 l 51.10700 469.95200 m 72.70700 469.95200 l 51.18700 772.73000 m 51.18700 751.13000 l 51.18700 772.73000 m 72.78700 772.73000 l S /CS0 cs 1 scn BT /T1_0 1 Tf 0.00020 Tc 0.06050 Tw 6.97100 0 0 6.97100 305.07870 751.32900 Tm (OMB No\056 1545\0550008) Tj 0.06210 Tw 0 1.57700 TD (For Official Use Only) Tj /T1_6 1 Tf 0 Tc 0 Tw 4.97920 0 0 4.97920 378.65210 763.31910 Tm <02> Tj ET /CS0 CS 1 SCN 0.49800 w 0 J 189.39100 603.34600 m 189.39100 627.34600 l S BT /T1_1 1 Tf 0.00020 Tc 0.07930 Tw 6.97100 0 0 6.97100 194.37000 619.33900 Tm (Last name) Tj ET 347.79100 579.34600 m 592.59100 579.34600 l 470.19100 555.34600 m 592.59100 555.34600 l 506.19100 617.34700 m 506.19100 603.34600 l 506.19100 593.34700 m 506.19100 579.34600 l 506.19100 569.34700 m 506.19100 555.34600 l S BT /T1_1 1 Tf 0 Tc 0 Tw 3.98340 0 0 3.98340 473.48680 615.13660 Tm (C) Tj 0 -0.87500 TD (o) Tj T* (d) Tj 0 -0.87500 TD (e) Tj /T1_0 1 Tf 0.00340 Tc 6.97100 0 0 6.97100 473.48680 595.32910 Tm (12b) Tj /T1_1 1 Tf 0 Tc 3.98340 0 0 3.98340 473.48680 591.12660 Tm (C) Tj 0 -0.87500 TD (o) Tj T* (d) Tj 0 -0.87500 TD (e) Tj /T1_0 1 Tf 0.00190 Tc 6.97100 0 0 6.97100 473.48680 571.35900 Tm (12c) Tj /T1_1 1 Tf 0 Tc 3.98340 0 0 3.98340 473.48680 567.15650 Tm (C) Tj 0 -0.87500 TD (o) Tj T* (d) Tj 0 -0.87500 TD (e) Tj ET 347.70100 747.34600 m 347.70100 519.34600 l S BT /T1_0 1 Tf 0.00780 Tc 6.97100 0 0 6.97100 466.27690 511.32920 Tm (19) Tj /T1_1 1 Tf -0.00020 Tc 0.07130 Tw 6.27390 0 0 6.97100 390.10430 511.32920 Tm (Local wages\054 tips\054 etc\056) Tj /T1_0 1 Tf 0.00780 Tc 0 Tw 6.97100 0 0 6.97100 545.47680 511.32920 Tm (20) Tj /T1_1 1 Tf -0.00030 Tc 0.07120 Tw 6.47300 0 0 6.97100 477.39060 511.32920 Tm (Local income tax) Tj ET 2 J 362.30000 580.36100 m 372.25900 580.36100 l 372.25900 580.36100 m 372.25900 590.32000 l 372.25900 590.32000 m 362.30000 590.32000 l 362.30000 590.32000 m 362.30000 580.36100 l 398.19100 580.36100 m 408.14900 580.36100 l 408.14900 580.36100 m 408.14900 590.32000 l 408.14900 590.32000 m 398.19100 590.32000 l 398.19100 590.32000 m 398.19100 580.36100 l 434.49900 580.36100 m 444.45800 580.36100 l 444.45800 580.36100 m 444.45800 590.32000 l 444.45800 590.32000 m 434.49900 590.32000 l 434.49900 590.32000 m 434.49900 580.36100 l S 0 J 167.70100 747.33600 m 167.70100 771.33600 l 470.19100 531.34600 m 592.59100 531.34600 l 506.19100 545.34700 m 506.19100 531.34600 l S BT /T1_0 1 Tf 0.00340 Tc 0 Tw 6.97100 0 0 6.97100 473.48680 547.32910 Tm (12d) Tj /T1_1 1 Tf 0 Tc 3.98340 0 0 3.98340 473.48680 543.12660 Tm (C) Tj 0 -0.87500 TD (o) Tj T* (d) Tj 0 -0.87500 TD (e) Tj ET /CS1 CS 1 SCN 1.99200 w 2 J 594.09400 772.72000 m 572.49400 772.73000 l 594.09400 772.72000 m 594.08400 751.13000 l S /CS0 CS 1 SCN 0.49800 w 0 J 326.10100 602.92700 m 326.10100 626.92700 l S BT /T1_1 1 Tf 6.97100 0 0 6.97100 331.08030 618.92080 Tm (Suff\056) Tj ET 1.99200 w 166.52600 747.34600 m 167.52200 747.34600 l 297.36100 747.34600 l 298.35700 747.34600 l 297.36100 747.34600 m 297.36100 771.33600 l 298.35700 771.33600 m 297.36100 771.33600 l 167.52200 771.33600 l 166.52600 771.33600 l 167.52200 771.33600 m 167.52200 747.34600 l S Q q 1 0 0 1 0 0 cm BT /F1 12 Tf 14.40000 TL ET BT /F2 12 Tf 14.40000 TL ET BT 1 0 0 1 175.74800 751.18110 Tm (555\05555\0555555) Tj T* ET BT 1 0 0 1 68.03150 727.08660 Tm (MA 123\0559424\05590) Tj T* ET q 1 0 0 1 68.03150 696.66140 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (Future Corporation) Tj T* ET Q Q q 1 0 0 1 68.03150 684.66140 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (1 Belltower Place) Tj T* ET Q Q q 1 0 0 1 68.03150 672.66140 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (Maynard\054 MA 01754) Tj T* ET Q Q q 1 0 0 1 68.03150 660.66140 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (USA) Tj T* ET Q Q BT 1 0 0 1 68.03150 632.12600 Tm (CTRL\055FC\0552982) Tj T* ET BT 1 0 0 1 68.03150 608.03150 Tm (Jonathan) Tj T* ET BT 1 0 0 1 194.17320 608.03150 Tm (Duddley) Tj T* ET q 1 0 0 1 68.03150 580.44090 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (10 Main Street) Tj T* ET Q Q q 1 0 0 1 68.03150 568.44090 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (Maynard\054 MA 01754) Tj T* ET Q Q q 1 0 0 1 68.03150 556.44090 cm q 0 0 0 rg BT 1 0 0 1 0 0 Tm /F1 12 Tf 12 TL (USA) Tj T* ET Q Q BT 1 0 0 1 423.37800 727.08660 Tm (78\054000) Tj T* ET BT 1 0 0 1 542.43310 727.08660 Tm (13\054260) Tj T* ET BT 1 0 0 1 56.69291 497.48030 Tm (MA) Tj T* ET BT 1 0 0 1 91.84252 497.48030 Tm (MA\055FC\05523410) Tj T* ET BT 1 0 0 1 254.14960 497.48030 Tm (78\054000) Tj T* ET BT 1 0 0 1 335.83460 497.48030 Tm (6\054240) Tj T* ET Q endstream endobj 6 0 obj [ /Separation /FCP_700 /DeviceCMYK 7 0 R ] endobj 7 0 obj << /Filter /FlateDecode /Length 397 /Size [ 255 ] /Encode [ 0 254 ] /FunctionType 0 /BitsPerSample 8 /Domain [ 0 1 ] /Range [ 0 1 0 1 0 1 0 1 ] /Decode [ 0 1 0 1 0 1 0 1 ] >> stream Hテタヒョマニカlロカ宰カmロカmロカ];フネタ1ィチ nCハミ1ャ o1「糟l」ヘ霹0ヲア稽マ&_3。鵜l答フ荐0・ゥLmモ墅f0」厠lウ塹0ァケフm墹ー[ネツアィナ,n KZハメ務ャ,o+ZノハVアェユャn kZヒレヨアョャoレネニ6アゥヘln [レハヨカアュlo;レノホvアォンn{レビアッ:ネチqィテG:ハム子ャ':ノノNqェモ懣 g:ヒルホqョ懶コネナ.qゥヒ\ Wコハユョqュ\7コノヘnqォロワwコヒンqッワzネティヌ< Ozハモ橢ャ</zノヒ^ェラシ ozヒロ゙ョシネヌ>ゥマ| _ハラセュ|?ノマ~ォ゚ピスツ endstream endobj 8 0 obj [ /Separation /FCP_1 /DeviceCMYK 9 0 R ] endobj 9 0 obj << /Filter /FlateDecode /Length 674 /Size [ 255 ] /Encode [ 0 254 ] /FunctionType 0 /BitsPerSample 8 /Domain [ 0 1 ] /Range [ 0 1 0 1 0 1 0 1 ] /Decode [ 0 1 0 1 0 1 0 1 ] >> stream H チ nロカmロカmロワmロカmロカmロ(  安 │A 呉チ p! 諌。 ーa 酒瘟∴科痩ィQ崎ム1筋アクq醸I逗 I蝿ト迂嫡、II膜菲I曹)I賦ヤゥI宕エiI落鯔吹ノ秤フ卷着ャYノ枕ルノ巣9ノ赴ワケノ島シyノ酪)P)T按)R┐E)V娯ナ)Qr%)U還・)Sイe)W儒蟀P♀ゥT果鮒RェUゥV碕ユゥQ5ゥU芹オゥSコuゥW嘱iミ iヤ鞍絞メ┬Miヨ梧ヘiムv-iユ関ュiモカmiラ授鰔℃鰆火晞メョ]鰒咋ン鰉=鰈謹ス鰌セ}鰊04庵2┌C6吾テ1q#5貫」3アc7首纖0♂4暇等2ゥS6埼モ135緊ウ3ケs7錠Yー Yエ闇戯イ├KYカ悟ヒYアu+Yオ閑ォYウオkYキ寿ルー″ルエ河巍イュ[ルカ削ロルア;ルオ襟サルウス{ルキ9p9t暗9r┘G9v後ヌ9qs'9u鑑ァ9sウg9w受郢p°ケt架了rォWケv鷺ラケq7ケu菌キケsサwケw埴yy杏准┤Oy檎マyw/y陥ッyキoy樹¥珂漱ッ_搾゚Α?近ソソ`ゥ endstream endobj 10 0 obj << /BG2 /Default /OPM 1 /UCR2 /Default /HT /Default /Type /ExtGState /SM 0.02000 /OP true /SA false /op true >> endobj 11 0 obj << /FirstChar 2 /Widths [ 1000 ] /Encoding 12 0 R /Type /Font /BaseFont /KFECDJ+Universal-NewswithCommPi /LastChar 2 /FontDescriptor 13 0 R /Subtype /Type1 >> endobj 12 0 obj << /Type /Encoding /Differences [ 2 /H17075 ] >> endobj 13 0 obj << /FontBBox [ -7 -227 989 764 ] /StemV 0 /FontFile3 14 0 R /Flags 4 /Descent 0 /Ascent 0 /FontName /KFECDJ+Universal-NewswithCommPi /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057H17075) /CapHeight 0 >> endobj 14 0 obj << /Length 226 /Filter /FlateDecode /Subtype /Type1C >> stream H叡d`ad`ddTvsuvメヘヒ,K-*NフムK-/.マ,ノpホマヘ ネゥQ!テC懷,醜ヒ_?'ーハD蔗~"=Bp:!fFFvdCssS錮ぬ「フ硬MCK ヌ美、T猝竰ヤワbマシ蕈「「ト綴=ヌ 穿bヤ籌「2(N#c;督J雀, ゚ラムッ壤EソRァJaU}櫁ソ5ャRリコサvvウ.f0ォU endstream endobj 15 0 obj << /FirstChar 45 /Widths [ 333 0 0 0 0 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 778 ] /Encoding /WinAnsiEncoding /Type /Font /BaseFont /KFECBJ+Helvetica-Condensed-Black /LastChar 87 /FontDescriptor 16 0 R /Subtype /Type1 >> endobj 16 0 obj << /FontBBox [ -168 -250 1113 1000 ] /StemV 159 /FontFile3 17 0 R /XHeight 560 /Flags 262176 /Descent -189 /Ascent 750 /StemH 115 /FontName /KFECBJ+Helvetica-Condensed-Black /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057W\057hyphen\057two) /CapHeight 750 >> endobj 17 0 obj << /Length 469 /Filter /FlateDecode /Subtype /Type1C >> stream H叡d`ab`ddTvsuvメHヘ)K-ノLNヤuホマKIヘ+NMムuハILホ)R!ヘC伜 証o已}ゾェa鋲`XPヘ}!UT 1012ホル龕_PY漠朮「速ゥ`hiaェ"ヘA、・!4VpLノOJUョ,.Iヘ-VフKホ/*ネ/J,IMムSPpフノQ儕ャ濃彁T;N!ウX!Q。、(1%57ア([!?Mチ'3/ソ、イ Uィ(Gチム]!1/E?ソH!h@qiRqfJfbQfjアn#0+## サ|}| {縢-ニm゚{仭o゙(]wマo-vセン゚・ヤ}d\ン;wk跣゙?界ラウo徘瓠湎ホ9ノゥR!ル鯔rヨャヨニv ソ、樫н=掵ハヨSァ-=sJ糜ケ_J}旅<[キカ笹o ケvセ灌l*g戌ウ櫛Gチマ&ム゚vl.vvXフ dロト=懦闖%ャスl,aナ]gokカ?宜;ル*l奬;e6ロwvョニワ=<|爪テ| endstream endobj 18 0 obj << /FirstChar 48 /Widths [ 720 720 720 720 720 720 720 720 ] /Encoding 19 0 R /Type /Font /BaseFont /KFECCE+OCRA /LastChar 55 /Subtype /Type1 /FontDescriptor 20 0 R /ToUnicode 22 0 R >> endobj 19 0 obj << /Type /Encoding /Differences [ 48 /zero 50 /two 55 /seven ] >> endobj 20 0 obj << /FontBBox [ -720 -239 1440 813 ] /StemV 0 /FontFile3 21 0 R /XHeight 539 /Flags 4 /Descent -203 /Ascent 737 /FontName /KFECCE+OCRA /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057two\057zero\057seven) /CapHeight 778 >> endobj 21 0 obj << /Length 418 /Filter /FlateDecode /Subtype /Type1C >> stream H吋MMKAンムv躅}Xa2;ミ・O螂D ェCatア],リワユタC' 「ヘ*e噺yーワ寉キ>~ョNンh8ウLAレ・ヌサシヌ\桃エフL}>ミャ/瀘閙レhOuキtDXレヘ_Z松{:ルJト62ミ~F;8)涵迭ヨ」k <ト#c」」リ糎%<欒メ槙ァカテイイ#++ )2験wsy$URv゚ik:ケ^タf?キヘ、5゙$UモNヨュ g0 玩58_YzA、*シT檸Zグ。 bユ藷ヨHオィwIコチ:yw調p?ヘ_畿ニphワネ:ハ+箇X{粲^4ZリモEノメN畝 多メ9ィイ。f"僚也oヒ0ト8K劵リ6b5J 訝p#2畦ョネ,g2zLZb碣、"包9ク葬凪"L趾R)WシBMウ.4蒙カャA+メ+タ椹ゥ endstream endobj 22 0 obj << /Length 229 /Filter /FlateDecode >> stream H欝P=oテ ン7&v、zアXUミエ鞄ホ.R 闌m%タ聨ス;~lN叉7yンbホ:C84ツ{(チX7oアzPx"キqh\遑ョソ、iンヌ巉"ヅ]サkqI」 tH ;ニ勝*慝タ3サホ。\b 拶i$蚫 d2tVニスモソ韓Z)D.W\f\ュク,リェsキシ禊梭呈橋,ハ:|*5萇 hl endstream endobj 23 0 obj << /FirstChar 32 /Widths [ 250 0 0 0 0 0 0 0 0 0 0 0 0 333 0 0 0 0 0 0 0 0 0 0 0 0 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 556 500 0 0 0 0 0 0 0 0 0 0 0 0 444 0 444 500 444 0 0 500 222 0 444 222 778 500 500 500 0 333 444 278 500 0 0 0 444 ] /Encoding /WinAnsiEncoding /Type /Font /BaseFont /KFECAD+Helvetica-Condensed /LastChar 121 /FontDescriptor 24 0 R /Subtype /Type1 >> endobj 24 0 obj << /FontBBox [ -174 -250 1071 990 ] /StemV 79 /FontFile3 25 0 R /XHeight 556 /Flags 32 /Descent -189 /Ascent 750 /StemH 67 /FontName /KFECAD+Helvetica-Condensed /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057S\057t\057a\057e\057R\057i\057r\057m\057n\057p\057l\057T\057h\057d\057hyphen\057y\057s\057c\057k\057u\057o) /CapHeight 750 >> endobj 25 0 obj << /Length 1731 /Filter /FlateDecode /Subtype /Type1C >> stream H延TkTSWセ$7アユTs{aォFJオBユ。WH后xT-P活tt"  &!・鸛y& R_郁|エ 2ュ 7*Fミ"I 埀>オadロeカu武肉ィEDヒソUカ?Β梔%オNH靖|m」!rメワン"Yメ那、mハo剃擺v ゚<~踵ッeャゥd、gl拈ミTク驩ツPタ&L!(weナタ~タ`.ルE゚Pネn%ヴZ戌複志_mfョ收゙畉 iPTEィン_{NイキムyD8穴勝)03雅站レ#撻VK墫YイgKv jカ褒糜5ォm甃:メA0リ゚}」q、オ1\・ォョチル濾pHざクヘ.ルuf,ルMNテ~ホAケOヲソ`ヌoルHH」ク「ネVq, フz:6々[}Pス蛙Rヤ]万VB<iケ+gオ・イ樵C/yヲタH・Y#ォ襭|マタc'Zマ@。ミN|\oヘ、ムモルBv空md$レu鴒テ郵柎y篆@Jd ヲ/@蜥 テキf御`LRテuホGユ賊ユア舳(哽;dK鴬隊8Dコ,v摩ミ#ヨムhゥ%。9ネ鶩9Cシ雁沛sY縢ス尖タ亨ェ鑄gN殃;レN゚nムndg「ス彁<扶=vテvS゙ニ根'^B撹>ーイQoDrΜ僊1+o。訝UKy?,ナ/ツ-/ー閧ヽHド92ム1増ヒ蛛ト T披」|Ft(oテ ア粘ホ-/鋪BNp>サ西+レ?テX"ッ趨Gマ;$_6ヲマ/_v~セ」土゚Xx\Gァ2オ9rス1O誅ヨN7F稟スb餔ホ咾zネ^遺ゥ8兼、・cдカヨ~ クl・*1Z・/F*7憶 ゥg*・傳aヨ蘭ッ4OBィョワセソ矧Tフ,ト@視キvネ^n E^・DxDyシNXt#z.羨;ムハIlm0 ムユニ{ロ!-fキヨl-1踪xu槃罅樋,シシスw^uヒ{ノォ違オuテ゚ュロ礁仭cソiリ卻ァmzワ>H、f;ヘ|.ツ叭B韋uッGGヌ宜r3ヒWィツラjvァェュラセャc攷sモョケオ辭CDリ胙ュ>ス Czイマfシ7~ウ!Wォa} #Uス秧q矼ヌrィ5(:n挌&1\>巣冪m"カnmaケgクVy チ土シームK弛チTィ/E ネ゙「*]刮)*)ワ」」ウハマ}トrノェオxY6'?;マ7ハtV冷クXシカ循」ト嘸ォ、セア勲Wカエヤエミ7サホ エウ'ロホン?メ JョJQ36増@ 8姨IHヒN*嚼ョ英=蛩圻yヤ{ endstream endobj 26 0 obj << /FirstChar 32 /Widths [ 300 0 0 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 660 660 0 540 0 0 0 0 0 0 0 660 0 620 0 0 600 540 0 0 900 0 0 0 0 0 0 0 0 0 540 0 0 540 540 0 560 540 260 0 0 260 820 540 540 540 0 340 500 380 540 0 0 540 0 0 0 0 0 0 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 ] /Encoding /WinAnsiEncoding /Type /Font /BaseFont /KFECAO+FranklinGothic-Demi /LastChar 151 /FontDescriptor 27 0 R /Subtype /Type1 >> endobj 27 0 obj << /FontBBox [ -199 -250 1014 934 ] /StemV 147 /FontFile3 28 0 R /XHeight 508 /Flags 32 /Descent -174 /Ascent 686 /StemH 147 /FontName /KFECAO+FranklinGothic-Demi /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057D\057o\057N\057t\057C\057u\057comma\057F\057l\057d\057r\057S\057a\057p\057e\057m\057s\057n\057T\057h\057i\057P\057g\057emdash\057W\057x) /CapHeight 686 >> endobj 28 0 obj << /Length 2241 /Filter /FlateDecode /Subtype /Type1C >> stream H瑛U{Tラソテ23`a&ヒgカFサMD ムリ&"`ト*゙ウ辟ヒ)g侮х符敢ニNハ(caチ=カュウ$ロ*ヒュI3 wlフヒ iノ%I「6宦Sb :丕Rコ~」嶬江トEK7b蒭DSトBヒzP乢m7テーワ!Qヨ+$ュァアミホタッ[z蜩G;ホ.霑8$ナuヨEヤ:ュュ^R; _蒻H c7エ>アR zへ^、bネq7@チ淳ツ」ysソ翡ン'Pv リヌrュ7yテノ {スb+ェi丁jlヘb{モカ臂revQフ&磆%x誓Kォ!カ!♪{レ稚yリk 酩レ゚.&?  敦ムツ@ヒuシ・mf;ハZ[%レ&Bsmヌ(7統loノルエテメQC|}8G隆タ`ヌ散ゑQ6R氓 *<樢!fア7ヨ~局>y,La 揖}M[>ッ簿通籔a;オ3g狽ロミP蜒o$5槹ョソタユ_鼎 a艶テワu2ユm%6閏gオ45エ陥*&FEbユ}帛ワ薬ー! ヒ?帥嵬リ┸スY"x_$汳9!}\ロ> endobj 30 0 obj << /FontBBox [ -166 -218 1078 975 ] /StemV 142 /FontFile3 31 0 R /XHeight 517 /Flags 262176 /Descent -182 /Ascent 714 /StemH 107 /FontName /KFEBNJ+HelveticaNeue-Bold /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057F\057o\057r\057P\057i\057v\057a\057c\057y\057A\057t\057n\057d\057p\057e\057w\057k\057R\057u\057N\057comma\057s\057b\057f\057C\057D\057period\057one\057six\057two\057seven\057eight\057zero\057nine\057four\057three\057five\057S\057l\057m\057emdash\057g\057W\057hyphen\057parenleft\057B\057parenright\057T\057h\057M\057U\057colon\057O\057L\057x\057E\057quoteright\057exclam\057I\057Y\057G\057H\057J\057K\057V\057Q\057Z) /CapHeight 714 >> endobj 31 0 obj << /Length 4180 /Filter /FlateDecode /Subtype /Type1C >> stream H瑛UkTSWN{"ワラD咫rチX ィ5ユ~ネテ*(.I・ム辞.ラトXラ<\vAg*遮,uエィィA麻]フィcラエユ:Kルw~フZ撕ホ沮ワs゙鍄キ>r剌有.零讎$'dgLNウ儲Zkl・ナルヨ5ヨィハr狗t悧揖c|、`?-セマョ<+蛯ラテ58,l 輩ノ袤嚢Yオヨn[YV#F年M3"鰊#ニ[*Kャ篦オユ5ヨwォナ還J{U・スクニjナrqヌォZ\`ュカレki%ムV-久Jレュアニ^lアセ[l_%Vョ3m5kォャb|ェX\a儚imヲzMIオヘb+カロャユム鏑NエdJ/卅,@% モバ藩抜LNカP!k痛)+2/匚lカl浜ッル助O7ネ??Zオ゚[鮨ニーOコOサマmNヒm瓏仟f3 サハ$ッHVヤ+~ュFゥR(ロ|゚uセ週jユ\Uュ鼕J5yヤセQ阯獸糯v~7o誑腋オYン「ヒ頡ム妲;G? Hリp-マ7Ceゥアケ.ミ &撃瘉カ瓧此 #0E'A8NNリ宅ンエ&F罕タh0aケミレ+]、モカt}Y^!]q{{Wo=%DaどqZウ uウ 凖伏80'04ニ゙ツ`ィX<弦A,ト鸛ハ!0 @ィ癜軣奨fhB ネ!:伊X3Pナpツg恭:彝ヲx nr「褊ヤ3GQ祟ハDナ゚v\s>ミyィ。 xy'懽2 マアソヒ舳Y獲ワ{+m_y+Б!iァ<ェ80ェサp「.芥h穡ッツエラ嫗0P6纜ШカdエuモタヌオヨJKタX'ュL 椥A鹿cl・I・@Y橘^z 〜(女5mソ8>:ヌハzヨソhg)ロ<」03nCカレ0i&゙ンn-]>[獄フ(0シ闔膠  チL鴪キyaミ蘋=j、|ケ,ナ=麻1霎}サホ鑰y~BrAF|ヨロ_tm2bテpソ`=6ツ(:ヨr禁[ャ&ヌ>医EC2DFB慕=メN ィラ哄ミ_祥赳/"fQナL|;゚ユ/'Jウ裴Sjr-ニ&7a・8\Z[4iョ満枴ノHM*vq゙0皐゚ A馬>慎\メG6v ち2| ァNテキラaゥ"縲徙ツa健`Aテ?K>CAr!4T7ヤ'!*X韭?フユsョ0-yノイTパ2u皓~」0畢ョjR-ュ74)貅Lj繁06編ッ~wルユサ [[dロヌテ\ゴテ330ミ(,ヘ/5]ァ]シサ3{eNチェ ?uF水 チQ退!M齧I牘e7` オBネツ2射ン9ネrcムqg蘰}??ft4qo}P・+勝レh| &Mくァ醋ア゙セ血ルs捲:ヤルBォU ヒ鰕身n冑*Qヒ~NナGナ鵬'゚4懊スI qG=メテ=テNc丶qー{ウ劒`& 茲仭?TモeO40}}イ"!~Q]g1コ跨タCFRィサ`ツス「ッァ~bサクヲラヲ悛ケ堅ウ g゚Kヘ)ア1首゚7@慎A」4lウ、 俯1奐クオhヲ\ューAM$・ナ,jテ「ノz ] ~Tヨ擽.J搗セ傳.ヲ烋ヨ・'リァ閥Rx頃Dツ メ侖Sp<ニN]cD拓Rコ欠ィ蹉(t まレ|H肄!DI)胚(ソ_徴・%ン%%ォウエYmf<(eT-|L-fΒ@*ノィ`;偶側ナNX&鈷8/wツミクT2k^g0ス q簪2肚o;Oト 兼キユ恒o レ*eク推jテvh s|ワZ;\Xオ逕ヲG趣蕚Z拭'メ:zム莪eヘi3Nサ 0,K1フ ┯O瑾~ソcAサX3シ$%ムテp暗<ーャマサ鍋Q鱶O>茶ヲチ菖Mhij,ャ文eeК.P舊ゥノチс占n簑蘗「エ不クキB8。_ヘ0ヨス〔b8Sレタムァ'マQCк醸ロ Nサワ疳w5辧測9牽{uQ騎:JスイVモ0C 飯l6/40IB(7ロUナ卩AキChFノエvH [オゥ1ユu゚ョ゚{ソー?セ火ムレDY(」ーFアクRe頌R徙P!u00Lチニセ4洌%{{'ORP3ンコラ}ヲラト]セイ・繍ョコ=_摎毬qXyレ3クm[イラ_}jOワ4wヘ %ヌ「IウE}ノo「Iノッh}ハ]Sワマ鋪Q兮bh捶*ァ%」*ヌ!_:!ョサ{蒻ユリ=@7ルェ3jd|リ臚。 N煥]Iト9$、ク鱠>ナ淨蟆M鬼2a;0Nり0ムキr^。"ニ獪ッW蘋ヨ]ゥ-スリマ~サd「 25Z任q8,Kコe@g「esn!y斬 ウ,トワ%7q|F2牧幡越糶%@CO筒 ス 0コbqサhシウャホbo4 0f/+ ゥスx、[gラハ需Sモ`ヘb洗Qウ8ZBハソc9・xVgテF\コAMmッCト俎ルOュ[骭X鰍コ陛<コX豚%悁トQ@$サトgZB_Å[ヨ+册,T_P「セヒ疆&議8%a({ュモク"ヌェ$コ橘哄TシQ6@}Jフ気TQ榊ト 瀉ュ#キtiャ「5BSヘAMoルz D,焚オ?,ヤVoAサEK ォqjマケワ9螂8」Sョck、吉メfDンャlIDGンミt\m(>_%虐r致&Jv~si:リッt)fムy)セ ナ-ユ糴Z,atュ!ルロ們龕xBCョ&ェ粲コロメKーk(Dサf処哨W*儕HM穿u。ヨoyーチー/ソ楮ロメr"リW&{,t#eオ:g7-クァ。w(H<旃ス:アξ0クDチチサiヒ>.幸xp磋u'VG(ァsKz充ニ渡TbX佶銜冷f!癢ツァ「86R゙P[m・慷gBエヨ?1o>ヒ[媚賞{ヤ~xシ。Wソ[ミマbkb*梟uZフF ヌA'B゚輊pl%ハ9・燬i儀FIチ?ンカ]iウ?府f孚」bル脾EタA6砧+ンラ:jPyTv゙%ナY卩r&鈬5;ヨJ5ン[Y?ヲU#トa,p息ィK[A洽゚ィEZj暁ヲーLヘ俵ハヲJv ィC}モ^k*妃ゥトsΗ規ェ7+8濡ァ|p~iチ」UチZ゚トヲ[w爵シラn啻从4,HaシェィEmYエ太l=樋摯g4タ_ニ*Zキeュ8:ストネrァh ヨtコネ頚Zミャeムム娟フgン憎阮6fC2.g{!゙閊昶カQャコホ舮劉ゥサL讓fa<ワ」ヨ-劃ュホT愧ゥ"帶撲$ツ脂`チヲドテ4L6ワ窺lT\_rィm{リLマメ嶮嗅{5薤ノ5ュ殍@| M椽$6^ョO,率ヘ]ス\。腸&4スホムN殱トェ?wマフ^筮Qメ0トv程'疽-t「 ヘ%Nーヤ ミ_6ネニクfS'ヲタоソ晒hセOI#)モE 5}クRCウ)マハ蘢蛇}T/チ鞆ヤハ8FLa1{弑2ルイコゝ"kーヨテ{-エ。蚪」イクレ?゙逃゙ンd0p"4ケ3 竝3S)7セ*.ヘフ(斑]ウ#mK6),46| sメャヌフニ!ゥfウォ掩コ7靤zコムD-&ヨ籵b蔓}胚/鯰慫;r餃ハ悃lqー栃Ih*tセ殫"xアセ.eアnシ%ウィマ"mォ>%ダ0ロカウusキッ冒趺7ャ=n=T袖ウ\;MFJjV幾/セQ熾y4GuィコQ=ホメK,ヲクナ!モラ枴複巌Aキ0J。レ胄^6ネ^tス.5゚NヲTウナ.Fカミナ(BュEオdCセス樮?」k^Y1ヲ;3/{ネヌ^r(~竃cヤー Fソチ3"柧|ニチp^ ヤoC錘酔ョル鷁q。X嗄マXハハabテルエ)メ級cQゥC0ィs ァQzツOユCv黯ヲf#X8!ワコi剃駮%f%(ラ5&SヲIクpエケB@・ ̄ーヘ~拊+_ァ^H*-ニク"x'寐竄ヨ;E慱_ キnwヤラゥク endstream endobj 32 0 obj << /FirstChar 32 /Widths [ 278 0 0 0 556 1000 0 0 259 259 0 0 278 389 278 333 556 556 556 556 556 556 556 556 556 556 278 278 0 0 0 556 0 648 685 722 704 611 574 759 722 259 519 667 556 871 722 760 648 760 685 648 574 722 611 926 611 648 611 0 0 0 0 0 0 537 593 537 593 537 296 574 556 222 222 519 222 853 556 574 593 593 333 500 315 556 500 758 518 500 480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 426 426 0 0 1000 ] /Encoding /WinAnsiEncoding /Type /Font /BaseFont /KFEBOO+HelveticaNeue-Roman /LastChar 151 /FontDescriptor 33 0 R /Subtype /Type1 >> endobj 33 0 obj << /FontBBox [ -166 -214 1076 952 ] /StemV 85 /FontFile3 34 0 R /XHeight 517 /Flags 32 /Descent -198 /Ascent 714 /StemH 75 /FontName /KFEBOO+HelveticaNeue-Roman /Type /FontDescriptor /ItalicAngle 0 /CharSet (\057space\057E\057m\057p\057l\057o\057y\057e\057quoteright\057s\057c\057i\057a\057u\057r\057t\057n\057b\057R\057T\057h\057d\057hyphen\057k\057S\057comma\057Z\057I\057P\057A\057v\057C\057W\057g\057F\057x\057w\057D\057f\057parenleft\057N\057parenright\057M\057q\057O\057period\057L\057three\057semicolon\057emdash\057one\057two\057zero\057four\057V\057question\057K\057colon\057z\057B\057five\057eight\057Y\057nine\057seven\057dollar\057j\057six\057slash\057H\057G\057quotedblleft\057quotedblright\057U\057percent\057Q\057X\057J) /CapHeight 714 >> endobj 34 0 obj << /Length 4678 /Filter /FlateDecode /Subtype /Type1C >> stream H鉛UmTラ杪リルE`Wvヤ]ワ | " ィネ(鼻・タ 彊 頸@エIオXオム$瓮ェ@メ-$jE\ルクDWr6Fャ。|キ=攘imレ髯{;ケ<マ}゙wHヅ IR匆liLR弛6ッD[、ヒメャメkラlユ葩^マ苺$?ン檜srナフyユヒD苔ョgx_.ァンリォrツ$4トl+モ6m.稠gysA碯鍄 sx 拆ーQヒュ-+,メn-膩臠霍5Eレ視ホヒ聊リPワm。V_"ャ ァ+4弯サI'`レlョHッノヨnユ鑚ケ.Q誉PTカMヒE/4ルs 廸8ヲーxc。.[ァムエKA !" ,#8Q櫻トL'tQJユ$Bリb(颱ョ'ネnr閥レノ|器~i7Bュ」゙」wレ」hウ錣ムuレ緑ソウ籃稈a1/QI$ノッ%%cモr&q*'M8NqLt,vシ竏Nウ悵9{8oq蓑、k・}2体KカQv\v~イx篷{'?tY犂ナ蝟ピ蓊柵ケ `60 Lqト1ゥ0vy轍ゥ)チ .`ヘフ腓リク6懋WワサヤtU壑£+ロ+Bヨo舘ォb枌#フa匠鸞L}G゙@ フ瞋A` C「#・^付Lト={垉%&z;o#Q/ケケn傚ナ柊礪ャ@xCァツb趾ユャz,沢主]p「+゚6ノG 總.3申フ社|翔.Q(ヘ|懾尭蹉 銚ァ?ケ NFYカ/ァ2ヤア=#w C淡枚-蒔ヲ[ナ、Y{。Aiゥp)菘@1倅a~蛍"ョメ?'%]*\゚}5PH翁V;\Z2、美撕43ヨsタ * x[タGO{「ロ:\п g~>ェラ8椙ゥ.gpEィリU0モホミ *04スl8ォhQテョW鮗ワ]ゥ鮟$」S轉 顔6Fク*慧エRPチBォ[髻タl艱ユ%{Jノ2^D倣`hテトQ --7}イユ fェ楜x3A」 エ2Q嘱ン陰*s-;^ q 楫ニ靴O<qQIO役HトD?駄ニモワロチロ}藩!ムzネ$蒙+イヘgX>5Uオ>yヲ4\K廻^普Nムjッ複Iサq。マ2X 」oロwJu=シ. 俶}GクK蘖=>P ャ疸0ネLKMPoN23/ Fリコc'j+゙Lイ$eセOハ采*u(叉ェ,。爍顱ンw逃/7:1沌i[5L ク2t穣G>負ョmVyァ3+:21;カシシヲオ " $)>L盛愴{V(n`"セ3干゚タ乖ヌlセツフ1請5チe3ナo儿ノ zユ~`ソィ藹儂・薜q(Zカ."4ケk`沚謾ヌ「@ヲa逗й 。|テ;7遨ォ Sヘッ7タ2シ95-53耙フサーOソ K甥ー」ヌ練-jヲt倏ン録tPbz2ョトキミサラA算@-  ン" 箋o<1フO%3f&瓩嬪ッFワ- A5c/。ム遒 vb・トBラ q繊=フwノォ1lmBシナo謨ff\!閤ミロミリサ:raRrhp稙投ClBKユBモーー =>L◇絳タ ヲpf<レx-穴叺}コ・コツ懼$g'噐モ\ナ_iサユ。]妛閏コ爿d,ウ9$o4G吭3ホylリレリケ皚 ~モ4ワr)j條9VdQzトエ uf@5廛ェァ _怐慯ヲaロms|9;z}タ「oマ9、>擅ヘホ0yYYゥ鱆4Sウクッュ粡ェカヨヨ/( ツヘx煬:sツャ褌ニア尖\#VJVNR憤゚モFネA=飴「q?姨ケモ!l 8"ツ}エエァニツ(5ハ-`アト[Vム`da+m4lXVjク+hソ,|Oサalム゙カ顎サLヒ憐キs.・拔斟彑鐙ト_ムaチンウ」2イ善Zユ゚蕎h。&ツ,」フ萎Jワ塘寉ル@烟!zq慢Pム8ゥ"6]蛤8VネPx゚" ・フH-ス_c/ノA /иミェiィ%シ;PvクM祭ッ侘」!コF1-妓綵Zコ汪ク+昂Oィ眷FォJyw」]Z"8i|スヌF2簟゚ョィ&ホ,,ニキ4ャ'&DjDE@D,> APDトGムョv}T-Q.曜QY]E卿X\Y洒エナキVhxDbjWュw笶nNタウルSO8$3ノ゙セ{セ垢敝`ハvフハ*T8 _コ賠イP%dコ{マ+>x) 3a7ШアソテR!ィ ァ嬖リ・ヤ稈オ[!fフBF゙實ノ ` フサワk?mムキw@8oモイ颯Aォ;\掘<ッタ@F ゥ,ヒ拌ju饂載7L麗p[l^;\ーd>゙!ェ・lト筰眞|沼<夥ム茵睇キK/ :オUツb痼カモ:b敘&濫Qp 姿靈゚ィpRpクカホ".pィzキ柧B`チYハ)エN・ツ)、;君薇チRw挫RW、゙qコ3ミネ0Kmヌ牌>kik49捕;uMW_ト誹j=リ1Dmフgェ菖ネモFRt)ォ\コ1xスxbR 、 ス」洪tS$ャWb ュ111tモ*yS騾ヤI 梺WツB「}A~G耕T セ&%オ壷モェi驀ヨZ0ケミ,キ淌焉$T ヒンゥb雀kィ゚シLG(~ル抽ッ%!シツ8。7Cヲリ墜eチ{ysヘ晰^>ーノS,″<>轢"準;Gzャ"A.珈ア}G/ オ澹ェ(コャdBンmb7ZカトョルB湍;U?ェマォマョ灼鶤コ^vcラチoE^A塘キノX:ヲマホ7]炙竪\R蒜・H!。ョヘhD1第^タマカト"晩`ルMヨタナCアK# aトoHjJFX ミルadサ%!ンネ6゚2オ98ラホ霍Iメ4靹Sサハs 昇ュァIュ高U?ム(~ユ・$K鳫。x:CCBaL$%拵8 シ" ケ ^メケソハ3昶ヲィ gォソp g*ソpVナ?gpミホT! ネRレフ$、>ラカaリ慫2 %[{ョア]0H、0Nl&ヲカモユキu 薫、Qめp@ンwス「 ~ 二s激マ9d r!ァQ泣ス筈益ヌ. 軈ホ69{ヤラ9ャ$儒圸iクCケィロaT.:ヤiLyK9ホ9ヤメ(%聾'ィヌ9} fサaソ捺ャ5イミヲз1}z,v{{レ35゚l?ウQ:サツレ}サシAツi笞ワソ苹~zリ・<シ鸚9ェリsオEf鷺Oh0洙ホ丑顧エツ" ヒ_みMヨヲYjハO-MョXzウメ篩菱rI5エ?弦.ヒPェ背aォ陝9スア{j?zt=@RPュクU漠PUWト'lエ4Ch3?庚X2i%カGーホトシモlV拾ヘ :ュヘI漸ィヌチ|サB([`(オ┻損iモ岾ヒフ{ョ'ロチキセrホクヘwB-yコイ凸▼ャzホ竟)f Iラ[ミa゚_*?[a!_+ツ>ユ 汕?z@TッフHニ゙u=X」牘acs8D寄+モ貲囁Ku8ラY膿 zOム鷲Fソ~9仄Uq3厠珎ーユャbヒ痘o岷W旬}=M-ュ4ヤ%ロチhz e%。スォワオHノァォK、ォ|ヒヨ}h:c脇T7y}*ホュ゙vEャI鹽テ。ハD6qロΕキチ鱆逗YVf^ザハ1 -ムZvO3纛o ェョ_セ チkヨP%1:IX=9zヌwkエ9+n呰fヨtFxfミ4ュツ^dリ$.eィdmヌ]<<;IツG2エ嶐舷ヌヌシ?~藻サ騾ユキナワcC杲ォ者ワBマ!2L・'「ッャモ槃チハ1BストRrWフヘノ-,ハ礎習J カ倆UZwYキホPソB8;=/ーQーー\ィ、- 9ョB,ヤC+フ 81ウ8%*タメZ'(タ戡Haケ味VXJ0Gル[ィメメエウCレ~l,/畩コ'Oエー-5QサT|ァq_Z堤O」T5ア<ノEy、"ム#貳B弓Zケ]フ~ァィ[|ャ|錻)x折ヨツ&宴ワ惜ワLUム チテタオ?bZ爛柘i・Nキャa摧%o5Uスケェキ7ネSォ癨pヘヨホロ.ホCqサアャ5R篳ョkクァ「Dc「、 NEp情憙Rw$栗揺Q ~D・ャロ"r」ッオ゙ョ[8Yi6&ソfT逆」dニ鑰オ9ヌエw「ォマqホョ」ユ@ヘフモQ惑ソ姚'~ヤャエセ)[シDrY~H躄祈ャソ Zを, endstream endobj 35 0 obj << /Encoding /WinAnsiEncoding /Type /Font /Name /F2 /BaseFont /Times-Roman /Subtype /Type1 >> endobj 36 0 obj << /Encoding /WinAnsiEncoding /Type /Font /Name /F1 /BaseFont /Helvetica /Subtype /Type1 >> endobj xref 0 37 0000000000 65535 f 0000000009 00000 n 0000000068 00000 n 0000000169 00000 n 0000000218 00000 n 0000000675 00000 n 0000012345 00000 n 0000012403 00000 n 0000013008 00000 n 0000013064 00000 n 0000013946 00000 n 0000014074 00000 n 0000014249 00000 n 0000014314 00000 n 0000014547 00000 n 0000014863 00000 n 0000015138 00000 n 0000015426 00000 n 0000015985 00000 n 0000016187 00000 n 0000016269 00000 n 0000016519 00000 n 0000017027 00000 n 0000017329 00000 n 0000017731 00000 n 0000018094 00000 n 0000019916 00000 n 0000020389 00000 n 0000020783 00000 n 0000023115 00000 n 0000023669 00000 n 0000024346 00000 n 0000028617 00000 n 0000029193 00000 n 0000029963 00000 n 0000034732 00000 n 0000034842 00000 n trailer << /Size 37 /Root 3 0 R /Info 2 0 R >> startxref 34950 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-006-barcodes.pdf0000664000175000017500000000753512063667552026730 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1721 >> stream Gb!TYcYm#H%*.f;niu?jot]c=-!a_3"bm&q7]_Z-P=l+S_RQ'i_jk\HrCZ\iB[@,o*f@T0QY:Z/L2p:OKH@BY`A,3UjD3buFGDdtmn]f:lR1Jo6HG65Jbj;BKgOkA6bnI)TDk)D=$u:dkPe>"9trLYPE!>l5No@XJMfCd.XLU.R\([)@1UUIn^D"\=_iBU2dOIMGct:[BuUT,?p+[$'!hh$a0lMq8Oeq%P[^!Xr;$T69X-EQad&T_02rSMS$,cn+RU4PLWFhJPnF%%T].2l+]1iQn:?FKLFePO!sI"UZD@Ql@Q6`-d!I6E2u5p+".eAc@\nTtA<`SiR1MMmXF#*g_p+-S"+F^t!J1':Z:"\O`p8)f?G-d!JK7Dc\l60TLlObC^T>H1diZBmQ9_oRCjFbqCf@XuLe*&8>@ON2Z%gC?28$aQPo&:)BQ'p4QATHTP&Q=aMSAk@b!OY7D#<[C9t6kH[and+Cp:ECa=,3eU]M0SsoY&9LB:ePt!+aEoAn_pIIE;&DHb#n_:UZET*EctL78knF6`^+Ha_-AI.j8^B4@,2QW3>GHl_V`P5k(R?L_4?-fQ>>Klo"?3+@'lt`HFY<:G&21afcue%%(?L,K!Q\^*9]fP9VV,8]*7?<-j?05gVgVLGK%^`Ee56pW)tsZG-A3cr((!<8EZNB25#_jm$)=.rnBbR%Tc[gT@8L\qE'Hrk4-?N7m/j*j_HAIJSl552q2)GB*i.GL-.Uh5ZJYp$"1EUo?L*7E;aBIY8)aXTJb/kC:)S_nFU(X>M1!f:jAmZr8O:r'$I'sW+)d:(+9^a&I5LRp`U%3XOouMo$=]3macYee?na&@X+k?aIAYp[ak)!X6JsBbl?:SO&7U/-iX1+E$P&~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000567 00000 n 0000000746 00000 n 0000001023 00000 n 0000001158 00000 n 0000001427 00000 n 0000001532 00000 n 0000003397 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3449 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-barChart.pdf0000664000175000017500000000637612063667552024540 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1089 >> stream Gb!;d95i<6&AG?Ts'^paW@$Y,ltad36g2#mK^8X9UbS[$o5Nk>8G5rEuGju[Q3GcD28g\!<%UO#'.mLiN[@a[^[jEelE$:XJ,h1Dimbld;eK-?X?1%+>jj!5]3Gc..3V/o9lW""[Pb9#[HKU&JI3]J9q3!/0lp4C(at*mRQRG(D"R&K0NPtgKi[4WY!\r:3kIro*VOp=7,GIaoPN>+f[s$:cM`k7hr/'O@PluQE_W8I$WJl(?!@ZTaoj8#;`b0/l[YmV$GLp4:;M.fbf4/'@4&j>\"#ap67ObcDE3?s9L]6D/S@=JN2JQ*r7M*]6kZR84,/N2\3T+VBfZj0'+pSVD>K+CQ!HVF<.Rcq=f]Q);7c,IC-@2`S4>Jifqfe2-8;]eVuN#[p)hA&+&;1n]XN#gQ`%!gZhe43X7P_HF'$JZ;GA>iZC%Je3/nsSHC!RT1j7q1>)L8IfQ"csp@6>lpt20[9bh^V]#*]'.IsrQ+ebQUY+C"b$]isDh;.]K'D]8CQqG_Z7pdU*-]h2Se5!C==/u)^/30H;:"qM"3$NF)7.l*42f8.ancKVEEg*?\#>3dkbN@=+9UhhB<9-M5>tf]hOULL*+#[seYl~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001017 00000 n 0000001152 00000 n 0000001434 00000 n 0000001539 00000 n 0000002772 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 2824 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-rotate.pdf0000664000175000017500000000366612063667552024307 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 151 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`Z8C)f;D9se;[CKFd-sTNaiRTicS*F4dF2&#a\iDl!c-/h1c)Nr1/lOU1:=>?ZrGC0J?`K;&3EaK[]faAHj2+jEWH0h"Xds~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001463 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1514 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-pre.pdf0000664000175000017500000000562512064404546023565 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 5 0 R /F5 6 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Courier-Bold << /BaseFont /Courier-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'F4': class PDFType1Font 5 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'F5': class PDFType1Font 6 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F5 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 7 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 10 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R8': class PDFCatalog 8 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 10 0 R /Type /Catalog >> endobj % 'R9': class PDFInfo 9 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121219133528+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R10': class PDFPages 10 0 obj % page tree << /Count 1 /Kids [ 7 0 R ] /Type /Pages >> endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 327 >> stream Garo@9'&-\7Ec*e*K01:0K`ItlhE8@UsFERh9I$8%aldR3@cf$rmIcj69IS/=$HJmXH1_N^&mNFI>YYTMNH1mhB12>DJCL)3G7=Bpg1%FfUEiHS*.0$Y9-l!^iUEHVq=jS-!@-.[e%I>p[hj57'MPc>1B&*IuD*LkPhVrG8*2oHC?*T[6T59D;,*"=]R,ciNmL4;%%Njj:U8'+jmYA&ke(!e>[@^A3,T"H6ikJ;Ya]F/'fNsq^h<=D\6-Ol&Q#?c&L5KRLl:AmpJBpKuS:#LNIZ?_PZ4PL8^Y"P0C4;FZ`69`4JNWf2QeHh/~>endstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000257 00000 n 0000000422 00000 n 0000000593 00000 n 0000000768 00000 n 0000000949 00000 n 0000001108 00000 n 0000001387 00000 n 0000001523 00000 n 0000001793 00000 n 0000001900 00000 n 0000002371 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\344l\301\320j\307\346\376\210=\215\256\246l\2546) (\344l\301\320j\307\346\376\210=\215\256\246l\2546)] /Info 9 0 R /Root 8 0 R /Size 13 >> startxref 2423 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-000-simple.pdf0000664000175000017500000000501512063667552026420 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 8 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 4 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 7 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R5': class PDFCatalog 5 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 7 0 R /Type /Catalog >> endobj % 'R6': class PDFInfo 6 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R7': class PDFPages 7 0 obj % page tree << /Count 2 /Kids [ 3 0 R 4 0 R ] /Type /Pages >> endobj % 'R8': class PDFStream 8 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 139 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`19f970NBe]1tON^#g$)nn4:gGa]Abo0?Ql6;fKo2.P=R(85)fZE%+C1ccf&6endstream endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 141 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`1pYUe1p^"42DN`<;[CKFd-sTNaiRTicS*F4d8Lendstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000926 00000 n 0000001061 00000 n 0000001343 00000 n 0000001456 00000 n 0000001735 00000 n 0000002019 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 6 0 R /Root 5 0 R /Size 11 >> startxref 2071 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-009-splitting.pdf0000664000175000017500000001275312063667552027164 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R /F4 7 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Courier << /BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 13 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 12 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 14 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 12 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F4': class PDFType1Font 7 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page3': class PDFPage 8 0 obj % Page dictionary << /Contents 15 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 12 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page4': class PDFPage 9 0 obj % Page dictionary << /Contents 16 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 12 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R10': class PDFCatalog 10 0 obj % Document Root << /Outlines 17 0 R /PageMode /UseNone /Pages 12 0 R /Type /Catalog >> endobj % 'R11': class PDFInfo 11 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R12': class PDFPages 12 0 obj % page tree << /Count 4 /Kids [ 5 0 R 6 0 R 8 0 R 9 0 R ] /Type /Pages >> endobj % 'R13': class PDFStream 13 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 399 >> stream Gat=%h+kg@(qj:^G;tEqTS]Ks"j82]d0iWeoED+X0`tpg-,d:%/T(m=#U)pS/>qD$.g'pPL%B^%gai"D%#dP*^]Y6G;`q'>qMM%uEA6W3cH*60*5I#Kpe[-9OH>\nXjKjLVL8(kJ^VPI^endstream endobj % 'R14': class PDFStream 14 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 500 >> stream Gat$s>u/os)8T\6mHcTFcJtN?qaCp2"APO.YZ-_2VT_OhqOG-PlOFf/nrVEkFQ`uK%M^8s">&DK&`Y"5UcC=KLH<^LCOiI[kR:g"\B_(8X(b[$]m@Z:"#uZ;P\:@5!e5fVFRu90"BC8rV+0"1hVTWefjf=plVJa%tbMX'TC%/b.u:n`#*0V6:phJpr*M?`KDW]jc%;UM8423jgn]eZ0dt+A675oZI\YQfNe?\`8*#Np/M@qna76ZeZYj(Q8@2H(Z[oXgV3)u/tIV]09b$(?2[-fFg&_SM)sO]fojfqf50HG;60!"lL\W\'9;VIE*9Xnh`iaCEm,g\M0?JENV)-)Iui:MFo4JYXn:@8>'YT'K.j*u2.6~>endstream endobj % 'R15': class PDFStream 15 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 517 >> stream Gat$sbA-)l&A/t[%g@=5%BQ:AagQ:#GsFnC&)BP^:=e*d?mjX4Qi):Xq(Y'l%DcFc=\Ihj](b+D^r4KYUig\D<\>nq8s*rd'ptZ`Nln>kM\>.^92GN%)0JlF21iu2RCToPG[5^V^*k,i`om@!o8S:cc),iq.,pD://n>Khkn$]'LF97pXDreYZXCGK=$l%.T,Rub-I=$G0b>S5Su9To^bHh>0>Tme$V\@W%.B6Z$HXD#CP-AY@ZO#jr(>9l*i5+G:l\Ybb!L3#Sb<)s_GSr1364Lcq9O&*`NhsQI5Y-"'P)5m9,Xsk"%f"8r%J(]m/gU1gW.8;%tI,;QGMe$#t76Ze8q.3VceIl"6+`f`!kG^'mM_c29E_=R`PGJnfNF$"A,:e0d<5+r[4hd/:fOI4PPfLZjg+*]3BZ0c^+\fZN6,E:n~>endstream endobj % 'R16': class PDFStream 16 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 351 >> stream Gb"/a;+ne\'SYEPr=9-$R%c=G`1"As%Nd#sQTn;'Xd-BZ+7M%%_,ZrW5?4a.uPUSMV$Arog#,D(M.HOVEBX;ZF/Sf!+b5(\6<5)prWd\Ohc5n[g&6CnQ3,tKIeK3:=N59dUJ`jkXMa,OjQ;6M#&es)_B$KoWC?J$GrGVn.>>LS&CctuJ%@r_q07TbWho6pc8<%m0BJU,jJE9>E=ZsD^A]Zc^Bh6LHr+8;i$Nr+QZgE6\-_Z2.?Q]T>o$11GsRrendstream endobj % 'R17': class PDFOutlines 17 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 18 0000000000 65535 f 0000000113 00000 n 0000000245 00000 n 0000000410 00000 n 0000000599 00000 n 0000000758 00000 n 0000001037 00000 n 0000001318 00000 n 0000001497 00000 n 0000001776 00000 n 0000002056 00000 n 0000002194 00000 n 0000002465 00000 n 0000002596 00000 n 0000003137 00000 n 0000003779 00000 n 0000004438 00000 n 0000004933 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 11 0 R /Root 10 0 R /Size 18 >> startxref 4985 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-ellipse.pdf0000664000175000017500000000431012063667552024431 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 425 >> stream Gar?-4)Vtj$jCt[^'![8MC0K.hKa9^#L_UaVTo>6<`k(C`Jj!89tghX3#I3r5/mn`OT?L'#`AhW^IXUIN(H1c]]-Fla1!J5q'_RB+Z0X.^'\r7Aj#r;g8eal<~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001737 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1788 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-selectField.pdf0000644000175000017500000000000012063667552025205 0ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf0000664000175000017500000002364212064371621026006 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Times-Roman << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R7': class PDFCatalog 7 0 obj % Document Root << /Outlines 12 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >> endobj % 'R8': class PDFInfo 8 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121219120224+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R9': class PDFPages 9 0 obj % page tree << /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >> endobj % 'R10': class PDFStream 10 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 4894 >> stream Gb"/,95bfj&\\Y"Ii.tA(f7d#O$aDcC]t+X^ki@#8<S7DXJjFS3eFZ^a=+0biPN)UarV,269[i/@e#+kkUs4#Oc(lAjl/L%<2SjnA5-sjsT'W.'4n#([@cUN8]81@sGdRs2BK&Wm#ke_G4;%SmEJ8Vk7Ufs7V3g\b;$*?X=bD\pI:3rTQIWk1PN>206^:VY]=[FW.IL\E#'&&,>jEH9K%+4A"r8D,9"_jVdtA@Mrm$^\ME`j@mDZn&[Z5FJHr;@(N3$.egc8jp0>UoL(#+Me=fA,_(/V83,VueklPchg.m!=?RTP")mWBC#nY%+,g5.hm)McjS8i13A+24B!^PAP3WSQ+Fh&5'EH8H/:#%tcuts'*CTKTH0!$TL.hXO0CY5;/7.i,&'OA>cbV-;4?;r'?b8d116sZC>CHAD]6F:CI_,O9p"R[YV`4X(pYD=j5Mb_,%lTR#IZ6dg=njRU484'Mo=^Pc5d#I[DedE8ZuY3mpI.>#YH^TQYM^B93hIL[V:u8i^5/gd#+&.iQM5#16n=GgS#u/b'$D!6-sG?/S=3m0n&VjZreEZ_tFcpLp$1?&Ze"1g?,>>i&o[i@U%@/H?-5ZQOQWJYLX[_I0!@^[1/lh!Gd\BN;&)q.lN\)NtEl93Z"o)Ni/gb'?NrnA"$OLICt?:9"oigX-+b],#B$\k%O>$Ct!2ul#[IC$N3.$:61K&CY=r8cfSHg+>=5)n\Atal7=XFQ\c!$Ulgp8&9^-&:f8"Jn-'4o[h\_Pp>Bi%9m_"CZ*]9dbgE8k)ZscW!:7d],"8B5`aploM\Z6,@7QXDE%C@$=:34>hD;mSl*f-j67=Z(pXc;1[aVQJ`t/o3r8'gV[OhWS,WDu]D'UrlS$:'o&dKT#D'T16/&@Z!.ME'GafSU)!enM\[e&72p#=Un%->A):)C;HR%@J@1^HlMV(Ps8^ka'&73.)[ml3Im6^Z1o^Q>U(da3Q-9KOr(dk06b]#^,B'TVs`DDNH;[-&sE-;\\L24STK!cEN]H<"[EXo`(1:bpTD1TomG9DEfZ$6M82i4X"Jo?eX'[O`[!.7eT'HQE/EGXe[aG"l+*eFM%f*DnZI]mU9rmaKYNSutZ(8K(B>=`V6,ok)Ln0f<)=A^tD>'8T`*-Pi[c+_'M2FSd4Z\A;rqJCQ$N7`-6<7;b.P*JSrXjp@#U_J]6+T<0AB=j#V5Ha&=P%WT^aKSrJ%p:2^/@L>sc.E,0l[V+_q]fiMcc#Qle5^$QE'G1pb]*UO;AoF$ch4t>26-45)>Y`+X@pVpH0=[L966b>,UeHSJT+r&BP;O%VP:^Lee"'d*iY=+qp:Y@"S3j#"o6P.87'eVKWCGV=h&*p/#J?Y>kaO3.\imI,CmkP-d+t8s?-$U_hY_PG:KAhe(g15:1&GDAMKU7eI6-!)'020n?&SfS4@b%<19F[#n)gYJ?*kadmTk4=&/upu"_E@P[K2of2FB98$m-o'._'nOc@"nclB>b(3R)Geok8+4lgGi(SBE=h^C0.ABk7/hLsEce8+*s!(#X]$C%=D)p]Hq0qa;aGJ%_,TSV';pEHXM2!]4e6;q9X!.WmXQKXg'o!W!S)%CitD!n"/2tAPOMFa^8%m-FsmkI)EG68K+<[1h2YdDDTWn!haQ:b.N=K+lP_!db?GLcd?!ZXXs&tqc[RN\i*$Fl\I,skU[)O4j-SHL-V?pWY+]41h;]kL^daEH(WdhIg[kZ<3EM/iJM?<3b:$cr*UAQqZfg<[m[b5l:Lq66`k#T:8_[tj"FHU^r6=-esi)dFBTXi:8\;Ki+-$Bs+#60V1!>MT(RXH+21hP*C-QWG/-c,UGH:=4X2&H@k%V3e$7uaJG!>6G)4;gden*.>-:*8:s\ol)?tkM/9*,afAs'H.5490u+(Y'"Bh:;AP/ht8-1qRIJ9D1>k9l.C8%00J6i;e;:DMBc!,Qr=leR:`W82rV=i,an]pUC=b6,\U\-sHMBoI\s>;=5Kj9i:=+\EZ0b6WhXG+/WdCT/L4?5AE=965)BiVZB)++K3W[F/r9)1lt"ASk*.Kg+@(FrBgPHH`h7RXc%iF)UHYckuC]Pq!cQUc8SSfX[&/Z^8ZKL83PEWJ7biFo+LIp:S,,*"I#d[Mf06]sSEB;fgO@3pK(\c8%M$Ga,fp^fdftNPkGu:I3l:]/7lF%8a?N+N3%Rb[/^1l^f#d0!lI&j_^D8`I.-JP>sl?81pdC%8NGikY_jF;!1RBI,>qoBM`uq!9?&)P@/39CjO!ap$82;`JMMo31'!%]WV5eUd%<04qQl0t[E"b>/gGmQQ>F]KZQaWAX(A,ejZMT9FKoqu(g[7Xg(P)m6s*]#Wd@0>]VQ\+Rp\!L@.$.UVXLduYLEo_>=B@ep"OgOK7FiNE6*t`O>/onYhOmD5&8&NRI)k3*e9]8E1hr!\0?pEOrR_5AZ3Hg^endstream endobj % 'R11': class PDFStream 11 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 2562 >> stream Gb!Sp?&ou5&q,h*s3QgW7,]V^mIG%g"EDEZJpB^G+:'&$"E$Kop[<+Jbk>ptVR,)Y;#k18g?dP6G'0)9S?dKd9)-HupTK(8VC./`ULu]o9S[O6gV`.2dHW%FX%ieT[&r!JYM9++=9kS5Ej*^A$uXJ%e,f?;-+bB)M\S?Pc53NJb)(O)h'+^/IY+T4d`6Qh^G:o/o3_Q7#GN^gf'ir]&6tZ]>p4UCkLQ?*HL\20Oon&rI,cNqunVr;!Q0OE&lZB:ACbOk)qo^]ZAF0DrEpc.p%^9VkZp4Eg&];%#l.ZWp@^@'7n3S01[Dgu&7ZC7anel>3k]X6?('%7per:^*]lgs#+^\[69l/uE&qr-_)^HO2DC2ThZZ8TDE3ukKSG8hp#W_%=:$PoNrM371^QTL`s8'LthVjQ-JE/GP=5]_(?,Nh\nF6\"p&[)'.@UL>;FR.D2mH>[KOnYI&GQ-,8/M0gOpgG`]MCi\R#3jU???1Ks6l&2m[F3[hU6ol.>lOYh.pWKM:'D=SpSl!:PJBC@L80m:=h!?k4VuB=%b.rV8gMtl%Dg2OH;/Nu<]=\_!.>qm3HZ_0l^1PXTEgTfr1m&=*X)%q)IpqtR@H$PktsXBn6f@)K$Xj-XqHH>WO15L$lV*lcHIXYmL*KTHgMtY"d+m=e1)F1?7cGb6Fr/L%uSe=&-s_+d,^jR&=4@n\L,hBN\+j`9b@\89@+I&%&$M("i3KfB5jb&32L,2%YB+=UaPqV92T@FCX&;;7"2>([9%f%eqkF%TP@sOG=hDl^V36k0Y90!s?Xoug_sjVA'^.F(qdTMoC<#)hRk.T$k%QKqp+p=oj^ZfP<_b-./ZDNWQ^NspY2qH2>USl%72@U01`K1Ks@KRGJr1=Rq5ORX#@\(*jZXDM[X6R#d&e&>a9-AH&6Ru.WP;msI)EC%M!cYWOR4t[*hn5lp"Je\f_d1fQU#6!%,:4-MO$Gn3fefJsunb,]cr+H8U[VD%fA>;9EM[=?074=g98-N9&TqELODSmhm,:QsC8rOION;1IQWp;6DY)I):mqtUJ*U!IN,AcHMUV'S>%!2g;i@_/Nr+PL=Qb**L"$YfUXfNa-fb+Yb(7Be;dL(*>H>%iYXUNAG%?S+)HdNNBQrIGpkl5Np:u9'F=e6?SHH?u;_9lHLS4fR?)b8fe='"?urap2K;]Yrs%9'L^mHpCfHiUAt/go>A>7*`b;Jbs7f]gF3pecqT_B99VRt"1igWS&+mkOQCgAIihTZhlaHQ.(5381[WO>Sk)E=?!X`aes4e$3nUDd.4@gYc64o"a%g9?:@Qn"V];=%f9*Kn9oH2+Sm.&1qL:m-Y)"m1#@MME^og':4DGYIPFIu>e&F&>^ALj"qB?Omd`FhgG_/h0Eb092l!$F/KNR[&-,pJI>^SQ_hk540bLbT?^1f??H(USm'ZJg&$Z8G+06NMeq-hal[]f.#./RA;*a;)&\KnX4DGGF(g.e=KnNaS@-o/;\W4lEV\2J*T9k6Md_n@9iG$T3(;tB6$:G)c&(rC-NGtp2WOnn2A"UC5k/fLe#`?$N?[2oF5Lip2'9OQ9h.96N0Br6CT\S)j4F"Naem)E;O"7uZ`5CMUp&:M5N>P.EEsiaSIp_nX:qOS.H]HD];(#F8YBKpGHZMp%pJaHIdTQtbpn4GQ%TTr!+-`"LP7@nDiPUN'KR0nFkendstream endobj % 'R12': class PDFOutlines 12 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 13 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000740 00000 n 0000001018 00000 n 0000001296 00000 n 0000001431 00000 n 0000001700 00000 n 0000001814 00000 n 0000006851 00000 n 0000009558 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\236\320\377\015\305A\363\206r\224O*\270 \010V) (\236\320\377\015\305A\363\206r\224O*\270 \010V)] /Info 8 0 R /Root 7 0 R /Size 13 >> startxref 9610 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/tag-drawRightString.pdf0000664000175000017500000000362212063667552026123 0ustar srichtersrichter00000000000000%PDF-1.3 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 3 0 obj % Page dictionary << /Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R4': class PDFCatalog 4 0 obj % Document Root << /Outlines 8 0 R /PageMode /UseNone /Pages 6 0 R /Type /Catalog >> endobj % 'R5': class PDFInfo 5 0 obj << /Author (anonymous) /CreationDate (D:20121217140300+05'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (unspecified) /Title (untitled) >> endobj % 'R6': class PDFPages 6 0 obj % page tree << /Count 1 /Kids [ 3 0 R ] /Type /Pages >> endobj % 'R7': class PDFStream 7 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 115 >> stream GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_TN+I0SHG`1:#E90N0Y[1tON^#g$)nn4:gGa]Abo0?Ql6do6Up;@(YOlVZU%!W]pN'U&~>endstream endobj % 'R8': class PDFOutlines 8 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 9 0000000000 65535 f 0000000113 00000 n 0000000209 00000 n 0000000372 00000 n 0000000649 00000 n 0000000783 00000 n 0000001065 00000 n 0000001170 00000 n 0000001427 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\232w\017\3421\263\325\354R\366\267\025H\343&\012) (\232w\017\3421\263\325\354R\366\267\025H\343&\012)] /Info 5 0 R /Root 4 0 R /Size 9 >> startxref 1478 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-examples-011-keepwithnext.pdf0000664000175000017500000002161012063667552027647 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 9 0 R /F4 11 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'Annot.NUMBER1': class PDFDictionary 4 0 obj << /A << /S /URI /Type /Action /URI (mailto:robin@reportlab.com) >> /Border [ 0 0 0 ] /Rect [ 0 0 595.2756 841.8898 ] /Subtype /Link /Type /Annot >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Annots [ 4 0 R ] /Contents 17 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page2': class PDFPage 6 0 obj % Page dictionary << /Contents 18 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Annot.NUMBER2': class PDFDictionary 7 0 obj << /A << /S /URI /Type /Action /URI (mailto:robin@reportlab.com) >> /Border [ 0 0 0 ] /Rect [ 0 0 595.2756 841.8898 ] /Subtype /Link /Type /Annot >> endobj % 'Page3': class PDFPage 8 0 obj % Page dictionary << /Annots [ 7 0 R ] /Contents 19 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F3': class PDFType1Font 9 0 obj % Font Helvetica-BoldOblique << /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page4': class PDFPage 10 0 obj % Page dictionary << /Contents 20 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'F4': class PDFType1Font 11 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F4 /Subtype /Type1 /Type /Font >> endobj % 'Page5': class PDFPage 12 0 obj % Page dictionary << /Contents 21 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'Page6': class PDFPage 13 0 obj % Page dictionary << /Contents 22 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R14': class PDFCatalog 14 0 obj % Document Root << /Outlines 23 0 R /PageMode /UseNone /Pages 16 0 R /Type /Catalog >> endobj % 'R15': class PDFInfo 15 0 obj << /Author (\(anonymous\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (\(anonymous\)) >> endobj % 'R16': class PDFPages 16 0 obj % page tree << /Count 6 /Kids [ 5 0 R 6 0 R 8 0 R 10 0 R 12 0 R 13 0 R ] /Type /Pages >> endobj % 'R17': class PDFStream 17 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 521 >> stream GauHG>u/os)9'B`4F]HlfsZg5nda%d(L;="q3EF#7a^^^28GK1#RTfZY%D:4[&!#ljgj1(Rk62!4\*JjoGK36rQ?G3(2(HLg6h\61s5$'$_Y^Jcm7H$,!goQg\*CYsIRc5tY8tJnS>,N15M.0_eeTX3.;$&JRi_c:4EB%H9jf?LR.ID*endstream endobj % 'R18': class PDFStream 18 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 202 >> stream Gaqcob79+h$q9oSbWjmZ\j2,TaOWa\DN+Mp^^;eY'J].L*NC8;D7[:&3L:Bm)9S%7UZ8>+\(^+Je*nJ]!1Hi\qQ)t7a#")s]8(2;Gr:Xn5eJ(`L"kVajcanT`(DMH@@pV!D^;F%\3dHdrkERU72t0FtSTOl^CpLU'cX>!&1kmcE~>endstream endobj % 'R19': class PDFStream 19 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 487 >> stream GauHG9lIm&%)#a-J+/RD/W8(7Bm,plYtKq9?P9b*2Z2B*BudC0+J'6&)-b;#IoiRjoGK#`)Aor35j.iMg_c/air`f'$`ck8ON\]$Eq1QoKD""0IB=)"q%0GBtu_&4_fDq]C4;:e?ZELgPH^XfU1bd(cHO%W;MIJ'@5*,$EI>*PtbYPI&E(NMiSU`Jp7<9f;@fe[<-k4*WE/dnPC"Gc2Y2I&k#AUIf24SQl)GHQJ4"j0s]"L'GjH@T7"V%o,-hH[5=>M.)e=[f+$Q%pid83_`d;bN\f&^a[Enj[ZB3D@CA44FKIe#bLk3X6!#DOV80:SBSAoh5%.:GRWhNI-FpP'U[VK!8Z0C%&>7q;Pb7j-\"JMAs%?O@0`4LDdt?)Rid`t^;bnnE16US?l!k0A`%\*Y'm`b:1]Is/*I*dmDm5dp(P~>endstream endobj % 'R20': class PDFStream 20 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 172 >> stream GapY8_$\%5&-U@,+TF.R7>8bJ]%67K[&47GpCAO$KaMSnIqr!f#)3@MLgqk-\Hb$I784nZ>sK#*emN.Ih7_"?"R3so6M\)&kkDukL.W-u,HSrXZu>`DX^UHSTRC+$K]5'?eI:$Fk5"$#h$n.SE""4X'a52R.NSnuGOY#0-G^s_~>endstream endobj % 'R21': class PDFStream 21 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1297 >> stream GasIe_/e9g&A7.."\.*K&HkbW,Y4h-oUd7c1,JE2k]%0A?db#Z6jDaB5ch+T#RA;OFT^4#nPjg;g1Sj(>Xkk>OWhr^.VBi@sEb#Ym[UCWjCPK2.9FETtG>0`FZG',d^6,([O]NSr,X#7!q$ef\ZqrdF[jek=]Bu;+BQU+-=?cO8WDU)qe05Z/0.6aAq=LqheC:VF:.p?6@fkNt!opS"lQW3r\!`<$c98P.1FKe:@^3Klm5o30[E.3^%X+Y^LG\7Q2rDt#oO8Kthfnt+;)lLFu%hl!sjEZe@Pp@>H2B[cO*I".DJg_lt4E()/iL;%m&*>JpY#OWg"JW,iD$6rL73UrCeko+1q9R4&%3j[p5[;gUJ'q@^u(\\lokUWm6SmSH-^DqHg4t!5FinZ1/foR>mq9Yi$\d#\NiX7d(7%mWG/BfP`>gQ4]?"cLNh^ue]nUFQu0`)A9e&[84iCsq]G/&!a>T.fN6t\HBQl$3l^RR>JraiG(+l8PJ[-1^Lg!b(eZq?>A1!h4PL2l*i!b=m;HG7l=Qbm8V$It^>TJ1/(Mlt#.GRh@ndAGsN^lpGY0hI)*hj`KBi$G)K9R\'03+=jdXs@**gG):>6>6OF:UGISn05!6,8u(h>UD.QCgh"rS8D3Q0;QkV8L<[MAOQKddSl#$YLVqjs&`Z<*moSdbljQjUK68m<3a6#Xl0'\9AOSHl#_Pt8qBSKL!3"Z=,3`7d!C"9:feMK's[\q6;m6&uFLg!QQg"ND_T!3agW!mkB`gl!^'<&:s,in>lG`&4]FfS.D;gaH,]lGa>=GPSd+6]`58.%`A]Ho+9'4H+-4Z>>R/)VI]&`'priTHTmUH_YoG>#_OV-VF<19Ni;G8I2m]@Z0;0CfC-MYXI/0TkmVteCJ7+67:f.*-CBu`eLTXP9rm*9,?XV]><7th05rZ:/CikN,4al~>endstream endobj % 'R22': class PDFStream 22 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1071 >> stream Gasam9lJfF&A9%PIi':E]5X""/8oa97C+@#9c=&Cpd.QY&mL6X8]n=7lhcFjO/+Mq@c:Tc*6u3Bn'0q#_C&.:bs:no7IPC[jTSY2b0-l^lCQj6QPY^L([::Pnr9.SH+#o.i?1AG.Fsu)>Ae,\>#@0(eK;Q^(E\._;8j^,k=J1@\')[Ym57mn;Y=]2NXOD"E[ara8!C40/S<&:>&6oh)4/=;=if2m0qMTXsU1=4ST-Gf>d\shD]Gc,(UX:f2gX4b#[];>Up+Mr.IR!uf?:C'](GocB':PrQJYF3Q@a>bJCm]M`kW>#Kns3MVICICu6J*/qc,P1.d(@E,GT^j!^a3?0,I3a9X"E,/\$*8;^;ssPi/GHSqR5s1L!*s(5IcnT09PFrl+oe%g$?D@'H)]ckn%u)L7d,Fr=.Zj5W7CcmAr'T##3LWG%s9Wj(nk=P;9LX"fD+6@*;"M3el.GkJp/@*nWf??:Cm-Z:uua6$hkdef"02,3N#5V\^CX2e\+7B\U&eSD3F^[W02upmJu]eBVUs_#ZOQ!+)F)'G@K+9/XhF,%uLGFm0A8^]hWKE(_(l+e55f?9kLg*do-SjekQdP`,)VAI7q'RYJk]C(:3h[.eI2^![rqot'JRiJOro_p%"-=QnkCG'[/(UuI-cf%P_+gq>RK@-o&HJ[oeVbac?,93UcjPK(m-%:\H%I%KJm$W1!mkB`4I@Z>?*gm^k'BoPREI0sbouX#2ej)Q^@@E'?%-\8'Vr`?b%D/2BCnXDLX\5RcXM2-2p^fNJs5M"C2t7DKendstream endobj % 'R23': class PDFOutlines 23 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 24 0000000000 65535 f 0000000113 00000 n 0000000246 00000 n 0000000411 00000 n 0000000604 00000 n 0000000820 00000 n 0000001119 00000 n 0000001412 00000 n 0000001628 00000 n 0000001929 00000 n 0000002116 00000 n 0000002398 00000 n 0000002572 00000 n 0000002852 00000 n 0000003133 00000 n 0000003271 00000 n 0000003542 00000 n 0000003692 00000 n 0000004355 00000 n 0000004699 00000 n 0000005328 00000 n 0000005642 00000 n 0000007082 00000 n 0000008298 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\2514PW\375b\346M\037u\307 \354\014_\254) (\2514PW\375b\346M\037u\307 \354\014_\254)] /Info 15 0 R /Root 14 0 R /Size 24 >> startxref 8350 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/expected/rml-guide-example-05.pdf0000664000175000017500000000676412063667552026002 0ustar srichtersrichter00000000000000%PDF-1.4 %東京 ReportLab Generated PDF document http://www.reportlab.com % 'BasicFonts': class PDFDictionary 1 0 obj % The standard fonts dictionary << /F1 2 0 R /F2 3 0 R /F3 4 0 R >> endobj % 'F1': class PDFType1Font 2 0 obj % Font Helvetica << /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> endobj % 'F2': class PDFType1Font 3 0 obj % Font Helvetica-Bold << /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font >> endobj % 'F3': class PDFType1Font 4 0 obj % Font Helvetica-Oblique << /BaseFont /Helvetica-Oblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >> endobj % 'Page1': class PDFPage 5 0 obj % Page dictionary << /Contents 9 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 8 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >> /Type /Page >> endobj % 'R6': class PDFCatalog 6 0 obj % Document Root << /Outlines 10 0 R /PageMode /UseNone /Pages 8 0 R /Type /Catalog >> endobj % 'R7': class PDFInfo 7 0 obj << /Author (Reportlab Inc \(Documentation Team\)) /CreationDate (D:20121217140300+05'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\)) /Title (Example 5 - templates and pageTemplates) >> endobj % 'R8': class PDFPages 8 0 obj % page tree << /Count 1 /Kids [ 5 0 R ] /Type /Pages >> endobj % 'R9': class PDFStream 9 0 obj % page stream << /Filter [ /ASCII85Decode /FlateDecode ] /Length 1281 >> stream GauHJ9lJcG&A9%PIi.h=>sO:H0?\\kco)7G]1!?#5kdlD[%rEh[3QL=rUh1&[M1*p9fLaZ%9aNZ3:B!?B842A5GVTF!oQEK=+:i*%Rb(TT'\i92dAl%ahQ`S)>ITjB)"nS;aAM/.[mYVs5l7r^-VBQ=GQ;RVn3b8p(%XQCk!<\DrrtJ(]F_9MZpBKNZ5?qmZ,qm7_R&dhHj"4CMAP5m9,\8$Lmpin@C%,VIY$K",YEuY(%#T+I(?.l?$kRI,5"]_]!"LN'T!ebt>*G/L7]s>DTE%/FGc[*N3DMR;Ic.0p9Q@UtP4n+eO26:b1,59\>fb>_CI/b_cU?73tYSXYNg'K`!lq:BGOs)V$;SLg%^@?gl7V#3!EE/Fc3i7N',!/B%fBF"T?X<.dHq71]W/N:.[l!6+f1R:U&iJgiS`UjrjC!1R5+pf++amSEcl6OrP4KS(5(EqmFa#-2>bKVWj=mIQ4#EE5p3Yks>Oc_5j[A3o=8]$+ZaF&XDskl20t&"GcVeT%aGIB+7&/ea-s_4mfo6jK8a8BM(-IpeL/;IPt8@PbeOCU6*p:BCB9qB2?KR)"_kkJoLtK$?L9Hhno>YkgjjUl48F_jjU&Cn[dq53RcW7YVm3!lYsa*B8-YM8(";H"80c!eFRg*Lf=md~>endstream endobj % 'R10': class PDFOutlines 10 0 obj << /Count 0 /Type /Outlines >> endobj xref 0 11 0000000000 65535 f 0000000113 00000 n 0000000233 00000 n 0000000398 00000 n 0000000573 00000 n 0000000752 00000 n 0000001029 00000 n 0000001164 00000 n 0000001482 00000 n 0000001587 00000 n 0000003012 00000 n trailer << /ID % ReportLab generated PDF document -- digest (http://www.reportlab.com) [(\375\011\352\002\224\227v=\274\333;F\316\275\372\251) (\375\011\352\002\224\227v=\274\333;F\316\275\372\251)] /Info 7 0 R /Root 6 0 R /Size 11 >> startxref 3064 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/test_directive.py0000664000175000017500000000273112064217370023311 0ustar srichtersrichter00000000000000############################################################################### # # Copyright (c) 2012 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################### """Tests for the Book Documentation Module""" import doctest import unittest bad_rml = '''\ ''' def test_abort_on_invalid_tag(): """ We can set a flag that aborts execution when a bad tag/directive is encountered: >>> from z3c.rml import directive >>> directive.ABORT_ON_INVALID_DIRECTIVE = True Let's now render a template: >>> from z3c.rml import rml2pdf >>> rml2pdf.parseString(bad_rml, True, 'bad.rml') Traceback (most recent call last): ... ValueError: Directive 'bad' could not be processed and was ignored. (file bad.rml, line 1) Cleanup: >>> directive.ABORT_ON_INVALID_DIRECTIVE = False """ def test_suite(): return doctest.DocTestSuite( optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS) z3c.rml-2.0.0/src/z3c/rml/tests/test_subprocess.py0000664000175000017500000000420212032774153023520 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTLAR PURPOSE. # ############################################################################## """Testing all XML Locale functionality. $Id: test_rml.py 74170 2007-04-16 08:42:13Z srichter $ """ import os import unittest import z3c.rml.tests from z3c.rml import rml2pdfscript from z3c.rml.tests.test_rml import ComparePDFTestCase from z3c.rml.tests.test_rml import RMLRenderingTestCase class RMLRenderingTestCase(RMLRenderingTestCase): def runTest(self): rml2pdfscript.goSubProcess(self._inPath, self._outPath, True) def test_suite(): suite = unittest.TestSuite() return suite inputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'input') outputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'output') expectDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'expected') for filename in os.listdir(inputDir): if not filename.endswith(".rml"): continue inPath = os.path.join(inputDir, filename) outPath = os.path.join(outputDir, filename[:-4] + '.pdf') expectPath = os.path.join(expectDir, filename[:-4] + '.pdf') # ** Test RML to PDF rendering ** # Create new type, so that we can get test matching TestCase = type(filename[:-4], (RMLRenderingTestCase,), {}) case = TestCase(inPath, outPath) suite.addTest(case) # ** Test PDF rendering correctness ** TestCase = type('compare-'+filename[:-4], (ComparePDFTestCase,), {}) case = TestCase(expectPath, outPath) suite.addTest(case) return suite if __name__ == '__main__': unittest.main(defaultTest='test_suite') z3c.rml-2.0.0/src/z3c/rml/tests/flowable.py0000644000175000017500000000217012032774152022063 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Style Related Element Processing $Id: flowable.py 73148 2007-03-12 15:31:54Z srichter $ """ __docformat__ = "reStructuredText" import reportlab.platypus.flowables class TestFlowable(reportlab.platypus.flowables.Flowable): def __init__(self, text): self.text = text def wrap(self, *args): return (400, 100) def draw(self): self.canv.saveState() self.canv.rect(0, 0, 400, 100) self.canv.drawString(0, 50, self.text) self.canv.restoreState() z3c.rml-2.0.0/src/z3c/rml/tests/test_rml.py0000664000175000017500000001101212064766535022131 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTLAR PURPOSE. # ############################################################################## """Testing all XML Locale functionality. $Id: test_rml.py 128841 2012-12-21 05:02:18Z srichter $ """ import os import subprocess import unittest import sys import z3c.rml.tests from z3c.rml import rml2pdf, attr try: import Image except ImportError: from PIL import Image LOG_FILE = os.path.join(os.path.dirname(__file__), 'render.log') def gs_command(path): return ('gs', '-q', '-sNOPAUSE', '-sDEVICE=png256', '-sOutputFile=%s[Page-%%d].png' % path[:-4], path, '-c', 'quit') class RMLRenderingTestCase(unittest.TestCase): def __init__(self, inPath, outPath): self._inPath = inPath self._outPath = outPath unittest.TestCase.__init__(self) def setUp(self): # Switch file opener for Image attibute self._fileOpen = attr.File.open def testOpen(img, filename): # cleanup win paths like: # ....\\input\\file:///D:\\trunk\\... if sys.platform[:3].lower() == "win": if filename.startswith('file:///'): filename = filename[len('file:///'):] path = os.path.join(os.path.dirname(self._inPath), filename) return open(path, 'rb') attr.File.open = testOpen import z3c.rml.tests.module sys.modules['module'] = z3c.rml.tests.module sys.modules['mymodule'] = z3c.rml.tests.module def tearDown(self): attr.File.open = self._fileOpen del sys.modules['module'] del sys.modules['mymodule'] if os.path.exists(LOG_FILE): os.remove(LOG_FILE) def runTest(self): rml2pdf.go(self._inPath, self._outPath) class ComparePDFTestCase(unittest.TestCase): level = 2 def __init__(self, basePath, testPath): self._basePath = basePath self._testPath = testPath unittest.TestCase.__init__(self) def assertSameImage(self, baseImage, testImage): base = Image.open(baseImage).getdata() test = Image.open(testImage).getdata() for i in range(len(base)): if (base[i] - test[i]) != 0: self.fail('Image is not the same.') def runTest(self): # Convert the base PDF to image(s) status = subprocess.Popen(gs_command(self._basePath)).wait() if status: return # Convert the test PDF to image(s) status = subprocess.Popen(gs_command(self._testPath)).wait() if status: return # Go through all pages and ensure their equality n = 1 while True: baseImage = self._basePath[:-4] + '[Page-%i].png' %n testImage = self._testPath[:-4] + '[Page-%i].png' %n if os.path.exists(baseImage) and os.path.exists(testImage): self.assertSameImage(baseImage, testImage) else: break n += 1 def test_suite(): suite = unittest.TestSuite() inputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'input') outputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'output') expectDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'expected') for filename in os.listdir(inputDir): if not filename.endswith(".rml"): continue inPath = os.path.join(inputDir, filename) outPath = os.path.join(outputDir, filename[:-4] + '.pdf') expectPath = os.path.join(expectDir, filename[:-4] + '.pdf') # ** Test RML to PDF rendering ** # Create new type, so that we can get test matching TestCase = type(filename[:-4], (RMLRenderingTestCase,), {}) case = TestCase(inPath, outPath) suite.addTest(case) # ** Test PDF rendering correctness ** TestCase = type('compare-'+filename[:-4], (ComparePDFTestCase,), {}) case = TestCase(expectPath, outPath) suite.addTest(case) return suite if __name__ == '__main__': unittest.main(defaultTest='test_suite') z3c.rml-2.0.0/src/z3c/rml/tests/input/0000775000175000017500000000000012065004362021052 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/input/encoding-test-utf8.rml0000664000175000017500000000133412064777276025242 0ustar srichtersrichter00000000000000 Test of Encoding: UTF-8 This following paragraph contains multiple European symbols. Das ist ein „Deutscher Text”: Er hat eine Lテ、nge von テシber einer Zeile. Das ist aber nテカtig um alle Funktionen zu zeigen. Ach テシbrigens, unsere Straテ歹 ist nicht fテシr €200.000,00 erhテ、ltlich. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-barCodeFlowable.rml0000644000175000017500000001465712032774153025373 0ustar srichtersrichter00000000000000 "barCodeFlowable" Tag Demo Code 128 Code 128 with several options Standard 93 Standard 93 with several options Extended 93 Extended 93 with several options Standard 39 Standard 39 with several options Extended 39 Extended 39 with several options MSI MSI with several options Codabar Codabar with several options Code 11 Code 11 with several options FIM FIM with several options Ean13 Ean13 with several options Ean8 Ean8 with several options POSTNET POSTNET with several options z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-01.rml0000644000175000017500000000037012032774153025326 0ustar srichtersrichter00000000000000 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-linePlot3D.rml0000644000175000017500000000477712032774153024337 0ustar srichtersrichter00000000000000 Line Plot Demo 1 1 2 2 2.5 1 3 3 4 5 1 2 2 3 2.5 2 3.5 5 4 6 X-Axis Label Y-Axis Label 1 1 2 2 2.5 1 3 3 4 5 1 2 2 3 2.5 2 3.5 5 4 6 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pageGraphics.rml0000644000175000017500000000110612032774153024736 0ustar srichtersrichter00000000000000 Story goes here. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-05.rml0000644000175000017500000001106412032774153025334 0ustar srichtersrichter00000000000000

This is the contents for column one. It uses the default style for paragraph. Does it come out OK? There now follows some random text to see how these paragraphs look with longer content: Blah blah morale blah benchmark blah blah blah blah blah blah communication blah blah blah blah blah blah blah blah blah blah stretch the envelope blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah architect blah inter active backward-compatible blah blah blah blah blah. Blah blah blah blah value-added. Blah blah blah blah blah blah blah blah blah re-factoring phase blah knowledge management blah blah. Blah blah blah blah interactive blah vision statement blah. Blah blah blah blah blah blah conceptualize blah downsize blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah synergy client-centered vision statement. Blah blah dysfunctional blah blah blah blah blah blah blah appropriate blah blah blah blah blah blah blah blah re-factoring go the extra mile blah blah blah blah.

This is the contents for column two. It uses the paragraph style we have called "body". Does it come out OK? There now follows some random text to see how these paragraphs look with longer content: Blah OS/2 blah blah blah blah coffee blah blah blah blah Windows blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah Modula-3 blah blah blah. Blah blah bug report blah blah blah blah blah memory blah blah TeX TCP/IP SMTP blah blah. Blah blah blah blah blah Em blah letterform blah blah blah blah blah blah blah blah blah letterform blah blah. Blah blah blah blah leader blah blah blah blah. Blah blah blah blah blah uppercase blah blah right justified blah blah blah flush-right blah blah blah. Blah blah blah blah blah blah spot-colour blah Em. Blah dingbat blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah drop-cap blah blah blah blah blah blah blah.
z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-005-fonts.rml0000644000175000017500000000475112032774153025640 0ustar srichtersrichter00000000000000 This paragraph is an ordinary font style, but switches font. This is in a custom font and this is in a custom TTF font. This is a whole paragraph in the 'robot' style. This is a whole paragraph in the 'Vera' style. "DarkGardenMK" "Vera" This is drawn directly in an illustration This is Helvetica (plain). This is Helvetica + italics. This is Helvetica-Oblique. This is Helvetica-Oblique + BOLD. This is plain text (no font face given) + italic. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-path.rml0000644000175000017500000000207212032774153023300 0ustar srichtersrichter00000000000000 6cm 26cm 8cm 23cm 4cm 23cm 14cm 26cm 16cm 23cm 12cm 23cm 4cm 22cm 6cm 22cm 7cm 20.5cm 8cm 19cm 6cm 19cm 4cm 19cm 3cm 20.5cm 8cm 15cm 10cm 15cm 10cm 12cm 8cm 12cm 2cm 12cm 2cm 15cm 10cm 12cm 10cm 9cm 8cm 9cm z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-lineMode.rml0000644000175000017500000000047612032774153024106 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-4.rml0000644000175000017500000000211212032774153024542 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-000-simple.rml0000644000175000017500000000056312032774153025770 0ustar srichtersrichter00000000000000 Hello World. First Page Drawing Hello World. Second Page Drawing z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-spacer.rml0000644000175000017500000000147312032774153023625 0ustar srichtersrichter00000000000000 <font face="Courier"><spacer></font> Tag Demo This is the first paragraph. This paragraph appears 1 inch lower. You can also specify the width. As you can see the width does not do anything. The documentation says it is not implemented yet. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-3.rml0000644000175000017500000000210312032774153024541 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo This is a more complex blocktable. This is a more complex blocktable. This is a more complex blockTable. This is a more complex blocktable. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-031-japanese.rml0000644000175000017500000001312512032774153026267 0ustar srichtersrichter00000000000000 Japanese Language Tests This test tries to display Japanese characters in several realistic situations. We'll start with a paragraph: Basic output and text alignment says "Hilton Tokyo:" 繝偵Ν繝医Φ譚ア莠ャ Gatwick Name: 繝偵Ν繝医Φ繝サ繝ュ繝ウ繝峨Φ繝サ繧ャ繝医え繧」繝繧ッ繝サ繧ィ繧「繝昴シ繝 The words below the title at the top should be right-aligned with the frame border. If not, we've got our string widths wrong. If too far into the page, likelihood is we are counting bytes not characters. Similar things apply to the paragraph below whose Japanese portion should be underlined and right-aligned; if the underline is different in length and text does not run to edge, we goofed. begin 譌・譛ャ隱槭ッ髮」縺励>縺ァ縺吶ュ end Text wrapping Gatwick Description: 繧ャ繝医え繧」繝繧ッ遨コ貂ッ縺ィ騾」邨。騾夊キッ縺ァ逶エ邨舌&繧後※縺繧句髪荳縺ョ繝帙ユ繝ォ縺ァ縺ゅk蠖薙帙ユ繝ォ縺ッ縲∬。励ョ荳ュ蠢驛ィ縺九i30蛻縺ョ蝣エ謇縺ォ縺斐*縺縺セ縺吶ょィ螳「螳、縺ォ鬮倬溘う繝ウ繧ソ繝シ繝阪ャ繝育腸蠅繧貞ョ悟y縺励※縺翫j縺セ縺吶ゅヵ繧。繝溘Μ繝シ繝ォ繝シ繝縺ッ5蜷肴ァ倥∪縺ァ縺頑ウ翫j縺縺溘□縺代∪縺吶ゅ∪縺溘√お繧ー繧シ繧ッ繝繧」繝悶Ν繝シ繝縺ョ縺雁ョ「讒倥ッ縲√お繧ー繧シ繧ッ繝繧」繝悶Λ繧ヲ繝ウ繧ク繧偵#蛻ゥ逕ィ縺縺溘□縺代∪縺吶ゆコ句燕縺ォ縺比コ育エ縺縺溘□縺代k繧ソ繧、繝繝医ぇ繝輔Λ繧、繝サ繝代ャ繧ア繝シ繧ク縺ォ縺ッ縲∫ゥコ貂ッ縺ョ鬧占サ頑侭驥代′蜷ォ縺セ繧後※縺翫j縺セ縺吶 Other contexts There are some other non-paragraph contexts for text display - drawing strings directly, and placing strings (not paragraphs) in table cells. The title at the top should have a ® symbol at the right, and all three should appear in the table below: Symbol NameDisplays Copyright© Registered® Trademark™ Tokyo (as entities)東京 Tokyo (au naturelle)譚ア莠ャ Charts Drawing source should be Nikkei HeiseiMin-W3 source: 譌・譛ャ邨梧ク域眠閨 This should split over the page break onto page two 繧ャ繝医え繧」繝繧ッ遨コ貂ッ縺ィ騾」邨。騾夊キッ縺ァ逶エ邨舌&繧後※縺繧句髪荳縺ョ繝帙ユ繝ォ縺ァ縺ゅk蠖薙帙ユ繝ォ縺ッ縲∬。励ョ荳ュ蠢驛ィ縺九i30蛻縺ョ蝣エ謇縺ォ縺斐*縺縺セ縺吶ょィ螳「螳、縺ォ鬮倬溘う繝ウ繧ソ繝シ繝阪ャ繝育腸蠅繧貞ョ悟y縺励※縺翫j縺セ縺吶ゅヵ繧。繝溘Μ繝シ繝ォ繝シ繝縺ッ5蜷肴ァ倥∪縺ァ縺頑ウ翫j縺縺溘□縺代∪縺吶ゅ∪縺溘√お繧ー繧シ繧ッ繝繧」繝悶Ν繝シ繝縺ョ縺雁ョ「讒倥ッ縲√お繧ー繧シ繧ッ繝繧」繝悶Λ繧ヲ繝ウ繧ク繧偵#蛻ゥ逕ィ縺縺溘□縺代∪縺吶ゆコ句燕縺ォ縺比コ育エ縺縺溘□縺代k繧ソ繧、繝繝医ぇ繝輔Λ繧、繝サ繝代ャ繧ア繝シ繧ク縺ォ縺ッ縲∫ゥコ貂ッ縺ョ鬧占サ頑侭驥代′蜷ォ縺セ繧後※縺翫j縺セ縺吶 Text After Table z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-08.rml0000644000175000017500000000125212032774153025335 0ustar srichtersrichter00000000000000 247 172 147 172 147 272 247 272 247 372 347 372 347 372 347 272 447 272 447 172 347 172 347 72 267 572 277 612 147 585 147 687 297 792 447 687 447 585 317 612 327 572 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-para.rml0000664000175000017500000000254012064775561023302 0ustar srichtersrichter00000000000000 Title

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6
Paragraph
Preformatted text only.
Preformatted with markup. Paragraph with a border and a padding.

Note: The padding only affects the position of the border, not the paragraph text.
Page number:
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-indent.rml0000644000175000017500000000257612032774153023636 0ustar srichtersrichter00000000000000 <font face="Courier"><indent></font> Tag Demo This tag allows you to indent a text as much as you like. This is particularly interesting for block quotes and tree-like layouts. This is indented text. However, you can have other flowables as well. This is a table Back from the indentation, everything is normal. You can also nest indents of course: Item 1-1 Item 2-1 Item 3-1 Item 3-2 Item 2-2 Item 2-3 Item 1-2 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-011-keepwithnext.rml0000644000175000017500000001373212032774153027222 0ustar srichtersrichter00000000000000 There should be a table on this page These should have links. NameEmail Robin ("mailto:robin@reportlab.com",) xxx There should be a table on the next page These should have links. NameEmail Robin ("mailto:robin@reportlab.com",) xxx keepWithNext and paragraph splitting = #1. This tests the ability to make headings 'stick to' the paragraphs after them. The heading style used is supposed to be kept with the next paragraph, even if this involves flopping onto the next page. We have sized this text so that there is enough space for the heading below to fit into the top frame. However, its style has a keepWithNext attribute set to 1, so it should flop down into the bottom half. Cross your fingers.... This should be on the bottom half To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. keepWithNext and paragraph splitting - #2. This time the style has keepWithNext turned OFF. The paragraph below should be in the top half. This should be on the top half To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-fill.rml0000644000175000017500000000047112032774153023273 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-image.rml0000644000175000017500000000117112032774153023425 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-image-1.rml0000644000175000017500000000127212032774153023565 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-1.rml0000644000175000017500000000121412032774153024541 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo This is a blockTable. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pre.rml0000644000175000017500000000077612032774153023143 0ustar srichtersrichter00000000000000 <font face="Courier"><pre></font> Tag Demo This allows preformatted text.
      
        This allows preformatted text.
      
    
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-document-story.rml0000644000175000017500000000077612032774153025351 0ustar srichtersrichter00000000000000 Hello World! z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-stroke.rml0000644000175000017500000000046112032774153023653 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-setNextFrame.rml0000644000175000017500000000146112032774153024752 0ustar srichtersrichter00000000000000 Frame 1 Frame 3 Frame 2 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-06.rml0000644000175000017500000000605312032774153025337 0ustar srichtersrichter00000000000000

seq in seq, seqDefault and seqReset

copied: , , . Reset. , , .

simple use of seq

First seq: Second seq: We have just done a <seqReset/> First seq after seqReset: second seq after seqReset: If you are going to use multiple seq tags, you need to use the "id" attribute.

Better use of seq

We have just done a <seqDefault id="test"/> We have just done a <seqReset id="test"/> First seq: Second seq: We have just done a <seqReset id="test"/> First seq after seqReset: second seq after seqReset:

Using two seqs independently

We have just done a <seqReset id="testOne"/> We have just done a <seqReset id="testTwo"/> First seq for testOne: Second seq for testOne: First seq for testTwo: Second seq for testTwo: We have just done a <seqReset id="testOne"/> First seq after seqReset for testOne: second seq after seqReset for testOne: First seq after seqReset for testTwo: second seq after seqReset for testTwo: Notice how resetting testOne doesn't affect testTwo at all.
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-addMapping.rml0000644000175000017500000000204312032774153024406 0ustar srichtersrichter00000000000000 By default, a document will use the font 'times', which is the font of this sentence. With 'addMapping' we map the bold form of 'times' to use the font 'Vera'. So we get the next line: This line should appear in font 'Vera' z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-lines.rml0000644000175000017500000000047512032774153023463 0ustar srichtersrichter00000000000000 1in 7in 6in 7in 1in 5in 6in 4in 1in 3in 1in 1in z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-barChart.rml0000644000175000017500000000462512032774153024100 0ustar srichtersrichter00000000000000 Bar Chart Demo Category 1 Category 2 Category 3 Category 4 100 110 120 130 70 80 85 90 Category 1 Category 2 Category 3 Category 4 100 110 120 130 70 80 85 90 z3c.rml-2.0.0/src/z3c/rml/tests/input/images/0000775000175000017500000000000012065004362022317 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/input/images/replogo.gif0000644000175000017500000000433512032774153024466 0ustar srichtersrichter00000000000000GIF89aVユロロロ3ュスヨ屁婪hヒユ蜥ィネエエオトナナィィィ,U南コネン+M =I肓7TQj巡тXxゥz判血娯粐jr@Yf┫EDhn~父愧ル碆 8討クr左眠an:`冲xママミNq・u狙~ャK`?pvmゥx{{}粕箱イフ!,Vタ孅H,省、rノl:渙ィtJュZッリCタzソ牴x,(`マhchサ゚ク|No3メs。ホロyサ?o 8ыO苑歯K-貯};満Eo、・ヲァィゥゥpln$w沺#pキクケコサシサ+pp1ご p>ヘホマミムメマ ノ0p 5ニp: 揀!゚ p妃pキ(/o$;,p*o19R ツ!ミム/州7 $hDテU1(リーM モDチク<"Ek,xyFノ帽ハスAF#H版トY・={0ZチQ+ンt0險jXウf航テノァQヨシアメQ洪$<vハ76TハVイmァzBJ<亅,J&Fdタ鵆WJロ8!$イ7?X 「_酵sーh'エニB(ヒ紫;_;y{B竊ワl(O鍔n4@XミーGヌハ~Wrロ (RJFケ8)?B#d6}ъ功hH。Qコヘ%2Z鞜竄3T\D5d@ *4 鶫!ルネ瞭gsx <倖ニpr5ミmrs<澳$Bw思iタ30D}<ーsRSN!1@。<ュH ワケQ゙ 齋 ;T@=ョ!q゙暮タAツwOシタニ路Uイ欄,|ミ"Bア薺lQQA9Xt・ロAC<$瓩.DPL=ミ&5タcmA >テPCゥгイA昿4ルFDリ衄MBDPA} <91説ェ)ヲFネpェシPC檻C d4ツ1ミェワ0drヒチ8 チテ・ヘZMス`躓r`拵\0Dlnl7+ヌエ アl(・onLタテ靖ワ#ト<」nj、 Gカ腺レ uトツZGシF/ク桑8炬ム タBトs3Df#ウr g^ケ‖mィミ ソ钁v6tfフ) 「~」ムーpナ鋪 廴ツクHVミラ0拯ル3LAカ#ァーニン1Uvoメs{3<ロラフユl矜%Lン賃ツjg |-:ウ0誂1買」ヒ嵒エqテWI$ケ~「ュ゙・}ホsトツsテA@56%Q2> 戔-\"エn)ヘハ。ホ煎5~ンミ3tvJ@チo8btkユpリtI8OE+fタKW債ラXu゙9諚<チ斑カAQ#チvミ ル紗E ャチサセトo6"BEゥ qQ($ィ Kvレ `潴p粘ラ(lEB8 ン「蝌竕b^コヨ.2 セn$) Zヤャ クYCmアマ タT  BタT@湟ーK、ギ0ミ「8ハ |ム假ス。7。ネ29%48aニム *@タ8佼<タ。(Ж7cルッW=穡Aケャゥ$[$d~ョ6vレタ醒ソD`ル'漾\$_ "キリ9゚ー r 9N)タ^ー]* ィ@7サI鵁錙$`\`uネヤ$啓Hミeリル8χ@蓮7m']`慳.ヒ:仟>舞 7サ9 l`淪Bta@qハz1Aネ#コタ@刃` ツN體Mン閧チ fーN竄 9Ja @ゥG芦艪7リv1S X5 vLヲJ、8C@チvzPハコゥX ャ'ケhミ フ:Aゥ:.ォ_スdーS  ネоウ8PY。g1Xdaエトr6#フMCィMg イeI>[ 粢エI@L0ホo68B lc[h ケウャ,┰ヨ4ク_哄ム「ミ8NPヤ夂!オ蓮、テ+ネコEX拵テステZラGハ1hシDH屮イモ粛yセCリ団ケ澹m?"カ_*辰!峨wロ"。HV_Ciノ狢N&ス捗6オモI賁ム3キ癪 瓠8悠ゥ+7\;zos]cGn}ウbン )紳q%f\*7Kh.l2W9猖P軸肌L*[f愕1v5チe:ィヌ」ルS良\咸ケ"ウ團ccRェyフ挾$:ロホxホウ檐フg「ソlE侠M錢ソp-エ「ュ);感、'M飩[メ師仁フiB;z3c.rml-2.0.0/src/z3c/rml/tests/input/images/cylinder.eps0000644000175000017500000001433012032774153024646 0ustar srichtersrichter00000000000000%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 0 0 223 178 %%Pages: 0 %%Creator: Sun Microsystems, Inc. %%Title: none %%CreationDate: none %%LanguageLevel: 2 %%EndComments %%BeginProlog %%BeginResource: procset SDRes-Prolog 1.0 0 /b4_inc_state save def /dict_count countdictstack def /op_count count 1 sub def userdict begin 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit[] 0 setdash newpath /languagelevel where {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if /bdef {bind def} bind def /c {setgray} bdef /l {neg lineto} bdef /rl {neg rlineto} bdef /lc {setlinecap} bdef /lj {setlinejoin} bdef /lw {setlinewidth} bdef /ml {setmiterlimit} bdef /ld {setdash} bdef /m {neg moveto} bdef /ct {6 2 roll neg 6 2 roll neg 6 2 roll neg curveto} bdef /r {rotate} bdef /t {neg translate} bdef /s {scale} bdef /sw {show} bdef /gs {gsave} bdef /gr {grestore} bdef /f {findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def currentdict end /NFont exch definefont pop /NFont findfont} bdef /p {closepath} bdef /sf {scalefont setfont} bdef /ef {eofill}bdef /pc {closepath stroke}bdef /ps {stroke}bdef /pum {matrix currentmatrix}bdef /pom {setmatrix}bdef /bs {/aString exch def /nXOfs exch def /nWidth exch def currentpoint nXOfs 0 rmoveto pum nWidth aString stringwidth pop div 1 scale aString show pom moveto} bdef %%EndResource %%EndProlog %%BeginSetup %%EndSetup %%Page: 1 1 %%BeginPageSetup %%EndPageSetup pum 0.02837 0.0283 s 0 -6288 t /tm matrix currentmatrix def gs tm setmatrix -421 -635 t 1 1 s 421 635 m 8279 635 l 8279 6922 l 421 6922 l 421 635 l eoclip newpath gs 421 635 m 8279 635 l 8279 6922 l 421 6922 l 421 635 l eoclip newpath 421 635 m 8280 635 l 8280 6923 l 421 6923 l 421 635 l eoclip newpath 0.000 c 7937 3937 m 7670 4026 l 7670 3848 l 7937 3937 l p ef 635 3937 m 7723 3937 l ps 6540 2095 m 6374 2323 l 6271 2178 l 6540 2095 l p ef 1651 5588 m 6366 2219 l ps 3948 1079 m 4037 1346 l 3859 1346 l 3948 1079 l p ef 3948 6032 m 3948 5981 l ps 3948 5930 m 3948 5879 l ps 3948 5828 m 3948 5777 l ps 3948 5726 m 3948 5675 l ps 3948 5624 m 3948 5573 l ps 3948 5522 m 3948 5471 l ps 3948 5420 m 3948 5369 l ps 3948 5318 m 3948 5267 l ps 3948 5216 m 3948 5165 l ps 3948 5114 m 3948 5063 l ps 3948 5012 m 3948 4961 l ps 3948 4910 m 3948 4859 l ps 3948 4808 m 3948 4757 l ps 3948 4706 m 3948 4655 l ps 3948 4604 m 3948 4553 l ps 3948 4502 m 3948 4451 l ps 3948 4400 m 3948 4349 l ps 3948 4298 m 3948 4247 l ps 3948 4196 m 3948 4145 l ps 3948 4094 m 3948 4043 l ps 3948 3992 m 3948 3941 l ps 3948 3890 m 3948 3839 l ps 3948 3788 m 3948 3737 l ps 3948 3686 m 3948 3635 l ps 3948 3584 m 3948 3533 l ps 3948 3482 m 3948 3431 l ps 3948 3380 m 3948 3329 l ps 3948 3278 m 3948 3227 l ps 3948 3176 m 3948 3125 l ps 3948 3074 m 3948 3023 l ps 3948 2972 m 3948 2921 l ps 3948 2870 m 3948 2819 l ps 3948 2768 m 3948 2717 l ps 3948 2666 m 3948 2615 l ps 3948 2564 m 3948 2513 l ps 3948 2462 m 3948 2411 l ps 3948 2360 m 3948 2309 l ps 3948 2258 m 3948 2207 l ps 3948 2156 m 3948 2105 l ps 3948 2054 m 3948 2003 l ps 3948 1952 m 3948 1901 l ps 3948 1850 m 3948 1799 l ps 3948 1748 m 3948 1697 l ps 3948 1646 m 3948 1595 l ps 3948 1544 m 3948 1493 l ps 3948 1442 m 3948 1391 l ps 3948 1340 m 3948 1293 l ps gs gs pum 7843 4359 t 5 -157 m 5 -157 5 -157 5 -151 ct 18 -151 24 -148 41 -123 ct 41 -123 41 -123 71 -80 ct 71 -80 71 -80 38 -36 ct 20 -12 15 -7 6 -6 ct 6 -6 6 -6 6 0 ct 6 0 6 0 56 0 ct 56 0 56 0 56 -6 ct 46 -6 41 -12 41 -17 ct 41 -19 45 -25 53 -36 ct 53 -36 53 -36 77 -70 ct 77 -70 77 -70 100 -36 ct 107 -25 111 -19 111 -16 ct 111 -10 105 -6 96 -6 ct 96 -6 96 -6 96 0 ct 96 0 96 0 169 0 ct 169 0 169 0 169 -7 ct 156 -7 152 -8 133 -36 ct 133 -36 133 -36 94 -92 ct 94 -92 94 -92 115 -122 ct 133 -145 140 -151 152 -151 ct 152 -151 152 -151 152 -157 ct 152 -157 152 -157 100 -157 ct 100 -157 100 -157 100 -151 ct 109 -151 112 -147 112 -143 ct 112 -140 108 -133 100 -121 ct 100 -121 100 -121 87 -103 ct 87 -103 87 -103 76 -121 ct 66 -137 65 -139 65 -142 ct 65 -148 68 -151 77 -151 ct 77 -151 77 -151 77 -157 ct 77 -157 77 -157 5 -157 ct p ef pom gr gr gs gs pum 6545 2355 t 2 -158 m 2 -158 2 -158 2 -152 ct 15 -149 21 -143 29 -126 ct 29 -126 29 -126 85 -7 ct 85 -7 85 -7 74 21 ct 66 41 58 47 51 47 ct 30 40 30 40 27 40 ct 17 40 10 47 10 56 ct 10 66 19 76 33 76 ct 51 76 73 60 85 29 ct 85 29 85 29 148 -128 ct 155 -146 159 -150 171 -152 ct 171 -152 171 -152 171 -158 ct 171 -158 171 -158 121 -158 ct 121 -158 121 -158 121 -152 ct 132 -152 136 -150 136 -143 ct 136 -138 135 -134 133 -129 ct 133 -129 133 -129 99 -42 ct 99 -42 99 -42 61 -121 ct 57 -129 55 -135 55 -140 ct 55 -150 64 -152 74 -152 ct 74 -152 74 -152 74 -158 ct 74 -158 74 -158 2 -158 ct p ef pom gr gr gs gs pum 3638 1254 t 145 -48 m 145 -48 145 -48 139 -48 ct 136 -17 131 -12 101 -12 ct 101 -12 101 -12 44 -12 ct 44 -12 44 -12 148 -151 ct 148 -151 148 -151 148 -157 ct 148 -157 148 -157 18 -157 ct 18 -157 18 -157 17 -113 ct 17 -113 17 -113 24 -113 ct 26 -144 37 -145 59 -145 ct 59 -145 59 -145 110 -145 ct 110 -145 110 -145 7 -6 ct 7 -6 7 -6 7 0 ct 7 0 7 0 144 0 ct 144 0 144 0 145 -48 ct p ef pom gr gr 25 lw 1 lj 3962 2032 m 3314 2032 2787 1960 2787 1873 ct 2787 1786 3314 1714 3962 1714 ct 4610 1714 5137 1786 5137 1873 ct 5137 1960 4610 2032 3962 2032 ct pc 5137 2139 m 5087 2221 4581 2285 3966 2286 ct 3318 2286 2791 2214 2791 2127 ct 2791 2126 2791 2126 2791 2126 ct ps 3949 1905 m 3949 1270 l ps 3949 6506 m 3949 5871 l ps 2788 1841 m 2788 2159 l ps 5116 1841 m 5116 2159 l ps 5137 5839 m 5087 5921 4581 5985 3966 5986 ct 3318 5986 2791 5914 2791 5827 ct 2791 5826 2791 5826 2791 5826 ct ps 2788 5541 m 2788 5859 l ps 5116 5541 m 5116 5859 l ps 3659 2286 m 3659 5524 l ps 4259 2286 m 4259 5524 l ps 4291 5531 m 4272 5563 4137 5588 3976 5588 ct 3813 5588 3678 5562 3660 5531 ct ps 4268 5399 m 4759 5418 5120 5480 5120 5552 ct 5120 5639 4593 5711 3945 5711 ct 3297 5711 2770 5639 2770 5552 ct 2770 5477 3151 5414 3664 5397 ct ps gr gs 421 635 m 8279 635 l 8279 6922 l 421 6922 l 421 635 l eoclip newpath gr gr 0 6288 t pom count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat b4_inc_state restore %%PageTrailer %%Trailer %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-drawCenteredString.rml0000644000175000017500000000051712032774153026144 0ustar srichtersrichter00000000000000 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-003-frames.rml0000644000175000017500000001326112032774153025756 0ustar srichtersrichter00000000000000 This is frame 1 This page tests to see that multiple frames display on one page. It also checks to see that the "nextFrame" tag works correctly to split the text in the story correctly between those frames. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one.. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is frame 2 This page tests to see that multiple frames display on one page. It also checks to see that the "nextFrame" tag works correctly to split the text in the story correctly between those frames. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is frame 3 This page tests to see that multiple frames display on one page. It also checks to see that the "nextFrame" tag works correctly to split the text in the story correctly between those frames. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is frame 4 This page tests to see that multiple frames display on one page. It also checks to see that the "nextFrame" tag works correctly to split the text in the story correctly between those frames. This is the text for frame 4. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame four. This is the text for frame four. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame four. This is the text for frame four. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame 4. This is the text for frame four. This is the text for frame four. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-03.rml0000644000175000017500000001035012032774153025327 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-color.rml0000664000175000017500000000142212064766230023464 0ustar srichtersrichter00000000000000 This is my favorite color! This is an important color. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-hr.rml0000644000175000017500000000104112032774153022750 0ustar srichtersrichter00000000000000 Some text.
Some more text.
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-barcode.rml0000644000175000017500000000145712032774153023751 0ustar srichtersrichter00000000000000 barCode Tag Demo 23465092892 217829804 123456789012 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-linePlot.rml0000644000175000017500000000527012032774153024135 0ustar srichtersrichter00000000000000 Line Plot Demo 1 1 2 2 2.5 1 3 3 4 5 1 2 2 3 2.5 2 3.5 5 4 6 X-Axis Label Y-Axis Label 1 1 2 2 2.5 1 3 3 4 5 1 2 2 3 2.5 2 3.5 5 4 6 z3c.rml-2.0.0/src/z3c/rml/tests/input/simple-layout.rml0000644000175000017500000000153312032774153024400 0ustar srichtersrichter00000000000000 Hello World! z3c.rml-2.0.0/src/z3c/rml/tests/input/symbols-set.rml0000644000175000017500000002243612032774153024062 0ustar srichtersrichter00000000000000 ZapfDingbats (and friends) Character Set Num Char Symb 32 33 ! ! 34 " " 35 # # 36 $ $ 37 % % 38 & & 39 ' ' 40 ( ( 41 ) ) 42 * * 43 + + 44 , , 45 - - 46 . . 47 / / 48 0 0 49 1 1 50 2 2 51 3 3 52 4 4 53 5 5 54 6 6 55 7 7 56 8 8 57 9 9 58 : : 59 ; ; 60 < < 61 = = 62 > > 63 ? ? 64 @ @ 65 A A 66 B B 67 C C 68 D D 69 E E 70 F F 71 G G 72 H H 73 I I 74 J J 75 K K 76 L L 77 M M 78 N N 79 O O 80 P P 81 Q Q 82 R R 83 S S 84 T T 85 U U 86 V V 87 W W 88 X X 89 Y Y 90 Z Z 91 [ [ 92 \ \ 93 ] ] 94 ^ ^ 95 _ _ 96 ` ` 97 a a 98 b b 99 c c 100 d d 101 e e 102 f f 103 g g 104 h h 105 i i 106 j j 107 k k 108 l l 109 m m 110 n n 111 o o 112 p p 113 q q 114 r r 115 s s 116 t t 117 u u 118 v v 119 w w 120 x x 121 y y 122 z z 123 { { 124 | | 125 } } 126 ~ ~ z3c.rml-2.0.0/src/z3c/rml/tests/input/zope3logo.gif0000644000175000017500000000274212032774153023473 0ustar srichtersrichter00000000000000GIF89a*ユナユン・スノモ゚裴コヘヨ粉タィタフ導ソユ琥痕シキヒヤ楮ナアヌムレ裨セミリチメレフレ癶コニオノモ亢ツュトマ「シネハリ珞ン跋垳テサホラリ粨星スャテホェツヘミン纛カトマワ罠チフ???ソソソマママ///゚゚゚ッッッ沺___OOOoooッナミ緒湘ヤワ。サヌァソヒ惺トウネメ軒サ!,*タ殫H,省、rノl:渙ィtJュZッリャvヒzソ牴xク 92裂%ム$ニ複+、s凝rレ.$rуI !F昧 6&{'「:8;琉a v9#6サ6#:ゥュG5(ノハヒフノッマB6= 9$ ィ ロ チ; ナG(>>3ミQ/*,Y= 8oK8":2VヤィG%B @タm飜5 %]F薩XィHA吐Iイ亶PN=9カ`Е:UャネリP =4<0xA葵PRャSq菁 u+蚤ニwV、)ョE$gWタムB搆)zー\" px0yき = <鬮ョニレ:?0Hdーィ6x@。ョチ ォアホvホ 4、0ネ2ミ&D.8 (」q襭エLエj゚4ラハjン4アォタ/:瞑 歿、Lサ頬R>q0zPsカナチDー「櫑蓚ス"aア゙臥ト=リテ=<"ト廡犯┤Ml1vJシ\ ,愼t浅ヤウ\タ巡ハ癬ツLx遶9ラ・^!ロ訪H#ヘヤSgmm=食ч(+1 Mpqト2躓カgCチ1ロ90ムワuユ}e}サトメT0ュ謝O^クPQン@ コ ロsrl(チBE+0+y'チツ\Hト,E`奘サa0 =ПM4、Q蟄テRアアV~eヒ、BC廊鞋*「ヘDヤSw0芫棡 |kイ]#ンFヨTテZ3ャレーuルu2トタム*ツ^。>6) * ツ jツタ:ミqB2爰テ「ソ 烟龝 8ニ6コ膏献 ;z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-09.rml0000644000175000017500000000465312032774153025346 0ustar srichtersrichter00000000000000 Example 9 This is a page which shows you how illustrations, grids and the place tag work. This is an illustration The red circle you can see is an illustration, not a pageGraphic. So is the teal colored one. These are all flowables in the story. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-condPageBreak.rml0000644000175000017500000000106012032774153025025 0ustar srichtersrichter00000000000000

Text 1 - On page 1

Text 2 - On page 2

Text 3 - On page 2

z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTableStyle.rml0000644000175000017500000001036712032774153025435 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTableStyle></font> Tag Demo 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-009-splitting.rml0000644000175000017500000000577212032774153026534 0ustar srichtersrichter00000000000000 This page tests splitting - this PARAGRAPH in style 'style1' should split between the two frames on this page. This page tests splitting - this paragraph should split between the two frames on this page. This page tests splitting - this paragraph should split between the two frames on this page. This page tests splitting - this paragraph should split between the two frames on this page. This page tests splitting - this paragraph should split between the two frames on this page.
This page tests splitting - this PRE in style
'style1' should split between the two frames on this page. These
frames should be ON PAGE TWO, otherwise this test has FAILED. This
page tests splitting - this preformatted paragraph should split between the
two -- (proves this is a pre)
frames on this page. This page tests splitting - this pre should
split between the two frames on this page. This page tests splitting -
this pre should split between the two frames on this page. This
page tests splitting - this pre should split between the two
frames on this page. 
This tests how a simple table splits acrossframes blah blahblah
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-imageAndFlowables.rml0000644000175000017500000000355512032774153025717 0ustar srichtersrichter00000000000000 <font face="Courier"><imageAndFlowables></font> Tag Demo This tag sets and image an flowables around it. This paragraph clearly still goes accross the entire frame width. We need some more text to demonstrate that.

Wrap around

This text should wrap around the image. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here. A lot more text goes here.

Wrap around

This text should wrap around the image.
z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-10.rml0000644000175000017500000000572612032774153025340 0ustar srichtersrichter00000000000000 Example 10 - colors and fonts in tables Cell 0,0 Cell 1,0 Cell 2,0 Cell 3,0 Cell 0,1 Cell 1,1 Cell 2,1 Cell 3,1 Cell 0,2 Cell 1,2 Cell 2,2 Cell 3,2 Cell 0,3 Cell 1,3 Cell 2,3 Cell 3,3 Cell 0,4 Cell 1,4 Cell 2,4 Cell 3,4 Cell 0,5 Cell 1,5 Cell 2,5 Cell 3,5 Cell 0,6 Cell 1,6 Cell 2,6 Cell 3,6 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-spiderChart.rml0000644000175000017500000000476212032774153024624 0ustar srichtersrichter00000000000000 Spider Chart Demo 12 14 16 14 12 6 8 10 12 9 15 7 8 17 4 12 8 12 14 16 14 12 6 8 10 12 9 15 7 8 17 4 12 8 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-rectange.rml0000644000175000017500000000070612032774153024136 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-001-hello.rml0000644000175000017500000000575312032774153025611 0ustar srichtersrichter00000000000000 Hello World. This is a normal paragraph. Blah IPO blah blah blah blah growth forecast blah blah blah forecast blah.Blah blah blah blah blah blah blah blah blah blah blah profit blah blah blah blah blah blah blah blah blah blah IPO.Blah blah blah blah blah blah blah reengineering blah growth blah blah blah proactive direction strategic blah blah blah forward-thinking blah.Blah blah doubletalk blah blah blah blah blah profit blah blah growth blah blah blah blah blah profit.Blah blah blah blah venture capital blah blah blah blah blah forward-thinking blah. Here are some common characters &#x92; = ’ This is another normal paragraph. Blah IPO blah blah blah blah growth forecast blah blah blah forecast blah.Blah blah blah blah blah blah blah blah blah blah blah profit blah blah blah blah blah blah blah blah blah blah IPO.Blah blah blah blah blah blah blah reengineering blah growth blah blah blah proactive direction strategic blah blah blah forward-thinking blah.Blah blah doubletalk blah blah blah blah blah profit blah blah growth blah blah blah blah blah profit.Blah blah blah blah venture capital blah blah blah blah blah forward-thinking blah. I should NOT have a tiny leading space in front of me! This is spaced. There should be 12 points before and after. Hello World. This is a normal paragraph. Blah IPO blah blah blah blah growth forecast blah blah blah forecast blah.Blah blah blah blah blah blah blah blah blah blah blah profit blah blah blah blah blah blah blah blah blah blah IPO.Blah blah blah blah blah blah blah reengineering blah growth blah blah blah proactive direction strategic blah blah blah forward-thinking blah.Blah blah doubletalk blah blah blah blah blah profit blah blah growth blah blah blah blah blah profit.Blah blah blah blah venture capital blah blah blah blah blah forward-thinking blah. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-9.rml0000644000175000017500000000365212032774153024561 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-bulkData.rml0000644000175000017500000000105712032774153026135 0ustar srichtersrichter00000000000000 <font face="Courier"><bulkData></font> Tag Demo z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-outlineAdd.rml0000644000175000017500000000110212032774153024425 0ustar srichtersrichter00000000000000 Top Level Item 1-1 Item 2-1 Item 1-2 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-6.rml0000644000175000017500000000341712032774153024555 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-para-wordWrap.rml0000644000175000017500000000275512032774153025102 0ustar srichtersrichter00000000000000 A CJK word breaking algorithm will break a word between the letters, since Chinese/Japanese/Korean languages do not use space to separate words. The algorighm also makes sure that certain punctuations will never appear at the beginning of a line. The 'wordWrap="CJK"' attribute for 'para' tag will instruct reportlab to use 'CJK' word breaking style. With 'CJK' word breaking, the same text as above will appear as: A CJK word breaking algorithm will break a word between the letters, since Chinese/Japanese/Korean languages do not use space to separate words. The algorighm also makes sure that certain punctuations will never appear at the beginning of a line. The 'wordWrap="CJK"' attribute for 'para' tag will instruct reportlab to use 'CJK' word breaking style. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-ellipse.rml0000644000175000017500000000116412032774153024002 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-keepTogether.rml0000644000175000017500000000452712032774153025001 0ustar srichtersrichter00000000000000 The <keepTogether> tag will keep a set of child flowables in the same frame as much as possible. Unlike <keepInFrame>, it will not shrink the contents to do this. It adds frame breaks when necessary instead. In this example, we try to keep 3 paragraphs together. Since they can not all fit into the same frame as this paragraph, they will all appear in the next page together. This is the 1st paragraph of 3 that we wish to keep together.
Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space.
This is the 2nd paragraph of 3 that we wish to keep together.
Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space.
This is the 3rd paragraph of 3 that we wish to keep together.
Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space. Some nonsense text to fill up the space.
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-registerCidFont.rml0000664000175000017500000000142312064522761025441 0ustar srichtersrichter00000000000000 譌・譛ャ隱槭ッ髮」縺励>縺ァ縺吶ュシ 譌・譛ャ隱槭ッ髮」縺励>縺ァ縺吶ュシ z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-022-paras-oas.rml0000644000175000017500000003123712032774153026373 0ustar srichtersrichter00000000000000 ]> Overlap Attached Space tests (define please!) This page tests out a number of attributes of the paraStyle tag. This paragraph is in a style we have called "style1". It should be a normal paragraph, set in Courier 12 pt. It should be a normal paragraph, set in Courier (not bold). It should be a normal paragraph, set in Courier 12 pt. Paragraph 2: Indent Left This paragraph is in a style we have called "style2". It should be indented on the left. It should be indented on the left by 1 inch. It should be indented on the left. Paragraph 3: Indent Right This paragraph is in a style we have called "style3". It should be indented on the right. It should be indented on the right by 1 inch. It should be indented on the right. Paragraph 4: Space Before This paragraph is in a style we have called "style4". It should be have a space before it. It should be have a space before it of 2 centimeters. It should be have a space before it. Paragraph 5: Space After This paragraph is in a style we have called "style5". It should be have a space after it. It should be have a space after it of 2 centimeters. It should be have a space after it. Paragraph 6: First Line Indent This paragraph is in a style we have called "style6".It should be have an indented first line. It should be have an first line indented by 2 centimeters. It should be have an indented first line. Paragraph 7: Leading This paragraph is in a style we have called "style7". It should be using leading. It should have a gap of 5 points between each line. It should be using leading. It should have a gap of 5 pt between each line. It should be using leading. The gap between lines should be half of the height of a line. This paragraph should look like it has a line spacing of "1.5 lines" Paragraphs 8-12: Simple Bullet Points Parastyle name="style8" parent="style1" bulletFontName = "ZapfDingbats" bulletFontSize = "5" These paragraphs are in a style we have called "style8" These five lines should have bullet points. The bullet font is ZapfDingbats. The bullet size is 5 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style8". These four lines should have bullet points. The bullet font is ZapfDingbats. The bullet size is 5 points Paragraph 13-18: Indented Bullet Points bulletFontName = "ZapfDingbats" bulletFontSize = "10" bulletIndent = "20" These paragraphs are in a style we have called "style9" These five lines should have indented bullet points. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style9". These four lines should have indented bullet points. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points Paragraph 19-24: Indented Bullet Points with a Left Indent for the Text bulletFontName = "ZapfDingbats" bulletFontSize = "10" bulletIndent = "20" leftIndent = "35" These paragraphs are in a style we have called "style10" These four lines should have indented bullet points, with the text indented as well. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points, and the text indent is 35 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style10". These four lines should have indented bullet points, with the text indented as well. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. Paragraph 25: Left Justified Paragraphs This paragraph is in a style we have called "style11". It should be left justified. It has an argument which states 'alignment = "left"'. It should be left justified. It should be aligned to the left. Paragraph 26: Right Justified Paragraphs This paragraph is in a style we have called "style12". It should be right justified. It has an argument which states 'alignment = "right"'. It should be right justified. It should be aligned to the right. Paragraph 27: Centered Paragraphs This paragraph is in a style we have called "style13".It should be center justified. It has an argument which states 'alignment = "center"'. It should be centered. It should be aligned to the center. Paragraph 28: Justified Paragraphs This paragraph is in a style we have called "style14". It should be justified. It has an argument which states 'alignment = "justify"'. It should be justified. Paragraphs 29-32: Bullets using left align, right align, centered and justify. bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "left" This is "style15", bullets with a left alignment. (The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "right" This is "style16", bullets with a right alignment.(The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "center" This is "style17", bullets with a center alignment.(The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "justify" This is "style18", bullets with a justified paragraph.(The bullets in this style are based on "style10") These all look wierd, but most people do not actually use these styles because they look so wrong. Paragraph 33-35: Using Colours by Colour Name This text should be RED This text should be GREEN This text should be BLUE Paragraph 36-38: Using Colours by Hex Value This text should be RED This text should be GREEN This text should be BLUE Paragraph 39-41: Using Colours by RGB Value This text should be RED This text should be GREEN This text should be BLUE You SHOULD be able to specify colours by all the means available to reportlab.lib.colors. Currently, you cannot use RGB or HEX values... Last Paragraph: Para Tags and Paragraph Content This should not have any extra spaces at the start of this line (though there should be at the start of the heading). RML should ignore additional whitespace, and you should be able to format the actual paragraphs as you like. The text in this paragraph starts on a different line to the actual "para" tag. Quoting and escaping This checks for all the possible quotes: &amp; = &, &lt; = <, &gt; = >, &apos; = ', &quot; = ", &pound; = £. If this is not italic, and this is not bold, even normal angle brackets are broken. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-registerType1Face.rml0000644000175000017500000000133112032774153025667 0ustar srichtersrichter00000000000000 Hello World! z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-004-fpt-templates.rml0000644000175000017500000001317512032774153027273 0ustar srichtersrichter00000000000000 This is page 1 - frame 1 This test spans two pages (this should be on page 1). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have a single frame at the bottom of the page displaying this text, a big teal-coloured number "1" above it, and some header information above that. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one.. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is page2 - frame1 This test spans two pages (this should be on page 2). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have two different frames at the bottom of the page displaying text, a big deepskyblue-coloured number "2" above it, and some header information above that. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is page2 - frame2 This test spans two pages (this should be on page 2). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have two different frames at the bottom of the page displaying text, a big deepskyblue-coloured number "2" above it, and some header information above that. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-010-linkURL.rml0000644000175000017500000000210112032774153026006 0ustar srichtersrichter00000000000000 These should have links. NameEmail Robin ("mailto:robin@reportlab.com",) z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-12.rml0000644000175000017500000001626012032774153025335 0ustar srichtersrichter00000000000000 Example 12 - images and padding in tables 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 blockLeftPadding with blockBottomPadding just blockBottomPadding blockRightPadding with blockBottomPadding 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 blockLeftPadding with blockTopPadding just blockTopPadding blockRightPadding with blockTopPadding 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 0 0 141 0 141 0 141 90 141 90 0 90 0 90 0 0 blockLeftPadding with blockTopPadding no padding blockRightPadding with blockBottomPadding z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-006-barcodes.rml0000644000175000017500000000311112032774153026257 0ustar srichtersrichter00000000000000 Various Barcodes as drawing ops. Original code contributed by Ty Sarnas. Code11 01234545634563 Code128 AB-12345678 Code128 With settings AB-12345678 barChartFlowable z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-barChart3d.rml0000644000175000017500000000426712032774153024331 0ustar srichtersrichter00000000000000 3-D Bar Chart Demo Category 1 Category 2 Category 3 Category 4 100 110 120 130 70 80 85 90 Category 1 Category 2 Category 3 Category 4 100 110 120 130 70 80 85 90 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-029-keepinframe.rml0000644000175000017500000006007112032774153027000 0ustar srichtersrichter00000000000000 First Try at a keepInFrame This will behave just like part of a story, as long as it all fits. To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. keepInFrame with a table inside alignmentalign alignment bulletColorbulletcolor bcolor bulletFontNamebfont bulletfontname bulletFontSizebfontsize bulletfontsize bulletIndentbindent bulletindent firstLineIndentfindent firstlineindent fontNameface fontname font fontSizesize fontsize leadingleading leftIndentleftindent lindent rightIndentrightindent rindent spaceAfterspaceafter spacea spaceBeforespacebefore spaceb textColorfg textcolor color A long keepInFrame, shrinks To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. On our assumptions, a descriptively adequate grammar delimits the strong generative capacity of the theory. For one thing, the fundamental error of regarding functional notions as categorial is to be regarded as a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. A majority of informed linguistic specialists agree that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction is necessary to impose an interpretation on the requirement that branching is not tolerated within the dominance scope of a complex symbol. It may be, then, that the speaker-hearer's linguistic intuition appears to correlate rather closely with the ultimate standard that determines the accuracy of any proposed grammar. Analogously, the notion of level of grammaticalness may remedy and, at the same time, eliminate a general convention regarding the forms of the grammar. 2 keepInFrame (inner split) To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. Inner Starts On our assumptions, a descriptively adequate grammar delimits the strong generative capacity of the theory. For one thing, the fundamental error of regarding functional notions as categorial is to be regarded as a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. A majority of informed linguistic specialists agree that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction is necessary to impose an interpretation on the requirement that branching is not tolerated within the dominance scope of a complex symbol. It may be, then, that the speaker-hearer's linguistic intuition appears to correlate rather closely with the ultimate standard that determines the accuracy of any proposed grammar. Analogously, the notion of level of grammaticalness may remedy and, at the same time, eliminate a general convention regarding the forms of the grammar. Inner Ends We have already seen that the natural general principle that will subsume this case cannot be arbitrary in the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the speaker-hearer's linguistic intuition is to be regarded as the strong generative capacity of the theory. A consequence of the approach just outlined is that the descriptive power of the base component does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). By combining adjunctions and certain deformations, a descriptively adequate grammar cannot be arbitrary in the strong generative capacity of the theory. onOverflow = "overflow" in Frame F4 This will behave just like part of a story, as long as it all fits. To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. onOverflow = "truncate" in frame F1 This will behave just like part of a story, as long as it all fits. To characterize a linguistic level L, this selectionally introduced contextual feature delimits the requirement that branching is not tolerated within the dominance scope of a complex symbol. Notice, incidentally, that the notion of level of grammaticalness does not affect the structure of the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Suppose, for instance, that a subset of English sentences interesting on quite independent grounds appears to correlate rather closely with an important distinction in language use. Presumably, this analysis of a formative as a pair of sets of features is not quite equivalent to the system of base rules exclusive of the lexicon. We have already seen that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the strong generative capacity of the theory. A new way to lay things out.... This tag lets us handle layouts like newsletters and factsheets in a much more natural style. In documents like this, one does not want stuff to leak out of the intended box into the next one. You wrap your content in <keepInFrame> tags and explicitly tell it where to go. The order of this page naturally goes top, upper, middle, bottomleft, bottomright, sidebar. I drew this stuff second, out of the natural order, putting it within a tag saying <keepInFrame frame="sidebar" overflow="error">. Havng done this, if I had too much content, there would an error warning me. I can put an ID in to identify it if I want. I can also specify other behaviours for full frames - shrink, truncate, overflow. I drew this stuff third, out of the natural order. This should be in the upper frame, below the top. this goes in the middle frame. this goes in the bottom right, and was drawn before the stuff on the left.. and finally the bottom left. The Nonsense Journal We now overfill with rubbish etc etc and use onOverflow="shrink" I drew this stuff second, out of the natural order, putting it within a tag saying <keepInFrame frame="sidebar" overflow="shrink">. Of course, this analysis of a formative as a pair of sets of features can be defined in such a way as to impose an important distinction in language use. Nevertheless, the speaker-hearer's linguistic intuition may remedy and, at the same time, eliminate the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). By combining adjunctions and certain deformations, the notion of level of grammaticalness is rather different from a descriptive fact. I suggested that these results would follow from the assumption that the speaker-hearer's linguistic intuition is to be regarded as the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). A consequence of the approach just outlined is that this selectionally introduced contextual feature is not to be considered in determining irrelevant intervening contexts in selectional rules. So far, the systematic use of complex symbols is necessary to impose an interpretation on nondistinctness in the sense of distinctive feature theory. It must be emphasized, once again, that most of the methodological work in modern linguistics is rather different from the requirement that branching is not tolerated within the dominance scope of a complex symbol. Conversely, a descriptively adequate grammar can be defined in such a way as to impose a stipulation to place the constructions into these various categories. If the position of the trace in (99c) were only relatively inaccessible to movement, relational information does not affect the structure of the traditional practice of grammarians. Summarizing, then, we assume that most of the methodological work in modern linguistics appears to correlate rather closely with the strong generative capacity of the theory. Suppose, for instance, that the natural general principle that will subsume this case is to be regarded as the ultimate standard that determines the accuracy of any proposed grammar. On our assumptions, the notion of level of grammaticalness delimits the strong generative capacity of the theory. Furthermore, the fundamental error of regarding functional notions as categorial is to be regarded as an abstract underlying order. I suggested that these results would follow from the assumption that most of the methodological work in modern linguistics raises serious doubts about the requirement that branching is not tolerated within the dominance scope of a complex symbol. Let us continue to suppose that the speaker-hearer's linguistic intuition does not affect the structure of a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. It must be emphasized, once again, that the earlier discussion of deviance raises serious doubts about a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. I suggested that these results would follow from the assumption that the systematic use of complex symbols does not affect the structure of the strong generative capacity of the theory. To provide a constituent structure for T(Z,K), most of the methodological work in modern linguistics is not quite equivalent to the requirement that branching is not tolerated within the dominance scope of a complex symbol. On our assumptions, the fundamental error of regarding functional notions as categorial is to be regarded as nondistinctness in the sense of distinctive feature theory. A consequence of the approach just outlined is that this analysis of a formative as a pair of sets of features raises serious doubts about the system of base rules exclusive of the lexicon. If the position of the trace in (99c) were only relatively inaccessible to movement, the theory of syntactic features developed earlier delimits a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. By combining adjunctions and certain deformations, a case of semigrammaticalness of a different sort is not subject to an important distinction in language use. Note that this selectionally introduced contextual feature delimits the strong generative capacity of the theory. Analogously, a subset of English sentences interesting on quite independent grounds is not quite equivalent to an important distinction in language use. To characterize a linguistic level L, a case of semigrammaticalness of a different sort is, apparently, determined by a descriptive fact. Clearly, the descriptive power of the base component is necessary to impose an interpretation on the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Thus most of the methodological work in modern linguistics cannot be arbitrary in the requirement that branching is not tolerated within the dominance scope of a complex symbol. We will bring evidence in favor of the following thesis: this analysis of a formative as a pair of sets of features is unspecified with respect to nondistinctness in the sense of distinctive feature theory. Nevertheless, this selectionally introduced contextual feature can be defined in such a way as to impose the ultimate standard that determines the accuracy of any proposed grammar. To provide a constituent structure for T(Z,K), a case of semigrammaticalness of a different sort is not quite equivalent to the system of base rules exclusive of the lexicon. Clearly, the descriptive power of the base component is not subject to the system of base rules exclusive of the lexicon. It appears that the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction does not readily tolerate the traditional practice of grammarians. To provide a constituent structure for T(Z,K), a subset of English sentences interesting on quite independent grounds is necessary to impose an interpretation on an abstract underlying order. Presumably, the notion of level of grammaticalness delimits a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. For one thing, the theory of syntactic features developed earlier cannot be arbitrary in an abstract underlying order. To provide a constituent structure for T(Z,K), the systematic use of complex symbols does not readily tolerate nondistinctness in the sense of distinctive feature theory. This suggests that the natural general principle that will subsume this case is not quite equivalent to the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). With this clarification, relational information is not subject to a general convention regarding the forms of the grammar. In the discussion of resumptive pronouns following (81), the speaker-hearer's linguistic intuition can be defined in such a way as to impose nondistinctness in the sense of distinctive feature theory. On the other hand, the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction is not quite equivalent to a stipulation to place the constructions into these various categories. Note that this selectionally introduced contextual feature can be defined in such a way as to impose the ultimate standard that determines the accuracy of any proposed grammar. To provide a constituent structure for T(Z,K), the theory of syntactic features developed earlier is rather different from an important distinction in language use. On our assumptions, the descriptive power of the base component does not readily tolerate problems of phonemic and morphological analysis. Summarizing, then, we assume that most of the methodological work in modern linguistics does not affect the structure of the ultimate standard that determines the accuracy of any proposed grammar. It must be emphasized, once again, that the systematic use of complex symbols is, apparently, determined by the system of base rules exclusive of the lexicon. A consequence of the approach just outlined is that the notion of level of grammaticalness is not to be considered in determining the system of base rules exclusive of the lexicon. If the position of the trace in (99c) were only relatively inaccessible to movement, the systematic use of complex symbols appears to correlate rather closely with nondistinctness in the sense of distinctive feature theory. With this clarification, the appearance of parasitic gaps in domains relatively inaccessible to ordinary extraction is not subject to a parasitic gap construction. Conversely, the systematic use of complex symbols is unspecified with respect to a corpus of utterance tokens upon which conformity has been defined by the paired utterance test. In the discussion of resumptive pronouns following (81), the earlier discussion of deviance does not affect the structure of problems of phonemic and morphological analysis. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-xpre.rml0000644000175000017500000000125612032774153023325 0ustar srichtersrichter00000000000000 <font face="Courier"><xpre></font> Tag Demo The X-preformatting supports paragraph-level formatting. This allows preformatted text with markup. ASCII ART *** *** * * * * * * * * * * z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTableStyle-2.rml0000644000175000017500000000376212032774153025575 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTableStyle></font> Tag Demo This demo ensures that a table style can be applied multiple times. 00 01 02 03 04 05 10 11 12 13 14 15 20 21 22 23 24 25 30 31 32 33 34 35 40 41 42 43 44 45 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-grid.rml0000644000175000017500000000052312032774153023270 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pto.rml0000644000175000017500000000560012032774153023146 0ustar srichtersrichter00000000000000 <font face="Courier"><pto></font> Tag Demo ``pto`` allows us to specify text that is rendered before and after a split of a frame ver pages. ... let's go on ... please continue on the next page. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. ... let's go on ... please continue on the next page. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. Main text. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-mergePage.rml0000644000175000017500000000360512032774153024243 0ustar srichtersrichter00000000000000 555-55-5555 MA 123-9424-90 Future Corporation 1 Belltower Place Maynard, MA 01754 USA CTRL-FC-2982 Jonathan Duddley 10 Main Street Maynard, MA 01754 USA 78,000 13,260 MA MA-FC-23410 78,000 6,240 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-name.rml0000664000175000017500000000122712064434021023257 0ustar srichtersrichter00000000000000 <getName id="DocTitle" /> The Second Document Title <getName id="DocTitle" /> z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-scale.rml0000644000175000017500000000062612032774153023436 0ustar srichtersrichter00000000000000 Hello World. Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-textAnnotation.rml0000644000175000017500000000065412032774153025367 0ustar srichtersrichter00000000000000 0,0,1,1 3 6 X::PDF PX(S) MT(PINK) z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-textField.rml0000644000175000017500000000135612032774153024300 0ustar srichtersrichter00000000000000 "textField" Tag Demo Input 1: Input 2: z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-selectField.rml0000644000175000017500000000166312032774153024574 0ustar srichtersrichter00000000000000 "selectField" Tag Demo Select 1: Select 2: z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pieChart.rml0000644000175000017500000000570012032774153024104 0ustar srichtersrichter00000000000000 Pie Demo 10 20 30 40 50 60 10 20 30 40 50 60 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-setNextTemplate.rml0000644000175000017500000000164312032774153025475 0ustar srichtersrichter00000000000000 First Text 1 First Text 2 Main Text z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-004-templates.rml0000644000175000017500000001314112032774153026475 0ustar srichtersrichter00000000000000 This is page 1 - frame 1 This test spans two pages (this should be on page 1). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have a single frame at the bottom of the page displaying this text, a big teal-coloured number "1" above it, and some header information above that. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one.. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame 1. This is the text for frame one. This is the text for frame one. This is page2 - frame1 This test spans two pages (this should be on page 2). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have two different frames at the bottom of the page displaying text, a big deepskyblue-coloured number "2" above it, and some header information above that. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame 2. This is the text for frame two. This is the text for frame two. This is page2 - frame2 This test spans two pages (this should be on page 2). It checks to see that using two separate templates works OK. It also tests to see that the "setNextTemplate" tag correctly splits the pages and displays them with the correct template. Description of page: This page should have two different frames at the bottom of the page displaying text, a big deepskyblue-coloured number "2" above it, and some header information above that. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame 3. This is the text for frame three. This is the text for frame three. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pageInfo-2.rml0000644000175000017500000000052212032774153024231 0ustar srichtersrichter00000000000000 US Legal sized document. z3c.rml-2.0.0/src/z3c/rml/tests/input/data/0000775000175000017500000000000012065004362021763 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/input/data/fw2.pdf0000644000175000017500000112560212032774153023167 0ustar srichtersrichter00000000000000%PDF-1.5 %粤マモ 3487 0 obj<>stream xレ乃チnロ0 ・欧$(ミvaルレ 餒Eik ロイ、H3`葬wvサネ纖z"(YエエイhHタ*ASュRニ{ムイЩa0T、p ハCQy/タ 6」BpPE'*h+ロウtH(pE素E@\・I リ、 ヨ「烹卸bュK・zヨ:鰍XKI畉KアヨcBャ^v綏!8Kネアネヲ、祖ggヘ,ロヲユ「勹vfサk[。タ vンルマレΥヘbサnソャ桿賠キ邯Ywソsアン岫螂cYa據ヒnw駘7ラン*タ 熬ワ7sゥ7ラカl弥>蠖(ヲ,毟*セmルワョヨm."湘疎 縒tセgクツネ]\H・Bsaメ.姶,4凶G,ュ9(ィ\IN%!%::S翻Yハ"*%8ルカォ諂サオZs:s}ヌ糒o8Zメレ。ェエッヲ~3nfオaィナjュモCュ巓$ユo6tホ酩D3゙W蜻冱iー鉞ッ嗜l{fセ7痢X噸コr'>゚:ネ、ンモサz芒|d-ニフ,ラ蓁)1ロキ哨Qェ櫃ヘ0@スxd9傲 狗ヲモタtwレt:i:ヲモヲS1・:ラiコォ6ホ従ッt?~:ヤka壺泓?ヌF)綣ャ>`zイ&+フd=ュ+タヤ_,$ endstream endobj 3488 0 obj<>stream xレd悉 タ DWaHR、E倹*ハツ・。{:ル(:cMJロ\wア%ル惡 リ'ータbY8AB0Y,+#E・陬ソbq靱溽5躙敍23 endstream endobj 3489 0 obj<<3B0579F55A9C4340AAB9C22E1AE94FD2>]/Info 70 0 R/Filter/FlateDecode/W[1 2 1]/Index[3431 3 3435 3 3440 1 3442 1 3444 2 3447 1 3449 1 3451 2 3454 3 3458 1 3460 1 3462 1 3464 3 3468 1 3470 1 3472 1 3474 8 3487 3]/DecodeParms<>/Size 3490/Type/XRef>>stream xレbb笶マタトタタタ8ク ニL?]ハエH0枅0リケ endstream endobj 1 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3203 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 4 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3207 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 7 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3225 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 10 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3230 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 13 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3302 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 16 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3308 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 19 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3397 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 22 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3403 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 25 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3407 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 30 0 obj<>stream H瑛府\ラヌgv侏Z+蓊ィ鰹&HQDEDツ ォャ( オ"Q (隊」1ムDBP経QQ貧ィォイFア7ルXヘ8ロO;Kモ毯f>ワ;轂轂セ;4 」h3/rnDx馬m.W洙]ロ抬]ォOオソyZP*ヌクz澂\5bvLQァW7述ォwァd4}澎sイヨ蒻Wァ輕&、jgтHマS4aiY+u哘\ン:&:35+g}V6W6I」 [サVgW4q:.'Oッ材ムjrtォ6G率ノヘムヲ鰒is24Yォ4アフャワ:Mリmfレ莅洪Zニーa・A洶ラ跖uI71竃.ハ襖ワJIS^2ハ屹(j2EモTEヒゥX忙トR・ァィ| 壬Q2苅fSyT-uホJモエQ"+統匿dhf*モ鞨瘰糅望トb& Iオ縣ヌヌ*ヌyシン益ミ鮑ウォs汀1;.#]婿エコW(1ホヘ悁Onf ケU?ー*(エツaケ}$ ホニ|ハ?C浹^ チンフ$IBタタlネWウニ&・^DNi齔EV~クス1Tュィ゙3:+、8ケxナ知[柾ヘチ P5ャ「タ蟆ユD7Cモ [9h%L,カ!i綴4テン7P丹,SPネ87PツEFQシb、ナ~てtyユ蘓 ゚s&9lnハ・ijシ脾フ遂 苣揃ア、・ヨッ礁チュ窖 Lハeレ}$゙EjEFア夲B。ム}g?\闖Wセ5彜>゚株萃tネ~リサK$\thx0チ;ヨ峪# ハエ[ 旛洽タuヨU耜ゥPンOャ/框ネ_サY マヘ⊇ナテニ<ネ0箇鵁F4猯U昼固?<わワ[テ!ュKfーVま@2;(~ィ0》逶ワナ:KエE7&Rネ_コ協コ$ XH椙ナエ'8チ;゚j/ニ4侮ハセ ヲ*~ロ5&F),U<%IL' P咼ウツ"fZ&l逅YN<枝゚jオツ+爼ユロ{ハセ、Fメヤ$7ウハ傅┘ン*ウ衲{ヨtdヒヤ x!オY`柯ウV莉yeツ`ニ@2蹶ーニJ。lL_アHIUhウJムハN$mHカ#\エIロl6G「爆eヲ倖3t#\ラ・ヤ7゙ゥ:アシ//]装&_ア.qC4ソ<ケゥ]閼<ホ[ヘキカ寂E束・⊥$[ミg ゥ<、>#'ユ募lr'Ygコヲェ=5BM'[カュdヌ6~sノ゙ヲヲヌv7 'タ働>コヤ1ユ屏#>([njEUアQ'&a~セサ鷲Vカ演ミチyヌラd7!|~=Cュ鹸}ワキ、痣)+e[ツ⊇q觜!ヲツィィ詩ヒLヤ 蝠裡慢F ナF7メ糠43b9シ蠡uG{gフ忙 モ・枹ョ  モHャaqJ8ー谿 リ{#サZuアみelァエ吊薑痛ラ斉ケ瓔ホトス亀8"7)b飮ワ)爬度<&mFwo>主1レC1ンK.サマ7ワ9/H」 ツXモ職xラ゙FzソJヌセ npヲO.uス秬゚.rサjォ囂ィタ; H`~<&カ」3シヒ@耳ァ惣0>2ヲヘTキウョイNP`[c楮タF0シf{右\タセ"オFv鵈c3_S[^V#ヤ>`ォs ヌZ/討P雙ヤクハ#困イ3ヨ霎チャ5+{゙ツ*ホr |チ蠣笙c81M{マj81ョsウネヲカ\ハョ轅Qリ餘g{K?ォ8ャk 減ンムt 別クル^8蓋滅,<ヤ]*aGヌ]ヨ7<ネオk。dヘ蜉姑_*οLゥ搬u@ヒ。悶ヘ」?\Y嶮ケロRvl「2k&斷ホァユモVナ寓>ムセユ@i逅畦c8タ。(チ X クチ磁ロbF傘:ヨF]t。μ`t2;鵜& !`亅32チlルル4&0u朏n?x^ナ/゙孩マ枹ホ|テタァ*チオコ-ナッゥk摎タ+!箏XゥーC%刀契法AF%イqタC♯qYg^Mnq岨 ウ30Vv 嚢vレハロ・雄'皇ォ瀏0Cョ4リ'フ\シM_ )。%Aテ繧36ゥ2餬iフ,4!。、ソモpヲWOム}ン_ス・Eォ6iカアQ,n <'.4vvG滔夊JLカ墺ォ覿v_メリ蠎ミュコゥヘネヤマ3ゥッリ シル.タ{ー+ol'/q。 シネ漲゚7ヒニヨイウ6E=リォロマタモwイSラ鞁j蕣]S「:ケNノ楴1染$Bィ_黄Y導昧Zr)郎。ネマモBクェdワヲeBハ婀 ケァシ{~G:p<澤゙&。ナ モウ` >、」(tキXTf瞹5歪ワゥ9「dKー隴 iwPムcPp瞬|}ォwトヌ&ヌiチuツQ醴xトYUU[%lハルゥ3I@髻。テA$mーZEオX&2フャタ@テ避DワP||綬4゚ロ゚ソォ貊|,*」チ挑ヒ弍ヌ6eQuソチ」ツネ!zfソセSテ鉉;」ェ髢oヌK5韈シGッムGョ鮭衵ー暢L謚ル:イ乙ヲ摘Nマ貶1km・M5Q1胝8=齠 トnオヨ兵ホコ扨ヌン唳"H>鷓N2J(`サ,鞄゙エ左 穽6@*26ッ Lcァ\C夲` j@セU寰3ォFテユ゙!5エム哥n`チ6 、rZ工8突ィv{hルネヘZ9翫~r9劫p彈4ニヌ遽|レリ ヘュョRコトs,'ク,ニナFニ゙畫最7bqゥe|+マYツ イ:b=ヌJ1ロ1&♭Zv&巣sル~チV゙炳Ocヒ$エvリ=ツ笳展Q 馴n8rh.UワT ヒ・]シ式・ウリケ悳リ}qツユ4ナエヲ:ト察OヒY"ネー!゙呉r/h#"F溜謠A"?`C苟カ聞レリA7゙ニ・ニタッp1鏈EE? ケ凉メ endstream endobj 31 0 obj<> endobj 32 0 obj<> endobj 56 0 obj<> endobj 57 0 obj<
> endobj 58 0 obj<> endobj 60 0 obj<> endobj 61 0 obj<> endobj 62 0 obj<> endobj 63 0 obj<> endobj 64 0 obj<> endobj 65 0 obj<> endobj 66 0 obj/This endobj 67 0 obj<> endobj 68 0 obj<> endobj 69 0 obj<> endobj 70 0 obj<> endobj 72 0 obj<>/OCGs[3414 0 R]>>/StructTreeRoot 3431 0 R/Type/Catalog/PageLabels 56 0 R>> endobj 73 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState 3199 0 R>>/Type/Page/LastModified(D:20070112140310-05')>> endobj 75 0 obj<> endobj 76 0 obj<> endobj 77 0 obj[/Separation/FCP_1/DeviceCMYK 108 0 R] endobj 78 0 obj<> endobj 79 0 obj<> endobj 83 0 obj<> endobj 84 0 obj<> endobj 86 0 obj<> endobj 87 0 obj<> endobj 88 0 obj<> endobj 89 0 obj[/Separation/FCP_700/DeviceCMYK 102 0 R] endobj 90 0 obj<> endobj 91 0 obj<> endobj 92 0 obj<>stream H吋MMKAンムv躅}Xa2;ミ・O螂D ェCatア],リワユタC' 「ヘ*e噺yーワ寉キ>~ョNンh8ウLAレ・ヌサシヌ\桃エフL}>ミャ/瀘閙レhOuキtDXレヘ_Z松{:ルJト62ミ~F;8)涵迭ヨ」k <ト#c」」リ糎%<欒メ槙ァカテイイ#++ )2験wsy$URv゚ik:ケ^タf?キヘ、5゙$UモNヨュ g0 玩58_YzA、*シT檸Zグ。 bユ藷ヨHオィwIコチ:yw調p?ヘ_畿ニphワネ:ハ+箇X{粲^4ZリモEノメN畝 多メ9ィイ。f"僚也oヒ0ト8K劵リ6b5J 訝p#2畦ョネ,g2zLZb碣、"包9ク葬凪"L趾R)WシBMウ.4蒙カャA+メ+タ椹ゥ endstream endobj 93 0 obj<> endobj 94 0 obj<>stream H欝P=oテ ン7&v、zアXUミエ鞄ホ.R 闌m%タ聨ス;~lN叉7yンbホ:C84ツ{(チX7oアzPx"キqh\遑ョソ、iンヌ巉"ヅ]サkqI」 tH ;ニ勝*慝タ3サホ。\b 拶i$蚫 d2tVニスモソ韓Z)D.W\f\ュク,リェsキシ禊梭呈橋,ハ:|*5萇 hl endstream endobj 95 0 obj<> endobj 98 0 obj<> endobj 102 0 obj<>stream Hテタヒョマニカlロカ宰カmロカmロカ];フネタ1ィチ nCハミ1ャ o1「糟l」ヘ霹0ヲア稽マ&_3。鵜l答フ荐0・ゥLmモ墅f0」厠lウ塹0ァケフm墹ー[ネツアィナ,n KZハメ務ャ,o+ZノハVアェユャn kZヒレヨアョャoレネニ6アゥヘln [レハヨカアュlo;レノホvアォンn{レビアッ:ネチqィテG:ハム子ャ':ノノNqェモ懣 g:ヒルホqョ懶コネナ.qゥヒ\ Wコハユョqュ\7コノヘnqォロワwコヒンqッワzネティヌ< Ozハモ橢ャ</zノヒ^ェラシ ozヒロ゙ョシネヌ>ゥマ| _ハラセュ|?ノマ~ォ゚ピスツ endstream endobj 103 0 obj<>stream H瑛UkTSWN{"ワラD咫rチX ィ5ユ~ネテ*(.I・ム辞.ラトXラ<\vAg*遮,uエィィA麻]フィcラエユ:Kルw~フZ撕ホ沮ワs゙鍄キ>r剌有.零讎$'dgLNウ儲Zkl・ナルヨ5ヨィハr狗t悧揖c|、`?-セマョ<+蛯ラテ58,l 輩ノ袤嚢Yオヨn[YV#F年M3"鰊#ニ[*Kャ篦オユ5ヨwォナ還J{U・スクニjナrqヌォZ\`ュカレki%ムV-久Jレュアニ^lアセ[l_%Vョ3m5kォャb|ェX\a儚imヲzMIオヘb+カロャユム鏑NエdJ/卅,@% モバ藩抜LNカP!k痛)+2/匚lカl浜ッル助O7ネ??Zオ゚[鮨ニーOコOサマmNヒm瓏仟f3 サハ$ッHVヤ+~ュFゥR(ロ|゚uセ週jユ\Uュ鼕J5yヤセQ阯獸糯v~7o誑腋オYン「ヒ頡ム妲;G? Hリp-マ7Ceゥアケ.ミ &撃瘉カ瓧此 #0E'A8NNリ宅ンエ&F罕タh0aケミレ+]、モカt}Y^!]q{{Wo=%DaどqZウ uウ 凖伏80'04ニ゙ツ`ィX<弦A,ト鸛ハ!0 @ィ癜軣奨fhB ネ!:伊X3Pナpツg恭:彝ヲx nr「褊ヤ3GQ祟ハDナ゚v\s>ミyィ。 xy'懽2 マアソヒ舳Y獲ワ{+m_y+Б!iァ<ェ80ェサp「.芥h穡ッツエラ嫗0P6纜ШカdエuモタヌオヨJKタX'ュL 椥A鹿cl・I・@Y橘^z 〜(女5mソ8>:ヌハzヨソhg)ロ<」03nCカレ0i&゙ンn-]>[獄フ(0シ闔膠  チL鴪キyaミ蘋=j、|ケ,ナ=麻1霎}サホ鑰y~BrAF|ヨロ_tm2bテpソ`=6ツ(:ヨr禁[ャ&ヌ>医EC2DFB慕=メN ィラ哄ミ_祥赳/"fQナL|;゚ユ/'Jウ裴Sjr-ニ&7a・8\Z[4iョ満枴ノHM*vq゙0皐゚ A馬>慎\メG6v ち2| ァNテキラaゥ"縲徙ツa健`Aテ?K>CAr!4T7ヤ'!*X韭?フユsョ0-yノイTパ2u皓~」0畢ョjR-ュ74)貅Lj繁06編ッ~wルユサ [[dロヌテ\ゴテ330ミ(,ヘ/5]ァ]シサ3{eNチェ ?uF水 チQ退!M齧I牘e7` オBネツ2射ン9ネrcムqg蘰}??ft4qo}P・+勝レh| &Mくァ醋ア゙セ血ルs捲:ヤルBォU ヒ鰕身n冑*Qヒ~NナGナ鵬'゚4懊スI qG=メテ=テNc丶qー{ウ劒`& 茲仭?TモeO40}}イ"!~Q]g1コ跨タCFRィサ`ツス「ッァ~bサクヲラヲ悛ケ堅ウ g゚Kヘ)ア1首゚7@慎A」4lウ、 俯1奐クオhヲ\ューAM$・ナ,jテ「ノz ] ~Tヨ擽.J搗セ傳.ヲ烋ヨ・'リァ閥Rx頃Dツ メ侖Sp<ニN]cD拓Rコ欠ィ蹉(t まレ|H肄!DI)胚(ソ_徴・%ン%%ォウエYmf<(eT-|L-fΒ@*ノィ`;偶側ナNX&鈷8/wツミクT2k^g0ス q簪2肚o;Oト 兼キユ恒o レ*eク推jテvh s|ワZ;\Xオ逕ヲG趣蕚Z拭'メ:zム莪eヘi3Nサ 0,K1フ ┯O瑾~ソcAサX3シ$%ムテp暗<ーャマサ鍋Q鱶O>茶ヲチ菖Mhij,ャ文eeК.P舊ゥノチс占n簑蘗「エ不クキB8。_ヘ0ヨス〔b8Sレタムァ'マQCк醸ロ Nサワ疳w5辧測9牽{uQ騎:JスイVモ0C 飯l6/40IB(7ロUナ卩AキChFノエvH [オゥ1ユu゚ョ゚{ソー?セ火ムレDY(」ーFアクRe頌R徙P!u00Lチニセ4洌%{{'ORP3ンコラ}ヲラト]セイ・繍ョコ=_摎毬qXyレ3クm[イラ_}jOワ4wヘ %ヌ「IウE}ノo「Iノッh}ハ]Sワマ鋪Q兮bh捶*ァ%」*ヌ!_:!ョサ{蒻ユリ=@7ルェ3jd|リ臚。 N煥]Iト9$、ク鱠>ナ淨蟆M鬼2a;0Nり0ムキr^。"ニ獪ッW蘋ヨ]ゥ-スリマ~サd「 25Z任q8,Kコe@g「esn!y斬 ウ,トワ%7q|F2牧幡越糶%@CO筒 ス 0コbqサhシウャホbo4 0f/+ ゥスx、[gラハ需Sモ`ヘb洗Qウ8ZBハソc9・xVgテF\コAMmッCト俎ルOュ[骭X鰍コ陛<コX豚%悁トQ@$サトgZB_Å[ヨ+册,T_P「セヒ疆&議8%a({ュモク"ヌェ$コ橘哄TシQ6@}Jフ気TQ榊ト 瀉ュ#キtiャ「5BSヘAMoルz D,焚オ?,ヤVoAサEK ォqjマケワ9螂8」Sョck、吉メfDンャlIDGンミt\m(>_%虐r致&Jv~si:リッt)fムy)セ ナ-ユ糴Z,atュ!ルロ們龕xBCョ&ェ粲コロメKーk(Dサf処哨W*儕HM穿u。ヨoyーチー/ソ楮ロメr"リW&{,t#eオ:g7-クァ。w(H<旃ス:アξ0クDチチサiヒ>.幸xp磋u'VG(ァsKz充ニ渡TbX佶銜冷f!癢ツァ「86R゙P[m・慷gBエヨ?1o>ヒ[媚賞{ヤ~xシ。Wソ[ミマbkb*梟uZフF ヌA'B゚輊pl%ハ9・燬i儀FIチ?ンカ]iウ?府f孚」bル脾EタA6砧+ンラ:jPyTv゙%ナY卩r&鈬5;ヨJ5ン[Y?ヲU#トa,p息ィK[A洽゚ィEZj暁ヲーLヘ俵ハヲJv ィC}モ^k*妃ゥトsΗ規ェ7+8濡ァ|p~iチ」UチZ゚トヲ[w爵シラn啻从4,HaシェィEmYエ太l=樋摯g4タ_ニ*Zキeュ8:ストネrァh ヨtコネ頚Zミャeムム娟フgン憎阮6fC2.g{!゙閊昶カQャコホ舮劉ゥサL讓fa<ワ」ヨ-劃ュホT愧ゥ"帶撲$ツ脂`チヲドテ4L6ワ窺lT\_rィm{リLマメ嶮嗅{5薤ノ5ュ殍@| M椽$6^ョO,率ヘ]ス\。腸&4スホムN殱トェ?wマフ^筮Qメ0トv程'疽-t「 ヘ%Nーヤ ミ_6ネニクfS'ヲタоソ晒hセOI#)モE 5}クRCウ)マハ蘢蛇}T/チ鞆ヤハ8FLa1{弑2ルイコゝ"kーヨテ{-エ。蚪」イクレ?゙逃゙ンd0p"4ケ3 竝3S)7セ*.ヘフ(斑]ウ#mK6),46| sメャヌフニ!ゥfウォ掩コ7靤zコムD-&ヨ籵b蔓}胚/鯰慫;r餃ハ悃lqー栃Ih*tセ殫"xアセ.eアnシ%ウィマ"mォ>%ダ0ロカウusキッ冒趺7ャ=n=T袖ウ\;MFJjV幾/セQ熾y4GuィコQ=ホメK,ヲクナ!モラ枴複巌Aキ0J。レ胄^6ネ^tス.5゚NヲTウナ.Fカミナ(BュEオdCセス樮?」k^Y1ヲ;3/{ネヌ^r(~竃cヤー Fソチ3"柧|ニチp^ ヤoC錘酔ョル鷁q。X嗄マXハハabテルエ)メ級cQゥC0ィs ァQzツOユCv黯ヲf#X8!ワコi剃駮%f%(ラ5&SヲIクpエケB@・ ̄ーヘ~拊+_ァ^H*-ニク"x'寐竄ヨ;E慱_ キnwヤラゥク endstream endobj 104 0 obj<>stream H鉛UmTラ杪リルE`Wvヤ]ワ | " ィネ(鼻・タ 彊 頸@エIオXオム$瓮ェ@メ-$jE\ルクDWr6Fャ。|キ=攘imレ髯{;ケ<マ}゙wHヅ IR匆liLR弛6ッD[、ヒメャメkラlユ葩^マ苺$?ン檜srナフyユヒD苔ョgx_.ァンリォrツ$4トl+モ6m.稠gysA碯鍄 sx 拆ーQヒュ-+,メn-膩臠霍5Eレ視ホヒ聊リPワm。V_"ャ ァ+4弯サI'`レlョHッノヨnユ鑚ケ.Q誉PTカMヒE/4ルs 廸8ヲーxc。.[ァムエKA !" ,#8Q櫻トL'tQJユ$Bリb(颱ョ'ネnr閥レノ|器~i7Bュ」゙」wレ」hウ錣ムuレ緑ソウ籃稈a1/QI$ノッ%%cモr&q*'M8NqLt,vシ竏Nウ悵9{8oq蓑、k・}2体KカQv\v~イx篷{'?tY犂ナ蝟ピ蓊柵ケ `60 Lqト1ゥ0vy轍ゥ)チ .`ヘフ腓リク6懋WワサヤtU壑£+ロ+Bヨo舘ォb枌#フa匠鸞L}G゙@ フ瞋A` C「#・^付Lト={垉%&z;o#Q/ケケn傚ナ柊礪ャ@xCァツb趾ユャz,沢主]p「+゚6ノG 總.3申フ社|翔.Q(ヘ|懾尭蹉 銚ァ?ケ NFYカ/ァ2ヤア=#w C淡枚-蒔ヲ[ナ、Y{。Aiゥp)菘@1倅a~蛍"ョメ?'%]*\゚}5PH翁V;\Z2、美撕43ヨsタ * x[タGO{「ロ:\п g~>ェラ8椙ゥ.gpEィリU0モホミ *04スl8ォhQテョW鮗ワ]ゥ鮟$」S轉 顔6Fク*慧エRPチBォ[髻タl艱ユ%{Jノ2^D倣`hテトQ --7}イユ fェ楜x3A」 エ2Q嘱ン陰*s-;^ q 楫ニ靴O<qQIO役HトD?駄ニモワロチロ}藩!ムzネ$蒙+イヘgX>5Uオ>yヲ4\K廻^普Nムjッ複Iサq。マ2X 」oロwJu=シ. 俶}GクK蘖=>P ャ疸0ネLKMPoN23/ Fリコc'j+゙Lイ$eセOハ采*u(叉ェ,。爍顱ンw逃/7:1沌i[5L ク2t穣G>負ョmVyァ3+:21;カシシヲオ " $)>L盛愴{V(n`"セ3干゚タ乖ヌlセツフ1請5チe3ナo儿ノ zユ~`ソィ藹儂・薜q(Zカ."4ケk`沚謾ヌ「@ヲa逗й 。|テ;7遨ォ Sヘッ7タ2シ95-53耙フサーOソ K甥ー」ヌ練-jヲt倏ン録tPbz2ョトキミサラA算@-  ン" 箋o<1フO%3f&瓩嬪ッFワ- A5c/。ム遒 vb・トBラ q繊=フwノォ1lmBシナo謨ff\!閤ミロミリサ:raRrhp稙投ClBKユBモーー =>L◇絳タ ヲpf<レx-穴叺}コ・コツ懼$g'噐モ\ナ_iサユ。]妛閏コ爿d,ウ9$o4G吭3ホylリレリケ皚 ~モ4ワr)j條9VdQzトエ uf@5廛ェァ _怐慯ヲaロms|9;z}タ「oマ9、>擅ヘホ0yYYゥ鱆4Sウクッュ粡ェカヨヨ/( ツヘx煬:sツャ褌ニア尖\#VJVNR憤゚モFネA=飴「q?姨ケモ!l 8"ツ}エエァニツ(5ハ-`アト[Vム`da+m4lXVjク+hソ,|Oサalム゙カ顎サLヒ憐キs.・拔斟彑鐙ト_ムaチンウ」2イ善Zユ゚蕎h。&ツ,」フ萎Jワ塘寉ル@烟!zq慢Pム8ゥ"6]蛤8VネPx゚" ・フH-ス_c/ノA /иミェiィ%シ;PvクM祭ッ侘」!コF1-妓綵Zコ汪ク+昂Oィ眷FォJyw」]Z"8i|スヌF2簟゚ョィ&ホ,,ニキ4ャ'&DjDE@D,> APDトGムョv}T-Q.曜QY]E卿X\Y洒エナキVhxDbjWュw笶nNタウルSO8$3ノ゙セ{セ垢敝`ハvフハ*T8 _コ賠イP%dコ{マ+>x) 3a7ШアソテR!ィ ァ嬖リ・ヤ稈オ[!fフBF゙實ノ ` フサワk?mムキw@8oモイ颯Aォ;\掘<ッタ@F ゥ,ヒ拌ju饂載7L麗p[l^;\ーd>゙!ェ・lト筰眞|沼<夥ム茵睇キK/ :オUツb痼カモ:b敘&濫Qp 姿靈゚ィpRpクカホ".pィzキ柧B`チYハ)エN・ツ)、;君薇チRw挫RW、゙qコ3ミネ0Kmヌ牌>kik49捕;uMW_ト誹j=リ1Dmフgェ菖ネモFRt)ォ\コ1xスxbR 、 ス」洪tS$ャWb ュ111tモ*yS騾ヤI 梺WツB「}A~G耕T セ&%オ壷モェi驀ヨZ0ケミ,キ淌焉$T ヒンゥb雀kィ゚シLG(~ル抽ッ%!シツ8。7Cヲリ墜eチ{ysヘ晰^>ーノS,″<>轢"準;Gzャ"A.珈ア}G/ オ澹ェ(コャdBンmb7ZカトョルB湍;U?ェマォマョ灼鶤コ^vcラチoE^A塘キノX:ヲマホ7]炙竪\R蒜・H!。ョヘhD1第^タマカト"晩`ルMヨタナCアK# aトoHjJFX ミルadサ%!ンネ6゚2オ98ラホ霍Iメ4靹Sサハs 昇ュァIュ高U?ム(~ユ・$K鳫。x:CCBaL$%拵8 シ" ケ ^メケソハ3昶ヲィ gォソp g*ソpVナ?gpミホT! ネRレフ$、>ラカaリ慫2 %[{ョア]0H、0Nl&ヲカモユキu 薫、Qめp@ンwス「 ~ 二s激マ9d r!ァQ泣ス筈益ヌ. 軈ホ69{ヤラ9ャ$儒圸iクCケィロaT.:ヤiLyK9ホ9ヤメ(%聾'ィヌ9} fサaソ捺ャ5イミヲз1}z,v{{レ35゚l?ウQ:サツレ}サシAツi笞ワソ苹~zリ・<シ鸚9ェリsオEf鷺Oh0洙ホ丑顧エツ" ヒ_みMヨヲYjハO-MョXzウメ篩菱rI5エ?弦.ヒPェ背aォ陝9スア{j?zt=@RPュクU漠PUWト'lエ4Ch3?庚X2i%カGーホトシモlV拾ヘ :ュヘI漸ィヌチ|サB([`(オ┻損iモ岾ヒフ{ョ'ロチキセrホクヘwB-yコイ凸▼ャzホ竟)f Iラ[ミa゚_*?[a!_+ツ>ユ 汕?z@TッフHニ゙u=X」牘acs8D寄+モ貲囁Ku8ラY膿 zOム鷲Fソ~9仄Uq3厠珎ーユャbヒ痘o岷W旬}=M-ュ4ヤ%ロチhz e%。スォワオHノァォK、ォ|ヒヨ}h:c脇T7y}*ホュ゙vEャI鹽テ。ハD6qロΕキチ鱆逗YVf^ザハ1 -ムZvO3纛o ェョ_セ チkヨP%1:IX=9zヌwkエ9+n呰fヨtFxfミ4ュツ^dリ$.eィdmヌ]<<;IツG2エ嶐舷ヌヌシ?~藻サ騾ユキナワcC杲ォ者ワBマ!2L・'「ッャモ槃チハ1BストRrWフヘノ-,ハ礎習J カ倆UZwYキホPソB8;=/ーQーー\ィ、- 9ョB,ヤC+フ 81ウ8%*タメZ'(タ戡Haケ味VXJ0Gル[ィメメエウCレ~l,/畩コ'Oエー-5QサT|ァq_Z堤O」T5ア<ノEy、"ム#貳B弓Zケ]フ~ァィ[|ャ|錻)x折ヨツ&宴ワ惜ワLUム チテタオ?bZ爛柘i・Nキャa摧%o5Uスケェキ7ネSォ癨pヘヨホロ.ホCqサアャ5R篳ョkクァ「Dc「、 NEp情憙Rw$栗揺Q ~D・ャロ"r」ッオ゙ョ[8Yi6&ソfT逆」dニ鑰オ9ヌエw「ォマqホョ」ユ@ヘフモQ惑ソ姚'~ヤャエセ)[シDrY~H躄祈ャソ Zを, endstream endobj 105 0 obj<>stream H延TkTSWセ$7アユTs{aォFJオBユ。WH后xT-P活tt"  &!・鸛y& R_郁|エ 2ュ 7*Fミ"I 埀>オadロeカu武肉ィEDヒソUカ?Β梔%オNH靖|m」!rメワン"Yメ那、mハo剃擺v ゚<~踵ッeャゥd、gl拈ミTク驩ツPタ&L!(weナタ~タ`.ルE゚Pネn%ヴZ戌複志_mfョ收゙畉 iPTEィン_{NイキムyD8穴勝)03雅站レ#撻VK墫YイgKv jカ褒糜5ォm甃:メA0リ゚}」q、オ1\・ォョチル濾pHざクヘ.ルuf,ルMNテ~ホAケOヲソ`ヌoルHH」ク「ネVq, フz:6々[}Pス蛙Rヤ]万VB<iケ+gオ・イ樵C/yヲタH・Y#ォ襭|マタc'Zマ@。ミN|\oヘ、ムモルBv空md$レu鴒テ郵柎y篆@Jd ヲ/@蜥 テキf御`LRテuホGユ賊ユア舳(哽;dK鴬隊8Dコ,v摩ミ#ヨムhゥ%。9ネ鶩9Cシ雁沛sY縢ス尖タ亨ェ鑄gN殃;レN゚nムndg「ス彁<扶=vテvS゙ニ根'^B撹>ーイQoDrΜ僊1+o。訝UKy?,ナ/ツ-/ー閧ヽHド92ム1増ヒ蛛ト T披」|Ft(oテ ア粘ホ-/鋪BNp>サ西+レ?テX"ッ趨Gマ;$_6ヲマ/_v~セ」土゚Xx\Gァ2オ9rス1O誅ヨN7F稟スb餔ホ咾zネ^遺ゥ8兼、・cдカヨ~ クl・*1Z・/F*7憶 ゥg*・傳aヨ蘭ッ4OBィョワセソ矧Tフ,ト@視キvネ^n E^・DxDyシNXt#z.羨;ムハIlm0 ムユニ{ロ!-fキヨl-1踪xu槃罅樋,シシスw^uヒ{ノォ違オuテ゚ュロ礁仭cソiリ卻ァmzワ>H、f;ヘ|.ツ叭B韋uッGGヌ宜r3ヒWィツラjvァェュラセャc攷sモョケオ辭CDリ胙ュ>ス Czイマfシ7~ウ!Wォa} #Uス秧q矼ヌrィ5(:n挌&1\>巣冪m"カnmaケgクVy チ土シームK弛チTィ/E ネ゙「*]刮)*)ワ」」ウハマ}トrノェオxY6'?;マ7ハtV冷クXシカ循」ト嘸ォ、セア勲Wカエヤエミ7サホ エウ'ロホン?メ JョJQ36増@ 8姨IHヒN*嚼ョ英=蛩圻yヤ{ endstream endobj 106 0 obj<>stream H瑛U{Tラソテ23`a&ヒgカFサMD ムリ&"`ト*゙ウ辟ヒ)g侮х符敢ニNハ(caチ=カュウ$ロ*ヒュI3 wlフヒ iノ%I「6宦Sb :丕Rコ~」嶬江トEK7b蒭DSトBヒzP乢m7テーワ!Qヨ+$ュァアミホタッ[z蜩G;ホ.霑8$ナuヨEヤ:ュュ^R; _蒻H c7エ>アR zへ^、bネq7@チ淳ツ」ysソ翡ン'Pv リヌrュ7yテノ {スb+ェi丁jlヘb{モカ臂revQフ&磆%x誓Kォ!カ!♪{レ稚yリk 酩レ゚.&?  敦ムツ@ヒuシ・mf;ハZ[%レ&Bsmヌ(7統loノルエテメQC|}8G隆タ`ヌ散ゑQ6R氓 *<樢!fア7ヨ~局>y,La 揖}M[>ッ簿通籔a;オ3g狽ロミP蜒o$5槹ョソタユ_鼎 a艶テワu2ユm%6閏gオ45エ陥*&FEbユ}帛ワ薬ー! ヒ?帥嵬リ┸スY"x_$汳9!}\ロ>stream H叡d`ab`ddTvsuvメHヘ)K-ノLNヤuホマKIヘ+NMムuハILホ)R!ヘC伜 証o已}ゾェa鋲`XPヘ}!UT 1012ホル龕_PY漠朮「速ゥ`hiaェ"ヘA、・!4VpLノOJUョ,.Iヘ-VフKホ/*ネ/J,IMムSPpフノQ儕ャ濃彁T;N!ウX!Q。、(1%57ア([!?Mチ'3/ソ、イ Uィ(Gチム]!1/E?ソH!h@qiRqfJfbQfjアn#0+## サ|}| {縢-ニm゚{仭o゙(]wマo-vセン゚・ヤ}d\ン;wk跣゙?界ラウo徘瓠湎ホ9ノゥR!ル鯔rヨャヨニv ソ、樫н=掵ハヨSァ-=sJ糜ケ_J}旅<[キカ笹o ケvセ灌l*g戌ウ櫛Gチマ&ム゚vl.vvXフ dロト=懦闖%ャスl,aナ]gokカ?宜;ル*l奬;e6ロwvョニワ=<|爪テ| endstream endobj 108 0 obj<>stream H チ nロカmロカmロワmロカmロカmロ(  安 │A 呉チ p! 諌。 ーa 酒瘟∴科痩ィQ崎ム1筋アクq醸I逗 I蝿ト迂嫡、II膜菲I曹)I賦ヤゥI宕エiI落鯔吹ノ秤フ卷着ャYノ枕ルノ巣9ノ赴ワケノ島シyノ酪)P)T按)R┐E)V娯ナ)Qr%)U還・)Sイe)W儒蟀P♀ゥT果鮒RェUゥV碕ユゥQ5ゥU芹オゥSコuゥW嘱iミ iヤ鞍絞メ┬Miヨ梧ヘiムv-iユ関ュiモカmiラ授鰔℃鰆火晞メョ]鰒咋ン鰉=鰈謹ス鰌セ}鰊04庵2┌C6吾テ1q#5貫」3アc7首纖0♂4暇等2ゥS6埼モ135緊ウ3ケs7錠Yー Yエ闇戯イ├KYカ悟ヒYアu+Yオ閑ォYウオkYキ寿ルー″ルエ河巍イュ[ルカ削ロルア;ルオ襟サルウス{ルキ9p9t暗9r┘G9v後ヌ9qs'9u鑑ァ9sウg9w受郢p°ケt架了rォWケv鷺ラケq7ケu菌キケsサwケw埴yy杏准┤Oy檎マyw/y陥ッyキoy樹¥珂漱ッ_搾゚Α?近ソソ`ゥ endstream endobj 109 0 obj<>stream H叡d`ad`ddTvsuvメヘヒ,K-*NフムK-/.マ,ノpホマヘ ネゥQ!テC懷,醜ヒ_?'ーハD蔗~"=Bp:!fFFvdCssS錮ぬ「フ硬MCK ヌ美、T猝竰ヤワbマシ蕈「「ト綴=ヌ 穿bヤ籌「2(N#c;督J雀, ゚ラムッ壤EソRァJaU}櫁ソ5ャRリコサvvウ.f0ォU endstream endobj 110 0 obj<> endobj 111 0 obj<> endobj 113 0 obj<> endobj 114 0 obj<> endobj 115 0 obj<

> endobj 3198 0 obj<>stream H荻WmoロFョ_ア"b}ケクOゥRエIP.タ5ナ*錻ュ$$:ョ凩!)ミテpD号サフ33ッo8[/cヌ蚣&リ塹fッッヌ况シ^0#|。エeロ3艶イミソ%;ヤウofッ鯤;&ササy?繞%{bさgソ碌{/惆リL[_x-/ソ/ s&)柄ウ%JZ壯[I2・モン゙Kイ/鶚ル,ス+$レ嬰O躍:ハルp{ッ%ス叱イ':Y2]ヒp{ッ%銖陷E决゙!S3゚ク`雫ユP;K「vフLクFレ%N2P^゚.fッ籬鏐< ホケd%ヌ(ル `#ミB籟簑l癬タ#OOレ按リR2MW聒b;サョ9ー順ラjブ,[VVcオッOヘ痍Sスz\カfwス咋 o=1]8ヒ譴ZアナjvE/セoレイ~ナ志ヘォ襃ャy`7ヘ吽砒`/ス<eafZ\セ PLy鎬xM黴DUh-ツ[oキM\ラ衍濡vl耶j酪uフv象@ソ]%i脊>kメ_ホdモS$!帆。wセ窮Fvシ 雨礁沃"キフホ勢溲v}ィキョ冴懊ャロルユ~S裝p ut,Fhe}Xヘユ。}&掣P2)ョヨ,セ兢ラネラセzrネiFヲレェ}l崚髟tF擺全卉Jソ蘗ムQ]テA)、ムAイEYレ燠シ +D0マ忍,犠オ(ォユ鷄庄シ#[6ォ:a#gPェqン&ノ。_フイユ柩<セ,博オョヘfモ,ォカ^アvス?N1・テツミi茗サ!jES|RアョセVサeベセサ。徃DM^'L皴eヒe 嘯゚[?Y2以キ\9ワPレ炭ュゴニ\@マ莊yaュウロ2]濃Pヨワ#N三ユッ5PA!ナ奚K}2カzwャャ7"w1」テウソォW原゙睚垠ユiン~RoV :3b鱈ツハヒーrネ囃ム綾+鹿。|イ\aL首ス' ヤ&交CャhNmAホEZ誘餐フ"ロリリ賁!ッn「ツ鐘、埒サ0$ 「、/、咲錙'6ゥ享ネタマ5H 徨リzjZ?ャ>ノ"サ浣Oニ嘔ノクDM%スC蝕ャWー澑ヌャホヒ、B''フ キ0吭.拒0-癌!=!洙o @ー5フ螽:O捷n咯{h6ァD @9]y凸7肥ー|hエD:矗&:t彩#"・I`q蜿8ーu ノ対$jト>チ憲;チ萌ツ射]ーハDォヲQ@Δ ト#1DQ6 餝%evsヨホ<|,Mク-=Z.Rt)秕ッレ6b[-yb"%b ケ壞 X&b邂」b 4faP>」 "D` イds&鏐Hタイ3ノカ?ケラIカgキSリB嗜(Mw7g(ム#ム▽4ー -NレJャO掴概$ミAO T帳?eャ3ワ@5タ止PN殍窈ソ'O#ホ9iコ|rQワミ/ヘ睇o#m8」フD+Eャ坿#ラミTロ.ヘ8ヨテn+ヨ嫉O絲/テ餡9 ィリO維マー;チ,xリ27-"纖(}(卆Ku狸巵y5Iノネソrテ呆鼇*ュ」 ロニxkpyxユ8春Ln漕ロcH'KF$ニォ鮮W'。6}ェc^lヌ]^@・監オC(A啖XT"嶽G8:ホ I゚Mァゥマ宙シ ;モYママjィ2 ネ、I/_ー。ナイUヒカ鬻ノヤ蘋5ユP5」ゥ∋qヌ-I&ヨー`)キ,mヨ洌mツ_゙)ナNゥ0 勺縹弯*'Mjオ。勣<=ZI;Ugァ携iァNR科yエレ 3ラサeウュY吟 ヘID8ハハ^葺オ0ス"秡b dノ覘2ミ4。 U「`娑~~ン腫トマセ蛍ンン9$zhナX2ミノキロワ耽%9 ァ゙裂オ_ィr*ヌソf3ェェァHヨ`ニリャ」)3Q|ワ衽@`ン囗メトーu]F?eス槲ロ桁JJ##ヤウ$f%柴恆Pオ9*cF纒nリサuCm墓楞r慯4ユケ@*レァェネ」."% 7}カ米AF+ #テムチ7 ゚-ツ%ャ&ワ 6ケFuw}_ヒヲpv10%(CG)仮堤ア「C6ミc+ツホ秬ナ0{ /cF5サロGsトケ endstream endobj 3199 0 obj<> endobj 3200 0 obj<> endobj 3202 0 obj<>stream H王Wルnワニ}躙翳0iホ~Ld';チユbチhヲO, gdナ{z#寞ネロTゥXャヤゥWラキ5Y櫞]qBNCAノナォ!T]W5・DRS -ノ~"。袈1Z5垓カクQシr&ッo %蔕}QWツ4芍ミ埔#5゚衷殘イ!Pヲメ馨0ソ+、チ&・.ィ{ ァ*{) 覽コo剃゚ウ:s; ュ」鮫゚貯dWワフ闃C&tメJg)hqュ{スN碇:Bアハ t彫ラ曹y{$騏nQ)m4*UHFエホs蠕$N寔~~YシZメ゚j倍y_ヤdケF@O,O(コo'j岡絹xャ猟ゥ9|!ヒ}アWヒ?7ヒ腓誨覽ュイェg*Q捗叭ッ{_鏖Q墜iヌhh姶Dekハ]LT譚緒ワ4。ハィ啖ムリカオ{{8サ0ツ&荀ノラナ秣キ:tソォ攬vワ句洋サ)VqZPメホ'イ|Q,Nロノテ鷦>]RQIエjーs{^マヌカWeフゥ:+vー;~ウヨj\コq延-ゥ戸hQyヌミ4ハト%-9マ銜、P迸l恃シBx゚?レO験9ャ%Ym6ュ=晰pリ神o~!翦;B3>ハ(ノ&/vセ椴ケVケネ棣チ7M%j。嘘コサンク^晨惺ァケニr開gヘェ/fC7h%Mフ/}キコ:ャ-yss萱嗚sTV靹ソワト、qトュ}ヘィ$ヒHン{ァ廂v@ヲ糠D ゙eヨ。!_R」6sQオ`!躓テ 狽喇ィaサEWク帆$ヌロ「3pZ攅ヌC,ァェケXム‰ニカォル`モ汀/エ=bw孀オg1JfJラ練J」l'n壌-|8ルcサナ梢pAiZKWRヲ$鍾{rIC。Yエ、シメレ。l紐 ?・'ワ郤莠「 ・3o襷Pイ蓙59{\ホeノS5!yS1m隶m{:5糒ク=lマネヤUノj鈬jケン>]}^セCハ(A]迄Quナ鞘\ペケuY2Y5,fロt ュロTェ)」b -5)Jヲ=鬲ulエダ」Phタeヲ.&Yヘ8PFム:sgウマニKe {QsアwL廩ョnルi徹d,bワヨソレ;RM'旧eュロ8コム。オ錯ヘイ迺ヨーQn=X+!祐テ鯨ajjSヒNュ儒T・9/vT%c燵f゙ヒァ|;レコハipPi/Z 雰、C?⌒ークA鎌g眼$琉!-マッ亙C釖DッHソPエ」4桜8>zヒTチ%0 モ鸞瓏イ\E種UノケゥyIョ (CK|dd浦~mチ|ハaタウ{Mマoo%&JHシE蹙o F従ロoホォ崚ルカG8zp%|オG ァゥYワレvm;WイIォy,0^眸tャ@ア@鯣a-位,O>ラdビムツヤク@フ齟7$スL3*$リロャト逹=リ妃tァ麭イw* dュ縉7!・]*ニ樅イィ9ン]》n`sョ」ト#シ「MヲヨォMJシ24\7i L8%碌蒐喋嶝i檐オ 亨゚餾徽7\タd酣イサァDV4ワP柿.=Saリノョ3i(ーフW「^!<ィ.ッ4~+,ソ.・.筱6瓧ン_2ク1GスXカ7ナ櫨*サィャハ「AヒミAツ.}ub菖試JIモ記+ント-W_シキmタkvタサRBケ^{X3 YツHケ6窓cム#606レOォネCFoシケtぱxXyP鯤4・イΖX,ヤ't彫c I4r、モォ(3ヨ耐"Bラ*(JテC≫c"T(w'ゥニコ弊ッ晒イ|ム従+;C3ククx゛#3ェテニw/_UeS{饑辞轗痩イ?U。ユ旛ャ=v齲rJ&Toィ .=>「帶2ッ。|儲pl」喘臭iネ<ッy栲Oァ4zDチX=' 蹇jー~ニヒ!Gt{ョ8岔甚幸L儂イ姨2羆オンXーvCチ~eィ EヤX*S z策吼マ゙f酩Pー毫6ク⇒?T;bラォ$儂酲Pーフv Α耘zイ鵯ヤチ橄!逖j臭ウ-ラマャ峩6t腆ェ> endobj 3204 0 obj<> endobj 3206 0 obj<>stream H荻Wロrロネ}ヌWL゙( c賂ッ,ァシオMYL\V"!^栖|}Nマォ6ノテLウァァ}ユmナVGV葡ア緞_pカaEマ >ハV%ッ8モワ僻(カ;」p!J螂罧m棋ナ+y}ヒ8cキラ喬TョfO係gVア゚G鮃姦Y。+k-.衣レ嘘櫺ャセタイ)苧シ・H話鰰)Iソgyヲ4ホy、4」キ梓-n 疝)AS4E\隠宙イ-、5^マ(=20フ<稼h x・郢E、ャウT。R.亰cクyネナォGp/糾-V リ竏モ&RヒL,ヌgソ、V・#ゥ:Hヌサbニッソ7共Bヲpッ菟& zニ2。eハセセイcH!h ニフォイェク$蕩ィuツ?・ォC4ォ壞ヲmvヘDV.xd頴館テvケ~ォfKa鮨u1[|ルエテイ=}gト&K?アナ誼vワャノ戻シ忰R袰椁ァヌモ。Y V辻カMC?7栖!!阪]係 umシI"IQi譟テ例ワォァイカ掴eゥ飛:゙=レ_Gカ_囓lケ^キヘン_リーn a軼、l+!R&bワkk#マ険RUハ2clgーZ椢5;m惨>吾p%ラ$広オ=津 t#・ラッヒェa7ョ))ゥ&溘コtニーr&aキt」ャO販#Uッ擯ァモ柧V0」d_ーUHマ9恚Vサ)ォUイZ霞sn。rヨ妛=矼sΖ 樵dモ率EbqyレアR2履b@sルo孛モ.キlウネ摶゚リモ踝薔ウ]殉hリ2儷カコ弑A"(q{XmテアY=カヤX イノハ森カヤ:ケx|5ホ町 TQ普YZpアL aセチ褝ョ朏[レ*トサゥ?「%5ンカワン5ウゥャ'\)L瀬|$/ゥ、ュwNrナホ;ロャQL廐ヘハァOヤ:サyラォaサ1z<\蝎V"ァむeu゙HnヨミmBヤ|ヒK=$iヲhj o&メd「uQ }H 。ュpタサミクハオツト`>ツOイWsァホcヌュテヤカY\3回ーM琶I==8(メxWカ欒0寳]广xCトqウ゚憫ゥォケィケウウソ夕D}&キナ樟HEhC@ 陝%ェネu徠)^5P ヒケミe-「キスOlwャ.M+N梗K5j詠゙槃rォBkォ08ゥ/BWカ。jハk/#4マ,ェ/謗ゥハ6pvyEニ ニa=Gモ4フ[ロ浸オEf゙#ァユb菴[゚ャ草戸qaセ0}ュ1押)eマ・周48ハRヒ#-FTヲ・@JqZ>蠹ア9ュハャセ+ ェWミX棟Yュ 1H>ヘ Rシ@Qク癘)6sL( 掉ケ粡%シ-Pモ齒セ港4クc゚%レ]タ#イミツトタョル?ウ{ネリソ<0 {キ?5MCオル?6カiソnVMyR4>Ч&;ネミ7 mル矗ソエh帛アNニァWュf鳬+ミY|ソウ3ォ蕭ス F&」アモRiセア1メ %リ嬢b常 チpソUl項#善[ハ擦|eイモ)マ/ jツ ヘ枅7ュョル7婀71C 'fCe|<オ+ ナ。ewo結dLゥケ゚ス)蔵+Wホ3ィワ9pャ?擡ェj゙ハL;ヤ[E<ヨ敦Sー。ILイt<ャ\ゥ曲シ╋萵「カGェ、oォJ[Cq屠gq゙-n*規ェC鵈,ヲZラ*K゚\ Yニ?・h薛Lム集ェ圍スクイ8| sカ脹ェハj_Z」SH A `90!ナ0算湖ァj鮹dクKo T#7ヲ4レzツモニヨqV;&ア w ヲ狄 ホフ~ZF2#`(ルカォヌ{I「l ]マc8チ.K<隠cタsト聲7贄マ幌v8ク銘ルウ゚$ア0p}}3スツ暝@版鏡,泅 t"ユナオU;ソr斉ン8ztぐセウ琉a'{^W淮.ェコ」ェ、ー6ソT5ヒ@L肋]N曚ョ3xf&VC専.」!.'ム成癨)2号槁gm[憎リ「E5ゥァ KD BヘZ5ミ蛋ニP!アANテチ 徠e{FノxM像%vスワ残Hリ攷 W゙Qf塰XF#=3RユタナムミHu乘-ュ(JメC~i婆ヌ0「VEヌ`コ8mUQA」A<サ'ケヲ ホレ祉コ7シレI靜ン=%($GVャ棋;ョh。/Yレth'XキjΜヲ3キャ(X8Kゥケ彫ーァx」MYラレs移克ミ隰lコ?x監FAg」Q迴ョ拡. ! 矧t「ェ/bEg」ツ ベ」貰 KN、3ェ斡ツウウチ L[コBzネゥ酔.エYケサンvケnエッュヨ*W 純ミ=ト\1Ti佚oュサ<+マ%k1Ue>v\nV耳須\サロチイ閥鍔効#0>"餒匪iアr。度A.}之G ヲ!I 薙ク]R!5チ8g‡モモQ3Oサ=Qモjッ6}c繪イノッnuゥ1t X)Y+rヨ恰孰ニ寿EC#ラ :,ヨ謁欒)[[:エ沼イマ%t3ルコ「璋bャoホムヒ 娑TQ鹿!カ(d゙u!ヤョコ/D'4ョ黜ヲ 藹イv0U疵>ホ診dュX苒У7ゥ「z"リ\3Cモワ+ホ([Gd jX朽vMヒF'Jハエ#裹ホA゙ウ シ\ラヲar濠(sc-ーァテx抵カ施狢.*kヌ NXYe] 苒ワy+eЕ汁是Pユセs_:q.-タ#-エキ「^aン-Sム=」リ>兪 ーCホ¥fl)_eルメB; y1ァr+マ やソi=ァV謗ム錮チ/_i +p勇'ミ ァ&ァE片`n・&鬥ルQ4ネゥ pL」ィ糟ケtl6籤/モJ.ァ"_贐Kャ :b嘘cメ$oワチソ^エ「谿j9`[-*ョNぬ 'b社VVッX4Iy牛リbX%裾n゚^LEスPYィ|$ン[ロ除TンC羌羸iク3F甘ナH8コpvナ鬆ゥxヤ}文r・。>M?ヌ 恭。fネW僧2艝=゚}nd5ッネE-9ン85S双ッg槧< M競テC$∈4>mユロ{ ラMlァgヴ,ハサキ}qカ咏ァ埖<フョぴ&'繁Hョ1 wイハI@Z`\イ「杷9X ms痢騨ャ2:>Ny、 趾;1<悸r浸Pヤ滑ェ払. タ2ニ-DYa*sニャ}_マ4\ニ ャ%芻+∫蝗%ヒ瓜tе}WLH嚆VaK5<サ侍S}キナ゙ヲ夛セア/Zノ/ハロ捜ンVヨ=Ez)#鍔#;B.\※アEテ荵(6トや &5],ヲ1ウ錐)\ tミミヤン┐フ\。mhB1オ楳iィチTM ケ#卆5マソWHEカヨョy、ヘZハ幢EM'式ァ/彎 s 艦ツmsfhCuキマ-慇ヌz9)sUaCムCS隰ナkoヤJy縡|ラレセBAゥ+1fキoレ1,HF=維ホHjカ,p裟[<ミcd綾痳Pw Z]仏ィw6オユ-H、-怖Wツ@ヌtTWbjqアmム」Jお營ホlAKムハgロ+79{戚1 ノU゚HhFW+<チソG2ミコ「キレヨ,「ユ1倥)・( オゥf嗄ネjシヲカl粫BT:m怜S ノ:淋カ[bb|マ[経囗巽アステミDゥjY^晁セD幔カ5I[ェBkj@オG i#Zヨヨ姐Cラ 吃ik1EモB,ィ纎J:"ルノfフv:B/fュ ^ヤsZ\RR'ァ栩ャ亂hik0~[zCj6ヤユ{ョ"Tgセ3狽$蔆ュネワヲノ苞ネ,ゥFC椡褝ReOf2ヨウ`睦」Y{佃庭l襁ン%j轎セシ>uッ仭\= ホン^ヲヒモ鯒ォッ_゚}sヒx/gッy./マ゚咾ツcマ蜿モ距O<セ}~xナブ渝ソスキヌァ゚゙a;台G筥ワ葯ソフ^^瑕h靺ホ'g?gソd川囁ゥy<ス苙毋祉>サz$忘ニンyモロサsァ蟾セナ rユサ赳Cfx>魔リ>7ヘ緘ラGェニセj・ォォB%嶂昊=ェヘ慾~u汁 ユ endstream endobj 3207 0 obj<> endobj 3208 0 obj<> endobj 3211 0 obj<> endobj 3212 0 obj<> endobj 3213 0 obj<>stream H岡NュHホP(ネ/ィ0n endstream endobj 3214 0 obj<> endobj 3215 0 obj<> endobj 3216 0 obj<> endobj 3224 0 obj<>stream H延WMo6スWフ!サJ,uモ"カ]$でコ(h况クムGJIIワ_゚劭>,ロサ9E縞73o゙ャイムマ「メ奄ェロ%-JMV゚Gキ+基扁ァ煖ァタ1/Bメuコオ[bッ*D0Eル.z+aァカハネt劼0t` キィソ屡oコzzR[6ラD貂=)Pメ臻ロ"%Fmu褻_0オu1^1ws|@zソ腔・儉=1奢bLチ`=セス[ョ'H゚ォ?N欖゙タ峪ィ$fロトC,ャ#ォヒjタ4C"ロ馴 ヂケ粂0モ2オ82?フ:ッ@有-nハ咎リ蠕 wA貍+リ`芻Vヌ'ヨ;蒂""ツラcケI、テァ ョヘユ#矚Zヲzwミ'痕鐙Bhz分イトXリナ+マwツX4gナコe4^庄シ^Q 4F+Va~/t^・トチ6MrコネユQオD\・79~濛亅YネO}6テ=$tハUe)頂 沼Hv隨7ンフヌFテ=ハス筮Vィム ;A湾マ%`ァ。嬶ヲs]VFルl7閠}Ml4LO問 ン掎ハ猷/ゥQ揶儒g uOケau.w習Ct席V 0f{Bネ}キ=j業Nm/即ォ覊Dュ3U杣fョ゙x=0ムチUvtgト 鵜Sヲ !ヲQ膂=/轉_ム6gレ9」俾=Bセォ吸oHツ;ウ:ア弥俾メュ湍=攵;・。Q8>ケ#'伍殫ヨ"浙ョア彦ミ;0Rァヲタ、ミ2オa=「ェW,+*゙Fkッ湖ケ7$:C/Nzホxl,or/u^VC」ァモ=カUル9y]Е]'4ヘ/J4ルハ贋モ祟也Uusd剿ナマ逆qHkシウ#xs@6コ7@T俑'ァ・゙、dモ4爍斟コワネ>)ソ"ン着モョロイメ勁ルナキナ褄lサ怨0賺歹ェフタネF・zッ姫枠シ{\名ス#ノ $vヒz。*コ鈎ォyサゥ9凩J3rkメチ曜H9C>vシ%タソP(オ兀R馮eoWzDヒ}GヒcC犠紙6モ?条f瓔ョ=$ラRe゙}=ES2サX妃ラEァv{G$Ecキ陀3UЖ矢zメ|ハ/タT反 endstream endobj 3225 0 obj<> endobj 3226 0 obj<> endobj 3227 0 obj<> endobj 3229 0 obj<>stream H王Wロn9}爛3uxgqニ,2サqー是vメウRヒモj'~"孺S[タ<$n槙dユゥロ瘠ヒkホ6Gニ3ナリqS-+ルb9.エ纖烽組ヨxカ?)3%'Σ.w?-^ミ剽ラL0v}nチ3s ボ2ホタソラモgホカl。ュマr#マ愾[/3-ヲkマィ{俄Pnjs*ンンス$ル、ホ愬ラ@1i Whサ]N 土(E曳c3-mf・忙4チ6起`3erヨm7Wャサ]cτYneッ,ヤヨテ達2!,戉ー。Kp:.。$排63#$騏エ蕗$Iッcエ :Iメ\#ヒ忤ネイ。ィJ覃ロ舂憺ヨ$!_W+o]ン-8[m枢ォ少縞T_ユフf゙ |K2ミ)コ\8カレ/.トユ境Uコ|`タ待p弧怡ゥfコ鑠;ヤn%oDfノ3ホ"歔ゥ2゚~*檬.`Y。hハコリUCnト>bイト/サuユニ52鳧ツ稈オャキヒuン<2メ穰エ"ェ-ラォ゚ル豌-ニ)皃哥ー菩ニdヤSェヨレQホヨZノニ<モ\;fュンeキ;lヨMアeMy廚ア 委┌翳Ww"ヤv偉 6イカョ6サzuIaOi5{オ34蛬s゙「ヲ窃.0ー%ノLテ:4ィルヤ゙Ifオ!<ヲ6,スoンsn荼u畫/mh裙ニq・@^?ウCオィ「:ョ幵Pオユ2椌矩頏゚確Qッwャャpfチ奎スlセ~-vロ)君Oal%ウ吝フr([kZッF僅C]「Lヘ ッ怺ノ2cハモ}゚ ェiヲ ZQLヘ-ホQ冱!ラ テB/RケL[qシ洵#Sチ^スdユテカィ櫚gcミw,>6椒C+ル、ホ囘\@~回ャfァm票TyWnBオア寞ォWn桴{5|VD?QsQ{ヤN゚[榔1l。・ニBGヌi /gdヲua枯c゙キP叮鵯膨pー'sヨ!ェヒv`ラ蝪jテnリ|r:t電>e赳z 8-4萎ァホ"贐]Y0K親U6R貭サ仇マ1GヲI||y:ヤゥ舷t]覗>クユEgZ携タ「。ケ&ヒe w=ノ yトL鑛w疵ツe剃エI歸ョノxァ #cgvアl`シ-e;猜、ネ ゚S」}メ]°Qウケ聟/ホ5ヘ;辯%ルニーg(@?゙LC;ホァ乕貂ワナヤハムy $t.ヌ濔fユマ葩(&ー31"gハリ鼎'(-G09黜d」tハl畔'AMヤニテ畊4嬪Pワ"フウホ隨A5ワ尉yoタmvヤTィZヤ%~ソ-剃ワサ癆'ノi.。DKK;b4y0ク ' 認掏,セ<ワ?イK、収Pウォキソソyマォ+J・k碎隣hラEチ麕ミィヤH{U{whJ整謳ニ皺孝ナ・ネ4」ヤe"凛ば廸テ オナnラ瑶;シ5泣酲1贓$ ィM`t6vニ=$5メtルェ.ヨヌ詑zU5E]Qoト; 熔E/@[ゞ ゙8ゥ{ョz0 シ ア6eメウKイラrナc砲匍-蛛:C#ュdv* D悸Cn 滑&= mカィ棺イ鯣kャ5zQ盤アゥ6ト0K侵キLネ9]ネEhス ュタpロ>OO8uワヤn Iヲニ倖6Vpz.a麸ZIN.宛・H 侃、2/粱.efヲ Zヤノ躍 6rX」`麕羇{纖A@Rz+65」縡饉Hd吋JRnj瞻ワ\ 4ュミ膰マ?,`"/BオハCmnイム9w厠A?G.、 ヲネQ/rκI#G;w&ネヲ B/u゙%]孫ホマ>據e%sワ7<oヨ-ヌ匆絲ニ「K咨$1zェcRムQ虫ナホ:RIn$ mゥ7u娑Tフ惇ン*Bン~/N<紛。W56マ9ケ レ5ユ荅bタ(}ykィー長モミム゙3ヲR?モ:ヘァソkj|カ=m*erNー`豈レ 弔ン J!>勅k・ャ経 タュF》qt憙8f曠ト0 マ )ィ<箘 n`N吊嬰鼎だオ;卓怒揄dr;t|゙vt玲鷲v2ンEチセ?オキe"ル湎慶鮫チ[CsU&秩NoヘDイUニタ)\]絛S:$ヶ閲ヌ-S=ナ傴6屐}ySQv考W儘゚hd*オRフWゥウシN0‐ldォッカ_cX゙eン=ヤUyZlAムォML%ロラ舷コc7マ餓ノ杆クネ+ヨナeマサ+w$Tr7ク馮ャェ簍ョRTxKョwxpwヘ狩願簣ウェサD%Fケ_?ツfVG'` +焔蹌u キュow 柁ンコワ1uqィV゙ヒ9:ュ ュ1マテZニ・サロ ,$@ ォー=ヌ3ョU76ャノ」ィッエ 穴萩8梁8}%ヤこVQo Z捷ェUwH遅2椅ィ#イOQテナ:7ム^tリ。3$(VネYン唏 吭ー緑@瘁_モZ箝JgワF^リ粂/ュケイam0xラー餐タYイrリp${、オホMXテターチ 烹Eソ|ワ-ツ6XPKリレヒiタZ:@テ;OH」U:bキh8<レ氾?$楝ユdリョ壜ネx歙1ケ勿>ニーs蝉ー經DNH゙タMV゚岌ト侏星?リdアHz2Vx?レG&ノワG獻較゚ォzAKo輸Z磔ア&Ml0ム袰*畊Vエ<&冊綺 嗟4イvメ魎Cz≪IケZ, (bneHNイknォ゙GCョKホヘmハ7kミ+o妄嫗「{。仄.dZュ蒲mミマ。ワャQwー゚><黝z 犀`゙ wラ5堵=84ロ[~gfイト猖xクテqテ キタ虱尼];rtQ誓ヒスYフ;Vム;ぶ&(藝ネ昶ッ ホャア)ミ∀ャFDdwt'リ1aGz嶬グマ)7イZ"ネx#4Y ェXaL雨7シJク-~!==SSテ゚3 鼈=マ3AサW1j9ホ郎愃柿eワアルQJ(壊ヤ曲ヲケT6#+橇・ン<'ンッ・タ,ムC恚:、m~/}tSm{t+モ:レテ儁ョ泄ョ。ヲネ%キ7イJ∽ォョ槁ァ*Wt8ク、驅ゥ-vkテ>v`Lロl}・オ買Xウ喇3eス設Q痞寶>@k0笑JロC<仔嘗ァ詼s)ァケュ⇔ェホ'Nハヒ荀ムXユ+ヲュチネg蜜ネV芻$桑セyォマテ ト.+jムx沌ユ禧CΧ)=N(v。テヨFQ3 69鼻Sオヲ}ぎゥ=DモVr1苳曠愎ヒm]H0シ^Kl(D4A、K'エゥ+ャ乕D6+モTァbq鯤杯 ?劬ヨ濂ヤVロ`9トシ 袱ユ4キ(覗.6=(ュa9dp_蟆"ォm顋\n5黶コ]ラ8粉IFZC.ワ。散w B衰コ/。スOm[エh5オ8A5({メmイjaruye ケウsレVネサzァcル蕈"孑ッ{<}!6ノス核 F#!9S姿戲猷fOィhIシkUマ枴RX{*睡キゥ)aミヤキQリOヲチicモ怫<ヤォ~メ凡s95カvチR0懦啾ヤ<>lセフソ甃テ%。SwP:=京涸:裙ル+Zサ#fリ燗覧」 サ訌テlqフ endstream endobj 3230 0 obj<> endobj 3231 0 obj<> endobj 3234 0 obj<> endobj 3235 0 obj<> endobj 3236 0 obj<>stream H岡NュHホP(ネ/ィ0n endstream endobj 3237 0 obj<> endobj 3238 0 obj<> endobj 3239 0 obj<> endobj 3244 0 obj<> endobj 3245 0 obj<> endobj 3246 0 obj<>stream H岡NュHホP(ネ/ィ0n endstream endobj 3247 0 obj<> endobj 3248 0 obj<> endobj 3249 0 obj<> endobj 3301 0 obj<>stream H王W[鞘ハ~Gハィ}`"コ}チXy壙ル])':レ!且5ヲ>kl杓TUル塊2cタ]]留セ繼 `値$@テh ~ケ5」ナ頤Bロナ_尅 \ヌ Gpxホ・チOb'仍3|v姆?8"|マ ワhh5?ェWUL@o熹WpTYBェ、)An. <ラ&FjH*鈷A>L繙~oア桜;頑メoYξ@ョラコヤy&SXォ* |ネ7Pフ甦8q1褸7 ]麗キ檳絎^Q 插タヒ丞ンr,トMッォr|タ/゚~マpHef殆,vレnnネナ_G聊ケマォャ|=ヒK0ユシ蚕+w rフゥ゙ミ葡3ッ<}θ\ミ$_+2a+φm" PニVュ97nフvァ ル沸ワJチIノツIq %-u。*:ュナーア枠・トミク(フマ^gレ賠,s{ユ柩 2鄲=ァヌ Qo2館マユ ネ:}!ャネ|歎kオョMョ゚3?諚蠡 JF璃 1x束,4=-ェ2qヘgd罟(f6タハ「ー@{畋4Q悼コノ碼ロセp8J蓼!c!!h4}IY疚|'オ"セlラBk9メB「トョタ@Wd:P ヨTスェ(へネコツマレ チ・麸掛症ウ<ウ朝゙hエo3侘μ ラョ}寥罠-ユ-#ワ`・レV 」蛉.3N0cSSコ& ハマ~リPh角ロa「ハヨ ソッxxン」r' K嘩c茆\・寄kDロ0ェB'竏。響ェオNdチ'柊[$;G+テタ」6 F3D;ゥツ2+鯆Bヤ霤F魎ツ脩ニvZ″ワISイ6Es.?!フヤルcト Piゥ。ノュBテエミ彑C&瘋鷹マツネ4ケ^モフ臥~}占v&qg7ラ\@,&澎 "&ノウbO輾チル4ア.?RmA$@゚r蝶奪U閃ーL強エンFWゥタoQフ)ユUーネ隗9+UaU'<マr*ウD.顴ぢミ蠣Rャケ^NDスj,5 Bウロ=ヌシ E!z鈎甕9 5.V#1B 楹pリス瞎7jMc「甥 wヤ蚣ァRロムマ粮ワ ヘサカ防a|Eィ娯タチ:遭Eホ楢&ニノメy8ツ途 R 素Gユ霍|ヌ馮派Y鼕75yCエヲwKC亰メ鯣杉d恥ハ%ア)シ稙,>N*_-XnLヒ哨薊」~テ筝テ(ス@tサチ諄'Wヒシd空vM"'フJej」Kテ・ィ}1ヒマ5褒ッ嵋錫AT<ネ「[ゥ扠78-Btカ%ォン0h*-シ゚N腱a慣ャ(I蕘ヤfオ崩Q'ヌjmN鐸0ルゥ~G/DンP代yuメX゙隶0豸キ:iス妖ァヨUz。ケァトLAヤO・宋艸。6dN淺扼ラシ6<オUzト*掫&EFェ王&魔ィミ 懐jエノHOラmヨAgN g ハw卯5'RiJエ┠ケ@゚ワ5ヤS84f+ノ ラィn束_42客 BセアヨカEロ:M缸i奘lヌモモタ!ー!>セオ;遞u曇0ケm蕎:L艝芫 /UチS孟豪ヲKhn1XxyCウ ィョz兌"'XI」殆FDクシサ葦ッ)dラQ霪ュ|リ靂s謔*[/o,n-Iィ+ ユサC]q8kt#ハ:'槝糒K膨7ヲgユサホコ.p嗽W#/uBlWgイ_)Jメル雇ヘ6d胝艟洋纃kホ_ノ┠c~8チ3ネ鯒・7ヌー曩vtRKグ:ミ:A;緑ミwヲ+シ 。|聰アjj8ルレ鑒本;再DLH~4リfモ'ヒセL+ *^HロノウオwカオPSl%齋M hウ2タ帚rl逝;ナ写エ%リT隆8!p妓ト」6zK棕ョKス%ハ、ヤdィ侑」ラャA琶悃「Jq& ク^ミD゚`ヤWヌ滬2eCロ#D、ヤg\/j悽jo餾シニ」l詛Xッ ツ ツLcヌ濤孱クェル#巻QuスQW "アェ7 マレu彫 ab範ェセw.ト 2mナ砕_ ヒ得xlケマヘオ焜+ナ サユb祷、-ヌ6兎'ソヲJ棊サ桔4カテ圸uw坿p竓イオE插゙、'フレ^}R`5!rル'NBヤRヒ'碪奈X漉癨掟mチ]ヒ{セoxnホoD:/ヌォZネ卮ミ泄トアwケ >エ3$ウzF<`_)Lウー 62・ヨEYk)ッ|ァ斜」m。レUgH:nE;.イム,tB[jlコOТヨ蒜{+~ォVя ムt^S5fヌ/ワヘ=ヤU愆dョjマ$ヒ U鵄ヨタBヤネÅ煙尅OラYeラ患qルi狭Wタイ endstream endobj 3302 0 obj<> endobj 3303 0 obj<> endobj 3304 0 obj<> endobj 3305 0 obj<> endobj 3307 0 obj<>stream H荻Wロ杓ネ}躙」ニ0鮴_ラc;c]D ト6砦ウ襷「&比Y鉈S}#尢aーIヨヒ)岌rヤォロ5Fサ3ツC霈k KTッ赱ホWク" ALナクDヌ怨PZqキツオカxxQシrG゙ョAh}アタ7=!びム゚{+F{Tpi*-霙BZ演E幼oa、8)觸コo埋Y9トU1ーqE"d鮨スOイ>\メハ |%サ<ァスOイ艾p・撃,メE(Rホ帛qH蹼B-ジッ6蔡Rケy(0レ y'mホ娠9S掬e;沽ァbエ9+rウスxサI2タ=&jf.3(Seus5/CツeJ\aL仆UzIS<ォスヤュ=レ趙n^7!"%戉ヲX=カM跟7UQ蠕キ/V孃uサ/キr^爨ワ渙襴ア:ラサヌ}メEサ$シ槌sヨ麗蚫9オス+・ホユ拊緒モkンO翔トU(HiH 驕<ヨメ_襖塗<ノ!气'I't・C%ォ8聟」B)=」f{エ/ムvソo ヘWエ;ー e纎喧テヘ荳G+]棣隣コ+$・麩モ疳レm/v.繦.1ヲ"ツ晄ョェ#-o辱訐i}ロ,z{w寵核sDTFJヤソャcミワ[鯖/Yイ謂旆6"ノY゚ー8潔キ6sキ跌ヨ怕3Jワクpツァo環E%:]セル 脛h并R泅リ)YH・^Lh~;サキ雫雋=ユ熔゚a?治FヒlU)シ\U 槌hア>jタpカサk[C讐ク;) KUB、鍾{rWIFB。TワH* ォ飛コM i~ヰ。.飭V*o 播ムンヤ\譲カ}カDQSQホ癰ト俘$。|潭廢82ェミLCス。/ォキwソワ 颶寄pI鉾ィヘ%スォ龕H?リ= hmネ圦シト)$!ツM避fヲLf(ィヒb!ht フ@Xラョ&u~ヒQヘセFキnOヘ・=イシfム」綢,ムcb.z

志S_ R7%ユトィユヌSマ゙v|u゙7) 4*モEノu>Kホクb ェヒ ヒ抽JモmS浸Pココ8ъ1オ`6惨エL騫R[ィゥG|XYョHミ豎灘Lc0、R壇q,} |=サ楚ャ;辰ユp7齡ノ;2&1N?」ンノd袴LシuFiJK+(゚,z.h嚴「キdユ巡tケ\f ヲッ!'1菩ヤQ慳A肇<陳位PR()禮|藉>eWe江R=@ゥd>fミャタ 、ヘチ橘、y  カ派Yレヲj/ム-ワトD屈・t、K*B'ンサP煎ラカゥ遑圈ヤ餘x\ク ミソアN;iNZカ$サ=_ロ6wヘナカ坤1X覗キn岫ヒウZロ{スウィC1 bハランカZラpN1&6-FスG16コ`貫メu テM/y"fA艱L%u& !カqyツスキ閤ィ/モチ 4レリゞ\ 'Rカ ナ #k6垂。sメケ゚E ハ广儡侈69アハ晴=、ay マエ瑯hノAIマ蓋J 崩鶸ル-V<却f|ゥ2#x8.= iァ0枉アa#cア}コ痊d碼us」熄?BンwQ舟XU}」臾0誅タ\ 4ソチhフaJ悒%嗣貲^椋・o@ェシGa ロG%痳HK・翅テ給2ウZWerc6ハ錦煕A6H*アbキ濠゙,B`驀$qイH9歸@イタ~8鯀ユY、gカK;Xウリoz 恭セ黒斬r<9ヒ襴゚OvF=0セクV 絽" スgマスシUヌレ/ャagzォ/f。,T %,、/。fォォォノゥ$クノオ@ータニF"メ,ォツfユ ズ T甬\フォ慕5┯9TV#aE,Nヨ "ソをRゥツ个*?ァA  >uツGテ8!Wー_IモYK訥ワノ]ゃリ渺y ヌノ涼ナ靤゙ンw8&3卵。H}マp ヌノW ニA門耐彌]F摸ァC24サc;チ゚ヌgスu)8絡gイd\駛iネ菩9載沌lY}コアgー衍職ギVC スI ナ~%XテCX;壅%Uキp:ウ」抂サ舁wラヨo ラtQ(r尋oS3厰x楴論)椎*場RフjlEリ`sキ蠹kT!ル.1厶ァヌミY2 `8エ endstream endobj 3308 0 obj<> endobj 3309 0 obj<> endobj 3312 0 obj<> endobj 3313 0 obj<> endobj 3314 0 obj<>stream H岡NュHホP(ネ/ィ0n endstream endobj 3315 0 obj<> endobj 3316 0 obj<> endobj 3317 0 obj<> endobj 3348 0 obj<> endobj 3349 0 obj<> endobj 3350 0 obj<>stream H岡NュHホP(ネ/ィ0n endstream endobj 3351 0 obj<> endobj 3352 0 obj<> endobj 3353 0 obj<> endobj 3396 0 obj<>stream H荻Wロrロ8}ラW濛ァJ゙X>*&N通Xレ撓-UmA$$3ヲ/カ4_?ンンhK匂CI!ンァO>xw;ウIRJHJ22シ?ョチ珎マ擶カeロカK ア-ミ偉汢Mネ^カ゚?瞻シ"ア殞ム煥ミァトw"ヒB鯵 ゚-。ョEn赱)ヤ懌;ニvュリq0f:゙ュHタノツqワ{゙d゚「!eホ ノ#K遍$y猖#OG、.y蝶CCシタ0゙XS玉yカノ囹lリ鴫イフw、カ-pdナメャノDチrrw?鯆qィJW> (*[カh 1XCv「舞S楔Ic皚モ9KマKd,F>GB巡柎)抱}ハテsL O貫ィq4蹣=qHkナォ雁5aEJヲフナ燦荳税0+直Mウbン貧ロ KLUtナ! ~vニ。e、ニp1\ツッ 椢&Pヲ>'bサ)yQ3&6|eG(mマ%A鐚ヤ|牙ァヒX}ヒ」*}.ノ稠1、a`ロ1゚ワ肴庭j!ー_TkVd狂ネ+Oメmン培ャD]峠穩イBメgQm 菰lx「nェ6Qン]炎鑛HDンッア敢絡YW「-ヌ 6釖劃巒 ' セ=て'Ac\Aオd燔-nハw ハ<ノン鯡ン1メ{゙枅 ォxZ<腟hFOフタ粧゙毅t#mx4V「錵 モ ミ從QJ%t+_9勞弾ゥ[ソ」!ニ1ヲ猾巽*3テ8GM5リpRヌ}・vc,=ィソ恰ルJ鵺:V] %9?フ:VKスs+ハケリag[mュgタ?ル゚ニ灼キ` sホ.ルqVZ3Olj ^@ホ:i @e振膨{タaV'ャノ7mF癈x襦゚ キO淫タ箏ヌ }Uサ絋]=eリ&:Tカ名+pヤ」lオミ態 ュリネ#カA痙f4[9$ヌ<&,z訪嵜臾`P使長/辣ホ 剽0ウCホCネAP滷チネ-ッ・饒Kムv?苦マU揮唳タルオi・{6慳p7Yメ谺弟キネ=ハウTCゴ/C#3XQエPヤ' &I駻`以Lユ?モマ`ホョuナモhネ-mrャリ 萠u]X|4HxンQwケサSc9ユcッゥ燧RAGロアヒ Gァ,胼++Zミ酋%6dノタ兜タrAkp`Lマ4虱!イタ.88蜍?`筥(ミ?I露7モ掛儁ー螂ィ`3ヲッQ沂憧E>hmu[,忌x゙昃^2`゚゚bR,iョレ5ゥナセヌv$_ワXvdv+ソ[4^|ク{ΣアJsNタkェ6ゥ翹ォ.マテノ袤輅カ!:ォノa$#マ/埆ク3wユd抽RV、・鈑|,;HXoVヤd蕷ヒア.ヲU6ツUu88ィ{`Q9o:En<"ソndォ 22)Oユヨッヘリ#潸;cウ瑞{MリFエ較ノ9Q(テ2可aス0ヤュW゚J^歔ルB&phレFア鵲<ネイテZリオャYシbyh][$洌蛭カ l椎ヘ錵ルGxホ栽+vキヒ`ン]ツョS欅懷ヘ1ワ5$ ネ:゙+cミタadJモ%コGBvq2ソムハ 業セイsソ^ッヌ。)_「,チv浜ァn2jラ椪+ャL`0愧CIi'ナ7,ヒb:娃iミ:l ハッ`珞。薦]Gモ`シセ禧ナ3ムD NナfミS,ラ゙ラノ#藷*ワH匍簫@」-ユ 牽Y・}4ZョW3ラvY{%u2゚C埃シ躋l遜襯獻コ]~Gテ ウト 。4ヘ0.ネc$]w匚5ト>Q1フ\5トハ Dov#シ鷏菘ルqネ1哭ョ$:/テォ:[Sr/`_]ミミ6コ>v2サ゚ィ2枴マヒd鵯ツナソuハー0gw1\蓆ルQOメェ+Umi宛フョo陦ア?ソT峪ィYヘ-i喞メOシq重 テシ2Xg?メ アM捜6宀Kウ\ endstream endobj 3397 0 obj<> endobj 3398 0 obj<> endobj 3399 0 obj<> endobj 3400 0 obj<> endobj 3402 0 obj<>stream H荻WY象F~ラッ鍜M`ム}イル笑元#v粂XアG皷丼('ソ~ォ 嵒0ネ"q8・:セェ襄囃厰Lr゙卦dアx/~^HM3ハQフd「ネノa$a徃メニ2」Hm?,^笶ラkツY_ソ[Pス 巡Q鳳|Lノ,dn2暎哈 exヲ鎹「ユ弧。  )崩N{Vgハ糢 ク[jミ暢%NK「孟ケ{ソモ薗NG<3=(騁比颯I「|Mtメ蝕o5ヘエム姓2Nエニ*JP孳タクYシワーPH諧Aノf ゙<ツ?ds、DQMフh4| %/Z ツ析aアdW?ッ7ムト猥&n諳Jュ瑚kマK=ヤヤホ0フ K僉梁Pmクウ=| S Cbオニj妛カ{lミ ワ握猗崘a_ロ゚ィト゚tニ5セキ[,7_ェzキz(謇(i|鼠~X,マユ+y(渕ャ錯緩LP=ヲl.ヘゥT9GUシナァ'kァa竊 嬬67ャMP ー.x7。e9ハ。0ミm+ー疝キ亮ぼZ>i瘁・3・b1PC$MネCEメ曼ニヒA滾枯ラキ J闌篠fェタマミ,ケス!ヌヒ睾ヨマBYATタ>n2檢{、kb=崙廬Jサタッ$,&ノク辮jナTンW[歔エ|}モUソン臻8\「苹V"ヲ釣「:m、o,ィュマ嗅yアァ潼J)[ツヘL&ZP妣゚(h+ 晢 Lエ蕭ab答祝ヤUhptlモ>ノk=>カQ2=。ヲ「チキアカl?ニdZ尚ェ>7n虻8Vヌェ?]ュxチ型セ;{)尋鞆8マW7o\喪゚%@ト(aE剃 Kq&ヨタフpXョクハ 「b t [d9!crリZィニ)Hニy- y,エ┼ヌミ|サイU&+9櫞ー' tb/リe滸ネ>hッ所Y榔P#qヤi天dHb3テソSオ奨Uo゙錚{h燬DシAヨョYu#!:劣ツлチユハ$|Fネ姉トiユ 犯枚VrQ鴛4モV>ヲテム6ロ,ゥoク笥s擧cVA婉Tア?オルccチB 醍P $J61'薯iセAE 鋼ヲpOw1ヒ*cXャョ \槓 タGtェッVB雜ヒgョニ沱[zz:s芫P1R。sェマワX蒿Hチネ髷@iタ6cヒ・~ツァo渚ュ証n`。燬=^,ケク\ロ[オオュ)c=;ユT糜ト  シ9ト7#DvLノツ xdKモQp13ヤ$岌セ ム リ#NN缸=レェi逡.nk況snヒ+t躊MN゚ 耜'ナ{P0ラ4;@Qシ^レク ヘ%υBン/クxタン雅レ益薗オ6*歌0ソ釛ヌメi*ラ>A { ソオフtニH頌ーヒォv[棚:XH0nb)魃近F8フ\D&5y@諛+I厘\モワ\i羹nm頒 8磔Oラ3メ]By3ヲ<烙ンケsuュ墜ノB8$n 島Jホo"ヒ夫痳H郤S湖nSレL0fdニ x/ヒ淪タモヲモpハ靼レS 浴(ル/ヘト$u「、晝QK゚@ァ{ォ穂fィ」椚6滷`マn}茂D員u@:ムィFN(チB゙降イ如ネル]Qキ0OKン0{xxニV嫌ハVソ=oォsリk囹ФョOSツ0鑠199#V6r X,ebタ ヘ<ab窒, ヌ径嘯ニVR錬 ャ30`Bネ5,Mケi%$ム18DR/8tカ}チa2ィ伉謡痔0メDe 43ソン擯}チa*ワ!$政`IXァ2$:ュ%}チ。スカU}>x%ヲィケbH*」$髟挨~ッsトモ7ッIXvu祭リuーン゚m タ。ケヨ1X:ヘ`K\クp)ン$y_W゚ハyオm[x_>リT%ソレ擧j騨アッ襦};0髣Y<ヤ毳Aホタ゚保ッネ=マヲB).kュ Mwロr氤モUQオ:G唇顔モカz>ロ・vヒ蚪7^Xサウ<02ヨソスツu[畄(チ9 ヲ跋Xp`cュ`キ>ノ>Uサ命#aナ)嘔、 ォc9タカイ(ル$丑ョR 9t7w:ノa_ャjZ*霆ーnタ痞褊褐0ィシ\Q ヨ08冓ツ;$I'タ] endstream endobj 3403 0 obj<> endobj 3404 0 obj<> endobj 3406 0 obj<>stream H榎Wロrロ8}ラW獏ウ%ムシ韭7[Nf擡dシ霧セ]oセ鍄~ネヨ1テモd>a[羃Oソソヨ孫 7マc゚繹ヘヲセ7-`$ワ}ネiqJルk*クKQ官a8eヘ8:#輾Jn゙ アナ4エVヒュ嫌フキハx)亨蕋$"aeチRー醸朕州&5ケ&/~`ッ7 <<=騨俳Rc3-\q憚ナwa・,S }ニ^r]ェ*&w埣3]cpG~エqトソ#QT,9+T"+&昴xモナ4Y佇OI_販テ跏 +i* Fs゚ュ}ssv^zg゚飢4扨ソメFチS]ーncュR庇`愕ルdq復ュ*2/リヒロ茅トFKd流.d ijHgf1ワ扼'O*乾WB゚クルウ」ケ73ヌ+チTB{ャ鋤ゥo`:&チリケXゥ\=[)4{イ衵ワ4$Lミ%ヲィア`シZニーイケPネ儚臥WgCタワkP46律cS\@|f嬢$ヒスキZ=イ {ナF發cpエW脉ホr4yョ3Y摩Hアe|':Pテ{ヘーU4f"/駄'qjネ莓掾-.R略ネ%a<4チ'丙シ-a語2アマ\ナヒエ\Uw6k0a萃Fウホィァc/ェ $b^>uJェヨネホ@ョ)例詞&ア譲2CsiP"/J{桔llカル,?Y8(凖タ zxF%OWプ%カ惻。リ:>IkN|コwPV]7ケ8y2サ叟Zリァヨq0贄ツe牟R ェ)]淋畸l1杙垪sM>/!テホァ#吶qフ1mdォ#yーカdコ フ楞佩щカ ゥ}-WヤセVヒ/β[ケ z毳ニ ゚タ餔マ,aオ鎬I澳 「pM;洟ψ濱73 &゙粕覿ノ#消ク4wx%ワ 攷夏jィ}Nニ筥^袖頗コヤソ#鋺{Y」f#B田ロォロ褞ソ涌モクぐUル ュEK^ E= ヤマ!ォ)?厂栴鄲_b5クィ2 CEン゚カrW) 頂Hゥ讓捗=ク@蹂少ヘ\(ST綛繭)アォRn;。U謇.クノヨ鵁ノI呰Rァs1ンャ袿7ァォ"椋9「ェ,マカ賄Jナュ25hK.4]ヌ9ハト━ェエ k」5=^ホKUワ軍e|テヒマ/N1UフHリQ灑ツL-・フX連ラHロノfニムrモユ譖ゥWaAム買(JエGモH" ]ム廢。7 -&i「(鬧ヒNメヘフ5^=Lョヤケモ コ拜F^qソ6hc'tk,Wーィチ5fゥ)?ネS匆゚>?ネ9+u%リ=}ノGハ(ィD)姿J闇$ー\タ孟|1リe.茸>(9Zサfi;ワト(負ナリ ォタ#HKミ冨レEPクト?棔ル-ョ幵v廟囘HワツスJPホイニ>_Tユn肋ラ双-ニy:、 5仟ク」[*E蓴3.w^ヲ ィ 嘘-M嵜コ\?ヌ+。諮`*ェァ4vテハNミヤ稘オテモ\*`ゥタI・騅禍アメヌワリ[ 肝トN[ヌ-賄苦レトCL篏チ8ィ?モQ彫。7ヲケ'.J="萌ハwO( \ G)6往1>ャ1牝 カ7IユD導ムe曹,メ`゚ 5、=タjセラテ笵.K=ヌエハルG噪4ヘ苛E9LタE賭辺bナ削中B3コ法`ロトoメ/J 苺メ闔藾" カIDヤCBP#AwIrgnmマミnY・タFチリ残p|cセKMF"U。、ホnirg ヨ(価iレV餌8フtTG-ワ|ツTm' ッ94тホエ鍮*ワ/*ョ2$wA)ノ5脳単ユセh塔ヤチ):M"ミ窪 貍c^嶼[」[uツ 蛹゚aタ廢>C↑ェWヲG&qAサ芳^4:ブユrkb慚ロクムj ソ\Q06サ.ナホ堡セGィ vF々ニミ/モB6イ6キ<ニ錬逃ホエ+n拉」絢レ5DトRo|ホnオ$h(メ(v*ェ4。 aマX[愎猝ョ4ンiwテm5'E給モュ^ロqB桁tzUコスNf ォZ+惑可f+pj矣aa此ユWGユカツ%PハイイSチj蛩l4モ!{{゚ョ$|^b]ナv籖Kヤタ%ト韵ラKメsヘ戚NXア゚6E」Q鑰チb0諡zラ リ9゙h!Oエ<ンY%オ蚣8ヒ-v!幡07vマ+ミトナ羲ルKw!ltuソサ endstream endobj 3407 0 obj<> endobj 3408 0 obj<> endobj 3411 0 obj<>/Font<>/ProcSet[/PDF/Text]/Properties<>/ExtGState<>>>/Type/Page>> endobj 3412 0 obj<> endobj 3413 0 obj<> endobj 3414 0 obj<>/PageElement<>>>/Name(HeaderFooter)/Type/OCG>> endobj 3415 0 obj<> endobj 3416 0 obj<> endobj 3417 0 obj<> endobj 3418 0 obj<> endobj 3419 0 obj<> endobj 3420 0 obj<> endobj 3421 0 obj[/ICCBased 3422 0 R] endobj 3422 0 obj<>stream H奥幌TSwヌoノ梵焚テc [ー5laQIBHリADED━2ヨmtFOE.ョcュヨ}メ08エラ持8G扼gヲモ9wン゚ス暎'・ェオユ0 斎マJ固b、  2yュ.-;!熬ニKーZワ 京^進ス"Lハタ0-ラ @8(鳩r;qョェ7鎰忱・&Qqカ4アj椰轎9レト 昂ウ)g截」0i弩ラ8#ゥ8wユゥ峯8_ナル・ハィQ腋ワォQハj@&サA)/ヌルgコ>'Kネtユ;\ モ・$ユコFスZUnタワ(4T%)ォ0C&ッ秘丶Z」妬仭8ヲレbx巣E。チチBム;ッ崛Pヺホモ椴ケ暸 om?躙= xッヘキカメ-険タ觴嵳0セセホ}ヲy)7taセセ>j・ワヌTミ7ソ@シマヌtワ幵`qハ2匈ハ呟&ッョェ6アZ扠ョト?秬yxg)ヒ配・省テァLュU硼ヨ*ヤuオSkSeリO4?ラククcッッリー.キ 袵Rエ ゚∇-葡25゚矗ワマ S>モ」Vュ嚥電藾r」セn~マY&+`怐;ツA4ノ 艢ーネA9ミ=ィ-tーlテ`;サチ~p激消 Gp| ョー`Lョ`<ッ "A YA+Cb(括R。,ィ*ゝ2B-ミ ィ鼇。ミn顆ミQtコ}MA0モalサチセー氏Sx ャL&ク^チ」>0|>_'瘍,ツG!"F$H:R!z、颶漸d?r 9欺A&賎ネ 蝿rQ 「疉嚥ハムエEム]鐶4z截gミラチ籾E#H *B=。0HリIpp0MxJ$D1魯, V實ストュトト翔KトサトY嬰E"E脊I2秩ヤEレBレG荊4MzNヲネr!YK 締?%_&゚#ソ「ー(ョ0J:EAi、Qニ(ヌ()モ埜T6U@頃覬+ィヤ!黯麥肴D ・eメヤエ蟠!レh渾ヲh/コ']B/「鴉メ蒋ソ「?a0n敬F!テタXヌリヘ8ナ夾ワ渓訥&5S亰剄6サl露aコ2c婁儁フA!襴#衄腸dャVヨ(k模e筋駘 サ凌}枝櫃篋q9 N'ホ)ホ].ツu覊クr  w哦 xR^ッ[゙oニ彡h枷゙`>b懐$盻・*~ :・戲桁メb最~桐マ,m,」-楓ン,ッYセエツャ箝*ュ6X梗ンアFュ=ュ3ュュキY浤~dテウ キ苔tロエケi ロzレfル6ロ~`{チvヨボ.ムNgキナ庇#{セ}エ}ァクjマ鎌c1X6敞fm克;'_9 徨:8ンqヲ:享ヒ廾:マク8ク、ケエクuケ飩qサ冥nv=フM燒カハmワセタR 4 nサ3ワ」ワkワGンッz=ト[=セ=<ヒ=GTB(ノ/ルS,]6*-楓セW:#諒7ヒ*「ハeソ^YDYル}Uj」鵞yT`#オD=ャカ"ゥb{ナウハハ+ャハッ:!kJ4Gオm・tオ}uC%摎ョK7YVウゥfF泙゚Y ユ.ゥ=b珮?S乞ニ僻ゥコネコ村鋏yリ レ 込耕5%4ヲm7殕qlio兒ウlG+ヤZレzイヘケュウmzy糘]ヤハ?uuw|ソ"ナアNサホ蝮wW&ョワロeヨ・コア*|ユユ鑠皷5kカャyンュ「ヌッgー辯^ykEkヨクョlンD_p゚カトレラ7Dmリユマoソサ1m聶l{瓔Mナ嶄 n゚Lンlワ<9琵O、[从$剞咨喇墸妝岷怏戈拇旆曄椣沂滯iリ。G。カ「&「魅」v」讀V、ヌ・8・ゥヲヲ協ァnァ爲Rィトゥ7ゥゥェェ将ォuォ鬯\ャミュDュクョ-ョ。ッッ恐ーuーア`アヨイKイツウ8ウョエ%エ愀オ憾カyカキhキ犧YクムケJケツコ;コオサ.サァシ!シ嵜ス樟 セ╂ソzソタpタチgチ翊_ツロテXテヤトQトホナKナネニFニテヌAヌソネ=ネシノ:ノケハ8ハキヒ6ヒカフ5フオヘ5ヘオホ6ホカマ7マクミ9ミコム<ムセメ?メチモDモニヤIヤヒユNユムヨUヨリラ\ラ獵dリ鞁lルレvレロワワ岸ン尤゙「゚)゚ッ6狄瓮睥禊籟緜肭舖蕈蜆 譁遨2霈颶鰔鷦褄p懣(エ@フX褥r候ァ4ツP゙m旗ィ8ヌW鍄w)コKワm endstream endobj 3423 0 obj<>stream H鉛WMo紮スWヤaアHQォ?ル `;毒厳ネ.29p$レf IナQ~}^7%冤卒r(ェセサユナ'ナヌサ?ァ~ク伺興{Nォ^q「fUホxシlfキヒルbケ蓼0羔\Aj礒猶/ェ&癢KヵI:ノLB鋭エ|栲C゚.淇_ボ^_#ヌH軆 フョ6L9'aレ&結4Mc峺ヘヒカィハヲ\ノ」+d6著P'G瓷Hノ4ツ曝%bj8Kc~z~∝ホ$。ムヨフX郤d飽ECUントSヒ "bq*唏ミ9ニュメ*ワヨユナ:_{綉皮.、ウLュ]、咬メfレ麥ユ U蘿マ稲ェ柤BY|5Yi'sU憖ユ,oキyV7< f些i、イ~GMョ飜$アlアノjj+j殲ェ稘(N7餃L3.Q筋1テG=フ:ヤ3CンU瘠Ye凝~莇ム,≧卦Qロ]K寒コQ舜緤|GE$閊fナヲ檻゚zニ榁ーネSネ。゚6彌\]ュ,峭3倦Mカス爛}9<エCフタ" 塒トKシEYツi2ム タヒォ] 罔エユ6ヘb1タL龕監ン9_%。`ャ%4統隊<3!8N%カヲБw借Iシr!ホ7閣朿 オ蝗|ユヨUYナf+晶渠イ咒 9}意タム;DョrG?鼡-ヤ?夊品フ~鞏1゙補vS.灌mUキ~ ~(峺゙ュコ7~C」オ喝"クヨ&2vFィRtdb ミ潁10ノT} 鰭彿P1栲。ルc#)ナpa繪 ロセヌキマコ繙4xョチaVアfiUNcカ刄|泰M(杉0桝i n`%蹣d護|`米3FFイ俎闌)T_&レレHa櫛夏ヤ5JLミ ロeトX-コQ肖ニ|ネCzHx炸NbURヨP<;G3+ー."ア=e屹ョッGwゥ/煌%a -UクTャェm7 4嶷wハd1/pヲキYJ、_XRwaヤエゥX。%ヒクZ~xwヲ風m蛇「コk罩ル8It嚼^P羸レユ班ヘ j&0T ィ#゚ミセ|AサpB*レ絽ヲ黥~ユーノr殯*L偸ミGク!vCBャ`ハs籾QLテメ┏ーホ,>ヤァタHヨ/ 4ィ-Wセモ&D"カ/"ョエ,┷サア燕ニ.ヌsルリエワノT<ワー蛛哘ヌIcxr走I~ュ1哲rq:#ナユp扎5熔ト'ッカK嫁5 {麕{礫ハXセ7` ルェf練mN軌ルcQナN菌ロ鶲ユ緲ェモヨ_襦、N9w由mqモカル)_モッ菌ェmォg8k?゚B4t齦nOァ^ネ3GムMワ/"1ッ=オ5j セォIZ`ン^。k-タA%Hンy$~[Y09ァSロSヲkヤ ヲ pレSロf錠煦テヌ゚ レノニ endstream endobj 3424 0 obj[3427 0 R 3425 0 R] endobj 3425 0 obj<>/A 3426 0 R/H/I/StructParent 2/Border[0 0 0]/Type/Annot>> endobj 3426 0 obj<> endobj 3427 0 obj<>/A 3428 0 R/H/I/StructParent 1/Border[0 0 0]/Type/Annot>> endobj 3428 0 obj<> endobj 3429 0 obj<> endobj 3430 0 obj<> endobj 3434 0 obj<> endobj 3438 0 obj<> endobj 3439 0 obj<> endobj 3441 0 obj<> endobj 3443 0 obj<> endobj 3446 0 obj<> endobj 3448 0 obj<> endobj 3450 0 obj<> endobj 3453 0 obj<> endobj 3457 0 obj<> endobj 3459 0 obj<> endobj 3461 0 obj<> endobj 3463 0 obj<> endobj 3467 0 obj<> endobj 3469 0 obj<> endobj 3471 0 obj<> endobj 3473 0 obj<> endobj 3482 0 obj<> endobj 3483 0 obj<> endobj 3484 0 obj<> endobj 3486 0 obj<>stream Acrobat Distiller 7.0.5 (Windows) 2007-01-12T13:59:13-05:00 OneForm Designer Plus 2007-01-12T17:21:38-05:00 2007-01-12T17:21:38-05:00 application/pdf 2007 Form W-2 SE:W:CAR:MP Wage and Tax Statement uuid:622d762b-8a27-483e-bb39-b227f66b8177 uuid:772f3c0a-49e7-41a6-b69e-50e85fd3f009 endstream endobj xref 0 3490 0000000002 65535 f 0000001327 00000 n 0000000003 00000 f 0000000005 00000 f 0000001660 00000 n 0000000006 00000 f 0000000008 00000 f 0000002005 00000 n 0000000009 00000 f 0000000011 00000 f 0000002302 00000 n 0000000012 00000 f 0000000014 00000 f 0000002648 00000 n 0000000015 00000 f 0000000017 00000 f 0000002946 00000 n 0000000018 00000 f 0000000020 00000 f 0000003280 00000 n 0000000021 00000 f 0000000023 00000 f 0000003578 00000 n 0000000024 00000 f 0000000026 00000 f 0000003912 00000 n 0000000027 00000 f 0000000028 00000 f 0000000029 00000 f 0000000033 00000 f 0000004210 00000 n 0000007382 00000 n 0000007762 00000 n 0000000034 00000 f 0000000035 00000 f 0000000036 00000 f 0000000037 00000 f 0000000038 00000 f 0000000039 00000 f 0000000040 00000 f 0000000041 00000 f 0000000042 00000 f 0000000043 00000 f 0000000044 00000 f 0000000045 00000 f 0000000046 00000 f 0000000047 00000 f 0000000048 00000 f 0000000049 00000 f 0000000050 00000 f 0000000051 00000 f 0000000052 00000 f 0000000053 00000 f 0000000054 00000 f 0000000055 00000 f 0000000059 00000 f 0000008244 00000 n 0000008279 00000 n 0000008303 00000 n 0000000071 00000 f 0000008367 00000 n 0000008414 00000 n 0000008477 00000 n 0000008507 00000 n 0000008557 00000 n 0000008598 00000 n 0000008642 00000 n 0000008663 00000 n 0000008730 00000 n 0000008763 00000 n 0000008819 00000 n 0000000074 00000 f 0000009060 00000 n 0000009260 00000 n 0000000080 00000 f 0000009617 00000 n 0000010154 00000 n 0000010713 00000 n 0000010767 00000 n 0000011220 00000 n 0000000081 00000 f 0000000082 00000 f 0000000085 00000 f 0000011738 00000 n 0000012123 00000 n 0000000096 00000 f 0000012400 00000 n 0000012856 00000 n 0000013114 00000 n 0000013299 00000 n 0000013355 00000 n 0000013648 00000 n 0000013904 00000 n 0000014406 00000 n 0000014624 00000 n 0000014922 00000 n 0000000097 00000 f 0000000099 00000 f 0000014993 00000 n 0000000100 00000 f 0000000101 00000 f 0000000112 00000 f 0000015154 00000 n 0000015735 00000 n 0000020001 00000 n 0000024765 00000 n 0000026582 00000 n 0000028909 00000 n 0000029463 00000 n 0000030321 00000 n 0000030632 00000 n 0000030842 00000 n 0000000116 00000 f 0000030899 00000 n 0000030936 00000 n 0000030968 00000 n 0000000117 00000 f 0000000118 00000 f 0000000119 00000 f 0000000120 00000 f 0000000121 00000 f 0000000122 00000 f 0000000123 00000 f 0000000124 00000 f 0000000125 00000 f 0000000126 00000 f 0000000127 00000 f 0000000128 00000 f 0000000129 00000 f 0000000130 00000 f 0000000131 00000 f 0000000132 00000 f 0000000133 00000 f 0000000134 00000 f 0000000135 00000 f 0000000136 00000 f 0000000137 00000 f 0000000138 00000 f 0000000139 00000 f 0000000140 00000 f 0000000141 00000 f 0000000142 00000 f 0000000143 00000 f 0000000144 00000 f 0000000145 00000 f 0000000146 00000 f 0000000147 00000 f 0000000148 00000 f 0000000149 00000 f 0000000150 00000 f 0000000151 00000 f 0000000152 00000 f 0000000153 00000 f 0000000154 00000 f 0000000155 00000 f 0000000156 00000 f 0000000157 00000 f 0000000158 00000 f 0000000159 00000 f 0000000160 00000 f 0000000161 00000 f 0000000162 00000 f 0000000163 00000 f 0000000164 00000 f 0000000165 00000 f 0000000166 00000 f 0000000167 00000 f 0000000168 00000 f 0000000169 00000 f 0000000170 00000 f 0000000171 00000 f 0000000172 00000 f 0000000173 00000 f 0000000174 00000 f 0000000175 00000 f 0000000176 00000 f 0000000177 00000 f 0000000178 00000 f 0000000179 00000 f 0000000180 00000 f 0000000181 00000 f 0000000182 00000 f 0000000183 00000 f 0000000184 00000 f 0000000185 00000 f 0000000186 00000 f 0000000187 00000 f 0000000188 00000 f 0000000189 00000 f 0000000190 00000 f 0000000191 00000 f 0000000192 00000 f 0000000193 00000 f 0000000194 00000 f 0000000195 00000 f 0000000196 00000 f 0000000197 00000 f 0000000198 00000 f 0000000199 00000 f 0000000200 00000 f 0000000201 00000 f 0000000202 00000 f 0000000203 00000 f 0000000204 00000 f 0000000205 00000 f 0000000206 00000 f 0000000207 00000 f 0000000208 00000 f 0000000209 00000 f 0000000210 00000 f 0000000211 00000 f 0000000212 00000 f 0000000213 00000 f 0000000214 00000 f 0000000215 00000 f 0000000216 00000 f 0000000217 00000 f 0000000218 00000 f 0000000219 00000 f 0000000220 00000 f 0000000221 00000 f 0000000222 00000 f 0000000223 00000 f 0000000224 00000 f 0000000225 00000 f 0000000226 00000 f 0000000227 00000 f 0000000228 00000 f 0000000229 00000 f 0000000230 00000 f 0000000231 00000 f 0000000232 00000 f 0000000233 00000 f 0000000234 00000 f 0000000235 00000 f 0000000236 00000 f 0000000237 00000 f 0000000238 00000 f 0000000239 00000 f 0000000240 00000 f 0000000241 00000 f 0000000242 00000 f 0000000243 00000 f 0000000244 00000 f 0000000245 00000 f 0000000246 00000 f 0000000247 00000 f 0000000248 00000 f 0000000249 00000 f 0000000250 00000 f 0000000251 00000 f 0000000252 00000 f 0000000253 00000 f 0000000254 00000 f 0000000255 00000 f 0000000256 00000 f 0000000257 00000 f 0000000258 00000 f 0000000259 00000 f 0000000260 00000 f 0000000261 00000 f 0000000262 00000 f 0000000263 00000 f 0000000264 00000 f 0000000265 00000 f 0000000266 00000 f 0000000267 00000 f 0000000268 00000 f 0000000269 00000 f 0000000270 00000 f 0000000271 00000 f 0000000272 00000 f 0000000273 00000 f 0000000274 00000 f 0000000275 00000 f 0000000276 00000 f 0000000277 00000 f 0000000278 00000 f 0000000279 00000 f 0000000280 00000 f 0000000281 00000 f 0000000282 00000 f 0000000283 00000 f 0000000284 00000 f 0000000285 00000 f 0000000286 00000 f 0000000287 00000 f 0000000288 00000 f 0000000289 00000 f 0000000290 00000 f 0000000291 00000 f 0000000292 00000 f 0000000293 00000 f 0000000294 00000 f 0000000295 00000 f 0000000296 00000 f 0000000297 00000 f 0000000298 00000 f 0000000299 00000 f 0000000300 00000 f 0000000301 00000 f 0000000302 00000 f 0000000303 00000 f 0000000304 00000 f 0000000305 00000 f 0000000306 00000 f 0000000307 00000 f 0000000308 00000 f 0000000309 00000 f 0000000310 00000 f 0000000311 00000 f 0000000312 00000 f 0000000313 00000 f 0000000314 00000 f 0000000315 00000 f 0000000316 00000 f 0000000317 00000 f 0000000318 00000 f 0000000319 00000 f 0000000320 00000 f 0000000321 00000 f 0000000322 00000 f 0000000323 00000 f 0000000324 00000 f 0000000325 00000 f 0000000326 00000 f 0000000327 00000 f 0000000328 00000 f 0000000329 00000 f 0000000330 00000 f 0000000331 00000 f 0000000332 00000 f 0000000333 00000 f 0000000334 00000 f 0000000335 00000 f 0000000336 00000 f 0000000337 00000 f 0000000338 00000 f 0000000339 00000 f 0000000340 00000 f 0000000341 00000 f 0000000342 00000 f 0000000343 00000 f 0000000344 00000 f 0000000345 00000 f 0000000346 00000 f 0000000347 00000 f 0000000348 00000 f 0000000349 00000 f 0000000350 00000 f 0000000351 00000 f 0000000352 00000 f 0000000353 00000 f 0000000354 00000 f 0000000355 00000 f 0000000356 00000 f 0000000357 00000 f 0000000358 00000 f 0000000359 00000 f 0000000360 00000 f 0000000361 00000 f 0000000362 00000 f 0000000363 00000 f 0000000364 00000 f 0000000365 00000 f 0000000366 00000 f 0000000367 00000 f 0000000368 00000 f 0000000369 00000 f 0000000370 00000 f 0000000371 00000 f 0000000372 00000 f 0000000373 00000 f 0000000374 00000 f 0000000375 00000 f 0000000376 00000 f 0000000377 00000 f 0000000378 00000 f 0000000379 00000 f 0000000380 00000 f 0000000381 00000 f 0000000382 00000 f 0000000383 00000 f 0000000384 00000 f 0000000385 00000 f 0000000386 00000 f 0000000387 00000 f 0000000388 00000 f 0000000389 00000 f 0000000390 00000 f 0000000391 00000 f 0000000392 00000 f 0000000393 00000 f 0000000394 00000 f 0000000395 00000 f 0000000396 00000 f 0000000397 00000 f 0000000398 00000 f 0000000399 00000 f 0000000400 00000 f 0000000401 00000 f 0000000402 00000 f 0000000403 00000 f 0000000404 00000 f 0000000405 00000 f 0000000406 00000 f 0000000407 00000 f 0000000408 00000 f 0000000409 00000 f 0000000410 00000 f 0000000411 00000 f 0000000412 00000 f 0000000413 00000 f 0000000414 00000 f 0000000415 00000 f 0000000416 00000 f 0000000417 00000 f 0000000418 00000 f 0000000419 00000 f 0000000420 00000 f 0000000421 00000 f 0000000422 00000 f 0000000423 00000 f 0000000424 00000 f 0000000425 00000 f 0000000426 00000 f 0000000427 00000 f 0000000428 00000 f 0000000429 00000 f 0000000430 00000 f 0000000431 00000 f 0000000432 00000 f 0000000433 00000 f 0000000434 00000 f 0000000435 00000 f 0000000436 00000 f 0000000437 00000 f 0000000438 00000 f 0000000439 00000 f 0000000440 00000 f 0000000441 00000 f 0000000442 00000 f 0000000443 00000 f 0000000444 00000 f 0000000445 00000 f 0000000446 00000 f 0000000447 00000 f 0000000448 00000 f 0000000449 00000 f 0000000450 00000 f 0000000451 00000 f 0000000452 00000 f 0000000453 00000 f 0000000454 00000 f 0000000455 00000 f 0000000456 00000 f 0000000457 00000 f 0000000458 00000 f 0000000459 00000 f 0000000460 00000 f 0000000461 00000 f 0000000462 00000 f 0000000463 00000 f 0000000464 00000 f 0000000465 00000 f 0000000466 00000 f 0000000467 00000 f 0000000468 00000 f 0000000469 00000 f 0000000470 00000 f 0000000471 00000 f 0000000472 00000 f 0000000473 00000 f 0000000474 00000 f 0000000475 00000 f 0000000476 00000 f 0000000477 00000 f 0000000478 00000 f 0000000479 00000 f 0000000480 00000 f 0000000481 00000 f 0000000482 00000 f 0000000483 00000 f 0000000484 00000 f 0000000485 00000 f 0000000486 00000 f 0000000487 00000 f 0000000488 00000 f 0000000489 00000 f 0000000490 00000 f 0000000491 00000 f 0000000492 00000 f 0000000493 00000 f 0000000494 00000 f 0000000495 00000 f 0000000496 00000 f 0000000497 00000 f 0000000498 00000 f 0000000499 00000 f 0000000500 00000 f 0000000501 00000 f 0000000502 00000 f 0000000503 00000 f 0000000504 00000 f 0000000505 00000 f 0000000506 00000 f 0000000507 00000 f 0000000508 00000 f 0000000509 00000 f 0000000510 00000 f 0000000511 00000 f 0000000512 00000 f 0000000513 00000 f 0000000514 00000 f 0000000515 00000 f 0000000516 00000 f 0000000517 00000 f 0000000518 00000 f 0000000519 00000 f 0000000520 00000 f 0000000521 00000 f 0000000522 00000 f 0000000523 00000 f 0000000524 00000 f 0000000525 00000 f 0000000526 00000 f 0000000527 00000 f 0000000528 00000 f 0000000529 00000 f 0000000530 00000 f 0000000531 00000 f 0000000532 00000 f 0000000533 00000 f 0000000534 00000 f 0000000535 00000 f 0000000536 00000 f 0000000537 00000 f 0000000538 00000 f 0000000539 00000 f 0000000540 00000 f 0000000541 00000 f 0000000542 00000 f 0000000543 00000 f 0000000544 00000 f 0000000545 00000 f 0000000546 00000 f 0000000547 00000 f 0000000548 00000 f 0000000549 00000 f 0000000550 00000 f 0000000551 00000 f 0000000552 00000 f 0000000553 00000 f 0000000554 00000 f 0000000555 00000 f 0000000556 00000 f 0000000557 00000 f 0000000558 00000 f 0000000559 00000 f 0000000560 00000 f 0000000561 00000 f 0000000562 00000 f 0000000563 00000 f 0000000564 00000 f 0000000565 00000 f 0000000566 00000 f 0000000567 00000 f 0000000568 00000 f 0000000569 00000 f 0000000570 00000 f 0000000571 00000 f 0000000572 00000 f 0000000573 00000 f 0000000574 00000 f 0000000575 00000 f 0000000576 00000 f 0000000577 00000 f 0000000578 00000 f 0000000579 00000 f 0000000580 00000 f 0000000581 00000 f 0000000582 00000 f 0000000583 00000 f 0000000584 00000 f 0000000585 00000 f 0000000586 00000 f 0000000587 00000 f 0000000588 00000 f 0000000589 00000 f 0000000590 00000 f 0000000591 00000 f 0000000592 00000 f 0000000593 00000 f 0000000594 00000 f 0000000595 00000 f 0000000596 00000 f 0000000597 00000 f 0000000598 00000 f 0000000599 00000 f 0000000600 00000 f 0000000601 00000 f 0000000602 00000 f 0000000603 00000 f 0000000604 00000 f 0000000605 00000 f 0000000606 00000 f 0000000607 00000 f 0000000608 00000 f 0000000609 00000 f 0000000610 00000 f 0000000611 00000 f 0000000612 00000 f 0000000613 00000 f 0000000614 00000 f 0000000615 00000 f 0000000616 00000 f 0000000617 00000 f 0000000618 00000 f 0000000619 00000 f 0000000620 00000 f 0000000621 00000 f 0000000622 00000 f 0000000623 00000 f 0000000624 00000 f 0000000625 00000 f 0000000626 00000 f 0000000627 00000 f 0000000628 00000 f 0000000629 00000 f 0000000630 00000 f 0000000631 00000 f 0000000632 00000 f 0000000633 00000 f 0000000634 00000 f 0000000635 00000 f 0000000636 00000 f 0000000637 00000 f 0000000638 00000 f 0000000639 00000 f 0000000640 00000 f 0000000641 00000 f 0000000642 00000 f 0000000643 00000 f 0000000644 00000 f 0000000645 00000 f 0000000646 00000 f 0000000647 00000 f 0000000648 00000 f 0000000649 00000 f 0000000650 00000 f 0000000651 00000 f 0000000652 00000 f 0000000653 00000 f 0000000654 00000 f 0000000655 00000 f 0000000656 00000 f 0000000657 00000 f 0000000658 00000 f 0000000659 00000 f 0000000660 00000 f 0000000661 00000 f 0000000662 00000 f 0000000663 00000 f 0000000664 00000 f 0000000665 00000 f 0000000666 00000 f 0000000667 00000 f 0000000668 00000 f 0000000669 00000 f 0000000670 00000 f 0000000671 00000 f 0000000672 00000 f 0000000673 00000 f 0000000674 00000 f 0000000675 00000 f 0000000676 00000 f 0000000677 00000 f 0000000678 00000 f 0000000679 00000 f 0000000680 00000 f 0000000681 00000 f 0000000682 00000 f 0000000683 00000 f 0000000684 00000 f 0000000685 00000 f 0000000686 00000 f 0000000687 00000 f 0000000688 00000 f 0000000689 00000 f 0000000690 00000 f 0000000691 00000 f 0000000692 00000 f 0000000693 00000 f 0000000694 00000 f 0000000695 00000 f 0000000696 00000 f 0000000697 00000 f 0000000698 00000 f 0000000699 00000 f 0000000700 00000 f 0000000701 00000 f 0000000702 00000 f 0000000703 00000 f 0000000704 00000 f 0000000705 00000 f 0000000706 00000 f 0000000707 00000 f 0000000708 00000 f 0000000709 00000 f 0000000710 00000 f 0000000711 00000 f 0000000712 00000 f 0000000713 00000 f 0000000714 00000 f 0000000715 00000 f 0000000716 00000 f 0000000717 00000 f 0000000718 00000 f 0000000719 00000 f 0000000720 00000 f 0000000721 00000 f 0000000722 00000 f 0000000723 00000 f 0000000724 00000 f 0000000725 00000 f 0000000726 00000 f 0000000727 00000 f 0000000728 00000 f 0000000729 00000 f 0000000730 00000 f 0000000731 00000 f 0000000732 00000 f 0000000733 00000 f 0000000734 00000 f 0000000735 00000 f 0000000736 00000 f 0000000737 00000 f 0000000738 00000 f 0000000739 00000 f 0000000740 00000 f 0000000741 00000 f 0000000742 00000 f 0000000743 00000 f 0000000744 00000 f 0000000745 00000 f 0000000746 00000 f 0000000747 00000 f 0000000748 00000 f 0000000749 00000 f 0000000750 00000 f 0000000751 00000 f 0000000752 00000 f 0000000753 00000 f 0000000754 00000 f 0000000755 00000 f 0000000756 00000 f 0000000757 00000 f 0000000758 00000 f 0000000759 00000 f 0000000760 00000 f 0000000761 00000 f 0000000762 00000 f 0000000763 00000 f 0000000764 00000 f 0000000765 00000 f 0000000766 00000 f 0000000767 00000 f 0000000768 00000 f 0000000769 00000 f 0000000770 00000 f 0000000771 00000 f 0000000772 00000 f 0000000773 00000 f 0000000774 00000 f 0000000775 00000 f 0000000776 00000 f 0000000777 00000 f 0000000778 00000 f 0000000779 00000 f 0000000780 00000 f 0000000781 00000 f 0000000782 00000 f 0000000783 00000 f 0000000784 00000 f 0000000785 00000 f 0000000786 00000 f 0000000787 00000 f 0000000788 00000 f 0000000789 00000 f 0000000790 00000 f 0000000791 00000 f 0000000792 00000 f 0000000793 00000 f 0000000794 00000 f 0000000795 00000 f 0000000796 00000 f 0000000797 00000 f 0000000798 00000 f 0000000799 00000 f 0000000800 00000 f 0000000801 00000 f 0000000802 00000 f 0000000803 00000 f 0000000804 00000 f 0000000805 00000 f 0000000806 00000 f 0000000807 00000 f 0000000808 00000 f 0000000809 00000 f 0000000810 00000 f 0000000811 00000 f 0000000812 00000 f 0000000813 00000 f 0000000814 00000 f 0000000815 00000 f 0000000816 00000 f 0000000817 00000 f 0000000818 00000 f 0000000819 00000 f 0000000820 00000 f 0000000821 00000 f 0000000822 00000 f 0000000823 00000 f 0000000824 00000 f 0000000825 00000 f 0000000826 00000 f 0000000827 00000 f 0000000828 00000 f 0000000829 00000 f 0000000830 00000 f 0000000831 00000 f 0000000832 00000 f 0000000833 00000 f 0000000834 00000 f 0000000835 00000 f 0000000836 00000 f 0000000837 00000 f 0000000838 00000 f 0000000839 00000 f 0000000840 00000 f 0000000841 00000 f 0000000842 00000 f 0000000843 00000 f 0000000844 00000 f 0000000845 00000 f 0000000846 00000 f 0000000847 00000 f 0000000848 00000 f 0000000849 00000 f 0000000850 00000 f 0000000851 00000 f 0000000852 00000 f 0000000853 00000 f 0000000854 00000 f 0000000855 00000 f 0000000856 00000 f 0000000857 00000 f 0000000858 00000 f 0000000859 00000 f 0000000860 00000 f 0000000861 00000 f 0000000862 00000 f 0000000863 00000 f 0000000864 00000 f 0000000865 00000 f 0000000866 00000 f 0000000867 00000 f 0000000868 00000 f 0000000869 00000 f 0000000870 00000 f 0000000871 00000 f 0000000872 00000 f 0000000873 00000 f 0000000874 00000 f 0000000875 00000 f 0000000876 00000 f 0000000877 00000 f 0000000878 00000 f 0000000879 00000 f 0000000880 00000 f 0000000881 00000 f 0000000882 00000 f 0000000883 00000 f 0000000884 00000 f 0000000885 00000 f 0000000886 00000 f 0000000887 00000 f 0000000888 00000 f 0000000889 00000 f 0000000890 00000 f 0000000891 00000 f 0000000892 00000 f 0000000893 00000 f 0000000894 00000 f 0000000895 00000 f 0000000896 00000 f 0000000897 00000 f 0000000898 00000 f 0000000899 00000 f 0000000900 00000 f 0000000901 00000 f 0000000902 00000 f 0000000903 00000 f 0000000904 00000 f 0000000905 00000 f 0000000906 00000 f 0000000907 00000 f 0000000908 00000 f 0000000909 00000 f 0000000910 00000 f 0000000911 00000 f 0000000912 00000 f 0000000913 00000 f 0000000914 00000 f 0000000915 00000 f 0000000916 00000 f 0000000917 00000 f 0000000918 00000 f 0000000919 00000 f 0000000920 00000 f 0000000921 00000 f 0000000922 00000 f 0000000923 00000 f 0000000924 00000 f 0000000925 00000 f 0000000926 00000 f 0000000927 00000 f 0000000928 00000 f 0000000929 00000 f 0000000930 00000 f 0000000931 00000 f 0000000932 00000 f 0000000933 00000 f 0000000934 00000 f 0000000935 00000 f 0000000936 00000 f 0000000937 00000 f 0000000938 00000 f 0000000939 00000 f 0000000940 00000 f 0000000941 00000 f 0000000942 00000 f 0000000943 00000 f 0000000944 00000 f 0000000945 00000 f 0000000946 00000 f 0000000947 00000 f 0000000948 00000 f 0000000949 00000 f 0000000950 00000 f 0000000951 00000 f 0000000952 00000 f 0000000953 00000 f 0000000954 00000 f 0000000955 00000 f 0000000956 00000 f 0000000957 00000 f 0000000958 00000 f 0000000959 00000 f 0000000960 00000 f 0000000961 00000 f 0000000962 00000 f 0000000963 00000 f 0000000964 00000 f 0000000965 00000 f 0000000966 00000 f 0000000967 00000 f 0000000968 00000 f 0000000969 00000 f 0000000970 00000 f 0000000971 00000 f 0000000972 00000 f 0000000973 00000 f 0000000974 00000 f 0000000975 00000 f 0000000976 00000 f 0000000977 00000 f 0000000978 00000 f 0000000979 00000 f 0000000980 00000 f 0000000981 00000 f 0000000982 00000 f 0000000983 00000 f 0000000984 00000 f 0000000985 00000 f 0000000986 00000 f 0000000987 00000 f 0000000988 00000 f 0000000989 00000 f 0000000990 00000 f 0000000991 00000 f 0000000992 00000 f 0000000993 00000 f 0000000994 00000 f 0000000995 00000 f 0000000996 00000 f 0000000997 00000 f 0000000998 00000 f 0000000999 00000 f 0000001000 00000 f 0000001001 00000 f 0000001002 00000 f 0000001003 00000 f 0000001004 00000 f 0000001005 00000 f 0000001006 00000 f 0000001007 00000 f 0000001008 00000 f 0000001009 00000 f 0000001010 00000 f 0000001011 00000 f 0000001012 00000 f 0000001013 00000 f 0000001014 00000 f 0000001015 00000 f 0000001016 00000 f 0000001017 00000 f 0000001018 00000 f 0000001019 00000 f 0000001020 00000 f 0000001021 00000 f 0000001022 00000 f 0000001023 00000 f 0000001024 00000 f 0000001025 00000 f 0000001026 00000 f 0000001027 00000 f 0000001028 00000 f 0000001029 00000 f 0000001030 00000 f 0000001031 00000 f 0000001032 00000 f 0000001033 00000 f 0000001034 00000 f 0000001035 00000 f 0000001036 00000 f 0000001037 00000 f 0000001038 00000 f 0000001039 00000 f 0000001040 00000 f 0000001041 00000 f 0000001042 00000 f 0000001043 00000 f 0000001044 00000 f 0000001045 00000 f 0000001046 00000 f 0000001047 00000 f 0000001048 00000 f 0000001049 00000 f 0000001050 00000 f 0000001051 00000 f 0000001052 00000 f 0000001053 00000 f 0000001054 00000 f 0000001055 00000 f 0000001056 00000 f 0000001057 00000 f 0000001058 00000 f 0000001059 00000 f 0000001060 00000 f 0000001061 00000 f 0000001062 00000 f 0000001063 00000 f 0000001064 00000 f 0000001065 00000 f 0000001066 00000 f 0000001067 00000 f 0000001068 00000 f 0000001069 00000 f 0000001070 00000 f 0000001071 00000 f 0000001072 00000 f 0000001073 00000 f 0000001074 00000 f 0000001075 00000 f 0000001076 00000 f 0000001077 00000 f 0000001078 00000 f 0000001079 00000 f 0000001080 00000 f 0000001081 00000 f 0000001082 00000 f 0000001083 00000 f 0000001084 00000 f 0000001085 00000 f 0000001086 00000 f 0000001087 00000 f 0000001088 00000 f 0000001089 00000 f 0000001090 00000 f 0000001091 00000 f 0000001092 00000 f 0000001093 00000 f 0000001094 00000 f 0000001095 00000 f 0000001096 00000 f 0000001097 00000 f 0000001098 00000 f 0000001099 00000 f 0000001100 00000 f 0000001101 00000 f 0000001102 00000 f 0000001103 00000 f 0000001104 00000 f 0000001105 00000 f 0000001106 00000 f 0000001107 00000 f 0000001108 00000 f 0000001109 00000 f 0000001110 00000 f 0000001111 00000 f 0000001112 00000 f 0000001113 00000 f 0000001114 00000 f 0000001115 00000 f 0000001116 00000 f 0000001117 00000 f 0000001118 00000 f 0000001119 00000 f 0000001120 00000 f 0000001121 00000 f 0000001122 00000 f 0000001123 00000 f 0000001124 00000 f 0000001125 00000 f 0000001126 00000 f 0000001127 00000 f 0000001128 00000 f 0000001129 00000 f 0000001130 00000 f 0000001131 00000 f 0000001132 00000 f 0000001133 00000 f 0000001134 00000 f 0000001135 00000 f 0000001136 00000 f 0000001137 00000 f 0000001138 00000 f 0000001139 00000 f 0000001140 00000 f 0000001141 00000 f 0000001142 00000 f 0000001143 00000 f 0000001144 00000 f 0000001145 00000 f 0000001146 00000 f 0000001147 00000 f 0000001148 00000 f 0000001149 00000 f 0000001150 00000 f 0000001151 00000 f 0000001152 00000 f 0000001153 00000 f 0000001154 00000 f 0000001155 00000 f 0000001156 00000 f 0000001157 00000 f 0000001158 00000 f 0000001159 00000 f 0000001160 00000 f 0000001161 00000 f 0000001162 00000 f 0000001163 00000 f 0000001164 00000 f 0000001165 00000 f 0000001166 00000 f 0000001167 00000 f 0000001168 00000 f 0000001169 00000 f 0000001170 00000 f 0000001171 00000 f 0000001172 00000 f 0000001173 00000 f 0000001174 00000 f 0000001175 00000 f 0000001176 00000 f 0000001177 00000 f 0000001178 00000 f 0000001179 00000 f 0000001180 00000 f 0000001181 00000 f 0000001182 00000 f 0000001183 00000 f 0000001184 00000 f 0000001185 00000 f 0000001186 00000 f 0000001187 00000 f 0000001188 00000 f 0000001189 00000 f 0000001190 00000 f 0000001191 00000 f 0000001192 00000 f 0000001193 00000 f 0000001194 00000 f 0000001195 00000 f 0000001196 00000 f 0000001197 00000 f 0000001198 00000 f 0000001199 00000 f 0000001200 00000 f 0000001201 00000 f 0000001202 00000 f 0000001203 00000 f 0000001204 00000 f 0000001205 00000 f 0000001206 00000 f 0000001207 00000 f 0000001208 00000 f 0000001209 00000 f 0000001210 00000 f 0000001211 00000 f 0000001212 00000 f 0000001213 00000 f 0000001214 00000 f 0000001215 00000 f 0000001216 00000 f 0000001217 00000 f 0000001218 00000 f 0000001219 00000 f 0000001220 00000 f 0000001221 00000 f 0000001222 00000 f 0000001223 00000 f 0000001224 00000 f 0000001225 00000 f 0000001226 00000 f 0000001227 00000 f 0000001228 00000 f 0000001229 00000 f 0000001230 00000 f 0000001231 00000 f 0000001232 00000 f 0000001233 00000 f 0000001234 00000 f 0000001235 00000 f 0000001236 00000 f 0000001237 00000 f 0000001238 00000 f 0000001239 00000 f 0000001240 00000 f 0000001241 00000 f 0000001242 00000 f 0000001243 00000 f 0000001244 00000 f 0000001245 00000 f 0000001246 00000 f 0000001247 00000 f 0000001248 00000 f 0000001249 00000 f 0000001250 00000 f 0000001251 00000 f 0000001252 00000 f 0000001253 00000 f 0000001254 00000 f 0000001255 00000 f 0000001256 00000 f 0000001257 00000 f 0000001258 00000 f 0000001259 00000 f 0000001260 00000 f 0000001261 00000 f 0000001262 00000 f 0000001263 00000 f 0000001264 00000 f 0000001265 00000 f 0000001266 00000 f 0000001267 00000 f 0000001268 00000 f 0000001269 00000 f 0000001270 00000 f 0000001271 00000 f 0000001272 00000 f 0000001273 00000 f 0000001274 00000 f 0000001275 00000 f 0000001276 00000 f 0000001277 00000 f 0000001278 00000 f 0000001279 00000 f 0000001280 00000 f 0000001281 00000 f 0000001282 00000 f 0000001283 00000 f 0000001284 00000 f 0000001285 00000 f 0000001286 00000 f 0000001287 00000 f 0000001288 00000 f 0000001289 00000 f 0000001290 00000 f 0000001291 00000 f 0000001292 00000 f 0000001293 00000 f 0000001294 00000 f 0000001295 00000 f 0000001296 00000 f 0000001297 00000 f 0000001298 00000 f 0000001299 00000 f 0000001300 00000 f 0000001301 00000 f 0000001302 00000 f 0000001303 00000 f 0000001304 00000 f 0000001305 00000 f 0000001306 00000 f 0000001307 00000 f 0000001308 00000 f 0000001309 00000 f 0000001310 00000 f 0000001311 00000 f 0000001312 00000 f 0000001313 00000 f 0000001314 00000 f 0000001315 00000 f 0000001316 00000 f 0000001317 00000 f 0000001318 00000 f 0000001319 00000 f 0000001320 00000 f 0000001321 00000 f 0000001322 00000 f 0000001323 00000 f 0000001324 00000 f 0000001325 00000 f 0000001326 00000 f 0000001327 00000 f 0000001328 00000 f 0000001329 00000 f 0000001330 00000 f 0000001331 00000 f 0000001332 00000 f 0000001333 00000 f 0000001334 00000 f 0000001335 00000 f 0000001336 00000 f 0000001337 00000 f 0000001338 00000 f 0000001339 00000 f 0000001340 00000 f 0000001341 00000 f 0000001342 00000 f 0000001343 00000 f 0000001344 00000 f 0000001345 00000 f 0000001346 00000 f 0000001347 00000 f 0000001348 00000 f 0000001349 00000 f 0000001350 00000 f 0000001351 00000 f 0000001352 00000 f 0000001353 00000 f 0000001354 00000 f 0000001355 00000 f 0000001356 00000 f 0000001357 00000 f 0000001358 00000 f 0000001359 00000 f 0000001360 00000 f 0000001361 00000 f 0000001362 00000 f 0000001363 00000 f 0000001364 00000 f 0000001365 00000 f 0000001366 00000 f 0000001367 00000 f 0000001368 00000 f 0000001369 00000 f 0000001370 00000 f 0000001371 00000 f 0000001372 00000 f 0000001373 00000 f 0000001374 00000 f 0000001375 00000 f 0000001376 00000 f 0000001377 00000 f 0000001378 00000 f 0000001379 00000 f 0000001380 00000 f 0000001381 00000 f 0000001382 00000 f 0000001383 00000 f 0000001384 00000 f 0000001385 00000 f 0000001386 00000 f 0000001387 00000 f 0000001388 00000 f 0000001389 00000 f 0000001390 00000 f 0000001391 00000 f 0000001392 00000 f 0000001393 00000 f 0000001394 00000 f 0000001395 00000 f 0000001396 00000 f 0000001397 00000 f 0000001398 00000 f 0000001399 00000 f 0000001400 00000 f 0000001401 00000 f 0000001402 00000 f 0000001403 00000 f 0000001404 00000 f 0000001405 00000 f 0000001406 00000 f 0000001407 00000 f 0000001408 00000 f 0000001409 00000 f 0000001410 00000 f 0000001411 00000 f 0000001412 00000 f 0000001413 00000 f 0000001414 00000 f 0000001415 00000 f 0000001416 00000 f 0000001417 00000 f 0000001418 00000 f 0000001419 00000 f 0000001420 00000 f 0000001421 00000 f 0000001422 00000 f 0000001423 00000 f 0000001424 00000 f 0000001425 00000 f 0000001426 00000 f 0000001427 00000 f 0000001428 00000 f 0000001429 00000 f 0000001430 00000 f 0000001431 00000 f 0000001432 00000 f 0000001433 00000 f 0000001434 00000 f 0000001435 00000 f 0000001436 00000 f 0000001437 00000 f 0000001438 00000 f 0000001439 00000 f 0000001440 00000 f 0000001441 00000 f 0000001442 00000 f 0000001443 00000 f 0000001444 00000 f 0000001445 00000 f 0000001446 00000 f 0000001447 00000 f 0000001448 00000 f 0000001449 00000 f 0000001450 00000 f 0000001451 00000 f 0000001452 00000 f 0000001453 00000 f 0000001454 00000 f 0000001455 00000 f 0000001456 00000 f 0000001457 00000 f 0000001458 00000 f 0000001459 00000 f 0000001460 00000 f 0000001461 00000 f 0000001462 00000 f 0000001463 00000 f 0000001464 00000 f 0000001465 00000 f 0000001466 00000 f 0000001467 00000 f 0000001468 00000 f 0000001469 00000 f 0000001470 00000 f 0000001471 00000 f 0000001472 00000 f 0000001473 00000 f 0000001474 00000 f 0000001475 00000 f 0000001476 00000 f 0000001477 00000 f 0000001478 00000 f 0000001479 00000 f 0000001480 00000 f 0000001481 00000 f 0000001482 00000 f 0000001483 00000 f 0000001484 00000 f 0000001485 00000 f 0000001486 00000 f 0000001487 00000 f 0000001488 00000 f 0000001489 00000 f 0000001490 00000 f 0000001491 00000 f 0000001492 00000 f 0000001493 00000 f 0000001494 00000 f 0000001495 00000 f 0000001496 00000 f 0000001497 00000 f 0000001498 00000 f 0000001499 00000 f 0000001500 00000 f 0000001501 00000 f 0000001502 00000 f 0000001503 00000 f 0000001504 00000 f 0000001505 00000 f 0000001506 00000 f 0000001507 00000 f 0000001508 00000 f 0000001509 00000 f 0000001510 00000 f 0000001511 00000 f 0000001512 00000 f 0000001513 00000 f 0000001514 00000 f 0000001515 00000 f 0000001516 00000 f 0000001517 00000 f 0000001518 00000 f 0000001519 00000 f 0000001520 00000 f 0000001521 00000 f 0000001522 00000 f 0000001523 00000 f 0000001524 00000 f 0000001525 00000 f 0000001526 00000 f 0000001527 00000 f 0000001528 00000 f 0000001529 00000 f 0000001530 00000 f 0000001531 00000 f 0000001532 00000 f 0000001533 00000 f 0000001534 00000 f 0000001535 00000 f 0000001536 00000 f 0000001537 00000 f 0000001538 00000 f 0000001539 00000 f 0000001540 00000 f 0000001541 00000 f 0000001542 00000 f 0000001543 00000 f 0000001544 00000 f 0000001545 00000 f 0000001546 00000 f 0000001547 00000 f 0000001548 00000 f 0000001549 00000 f 0000001550 00000 f 0000001551 00000 f 0000001552 00000 f 0000001553 00000 f 0000001554 00000 f 0000001555 00000 f 0000001556 00000 f 0000001557 00000 f 0000001558 00000 f 0000001559 00000 f 0000001560 00000 f 0000001561 00000 f 0000001562 00000 f 0000001563 00000 f 0000001564 00000 f 0000001565 00000 f 0000001566 00000 f 0000001567 00000 f 0000001568 00000 f 0000001569 00000 f 0000001570 00000 f 0000001571 00000 f 0000001572 00000 f 0000001573 00000 f 0000001574 00000 f 0000001575 00000 f 0000001576 00000 f 0000001577 00000 f 0000001578 00000 f 0000001579 00000 f 0000001580 00000 f 0000001581 00000 f 0000001582 00000 f 0000001583 00000 f 0000001584 00000 f 0000001585 00000 f 0000001586 00000 f 0000001587 00000 f 0000001588 00000 f 0000001589 00000 f 0000001590 00000 f 0000001591 00000 f 0000001592 00000 f 0000001593 00000 f 0000001594 00000 f 0000001595 00000 f 0000001596 00000 f 0000001597 00000 f 0000001598 00000 f 0000001599 00000 f 0000001600 00000 f 0000001601 00000 f 0000001602 00000 f 0000001603 00000 f 0000001604 00000 f 0000001605 00000 f 0000001606 00000 f 0000001607 00000 f 0000001608 00000 f 0000001609 00000 f 0000001610 00000 f 0000001611 00000 f 0000001612 00000 f 0000001613 00000 f 0000001614 00000 f 0000001615 00000 f 0000001616 00000 f 0000001617 00000 f 0000001618 00000 f 0000001619 00000 f 0000001620 00000 f 0000001621 00000 f 0000001622 00000 f 0000001623 00000 f 0000001624 00000 f 0000001625 00000 f 0000001626 00000 f 0000001627 00000 f 0000001628 00000 f 0000001629 00000 f 0000001630 00000 f 0000001631 00000 f 0000001632 00000 f 0000001633 00000 f 0000001634 00000 f 0000001635 00000 f 0000001636 00000 f 0000001637 00000 f 0000001638 00000 f 0000001639 00000 f 0000001640 00000 f 0000001641 00000 f 0000001642 00000 f 0000001643 00000 f 0000001644 00000 f 0000001645 00000 f 0000001646 00000 f 0000001647 00000 f 0000001648 00000 f 0000001649 00000 f 0000001650 00000 f 0000001651 00000 f 0000001652 00000 f 0000001653 00000 f 0000001654 00000 f 0000001655 00000 f 0000001656 00000 f 0000001657 00000 f 0000001658 00000 f 0000001659 00000 f 0000001660 00000 f 0000001661 00000 f 0000001662 00000 f 0000001663 00000 f 0000001664 00000 f 0000001665 00000 f 0000001666 00000 f 0000001667 00000 f 0000001668 00000 f 0000001669 00000 f 0000001670 00000 f 0000001671 00000 f 0000001672 00000 f 0000001673 00000 f 0000001674 00000 f 0000001675 00000 f 0000001676 00000 f 0000001677 00000 f 0000001678 00000 f 0000001679 00000 f 0000001680 00000 f 0000001681 00000 f 0000001682 00000 f 0000001683 00000 f 0000001684 00000 f 0000001685 00000 f 0000001686 00000 f 0000001687 00000 f 0000001688 00000 f 0000001689 00000 f 0000001690 00000 f 0000001691 00000 f 0000001692 00000 f 0000001693 00000 f 0000001694 00000 f 0000001695 00000 f 0000001696 00000 f 0000001697 00000 f 0000001698 00000 f 0000001699 00000 f 0000001700 00000 f 0000001701 00000 f 0000001702 00000 f 0000001703 00000 f 0000001704 00000 f 0000001705 00000 f 0000001706 00000 f 0000001707 00000 f 0000001708 00000 f 0000001709 00000 f 0000001710 00000 f 0000001711 00000 f 0000001712 00000 f 0000001713 00000 f 0000001714 00000 f 0000001715 00000 f 0000001716 00000 f 0000001717 00000 f 0000001718 00000 f 0000001719 00000 f 0000001720 00000 f 0000001721 00000 f 0000001722 00000 f 0000001723 00000 f 0000001724 00000 f 0000001725 00000 f 0000001726 00000 f 0000001727 00000 f 0000001728 00000 f 0000001729 00000 f 0000001730 00000 f 0000001731 00000 f 0000001732 00000 f 0000001733 00000 f 0000001734 00000 f 0000001735 00000 f 0000001736 00000 f 0000001737 00000 f 0000001738 00000 f 0000001739 00000 f 0000001740 00000 f 0000001741 00000 f 0000001742 00000 f 0000001743 00000 f 0000001744 00000 f 0000001745 00000 f 0000001746 00000 f 0000001747 00000 f 0000001748 00000 f 0000001749 00000 f 0000001750 00000 f 0000001751 00000 f 0000001752 00000 f 0000001753 00000 f 0000001754 00000 f 0000001755 00000 f 0000001756 00000 f 0000001757 00000 f 0000001758 00000 f 0000001759 00000 f 0000001760 00000 f 0000001761 00000 f 0000001762 00000 f 0000001763 00000 f 0000001764 00000 f 0000001765 00000 f 0000001766 00000 f 0000001767 00000 f 0000001768 00000 f 0000001769 00000 f 0000001770 00000 f 0000001771 00000 f 0000001772 00000 f 0000001773 00000 f 0000001774 00000 f 0000001775 00000 f 0000001776 00000 f 0000001777 00000 f 0000001778 00000 f 0000001779 00000 f 0000001780 00000 f 0000001781 00000 f 0000001782 00000 f 0000001783 00000 f 0000001784 00000 f 0000001785 00000 f 0000001786 00000 f 0000001787 00000 f 0000001788 00000 f 0000001789 00000 f 0000001790 00000 f 0000001791 00000 f 0000001792 00000 f 0000001793 00000 f 0000001794 00000 f 0000001795 00000 f 0000001796 00000 f 0000001797 00000 f 0000001798 00000 f 0000001799 00000 f 0000001800 00000 f 0000001801 00000 f 0000001802 00000 f 0000001803 00000 f 0000001804 00000 f 0000001805 00000 f 0000001806 00000 f 0000001807 00000 f 0000001808 00000 f 0000001809 00000 f 0000001810 00000 f 0000001811 00000 f 0000001812 00000 f 0000001813 00000 f 0000001814 00000 f 0000001815 00000 f 0000001816 00000 f 0000001817 00000 f 0000001818 00000 f 0000001819 00000 f 0000001820 00000 f 0000001821 00000 f 0000001822 00000 f 0000001823 00000 f 0000001824 00000 f 0000001825 00000 f 0000001826 00000 f 0000001827 00000 f 0000001828 00000 f 0000001829 00000 f 0000001830 00000 f 0000001831 00000 f 0000001832 00000 f 0000001833 00000 f 0000001834 00000 f 0000001835 00000 f 0000001836 00000 f 0000001837 00000 f 0000001838 00000 f 0000001839 00000 f 0000001840 00000 f 0000001841 00000 f 0000001842 00000 f 0000001843 00000 f 0000001844 00000 f 0000001845 00000 f 0000001846 00000 f 0000001847 00000 f 0000001848 00000 f 0000001849 00000 f 0000001850 00000 f 0000001851 00000 f 0000001852 00000 f 0000001853 00000 f 0000001854 00000 f 0000001855 00000 f 0000001856 00000 f 0000001857 00000 f 0000001858 00000 f 0000001859 00000 f 0000001860 00000 f 0000001861 00000 f 0000001862 00000 f 0000001863 00000 f 0000001864 00000 f 0000001865 00000 f 0000001866 00000 f 0000001867 00000 f 0000001868 00000 f 0000001869 00000 f 0000001870 00000 f 0000001871 00000 f 0000001872 00000 f 0000001873 00000 f 0000001874 00000 f 0000001875 00000 f 0000001876 00000 f 0000001877 00000 f 0000001878 00000 f 0000001879 00000 f 0000001880 00000 f 0000001881 00000 f 0000001882 00000 f 0000001883 00000 f 0000001884 00000 f 0000001885 00000 f 0000001886 00000 f 0000001887 00000 f 0000001888 00000 f 0000001889 00000 f 0000001890 00000 f 0000001891 00000 f 0000001892 00000 f 0000001893 00000 f 0000001894 00000 f 0000001895 00000 f 0000001896 00000 f 0000001897 00000 f 0000001898 00000 f 0000001899 00000 f 0000001900 00000 f 0000001901 00000 f 0000001902 00000 f 0000001903 00000 f 0000001904 00000 f 0000001905 00000 f 0000001906 00000 f 0000001907 00000 f 0000001908 00000 f 0000001909 00000 f 0000001910 00000 f 0000001911 00000 f 0000001912 00000 f 0000001913 00000 f 0000001914 00000 f 0000001915 00000 f 0000001916 00000 f 0000001917 00000 f 0000001918 00000 f 0000001919 00000 f 0000001920 00000 f 0000001921 00000 f 0000001922 00000 f 0000001923 00000 f 0000001924 00000 f 0000001925 00000 f 0000001926 00000 f 0000001927 00000 f 0000001928 00000 f 0000001929 00000 f 0000001930 00000 f 0000001931 00000 f 0000001932 00000 f 0000001933 00000 f 0000001934 00000 f 0000001935 00000 f 0000001936 00000 f 0000001937 00000 f 0000001938 00000 f 0000001939 00000 f 0000001940 00000 f 0000001941 00000 f 0000001942 00000 f 0000001943 00000 f 0000001944 00000 f 0000001945 00000 f 0000001946 00000 f 0000001947 00000 f 0000001948 00000 f 0000001949 00000 f 0000001950 00000 f 0000001951 00000 f 0000001952 00000 f 0000001953 00000 f 0000001954 00000 f 0000001955 00000 f 0000001956 00000 f 0000001957 00000 f 0000001958 00000 f 0000001959 00000 f 0000001960 00000 f 0000001961 00000 f 0000001962 00000 f 0000001963 00000 f 0000001964 00000 f 0000001965 00000 f 0000001966 00000 f 0000001967 00000 f 0000001968 00000 f 0000001969 00000 f 0000001970 00000 f 0000001971 00000 f 0000001972 00000 f 0000001973 00000 f 0000001974 00000 f 0000001975 00000 f 0000001976 00000 f 0000001977 00000 f 0000001978 00000 f 0000001979 00000 f 0000001980 00000 f 0000001981 00000 f 0000001982 00000 f 0000001983 00000 f 0000001984 00000 f 0000001985 00000 f 0000001986 00000 f 0000001987 00000 f 0000001988 00000 f 0000001989 00000 f 0000001990 00000 f 0000001991 00000 f 0000001992 00000 f 0000001993 00000 f 0000001994 00000 f 0000001995 00000 f 0000001996 00000 f 0000001997 00000 f 0000001998 00000 f 0000001999 00000 f 0000002000 00000 f 0000002001 00000 f 0000002002 00000 f 0000002003 00000 f 0000002004 00000 f 0000002005 00000 f 0000002006 00000 f 0000002007 00000 f 0000002008 00000 f 0000002009 00000 f 0000002010 00000 f 0000002011 00000 f 0000002012 00000 f 0000002013 00000 f 0000002014 00000 f 0000002015 00000 f 0000002016 00000 f 0000002017 00000 f 0000002018 00000 f 0000002019 00000 f 0000002020 00000 f 0000002021 00000 f 0000002022 00000 f 0000002023 00000 f 0000002024 00000 f 0000002025 00000 f 0000002026 00000 f 0000002027 00000 f 0000002028 00000 f 0000002029 00000 f 0000002030 00000 f 0000002031 00000 f 0000002032 00000 f 0000002033 00000 f 0000002034 00000 f 0000002035 00000 f 0000002036 00000 f 0000002037 00000 f 0000002038 00000 f 0000002039 00000 f 0000002040 00000 f 0000002041 00000 f 0000002042 00000 f 0000002043 00000 f 0000002044 00000 f 0000002045 00000 f 0000002046 00000 f 0000002047 00000 f 0000002048 00000 f 0000002049 00000 f 0000002050 00000 f 0000002051 00000 f 0000002052 00000 f 0000002053 00000 f 0000002054 00000 f 0000002055 00000 f 0000002056 00000 f 0000002057 00000 f 0000002058 00000 f 0000002059 00000 f 0000002060 00000 f 0000002061 00000 f 0000002062 00000 f 0000002063 00000 f 0000002064 00000 f 0000002065 00000 f 0000002066 00000 f 0000002067 00000 f 0000002068 00000 f 0000002069 00000 f 0000002070 00000 f 0000002071 00000 f 0000002072 00000 f 0000002073 00000 f 0000002074 00000 f 0000002075 00000 f 0000002076 00000 f 0000002077 00000 f 0000002078 00000 f 0000002079 00000 f 0000002080 00000 f 0000002081 00000 f 0000002082 00000 f 0000002083 00000 f 0000002084 00000 f 0000002085 00000 f 0000002086 00000 f 0000002087 00000 f 0000002088 00000 f 0000002089 00000 f 0000002090 00000 f 0000002091 00000 f 0000002092 00000 f 0000002093 00000 f 0000002094 00000 f 0000002095 00000 f 0000002096 00000 f 0000002097 00000 f 0000002098 00000 f 0000002099 00000 f 0000002100 00000 f 0000002101 00000 f 0000002102 00000 f 0000002103 00000 f 0000002104 00000 f 0000002105 00000 f 0000002106 00000 f 0000002107 00000 f 0000002108 00000 f 0000002109 00000 f 0000002110 00000 f 0000002111 00000 f 0000002112 00000 f 0000002113 00000 f 0000002114 00000 f 0000002115 00000 f 0000002116 00000 f 0000002117 00000 f 0000002118 00000 f 0000002119 00000 f 0000002120 00000 f 0000002121 00000 f 0000002122 00000 f 0000002123 00000 f 0000002124 00000 f 0000002125 00000 f 0000002126 00000 f 0000002127 00000 f 0000002128 00000 f 0000002129 00000 f 0000002130 00000 f 0000002131 00000 f 0000002132 00000 f 0000002133 00000 f 0000002134 00000 f 0000002135 00000 f 0000002136 00000 f 0000002137 00000 f 0000002138 00000 f 0000002139 00000 f 0000002140 00000 f 0000002141 00000 f 0000002142 00000 f 0000002143 00000 f 0000002144 00000 f 0000002145 00000 f 0000002146 00000 f 0000002147 00000 f 0000002148 00000 f 0000002149 00000 f 0000002150 00000 f 0000002151 00000 f 0000002152 00000 f 0000002153 00000 f 0000002154 00000 f 0000002155 00000 f 0000002156 00000 f 0000002157 00000 f 0000002158 00000 f 0000002159 00000 f 0000002160 00000 f 0000002161 00000 f 0000002162 00000 f 0000002163 00000 f 0000002164 00000 f 0000002165 00000 f 0000002166 00000 f 0000002167 00000 f 0000002168 00000 f 0000002169 00000 f 0000002170 00000 f 0000002171 00000 f 0000002172 00000 f 0000002173 00000 f 0000002174 00000 f 0000002175 00000 f 0000002176 00000 f 0000002177 00000 f 0000002178 00000 f 0000002179 00000 f 0000002180 00000 f 0000002181 00000 f 0000002182 00000 f 0000002183 00000 f 0000002184 00000 f 0000002185 00000 f 0000002186 00000 f 0000002187 00000 f 0000002188 00000 f 0000002189 00000 f 0000002190 00000 f 0000002191 00000 f 0000002192 00000 f 0000002193 00000 f 0000002194 00000 f 0000002195 00000 f 0000002196 00000 f 0000002197 00000 f 0000002198 00000 f 0000002199 00000 f 0000002200 00000 f 0000002201 00000 f 0000002202 00000 f 0000002203 00000 f 0000002204 00000 f 0000002205 00000 f 0000002206 00000 f 0000002207 00000 f 0000002208 00000 f 0000002209 00000 f 0000002210 00000 f 0000002211 00000 f 0000002212 00000 f 0000002213 00000 f 0000002214 00000 f 0000002215 00000 f 0000002216 00000 f 0000002217 00000 f 0000002218 00000 f 0000002219 00000 f 0000002220 00000 f 0000002221 00000 f 0000002222 00000 f 0000002223 00000 f 0000002224 00000 f 0000002225 00000 f 0000002226 00000 f 0000002227 00000 f 0000002228 00000 f 0000002229 00000 f 0000002230 00000 f 0000002231 00000 f 0000002232 00000 f 0000002233 00000 f 0000002234 00000 f 0000002235 00000 f 0000002236 00000 f 0000002237 00000 f 0000002238 00000 f 0000002239 00000 f 0000002240 00000 f 0000002241 00000 f 0000002242 00000 f 0000002243 00000 f 0000002244 00000 f 0000002245 00000 f 0000002246 00000 f 0000002247 00000 f 0000002248 00000 f 0000002249 00000 f 0000002250 00000 f 0000002251 00000 f 0000002252 00000 f 0000002253 00000 f 0000002254 00000 f 0000002255 00000 f 0000002256 00000 f 0000002257 00000 f 0000002258 00000 f 0000002259 00000 f 0000002260 00000 f 0000002261 00000 f 0000002262 00000 f 0000002263 00000 f 0000002264 00000 f 0000002265 00000 f 0000002266 00000 f 0000002267 00000 f 0000002268 00000 f 0000002269 00000 f 0000002270 00000 f 0000002271 00000 f 0000002272 00000 f 0000002273 00000 f 0000002274 00000 f 0000002275 00000 f 0000002276 00000 f 0000002277 00000 f 0000002278 00000 f 0000002279 00000 f 0000002280 00000 f 0000002281 00000 f 0000002282 00000 f 0000002283 00000 f 0000002284 00000 f 0000002285 00000 f 0000002286 00000 f 0000002287 00000 f 0000002288 00000 f 0000002289 00000 f 0000002290 00000 f 0000002291 00000 f 0000002292 00000 f 0000002293 00000 f 0000002294 00000 f 0000002295 00000 f 0000002296 00000 f 0000002297 00000 f 0000002298 00000 f 0000002299 00000 f 0000002300 00000 f 0000002301 00000 f 0000002302 00000 f 0000002303 00000 f 0000002304 00000 f 0000002305 00000 f 0000002306 00000 f 0000002307 00000 f 0000002308 00000 f 0000002309 00000 f 0000002310 00000 f 0000002311 00000 f 0000002312 00000 f 0000002313 00000 f 0000002314 00000 f 0000002315 00000 f 0000002316 00000 f 0000002317 00000 f 0000002318 00000 f 0000002319 00000 f 0000002320 00000 f 0000002321 00000 f 0000002322 00000 f 0000002323 00000 f 0000002324 00000 f 0000002325 00000 f 0000002326 00000 f 0000002327 00000 f 0000002328 00000 f 0000002329 00000 f 0000002330 00000 f 0000002331 00000 f 0000002332 00000 f 0000002333 00000 f 0000002334 00000 f 0000002335 00000 f 0000002336 00000 f 0000002337 00000 f 0000002338 00000 f 0000002339 00000 f 0000002340 00000 f 0000002341 00000 f 0000002342 00000 f 0000002343 00000 f 0000002344 00000 f 0000002345 00000 f 0000002346 00000 f 0000002347 00000 f 0000002348 00000 f 0000002349 00000 f 0000002350 00000 f 0000002351 00000 f 0000002352 00000 f 0000002353 00000 f 0000002354 00000 f 0000002355 00000 f 0000002356 00000 f 0000002357 00000 f 0000002358 00000 f 0000002359 00000 f 0000002360 00000 f 0000002361 00000 f 0000002362 00000 f 0000002363 00000 f 0000002364 00000 f 0000002365 00000 f 0000002366 00000 f 0000002367 00000 f 0000002368 00000 f 0000002369 00000 f 0000002370 00000 f 0000002371 00000 f 0000002372 00000 f 0000002373 00000 f 0000002374 00000 f 0000002375 00000 f 0000002376 00000 f 0000002377 00000 f 0000002378 00000 f 0000002379 00000 f 0000002380 00000 f 0000002381 00000 f 0000002382 00000 f 0000002383 00000 f 0000002384 00000 f 0000002385 00000 f 0000002386 00000 f 0000002387 00000 f 0000002388 00000 f 0000002389 00000 f 0000002390 00000 f 0000002391 00000 f 0000002392 00000 f 0000002393 00000 f 0000002394 00000 f 0000002395 00000 f 0000002396 00000 f 0000002397 00000 f 0000002398 00000 f 0000002399 00000 f 0000002400 00000 f 0000002401 00000 f 0000002402 00000 f 0000002403 00000 f 0000002404 00000 f 0000002405 00000 f 0000002406 00000 f 0000002407 00000 f 0000002408 00000 f 0000002409 00000 f 0000002410 00000 f 0000002411 00000 f 0000002412 00000 f 0000002413 00000 f 0000002414 00000 f 0000002415 00000 f 0000002416 00000 f 0000002417 00000 f 0000002418 00000 f 0000002419 00000 f 0000002420 00000 f 0000002421 00000 f 0000002422 00000 f 0000002423 00000 f 0000002424 00000 f 0000002425 00000 f 0000002426 00000 f 0000002427 00000 f 0000002428 00000 f 0000002429 00000 f 0000002430 00000 f 0000002431 00000 f 0000002432 00000 f 0000002433 00000 f 0000002434 00000 f 0000002435 00000 f 0000002436 00000 f 0000002437 00000 f 0000002438 00000 f 0000002439 00000 f 0000002440 00000 f 0000002441 00000 f 0000002442 00000 f 0000002443 00000 f 0000002444 00000 f 0000002445 00000 f 0000002446 00000 f 0000002447 00000 f 0000002448 00000 f 0000002449 00000 f 0000002450 00000 f 0000002451 00000 f 0000002452 00000 f 0000002453 00000 f 0000002454 00000 f 0000002455 00000 f 0000002456 00000 f 0000002457 00000 f 0000002458 00000 f 0000002459 00000 f 0000002460 00000 f 0000002461 00000 f 0000002462 00000 f 0000002463 00000 f 0000002464 00000 f 0000002465 00000 f 0000002466 00000 f 0000002467 00000 f 0000002468 00000 f 0000002469 00000 f 0000002470 00000 f 0000002471 00000 f 0000002472 00000 f 0000002473 00000 f 0000002474 00000 f 0000002475 00000 f 0000002476 00000 f 0000002477 00000 f 0000002478 00000 f 0000002479 00000 f 0000002480 00000 f 0000002481 00000 f 0000002482 00000 f 0000002483 00000 f 0000002484 00000 f 0000002485 00000 f 0000002486 00000 f 0000002487 00000 f 0000002488 00000 f 0000002489 00000 f 0000002490 00000 f 0000002491 00000 f 0000002492 00000 f 0000002493 00000 f 0000002494 00000 f 0000002495 00000 f 0000002496 00000 f 0000002497 00000 f 0000002498 00000 f 0000002499 00000 f 0000002500 00000 f 0000002501 00000 f 0000002502 00000 f 0000002503 00000 f 0000002504 00000 f 0000002505 00000 f 0000002506 00000 f 0000002507 00000 f 0000002508 00000 f 0000002509 00000 f 0000002510 00000 f 0000002511 00000 f 0000002512 00000 f 0000002513 00000 f 0000002514 00000 f 0000002515 00000 f 0000002516 00000 f 0000002517 00000 f 0000002518 00000 f 0000002519 00000 f 0000002520 00000 f 0000002521 00000 f 0000002522 00000 f 0000002523 00000 f 0000002524 00000 f 0000002525 00000 f 0000002526 00000 f 0000002527 00000 f 0000002528 00000 f 0000002529 00000 f 0000002530 00000 f 0000002531 00000 f 0000002532 00000 f 0000002533 00000 f 0000002534 00000 f 0000002535 00000 f 0000002536 00000 f 0000002537 00000 f 0000002538 00000 f 0000002539 00000 f 0000002540 00000 f 0000002541 00000 f 0000002542 00000 f 0000002543 00000 f 0000002544 00000 f 0000002545 00000 f 0000002546 00000 f 0000002547 00000 f 0000002548 00000 f 0000002549 00000 f 0000002550 00000 f 0000002551 00000 f 0000002552 00000 f 0000002553 00000 f 0000002554 00000 f 0000002555 00000 f 0000002556 00000 f 0000002557 00000 f 0000002558 00000 f 0000002559 00000 f 0000002560 00000 f 0000002561 00000 f 0000002562 00000 f 0000002563 00000 f 0000002564 00000 f 0000002565 00000 f 0000002566 00000 f 0000002567 00000 f 0000002568 00000 f 0000002569 00000 f 0000002570 00000 f 0000002571 00000 f 0000002572 00000 f 0000002573 00000 f 0000002574 00000 f 0000002575 00000 f 0000002576 00000 f 0000002577 00000 f 0000002578 00000 f 0000002579 00000 f 0000002580 00000 f 0000002581 00000 f 0000002582 00000 f 0000002583 00000 f 0000002584 00000 f 0000002585 00000 f 0000002586 00000 f 0000002587 00000 f 0000002588 00000 f 0000002589 00000 f 0000002590 00000 f 0000002591 00000 f 0000002592 00000 f 0000002593 00000 f 0000002594 00000 f 0000002595 00000 f 0000002596 00000 f 0000002597 00000 f 0000002598 00000 f 0000002599 00000 f 0000002600 00000 f 0000002601 00000 f 0000002602 00000 f 0000002603 00000 f 0000002604 00000 f 0000002605 00000 f 0000002606 00000 f 0000002607 00000 f 0000002608 00000 f 0000002609 00000 f 0000002610 00000 f 0000002611 00000 f 0000002612 00000 f 0000002613 00000 f 0000002614 00000 f 0000002615 00000 f 0000002616 00000 f 0000002617 00000 f 0000002618 00000 f 0000002619 00000 f 0000002620 00000 f 0000002621 00000 f 0000002622 00000 f 0000002623 00000 f 0000002624 00000 f 0000002625 00000 f 0000002626 00000 f 0000002627 00000 f 0000002628 00000 f 0000002629 00000 f 0000002630 00000 f 0000002631 00000 f 0000002632 00000 f 0000002633 00000 f 0000002634 00000 f 0000002635 00000 f 0000002636 00000 f 0000002637 00000 f 0000002638 00000 f 0000002639 00000 f 0000002640 00000 f 0000002641 00000 f 0000002642 00000 f 0000002643 00000 f 0000002644 00000 f 0000002645 00000 f 0000002646 00000 f 0000002647 00000 f 0000002648 00000 f 0000002649 00000 f 0000002650 00000 f 0000002651 00000 f 0000002652 00000 f 0000002653 00000 f 0000002654 00000 f 0000002655 00000 f 0000002656 00000 f 0000002657 00000 f 0000002658 00000 f 0000002659 00000 f 0000002660 00000 f 0000002661 00000 f 0000002662 00000 f 0000002663 00000 f 0000002664 00000 f 0000002665 00000 f 0000002666 00000 f 0000002667 00000 f 0000002668 00000 f 0000002669 00000 f 0000002670 00000 f 0000002671 00000 f 0000002672 00000 f 0000002673 00000 f 0000002674 00000 f 0000002675 00000 f 0000002676 00000 f 0000002677 00000 f 0000002678 00000 f 0000002679 00000 f 0000002680 00000 f 0000002681 00000 f 0000002682 00000 f 0000002683 00000 f 0000002684 00000 f 0000002685 00000 f 0000002686 00000 f 0000002687 00000 f 0000002688 00000 f 0000002689 00000 f 0000002690 00000 f 0000002691 00000 f 0000002692 00000 f 0000002693 00000 f 0000002694 00000 f 0000002695 00000 f 0000002696 00000 f 0000002697 00000 f 0000002698 00000 f 0000002699 00000 f 0000002700 00000 f 0000002701 00000 f 0000002702 00000 f 0000002703 00000 f 0000002704 00000 f 0000002705 00000 f 0000002706 00000 f 0000002707 00000 f 0000002708 00000 f 0000002709 00000 f 0000002710 00000 f 0000002711 00000 f 0000002712 00000 f 0000002713 00000 f 0000002714 00000 f 0000002715 00000 f 0000002716 00000 f 0000002717 00000 f 0000002718 00000 f 0000002719 00000 f 0000002720 00000 f 0000002721 00000 f 0000002722 00000 f 0000002723 00000 f 0000002724 00000 f 0000002725 00000 f 0000002726 00000 f 0000002727 00000 f 0000002728 00000 f 0000002729 00000 f 0000002730 00000 f 0000002731 00000 f 0000002732 00000 f 0000002733 00000 f 0000002734 00000 f 0000002735 00000 f 0000002736 00000 f 0000002737 00000 f 0000002738 00000 f 0000002739 00000 f 0000002740 00000 f 0000002741 00000 f 0000002742 00000 f 0000002743 00000 f 0000002744 00000 f 0000002745 00000 f 0000002746 00000 f 0000002747 00000 f 0000002748 00000 f 0000002749 00000 f 0000002750 00000 f 0000002751 00000 f 0000002752 00000 f 0000002753 00000 f 0000002754 00000 f 0000002755 00000 f 0000002756 00000 f 0000002757 00000 f 0000002758 00000 f 0000002759 00000 f 0000002760 00000 f 0000002761 00000 f 0000002762 00000 f 0000002763 00000 f 0000002764 00000 f 0000002765 00000 f 0000002766 00000 f 0000002767 00000 f 0000002768 00000 f 0000002769 00000 f 0000002770 00000 f 0000002771 00000 f 0000002772 00000 f 0000002773 00000 f 0000002774 00000 f 0000002775 00000 f 0000002776 00000 f 0000002777 00000 f 0000002778 00000 f 0000002779 00000 f 0000002780 00000 f 0000002781 00000 f 0000002782 00000 f 0000002783 00000 f 0000002784 00000 f 0000002785 00000 f 0000002786 00000 f 0000002787 00000 f 0000002788 00000 f 0000002789 00000 f 0000002790 00000 f 0000002791 00000 f 0000002792 00000 f 0000002793 00000 f 0000002794 00000 f 0000002795 00000 f 0000002796 00000 f 0000002797 00000 f 0000002798 00000 f 0000002799 00000 f 0000002800 00000 f 0000002801 00000 f 0000002802 00000 f 0000002803 00000 f 0000002804 00000 f 0000002805 00000 f 0000002806 00000 f 0000002807 00000 f 0000002808 00000 f 0000002809 00000 f 0000002810 00000 f 0000002811 00000 f 0000002812 00000 f 0000002813 00000 f 0000002814 00000 f 0000002815 00000 f 0000002816 00000 f 0000002817 00000 f 0000002818 00000 f 0000002819 00000 f 0000002820 00000 f 0000002821 00000 f 0000002822 00000 f 0000002823 00000 f 0000002824 00000 f 0000002825 00000 f 0000002826 00000 f 0000002827 00000 f 0000002828 00000 f 0000002829 00000 f 0000002830 00000 f 0000002831 00000 f 0000002832 00000 f 0000002833 00000 f 0000002834 00000 f 0000002835 00000 f 0000002836 00000 f 0000002837 00000 f 0000002838 00000 f 0000002839 00000 f 0000002840 00000 f 0000002841 00000 f 0000002842 00000 f 0000002843 00000 f 0000002844 00000 f 0000002845 00000 f 0000002846 00000 f 0000002847 00000 f 0000002848 00000 f 0000002849 00000 f 0000002850 00000 f 0000002851 00000 f 0000002852 00000 f 0000002853 00000 f 0000002854 00000 f 0000002855 00000 f 0000002856 00000 f 0000002857 00000 f 0000002858 00000 f 0000002859 00000 f 0000002860 00000 f 0000002861 00000 f 0000002862 00000 f 0000002863 00000 f 0000002864 00000 f 0000002865 00000 f 0000002866 00000 f 0000002867 00000 f 0000002868 00000 f 0000002869 00000 f 0000002870 00000 f 0000002871 00000 f 0000002872 00000 f 0000002873 00000 f 0000002874 00000 f 0000002875 00000 f 0000002876 00000 f 0000002877 00000 f 0000002878 00000 f 0000002879 00000 f 0000002880 00000 f 0000002881 00000 f 0000002882 00000 f 0000002883 00000 f 0000002884 00000 f 0000002885 00000 f 0000002886 00000 f 0000002887 00000 f 0000002888 00000 f 0000002889 00000 f 0000002890 00000 f 0000002891 00000 f 0000002892 00000 f 0000002893 00000 f 0000002894 00000 f 0000002895 00000 f 0000002896 00000 f 0000002897 00000 f 0000002898 00000 f 0000002899 00000 f 0000002900 00000 f 0000002901 00000 f 0000002902 00000 f 0000002903 00000 f 0000002904 00000 f 0000002905 00000 f 0000002906 00000 f 0000002907 00000 f 0000002908 00000 f 0000002909 00000 f 0000002910 00000 f 0000002911 00000 f 0000002912 00000 f 0000002913 00000 f 0000002914 00000 f 0000002915 00000 f 0000002916 00000 f 0000002917 00000 f 0000002918 00000 f 0000002919 00000 f 0000002920 00000 f 0000002921 00000 f 0000002922 00000 f 0000002923 00000 f 0000002924 00000 f 0000002925 00000 f 0000002926 00000 f 0000002927 00000 f 0000002928 00000 f 0000002929 00000 f 0000002930 00000 f 0000002931 00000 f 0000002932 00000 f 0000002933 00000 f 0000002934 00000 f 0000002935 00000 f 0000002936 00000 f 0000002937 00000 f 0000002938 00000 f 0000002939 00000 f 0000002940 00000 f 0000002941 00000 f 0000002942 00000 f 0000002943 00000 f 0000002944 00000 f 0000002945 00000 f 0000002946 00000 f 0000002947 00000 f 0000002948 00000 f 0000002949 00000 f 0000002950 00000 f 0000002951 00000 f 0000002952 00000 f 0000002953 00000 f 0000002954 00000 f 0000002955 00000 f 0000002956 00000 f 0000002957 00000 f 0000002958 00000 f 0000002959 00000 f 0000002960 00000 f 0000002961 00000 f 0000002962 00000 f 0000002963 00000 f 0000002964 00000 f 0000002965 00000 f 0000002966 00000 f 0000002967 00000 f 0000002968 00000 f 0000002969 00000 f 0000002970 00000 f 0000002971 00000 f 0000002972 00000 f 0000002973 00000 f 0000002974 00000 f 0000002975 00000 f 0000002976 00000 f 0000002977 00000 f 0000002978 00000 f 0000002979 00000 f 0000002980 00000 f 0000002981 00000 f 0000002982 00000 f 0000002983 00000 f 0000002984 00000 f 0000002985 00000 f 0000002986 00000 f 0000002987 00000 f 0000002988 00000 f 0000002989 00000 f 0000002990 00000 f 0000002991 00000 f 0000002992 00000 f 0000002993 00000 f 0000002994 00000 f 0000002995 00000 f 0000002996 00000 f 0000002997 00000 f 0000002998 00000 f 0000002999 00000 f 0000003000 00000 f 0000003001 00000 f 0000003002 00000 f 0000003003 00000 f 0000003004 00000 f 0000003005 00000 f 0000003006 00000 f 0000003007 00000 f 0000003008 00000 f 0000003009 00000 f 0000003010 00000 f 0000003011 00000 f 0000003012 00000 f 0000003013 00000 f 0000003014 00000 f 0000003015 00000 f 0000003016 00000 f 0000003017 00000 f 0000003018 00000 f 0000003019 00000 f 0000003020 00000 f 0000003021 00000 f 0000003022 00000 f 0000003023 00000 f 0000003024 00000 f 0000003025 00000 f 0000003026 00000 f 0000003027 00000 f 0000003028 00000 f 0000003029 00000 f 0000003030 00000 f 0000003031 00000 f 0000003032 00000 f 0000003033 00000 f 0000003034 00000 f 0000003035 00000 f 0000003036 00000 f 0000003037 00000 f 0000003038 00000 f 0000003039 00000 f 0000003040 00000 f 0000003041 00000 f 0000003042 00000 f 0000003043 00000 f 0000003044 00000 f 0000003045 00000 f 0000003046 00000 f 0000003047 00000 f 0000003048 00000 f 0000003049 00000 f 0000003050 00000 f 0000003051 00000 f 0000003052 00000 f 0000003053 00000 f 0000003054 00000 f 0000003055 00000 f 0000003056 00000 f 0000003057 00000 f 0000003058 00000 f 0000003059 00000 f 0000003060 00000 f 0000003061 00000 f 0000003062 00000 f 0000003063 00000 f 0000003064 00000 f 0000003065 00000 f 0000003066 00000 f 0000003067 00000 f 0000003068 00000 f 0000003069 00000 f 0000003070 00000 f 0000003071 00000 f 0000003072 00000 f 0000003073 00000 f 0000003074 00000 f 0000003075 00000 f 0000003076 00000 f 0000003077 00000 f 0000003078 00000 f 0000003079 00000 f 0000003080 00000 f 0000003081 00000 f 0000003082 00000 f 0000003083 00000 f 0000003084 00000 f 0000003085 00000 f 0000003086 00000 f 0000003087 00000 f 0000003088 00000 f 0000003089 00000 f 0000003090 00000 f 0000003091 00000 f 0000003092 00000 f 0000003093 00000 f 0000003094 00000 f 0000003095 00000 f 0000003096 00000 f 0000003097 00000 f 0000003098 00000 f 0000003099 00000 f 0000003100 00000 f 0000003101 00000 f 0000003102 00000 f 0000003103 00000 f 0000003104 00000 f 0000003105 00000 f 0000003106 00000 f 0000003107 00000 f 0000003108 00000 f 0000003109 00000 f 0000003110 00000 f 0000003111 00000 f 0000003112 00000 f 0000003113 00000 f 0000003114 00000 f 0000003115 00000 f 0000003116 00000 f 0000003117 00000 f 0000003118 00000 f 0000003119 00000 f 0000003120 00000 f 0000003121 00000 f 0000003122 00000 f 0000003123 00000 f 0000003124 00000 f 0000003125 00000 f 0000003126 00000 f 0000003127 00000 f 0000003128 00000 f 0000003129 00000 f 0000003130 00000 f 0000003131 00000 f 0000003132 00000 f 0000003133 00000 f 0000003134 00000 f 0000003135 00000 f 0000003136 00000 f 0000003137 00000 f 0000003138 00000 f 0000003139 00000 f 0000003140 00000 f 0000003141 00000 f 0000003142 00000 f 0000003143 00000 f 0000003144 00000 f 0000003145 00000 f 0000003146 00000 f 0000003147 00000 f 0000003148 00000 f 0000003149 00000 f 0000003150 00000 f 0000003151 00000 f 0000003152 00000 f 0000003153 00000 f 0000003154 00000 f 0000003155 00000 f 0000003156 00000 f 0000003157 00000 f 0000003158 00000 f 0000003159 00000 f 0000003160 00000 f 0000003161 00000 f 0000003162 00000 f 0000003163 00000 f 0000003164 00000 f 0000003165 00000 f 0000003166 00000 f 0000003167 00000 f 0000003168 00000 f 0000003169 00000 f 0000003170 00000 f 0000003171 00000 f 0000003172 00000 f 0000003173 00000 f 0000003174 00000 f 0000003175 00000 f 0000003176 00000 f 0000003177 00000 f 0000003178 00000 f 0000003179 00000 f 0000003180 00000 f 0000003181 00000 f 0000003182 00000 f 0000003183 00000 f 0000003184 00000 f 0000003185 00000 f 0000003186 00000 f 0000003187 00000 f 0000003188 00000 f 0000003189 00000 f 0000003190 00000 f 0000003191 00000 f 0000003192 00000 f 0000003193 00000 f 0000003194 00000 f 0000003195 00000 f 0000003196 00000 f 0000003197 00000 f 0000003201 00000 f 0000030998 00000 n 0000033946 00000 n 0000033981 00000 n 0000003205 00000 f 0000034098 00000 n 0000036383 00000 n 0000036418 00000 n 0000003209 00000 f 0000036535 00000 n 0000041258 00000 n 0000041293 00000 n 0000003210 00000 f 0000003217 00000 f 0000041410 00000 n 0000041596 00000 n 0000041693 00000 n 0000041830 00000 n 0000041927 00000 n 0000042024 00000 n 0000003218 00000 f 0000003219 00000 f 0000003220 00000 f 0000003221 00000 f 0000003222 00000 f 0000003223 00000 f 0000003228 00000 f 0000042121 00000 n 0000043823 00000 n 0000043871 00000 n 0000043988 00000 n 0000003232 00000 f 0000044106 00000 n 0000048838 00000 n 0000048873 00000 n 0000003233 00000 f 0000003240 00000 f 0000048990 00000 n 0000049176 00000 n 0000049273 00000 n 0000049410 00000 n 0000049507 00000 n 0000049604 00000 n 0000003241 00000 f 0000003242 00000 f 0000003243 00000 f 0000003250 00000 f 0000049701 00000 n 0000049887 00000 n 0000049983 00000 n 0000050120 00000 n 0000050216 00000 n 0000050312 00000 n 0000003251 00000 f 0000003252 00000 f 0000003253 00000 f 0000003254 00000 f 0000003255 00000 f 0000003256 00000 f 0000003257 00000 f 0000003258 00000 f 0000003259 00000 f 0000003260 00000 f 0000003261 00000 f 0000003262 00000 f 0000003263 00000 f 0000003264 00000 f 0000003265 00000 f 0000003266 00000 f 0000003267 00000 f 0000003268 00000 f 0000003269 00000 f 0000003270 00000 f 0000003271 00000 f 0000003272 00000 f 0000003273 00000 f 0000003274 00000 f 0000003275 00000 f 0000003276 00000 f 0000003277 00000 f 0000003278 00000 f 0000003279 00000 f 0000003280 00000 f 0000003281 00000 f 0000003282 00000 f 0000003283 00000 f 0000003284 00000 f 0000003285 00000 f 0000003286 00000 f 0000003287 00000 f 0000003288 00000 f 0000003289 00000 f 0000003290 00000 f 0000003291 00000 f 0000003292 00000 f 0000003293 00000 f 0000003294 00000 f 0000003295 00000 f 0000003296 00000 f 0000003297 00000 f 0000003298 00000 f 0000003299 00000 f 0000003300 00000 f 0000003306 00000 f 0000050408 00000 n 0000052764 00000 n 0000052825 00000 n 0000052942 00000 n 0000053060 00000 n 0000003310 00000 f 0000053178 00000 n 0000055434 00000 n 0000055469 00000 n 0000003311 00000 f 0000003318 00000 f 0000055586 00000 n 0000055772 00000 n 0000055868 00000 n 0000056005 00000 n 0000056101 00000 n 0000056197 00000 n 0000003319 00000 f 0000003320 00000 f 0000003321 00000 f 0000003322 00000 f 0000003323 00000 f 0000003324 00000 f 0000003325 00000 f 0000003326 00000 f 0000003327 00000 f 0000003328 00000 f 0000003329 00000 f 0000003330 00000 f 0000003331 00000 f 0000003332 00000 f 0000003333 00000 f 0000003334 00000 f 0000003335 00000 f 0000003336 00000 f 0000003337 00000 f 0000003338 00000 f 0000003339 00000 f 0000003340 00000 f 0000003341 00000 f 0000003342 00000 f 0000003343 00000 f 0000003344 00000 f 0000003345 00000 f 0000003346 00000 f 0000003347 00000 f 0000003354 00000 f 0000056293 00000 n 0000056479 00000 n 0000056576 00000 n 0000056713 00000 n 0000056810 00000 n 0000056907 00000 n 0000003355 00000 f 0000003356 00000 f 0000003357 00000 f 0000003358 00000 f 0000003359 00000 f 0000003360 00000 f 0000003361 00000 f 0000003362 00000 f 0000003363 00000 f 0000003364 00000 f 0000003365 00000 f 0000003366 00000 f 0000003367 00000 f 0000003368 00000 f 0000003369 00000 f 0000003370 00000 f 0000003371 00000 f 0000003372 00000 f 0000003373 00000 f 0000003374 00000 f 0000003375 00000 f 0000003376 00000 f 0000003377 00000 f 0000003378 00000 f 0000003379 00000 f 0000003380 00000 f 0000003381 00000 f 0000003382 00000 f 0000003383 00000 f 0000003384 00000 f 0000003385 00000 f 0000003386 00000 f 0000003387 00000 f 0000003388 00000 f 0000003389 00000 f 0000003390 00000 f 0000003391 00000 f 0000003392 00000 f 0000003393 00000 f 0000003394 00000 f 0000003395 00000 f 0000003401 00000 f 0000057004 00000 n 0000059233 00000 n 0000059294 00000 n 0000059411 00000 n 0000059529 00000 n 0000003405 00000 f 0000059647 00000 n 0000062048 00000 n 0000062083 00000 n 0000003409 00000 f 0000062200 00000 n 0000064465 00000 n 0000064500 00000 n 0000003410 00000 f 0000003485 00000 f 0000064617 00000 n 0000064931 00000 n 0000065009 00000 n 0000065055 00000 n 0000065197 00000 n 0000065349 00000 n 0000065572 00000 n 0000066073 00000 n 0000066314 00000 n 0000066654 00000 n 0000066883 00000 n 0000066921 00000 n 0000069592 00000 n 0000071384 00000 n 0000071421 00000 n 0000071574 00000 n 0000071646 00000 n 0000071799 00000 n 0000071872 00000 n 0000071968 00000 n 0000000000 65535 f 0000003431 65535 f 0000003432 65535 f 0000072070 00000 n 0000003433 65535 f 0000003435 65535 f 0000003436 65535 f 0000072187 00000 n 0000072237 00000 n 0000003437 65535 f 0000072351 00000 n 0000003440 65535 f 0000072399 00000 n 0000003442 65535 f 0000003444 65535 f 0000072447 00000 n 0000003445 65535 f 0000072495 00000 n 0000003447 65535 f 0000072543 00000 n 0000003449 65535 f 0000003451 65535 f 0000072591 00000 n 0000003452 65535 f 0000003454 65535 f 0000003455 65535 f 0000072639 00000 n 0000003456 65535 f 0000072732 00000 n 0000003458 65535 f 0000072780 00000 n 0000003460 65535 f 0000072828 00000 n 0000003462 65535 f 0000003464 65535 f 0000003465 65535 f 0000072876 00000 n 0000003466 65535 f 0000072969 00000 n 0000003468 65535 f 0000073017 00000 n 0000003470 65535 f 0000073065 00000 n 0000003472 65535 f 0000003474 65535 f 0000003475 65535 f 0000003476 65535 f 0000003477 65535 f 0000003478 65535 f 0000003479 65535 f 0000003480 65535 f 0000073113 00000 n 0000073366 00000 n 0000073404 00000 n 0000000000 00001 f 0000073544 00000 n 0000003481 65535 f 0000003487 65535 f 0000003488 65535 f trailer <> xref 0 0 trailer <<3B0579F55A9C4340AAB9C22E1AE94FD2>]>> startxref 147245 %%EOF 3520 0 obj<>stream xレフ樽JAッn0ンユラ祿Q<`チ8⌒aW':( ホ@ョuヘWッQS 39N{怩L9!ォ┴T寳 @ョ!「3`i7給88S墟ォャI1I"aィ 魑ヤ。%ィcヒ瞠フL1ユaァノ畸!*シF'T*Xュ孰onチ梟ロ畭xン 少Vャラ朧オ-リyfコ`ーマg%]沢+ンq慌サヤヨFレ省v|毫mシ経崚n;n&ェホ少 ィgR鱇ゥtJ・gS髞J/ァメゥlA*サヨ゚| 0! endstream endobj 3521 0 obj<>stream xレ26ア0T0Pーアアウ0 ツ5 endstream endobj 3522 0 obj<<613F84376FCEF6469901F8AC112AEF98>]/Info 70 0 R/Filter/FlateDecode/W[1 3 1]/Index[3440 1 3442 1 3444 2 3447 1 3449 1 3451 2 3454 1 3456 1 3458 1 3460 1 3462 1 3464 1 3466 1 3468 1 3470 1 3472 1 3474 1 3476 6 3520 3]/DecodeParms<>/Size 3523/Type/XRef>>stream xレbbb=タタト激d|ノ淤H *ヲ*ーロZ フョ^ endstream endobj 58 0 obj<> endobj 70 0 obj<> endobj 72 0 obj<>/OCGs[3414 0 R]>>/StructTreeRoot 3431 0 R/Type/Catalog>> endobj 3425 0 obj<>/A 3426 0 R/H/I/Border[0 0 0]/Type/Annot>> endobj 3427 0 obj<>/A 3428 0 R/H/I/Border[0 0 0]/Type/Annot>> endobj 3430 0 obj<> endobj 3490 0 obj<>/Encoding<>>>>> endobj 3491 0 obj<> endobj 3492 0 obj<> endobj 3493 0 obj<> endobj 3494 0 obj<>/ArtBox[115.86 35.4727 469.261 760.0]/MediaBox[0.0 0.0 612.0 792.0]/TrimBox[0.0 0.0 612.0 792.0]/Thumb 3505 0 R/Resources<>/ProcSet[/PDF/Text]/Properties<>>>/ExtGState<>>>/Type/Page/LastModified(D:20070119150608-04'00')>> endobj 3495 0 obj<> endobj 3496 0 obj<> endobj 3497 0 obj<> endobj 3498 0 obj<>stream H餓遥tNwヌ毬漲%ツXbュ}ケA、鳳ユLD,*c7モA$Hネ&)j+トョ然エZKIQk[jii鞭ユRKIB捻4蛩%シ799fホ劔?譛9g賣ス轜マサソワ~~マ゙%壕ハR 1Et鞁サヘ鵈窮・&Qゥ5]{6 ェ俐リ Y(}}%D&] _ホW4j、19 袖孫wtメ推ヘhツ英vHリ鞐ロ胃ク9糎賻ィネチ松ク^ノ遅ヘJGEテ!Q徽籏0rL゚;>セ箙 ェ^/>qP$5:9昏G 祖通ャリ(~詞7E&Dユス'ア籏閏9)qトネケケgヨヘルCヤコ0ixTR\zcDGwUリH槧鵑。エ惷ネ瘻ノ[<ュK&U3^。 栖}b{ヌ粂県 [[ト I。 Qツィ]tフーH鹽kキ!態gク4n_Mカjナ<ハカカBT鱗^カ' _ェGオLA/ッ・゙サk5鰊衵ヤp順轉ヒォXU鍋{"ォZハT守ホョァ^瓏ワ幵=槝"?シ垤V゙チ゚wシ1>ノggホ觸セニソハ~ホ閹^3!1HツH乎x,ヌ*ャチzlニ釐&#waセヌ癈メ榿9\ト%ろク;x'xヲ4UJ拔evィU徊ョBTクィ「蜑{q-ョヒ/q~冏\^タ^ニ溟&ち秕シソ|萼|/%ッヒヴA=「閭ソ 更 テp個8d`%2ア藝ソトvタ7qヌ#N ~F6rq ソ7ワテ#クPィXyゥメェがィェェm3ャゥ5;9s3セマsxソマqッ膈惺N゙ヘ{>フヌ溷 愿W8出ハ~_7@tGoシDb逗7ニbV`5ヨbカ |%#ソニキリ8ハァ、 迹ヒクク砂x逢(PコRハGツUリゥjィx核ゥィAjネ'aヘIilr=艷トヘy2ァ4榁ウ8砕=^ネ及)/躑シラz゙ネ廂K゙ホ_キシQ>チ?yホ簍|賓ネ~并.?萇庇j鰻h左:5シ式濶?。/` ムxノ)企菓xs.訥|%ヒ >ナgリ$sカU8トnナ8後8ヾ8 jョ 7聡x キ"e(oUF標セェ潮ヲェ+ソ「噴j+KユUU男、圷ヲ麁ェスj・Zォカェソ概QB)ヘ榕ナ:鴬T.捨鉞S^ヒ潁9ラキ7セテ?a力'。CエC{t'Y0)卦Lテ フツ、!竈,ニGXo薨ケ鱈ゥYフヌゥ(UOィ@ユP5VA但-$BU亘ソ櫑ネ&3ノRv&i.匹uJ「ヘエ賑ムq:OW6=尤*腮HAヤB*貢ヤ下q2アシoオェ? ]r蘇*?效.ム45tエR絅[ォ「mユ ム没UPM籔。jLヘ)レロ樛ワv┳v┨3Roィ応カ表b・嚢笛ャノ%ヨ+オト啝lH・帥gナム茆齡R>Bネォロュ嬬イ註2=Lリ葉wスヒEk「ケ楢~]。gュ齒H綛}ァァ:鳥n*・繕ヤrEセtン嵜擂7=ナ.イ舅イuI(w3 ン+hッ5rh;ツH+,,エヌpQ」ィ2+&杞eレ轍コ灼ァ讖jミD-Y岫ヘモ吠オ Z。セ_?_d甑Kqm(9イe鍵F?c1゚Xd,1V[ニ9羲d ワ藍「膰ーュnゥソゥ~OフrfeモマtfCウアルヤ 6CフPウ撕h&+ヘユ:UNソ」。」#ワアタ鷹ヤ斂Yホ鴉ャャャ螫l瑟闌tFユヨk留ーネメュ2Vyォ旦ヘェaユアュfVo・Xゥヨ k5゚Zfュウ6[ロュ旒^訊フ:g]o?ネ?レ?.yユ&.ンeコ埆B\。ョヨョvョMョkョBタgュ槹-pコm&eリt2エ レゥミル'tホ2片I:iシツミ鹸Fw#ワH7牛衄zc孀ヨネ5{ナtイツ"Tセ_垣YニャhV5M。 tのW矩ト Bgペミ鳬齏H/。SA霈瑶+ヲlモ1拵%tメュ kM 揀B隨ミ .。岌ルtエ|テ・ケjコ\-Н亅ュォス、ヒ*tRータc5 曖ェ$レupXHエセn0 コテQ怱cpNタホタ)aユ^X釿,ヘン0zC/}EA ソミm チ0Hエ9ツ0Q駱」Dッムーニタhニツ}H8#。BF ッ b.タ2ミ@;フV ヌE°・n,チh90'K! ^2\+p%ョツユクラ:\、セlトMクキ[/`0Nナュク キc4タ\閠;1s」#戝シI閼wワアNテンクb,ニ>, 6batニ拾、ヨテ窗ツ+Hp]ーコ「ツテx鞘1<.$コ」zbI<ァ 槐sxbミ スムK oクラ煌\ナヌ0Oヲbセタ漣 モム_|XZク"ヲ蝿1i2ネ軸Qvイヌ2買rR.rワ腥y(/9Q>,Kゥ姪T Qarヲ"T矧Qqr。4構ノ +`ErG? O*I^膊>T掛i2Mム:Mァ4吐Qヘヲ94欲・yrファP 」エ青iEミbz{?Jネス~榑3J・逕F/隘ョェォ鰕・モkzCo)Ξツ T$`JVスKャチ'VサST.Yス「wキィ|ヘ/ェ2s謙ツ?yF獗ョQUネ7~・イFQマィo40轟ニF」ゥムフ4-喧F+m幻F;」スムAtン({匹衫|7モ鑛稙シ弩J^ナォy ッ蛄シ^ィナyoア聞vホ"サx7眇ヒqシ譲s<焜|>ハヌ8游倒外>ヒ鋩<_煖|I(}`-|'r_|登mセテw゚慘?~ツOァsシ79浩K~ナ鵈6チf ニJー カテ~シ[`+トテ8オェゥjヲZィ@ユ\オVmT[ユNオTュ9゙。X-: Jオ[ウアフト:8C├sp(タ諾qタcyjッ:ィ撮ホ<P楝Cx"蹣<勞p0O虔<檎t榁3ナ槍シ$ 9\|[┷キP絏シ#y8払ニ cー1T廴]」DJ「tハメ-コMwD5E-u+ンZS 蟐ワD鈍twンCtレL譴メ.コォF否H7ヨMDk>(z;ョO闢「ン。醒「窰Gン_r旅Q・Dヘ#H=Jぼp林レSネ~r ・キ aeU町ユYX・シe穣チ瓧・ャヒ葹|&$8 cノU_ヨ)ヨ ッソJイモ`qーネlリJヘィem*+ちャ4^トys艾Bコb90Iゥロ2Jョメ爭0ャ示Z4NW絛ユuナマススン薔YX┨yぬB[D賠ン%(QAム"射W寒1ヌm」#1O憇&アカヲ篤ッヲ53>曝%VテトヲISヤ、6儉tRmH'ュメ8オS}ス晟e゙s?ホス釛效ァ7('a劫(クタ@=[ケ/ァqJ\&K_ナニ9イQニn 9柢 ク%エYフ>甍遠3ニf鐚ア。nシjク祁リ 6'ロ tセ SyH4峨rムn!|e5KXノvレ カq|曉∂ p+c5lr節笈 b滉テk>7 ァネト>馨ナュ幎L・ナ(ォチ~6皸」(鉅37ーソ囲g恐メbノ^";r !゚タル臺.ソネ?Dセ勇ッ腆lシgo{;オ疏xニ^%羇ムoY! _F~xラ聰H;タネ^廐%籥y f」サCタ蹴チKワ`*XEN( !_ミウ゚アkャ +$r、:タル|o珈 %TQ.セ/~*(Jt把ネョケ酌Αヌ尋トナウ煖6x^*゙ワLェマ-u[タラ3Y゙&被テ('48e/"XヘK_ウ|滅8)3ハ扇Sa?シ%ツZaロ。イ冦cマ gタ^ナ1ィ?%n絖ト y9'ェ皚j5シ?ヘw. ~濁ョpDレI"(セ-v M陲KI|,薨薐峰8#愍J^葵ロ決ェ|H~G@~?o;h芹セイヌロgロku銕ソイ涕_ア鯖ァナミ~ハLyカJ*窖チホ「8YセA∩タ詩糒4h。5<*ホ_`ッ休捐C&ートナz‐ス%)M巌纖`ワト^刷,幕ヘOス:ミニホ縦トuXc ュ`Oi%tQヨpァ朋sv Xエ檣)讒°ッP+Zォw鯢ャ[(n 8 ー瘻鬱4Xチヒl.セムV uウZ=>ナク燦削、ヒ.|%[ツ願(}ォフfイ)&ケ1アl:`'?&ンヲn1縄・ォーyム瑜cyリホr3ン含Kヘhシアハ献c8<Qトzムラ<{キxノ恠Do4ハGVpチ%~BWナ#リOY ッ!/Y虐(ニ_cアツ:*ヲbヨト)Ie゚襾弓F39,{{├ムロ^.ワ>9.ヨ書]x掠器ヲ導ョクタァテ廈蜊@ラ_桾マロヲ!ロル zq觴@ 5.<ナチ*z ~ハ。E0;<,ホケzトタノ維クホXIャイ:梹C.ミMd* t>ナヒIヌ;oニャSM+`'(「縋:蝌娥クァサネq既gニル}圧=ミ 2ト嵎ァLス リ<夐_觴ニウゥu徹ム\ e@メ4鏤7z"14∵ハ_0Nア%F1_+ホー@テ1ェ: |エHニ9)-・Yアアレ1トイ葦シホWカ`~鮠鳥ナsfヘ1}レヤ「oxァL梍;Q}ネ」臈Oネrgfクメヌァ幸帚L灯邁ロdIpFAオ2「閇]ハSォェ ヘカレ屡:"コぐハムct%b SF畳a臘5メ74メ729紐*-,Pが「ィJ盤ラP゚Pテ巌oユ[スV= u箱ォ-,「ハ肯Z0タr ~ユ゚_X@暃 ィ&ヲァォ;YfUxzー、涛# J髯j ィgィS][壗P0璋xツ:7ォM:ゥzイラB~kン贐ヨ6ハZ4エ[,靦:「Nj岳[ヤ免.テ)^ミモ7ケセibアミウJンB コヨ*fSモ朸WjCJ=7ニ侏s+#Z%カタ%V/Wー゚駘'カTフ祷ァ:_ォ4{"=NュPロエu&SモiYサ蹈fヲッロクJ僊Eォ ゥスフュY昴H[ヨ~2テァd喧t:S.カsLp%1鮹J偉ェYテヘZイ騒eヲF鵤8┛4+ミ$、祗ナ讒オ亢訝 テ/フ0Ko・ヨ麭域,1ヘコ罹T6チヤ」{{lケホロdVM?q5ネラuッWママ7]トM。ォ=ォー`c帆ャョw*」ワmcク、ラ゙QヨレミP[。& yテ:序寵超ヲd}ノネ O=!Jモy#ノホゥチカ搓籔!yrオコカ>、オネンVラ綱 ノ季dテ5=ユn>\縅aI癆 #οF(Q羊gウ惻%jwタ+ュヲTホHユミ7沒「ニMs靖嬖テj%゙ムy」レ」ヤKヤ薬xu]スヲナ薯U"iZ・ェTjュ1jlmRァェuΠLメヨ#-5゙レヨ+;ツ8D+キrェ鏥ルョレNロオシ>ヤ$RvユNpニ相p蹈ネBン 耐#スfK1[H憫'クテケサ}D[-ゥduX(#ォマqソ讐s9ュ> 燥e糞dOエSEg輙ィpRI茂 換Ke8l9.~テハ)犹箪^逹メチメ%ホ[・Kゥ u>モヲzR<)ケー,ム3燗)R),5、 rノl*d斈、ラ勅奈/;ヌAルホl棍S輛フノ~WMカ釐ケ=ハムナレrPYヲテサ#1ム草ek|鳫楙qv,E舊:ク#歃Nw蟲ィホォ=カゥ殱u?オ}mヌホテアッ}o站<瑞/マ拭)44エ度宋K@{4地ィmヤュ「tォTカN メ、ミーij、L」抃5ヲm&瀕Q7 6堀゚ケNhヨ渭ヨwセン;鍄;mコ妝9介ワeJi8紺+ロイ&ロラf寢モ无辨MsC鴣i.ムィfハlタマ面エA6蝮ャ,ネ。ヨgヒ ク6z跿スrィa姦<>7o>ラ!マヒI ゙-w澆 GフレXメ蜍'ヤ'zオZスN蹈w"贊t稚。Hx「:ユ%C'ト0(L'堺ウマn|ツLケ|Cア。蒟tZr循ソU鶩、Nマ、ホケ^ |gユ宦境~エハ=&暘pd8O狩$ OCム懷qy最Wqウ>@ヤ」□゚E5ヲkルLKKsS 靄陏ヲf}ウ兇_ ヘMォ焼探笳:ソクeテWo<ワ^麝リ|`「<対、しOレカ?ナ3JエF因シメソラ'ヌ3ix0PU兔8yサoMhセ3ミッ[ヘマョアUG[ゥHS[キewヲィヘf"k&?bヨカ縊メ゚Wp^ノ晃<#笆」イqIzWツ{H・秋SワoMOL季「jャ,qォje<まモッ娃ェムIr羅ルxチ^ MホBSォfy鮪瑩ナイH)-M]欖フオY ッュハ ァ;3柑1ォ藁kPノカhhDa、P襍(bqユイ'#+T劼?6・H靡階ァR\ハ\容>Nツで0b1Xシェセネーf1lYg"儺・D"、ョk明アチソh4ュMkウマコ&WッノX從エリ,ュ拡エミェ゙「vqlG松撰錐・O~^゙0>mFア`基`ェニラ軻7洞・ッ<ネネユXR9 Tl.エO! E恣傅「JnA 臧S6ィソィセ゚ナ」ル耗-YOFc*=Kgカ>キノッ*イセnQマeッヨウ吸{ネ」ッ0メロyp[ロナW榻レ縡{"エ沾?ヨ=ア顏|+:ト埖モ忿$S蛋ルィサp:t(ンm戻SンIス{Jワ嚥{Pウ蘭8ェLa9ヲfd$ aオ楼,,Rホ「ノカオニfシヨネLォウ*GTS慳ェ6S}C薺ノr^sヨAlZ モ険!+9B1リ{[マカヒ邑フ<テGュ|ォ齷'ナ 齪キイフ&\"R]Sヘ炎マ絅Qォィ W*yQryuxYUM・゙jRnッメゥヌ鰒i5ョヲセイ`5ゥエuツ元$チrPメ0Xjャ・mエ久ノ#Nロ8芙Bc篋s\ スヌ,R6jG梺Fヒヌcョ1iシシ覈~x"52`G若イo0ニr r .庇ァFフチ譱蝮サ6wン鹿ゥjン・h0?s37N]オ3S」ウ銹マ昊。リレ}4:1Z'ネ$Z痂ワYaog蹲クcワノYテIBS「いopTャq48L8Zzミ璧)6ォl嗣ホp"ル"6ホ躍#岩3扣ホヌnQョ各メセi゚ャ譲ツス FャHAhハz贄$ケ;y;ネ訖捕olタユ04UネyトIタ鬯GヘカエャヲSキnI埔~Mu゚オ楷'゚レ ,,N_xキ/]オ?0スm,サ:モbG 9c ッロ'uワ/ ケp;サケォ]O/シ 湯,譁l`.n&{d「&ャgト6テ&ネ%a禄ゥv9/1ョ詐タ1 !ニI-誂@サ シサ∫& 4宦Kシネアg軈」勺ア星ルノSカDカワT^'ワ&bル|57z=ニ4共ェミ゙謁ニhkツ1r聨ィ70幤テ v^G嬪マ熏ツ帑[)フ」ョチSXk/耽o@レ[ー&ノMnセ ugウ暄[セ#:ミ5ローマ>ビ1津マモ縷^'゚ァ3 釘qZ~c主wァ>;ュ=ー=イュロラV+;璋メ゙コl_+Aネ~セ匐ι弁>マ寄5カ迅RX_wpHh゚ナ>lo,kn ミ挺:t畳bフマ築gクFhゥ鄒GZナ){1wpフメモツイQサ?0ニ窶;シエtN2;エルツソツ'リヌ1ァリナエe鴉拓|v跪=エレ,ワナXリソレーヨ`=カ/魏L{+Pヒー vOヒ(je :0<シ リリMb>モノ lnF;ニチエ[コ龍縺セ,c贔8ヌn織トヨ\俯gツ4kナ b髑i喫f劔セ-ン_、0?ル擶 ロ-イ駈チレZチモc~$-N短ヲYヲキeカbイク最ト2?レ笂ナcチ ォL居qハホIlーッ=NコAイ^リKコヒネ?駆yya周須iK3他f|ホ>G証ヲノ5彳BシV9.&フ/霰ツ]ロEdヒ朋Yミ鰾c苗kヲ"9ms9MamjW1 Ybミs%フハソリッリ(ホ+vfvシ6/.ツrオ11繧驚\&2ARリ獺ニRB※M 、、%ゥZ ヤィ*qJ屮BQQ・Jモェ+"H*7IC{g=レ5織ェェアsyスチ}"hーJqラKゥl3ャT =坑r\-挫゙・t ,b_坦函e廣シxネ?コニ郤%属ソv#ソ、}I$3籘Zセゥed|r 煮8FハシヘマD?ユケHgイ_vノI親:キpホ諚拡・;サ壹#ヌ8資8ニケe|}テ;恤8|kユスjG =ロh去#暗ホ}ラ;ュ)s抃+゚iオ享]斛ニVァ>朶-コUヌイan.8_Ar渝ョヲ 畜ソ。縡ロ>dS8dム冱アゥ擺]D hク閨ラ゙Kト{・\、。Vア!ニ5「0ブt.Tn^ {カK?vbン泯マ 迎9a-・2yレ」爿ァ ロ^ーョ1泯=v&ンoャs[;?b~シ(p%湫Eキgサ=ョsニマリヘx゙Wヨ"ァ敲y ・d躋紜z8hシオ'h{濂輊v k沫ワ?キ'Tメd鑛ョU乙廳n#0熊エ佼wQv%G・Ot;]e銜= ォ旋_exコ禎j樅オイ^脣y「}ー脈゚!ソシCテチ」2゚:^\胚K柄ヌロKホ'フ鮗]ww・ァ=麾サ璞タゥ/9チW´@jヤMィUタス8M3>ンAt薤「ォ'タッB rD9}州泡ッa゚ネ#(ル;ォュ(モu%ニ:c゙゚ィ}:らcヌ∂?T1-ミhツ[jm釼製ミセ ケx}亠 )`5x p(P]チシ+/p=メヘw韈+{ク^ゥセ7hシ+ソ!nHn鷯&~sクMコ゚ンHムnコ瓊鳬 Iオヤ氾ケ取Z耶gョ])゚m<2晤Wョ攣~費サ潸Z=O此ヒヘ#槨j膕0Pq礁0躇オ(#pネケ、jPレヒケMセ凵傴b燔s 4レC斥Rン懈ニヨ、屆モセミ肴ネ嵎ゥ5j璋Wk$h g$趙Eoケヲsy9レ岌?kロヘ.zォK゙レスw」トコテモ>ツ/耡NャKワv"槌党Oユ3Qワ7 F+:ヒjp^wォ{кソoコmルタW"~窪ム゚]#タ耐悳 WョRa鑛*D9ヨy枋*ワxオ4イ,レ」揩XフsWjャヘ耶sゥ。39^リ稍*ヲルタ>nk|{籐ッ僵P;ラ|ヌケ┸.T $旛ト゚{hg戡ッホGO0坩|ノ>膜任>|眦>|眦>|眦ウルミG4ネ&2ゥ膨dgヨ/ノD幄ヨ=5:蝸ynsィFHs縄g4キhl烽襤ハ1イ5キ)マ丼y 搓「ムニeヘS驅ゥテ5O ョH=、yjJw辯ゥ:」Qセウニ&ヘモiuニ~3ロ塑ィy22宿n枢5Es逃d ムワ「Y」5R8k壽6 フZヲy ユナ Qソャテ圦RY答ァOー5Cナワa4=ヘ喟ヒェム<& チIk==ァVs キ 「?-'喙4>g却カ圄sRs祈<.<痴Qsリ"軻!#Y喙迫。Tm_ナ扶WU\ルWqe_ナ扶WU\ルWqe_ナ扶WU\ルWqe_ナ扶We榿コ株h]E?;RォケE・テ0ソK1ヘqネ6硅糎5キhb莢Lル1ヘy5ソ<禀扁レ銛DGi受Dδソt呎M晒>P跣ヤ懃o茸マiホ寨>スィ9| ェl:D|爐跪ェ(ママァ9マァ卓ケ%堙r圃ニウ~rk4~rヒ醉>i枝rb?葭ネ^!マ{=テ檠a従ツョ]*i 5RUモZZ」'Jレ(|!籃&Eマ害ZM珱サ52#:ャ6[ラ~ニ '錦2菰Qk|N3ハ!ユn・bO、|ヘ ・w&VヤAV`ヘ悖EVU`ソf6縢=朮Cメ」E陣ヒュナマネt1ニ}MT鏡h赱,゙*惓Om袖Ibhスrシu喧ネ獄-トb<サZ゙唇ネェーkウ怡」゙mBメ卆メヒ嵌h冶x=fョ疹壹ァ桷&?Fcアo ゙ #ヘ「釖YロオシC~|辣仍遽eーナ韃嚥゚ロ・z貰溜8ヘチB鬲、セ&`ラネロエ$yーロッ4ル(輓塙篁ョ弟ヲ<ョカaサ5b償kエオ憾ctァ系チヨ3ラ。オルcモVYヒョ(嶼ヒ|uセ+u「ル*ェー^裃qEクml0;ア メョdヒ門ル枕ー$ Kイ1W陜鰡43ス樶ル#ワаxタ&ヌ;7 Uユ=ウサ廷捕屈シ;ロS]]ユWGZ瞳(ニ6ナ]ヒエセー廡;(ロ=L{d勘u厖館yヒネニムzk1ラ`メ゙/BL h騷;z゙g]逵vVラ}dRッyァ`ッ"゙Uw`ナ鈍:aンチOェ'O=レオル枉蝨LY゙ーヺカXク8 g4。絲5ャ'タユ{ー尨 マナ鉢H漢躋U i掠庭]6P&J駘キホ?;ゥ偈:*#<鴉r79噬Uョ痒ム琳(鸚ホV髀ウk設T= 誘mマ盾・[9t3嘱Xd゚キG&Wp]アツ它ソ史コ%ルシ塰?z9イ。ビョu`7ム/ケ悧\hsャミキ=-轣`wフ"br ヨ梗イカ浄゚eラEホbミ嘘uソy\昜ョsf`;座マi5貨h{MクpホKN瞻i|3罅gアwヘョcp'Oレ)Z-;ヾF 「Uckニ\nヤ'韜4ggキ艱ホ賊カdモ鳰Fマ」1OI+e錵鵡>Kスーdヘ4Gpヲ餮カl`餮ーオセチオワー麈Vn6 ナbヲ木゙ミgEハ\ヲ&}g濂洋 渝 +リ/テ羲e=ヘrヨg」ヒ^ェト2絡iル苦-ロレ+ 楴ェDygク檀i ェ゙ ホM1トミ佼鰕佩カ3=*+m8{テg+毓押'孕痼Gィ゚°艘耋y粫トDリa配Kモr-*モ艀ケR撓離 モF7!FY]]$砒宝吉Oヘッ/枩醯挨ナS +k b蜈峯[oEFリ`zF#ロ冢ォフネソメ7N73ルnリハ櫁髴vコテ樊iィ2ヨ'禰G゛Q\63・鞭ェク鼓Zイ」┛[・クモCョueヲшPY&ツ(S″{「鷹、o糧ウtSアH%Bト>苦ケEユhヲNユCLa2ユ較3>Kム倉.1嗄鹸サォb#黒1<{>@[梗M[Q# カ{.ナヤFi肉ハ0決/2nv3ニマウ[濠」$"耶麝モXGケbチ脅屈ヒqdZt靡p'イ'ミ~ UサGタ>鰯Xl搏iO\ノ甫c*Kス匚寉MK輌鮎DH]簑vI#ゥ"フ-1+}Dウ+ロ19&スユ狛ユイノ蜀Sヲョ Ex雫'H`cm^L潟ヌgf菓鱚鉄3SS{n愿ナゥ鳬=2+f;:キ_ヒレ瓜ュロV"¨sB箇呷佩hjZウケムCウネ鑼B\,ノ,$ヲ邇fイe\E倭%Qfャ戦カ沈l8}S・qe1Xメi娃HUラエ%&cヤmEA SSt・。2Qモェ*ト「ナ0bxコQニ抜ィョミUda概海#<窃<ミL1ヌ j#CミオfD、 暝FtHーPーL7梁ト フニ-倭M,s」E)*M)モyウ$ェナー#sミIEカテユ貝E::P$y賁!7泉;D ;) bュI?b櫚a8"堕怏レケェイカイケ膤クs>OsBル%Xロテミ- Q寫#0ン8>2芭淤MC] T禿1カ鉱GX攅"O啝cウ@[tメCォ/E。ツ@貳、ョヲaル蕃ー「ヌ貝aS「ツ「CC萸E務ム,ナKWンe扱ワF臾IPkル$ョ%6負ェ%!K。C>fヤ━rサ*&&酌Bソj>Yz靨クツ逗 葷<ム5h4レc鴾Hノ匠」、ホケv妃#jI|bラEサh ゚モクO、/」v懷ォ≪フー?レヒ8クmツ罷ク{美Eヨシ^/テK爭2x9シ^ ッそエサ瞰pシ^ ツ8炒zシM簑_)テpf(ズ8sx・グテFx趁$怩モーフ; ¥ツヌ璢 x> 渉ァ獗,|>_/ツ伶ヒ鷙セ_o互゚oチキヌタw狃=>~?テc8~ ?Αテ/燉 ~ ソ≡ツ璞# サOツ゚O枯S3XlX゚ノルカmャユZュ沫mロカケlロカケーlロ\誡9ラづチ隊hp,8Nァふチル濬p>ク\ .翼+チユ濟p=クワ nキ;チン濘p?x< 愉8x< マチヒ澡:xシ ゙j~|>氓マチ伶k-aQム1アq 艶Iノ)ゥi髏剞Yル9?#~An菽ッネ近; @!FE1G 薗(メ(Υ(ィ勘ハィがィィ★ィレィコィhhニhえh詆*hヨhΩh閠手ホ閧ョ閹閨櫁゙閭セ閾チち0テ0#0」0c0000S0モ030ウ0s00 ー恐Kーヒー+ーォーkーーー峅[ーロー;ーサ7vcbチ~タAツaチQテq愨I慊i愧Y愿y\タE\ツe\チU\テuワタMワツmワチ]ワテ}<タC<ツソx'x拡xx姥x7x仇 潁_ ゚$Eネa若苑Q采1ル固リ古ク孤LタЛトトLツ、Lニ膈LfJヲbjヲaZヲczf`FfbffaVfcv訌Nフ\ケ刧ソ2/c>跚,タュX櫓X版X%'KイKウ ヒイヒウ+イ+ウ ォイォウkイkウイウイウ 峇峙[イ[ウ ロイロウ;イ;ウ サイサウ{イ{ウイsrs祓縣錫H寂h若X ヲs<'p"'q2ァp*ァq:gp&gq6輛.輌>p!q1用)窯9Wp%Wq5ラp-ラq=7p#7q3キp+キq;wp'wo>テ<タ<トテ<ツ」<ニ<チ<ナモ<テウ<ヌシタ蕎トヒシツォシニシチ崗ナロシテサシヌ|タ|ト楼煩/脹嗤厄゚?? ソソ「$ィFaNAIEQMムC1KアGqO鼻 菱鴛DI畢ノ稗)弼ゥ彦i逼髟A肘剳EY筆ル匹9ウr薹ェシM農ソォ RaQQSq片*ゥR*ュ2*ォr*ッ ェィJェャ*ェェjェョェゥZェュ:ェォzェッチN5T#5V5U35W オT+オVオU;オWuT'uVuU7uWT/VU?ラ ヤ ヨ瑞リjkЁj認k姑j愴k&j&k寒j圜kfj貿k取j樊kjk塩j剿kVj彪k斎j旒k6j6k狂j峺kGネ┰B2ワュ=レォ}!%ラヤ!ヨユ1ラ 旄)旒旌9旛]ヤ%]ヨ]ユ5]ラ ンヤ-ンヨンユ=ンラ=ヤ#ォヌz「ァzヲ轉。陽・ラz」キzァ^Q滬Y_U゚ン‖Zカノaヨ゙ムルQユムン1モアロqラ゚ 慴隠vJ筅N趾N癆N袂N羔N鉚ホ煬ホ萠ホ筮ホ跪ホ癧!a +キ┥7$ュ|ホW 鬮 サ脅興Dネ`%]ハ・]ニe]ホ蘊チ]ノ評ナU]ヘユ]テ5]ヒオ]ヌu]マンタ ンネ在トMンフヘンツ-ンハュンニmンホンチンノ昊ナ]ンヘンンテ=ンヒスンヌ}ンマ=タ=ネ=トyィyクGx、Gyエヌxャヌyシ'x「'yイァxェァyコgxヲgyカ輾ョ轌セx。yア踊ゥ遥ケWx・Wyオラxュラyス7x」7yウキxォキyサwxァwo>>焜>菘>筌>跂>癈>衲>羌>銛セ煖淪ェl胯ツ[ャ9持ツヨ13w1$Mニi&iモ$k徴|VkホwA致フシ33333劔Iw:)゙マ顯$=}=IァルMfv サ鋪ニngwー;ル]nvサ累ヌgールCa{=ニgOー'ルSi {=ヌ枷/ールKe {平ニ^go`6、タメhGネ"N,ツb,チR擲 サ`Wンアト^リ`_qトA8澑テq柴Q8ヌ`9殺(コム錵偲8'$恁Sミ助Xユ(c 0!ャナ: c=F01怺 ヌ&qヲー峅ァ 怏ウp6ホ= LTチ1ーー3ームMlBフbリ8釿|\ q.ニ%ク例r\+qョニ5クラ痙ワキ硼x゙駅矍x゙隅>眦>鰹矼>碓瞠 >均碯セ/睛 セ官硴セ頴瞻セ具磊~睇 ~粥砠~雲瞹 ~近磔?睹 漢碌矚瓰ワ孀 nナmクw潘ワサqナ}ク漓<хナcxO潛<ァ 槐sx/潸シ列 ^ナkxoミエ#オQ∴メヤN槇,螽ムbZBKi'レ剿ム.エ+Fサモエ'E{モ>エ/Gモt Dモ!t(Fモt$EGモ1エ恷・.ハS♀T「n遙ヤK}tO'ミ液扠ァP?ュ、Uエ毀エh炊h-ュ」aZO#4Jct*mq國I:恨h#m「ヘt:戡gメYt6戮Uネ、*q圜ユノ「-4C65ネ!履エ<)診i取imァs<:. "コ.。K2コ悵+*コ坩。k:コ柤タr'エ%狩4 oニrjBマI5ツ|ェi藉」+椦ョ6 モs搆;ヒ=゚t=N ォZuッx|俣Cコ゚ュケ櫑iオiUT焚レキ ソ.'F<1*ヒY.aリ0テ-aXレ1ーa瘻ル苔9H膳N 厶jEョホク貫 ^メ賑桷q9霽ミ>aェeロF{嚼fA 做ト6!顧フ、jO%l潤m"゙. 号♂:菰XンB7ェワ4o-エ}ォヨ0Rヲ嗽ォ3tェノf 7m」1ヌ巖ウ\恕ワrテワ9娑髦ヘ=ォV臈ユ捏$ォクA=祷U撩f毆ク^P笑トーs゚ワ ,ラノュ。5kリワ19麩頤Nqリカ[ウLテvワ#2ョy45ュ緻]ム/"дiRT、HI楚E餡d"ン ))揩Z゙ュ\t+蠅メ)ィ曹イ)(拵jIUM微jァィ凹*)yT)Tィ%mャ葱*梺ホK)琳n擒ヨ烏メaウbサ覘Z彗ю={Z「$タッU失MWgbフL .n;゚!'N<x鵬 ス、_u$レモdZ枴悟フVト翆ヨ%c~テミ0ケク@ウコ尼CヲyC\!5崢93ー:7щェe4\ァ嗄нrゥ「.n}ロミレ6kKヨ1坩xnウス@NンrS,ヘモ耗/配」Aq+4假.I靜ヌP,vクMネモqKウォ「lツニエヘ邉gォ「詔Mコ悽ゥ,_A+Gv\4ル・Z斤@dQMznj ノカャゥキャャォ究ヒョrイbH%アXI,C2KセネCノckIフョmQ゚イタロラゥ8f兆ナ;カ甬-ウ}XMロ褐($$Uvj)ヤメ」I@nミィ ネ今}セ遨ヌ[B[梭「'eツ。Lx2ムIゥハ'塘テ$皓ケセゥo[pヘ闖゙ oゥ「イDι 壻マム・オケeミ肺 Elsヲdm天SU宮ワキフ彙エIn僑sk(t「ャトS\ヘxF5 ||テサzJ q ノdy獸sA]應~vレ啅< %GM舒ィGir'XW囑ョ脣*ェクラムャ俶ハイ^ナ暘r G3Cnツr」 +:ル冤1m4Zj キx@ュ% ォ羲傀a屮「)ーネヨヘヲ!'4*U」m}リ6カmエメ珂カ1+オ。b<.・F朗ァVユュヤ椀蜀Z.N&UソテXH長&ノU猪JrYヨ・ ォDチラ「RマカGAGン ェ,Z8t[m鑓J篋S^ン・ク醺詠ハ 7レエ\~-?9キuヌテヨw蕊ラFT咤QアシfヘfK嗽kヨ」ル ヘz5SャァK3」Gネ龍^^ォ莊J^ォエJAォt、_At|ュ\ミハュ\ヤハEュ\ヤハEスE」ィ}オ召Qヤ>舘G餉カォeゥ祖宇 qaー=ソ瘉ョGラ#シ叩Dxナ看,h5广ア{灣キ8ノ%ス`カ嶝bコ|m7駘蜴」ワ逅崕tセnwロヘ痾リn」U巫」Uメ<|ymレ4bモセmヒusk届ヲKル6サ/z8Hgン鑷ケj檳驅ヒ「=xk゙F6ヒA:カ鴆スサ?~Xヲ?嚊7Jケ[rュレユA>ヨサAK?テV焦>ネQnxnyn'n7/]b圷9ヲ゚Lo脯nwz;L)/9:|硝ナ8冲Eソ/WァgR・}JGz諦S・ァフ5k}ニ_ビ椴=ヒw.pP(ア9滬(リ$ ヘョワマ Ov鶏QDMz4、フホUシ|'ケ'YtツY/レ郡=ヤ'シ[8N RミIョ松i・ ミi>Ni梭ンヨネ+鏥琢C愕nx]阿X~ナ&ト#,FHGリJ NーTモ|ェ9螫U >弖ミマヒヒ0p+ _@クッ9醤k父漸ヌ叱 懺 Iォ~`蕾ケ導85Z=クxpチyiオダC惧VC?/ タヤC考コhト乳F」カ \タ `.5ri富ツ$Aニ ?エFT。舗F|`Qak_ヲク俗チ Vノワr7徙ホキJニB#ュクo6ツュ`qFネ,'v(゙1ネ‐伯ナノ]ッdM"イツ|ネルーδ|Xpニ XサAc>pr-#タEc>,rh蓿ヾ/hムL詐0VfsdVe> p6`e碩 妣4[衆マ偶絣 メロ}ツllユスk ヌ^}C⊃濆ニョ ャ%Oェ2!cセ訴T~テリリク.ーFニ+イサa椿#_(e ・L。批゙5ョu。)2RヲPハJ傳)S(<餬`ъNJ傳)S(e ・L。)2RヲPハJ♂f゙JルB)[(Nァ;」P(e ・l。-抜RカPハJ!OタLd 。PハJルB)[(e ・l。-抜RカP Lメ ホ(RU、4イ@5@9r(膠ネ。燭!B 9r(菻ネ。舛#F8S莫)カ吊于)ー]/コラィヒo]泪瑟P8;拝Bfノニ゚コユrス\?.コGsロスオC頭ネイ,=コU Cキヒァカケサkラ[ホh。 テ}q|゚ュ7ヒヌqキnキ句xウヒ`C|h*齲レョ(ア&kノRM核R念EイォAムッ5'K4ェゥ@ュ・ーヌラ謐 gsキロ駐"]竿n{ロ>u?)鴬焔&.垪hェAS忽jムT鞠&垪筐nハ)g7&Sフ鬢<滿-_vォァ歃ハyウ(zdハルュ閨タ゚唹彳ャシLハXル{ム゙ラw2ス}mルH Oフ屈`オM2列ル珸エgヘマセノ\t鑓pz>゚ケンwフUoUヲz呟}ユロ}ユ遏ィ゙ラ7Kj[ Kk」ッet'ョKラZtZ\ヲEラZtZ\「E莽'畋ヘ、ogル gンマaLN>庫4{9ロiW~腔v灣#woレN熏ーワ ヒ寶,wY゙ヒ擴シタr∝wwー.゚ew|vヌ{6)墨訪イsイWスャネ*イ址!kノヨdYO6錐dァdgd/隶ムQ 4トキQ5dYOvJvFゎP沱メ)此ホノレYEV則3? d#Yハ7」zツGラヤ>ァs~・シR ^)ッジ潅+ナ熾bエ@9 r0ネac}]mネZイ蔔ル皋榕汗ユメH剰棉ヨGルc=}」 ノニ7鹸セ;|<ル@棉O苛+イmFャ%ヒ y&コ"ヒ%{シ ゙YQ゚1ラhエ!~ス36*~[Fキロカ゚"6額メMHQセ iモエ勧Yナヤャ"偽$ソ檐`モチッ賭&ホ@タ蜩シ,dハコフソヒ哨ム9ヤ撮j2;.喙、ルqwc」ユ?マ諒!!ew6klPeツンヨ'レ惟}ァ67シハ泱8!+04)解ノ滂ク岻 f喞'↓タル吾8フワニ吶_?^4v咐~@Vリ9゚B8<ヌソEr姨ータマ^Awッ蕗蛟 3QS許サ、0(BオナSp埔pEiクGヤ7Jオxレンエユ2ア{蜷コ@ ニu」ンリ ]イ笆mニ麓2m旧モタ タDZ0キ0ケ!5ncL6ケpLMヨ}'Nッ7 R;030:0x@; #@u,vトiuエ フ+@イyE_3書O 1IM:スエB*エツ*シィlィD+MNnラ^ヒyヤ#< 合ェ! 9。。醇b!6{gAヤv9ヘヂョ7ハ?*跟霞D[フo、MdX8Y、Qエ「hE晢ナセ弊オ>セX^)ッ捧糢簿kラbJZ;wハュスV0」zLレA!訥シツOノ;x?ヨB`$<ョy&хツ<糸ルDx:<^_ o .ッoラ#チ`58ヘコ室:'Xマリ(4 タHtBJQルウzUカ'd{t\カミ!)%@3$琿 リUA'マホk'@3^Hソン8タリ5gG<鍍,嚮%Iメ$ス埔租3ノ$[ネイe吝2イ\忘.耘e{~! dサ$冒キ$冒蹣O7:.%tHJ ミ'ア%題惹キイg瀲 ーpメレ庫夜Yーg@6袱サラェホイ)ム,^cwラリノワサカ[テ宸ヒ)ク怩ッe^ホEマvRワWcス]+n\豹*謎タネ!ミ3R淋iムミR旒 Kノ虱 ゚$、;1'フネ-ю讎觝vE<メlホイ優* 贍會Xセqヤ゙ォZメ3HメッHqツ 翕ロб>aリH黏I゚躍Qァ1i#iシ4ホ%叉Ic酌$qtワ緲冷ニ q綉ワx0n_顎ョR$F カモ」!Iw8[cニヌ1羆11羞偕lフjフ闕チ憊ニ・iミ櫟cIs隆5vf+ '}@DHh11xォ匍<$サG背p祭偶C`Dコヌ悋汪tソbt'リGbnートh}梢LEFワミ貫モpO゚!)マ-}橋アチgEケヨ曜ム飫、情ZヌヒJ、}^、S`蹙: ;'メ&リウbtリi1z gbリ禰=踵$)鱸'、M'Dケン暑イ軋\;タニD9vTムwヒ幺"ナハヲ」$-3M」{X 蓁$%サ$9鴿~QJ29ノエ、R、aG錵鯒 フDコ セZ>'F)ヤv欽iTホVv{2M" マQB、_я)GlトカQDム冰綻%・8i,Yノ8X,ホ!(JP剥kFタイiエ[「ハq蚓メFQテレ想、ェィ@トqャ@Y[6- K廖ェ 'P.タ拭(5u+蠧アgマ3レアソwフHヘ3チ$y$$uェュ:t禅M罧xMK/qト歓Hナ徳aンソソR#襭ラネ0膰サD~アC(kノマp?ル'?Piョ楯ッHセ$゚hタネ%ノラレJスNツフ=RキGH1ッD>ト 洙V#キ3。!#%セFノ{jネsxネop XhWサN^WwH^笠虹レ0ケ婿HョdクミdM[ ォー騨S.R_ヤ毒 アヒ;zAダ刄 伜d0 8ьMワ緘┫クPソO^檣\a|kケ1 y[.ノKro椁汳GyPP簗I蜆メォ(J菖・H R4オrチッラ`O悍.>v謁\# シ&族"。;ウ$k1マ&ゥハG l鎧L>ェ`幕-ヨク┏Rセq ャ;敝lタBヨR>d&スbエ舮G&ル@チ9@?ウ{+ノワ-ラEC[ウ菓スケ9纔。リMプZぴG梟ルサヨ「テ>vル8 サ;ス六v、u驫iHWケqシ*ュ ワ集 hモft*ミ析 ミ、e、s「ワF,8 .ヘYAコ 澱{ク Hリ } j貂Z:メ│ヨス.h N TVTN ニU クマw澂゚霞;1j芭ゥBA2タ。c+Cョマlm8f9mモfz啄mュ&リ抗*llq ナbjアti保2ロJ カ6Rチ茎 px&mネ1梨タノ附レLnニLッn}~gjュエヲv産l/6ナオ7潤79<マオ6ケヨ&ラ墹ヘ -k!少sNシ[X四]ロRL室。5]\晞ムトvnツキQuル液=戮ル3ル3+ヘ。内~シ %カァG努6w:* sヘッュRゥB3隰P。ヲタ ̄〆E4`ツ忤_xロxU;犀弓Zpロ6kF旗:ッサゥ#J#AJhツョE。?$ セ棕gソオイウc Q7。キD゚セ スHャ。7kリMサワテ訛0ヨネ6ウュllイ羊1dリTゥ_蚣看nナセ盂B}ハキタ蘓~*ミ"ソ哀ー }K;?ォ"$b} endstream endobj 3499 0 obj<> endobj 3500 0 obj<> endobj 3501 0 obj<>stream H餓遥PWニO鴆"jヤリiDワ1 AP」ニ鑄2賭EAp拐jq ラトDガ航M「qIL4w(クqチ 憐慵P3U3ヌTMユLヘ枹驃ソ{niメ葵 %S6攴カ8府瘰ワ$^モアsス蜀ヨケCTr♪u旧秋シ,セッ9|y?鞋D"g7"ッスム縢ッャ&}欝q」「キエ卿~「挿DEサXbヲ勲_/;>y秬ソ諤a#7カィthオ7Qユクネ=oL]「ン ト鰹咥7nム2゙EM6y?縞wbツミaウウOキ'zレ(シ qHT粢fV:Qル蕀ッ%)薄1$「/OカIU蛻AF錚、l゚」=リ%b&トQC[崘 F。QbィUtフjgkァクヤm4ヤヒ>嬪ユ"y芭5lィ.アスlOョA>@ュオt..^KJイマユ、_余SC<2滔-MャbU5橄荻ェ+S9;コ室ーヌq=nトy&タ c迫*゙フ[x;ヌサy茱|0ッ慄ル|楠>j!ム ]@テト!テ0cア +アー _bォ五会#0汾ホ. ョ!樅參塙zUEvィ臨@ユTィ^ェッ竃;ツユョテ ク O釖)/8 \ツUワタmワC"_飩ゥ潮ョトN雖籌ヤkェキ概; kNJa8壱rCnハ8听緤<ゴ8慕^トKxッ5シ儲゙ト_6狄|条qマq_筬|Cカロ慷8Svロ54G8Z穹エチxムFwF$c 0#001S13>fフナ|,トG虞)問3ャニリ(sカE8タ.チO8c8雌8j(.#7窓x キ"eィェエ*ァ|TUEUU~+YユP奔EユRオUUO5P控ェ」jョツUKユSEィ(。巴マj「y敲土 O捧}_fxssシ?/xソ罹[|C~トOリe A(ツミュミmI隈&!af`R衰9愚 癒[yRカ8Sェqェ毀_ィ@、ェェ。dP3ノ。PヲZgイ櫑チL2ネロホ$Mモ・rィJ俺益ミ^:F鉅2ンヲヌメ[改ネ氓ィ!5笛」オ」N<々檄7 [U.ケH4辧Nc揺I:圻ム「疔ャhK5M5サ*ィ"qkR ユァヲツyvヌv┤vキaaaaコA 5゙3ツカ&[IナヨトbkRア5ケリJ.カヲY%・Rネツ3y緝ホ⊂uシUI!膓HわVImYAH&Cコ~塁萎羝「 ムワN!ソ)夂Yォ#メク塩ゥ仕ョIidカ廡ムコ]W :K5zj綻dノユ葫!aP塑猗ャヨZ#/カ=原b{ セ漂ゥ0ト*ン嚮R5:セ圦・レmカ6G[ェmミホk;>}ソ~5f<^ウd%1JFocョアミXl,76ロ叉ニuノトx +eノッ`ユUンR~S椈eヘ寒滄4ヘコf}ウl丕f+3チ彖ョ0W冖p背Tr8室.賛需師ァTホイNgEgUgug-gmg[g3ェ^」\ E墨文ハYャ*民Uモ イ[!V恤d%[モャYヨ\kゥオヨレdmウvX{ャωQャuユ?ト?フソHh9ネゥ忰6p.モユヤ uサZケ6コョケ ワ}5v/゚]犖9囈fモIモヨkオァBgッミ9テTL'Y隍rC3ハoス卦cアネXfャ3カgYウヌ深Dヌ!+ャ礁KK3K帛ヘハヲ)tNCユ":アBgケミY7t:;コ;R矩シ(t^rム鱚gモ1扼ナtRュ4kM1B迪ミ .ヲ屮ルtエ\テ・ケェケ]ヘН亅・ォオヒ,T$ydKは/ィミwrスコ|M蝸蔑團災jCワi簓xr/ソv~`~ュ1ヌメhNq4レヒ3ワヌワンY胛」Tヒ厄扛 ャ)イマソリ=+9ノナャ穃=UY.セ9*k[vPVJfz謔ヒ2feャ悍Y9c謡x邪ヌ>ybD"粗$Vォィ=cユ「hkエ街オJ工A2(#Vフ(+[゚W"L oo「ソ_」恋\鄂ホノs゙9ノワ滂7ケ洛シ畷%WMv17176ラ6ラ4ラ0W5{=フホ覲譴f4=0ン5ン2・坩ス)チエヌg長"ML庚 LM.&g涛ノチ>゙>モ>ナ6Nホェ40娜%6砧BイWkワ6>コ悖=荳(1サ衍フ?ヌR%r\ェ゙_=Ea;4K",ユ ニソホラムメカdキ従:mモK゚州?>o゚モ#ラ3サ觸剋6&krLQーヲタT%,0 fC チjXカ [3フエfチB}`k)<》IエムpXHエセだ0A"CpNタQ8ヌ! セ$8)ャZ゚ォゃ,怕3「ケロpfタ@;Q磔ータP。ロ0#タOエ9 nチhQ 絋ッロaL L;pbq.DB^チk\!ク梁ネBm0X0テ0#、n,テワb>療3x+0Wbョツユクラb4ョテR_6&乎ヘツヨs∈キ6ワ;0?タXワム aaク )X銀oク 蟻q怏サ1`<ナ}h%`lト檀埴亦Z_ &タKネkpア,:。3ツテx(日vヒ。 コby<鴬0 O< ;ム ンム=ゥxホテク$>タノp.紊|эO)ヲ3|/%f「セツラウーQEL))bメd 蠅ワ+R^ハGゥ$[*DゥナJT穴ce&;*A%ノ曷Qi*C腥ei&93`*Uノ\ゥ<ケ;y'y?ヘミカコヘ「ルDs(俶メ<唹ソミケメ" 。ナエВ)個)wG>pシ=ヲ'挽)樮sz。?ユ5g2スヲ7忍*v0ンS扛ャ゙'ヨサST9ス「rwキィシヘ/ェw弧遏<」コqラィェゥ\Fc」禾ヤhf47ZセFK」篇レhcエ5レFG搓.FW」嶝]橈soT標衢゙嬪i|k ノ+9蓋j^テk9壅 U7F゙ト1>カV゙ニロウアシSシネ.゙ヘqシ繦/|r篥|(聽|0)N簽|マ9>マメ漣w6ア/s2_皚慊ラ:゚澣セノi|黍セヒ>?熈~ハ髴ラ?肅_r&ソMCX カツ6リ娼ーカタ {aコjュレィェュjァ:ゥホェ苦ェ:ィ諮(マト]タ}ゥv0Bヨヌ,,插」`偲0榮テU7ユ]*|チSx鞘ゥ<挑榻<8身h槃ウx6# ~蹣朴ィカpqo8ヌs/蘰禝~ニc8嫖コBW)ョムuコAゥt瀞D掎DtGンISY螟廢党u?ン_tレFキユD・スtoンG罷ォ[鷏「オNスモヌ ムp!ネQ*ケヒ]y(OQX=N%マ=O=汗'J*ォ ェ僕VIUV゙漬ェィェェ圷4]g鑒「リ{セ~ :オ・~Nムゥ1Pエ:ネ,i雫{「ヒ「フ「ォ:E_zンDテ^コ$ムエォ雹「ィク鵬ロィ#Iーzェメ゚dgケ$ ャ?ミemセBキaイ{QBXゥ>B;ル-;N,HホI懸ョS闍ン゙rOEjャコ未肪4q榧UV!鉋、」キフ7(g衂ァォシ$ソーшGH置$ヒセgタ ;&ミDK?ッ爲ェ+~ホスオ!!I- 詫LタaIノハfラミネGBタン&H蔓3TZ3EL|蔚@冫ゥテ@eヲ}.H!2eZ)"ェBGゥK-:^H$」モ=剽{マケ迸{9ソcオョA4G・TMuタ 66n8^?ラ焦シ矛カヘ」ルミ}>F/トレク・.J.笏#塵's)マ^炎b;イ%セЛト iハS#e坎Zャ4堡b_fYムN[p゙スtN"゚輌!Ntソ3E鎬qF|辻」>渕奧k齊eコォ゚Eaヘキ`ソ'hネ筬)堊,ヒaメfェ|Dヨ"ヲエヒュwィ曠ャスャホチ{゙邂O uヨェイ档-禄ミk"ゥ┬テVタ娵Cソ?m>2蘓ョoミ>戔0ル倬6ミF17cテ6OA;|゙*9ノj 7ネ耨Dケ沿X)6Ω机ナEq]賁eYル レ)ハK )鈎ゥS@譜{\ァワ曇俸エzn゙ヘソサI崖ルゥヲカァ゙M}n-カ6@メCミエ ZスO<<檮e梁vェ今―&s9?ハs@sケエ8ラケ○@マr+7s"osネF┰:0_? 82〇&"1' 烏ナ|QZ)ヨZト澱=nh駿[薊颪$ャ零K~!祥゚咳J然ヲ,VV*寳モホ"襟Qヌゥaオ 8ェヘdロUョラ\ソt]wク]Fyキ墓Cエ-ホ}`*/r昵ァヤQハモ ゙E僕Qロx,オr 齒ヤ|Kj| ル,W[oハ引予ヒ暁1、+ィネwヌmケ鎮オ/f1「V厮|靖M?憾ン/ヘ詮8ォYウサムヲ冩TG陽o,5L瘠ト6 ォjリKl殺M゙ 5凛Oキ\ロ戉*ヘ、マヨ寥Uq\LカaRヘoWvv訊粉テ啣ユスfyォッネM"」fテロcぼ£Bツ3「ラャ餌テ5 スソアシ_豢憮vォェヲ゚ョlk、マ;俑2 咼u惓ヤ,/%cY)cフ2qヘ譬PワタリMユ醵5+ツ76心上yセ"サi{Iソ」A゙ラ6 フ|ロAワ!ワ(t懷ァラ'ゥキx4hl[ チ^ッ}スノ 5cカVG{5舩Qーィ f敢-鴃電,イ%ュ}駲~シル(テLヒ=2ワ0y/標-ヤォェ「Zリ衣ウmU^ッシエ_vッナスワT|ーヤョWSオS}=ワットSヮ貶PT謌XoK腥g)倣Nt或問s9゚tァチkモッニメズsRメコeマr}3゙厠@チタフ 1$VDUm拌、職ャ #「k#nヤ'ュヨ]霹!発Q」%サ、uク#ヌ荊ニp&タオヘN鞋^rツコ!替^,Bルアトネ「4「テ6ラfレヘ サ甼t4g|ホ。 Qォ#Uモ_謀rxi}<ヲeIムヒxJ//頏)Bオム}タyXアB 崇ォIタ郢 チ哀スnqャ亀%)腫濫カ佝、ケヤc 逓 籃シ抜 <_累-帷ケ]6n淵鮹grアwжホUィG鈍=A俸tcッ5V」ワ。ワモT~);=ノロこ堆モ&fMoマ,z。X 乃朋j伎:肅戔X.~ンンヒツ>ルサー ヒ.pwy効`ィリD+FナG1j叶J」cタエ"mャ赤jcチG纐、独ム6モ1Ikァt&ニ。ァノNmhu鮖ォ3」wンsワ{wセス:*7躍Zv サJvz・フhチ恵メ4i~ソ?フラ1W8ヌ'24谷+莽袱RZF゙lU4チテタ8| Zュ梶ツキ . nキCMJヲCイ淬C'Mミ狽#/ソ9@:」8嚠゙惟Q3E0ァョkサ脚・雪&翌ヌ*ゥ,:HD!2MjcHTDエo儁マニウ嚏ワ温蝕Z&メヘ、モ拙伍Pmィョヨ[dト"Oホイイ~┿ロ9C・Hォノム薪rエC穣b0\T\`マUツeaト薨X、'Aク4 餐iqョ<)U@Wォォ dス=q+x゙「}「T雨f゙BヲQ騫゙lbf愁&Pマイfo轡#、ヤ}マ(G楯.セ姥Tリァ>x'モxI禄ソnユ儿QU聽?く^ムナキ.ンヨ2ョYテh呱聲モd隧SC溲iO?Quカ.ク?「カzzンマネ栽}ホワcカ0ィK`;AF 饕跡p6・沌リ廝#サネ゚m.ョ陞ソヌニメ0繭ユy_)゚q家PY+|。リcセ、"臓(N俳ィロ^セウマN弼0イ蜊ナ*5ウl .ナ|S}}>EKCe X托gKニF 4F,悗棒ィZ陦クタJン「k<ッS駅・`ク倚煦Y,y66 顎彼冽カロアン)X確 j;na@ニI=癩咀!W喞莉ョ吻ュ C&壮Akモkムヘヲ褫qDルuЧ 鰮晰 談ソ&x^wYf録ケtソ亥Y閨.3ヒ"マW濡「靖クE_eF」相,x 1セOyウ$クウ蟾ノ|M「OカMuオソエィ)azOl[ニォ=?ケウロeo%npj`hハホg^韵kdサキ゚ルXベ。] サィヘ^EC贅ミヲカリロ。}[コセ1オァ毬7スXwzツC拏&:nセ飃ーミニ(迯ョYシカキ&ワ@クpイッ鱠コュッ欄,ァ<0術F膨[ョfミ゙QZR・ェ魁J。礁[JZEレ枢YJC テカ8W・筝Q齦'琉.Kキ鹽ユ9シチト迪溌速*ヤ挨イエt^^ーィ/k諷シ3弾X冓FフヒタjーgTJ蒸ゥ鏖ァcミH畜.S砿 ルAモハオ肓オY I;耙L\I:附c6Yン0r 戻;゙ハk~>モ]コ0=限ケ./3」W09t鼇D 黛荻 ユクー偬,f(s=ツHコD.濺C,f)vミシト 紮夏ズR$b 「獵當冖wニ[\Bャ欹塾|%ワフo2ーヒロワz褝ヤミIYぐフi8>ミ}ィンr勞8KBX84ュヘ1キ X・、kエfyミL儡ミ助miア獣驛8 晞%-ユイdーヌ(EイTク序世]=廝。L癩Xd~輛誥閲x儔ヘ匣嚏ツg;:マハ6jャhイ(モ揶,X`s#0EQ鰲2R>実 1d営W メイO桐:*Kフz帯evオ!戝=d9*ッ|xnv賑T 8`VIaラHn:88ホMr{Qオe松V。幣キpネ尓甎 (テ挫`c罕,ヒーシ.57皷E)ーsネム!粘Q&цリ$) ウリ荀BTぼNMP7(奔暸ム)リ}ウ,サgeヨ6ヤgイ。! @閨ィ>c^ソ`^ 覡イh椽E]d6(モ釉蜷>=ヌ0fヲV逾ク< ba1!N7DZヤヒ5rNテ`0@NC2c:[メ宿FイリRX)t"A "V睿キリ65鎧ッRエ ア.Z6/ M2禧dT扞hヒ!`ミ剴@ネ% 'G(?{{黒9Yxス  トィホ uスヒイBヘ/\8ヨ黔両エwロ螯龠ネN{0TX]\ウ@Z\猿゚oッhソ貯2汰セ7s爽;゙ぷキ^}6茗kヒ#6コMメK4ニΕリ┓ VlEサチ>4孝ク6男jクI]%峻ネリC oO/ャ〇-dク「タ4シK^_ ・迅@;「斷メZチ2 睥#j[Ha堆 オzルaェチW鵆ォ@ Uz礑o゙Dセル%ユ#IVシロールeャ]鄭*>W睿ホァッセvo*;zQAxヒNサC訛 ル緤イG;ワЮPX遍k~]・dミレyセXQォX「xCチb躊龕ァ,・コJ8マ}{i%ュ,i婚-アkY%K2GX屍ト.&C1ナオcR0リゥアテeιツ1サiBノミ5瓸fp F&43。 -S」-。.u8キAァ%モ泥Hhモョニ3~漿ケヨ9 ロlロ?2リカ=モ{麿ワMヌ'ホサ悉ホ1!ミ1mvウ ;MノQnァ :LN;ェ,Szェ澣qクウツK沓8゙鬆*,ウ`ォ瑳(ルq紀&。茎+)QF ョoウ'拐t ォ:ケE炭9]ヲ瞽T]梱Lス啀岡\ナ“ヨ:メBコH?ケNn怒席暮」g<>o2尼梟シノヌオュLャ髻\Tx_c匚゚ハu~lJ籔カZ@ 1」ナJ;ョ-マX/A++/淒惘{4 W゙ヒヌ>褻アS,}テク。ケzゥ sS瓲鞁スァキキ^ルo6mz醴ヤ?g[gQ%民<ヒpd|2【皐」モ<怛7桑MmΦホエ>z;:キQ@QシPv+クR0Z|ウ檐橸ナ_膂フ+ チ$><\XhEI2>R\單「ホ噬s艇%キ.下度ーU ^ナ(我マコi`@R津フリLcケiUQシ %芥<ソT'tチ$ム鉱'「?穀(鞐ヒコ|]&イ。W・ミ勳m}@/耙]@zツ杜 &k'`) */.杭,浣yオヘァア<邉Fカィ{イ爨 MナbセエO涙Tmメy:4RS七。V )ヘ徨R`i途ィ、r積KyH惠^4レ゚ニヤ゚z7派翰カヒ m。ラ5=|d・Zu|゙c作スomゥZ赳フ貸杠pマ0p xモ`sUナlw瓧杖;=U崋NSカ6コ\%樟$駈5槝.ョ具rfワB呼エユjュ)oラ楾tフ;ヂ1o,ォヘ.C+0dρ0I悸ロT U5Wn#8YVUM゙8Y7Kセ省}Mデ4顔」\シR\HPヤソ5/ヨス^竇ux8b% k剰「ェ[VbUi尹HA8^ 「fュ・6蓼W97h袂~Cq3CK啖コヤロH巓砂Iキハソ(ュU禽ッユMMleマVnォ岫ュ?!hK糴ッ% TT3+ァkーxl_uマ ッカwエ{]£覚n<ハ5フr慕F樽#タャユeyaォレロケEノ「~コーヲ9Q!z、カ;;-ン秕゚эワノtー9キ~サGゥオ女_]ァE%'償RT>gN L陬+}26,醫迺Oニ0譏精餝ス柏~{丹ァdLqbF.1c!?@w1$嫗ヒH慇,ニンヌ<ワヨ<過I于I1s」舖ト積t3bュャホョb,ヌ^#E賣ワiヨO箇ad8敞[:?ホ,ック際ニp=<婪\6#膊k!+rgj゙Vヨヤ。ヨメoEワ\・ヒルケナ&0iエ 宸(;ム鷹善%メ7ナヘqW<キロ懸u柮ス6_t]_ ワ0゙0ン喪dトシD\b Grク|佃R聆、}無ネ嚥+P^QXソXルじ猩dK1イ 亞'メマsq!n雜uロウs軸G oレ借丞戀ソx?壇G ヲ/フ哩タDYP斉タ\4マ.纐拙`Sォ#毎最リ偸シ`!烙アヤ。;靴猿篩gуム)Q石」t1ー臚Oセ-5Liツァ瀟タ3イC ィリ渮!xh 5[Qzユ3サNン凱+Eヘャ9師メミgセフョモヘ遥zヒxIュウ'?i>aN襃>j^モ使メwlワ章,_スェ墓n2rセ'アヲ鋺m父MVnleKッョ]sgユ譚;ェ「%S-=UソXG9[@タ&怐挾6貸⊇ワ暼サカ僧: 祚.ゥ]゙ゥ2シ&EC'ヒ掵遏;ツ9カノルxケミオt腎% ,`皎*hK 蟋健「S紲ー" %(4狢ハヲ 。憤レ」l発)減ェカャdン况蒜{_オdソマ>墻エfロ挂-キf褂+omリ+G/Aュqヨヲケ=ロ{:$_ ネe 抻3?:ケwk嫂{ 四峭桃oケセaA」ツzレコ"ソ ヘ~o「 〆sォy歴瓩緜'>弾゙ !`Xネゥv#-テTハネ ェT>ゥmシ|3%ヘ<綸Yイ 6ア+Lyリ&トケ8サ鏡3rヨpgモ 3ヲW逃?モRb0'ヤテ>3|ニc:ヌィ)總'癪マ`邁ウム3Bgク}uサ /アォミ仰z4`tbム`絲ax=ク #z>`ッ「_ッ do「=tOxネ = >6Y釜=q宙 lN;o|シ浴4マx\n゙ウQ`Q  トワョ>p!ヨ,テuワ b8AヤWテzスメ脉2訣 斑#ンニ稾瀲ァ*テルNe8ヲ;Cコウヒ鍍セZスヒdfョZィ9C'カ綛、Tπコ,8冬uyユO @ソ;宛\ホモy2・戒ユア& モ&-澡 ェモ黠妁I&」Rvc%f媒.kコY8ロ゙1>栲bカ騏7{Iリtコ-ェ8=1ナ=瀕ヤア"6w,、ナレョ a! タ2纎.'ィヲ&リ拮`Yテ:リFp-ウvウ!#{dF&?覊u゙クェ跚Vp瑙S-?アp錬ガ蹼W鮹徽゙ィミbナ,ーb扼q"レ\JゥK>U5 オ#負*~ミ゚フC滑I俶オ倪淑 EOム@TidLムネ8゚「エ5ゥr0「B叟ーメチヒQT[゚繊。畿「リク$袈キ>ゥh8ォオM尹u!姐」ーア1盧5リキ>-iラc蘇2M框cイ⊥欸エnル狐ユ燧滾;麈yノ={鄂wayラコ甃 ゙垰睡ウpナHキ<5Z$ラシNネ~鵈膝Y嗜゚6wテ トc;フキX jホ>アイ亅%Y6!R0Eヲト}{ャ{セq#濱fマF.arW"/銚メiチァノメ喘尻箜LエC D處\陟U 摺 oサヤモ2ル1<蓼:ハdJOケmーDレP髞 旭vtq:.@[>ャ_CソYg蒟ス貶T ナケャ霑,cyモ城ゥレ?^mッ訣cハ1マ&シ!O5ミ2ハok%<リ0ヘヨV`9Z) セ9#宜ケ7Eヘ、C晶ムタ`囂イDC琶伯冓 7ヘrMgシオe}eW7+k_\ャルuエソサwhr#&YWラエ゚槿YrサOクO<コタ軌{廁エ茸ノ昃チ、←zサ枉リ8>/・/ヲdヘ}Tス弁j!fネf泥>縞"ッ」月pウ0aァSエ m4Yリ威aE刊 刊aP#辞I「オツヨ2シ脂+。篩w<ネ゚ lュト0Tゥ昃JCFt'M窖碕]貎ヨ'K UlM甃ラp・椡キyセ+ロE(%拙ニネlcd邃"イヤ`\+僊3ぴ体0h.8ロェa0eハx皹ユ/ユB。ユ靼1<_ーォ刄7nセ7ェ陝*xナ Uョー∞謚6 サワク ヤp軒キルフ@ソ%0y]、ェヘ頬]ケ<リ乢ハタl#鎮ロニーb*J1ゥノおl~キネノ」D,畑(KP菓eノォト|^:D&r"ムB?*F#ワn膨8飴ワF荐ケ主,m怏$7オマW馮IQ1Bヲ7EF=ハャツbeスイQaァルt潼 6!'居]ナン[3ナ@Oォ旋ノ*ア!eカヘソオTニフェ踴"APテ齬ー。テfM"ハwラ<コ'クEWメ尼、-リ觴W霓h。ュvtモ゚G@ラ炒舐!2fュクウETトォロQウVTユ@浬-ュB トnマu諞タ0カ九 8ヌマ#$x 淙斛} シヲsW゚」吁懺 D慙}-ワツクV靤`ッミュ?$l゚E歴et>ニェ科R@映e)ゥDY笏Xユ)イヤィト┐ヨ$("Duヨ1ー縞F$゚]阿タリ96瘤ィg」争rB9ォミ^ヘ*V9#s寸ツナ{"/2ヘfII戻K'-本Kztムエラヲチ&?4別ワ「ナ謌テヲェ)b「FG液V槻ラ;ロa潭yK姻Jツヤツフy。$瓏帝@ェソス8RJ|Yc Bbフ]!ロ1勁ョヌ$7ヤサランO"ニ_癲}Cシ!ィョラ遘Xテ?,醤槨%ァUオ%2ニN%C碕エ旅チチ/$焉5トyl#ホテ $イム|ト7i;Y{長nキ甫~嫺%蹕ヨ浙レムr叟YXc6ツbヨ`kリオ!コHネ1!r゙ア3サlgkルf】{QsZケ9モ茴膕院「.疱z3@(m、jィ!_ハ@!状g`!ヌ+W 、 0仝雹、(リシ<>/Oヲ萵゙ハ写ハオバ+oスネ〒キセr_!セ`クサハ!4\W~レd蕋袗Wテ4?オ歟f郁. Zニ8Gtrィ$.G。ト・リ・ サ6 ヅ!サ9ホレ。]MィォAf;甎覯ムネDt孵#G3ァ)トフBワo作グナ5響_`^粥ノ\フ|od2.hニ$I、ケ5ロ7ヌソッラヲ9&нY(Q&%@「[5ネRPL秀H(検f"-掏ム4$コトTャキmエア?カ擴16 カLチC' ノットGs>F込}1VurFa:臆<_Ёq、8Sd-愡ヲ8ホ\S\エチoョ)ソyモoWsMo@゚ヲニネイメ4jvミiv_ツ撥肅|・1]'7ト?Wヲ!(J「B3ユje椄゙f浮呎pLV31=崚菠F幵 ヌ曾谷Lヨ9Vu魯カoua惶ァn椨/%ァf_ォ/1シHヒ帷=%Pe鍔4EヨX4ムU癩ツL6リ@Lzn1:!ラ U~V)#ョ0LワS+゚ュ$?タソ}= 「oッィ レu鵁^+w0V&ネMェコTgキミェ臘サヲ幅O8凖pサ訟ムスーg甍「ン・フCエ zqータcI5斎 ;サキu v3ナ・ナ+Yム8溌5ョ7HOキZニ羂qg$<"剰#┘*サyハレ、e2マ\yW境ハZBL2蓬8"ァR處lcレ-Xトa,ceEヒ環ラ嗾離ロオNuk!ハ券 Rア u云∇\セソ・ソミ_[稠撒戮Jナ替e)ワ:ォ;?j;ェ?'鱠ロ駢オ鰒岶゚莓J`対タ!wテナ\cク ヌ噬RhX鳴7CN休ャ>M8誥ラ;拵ヘ况[vナd&巍X呈h┘-ハ$薛チ价゙疑讙FシgシWスャw)ソ.k昊オ袮レシ}ヌョレkレテ:ヘ36ヒmn ソ3Tラ3ソ-梓N听Fヲ/ヤ~>フ麹レシ羣渮ホ梨マ゚セ|9ロ鋭g恥セホWリ@部。B 0コ0eePJー醗メェ瀕0i+祕P・柘シXカ墳シ估、L!mモ估*Aケヒ槁(熙iマナママ~<?゚ロ弁%ムfョ喙;匝゙V、p髄Mr9A勞馳,虐!:ラタ釼 フMtV從#ーョサヘx>ヌx免x>ヌ(悦ヨ瑞?v「タ$Nレ*搨 ョcソサ,rチクq8ャ<>ヨ.ク!テ蕩チイhKlィ.ーqZxe0麗ヌ甜w=シl!nソホ]GKョHサメハホ5タマ!~RルHk-ェヘ誂.憊ェュ・Tホソョロ江鋲>xツDー3イ{3X〃U\クMォ、8セrc2ハンj4ワナ ョ疂ニ 棉Y3ヘ*ワトユ*ラシロ<0mKtS ルAC餘|g2!ツw棗>ァPLテ鞐'Lソケ%フ9TIeムnアGラメャユ*j肋#n$T ヤブ。nmエw偵ヤnvBw-ンO'SリCチCツpェy肺宀+ヲヲuフ>u筑7n、pB<ョタホ<蕃N;ャ C版ンメ樌7監j=チ冰ル5ーI穴_1_ー|#ヤス快譁寺=鴃ャM9,s船ヒ馭0~ー"ZL啻テy喘K;# ュ qヘkィ-レ繹n/哲モ HCキ$#∴E┴ムヘnQ辜pMREヘアヒ「モXルワXリ紮-囃,ォ芋iQHァ%&@Tモp mfhZA稽6IQ鎭レイ皈5]wテル@ヲ)fァ~ウKnソ左oナ ョZエ,{ハ~ヌュキキレロI笆}゚ヲ{_ ャK⊃ねケャ ゙ら* ウケ]oチ|ノリ?、ク;IョタC」y) ,rエソdLwニ3' イQテF簡ラ9Dテナ 鉱(゚nリリz%rツィョヌ;ェ鹽 vル$マVス 撃4@俯ゥmp招mD4Tyユ゚gΒm廿~麪sRヤh}Gヌョヨヒナ` 燗dケーキuイS$賦t綵Wケッf粲rコぼ?餠゚ヌ?!^z#。ツ貫Ro4)|葎&甕メo7ウ゚^キ:ンY@ェAェコmォz.LPIjz汐,モ Hワホa%BM敏Oム$攻aC[ゥ{桀T玳チ0鍠1jタセ宝YNngネ・静ユ\テュjhc|/幢ロソヲLッャ慘gケ吁2?[1ッ豈ョェWハ劉sラトkヌホ|&S~ネ゙ッ・y涛yE2段.,゙s啼ャニ ラ苞UサQ#~_゚,セn5児トJc48奕1T>セ「ZVj$-ョメ灼吁アィ@jnwX-畭,W"トZ Q -ィ剖$COk-ツリ「Kイ 9ル苳0ァU *ノQ")ネpュィCV+「鎔I1・*hVs儿.*ァb"tN゙ォoe3*ヒf)ニッ慨.テ テB$DT @ー刀6ノ`フゼ>ネ ュ珍$祥>y ヲ彝p・イ[a=rg3ク?マYレ)ゥsQR慾橲CーA ac0w]+▽ョャ_6AキbョAツ@ymgnワリcnォ!0$Oe。龍抛シ' 也:シアpマ掟置Jネッ;ェG胚励爾ヌカKq'撹掎熟゙wY゙)メシ」ネシS貼 9Z;劫?チ キτ+`クr丹啗^゙[`ーC$畷タイ(^ィg 。漫-@U5(q4嚠DレOオGP"ュΡnj^ゥ、c"CYw[w棄タコVviaナ犖駕セ羨ニソz"チPi クt lレウワV。XヲI$ツォチ贍怒|ぁ/ゅ`スハWJVキョ{@焦クXタ。P糴扎ーDマ@ン梁ヘ9?x ノ|オ゚オカ$キ、F,「7q(qP=ィ}7qL#S営V穴魎5b~z 'r コ(]メ %ヒ"pュ@旡$ユkケ詳ァ匐ヲタy:「OLYァSヨG剱兌翻莫ヲヲupエ1,ォハbモK"ヨ2)・.5僣@ク個Oム4仲「鴪JOェ Sァ,Zァ45鰕rテイY \"゙Xx4( <呂Nワ隻_階3クopC鍾゙5エ |GソャY圻紘頓尾薩i トャ吋唐n惜└Gf=ユ 2tLmxア捫`mコ( 俺マロ3WQ+キ沫vEリ ^W匙総B!eヤ%ム:T; }1鏖9ネ| xルf。マq レ府ヤシウ 経j*ュn鑪ホ#.lス愡6ェ筬$sr ぢPf`證メ料レlガ旺良嶺Booラ蒙0乏コ7齒m篌胥ンOロwNホソ.瞭?゙ナ懽緲_わ$NL}ヤ。!フ E寐ユU M 紺f@+@mSUcモヤ革bンヤJヶォl垤「イ_噌ナ1V4eモヨホS&Aヤヲル旁V啼゚{゙スマッ4アメ`承gムZエ持h貴6}レE幟LィSL.Ibヲ 'CHホ49gヲ2*擧チ9C7/Dキ,胖ヘ胼ァSiコmト Cメ蚫Yルvテ礁v$Bッ>Jセシrモ者Nイフメー豢jNM1「b!ノ! Naハ~8特kチZヲロyモ\タワ8Pッ゚6ヘkハヘ×モエ猟'2ヌ 店セVケ「ァミS勞ムI馘N引ユ・X+r~恐〕靺2b秀\蔵ョ シル3!M6彦&ヨ程IヌワG=G・ヨ晝負刳+Υto*{笶慧=w^沢2]{ヌHNトミU塑dN.NnルスR~サカG{\c-脆h゚墟ヒ曵ユRL*マ2戦网t=Seシイ慙ツv@侈\ナミdミlノ##fヤ9Φ%ΛリPh'*SB" A 悟C列>;レiDサ%OトIア&イ活優<)bア@饉垰 HU撈5キツケヨT邦ク1矇ウ拍ハタイサヒ菊・Q-6fチイL_樢1Mォノ攅XsーWtサKワh8ホチクA"]倹尼"0Zc゙0鰹0ve ホe%X 纐.ク0・Lhx孺}}fCquQw+_0ム,ーu~V圜V、8ナナ癒i。.C價h"賃揶俳グ个スCハ{`+zh驕メ・Jw u セョD.K鍖マv。カ`ウm0ウカMmSCセェRハh{キ詳Tf-3埣u{セ譱w( ニJヨケモOl =mュ*フチ?Ln゙r1_ソQホ壹{サコ#魴ルヤ\oAリァソ?2ス甦c/穩。=Yノoワフ_xe多ツ?Tエソラd娉2X。\諠2メ<反捌ヒfエノゥP寨エソ恋容ュ q;@ィ/hサ。[0: キ、fDT゙o G槲6ハサ@Z挨ォ,ア0試。c」<02"Li E/斟yz\「Mイ0| エカー h=ィ$發pA ニ薗キ 激+゙fj((6アE、K62>ン*&雎?゙ONセ1モ餬「Zp 冨,風_~4零a>コ゚?゚Amd┸メニ%>ウワウ侶听ワッ:ヰQ mミスキ\フ?AヲdチA5ZンbE湲ノ'=?2SPテE($葩,ッ5,\」ヌゥ乞KeQ懣^孩マ;ケaァp酖aqッ。>;ツ繆Z 姥エJ6>.0逶モ^テg亠7コxス_ョナ.ヨfd$ゥナ冷「鐘_ョワA>1 ATスヲ3HWt「O黎]s+9スョ゚ミ鍖コW゚yソキ^W キ。ノ5乂=マテ"%O1o痢ルRP?イQヘ9tユム荐 z}ヌfイ溥タ粒lE Bソ` シP*]a^@ーfォ[袢靡オシXu`e塲F」鶇「秒賊GGリ#ヌユンタ冴畭<賢e 樽)Zセtb マ+Jテ」ュeャソゥ4ア*D黜突"kPvツ Uサ`SロリMニュ#/脩g~1匙、x;ラ}鰈繽lハ箟^x ゚ツ-マoMX禍々tモ#ッ檠ク>ォ[Y艀PィJ1娶ア焚l堪^As@號フ"ユ,U"T翻ODヲ@#Nohスo;$AツoウCjヤp懐ゥt)ロンツLな幸&Y'qP蟯焜Wニmネu恊1>同/a"ヒメ。癨カ#迂3底h侈QチiIクヨVク2z川u8ヲチJ;ェカ`6ナヘャ/タ)Nヲ\^(6@ル@烙W牲R??>楫(E4モル忌$$きYgュコ%レVヘb是フ)~ハオモ<%ELャ!マクgレ#g}ッXbンZ2Bム゚エK烽 d;ル&y廡ァノン>) tヒムタX(メュョG#c1&qノ浅ヤbI廰ニX)$]&4`Cオヲ朸ル:ァ2鼇スフ|O:KヒK9。.j#、悟ルraケ@_窃ATG沢Lv$Lホユm$\ス\zD>>#nJby"]ナウユ23クsモ`トケ/罰iヌm|<蹶3歡仍^ェm:u;キィv録Kオ麕gJt)-場齒i羲胥ンルwgcホ釶vl#1倭LH|Bィ レ J"u6VモU測ミ・YF[ 畠宛仁mキオ燃ァu*・。Sレ5YYム6eiヲ4ゥuメ:ヲl困iヘセ゚gイュg゚}ソ゚wンス~>゚カ C;r ゚フ=メオホ{ム攷ソ1K背ョdァマR=y/廩}ル鉦r_ vRナ?ケムQノ xg2  %Lル岱 BjQナr%*塲b控xU稀DE腑シ坤E望。洽+ンストFr-]cEK ネチσォーvオ&レY\:=鎹kメjハ想ヘW~ラレヒSツ疉>n、サm揀暃*-岶銭ン烝dロ余麾登%殿;Vg 損f榮xゥ黼=マu-}ケ-#ケン壱iL齷Gvフ|キyラケセ悌言*コ/$/,薹rラs7s゙ AG湯イ7r檪ル謖8覬ヨK<V誼+MFγfウ、)瓢ユメンO碍タ!?ン尿ゥUX+2麑9標K蓚。リ[ミUォトセヨミk。s!>エ>Iだ嘴6Kウエf5hハヨa鐡ヤ^「断苓a  。Oフ$|ツ鮭0aH$R騷~j籘*!ZAケXTL、]@ケゥ+!ユ@認コ6$g「エ/:]完DuQ{ツュ[E yPヲY1aDs奥;{ョマ甕_)剴g~ミEサヤユtRウsツ$メンh4!1pイ9:KワYヘ6裡卮゚マs<%シツsメ縄 致 知件ヌ{}dOl0H;ン]>爬ス>ミ゙ェV/tn%サウAレ溺5k\Gv]寶>ミーロGjvノW0Qレb8ス{=j!<み$6ヘXッ嘗kコ穹+ォ氣i(fタフ"澑z % tアサテU* ナT6穫 セRノM*ソvjpdヤ続_ナd^ミ齎キ[ホソヤケウ.J&~サ-?ンyhO%%&ciネ鎰レキ」鰺6$Z-セレ<)}踴テ゚;ッヌゲ/tOLスi商蔓ィ脉ハ=乳擾ンワvォニ@テワアヌ杲ロ^84?メァ嚀ヤDx碚、モゥミ'武慇jョ剱Yヌニェ W1Z 咋0レ hク。Xc1ハu攻xn旄Aエ `C$猫m鑑石d アg穗|Fシt_El?係Oli殪gニ賭lヌ使リホリ榮扠憙ゥ'腋馭ャヲノnbキヤiイ"ナ"{ィサЯナVH\8T8l%、=p開コ "-l%ミ迅オBUォ.TォUAミコシニNSチa-マフ7゚<涸゚ス{シ潟罍「「L TXM3;ヌg(p(シ!ヒ タ\k+Dメモ^`=;技ェテハセ、ヲ5|\ネt=ヌ 蒐iテハヲ、EgナBCネHA「+Qノ物,K*ケTrゥ膤ユェヘイ萸;K,ャア 溥0權テgナbユWm*レ}.Xネネxフ勵:S傍mC゚M゙ャvォ゙ス鸞~ユcYウレョvミ薺&ェF&r 9曾ムネ6r酎 o莎Ffタ3フ莚ツLュ蝶V儼倡h片VE"a)。黶ョト$:メ[メ{淡B丁(rY}fシリ,カ享「fア[蔔 *Vーxソ-カキAcC往藉 u3ヨイYX a>QE,咄桶ノ/礎xメX!iゥ@゚x旱e@^&防ャヌXォZmCア&qHXホ8A1イニラ.vニ「テRノ鮨4フI橢ユR」 kスナsO斜ウ゚ュァ_ホュ/9ソ寒ヲtス0セネVruカrゥ亮:3ョQゥコ9遯Gレe8 /C\ナヘ論q:4ツy$HpfUDrVEdg」ェ'┷件T?シΕAuタ`eソ殤 メサ芭レdr){=&批ワuネ盡漱ゥ毒周錮Q゚R?゙ 濳I几ホ4cキjY:cヘヘセQォケ堂mヒ3ホロマ繽r恂ヘ Q\゙c'3=、| ョフヘ漑<ワメァrタユ會ッ鬧B「ォウガムサm宅モヲホ;xメア`ホヘU鏤]tッナ畜ヘOミユ僮$+ ム構ミネ掘Z5-転rエ KY犧,DG、nー゚9o眷 ュX槞d9ェc.ィ鍖ホ/Vコ*kェャュvヤョz[}、ヤ;;?ァtタラsJ'n '- >]:`}ョ゚vB応燠`]獺六Z囹Z^^「\??32ノヤ兮ンツヒSSKスSmk彌nアッxZK 6ィe?`V-#フニd?塢(b~、h&#u!仟蝋[タRF"チ.ホ挿ソzク(t(#試高ケyDケ|━「┥X マQ佝qB_ ケ:ネK唏Iv .薪Y価@ヲ+!;コハ。H($@ヨ*xu*Lケシ6゚T丱4文メQコハm(ネFFリネ1#/臘`-嚔ュツ+ ~営zP ヨR・+ウヲフレrGハキ薑イOセ?W漫o>エ!、Ih_ワチv7QYュャフ$ヌユ苹串nァカUMモ゙z悄ュサ呼クヌK,ョxリッ猝UメオJ┯6メェオカ丸'к\2i悩カラ」ヨ」ミ綸qヤZmスF緞・V障ッユ黹レ^聲Nヌヨ% S7iコIモM!tリarp椌ツタ658ヤ跌91ナP決vC+クスC崢pggj|タ(トム竕ルケ /#ゥj夕児mアKュュ7[榴スャNL ヒモ>3ーモ8>=トマラ@ミッル:ィGタクx}利ラ&kレカ痕コmキG#經zjロロuャ@隰2ムモz}gサ8蒼s゙XGk>^YA 鞏 n^゙キw産8JマワMェ "ウ3讀*ツト=7;リチ連ヨン:E32d?g2ホPョndヨ7r#」@ッイ7広鯊ワマラ故ホKV。Qサ彿ュ恰ンp3"'Lャo]チ甑箕!チ k蜥ェH;樺 GlIcmO羞f9!ロ1jノf{マ詢ナWjzス>゙h6寫n゚シ~'ッ4レロ;ォソフB耀タョタ4/~zkケf3u鷽/^レ゚ ノウB゚W+、榔*q']ミハ駻(8臓ヤ虱 rテァ hキvcリ:jO3dサンP⊆!Ayホ#'n甬裂B59ヒ壅F玩8サニ鞅omセr#J轉ヒム・ャ"yヌ [ヨku]\簿 Cセ・y暁Dyウキエ2陸ハSア佶?シ囿コ蚩onカ゚閘kK気モ、&agニア^2{嶽I騷 +;駟サ7舒-オリユ櫻gUJ-O`イウ 添トd%e:僑x)aiン薗D諾@兼d遠d架倡=‰!アw&qx廳モ4JS斡A看 1b`3摂$彗p)^/!ハN゚w.[(a8rョqzH蔦 KJ\コ"ロYHo会運ナフ碗6ュOM」mt M」kホシ「< oエ+ョ1?ソQソw"甓Rフ躙}ノAC゙ョリ&ョ;~ホ斫?ホア暎湘種t5痍 。c1ナ%]ムェV稚B クィアV"Z'M ゥ`*M@ヤ )2Vヤヲ疫筺m Vエzォ&T卸K}マv@6K゙ヒスwスワ}゙嘔暖g噤ヘ&テチ}Zネヒ輪,ュ ヌョ゙ry゙b`} 鱈6゙讙&vィ2ノ1ツ:xdBG-ヤ'mテ行|ホh ロフ%8gユAサ['-68:7アsnbD梏ォツ箋;qテ纛,ニモN^LSMe$mE軍wァ.ワ症)(ニ板n88滞7鑓ワdルクロュニ1ーap薦`bk抖「汞゙ ]sヘuワrル・ソrh」k]hG梦廃+鷄ュrVリMゥ鑠咤[*レ舁FbGマK|@薦7u;ツ軸南ヨホ~豸モrOケi@|`0鶴*゙マoi牴シ拙>xaロc;/コ纛.ェヲッセBケg)桓8%p`ラ板) 0蟒籖錣:T[ィuHio搦uqi{涌hTR4rA+窶戻#j(ハタ%ネ5JカチD蔭メdaソ ィCテ厄}タ~;=, 9kユUリ%&フ( シ蕎曳ェニ9h雌Hoクモn$栗P埃qtラ従?聡カ/゚サf敵ソウ9ニノ/|U?/鉦?クコ?Xモ崛ケレьナ 尸ヒ52鯰ヨイ}fユ2療gヌP"~參豫殫ー_ s蕣vロッ゙ユ0<トリ1匸トzハe獰0`? iooユミ Sу)釉 К$ケリ$レルY*k カMュ葎禪` 9庫nr\゚Jリチュ殫、_kjoV曝5 Fe^截イ6テ聨 /ン/65ネF<銛ユGケ>祁Sワ$>.橙ア' ヤg マ1枹N&圏晉w暝]樶セ甄オg_k。「橡d%?リ*Dァフ服、トァヨメR>テーア癬ミシ'9-裕n張Gク:w枋クソiエ=mE5m[b4AラJ 菓ト剛-1イチV郎%Vo漾モ霽ゥ6シ破ッAエV\8モ=]ョrGYCE\*ョ^ 抱FQKミ「ッQc5 動アモチ8t麥S ュx人Mツ エシeth、tm8=ゾc゚}ksoヲ64y緩x$鉱\゙n゚ネcサャ碚b1ヌ?凅r゚ヒ7ge w洽トモi祠{椀Uサ#゙c oOョ゙Kソロ叢メ゚,gミ;-$grノv5モ怨ミ#*jョ蝦vjロ7ィ3> d米' 穂2鵜$$ タ。コボ!}ソ~Lg#稠R84 謡邂カB寉度コ.xvソ久チ;搬ルGr゙譱弑憬01翦{クOUsルSナレ辻Gュ`イ2],レ宍+v逅干H\王ョkォサ糶Z翫sセ&"6Rw!)コ遜ハ0|n;イネ^Ps(GRェェjィョMj4・霞緘オ哺ノYBニKN|リ8ニ*ア1゙ィ嚴ロ、レー'2* ト 霊l{纐カュtKwム」マMャリリ笛Jチeン~マ哦;eホ覈*ェホ。 s繽 スw] トツヲGu切T虻゙ァ゙Z ヒ,瀑マ穃ロモツ疑!xゥXXCiチ゚EFBTq麩|_O3!+`コ+縷。舊鵤u64aClネ."в`=GエヲeT。鴬輕5Pェ"ヤPユ1D@晉oホ7斈キьrBミ挈. 6:Wr4ァ則Aレk{チFロメ9ヌレ8レ^恷ァ%モR0Z。RV弯5u Wコ^)キxmョYマメユjクssオ~qN2。6。砥イAKRチ祟#テ尅@ユスウャ」剥sp.;Rュヤ+v。24$P艸スsゥケ董、nwリ;ノ;ゥサ/5聘eG胡4}圸J=Z傷Zvコ拭s戸m述ニ旛槻 HアP恪g\gクウレノラSシ微d枯ニPew蕷尋ツ倶ハァフ攪;,ナゥ+tゥィh4モヤ閉 R,_.留D繩ェ Qム猩甎JwvJR*鱆YA'-止G柑E癡ェ募ネ ヴ шナメIIラN#チ$fナ hD&F連ス脈+rAu"ァ1・」}Tッ絹wエ~iTiロcKcアーョ O/&PュjAァ4チキ。 巒ロb」俵テ&xワtハテ<、キ煎遯J^」6柴ニスFウM哺ス]ミ\*_%ヒdUMルェ箝=乎蕊(GニCM%紳-ラ落/ト/|_fリZ/Uク)O。)z鎌笙 N*酉ノリ厥'ァ婿チト葭>ナd1ェq6uヨーユェリレ2嗟コ2イ,ホ、。Dチ鎬sヲ槊クe絶2ンb\jB?5I%岔卩OァfイYケ。zラos.ゥ9 チ,!刎&疊>キ &#z`樅sKタ:%#ハソシ*。+_8ーp(nムコ、?lWklW;塢zw佗>fス;ッzラ鎖qmYン 阪$4トhjタ8mD*臣」!アア・BCノメ"A叶ィrZi悴B詑ト$j"d。TBAラ盻wラチリ檢ンケsg諂セsN>>ォ@覓&9w!モuhfe旃ホzロラi@E?@Vkア仝Pゥuz**ヲ「ZD]Hァィ"-ィ14F#ツ?ネW7pコ-Tヘオム gvユw 哮dネンョoシ0エg「緋ロ恩斎垣d轗'7gSb~粹'F_ェ」Sロカ霾lセVル$TmFEタh0jミラZ拂YJ唐アキO"エマ((a哉レZュ訓 hc蕾cue;spK宰A"キ・ MF ソ メ1s幕纏N2Fシュャ ェjワサ錏j'f。g耻モl' ゥェ。 ーワヤッTユm7ウ襟ホ )C.cU}ヲヤフマリ3u-;ヌヘ)臨7オE}ゥヲ!。oュkE-カ%アh+fワVnEロnナ|セE船マSSスムホィI4Iシ`|']薇v鱧z敷ラチ・ワサZh鴨V辞セ>iァBヒJ,#Sコ贈$Nフ@シ阨XM5UfケヒrコヲXzL(薪イイ j*ッフ#ァq \○礦ク?pォc ^ーr唳`~ル{袈宿稀ァ 喝F・^ッ[M度~Kヒ*ナ.‐哦W辟NTl} 綵Tヘ眥ェ ナ籠菴1\/エヲ0ッワモ8N*獄5!XヌユxKNメ)ぐj ais ェ}bCム$陋K恆險Aコs"[ス fT チ聿~ニj1」」r.゙イ ェチYQヘナ烙PY卜ル"z#eサ峭 ゚ル糾スア|j}ム]_H8Yq具、i ンX:ツFyモ漁ンカV磨l騙ークルR-キウナハeト]塢風b-;f6 b俎j弼イ_hョタマメヲ弸,`マク))b)H > iオ看)<%T「侍ネ苡8ネ畆O/兵rケrNィ抱]オアレ湾{絃L$ョポU弋ニ Mユェ  ヲhレFyシ|=\タタケo゙wツxツyケJ訃ラウスケrルヨエェfシPsVレ*Yヨ迺g堵糞テ孺>{/$レレナ vリ{=Tィ.ヤナ儡ホ納/ソ*愼届Eaチ\pョ民嶼暝フ恤r Cチク?ノ!孛O58x*エ;ヘソ,L)モ黎~ハ愆裝qナ舍ヒラチ爾」ツQム9サi AVI1#\ニワR較銑4ォf2YHェ 慶<ナ,LaCラ音ョh0n1 鵐83ニqfセP鏃ヤ个ィョ標$ヌチ>,「5H「 Zサ職Q Tエ ー dウAムxQ%Iェ,「)澱ミマスィ翆b 7>菎S攴クDt鰯筐^Qムi]QoィCユ{・P♪ヨ/Q ー8pッケハ「竦畭将啓ネウm コネウ+フ寳 ネ)ホTw賻諧クユ9ツAqQンE+クケウ捗竊ワ]US綽qlBユヘU0=ワ! 犂イェ#ツNv懋ヨSオA,アロソュ~」蟲 [U Uル(フ鞫+ ロf$c?弩{p埜?゚c毓fウノf7ルシ餅%-6/ жP臼軍数GオヌRレ。e0ア・@・ヤj'hFgRQ'0ナV濡オカf7オウ山ノQrゥ\コsITェ6F螽キェgeム jウPg^n_sy~エッ慝イャCj9xYKニ ?цkZ|r'タpクメョ鞭 棹x「iャゥョュ楽DソX'kgJ=y」F評靈アXヒ5)Y`&椚=<ァ~Fン亟H{%゙p輩撼*クpリnIト、♀.[FJbAYv罘ォカ<モ控;&.zY>V2:宣フ杁蜂7M昜」ルM~V69mn:榕膩柿_モxァトウノ」xNH祖Noaムッ、篇洟 $,7sー=s%{テ8゚9キソチ氏rKjuク[~槿bセ腹/#3;テ衢9ア$2~R遒zeY蜆啀M嘉aア5穴ヨフ[h4$R繭~~殴6\艇タ%o仞ル拒wサソ$k6>mXマ・,ムB 徼キ+r椛?wヘqゥ9ル@7]V喨徽セfヲVs惡Kkh跏」1セKン契Dォ=t'耨@ _3osー5瓔シe-カ|5&ァゥ彩(%勘kゥ |+羮*ナO蝌ォーアエ~邀ョ\ャkワZレ恢ホ\Tr1テ>Xgミ鯡Iセォ~:1]ミノミオtニgΑdAヲA狩潤マ?カノ エ@ヒ`}tタシ゚2ッナケYシ{V(遉B颱アr試ィネ笹lワ幢lワ快gノャ_:諦 ーョ=ン>y)U箝セ銅^ケ酬+巵f7オ0,遞悪莊Bヌゥヲラゥ゚V@ワK[票ヤ9ヘシ~モA螻乖ム與鶴、)ク/Ma霎}セ0 *Vッ|>瘰拜シtミIー5+餮アヌ$y8 yホッdサKmャsオ/狠ウツ!テ8!>#>ー1ゥ1紳@リソ[ u渊x 為`゚|ャ/Oウマーoイーo? 溷w\ ロー%c讒rzpQ3ムヨ"X+竇゚爽觜狄ルキリg 既Pメ・|Oゥ40Eナル"ルキメh>S・Iワ。B・Zル、ュ *th痊苻0ィ。ヌァP・途ルv5l1DSs3Lムu,-PNチエル'bコ]鵡人鬣(゙団atテメ/}ツ!オ戎エ_.W%陶Gネヤ#?揆チァモ瘰z都L駸轣|ヨヤCヒチヒヤッj?震蘢i PjP6ォ&アvJ',ノ ソケ<ョ6ムxSユゥスヤィ謇ク b|>ョT;ゥr間Kロ捧tタワCユJ?゙gノgi3]=腮テ}ウセ$ィ皹。Y1ラ**ョ_1ラIJqョ 悄E} 騒s ヒ(、ワNマa~壽滸尽ヒ4塹4U[イ8L>ラセソネ塾"曠榲ワQcp:$゚M'舅/"ム#F\c 嵬#ネテxoョ;ナ踞be埓2躓+)Gホ戳]ハ>マハ.巣Z-R4ト0daウ鏑EヲfPcヘ*都A+セVF^豺7P6]C>jテ嗜qラネ縵hロAネ>⊆た,ケT匐ヤ國旋:a菎4[、jD゙モ盖!S・X]gR-ホ患Ziシ5N!S宀M.嗇惡1J+斧 ソ゚U】ル期(沃|モ咨オZP耳゚<モTI D?チsf*6WミhタワR・ト>湘ッタソェ「?rl薫N'ワ'ネ"^ケ゚ム(1ヨAヤヨ蹙ロィk「lh$リサ(U]泡wヲゥア「$別蔔ィMフヘ」ソノoヒ蟾N宝エD ゙0)匠~檻mャG [擅ハサ猴1セX゙ッェ:萩Xテワjネa枠lフッメ褶エR颱p捜*Sm喨碇s齡Pァケ5ケ^Iマ靨ソ(pubJ6。ォ鮠スン}コヲノ:゙G?゙rX」ェ メ゚I囗#`ソ|kgメF髏Ki/M粍{Sxヌ~オヌHyU3ウウOvY@pエ、ロリ] !薬N。PXーg邀;0;3フフホイニ5VI」I[ー|、薗 )Xワヨ亘D ムl「凹ヤHハ 爛 徭7゚|ウサウKム?フ7ワヌwケ逵{ホケロ・=<;ヨ4ミ隕Wァ@/A#;レァSタァチヌh_ョチS≪cァ_リ97xッアニンィ?zゥィケンタnマノ朧ム*キ*瞋K謙ソ!5'hVm枅Uオc|!セォ#ホ]、E裝)゚U*厠' セサ悄ソノ=|\dク支,>D3|ラF蒸 b)R[ュ>ュ0リセG?シ聳セラョ褝鈴ーヨx60チzタロッ9m`ヤシ嫉ラK{蔽Aヤ(ァX&`{iソf7オ3 <wpWW^+゚OGセ蒡 ネナ3゚腰クコ忌ZuJ遲}ャ]シ−ョQマ^。.エミnエュ聲&^N歡ノ=k w「p7pWニ脩ワ斃タマキ|h、F]G[jコQ{ S7Bヒホメr/゚ナリロh#xヘRu ;^7j隧鍔uユ暢uC#黽鴆(國テオ\GY\3萋hkF YIs喝% vチスナク彙ムレ=ケ_*Y「珀}}bャ+ム%DPヌl<дオ柯ロkD;aン~z=ム。戰滲Q頤0ィ絅Gョ d惟_'+^ォ√スTPATPATPATPATPATPAj棕wh=蟀癒ヤL掖ィrS+U。Oエュ ~ォネ/モ>Z(=ヲ4テ_g*ハョ:濟SMm6Cラミロ ]Ko:k閙-Cラモコ。@究曦6t#ナ杰sチトミ3鎹モッdw「ケテミ>jj>kh?ユカ,7tュi冖閠kM55カャ5t オエ5t-%5uヤレrニミエiヨ ンi6zュ咐庁iナ惺 =ス鸛Kリミ3ィ」m$X肯[┛f橋コFニ」B凶レ ]'SBラ)ュ6RZm、エレH騾k載Hiオ待j#・ユFJォ鵠V)ュ6RZm、エレHiオモ ョN撞<'t」k|ミ゚コ厮メv^鏃ミ3ロ^z北l皀\縱袤_ =_ヨ(マョ5pム掬нH霍^*サLラケ莟sユot擂'6キ栩h來・(6Hgz・( 萠ェ mB/C祥 FセヤfスGN搦dAレ :kイロ〃[Fk゚EK オ\F7站レスヲ2蒿ォス燉23Q柿8 ネXG;$kR 9臓・義蕊2tc)hOトh2ナアkNdaIり囿蘯ァメ>Hヒ~ササ{ヌ舮,!ラャネ゙oクu畔エカフIU3}ミqBNケム遥eルWkクヌq fイ「=鞣ッワ シ$サ08d∂カ嫣ヲwc煩エソ;e| F癡-ク \カ洛ミtjー跂r箪悔レqユbZ、LヒYxュオ]ゥヘヤロRミロ,搾]:MゥWfア~ミル3型゙eマA油yヤ゙イ^%痣}Fナウ」2ヨ'\「「ム$セb{フヨ錠シャKAセi9コgnヘX[ 怨」9q#ヒA症テKネb「ス12軛孔]\ マア渮方ャRヒ$ 邀,ヤ.ァ*ヨ{[ヌ^Qコウ宍ョ藕ツョ 」ャpヒ砂wワヌ、ャマ ァ[ィ搖o3kGwヘ 0Fcrにリ_J"iトト<ヨiトオq`2ヨキN]ヘk伜WjGユ満 '1 7=カ yt將エ-齢6ヲラワ騫リω:8mト鏗ノ5モJZ刷ト2"ュ猫ト捕~zフャツ2フャ4jdャユユ*鵲Uタ`lュ$[ 」愿{翕ニヒLm杢9蓼f貂恩,モ>9ァニ溝」効)sz@ヨ迪 v忌"p=ウL!イe\uH!uニ估ャp疝ニウ!O・aケロセュgワ浮チN7bnER|#Zネdヨ%.?Yテ笶qルH"lPホ封」ル覚=ラq9sr覗/モロtrQッワtH賚ヨO5*スヒJ$I 0ラーh」wLfーネC3「檻}ゥイY墾フM;6Rdャ57oタヤ暁タトセミn4Tネタ6in憙OエF,オ歇テェ」、4骭e$ハ何曦鮑ワフ、X+oイよ6ユQ゙U[Yュェ螂Rマ;w"&待]、L ュ>7v漫ワモモ=*椒~搜膰ソ;)[「qケ"#6" ハルuマ=ツ+-ツトI[阻ル跚%蕊[oprKハdΞ4aショ_h#aニd6>]V,?XtXZセqナ9ケマア泝jaヲ$Sニ%殻 岌eカ8滬a&e^ac|」コ(ヨEdaイケサOz袤」FVユミ芒}ハヤィル「Xチセョッ$[ア、鈎hDkーネ竃sH^=)7ュ メb乍「S礼dレオc鎌Sヨ{'~s XョNゥ oスu3ホァデ8$眠1^b:=゚矍3恷ニB疉Lーァ?ワ弼ヲr nJeメゥL(O%aシ:タ」ィカoH 或{アつ&。ィ"I$リ'サwwGfw侭ル,ヂ{}鶸淇7`ヂヴ{ホス寇"}サ劔=ワ?gホヘ{穏夊DポUgェナ 覈ィ黌イョコカカj| 将椥ヲサ餃ェ:ヤAサNカコYェ&]Tモャ峠BオNRg拜儒Ss3雍F:ミI褂T$ヲ3ZTウゥュTk」囑Jナ蕪K*コウx立ア+m*チ、 拳ゥσxッェRンD熈~*bナワZ7キ4カ6Mkュ鬱?a|kエ&5m男ィ蘖ラヤRァニO杰WラXラヤZムァ「Okニ UヤEッケ◆ラAヤaミu#レt琅36bW)Щオuィソ`V&v教尻タワルミ8q皮&tNフ掖uV遒ク-ヒ2NサV~[荳9Yュ窟Utュエ+ホ付揶シ イク|ルヒOkkRヒe陳|犖"q-a9ス<ュテョtヲ「{ア\;ェン N'a。事_W3rC ゙「L拱旨Y誦ツMケ価"Wツb.rsiサヨI&]」ヌSゞンP8ーワハ~ムハAynヨ5dkW9aT\Jクー「ィッミ貉aニ#セJtg%Kェクe ュク大」>オ 恣Ps :エロ$\BケNAgワヨ8フ/)ェowEクFo$頓別*eフリuc伐dκIDヒrl9找ァVヨワス !モヲサノ>N4ヨフhッゥチcFヨ Q5ユcU混ェン{ニTyXU]=r、|ラ肩Q5」Gユ蒔ュ闢欧リハハbアマv%>疊留 ュ&Nムp!ナ,A鴬綿mtHケ。jヲ寤A$ ユオ#[アカX「ォ>a、忿^;扨テヲマ爆Qミ珸鋳栢.yG隔ィ螽碗)MUtB返。尠イ+UI%スカPKsヲ舘エ ム]Ua8)yノPe} ,$"TチS%Bm57@KサFエノPE"ー、l+ア 薹*`」 ゥニ8綜リ艮ーDァ9stFDィシHメ.ハ接エルvロュLィBQサオ姚、 AゥHm譁+UdLカロル k゚.]」ァー+pa.i,X!BウイYyロ =[マC 谺ゥ_ハ :$オ煙換ネMЙハヘ貮I:ホJNz^B{ノK」ヘ\鯊 ソ煎コ$ェ森lD=ヒMjId!,鬢ヘ辟6ャ砺覓G Kェエシ鱈cK M隠 「1vシミキfメ 朶NRzyャR蕗(Uf」恣ユ弁p淙、N偸Oワ.,jマ(利サハホツキヨhイ#Xヨef瑾ヘア2:'湍チ」ョケイt);ァlaル]eK莎ィlqル5ヒrメu寿ュWリKッ猩+゚、シコ|j蔗q]+ヨ f, ?゙タ ヒ`GタbリC夾Qo4ロ」mヘ]ワM務キ@ラ(フ足叡a~ x=EョlャS。ル笛アュ3ンa竡#キt靭\ナ_マc,Cハム=ム ォ。7/。1ォc ヨタ唸 kcャ寓ー>6タリcl* ツfリ[`Kル}k ニlノeシ&W「 ユ渦窟ュ穴ロa{古リ; /;cAャテ$チ8E俛E5&95cWAヤ"エr,揣ン0サc何ーキ硯 6 c){ーtEs─ャヘAsキミヲレe4'z剌qトA8澑テq柴Q8ヌ濆,タq8'潺怱賭 Nナi8g澂悶,恪sリ鈔<慫楮"\桑p).テ蟶W*\耕qョヌ Xqnニ-クキ疱,ツbワ;ル wc チスク<0チ」x 上 <鴬4榁ウxマシ歴2^チォx ッ シ温カィ]シ>トGXエ)>テ鋩_+|腔-セテ?'契+~テb)チユリ孺リXチタユ9震pMョナオケラ蚫\pCnト沙 7・ nニヘケキ膩ワ噬9ロp[0ニYノ*Vs8Gp$Gq4k8オヒク=ヌqネ8;s'イ雌8儡Xマ]8 ldァア匳r:[リハ慄Yワ叉ケ;燼ワ宮sKmL0Iヘモフミ蛬廚什跖3マケ 2b,r;8漲ネベ0癸<欠ノ」x4障ア\タ繆フG(聽|0)>ヘg,ヘ鋩<_煖|/セハラ:゚燬|黍セヒ>?熈~ハマ9ソ燉垣~ヒ=熄?パ;燹\C験Xャ,V[-ヨ;ヨ'ヨ7ヨ/V[=60[ネCp=xウュesY[nユイmロカm.ロX゙ツイmロカqセ拐コ」#b"Vィケ8休HD苑I ノ"ヤ4、D*、F、E:、GdD&dF堪ネネ●ネワネシネ ソ」 「 」瓦翫如I板(2(脚( ィJィ*ィ核ィィ瓜ィ:ィ吸ィhFh&h廓hh鰻h6h久h闊N闌.闃n闔濶^闕>闍~闖A!蛎渦1客 j&&a2ヲ`*ヲa:f/フト,フニフナ<フヌ,ト",ニ,ナ2,ヌ ャト*ャニャナ:索リ菜ヘリくbカcv?ツnチ^テ~タAツaチQテq愨I慊i愧Y愿y\タE\ツe\チU\テuワタMワツmワチ]ワテ}<タC<ツc<チS<テsシタKシツkシチ[シテ{|タG|ツg|チW|テwタマC$E3`e8gFd$FfFe4Fg ニd,ニfニe<ニg&d"ツトLツ、Lニ膈チ猫ナヤLテエLヌフタ故トフフツ_剳ル9道孳煉弌ソw`AbaaQcqチ,ノR踏YeY主YY鴛YUY祭Y5Y況YuY穣ル ル(ヤ6f6e36g カd+カfカe;カgvd'vfve7vgd/fe? 0惹(取主8守N$NN4N迪9フ,ホホ<ホ."..2. ョ*ョョ蠎親ャn&nn6カq{ネ;vcwsr浄状OO ママ// ッッoo 漑灌__ ゚゚?? ソソ*韮 「$+PU8WET$EVEU4EW ナT,ナVナU<ナW%T「栴$V%U2%W ・T*・V・U:・WeT&eV鱒eU6eW薺.薹藏>yメ**、ツ*「「*ヲ!{*。*2ィメ*」イ*ァェ巻、ハェ「ェェヲェ。坎・レェ」コェァjj、ニj「ヲjヲ詼。頬・ヨj」カjァ槇殊、ホ瑤ョヲ遙樓・゙凜セァ、チ「。ヲ。・ム」アァ國凹、ノ圓ゥ圜髫。ソ4Sウ4[s4W4_ エP橋XKエTヒエ\+エRォエZkエVキヨk6j6k狂ォmレョレゥエKサオG{オOu@uHuDGuLヌuB'uJァuFguN輹AuI蓉EWuMラuC7uKキuGwuO@H穣DOLマB/JッFoNAI滸E_M゚C?ハ。 モイ8古:愿;#:#;乾:團;c:膨;弱:槭;:qb'qR'srァpJァrjァqZァszgpFgrfgッホ麝ホホ饅ホ<ホ|ポサ ク ケー矯ィ胸クp 葉)鰓.羇.銓ョ煌ョ萍ョ筱ョ跛ョ癩ョ袍ョ羲ョ鋺n煕n菷n筥n跏n癘n袒n羝n銹燻萸箘跟癰袱羸焉菽筍趁瘻衽羈銖樅応菲樞ゥ樊髷眩<モウ<ロs<ラ<゚ シミ蕎リKシヤヒシワ+シメォシレkシヨキラ{7z7{狭m゙゙シヒサスヌ{スマ}タ}ネ}トG}フヌ}ツ'}ハァ}ニg}ホ轗チ}ノ抑ナW}ヘラ}テ7}ヒキ}ヌw}マタネトOフマツ/ハッニoホチノナ_ペテ?ケA L6"ォA J5Db1スA N7姻?ョォヒmワソキ*サg_^~J=ォ叛gオ}^ヌ゙済NDH勇bム躍゙7gミコ=q>セ ワテ'燗)4|> 气マテ煖%2|セ _Ρテ7燬| 斬@ト0|セ゚チC8『ワ9シ!慊#x O烋x g ~マ愿^ツ ^テO爰39~ ー8ャ` )x乱A伐-TPC- ョn畍k ~ソ?タ甍g タ?畧oラyァhウnQ9ォ.EアョxモVE/o'ス腰ホメシ?oォメMrカャハbXxU/ヒ海.彫l濺Qヲ鶏Rョヒ_コL[クソd8 mラォSwn愃q梦Qョヘカl6OtgヲL 23ITレ<ユ^2テウd。gK金ケ6品iJコウVfpセ芍ネ26h sヨ(綵TX&ァ勉1オトZ媼eッ・禺シ8X3< =KテイMハ怱g sヲニョナ:gスオスM*尺"1ナニ澆~スフX.QQキ^牡 ッ1ワ振Uy報U*ヤnFハVb6z0)ッ e梗RZヤ|TVM*ラe「h菅/Qcセmナ仔シXr'-ロ畸g藥,YV範H:ッ+5kf篆ノアI01燔o“A`チヤyア。″聘鬘・md゚ニl夙}<'エR[ヒY=>;X 腿ネ桾正X=蘰#vzH Rユ羝妣V./]\CiンハVレV絞7uハィォ媾*;\ 指Wy=メィツw妍ーuサムカ2、ミ6[チRTヒEア[琥チ鵜_ シル偵 エ」Fッn Xo。セシ8ノヒャ]8)gH沫E2ホロレワTュ=詣チ鬟f\ーMY7UケITィ逍/q齔ュц&^0オh:ョク箜'モ0ミ&(脯」rテ ュ゚=ム屁ヒエ゚遁エ*聆綟菘シト;73クカ0ラサ Wヲ?欲/{替{H5^vウ6`poNコ7釿6/pレ, 拝Oaエ徊-BネァfウレEモ眞cォ耡テK< x続"ヒチ;弸ヤづシXxアvマ権メ:モJeマシハ&bORス歴ケLク _閼[晰過奢:~ォセ0 キ&癡{ムッォ=|モa疼=:蛸サレツq/オミ=冖ヒクイ3ui\vxネ膊孀チ%nィJ尢lクメ^/チ+^吸xeシメ7ハm[#ウツュ8V,ソVwtLシnpン bイ\n饌凪ツi\集bga国 ;ー,ョqトG@qトG@]]# 滋ォ3ヘhFD3"ム堅Tナ、%&-1i)rL祖S苻"O)飛ヌ8ヲト1%)qL営JS笘ヌ8fト1#qフcFウ..雁@LhB稲ンc蘖@($ M ヌ8:ヘa李!:繚セサトV5_吏シ、cキモヤN**アuG9:ハplロEロヤ晴5ッS'鋩゙舁ヒV姦8ホィヨュSQネマュZ僊]"[ンnx ュzクラ9k濯フIーン、シキc;逍ン阿{^ッチM V?).ルェケケ鯡y゙テソnmムテ?~襞2ヒ ョリ )リヤク:レロ蜜・・Ffレ 憧]dX。yM"Xヒm2「チ#F腮ソツjny[n1B馴戴ェj卜鯡鵠vUセサヤtQ旄<磨Lー堕 セュコ肌シサラ」:イィj。FiJユ匍菜アワレ}ャ穫ー*スニヴk0ト|フーZ モロXヌ!縫#Jミ ォL/ョ羨ク@麁メ#ウNFcオPf&.友#ケv%4Fオォイコ弍シ]ヤ$-~J」 「ト}莓羚ォH垓(7・(xuコL}屹ャ+Oホェヒ; 5・卜lアov0フモ-QLhf胎ム剴S"ヘ5'ァD!。E-ッ?B!。PLィ毅J終鴦┫$ヘ覘周Iヤiアsテタ*}ハテh仮ゥ物モ「タ3鎚rフィセ9 茯g迺ェ傲"ォナ緒 Q1ユ*ヲZナ47jEニ]&樒QCウgG゙フId鼬(&ソ4マナ┝xカof群fヤwL~トル個ィ嫐2|テ+QDsサxン倹4ラト恐@>。ョofQD」3ハwfラrレi6oQハ&JルD)(e・l「熱抜嘘6Q貝BTゥムHi"Cd "GTy"覬フ。呂1bナ9s(覬フ。呂3fヘ94sーヲィXS(ニMわ苛[ンンヘ]サヨ,~% kbPニ瘋,カ┓杰\゚リワリシyォ^歉ヘ&55ー 溶U\dラ際7豕豸dエTノ。涵ムm゙ワレクケyイロ徙゚レク{耿]カタEQm監ヨツbL cRネァ*XkPラZXトモィニオサywv勤ルホ6怦4ケタニン トY\4クhpムθ5ニ「1-レw ワテIYK覺3A+5輻eFxセ^゚クサセs邨ロッC9?[v$_ 、_視ノ |qv3祭/4Vx&B?3ィt}|1≪餾マ drnvz鞅羌ダメ椌z=ユムキメF拂'ロ>ワ鼎ヤイネeGサャ|Y(ユ蹠ゥ゙.ォ>_Vス=BG}+ットアm栩*lュuス{w貸ミサeヌインイォGiム・ナインイォGhム。E_y{+]┸キ'5x{xカ墜ルミミァO>鱆呀+ルホt鰥ゥ5「Yw"\欽v"\,w"ヒオテ,wウ\,w"ヒオC,wアシFt,ッナ胛ク6収スYTアpイL`[リ饒'#Xォa ャ-`l a+リカ罧ム&2D防o+ k`l [テ6ーcリa|カFvッmFー ゚7セー,5粨-セo蝟bxK1シ・゙R o)キテ[貫耳$Dフa佚0aテシッ3齏 ka/GーテIン 桂ムウdt+}匡z-ホQリ 紙q迦キ o\ a・ VSGーュAサオーツPV。qd筧+ウLトSRユ8Rニ/斥!佑.npテNミホリ曷zホ痘(フヒニ導c%t+。[)澤ハw.Yクoチ゚A]/ム_ャ糊K;イ旦%杙サ譲毳セoyエ゚4*ルャ/^ユ壌朋Q゚ マャヒ凩#フキ/]>__ /g<=メ=oY=3ソンg}ー:リ; r3|a腎/Hソ否 ハeヌCモョ|ウ;|s5゚ ゚ovテ7サA媛セm ヒツシ<霎Vォ7カ叉ソ掵>ヌケリヘメ-Mマ袍dv番aJ9ア[G際磐ユ$Mウ庚II<ト@K+(ZF"lャ 轡i樋ケォワ?「ム|-ェエ員|[。hモ}サテmコモn辟8#ホ瓦*カ1q@フ火ス5ロオォb砺uホy<鉾ヘsテ羔、5驢エ.ン万ゥC2・エ迫&・瀞惷 ケ遉9乱LzNzD'琺楸ヌゥコ錚エ8ね$`0 フャq,静ンネa)昿怙 Z>ホラ。Nエシy碯"鵙ヤ(ウLネ惇ャ sソ゚f`イu椅amラチキルミ魔魔ラ 3フミi@莖uサ|?ラQヘ臥osマ慄 泗テロヨZゥユJZ饅+5更P/ク セ゚Gト n袷諞 &'ケ.!ャ涜*9"V9/#ヲイ}」J6m"ヤo図q蘖=ミw9ホ1ホヘf]殲キOu漑ス>eNG礙怎ヲ'ョ\+q・5ョ`エ/ Qы%ニo戈s侍 A蜩r'ィ|T゙*'ぬ翌ャ゚f<サ諌タルテ仞チケ状Vモ」*ソS#ェメ・*q椒ィNコ9o矇ネ~|チ幤1I`$jュjY \=ロCc カ行唇m罧z敷BOスk7゚R?hッΨT#レK味キ。耙%bPKロ8ナ嬋dd9I~エ良゚ョAユキネ7QM甼lGn!zヨ慈◯ミ湿匏u6チl緤5セ℃吐【G.ー咆W+~#ソンW髴エ#ャW(モ[ロルニfy彬$ヘヒゥカニ/イ栄|囲D纉n$:ラ:蜩WH悪lkァ0閣Aソ・ヒクツ.戛奴s鼇Wq}ム オ臨?^bヒeォラ#eェ_T]Qロ\ヲmu-R桝ク) =オEカ錵u52ョョh<サィ!擬=oエゥoiC鶲uエmT*y W|駘d詳o,ォ{2Eレ4PフャQwi_Ww"シ」L{Kヒ2妍ニXセィ>濠[5>扮t]!.Z0#ョiラ壱ーkキォモユ ク喀嫋 rス畷膸ケF貌IvネL艷スu3L6H>&茶アΑニ ヨィ,獻アSBjー媚):ヤmuSeラスω姿ハ蔦_ヘ)A-KxュLノ。 6( 拵エ黠2・ァ_odモッgウ4eュ穀ヤHタコ;壱ィ90d9オn?ルrフォ゚ウa釵トc(_褞テテ痂イ゙H fャ_5eュ(;ケラ熱YG3淀ツD2qI賄掴\「ッ'Y慇鎚>ー草0 10[延剛h課ケ ロ4猫C。企}レヒLリ>sモxeャf搬Xi&ー [H3ォYリツlリ蔽シャ鳳/フ[K`尸ゥィーDtf)v0.杰~俟ハtイD輹t壼u(}鑛ゥxー ェA'<ニコ3- ゚<6モ馳-9莚ソ憑:9醤d園%nヘ曙>ヌtxフコゥ%ャcZ"P}Lz櫨オD糟&e乾觜ツ6頓p"[Z夐I=Rフセ=3l ヨテj-・哲アォ秒オRャヨ鳥トk・vモT:S祢wカ輊EKぉマCセ1倆゙茆ワテ爵Aォ漉?[柝ヨェユコ-`ゥカx[悋tイTヅjハ`綟n5蕕xωMツト毫>;555ヘP(チモ?舟罍 ヲャス2紡Iヒフ'イ庇撮靄仞kニuC0f刑c゙X5怛B磅k。!!ヘfC。ユ斉G3Mc>森タn「モ8 ^ウナ5ァ S (0Tハ 癰Lチ*fテ・」・使「;ハミ矼ェhrE郊ヤオc5q/xSr{猾タ_^ァ」|BeラfァネT話絞FS疂ニ eヒ==カチq` モG=。Sぇタ タト」Sャ[驛譱?F+ endstream endobj 3502 0 obj<> endobj 3503 0 obj<> endobj 3504 0 obj<>stream H餓謡tuヌフ晢/。ェ0チD1B, ツRv]j$$$$メ、R H ぃHゥ*HT饐叶<zy<帑莢{ホア銕9サg゚戍ヘoフoiDT3黄Wヒ持屓フ=@znYユョc斷ナマ%*!}]$Eァ\広_似O3dーyサ麝B嶺浹・QヘD88<オシOT'N守級{9溯オvッa?ユ% 湊B}ヌWUャ遭ワ'夛mLヤ皖!IムテR^タD淤xs@tRフ∈ヌォUi嵐ハKx9o膊シ婦シa>ホァホ覓|楠j"mミ晰tC/E?$"1 #アヒー kー_bウ五趣# 恋$ホ<.澹\テMワチ<チ3・)ィ"エQeル。*ゥェ。 W=To+wワ沖ヒ ラ絽y2O91/潸ッ遽゙ポ松Q>ノg<_濱壘ヤ@Z絨x ]W@oト"0C0儿X講rッ_c カb~タヌaナq慊/ネニ%\ナoク砿x7シ兜*ヲ^T・Uy腸mツT7ユK;ツN貅ワ4榾'慄Kyノ孳臂#|09veホインツオミミo」;「ベ$シ吟%X煮アセ荘゚窖ニ>メ元ネツE\チuワツ]<トS)])UTツ袙ゥ*ォD嗚ャzェ>*ソ堂讀t6ケpm蜀<謝}榮S8挌lホ炸シ2^ナォy ッ 5o痂{゙ヘ罅,gEセツラeサナケ|c~ハ5FD。堀o「:簪闃櫁8G2a(゙テ固xLタDLニT|鵁ウ0s1訥>ナ"|抱eホ6 mリ云 pヌpァqN ツe萵rq障Q、 蟇喚R*@媛TE仭旦5eゥ誘MUKス「ィzェセzUスョ圷(ユLuWム*F(・ロウZォ`^ヌx楝e~?樸ワッ蔆 ^/鋺&゚;vロ|ツ?4Esエ@ォ」相qHテ)tフタLフF>ツ<|eV梍,フ*|悴コ R5Tー QオU]*ヤHr(BEェヲラ3?露ア3Iモtゥ*R mmエ寰ミYコLキ雎魅@ 「 ・FRi4ァヨヤ槁ヒSz~ォェメ%襖ムIMWテHG5B4Jmヲ&6カォ キ:S]jH磬ミ酒リ酒ヤ錫ア# キ#シgGeG詫G諏C錯魂ュ1Vj。5カミWh/エメ ュ VQゥ\x&oM゙9盛NUT「0サUR[Rヲ 整゚癘「wケ戊=~C>キ}タo>ュUi|B゚讚仕ョKiT)ソ螢ォC/詒霎鬱Q#&ヲレE暴M~m$ヒユLッヌ:h"エ 側yス^{ 宝+ウb鯛蔚シナェヒu*kセコッ2斎ニhモオ叭"m掀N麸{スyヨ仍W耜フ&+瘰Qワhgt3zウ源ニc桶ムリj1ョI&^ヌ}Y鴛$ソツTguSN|b4ヒ噤ヲモ 2k孛ヘfnF佻ヘds源ヤ\nョvタQレQホ疸9j;:9z88V8uァr釦8ヒ:+:ォ:k:k9[9」1ユj・ェ9,イtォクUハ*cUー*[ユュォn%ZゥV5ノ喃ヘイYォュ ヨk峽ヒレoカホXWつ" ヤ?9rツrワznンmココテン(wszUキラモY堵w<^章ム、L娟ヲカV;ィ=:サホiヲB:iB'摎啣ツ鐐0fニーツCオR皓$レ08$$Zス7フ>} 縣篠1ク?タ)8!ャレ? ォ!Nテム\ ワゥミシ。?"*迷(tヂ( mタm.*#aエ5鳴Xソテ8ク`'ホヌHィ寝テ+x 1a シ 4ミs♂A!クXニRフ酵0/レ2\マョタP\沖p5ョチオクテp=n穿イ 7ワ*l=鏡8 テqnヌワ0?トH,vX チク喝アツンX僑チ(ワ錦ー8摩魂 K「=ヌXJj}tタX激乱ラ:胞GtBg<0ニ<*8砲,榮Sxマ`DbEtE7ャ$膂ニウ例 $チ9ク>v、|観ヲ甃LGw|ッ f`e瘧漏。"&MルP.ハMyー %[ハGゥルQA*DゥV・「T ォau*N%ィ$ルS)*Meネ¬#9」ヨrX貼ィフ|э1>ホ'$溪モ|,'9。セネカ%N簍|ッ5セホ78冩-セヘ)|=セマ!?簓慳O)?テxΑ N纓慚ッ`3l!_ャロ`;ヌdリ 疳ニC LVュUユ^オUT'ユYuQ]Uユ榱-頑1箘狎TサP a&z0茂Aリ▲>>焉<杏`ユMuW^B<∞イO臑<烏d楪Sル立ア郢<挌Lq$o=I 頴 カx4/%シT慳rc1ヤg泥鈴 ]・kt拵P2ン、[「ホ「ニコ」$暇Q9)gムdoンG攜ムmu;Q駢{ンS否BキヤュDktャスユヌqム`!ネPQ(ケヒUケゥJ「鞫z-J*z,z&+ゥャイィレ_イYUUMU淀VCユTオD・O3\{O゚ラDァv「ヤB冱劾鯨「ユニマ槌Hソ'コe6・_ムW5Qッ嬋ク「hリ]7台!./zョ"*ョgヤ7Hャ」棹ァツoイ元4ノ@@'kテ&Wc,ルs賽崛`aタ「タ熕ナK.[セ"t蟐ユkヨョSa7lワエyヒヨmロ#v五オ{Oヤ゙陂}トニxぉcセJ猊ウワロщサミ0{巫ホ潭f「y*@7疽豫ノ」ケ)8 +'ツB,ゥ粭j霸:mゥj、ハLヘウPヤ|マXロ9メシWY7、`mlE。lk~n^/リ 蔔fムナォエWFC3リワE!BHケct =耋8sゥケle=イ#ュe杰 b!僻喞。)t杉cm撮,WLR牽1 T廟ロCV;テ&G"a多ア9套屶ー9脹+UリモNィ@ョトチッ難j[シツヒv^;<ョケ$ミ8!C.盈`4ヨレ0$]`] 。≧Hy(ツ、「Uモ、イェェFa嗣:G=*」ィDォv玖( 烏5H}&、ノ、笵ワ{sヌ9?O鐚」鑄mサ垪フ$_ナ壑&カラャ泝6Zt{ナG竦T夭O?ハャフワァ"「ョン越0th?#T-w2wuレ]V?サ剤7?ヘサ髄儒7 ォナQ淆* %=F7モW2ソマ\臙R魁」/ツ*者サィi>B&鍵YイVカァleリヒィ*゙Cソ)ノ~f<Т7CO{ャx農ニ>ニソ糯Iリゎg )痾 ム-槙sトケZナ nf楸ム犧tR# bu慾Sル」s\*W墺拱3lラKレ Mシ噛tq鞭Eh臘ワツ=ワネ,]ヒ"ャ億`マイオャa=zソbッ^$ ィf ウ/-<チ;>゙~マYb膰8/D7襾、Xnヌニ テ6サ;;檎аY@ク!ワpk4Dヘ揶ヌ燭ョ zマネ挿メiP隼仏ネ譜'ヌ虧堪,P囎)*w]ィ・ハタケ:カ4~0wウ ヲ2沢 ケミックKB談ムチロ$ ャ粉.「V贔リ9ェfムn (ナ~:ヘ>筺"ヤR /H>:栄?ママア:テ~D vァー渙ヒ霈カメId:カ琴ーン!,エー}フシホEヤ「ヒル「リN歃ウZヤ゙_ヲ_sト">・Pッヌンヘ~K剩ケ崎& %eヂヨチマvテ= マヒ鈴 酉+ユネ暁舉K_JgaQ 愛7メ総>マヤd*濛2:ソ、・俯ー [」オtbノ_ャ「ワd肯レ洞3マoO。FSn4u」% T灘}ニ。縛6トルZ{bmヤ1芸?ホ 刔;Sヘ娑h公硯 Fクh」j 」G5VEヌR}ヨ;テXヒK"q#ぅA窺-*N脯cQ楠ヌ測%%ユー|Zリツト7ゥヲSkミ:庚q\細0i゚iッWヘ7ャk「墹ャ/ヨb禍比D2Vxヒ」ォ橢矧、;Xアノワシ ;g,ミ1Jウ!{コ5ュユ,ウ8メ姪 LオM'Q 2ャWG幻ヲcXeカ紮6墅ニク皸ウヨzS*qkェq歔レタ估F.q゚' エdヤヤ@ 宀ソYVf刪メ;暑quE_uケU|>jnアコJィ゚邉.`Jァ 俤ォ「テc6&スメ3yワ「=ヲL昿驃L]ラ`ノgノ&剋メムソ<艪pg數&?⌒1Lojム啖オFユームmモ嘔」az`6慌。宗シXーゥ0ハオ」働A4ロK'ロFンn 0Jチヤ磯/~ヌ\>゚キョI)1騎;ヨ*ヘイ.ヘ:ツq縡ワeKyモ啖テp坤E #「ゥ#n$R咒 夛ヨ型~3コツヌ毀=XlFナ D'ォΤrjHjタェ、ホエエF{ンD黶5ムモ懴ニxC,9エh/ ンニQャ5Rュ51iーIナス:QキMm=nK1イq蕊8Fm)>茎ロ8*[w/瓣ハWィ giYIzス$1-尻モ<YJs<+%'*ン"*サ+ン+5リ=為ワ*_セ/ソ/鸞Pu*。B前Jャ9zア`イ]ホS輦)S・*卯ァ湧Zッウ6 >∋Uリ例ッフ得ョ%ヌ゙オ゙ヨホ「}Sネナ躍鋳ケェ;kj醉ウRR>ン9サzセャ繞ムUスル7 4シ椶2アL夬ェフP控淇69ゥモラM!サ2'\Nァィ8e"ハル)巻$O$ル瞑スSサャ#イシS扈Jク ネ「3ナホケイツ%#サーミK)榧ウヲ3サ鑁K匱sコ填9サ杲y妄$3悴ト$Oヨカ"?エサnナ千チコ-ヨm)Z}UC)チj+イ~ーG壹ル迸9EヨGq羮レΔ:ッsイ/冥.\ナ5μ 恥 ヨ-セ%「H愼FmUDァムカ暇惑ヤミ皆E+I; Uァ4H[髦遭トム岾遣ヲb飯Lュf護サ:殼ソ{ソ9鍄暎セムG(Bナツナ'エィ謖R、zワX6ォ-eチャカhセ泥3゙n南ァフ8"E堽?ユャ6ア>。粋?JEt[Nn次ヲーメム沮e報胄ゥG;┥↓i、4~診ア_v追レ朿z@krエハロサエ.gGヘヲウツウハt惧V蹣蘚Fcヌe邇ッユNg;ヒgdfG}+5暘]>トク;ァワb,ヤキヒ;ラU\/Cヌノ`f舶x縁ノホ技彑4ネ'9親ア疱ケ」-シリy`rッキCリx\JタFa開!V ヘq1WFqホ忖9r、wネf8ンQ[0{ユTD"ウ=アアハ{&j贈群zyタネq綫ヲイRヒyォヒミ゚I^^n Y繋憬鼎qトV隴 o)7コンマゥクfレz*=トャ]「葢崋.チ"kQK 忙 トj)aイ「芻 OPノxC鳬%'ヲテェイタト嵒箙゙\ナKフォ /<ウd、Jユイイ2ニ7スaテ_m8';gーoyュ「「嗣a(イ千;ICミヒS蜀6WカjmZキvQサ」ノケZ錯墮YTTムMフ串z*R %IUイ j露V 」RミV^6x薗テbオe「9∠n$ ナ榁B!拇Rム73・7Wp V オヲモ!#ヲモ木^カI芹「枴カiY痰ネNU]Nナ葬ツネ.ーp:yムcトL,澤・FwZツタンp'タ伐テユチ舘扼%8Liqーサヨラn桎/1シワキ,ャト豬暫$J柵SQシ &膜マ|RuF眈メ6F燧シRャiNョ尽・ノsキオヌs・p炎旅亜ナ|臚Sネt(亞x0Gx間゙ッO馬ェ喉z m蛭・weェトbユp2ツ-餤神。s)Nrァ鉐h界肅n?リチュ]サwレオキ甸#゙s遶冦f/Z[[喙[!;ハ5 シ=o蕾+ーケ殳ヘtUサユbコ飾゙4暹スば「ヲレUG1テM媽ャuE頓}L鈑−6ワhク)Zアス乖-ヌO80Fトー゚サネWョメ城b裟U゚・_ヤ2=OォKz0纒銘:^サaVロ$ヤ゚)Vユヘノユe朋ニシ+ワ ^ァbナ/< ス捨N-q翕s愉 Ru椄入JA~8故M-榔2aDェー・;edヨネ凵?猛ラYセ_F$+ハ闥y゚キ余クz餮ヨW<゚ロ\ミ\シワ]/[ミニッLzZY6醫゙モ>|4!c5マヤァ羌ゥツCニテォe鍜ル。$噪メS)ュ隷ネ LWウゥZ。%-C゚Bフヲ,(-ツMxッJヘ険゙JJ ,朧`0sホアニrセ芝ラhオz棍ツ^^゙足h/+・エすcッキアFrワj>ヨb>ソ廓「 檐ネUヲゥヨ投6ツレモアnn38、:ウマ」アs シシ0aoタzセニ躪セrキgト躑エ7◎タRトマ及ケxッヌs メタタ%蘢L咀オ◆タ ソノ~< [6w朗 リトコ .アm8ソ:&帽酩}vS 轜ノ_8サマ畍 K/メ8刧agケ|>(ウPGLjヲu=愧 レ「」wムNツ8>nS2&!~恭タKX硯ケ 詢pョe`ュ`5>洛 ゙g濬c#壱6`bミl璋abs戔V ニ^ナ>ウ8ーgョ>xョエ kアウB+・ワk夸g7マ  %タV`エ-ツmkXコ< ム=`拇ミ憧A汝Ρ\早8后"藝ォツ=ユ羮~ェィ@シ蝦或ヒクセ>クr疾・ケ畛JrRッテ冖ラ]ー "N]タz\k/^洒5ィヤォルX溽ィウ、>騁0}ェテu9戍ンツサuキ OaG}メ^y阪5潰9~%ヌ!「vノェテ輅I"ッ朽ア@1ヨ]「師=臧殲ノRヒヘ.ウK9`Z]c~oォ8ェ 渤{AI 疹Bオkュ<廖 EZェ・。}Y! 0ュNリ匈ュテX*5Ο畢5nソss7ヒ 1 :u:7冩マソマホワ^ァ孳S;フ]ニ酲}KルN.コhhユ黨カEb}yGネ=@癜8キメフG~WZ8wー'觴gzmゐヨマMス=叔拮キぅw:キカ6I{.オレcチw@n・ヒMム~管8・ヲ鷺B矩ト]ゥス×レM ルWシ鐘オホA=ホ|qQテヌh襟=w`粧嘩*トc8ンシソネu Yリx イミレ縷アEリhウト0lチs_掃ィッ「Χ:咾[「」q?uQqw荻オ嬾竃襟myッ゚チ錺枯ァカミ0轗ヌヌニトbミ6廡:i+ホR巉ヌネサX4彡ォ培「105wメニp粽゙#['r}Nァ}g`箏Q?W~ァハシD:()ヌ霤:Huュ耙^jテ]2-レI慵或+R^ ャ6H]¢+1ヌjゥッ。チ欹Aト7キチ~go+Mウ。サテ[エ.XJュY綾度3,靴ル.。1ヨIヲ楙?C9y餮жヘアa|Uロソjヒ -%組ン軽チノ3域/u縷イニ{Nテ^Ie2. 「ォ ヨヌY:omソ駿`}チウe]3zェ守モOノb懼+M#r^ョ6ワ=エリ Zク゚ルhァ凵紂サb}M舅`.ヘエラレ9mッ。m舌 ゚タ~瀘Zコs? ケソ チ゚碚Dテタo▲n[6xュユgテ~モル余篇FーwzノケmメMイW樅cXュ氾醵リH犯升~ニyハ。1ンн3マモア。Ay]@]^ヒ 8_脛}セT/ZNソ敞K 戞Nqァッ;ンクマテ Sヲbア6コフロ、゙?トハdォ,o= キ@eフ嵬."eTホー召?-=(g9ニJ3J;ヘエ+。ヒアセ蚪2ねP!レ゚、ム鍬ケ槌2ク/カス[c肖 ォmメ*#ヒョ ルョV助7ホスチXイ淬}r覊*ハL|}qNフマ5)]rワモァL 恤蹊ホホA9獻瞬トyォ@!ァ{ニ翳Uツ7!コ鎰Qマ泥ァoチ=4r諠盾|哀.荷ィ輹eh{8 lキGメ ヘ+G<テ=S晢j3槁u#ロ髯lニャカ @備< yd?子 ラn$皮3Q~蟀@饗?閇iフ餝午エr>r橸ミ酬q。:゙ |GrN齏ク`鴾sヨp?腎ソ%Hオrセレャoニq%セO{ピ9eDh茣痴sィR#丹$ァT {イケ;s ル.゚yマC4ンス^;置キKィ(R玻」鳧W`v8]ネ-71m努 タサ{2wN臑/ヌ[6ネ}モワサオマロMXヒF~7uカ"蛛[_ォカ*>テセナ求゙薮Fgソモ融v゚y螂゙<`@]lル孩d婦3>]バシト-{ムァスo處ヲ醢釛],pNソb79vマォォgホ廐魂墨fクヌワ#c″ンu8゙@gソoムモTンEe(゚9遂フロ輙 E.$tN#a鮟Pアhxニ-鉗ツf「&ラタn!緻|Cb^^ホオ゙pコ0WWケ`゚yヘスr>ハdxカヒ?Yーo瑙セス官セ}9眦>|眦>|眦>|右(|岼ァ& S ィ疲」nVAY(ンbッツッEwV~('0Uy世。」ハ-Z鷄nモーミKハC抉ヲx8ョ蕕ツ{テァ皮ムキコygキ6♯サノ.悖ワ「陳ノハmハ)イ~Cy|塊-)lT・。C渠「Eラ(マ VQ>&5)マ・マmW>トZ\<_24 リlシリ6ヌツCィマ燕VnSQl、pZ8%6ニ& 床_bウ陛ア鯆」ィマ%保醤$|穿ラp綫テ 75ワラp綫テ 75ワラp綫テ 75ワラp綫テ咏渥セァ徇ユ$|0 c尓ロtEl\アノ虱敵輌萇^Tnモァbソ^ QホCナ'糞ヘ&|倩(g}゙>テ#否蝿q裴'|洫戔UH氏xZ9b ^'rムgカrヨヌモメビソZg9*G ト~ ロ'k蟆O|ァq2マ!<マフ」Y叔ル?垠ッhヨセrウ軫マヘKョ憂ZIヒィjゥ樺 zィ、・ツソェhム^ 嚴R38V。>%=ィゥヌ`7H}ユ%ホT墫,AミROヒ3}メィ:、Yo"MチァャLjァaD=dニヤAUメ@3オ箙ZthD[ 5d4iニコ ェメ畢,搬マ36R荻ツ-UイRR遯Bル 3烹1鮨Tヨbォキ iルaRニカH{」フツ置jRコ容27kュメイキpj詮蟯ZBVネヨ*%キスQハキヒワKuロ$s匏ンz匳E-奪ノXニロッsヨUR診、ヨ,Kウッz」、Iメ,ュ列ャ)GGヮrWHハV]5・;6cヘ^+ヤ「'マfj{啌6餒Rメケ配ス囑渥ホノIgツm 2_ヘX6ユカJ沐朗hワサ6ォ矛、ヨ諺-)!ゥM4盥mュjm3CYョ_呵H 銅肺ュ^,都f「アQF圄dGw*Y エッPマ46嵌oi=ノ=、ヤス-檢&ル_RラX"3,KW5]ヤサ門リNfvX+ア攝X!カMKワオ72^gンヘy邉T9Mi佐゙ネエ6Gェh阜7ZシIi唆イ^ミqUNエ)V「$N榮卯"Jカlノ 粗ル[蝶Vミツ゚ルン淳Y「ベC頷8t8B。゙スCィヲ睿oハ6瓮{フセ7oe桟抬、ル"モmシッ8AェテヤPナ飲33騏ニ斥=4ウ-゚モW'コイカ;g儼ァ坿.サ凅#ア‥倩\ Im2ヤ2Kリnッ゚ハXメレw?Kュ<ソ}?ノM5:q^菱]、3Ab/Kャc}ウ'ンFo5ρ#^K・1GtE:Avメyd゙輅ユ、^洶z:リE'ヌ4}fyオ荘ョkルZO,NイWOロョ゙$迸O1!5ヲホノコゥ6>n魘Z}4云フシァモ 1]ェンウ顛aァ9LG払鏃5アス6ユf:ノrレキKュ/ム!2ハュNィモヨュ クWEiィ、リ_)^Yナ寤)紗ォッ懌ヒ`ケト]8アコ杷ニK%ッ硲Uw、悌゚糾^ヘY5ST」Hォ擢;Lユ疸^GOo脾ァMg$'b苦Ysvル\oGマケLア鑾ムLッゥ2Gレ8アnゥkーEt犖='9Rニ:怜gクサ58K慙ホn禎6・OエI汢9礑~ュ薜bW'コンエ{'Oェェ樞」ン蟒1t$詳和゚{3力y諫モ4x椴gユ;$チ!nK6<晩セコフsX搏ワムウ淤KjRァFゥ慄ヘcュtlアブ:ホ2ヲ疫蚣Yロ屍ッル「ロ"扼フ摯sハLメフ)9参袴ノ(9Bソ頡3t}ア;・ヲンレM゚ヌ隰cョュリBo、ラx.ゥ得}ノ゙]wセテ詢Wg」倶エモnklレヌ:9C醴YヒOァxS淤I赦Xgワ0ィ2キォqコ]ン=サ L聴=#&W>{ョc$DセEyマjh 籍黠DKカW8-ルナf]W櫨-イXモrヨ紋ヤ@Eカノコc裹ゥ」0ケ;アY 蛹G|#ロカ ムcS^N:灼gWkQ(餘ヒコ<蛔宋告)CELエnWdYvユ箔ュi粉iモ-kアォ<;研USイ"b#ロ eTS椄スヲ+メ&-@侶・テミBゥシイT$?カjメNEル梃bOヒユ]モェ_6ワ赧Q、働E Eカ&j疑笄剽Y含ュ"慮 搭。Q2溺ィト擦ッl+ゥw}Rb{8鈷ユ0j:コ3&9。ム「ラ"幽ャ"ュylYルVU゚7j6yXモN"簍ェスャ凰ウャ、C瘰ョヲリyカE茗^ラFマメ、$ キm%芟ォ擱$゚BJイcdクカテ瘢Rワ┼>8JZニ。.'ムヤbcll咥ヒ外.泥r*獲ッj\4= M咤 繹~コェェnー=ュ#k0 ア麗ーィヲQaク=ンェNヲI儉護ミ6蔟タw}末マー:尊カンwハ暇@vs~xXn亰ュタ7 レネ$Cdカネ7ヒb@ルwUーd|>ノ*チPUDコク ェHョ毒Y9_ゥ葮4┝Q#イワ|qf醂ヤdqf~Nホ倍fヲヲヲ裝ョ}モモウモsナb穀打レ$ニ&ネ印ミイjマッェ^kイゥRS6リpZ」d] #娜a梔\Uュ ~Zbォ)柔2ナG弉1&d BM鰒&?カ"BG「゚カヒ$゙ッj&a`エ(。R蘇2モァ:ph}Eo「ナl0*藍ォ甞┃Nシ\鯱フ )M誕][vナカz=E1jxUケlvn]デ9獵rO8ト(ヌvm)aコ, エナシ73qノアテ墫Cイ恥サoイ欒Uoハi┝q7#CC;エェ笑b~メ825 xルbF#杷,ワ:vュVxl\ルノシQ躬゚閤霆」vz゙カ「6サGロzKョ>ニ]ササxワヒョ頑BヤmチA^ツ_胤 ュwg斜方2{メスウ嶺b}セホ. rkrW邂フM蠍貳sラ莪ハホm,ョヒン觴糊zェノF暼鰓!V耒セオ4juGヘ蹶卍1狒サヨ肭X碌クq瑚Cr8ヌ痊廖#|?NトI4圈郡p*V4恷3p&ホツル8鈔<恟 p!.ツメv1.チZ\翰ー騷ー励 ヲh ,狒Qキメ?Nテョトスpョニスq YセS4コOSニvQfp_v s4タナhh_X-Rヨミオ』欠爍4ヤ>絃,ム鑛ニ _l<悗膠L<セ<牾ン`gロ){7x$G1x,ヌ x"桷')クOナMx梹g燎x檮鈞ケx桴煥"眷x8/ナヒrq^仝禧x5^ラ穹x=nニ-x゙7畄シoチmx+゙キx'゙w=x/゙九Aワ眦>;1|淆')|淬g9|_タ%|_チW5ハ7M| ゚ニw]|゚ヌCワ睇 ~粥砠└_燉~罪犢~?熄LUW ヌ?O ニp沃8Aャ礇q'鬼トゥbオ8M.ホg患トルqョ8O/.葛ト!ナナアV\*.トzアAl雷+トyQテbDl崘ャ カャ ゙クコk幟悁ウa偃士ヲ勸ifzコササ;&&6ン]モンm9y_「 「 +AQ|甲゚「8J$セC)認|彰(ィ勘ハィがィィ★ィレィコィhh#~Bc&h廓hh鰻h6mムムム 旃]ム ン+z'z。7/。?7 トチぃ?0」0c0000S0モ030ウ0s00 ー恐Kーヒー+ーォーkーーー峅[ーロ'カcvbツnチ^テ゚qqqGq ヌq'q ァqgq輌q 窯W/ョ:n&n6.>!1樅)榱9^%^5゙-゙=テ|d$うhFfFe4Fg ニd,ニfニe<ニg&d「Hモ劍0 2?erヲ瀏)刳ゥ刎i#紅:ヲgfd&fffe6fg訶.~チワフテシフヌX水X論ア喰k7滅Y%Kア4ヒ{貌9鉾Vd%VfVe5Vg ヨd-ヨfヨe=ヨg6d#タg6aS6csカ`Kカbkカ/lヒvlマネNフ.ハnホ_ル=ル郷ル}ル9ソq  0チi2Gs ヌrヌs'r's ァrァsgrgs輦輳rs 羊耀WrWs ラrラs7r7s キr舸潘秬ワヘ=ワヒ}p? 0条(杖8O$O4マ,マ#>>3> セ+セセ;セタワC播EVEU4EW ナT,ナVナU<ナW%T"%ヨ'J「、JヲO表)>WJ・Rj・QZ・SzePFeRfeQVeSv蕷N袵ハュ<ハォ|ハッ/U@UH賦ィィセV1}」oU\%TR゚ゥ寧ォ言WY百yUPEUReUQUUSuユPMユRmユQ]ユS}5PC5メ1メV、ニYMヤTヘヤ\-ヤRュヤZm芹ェ旡ォ:ェ:ォ脅ェ崋WPORoQ_S ミo1鄭ャ!ェaョC#5J」5Fc5N5A5I5ES5Mモ5C35Kウ5Gs5Oオ@ オH況DKオLヒオB+オJォオFkオNオAオI峽%>ロ"エ];エSサ"6エ[{エWキム~ミAメaムQモq斷I旆i旃Y旁y]ミE]メe]ムUォkコョコゥ[コュ;コォ{コッzィGzャ'zェgzョzゥWzュ7zォwzッAノ0-ロチナQヘムテ1ヒアヌqマ畋 敲遠8ゥ廿S'w 囈N袂N羔N鉚ホ煬ホ萠ホ筮ホ跪ホ癧ホ/憬y7b?#Sタ#.T8bAE\4bCナMト穴サК;羊i莱QY耀yWpEWreWqUWsuラpMラrmラq]ラs}7pC7ム?ケアv7u37w キt+キv筝n銹燻萸箘跟ユ=ワモスワロ}ワラワ゚w`Pp条餡1q 櫁I樌)樓i樶樣Y橲9橄y橸^錵^%^麁^^餠^5^u^ ゙鎬゙-゙麥モロステ;スヒyキxッo>焜>菘>筌>跂>癈>衲>羌>銛セ煖セ萢セ筬ララ|ン7|モキ|ロw|ラ|゚ミ飾リOヤマワ/メッレoヨ゙?H、チ!ネ!J「!Fbリ!N竇!AHト癈$$ ノツァ!yH> 汞!UHメ╋!]H2ъ!Sネイ┏![ネr!W"yB゙/_。`( マuUカ$ム;KッdYホ&{キヌフシg%ンン7Ql'持Mu椎網メL<囁l'ヒフ{フフフフフフフフフリ3=]メ?コ^OWスWユモS-怺モp:fpvb壓杭フa{ー リE,a?ホトト2VpVqqg恚p>.@ mt ムElナ眥テ D lb ヌp"\桑p).テ蟶W*\耕p-ョテク7&ワ啓X<症D< OニST< Oヌ3L< マニs\<マヌ Bシ/ニKRシ /ヌ+Jシ ッニkZシッヌFシ oニ[Vシ oヌ;Nシ ニ{^シヌA|ニGQ| ヌ'I| 淅gY|淺E| _ニWU| _ヌ7M| ゚ニw]|゚ヌC?ニOS ?ヌ/K ソニo[ソヌG ニ_W ヌ?O ニ_コ ン免(CY乕懿4A圖mtmァt"ン始O'ム闔t'コ3ンJw」サモ=陞t/コ7ンK」モ閨 z0=J」モ#鐡z$MQ遷Tヲ Ui嗚Tァ=M升S鏥:康ァ:プメ.jメn嗇9圦=エh-メァ3、eZ。ウhムa:Bgモ9t.扁醺$ィEm齔、.ネ"寰メ9ヤ'<ミ:PHmミ&mム1:NメEt1]B淋et9]AWメUt5]Cラメut=ン@7メMt3ンsンネqvク槿夬|Fセ幃Gナフタ.f脈~カ^ョモm゚s゙Ω蹶ロ搦メLヒ奪br3^マs藥NhKサレBEQG嫋#+ラL拇ヤヤォRム撮I6 。祷3フ:ア「^vオYヤ^nbK摶斜{ムmtヲ}m鼇Abニ塁イc;S@ヒレ-L V|オM遺1ソツJ+ム諄bイG竚将ウ「゚Xカd(2-ツX驗"'(タE&Qf`ルロ"キ渡カ"マヒュカ#1rド }ロi Eセm:イ &ロ=+ヤoモユィ蜈V>uク東Z●ミ玩英&m7Tレイレ杣尖多!鮓%,/ 6イッgキ縻瓮ワカツサ鬼_ )話P6d@ナコ ヲ ィPMAナ猫xユHT sル販湯)棯Iオb慷&」^2丼椛(イィa.儺+l+& ラe+&シハ2O$ Z邪^ヒゥw[陌モユヨモyX「#糟ケホZb]uタユ鶯カ&4ユマセ-zム@[?掫\m.オmソネシnエT紳股gA゚V躅エ・:@<ノ銭]ルWG(J<ロv「,)妊ヌ}マQ*yツVァ~l~マ}エ煌╂7ー&゚ュlォミシ靺tアTゥToミ忝羞2ヘユ6ユbbハ o ]nF7キ慴カー3ョ&黔ケUhqvg1キユ震ヲR[j.(杜ニ~R ルヺモlムSテャi7ス襷bャ遭ケ役ウh>エ搦$;1ケ4;ヘe^軛<6[[ロツ」C<セラ莖魔ノ5uHラnヌn/脇ヌEワd嗜/#ン^n)MネKZメ y?`窩Sチ藻qw繧テク]p、 ^I」EGコ熾エ(-xuмsチヌェi匣ソ'-\Rs3MmLla)ケミ48/磴H[ミェj*キMmVンーゥスV;カe`M隹v<迄m鯛沖Rュク肉E' 膩rツァ鼾J1/ケスw膓ア2nヨdhゥァqP靺O緩5 mOンG「ン墨ク#ケiF \/リfイJf3並ノヲセッ痛x3ヤO^&簾vfdeトybゥ/{レ颯[ケ゚J隠 u・aWr/ヲ:ル#・ゥtイア潅@ィ゚ VG醐業」アCv.ユロogX&W魎rゥ~fァeg蕈稲tムフ'トーH9Z、4Eレヲネ討[&ウュ8^|ユg症Iヌモ0セウq ヨ綴攫肯ル+Iホ萌ノ_フ・フ匕ハXAxヲM腫ラ滬Fw<ンq舜<96ヲ) ェ W+謙絹ユユ5 圉bトモF」Xaセ"ウ勍ネ,%f)1K3-q~%+q~%f.1s甥ヒフ\f23遥ハャQf2k悩」フeヨィーF5*ャQa k ・ツヨィーFeクマ1ヘモ1ヘモQ罧j廳行ゥq.5fョ1s甑kフ\c:3ラゲ:kヤY」ホuヨィウF5ャQgk4X」チ ヨhーF5ャムヨ1d1 3*2箋;UfTaTe4ヘィニィホ5堪1フケ:ャMGト9Sョ網o7ケ!&Tン@ケロウワ弊ョEキ5)wVグW8):ウ9沛ャ+ョメ搾Oq恷「哩:ム抜8ヨ_7゚NウワS":p掻ツ'wNs=h.N:枅I&トム@t^黹7マP棧 g圜鱚 4恬可ネ<]:gーJpイ蜩フスネ:ラ;ョトラ簒h醤ムA ケ゚鴣oラヘヘn;l7lカ;コ暾vテ脛艙X?~yWミnン縢ル[.4.X「$'zFク9G、87辷'bd'yMメDネ9"Oj2搗餃アJrニ晧柵赴蛍V8テ:タナ椅U゚トマ[ F$9ユ0ク ニV-cノハヘリマ fDャ#Pォ@ュヌェ オrトモ壗;憖^'F3 酳9「O|ItホQ}3c6/9_ヌ「"m陣D枋kシ:ツア溘XトY CT}I身kbスI2Vホxdイ罧&シZニVuE7麕隔mpュナレZgチslE鵄~サム3=]タョ`;リ蘚}w2ルツ=~≧・4ウルvサ崩低粐b)f'楢uヤ「cイ\K&ムgィwE畦コ訖エu喰ノ1oSmDオ#;r貅爽="Dア艦HFX告糟ーウコOx暢ネ/ァ囑SヘPマZ・鞳iEB=efObe飫D∴キr5ク{ュ12ワムV1椡"}オオ讓ネ*ーr_ヌエラl ネ逾ユユG莇奧ハLuムフゥ鞠シz゚hヨ+2廳ヘアカヨx5潛b[ア5ア「Dュ`ェ臭k=l Kd席7イ5<チfu頚7柞3柞ウ:娘俑ハヺFシ,マz&ラ;6赳ョ穐主ユサ^ユ5ノネ希Qマnョリネu酖3WX蒂忽チ+:\4酖2f傘縡>x鵙]5 SS_u[gsャヨ0臠ネル枢a^テl9lン゙?}スヒ?.ユト ソスヤ酊ニ6Xゥルロyiェ*Nmシヤ`ラ`]*1」2」ハョチセチヲチョチォッノl*鴇F)モ(e・倖vTリ颶)モ(e・L」琶2抗ヲQ楽ュ スn2抗ヲQハ4J僥)モ(e・L」琶"邸ヘJ抜抗カQ3廾wAアQハ6JルF)ロ(e・l」芭巴槓剏フc」芭抜抗カQハ6JルF)ロ(e・l」吩\PRウ"メDネ9"O"s(覬フ。呂1bナ9s(覬フ。僂3fヘ9xヲィzヲリYンロ耆サ痃{描ォA畍鸛O」Pオョン>ョー鷭_wp"メ76゙ サOア  .\4jミィQ」校エh_8ワ5クpマ7藹2洌斛9ァgkツヘ脉碯}w)ミム( エ=翫Cモメ?ャ_pカアハ2icヌMaヌ゚セァヌ~恪フ|ン猖_xチ_サノO&ヨマソ1ョpタクめN~Ivエ#「ャォ:ラッコユ}w(r韋UU^RスIPPユホェオmO「 「K「▲/陦イサ<,}8t\j1jqテKZ\j1jqテ Z箔キ<*,゙BjカxI粹sS丹c |Sシ弟ヘミ~擔ノ遯ワWxUゥ+シェ,募ユs油,ッ*ヒ}ey悟ヒ愁Odア|ェサ聽エ;條Oア|ウャ`;リ極ョfー VテX `=l魂 vサ]箘ムI"K4ナキIテX`邁 リ%T沱c肅Tッ]フ`,/ミa,-PO懌h;y・セR _)ッテW眼+ナ秒エ' D争9 s0フac&}ス3ー0拵黼SfT拒ムュ蛍ッ局|ウ 巵a5暑_モセ6ツハ9X]タ?ヵh エX + eO&楴2ヒJ<↑ヨχ/斥#宥ョnN8-aWhgH%#)J趺/ ノ8Rンt メnAノキd睫羆ヒ_ vu」D[IシK9ゥ釼8迅ッ8oノ1キニmン}セ悌ir[Oコュ'ワ(瓰フク'^2鰰AメデLコァ^メ=ユFnケ/_ #蝿ヘ*a)リ0ハR`gツ0$ 1bッ*トネY]2 1、g.E・譁DラヘAQRロdオメホvルwタナ]ー繝頃 %イf。 tチg炮/チサ爰ヒトッニiチトF0゚Ezqル蓖$蟒IァJ峺[Lロ=アルフ状辱 p?クf'╂ニ 菰澹JM硝]アサキeョ6dヘ!ォCnfr蜘2Qj'ヘ|キ9(#%Kェ4+6Biセエ聚7yル縵]「コニ゚Ri゚働ソcカ清珍%Q5廁1\オf|AカXN3ツ{Hb儘YDウ|ム<吠K3唱夘(謇~Wョ" ?O Y{ミ.3XQチ◇D?ホC霞謗「vwゥゥE,dキTi。メ牝m*?U%ホョ仄'J。N ヲ仄屡Zl楊p幢痣ユLtゥーL≡ク 遮蓆ー?ア?ヒe[ト?4|ウハj%b匪・ラヘ=hE7イцア5v瞭封(リァャB2シ?平cQf cヌキヒ嫺wセク ツNミムュ 3フ~テ>${ミト_イ*ルソチォl掛 ソノネQ/-[養嘲タn妥吊"`ル垓ロ+}4~e隔>サAv#=;イオ"D` Q36ew鰻ウ跖ソ慎$メI+ゥ搨,レコィーEカhСFリ7幌</s=ャ)}Y7ネ〕テ蓊‘ラPヲ夷ー{ ZdWmOハ2ボ締ナネハ「岐( *"(ユマU4フ.賭娃h噬.ハミ鑾 U3MC銜(((((「「「「れ}奪DDD^yyyyEネ襤繕DDDDVYYYE CツPツa(""""ョ888虻" 竓ミA tコ"t:┛BWDDDDPAAAAEユLC暢ΚΚΚ+「「「「ョ:::;キハk襾@j@j@j ゥゥゥゥ)、、、贖爆 m3ヘBs薪ォ`ォ`ォ`ォ姦ェ5 Iヨaー@X寛@X ,",KEEEEEAAAQTw墜令農ziリE奕疳esエW,y|l(Ξ*,+ソ@.)?ORハマ争rエァ|オE*`カ0ス揣蔓、ゥwh =m\[メVエ;レカュョアwワサ臂゙n[ヨスL7;兩スGj!oェr蕕ハa ウA;姻ルア3a伍錦;1コ」oニィルト椶ヲモI蛎4glP*=7モツュツ$E勸7ャラ閭?V。e狽P?━!?gw喀「ミ>H余潜vBH櫺a~コ\ネO單?ムpkv4+ロムqリvエ0幄-福A&V|ナqスツkーwm1{チ> ;eG?ヲ>KЖ「次ト}K?a狗潜-za}v4"ウc(賢ス4GテテuムSキ-篠ロ竏フ捉\x%jxロ 鮠=ャミ怫初マト[bbア=>ユヒリスp>g4寓#ルカル,q>ャ:nIソ)姪Wナ;h究o温ナ澱。ソCu口ェツ裂2サas".ヲ妓ナモ粱邃x!頚[#セカfン#リカm゙4ッG,Q$厚y唸;yeN社袈}嬰NヨソOv擁3_ウカu襲ォ5C2#ヨ眄LYロ訴X」F^8IC^ウ櫂T^、ルッTャュPKraMアB坪躁}+メ ヘVzMヌテテ4s51ソコネe"莱\コ。 .{u黻モ、蝙\ヲ2.フヘB wォイロZ]セ;ニ~;+テ憎ノuシメ 0RMユDセ3チシ4*テ#ケ.=Oe0ッ(-徴籾「6?8ksケs畫ゥp」f +トXpテサ'&\ソW;シシ磊>テO!mセロiテ3リIケ T]ヒロ^f+-恙ア_ソ>、ー ノC:ヤィD!θ,t]蕋P ハlシxmc0。+ワGuMtv /ョ、S飯埔 q\QヨRiャィ桂#uヤj4J`}ヒs諺メィ>.彰,z.$カ|Oム P。ヤ・L殕)KObル$*眇@R;#鰾、~趾O\ ヤソuネ6 endstream endobj 3505 0 obj<>stream H餓揖 Dルxナ゙ァァ:nv祢hp^W詁(cュ; 足{6o*闕\ュハ]Ys策墨[ク@%ヘナ脾鈑トyYニ\Goコ\モスX. ワ"ゥラ徭ワBXケホ^ニシPフラrenセGヨ用;B!Bqサjリuォ,U.ムウmK endstream endobj 3506 0 obj[/Indexed/DeviceRGB 255 3507 0 R] endobj 3507 0 obj<>stream H俺R[稗A ォ,`。ーXクー XタB,` ルdッzス^|ソ゚゚ォソqォc endstream endobj 3508 0 obj<> endobj 3509 0 obj<> endobj 3510 0 obj<>stream H俺Wラv磧}゚s#1B 荘PB"謄mイ麹アソユ-lマホ樂}瓸ュョt゙ツZ壊aオネァ"Sォォ:ォ*攤ィ。綏 Vワォ>W椅儿カ榻ネZ`(Zp<ヲoニ{&) スユヘnヘ[3P。ワ=Oワ+ ツgケJ怫贓LIケスU7tvテjヒ, カモヌェl$蘚シ扛孵;嵳Dy」キ熟l*)d 勞ツ=ス3jホカbャナン キXD末`セu」^ Vンォp柑+イ&ハ、リ_ゥ<`況">介ク、糎^リ+[xjn`cオホT Icツーシ」Q唾';[ゥ(ャシー\XAH"7y3接ソホ+傚χu^チフ、浄DA"+ル 酷ャァK`&YO%揩^7VケH5Q8耀w;57オ4カルイエネ| /zN珞セ-フ毬峪ナ?行H「舗・|`覽チ芫゙<_チシ&糜Iャン鮖zケロ」ヌ經゙|覇モラ泄=0ンノ!俥GI」'>犒-O{"即"gUヨIn、I珥懽蠹ツュwサ偖ナ碇擺Y毅ャノ ッモu\&ロ(ノ&zワ/」ミAkカq シw・H討$ワウl;ウKソ|ロャds鮭 oレ!骸セオィ娩S!ヨxケ<愎 衝晩ォ{fB3餾g、PX X z衢-ォ8マQ'T、m坪1tP8_ハ`ニッ帙2縋P半亊ルスぁd/・桿XモCーラKミキ疽 シ蒙3"p4P3Oタ」ヲワy凋J ロヌク(蕣ヘォ「Z)ヒqh>狐2DBメヨCワ朷}ュ凶鰔d5、$e擅 bノ) 'W渉cVマュ4モ!<チBモ4+Tケ*9[ヲТタアjュホJウ「X>奮]ンム^搖)9峩^モト候~ nホqrッァ戟^ク*vUメッ +コカ挌bライ!シキ|wZ5」潔ツ紿\rオSイヨN、ー@ェrクw0リ顛除萋iaノヘァリ怒FeDン"ヌ]237ナレ拈ワXウAヲpC;Q:僅汎gsョJモァァトQ、馭ィI3*ctRセ擯 アヤ!9Tュ淀Wユlセト清ムRu?圖トョLク#クC群N゙T=h、ン`N0ョ4 ]%ソ' テ dク゚拂Eリok$啝hcAン槞6轅6!ョVb弦ゥ&謐オ=[mqケcエ、ベチ@b.#ム戔フK$ヤサ7?yエ0wサ<箆 恨サイrMvOスケ憔S渋 t。アスツホdEiム2z#澱、r{μタ亢マUh?ア$MホU゙ァp鬆ミoアゥソコeミク}'XヘィュコG-^_Uソ,_キ:ムr゙ル3" 濘サ(,#Ydモ,「戯G,ァ'フ+貭ゲwPZ衄湮73」ムケ#ヤrp齶否?7'鰍ニtO渾+%q/9チォ!.゚5ァ澁ヲ゚ャ>ョGx<ヨ "O}R「~+oハd eろ aノォ@モ(P7S^jンav遵イムK|ナQ>タ1nC:6|ツウトE:8ト。&、゙Nハ。lワ&ア@{痰>@癧嶌゙釛Xyケ毯N6dミネ_坿1ョ「&寢S 9=f:渫エサkzマAャ」s1ッsQM湫ヌサ尢歔゚Mユ5カ0F砲免メムiャ4/コュe_w羌{ク<;-・ゴrlJセ崙ォV炊ヘ譫(娚^ャ綸ルム\タ?タ1ヲ f,-2ヘ~U>ネイ;2ニwヌ;ルUタ瑛 ヨハck`ョヤヘ。 ゚イ [-茵ロイ ヒモX4タ).フd4アウスホヘL|{#セミメ*爭イゥ pイル*、({L.7K7. plヤq゙崕!莢Zr把カ 魯_イE{uカ%ホム゚C エ& zゥメヒJEE沢゚僮a_wqソ;wホ9ツワTレエ^^テゥテ[ シT<ヤ)ムU?d韆kU 、TazI欒7ミ";夷ォ|QゥA#懈)晋J% ゥu/88平+アKケモロ X査O]リKW做LT Tヲqョメ「レ0Wg&]ソm鳳モ尋セ/ッ0ン・メ~U]3霍ゥ>シ:ッ#メ}「%スBFMX]炳VャラR「闃イ゙R;ナ逶レoネQホヤZ折イ Wbタ9=験,FtCソ` 8翁*fm鹽゚モ8UYウE・:リm_ ル闊チ2uルリー搭ia猾mD化}K^堙t3cフトルUィナ+=ァュケg  @ヘ"ユ‡[ 験%lャマミ6イハトィDシフk3ム誑チ*!トレカk%ケ=Y磚;ィ&侍入ズヘYハュェコ畴ィ|Wケヨ#鴬、zlキ.1ヘミA]オ({]娃rテ 八^くホ要ソエ(ン夷ァ)昃セ&鷙'/aYoD91拝{bンサホ徒印ヲノdセ\翳)5>4oaウ^サ ツVgO鍛AZミヘ9ワ7K'廨ッ]蒭トル孤)フe<湾ス レオfi、)サj -ォgr<=ラM讀wa盛"?゚ヨ整feレティ杲マh~} ツ゚セL:j叟道iネ、芭鋒IEn圭轜B枇ンe?: 壷 ケエ続嫩jツノIルジイfxオbソU|>コ %6ヲKワNテ`テVIイォ局ロ「鰆'モ_。苙ルホ aセナクB椀@{1ョィ泯=ル(伶ェヨ贐XhェDハョケスm妊ャヂ「アiヲカ'+ハ;4)tサ6 ノォ子;テ娶m贅テ琲z%TgワRフ0オェ^幢ヨLゥノヒ偕NO-゚ tャC0チォxb1( z@Mォ5メW]4ュタ(倅ユォムUモゥI瀑 u9?驗ヲQ kYユ。H#jg-ホ*.NカVYオル%CNワウュ枠刧9サヲ諂ス6#田0ュテマ、K**サLワス#gリゥヒヤメKィa僻テx「|テト7ソ閑co-遍椚=I{。sエ6r4笶ノヤzッ'ワ碵ソ琵ニOM\mヨ驩狹0Sタ[Tチ枸」>R^ ヘ+1X6夕侘。n簧'レ3v溯%9S !脳ッテ。1rL鼓禄lエゥ\ラマコッz`夏゚BAスだヌXmg^、コモ活アT5vィニムホネス'$fラノ[vェワエナシoキ!h 象"棍紕邪PUト~4rb\5アAhgQkセ粳#埀8eソニ,ヌOPkセウ酣埀嗾^NルS|苗ヘi継ヘ eケソト閉/エ aセナクb゚怎$油#{ヨタ磚sャム0?鐶マュcsァヨ]\UBU]マ粧~ホテ槐Gワ灌ーg g/plpハタb{怫=k`ア=ホテ5ーyヨテzl鼈{。リ4チヌRヘ庶ウァェケ梓N9メ(セニエ(。歴デ9奧テsFワ47b{柤サヲ灼マラmン榲l.hサユ跣ロォ梛pUロ_ハ aアョ佻ソ3ンC氈ヨ燦瀲YリJB抔覚pz賞ッxXy崔 i腕オ(gヘマXヲ\bォGノイYI苡嫋ヨヌ3ツ樋ョh5呼ヤタク{モ7。^鬩:5ン・ハU踪llH&%Aナ2熟轣権ヒ.sG!{Dr0ー彼 ヒFSuモ・QムオDーKウa僖ル.ホ崑熹)鋲#ウ%僑據C7}オ振鶲g( ハソx冖ナA{傭*"ナサr關トォヘz゙s[ナy。e凭? -nEヲ槧レトypノ~Qレ9y^-ロ艶a6p(v。祢'ムワSテセ烙スオ\メー5iロcT砕d*゚LM ワモ|閇]ラr悳mチ碾&JヒーjJ鹿_#hnWヨi輾[U5ェホl裂g =ホsアウ3l笊ス Aテpォ些2 1O>{領2ラ\o9ゥ輊霰 ;M3ロ^]Aノッャmxト゚、チ$-セEミ,。゙VヲA`fRメ>*>(>H p害aロIsヒ、タ甄ニラc5裂杆ン}ハヲリ1Sホ」ス牆ヒ團イニ寰=eh羶ツgセ1ッ,IAハcY<=ーy Nkjロ}ァ某室ユ+箴:ヵ゙2ソ6G]ナ。@rQJV(2五 O!ミハI;タャ`叟&テl邏Qホs鶩FW蠏セ エn髷Rル餃 fナフqtニ6リeカ?N$jンィX,b刎ユセ_wッヒ;RaMモ靂Z,」*Sウヘr蔓ワ0、莊コ燿_*^イ蘢稷4ー≪,トノ (┌6n2昼bオ# U将テニXヲ EuG-・lュ弋"ネ-聳サャ8Wャ~ ラ・檜{ュ"。>[イ癈アホ、d3ユォ&゙椹験レ/Mjdオトkハレ_%xyコモ嵶サツ{H"ヨリュZk゚rキリュ!迄V|Rbテコオ~琵 ゙a,7}. コQ|カテuアモCテ<q=テ>マ7ヒモ!池|V ツ藐確>Fヒ"y鄙{0シ8 ラmネ; [、:サzVo@= `紬qウコォ7~p|=ァ伐U.ロヲ)エ逕セ!ル枠ョム餝k5?o)叺P8Onヨフ+tXdユ鴉陂2r|17`ト晶ネ)タミエLkニ/ゥ /゙f;ナミz*[uー5'U・е*淫0=ヒCホミг1!1エe棉6J ケJリ%=]伽#rc9ル >DVユ6毎ュrテC 幡客余凩ラuツ亦ウvJgMニレvモヲWtq沚: "ゥ,LPdオD1ヘC鍬緬"tムx/アユ~ワ[チイソヌWレF]ワエ」ァlマoムョdh p嬋Eqリ゙qntb0|ヲス3X^乱ニァーロ`豢ンォカンz駻l ョキ/オム&ネィ槍4d<レ1ネ゙Iゥ彑徇玄セ: イト ミス40 ー駑析@#N」,チ雪 靈炭$WF斑{sィ8Fムラ損T*Z? ]m¢d@8$シイヒナニヒh吝煙メwUy"。ト_勉シf !xュァ0眇ワァミb9+`ネ・ヌンa+ュdネネワ*オTiZGノwネad鉞& aム&噪B ルサ" Iルo3鍼$キ5メGZS ワッレ='N%、フP!ェイetcdヨ(籘誡|苙ュマMロ8D\ケケ9tサツ「ナ 4UhヨツMカニjレヨxx竿〈!ケ詈-=韓bマ^チスナI諮ニムう倥ゥ^膂~:サ\M祓avWョ@o。メ!6l呂x8kル'松槝xルワ.ツツ[ォ939ルェ.=p5滋:喙&d_毀リ檗翔テ.悍テW肌ラo|_クlラ!セトマケj卿ニwQ蕀CクヘIワウxハエD',Sリ%ユf-NNLィ#93率撥闊ユオ腦「*(7スミロH台式結bリキョx裸虱V卑MI櫁チq リ#4M棗n゙ホk読ラワ蹌D@jアpiマ、ス乳エッヌmホ&Fi コサs"ネUf皷 1エヒ綏gXワrエキセユエBヲ*>、 ゥmdUゥ56`」Rm"ンノ 4w5mC、ソf M[u5イ辧7 Y焜セEaトコソi%わセ1ウ恪モ:ヲ"+チワ」d{x~9hr耘~#Xセ"@u蝶R oウ肥゚p」フPナ~ Gpタ;ニャUhュ這Ι}"qマEj('2|Lms"ェw ゙Nィ0`ヘリ>v ~ラSワー劼6ウーb、ルlZZー」ス_マメ搗避6ラヒ{畢~」濂モシ唾0¢'ヌg`強堵9セ渉ヒヌ{ルPgヌ゙1ワinEEwnZ嫉-"%峇オネg!q-セgnラ_$ニ%$:クNク/ア-OI_T*オ0ョDキコd漉kYri諏ョ>fqトェ ラ}シa5テ&サaxC゚Rァ噛}eリ7イ、C?tセA肛カU凛 16jFPサu{nカuメ-テ;u墳イラルエニ%iMo\&ヌsォt 「ヤサ]Jキヒヌ;l`ミ_7ニ守F.オk゙$}スF/ コ 序h゙畉、トg召(fョ」r罷値.キ0hOR>ソ絛6ロЯ2oS}6マNヲ;%Tn2痾Z発ルBキナtA/タ$螂磑Fコス・ー賣ュ~f@uセc豎@u゚ミカケーXエ砒コ イ宕s岩F"ソ&]フ勸[lLwョ1x7 9ィ;仍=チ綺褐杠ウYケキ!^摶1?mvH錯轢ヲ鱗尸オケ% │ト>ヤAャ゙T" @ェOウL謂チWiチシFリ0ogノ_ツコラマタレXミイ/S腑18&"拇起エ。、ネ芥戴WB5J刀ト゚vVk6/ウZ矮勉、v、ォレ無hヒ対2イアアヤt8ULo水マ終gーhュtセイc蟀4策叢ルF>ッチ(`艨代ナウ,レョ狆舁@\ Uー<[ァ鮑ッォロ⌒ォ@`A0ユxΥヒGー:3薛ェェ_、ヨ{xo 晉8AGB_E$ィP8興Gワノ愨OOモaヘ鄭ッL+Xノ髫'mキ@~ゥ*コノ}8褪&MO睹"*v刀P#ヤ_EyoゥA呆珥Ld(sVフ糞潜ヌクマカ辺ハ9'ヌェ林!&ソtュx棣bf狄i4(X鄰yじFNQムケ9夷Zpォフ1シ同l鈴Wツ!/欖0a,ヌJGxzオ ク優!勵 \ィワVK+エヤ纜jユ+ヌニ・ルnN@~轄キキRql膨'ァf92ス燭ヒ@Rョカ悦コクヘ J>;ナゥウハノ{。v1IX>9袿:D睹ツス"。ェi。**萩 鑢Aソ3サ 噫テイルル冱# 抗跏^+V椥1柎<漉gシ7捕fネ=.6サァ {ホョcハgCQ3ィ乃<齣レ@翹Uk隷=^}ニ 尼ゥg佯T?Jェ懐汐マメヨZシ,ずヨ @|&セホョO槲ラーL-'ナ?ネdォcャ+ャヤニwョト`Zメ[酋Q`冂(tXユコ$」鷹梶ナ,Smホ>オォシ*WぃG__オ峭舵シ。ェ」&O7 A"◆DRR}n笳AΣ偐ェDkIララ:ホ盍ィ茴ニム芹C] ヘsェ O譽Sアixセネ"10 @ゥナ#g-D楸 音カXホヒ+^ョiャヘz萵ユラ"・演レoィ。Iァンエ」ー<\ホマT[0オヲウdF袂KQリI6Y>r跪44〓ヒK絎ンョ餔ハAヨ&pケfTuク。TTP通旗yK?宏<モ#エヨ」 x沃eア蹌ソ93壹)94椿|Tカ/} ;フAリzi ゚ュタニオ\d.Y!jケEゥウハeーFl>r ッユ牌゚ 孚羅e<;pョ'モユワモウz2]XfO゚dコ陞ョ{モS'ヤゥ廩ルミF咀チ*キ#\、;完8コWミモDル3 tWヨ=マニ$。k_oコュ)タケ諾fョピ凍ケ:XェG・|写BIZ磊:郁pc」d珪ッ# 6^'sP線ヲv_D瀑c Ikn廸忰ワВIケヌウク mWイ{├:{キqィ鼬「iリWイ斉冐 ラ讒!8鑢s ;"ソ@アマ}頏rvルy*チ^・ gルyY,・ラO誹xミYC_Inl88YTヨbN g沈~|}VjR稱Dコ)NオG襷ンm=!蚰<ケワ=、8xRコ潛%{.x財P、tチ萄フn、/] ・ 榜T、tチ豚i"・ニ d餝/4腔ィjLィク"ムマアヲ/'ィP」ェ゚mHkチWX8Vp檐bPиタノh$゙f肚ィ&_3qvテIケ衵4F7E!ノ2(鍍xi予qNヌ,\ヌ;ーL)53JW.}樫ネキへ」Pォイレ」gCメ採,ヘAメ]5H?M 「ゥ行゚?エ3<GタAC霊ー'8霖テ; リミョル。;カ)エ;uナY`VWェミ? チ鼕ヒ,ーnユi(ウeヨ7zDy!Wム ネ墹ヒ友4爽q6↑ウj F;イ0」ワG。<,ソ\刈蚶d,/sxヒ油ピ「ト、M2 ォ;,HB軆k_)Jマr :8Fミ 姶Rd=q碵rメR・啾アyM{b2<ェ:雰ィ`teセネ「.鴻27ィ゚6ー2\婪Vミタ8F仕w;zヌ」=2i(筮FVオ6Pムケケ*{オ褞Ge,レアハuタQ D{フ+゙ヌG 、オV菖IKミ乗弉「綮r>謨ラA#ヲセンミFエnlw(~:7リレ{ソGVヒt6jハ n!ネ 逃ッ%ノ、ユeァツ6ヤニ[&I\協-シeァm=チヨゥ,:ケカxtツァF1ミk韋I侘ZE,=?ー晋コ2ゥLリ纛Iト= Zゥ\ヨョ1kトI]酩;t膃6/フR y悦ミXD#Dリ咋[」uクムウdQYッヮ?゙ゥt 5ヘ懇エ=ェ親シヲ襦8ヘkZn$゚H+レチ[モ棋ィ24ノ2^モ .2E腹(T」ヒ湛枝悗 淑ナ{TチンxN+NQVリカD派 4Hヘセヌ漓_"Vィマ6シ4゙ヤ5ル1ラヒ,;|Dィ}m椿ロуUル峅 ъチ2o幅」iョスエegホe佇0゚>蓬tスwチ眸トjp 俚ルタ2>5_x顫B砲踐[Bルチエウs槧ヲXニ x~孥,ィョ習レa4#4ネョ.リ゚8P%クBT@ J熹ネ檻>シ<廛ー啣5 ワm1を察セ`ツネ{1ヒ 肢コ」ホ7oウ9jZuT同ツ8サ皃ワrh帚ヤd/スォJ慱% ラN)53貝.}一ヤ膽Aン{婉YンウA埼Ff} アtW メOモ?l、nナトサct'=eIォ゚ク藷楷$.ウ_懼%) 鞄r匪'=i霓筅'\タン'=fソ8)Kメウル'NzRW4筅'ue兼楷$チ~q竹み0 YRKヲ8オヌノdテネ儿埔腥懼%Mロ#Nzハ9\ナIヨ'ハ諜0ュJ ン苓6ハセ用,%Lj塵#ホ4T゙鳬By頓$オ%ハoケ√iケg eメ]e・'3(+オャGe8ク{TK9NメMaク;|チEEI゚タvg「\確\ォ)鍖\ォ[af 」-匯UUコXDヤ6 zYス~キ_レッ・ヨ5B戰(-VZO0f"Eユ貳B、w屈ゥヤ/)膀y$ヒ咤濡Xrァノ、を{シA・fマ們EスXNサ"ー傭俐哲+` Osモ&Hi.ァラ ィRRレ ウ {イL瑛R;苅sc着ォレハ"エ溌贇チョオ%AS」焔桟膤 鉈「ャSMア8ヒま3Yォコ~\ ウサセ%%a;棣(ォ`lxイHチ0キアイK若__zリィ 冒 コ5銘+ 1B^3d仕 カ媾鰯ニ9サc|s)a仟cHc僧痊カGOコャ69Iノ扉Gテア=橲ム参ソマトL榜タGカヤ、bシe^!フ7R{p^1辧bホハォテ7シ>メ滯&_o縦崚ラ#ッ奨9ヤテC~效ォカ)テュWゥ0盃亠<ス:ムナwルッt!イ頂ミ壮ソ」セハォ%k衍;FノO゚ヘ+ZッSkF盍ケ、ゥマヲ羸ゥ^慚 廠#:ュVd=Eュ@`i8hロ゙h鞣シユヒh♪Nョ「漉|?4ヤル「p豼D鵐$ワhア~ネ゙ル襍I Aン"枝Cqw!リルgヲ飛Q棍<モシ墻y(d?ヌ+ホルマ笠'ッHルマェ チ@sシ稱イ溘ロ0ネ2,\ュz・hレユfO、・娥.FM堆W衰フ!7ソネ+e/S{p^)ァ}叭,uj壅lセLセケ)閠v丐|キxVjヤX雫コZeメウR6ミ頼オ ス=`)粐ナ歡ォラユメァ9+サヒカEt゙0}イ1磽搭eホ4d}uコ会H。-=マG游v Z"=ILォqFVuJェ>Bwヒ5Θ モヨi7ェシ$咒Lム1エ<ン ュ 沓著lェL:ョア5Zd筱~予ツC窿^<ソh欒`・ ユG3ニスサ,劈セ蒻uh@ヲテ.ロツIヒ9トv)"専π %リモQ?3s 潁CqマR{(埋ーx.ロP坂{ヌホナ述q ~掉゚?Lヌ(]8ィ\陋y竏#>#5悌ィ3ヨcU`ノ $壕.リ套B,釖*l.ネ<シnネ膕驚ケニ!t埋ン ;Yァチo"*HM(チG'ヒ4ケリ恥幇Bコsク-マ(,ラ蔀gュ惹k!、来Bmg」渣エ+3ョ ;ムケk ェL=n1約rsラ莽'ア寇*}ル領k▽>~ 鹹れH ワ&LッモTワノr]a匣&.:オシメ陀dノ覇>q\トs。Uト洸2?q瞰TS\Ua9mイ=jyJョR啜ッF9\Mユレ9餬 Ee涸、膣R Qリa。・Z iェ、幃$DkウOPZ蔬@|){IキヤYjッl萱ゥ>2坪セ疂b0ia韓茅g8ャlb氾磔ヨ吻輸ヘコkkンスТ 8ホ. SqbォZ)足ユサナヰc]ヤ 摧Upq<セムWォ2 オJン}X~S?h{JB~、G#タ揆|ョ:伸p懈ロ朝v奔3磅メA統アュ,&マ 攻Uスs嵜A0ーワjヤt豺ー 「t+A\フ5xoォユQヴ突kンr->ニFI;橈ツ;E/zU3ノ\Kイ+'-0ヲヤaノ3゙椰/'ニa -ォー蛬#*<'W~!/ユェョ7lD] er類囑ム、ホ豼囑ム0zM゙(uh3碪ア脊ろa廁vョp、pu7vtメo"∩カトcレニ(5脚b]E@舜フPヒ2モJ9 j鑑ャ\ス娶ィテレ3AヲユxSy撹帚タG。ク<サ\桝P「0フヒJAワ讓先セ1┌ク貧ヨ^[貽pヤoeDaワ・曝> {潁cswN孝]= ?モQノム8f\・}汀゙Kオy壑qハH゙qu湍閨ロホLz琺ャ康j駮4X羔&g.]キテx・97gォxs未@出z!<ヘ懦褻""ヒ。ソ,G}ZCdQTロ(pSO拳ソkミ=8曾=WF7<ケ評ナ2如ィ ーーチネxテ」ケル;xoナV貧セク hテk」ス:W冶wW?&愛@E6ノ`c1AfアAリй{ソワ゚コ[盞キv.E M循ヲgコO;ナ板Wエ%カ秣Bx愚:リムQマ3.叔。稍9ソ=7 ロCa幸k笠(ュ閑~\(鹿YS?。 "エA]5・Af`ソ\iカ\ッ ンム犲第|ナn^ナjヲヨフフ奎Bvxip%$36=ヲフイゥno,wミ「セ5 mPMハ脣;ミ巣jスX沓>キRibg r袗:`ァmfアIン, S責ラヵn5R)ク墅k゙ ー;>_wN瀕・&(-YzTkJgソ?ΦPイィgツテ9」齶゙拑ステn゚ァK'H7Q*UマQテ((´[ャ「`彜7ア<ェケヘQ&Gリ゚ツェ游フウ=ァ8゚コNqヲ'xレ}、黯1鈎Nユケeb!謌/クフル *Mレjォコ"゙|NHヨoオ」~kフbイタ?!dV:pァ惴 `カ0ル タ8ッー9Sフ{M_オE\3xフ~サウ♭讒班.`4フ「_タ@2Ю>gh]Bニ=y妍ヲ:y \LB輜ExンtォqヌR[#5/"<襤」コR5Dラ2、ツh、i,ト?ラ\uH(戛ゥ・スVノニネSン替゙kイ^vcw。S「ハёイbソT?Jン功咳。ワW 'a冑ワ~犀耽[xヘイレgN? HC訊z゚ニレV+ホ」MDン6ェn]レTシFテ(,テ2oルn ナwト昭ヒ8ヨfヲレ莠ヌhX貅%ヤJヨ4Oィ才半?レ祚B)ユツラヲムt瓰zユ(SfヨpL-@OmC(フシ ァp$hШェ'ラT懌2ウf廏ツ*~gニ誂Sコモ@リケ 櫺トカトサ?{ョ*eンモ鑽1ウェセhヨ,篩褪3ニ力jBw)キVゥ8E匳ブ呻ヘoy桑8ヲアox・ユモuョ0朏gー君wス*ッmf9|蟠x醺!rGAモ爛wセチ~蝓qPス4、s;gヌK`ィn/kイ奬 ノ・\#q躋+ P桍S錠岡&cLCキ丈ヨ」r!\ コ訳ンTqzay)Κ55:j\ナ慨DィB'丁ミ$ハ<) sレユモクd〉イ゚zメノツQ,ョ婚ゥ弁$ ャ;CDシWqe X|&セ畭JC)ー ホ))」徙1痰ツzIb-ケゥgゥツXノソノヒ却$4Eqー洩Vメカア].夢ノsyq}yチeハひ也崢V悌・ワfvXK゙3q匳lケ 讀ルf.6!DXV/エナスOMムママ碧噂\=シLナァZ3二ネツ:%n>TW 2k~n都ロmb罎ヘメH*R渚{kーヒ竓ユヌDサタホキォiノコ2ロDkN1ウ}ィDホ漾(t鰍.ョD:4;サニNナP凪緬v票zbIJmm畩nケeCvュQ8ミハI `ヤ轢2ヲ梭;~スn!4」ュΩ+ナpスjラ ヌpョдxJI磋ソケ[゚]βメ>ノ濺R,s<ェrホトP"`ユnjNlBWヨpヒYマ,擂ー熏$シ!港m(!M耒_#o溥ワ7o悉」7舸wレ霈N2ュ贏/楯<ムチyツGEfjm 缶アw槨wnワ6ュ 7ヒュe、bキ゚ソ慶ャネ逹琶鰹倭掻tM4ャkマ指ラ/lB岷|ロD佼<エ?粗スソz囗i滯hヌクO}タ&゙ %ワC;MFd6゙_rル被C採9mOk轣澎区茯~7べZヤオ%クユサa ァカァAIuェ-Pマ=゙i云。Lヨフラiア恣ッ」ミ蒡:,」ロホネラ塀ゥウg跋エ P3ujメ_ソネラ釿ハンワホヌラア゚アI+゙ Hホ樹タh_ヨd5狸ケG竡ェナCIセyアキ菎毟フOÅメd Rb4オ}ヌ# AE轎9o゚MァW風2位.-6:j\ナ 0皸HU-lツnS哲 e[ァIヤZ}-`ーヌウ彗b鶫'c#腮アク6岬レg フヨ;シXvU\Y!4 ェF>k、、罫セナКu7ア#KH58ハa恬銷メ}n3;ャ% 、瘢ヲヌ「エXハユノ?ュ`R~<字_ト %哀ユ鱧CウMふT蔽ノ侏lケ虱ソワネ楠?ヲ講jユv9g鎌匪c}mb`OヲλiBh絲ヌシ)ワホ./8ワ8n=&ョー弗カ<゚烟z擣・イ<寮滾ェkm「ス6FU]}。ン霹Kヒ2X`径嫻 g8a!~WVlgmメ?ト:メ==Gメ蕨Vヘョ/「iHク凶Oア-モ嘲.リ<ヌコマア轌fルォラl區Ky、滴ゥヲ 5、魔ヤQ諏 メ@@ェ舎$R ・Pゥ(チ「#p・2 ャキ9b妣凪V猾「凰`ラ9潘(ケ{猪+y6}ー渫゙ニラВサAK(閉])フ閉[ツ[。I@!%ミS2l]ゅYャsdー<8\'E4緤\マヌキヌ1 霧m7!0g>stream H荻Wk[礬>マ#クK"$ AF@t@t\GFA.サ;!ン・ラub]N擡:u*'or鈿シ.玲+C.Ea遭t裘8」frキY軅K燮i% >/&_ラルc`」拏鬮ヲ\8ョフ ァ誂C}ムツ}ソ赱\貉N、ロヒゾオヤレウORRk」^ナ6錐カmッrウ-ハBユ+猗#z「ゥタ'#酪Re&ノカVz8ュ3M7k烱7Mm6eヒO*/dd=ワ、 h・9キ@.vィH祝」N m|ム;Mマ9セァ7タ V1a4クナ(錨ヤuTU_ラャ nヲуナイY嬾l^+ヘKuコセヒdD pk6ホ&]ミ 倶ツゥ・NkムキmLS敍Gf+|チ0タレリラ>4嘲_m?アウv究Bt;X3$y* A゚ヲ ヨxrSTd軣bRテ*\{ョモpナm~桙`$E椈ホ',シ奕フ沂/菻「+ャuア ヒ。Jヌi7遭`{>mJ zXロ ZッァQf a6綛L鼓~トべ^fP0o?寃Yサ3Mチ h剤2_`i裸骨nチA[炙{カ濬^リ歳客ツiア」ナュiニモハi{イ1竿k{レ@g招=サ奎p|]d9ツニ}&oナ翳ハ吠X泓zk-瞎。崖?,y 潭ZフFo偬Oノュオ ハ w!ェ、NWウ_シ}憧レマ;Q48 h"zpD)ユ74BM2=fCbェ挈3G+ラ擬+7mC Zk雄ォ6ハxW_n鶩/ユ鴾.廿ノ+ャヨvエモ秀梅GO3:テdッ2草Z#9取p9ニEcあEH}'&擴チn<ホェ忍XA3砦チ高`ョTァMゥA ケ。B副3括wク。EJ烋。rキネ對E 式唳6ユy#&^、Zカjノサ=ユォ恣+M寅T'Aリ-Tヒ讓n゙リ/T靭ニ.レuIF予チt卉 K・FPキナニ08M#Mマ囲」ユi芸ユハAXタレ8框6wO>ヤ:Kュヘン├蟾フヲレlb>t/9ワVh駁レUヌXTD」ュエ黷WZソnνタフEホヲミo%` ;札E3ノ奸碪q斑BェPィ敬= 4」M目ソhカ5Xソホ2ネ.ンスケG。^nl裾コaFZ褂渭hJ吻メ・W}阜務oナLvツY!ュ[ュ~繍|スク]ヨヨ}ノ.oヲhZハヘ「Gサ1版-モャ`ヨrワK゙*鑢iケuキ溝@Q+ヘミaンサ8HC+@K|゚ソ゚/ッルヨョメア<ュヲd疲ウRC齊HZ/(z>置Vノ~喊u(i鐃毘bnメэン{ィ。ネD@#n軣aワ;/~ロ|,現6、i ・棣G8蘢ラ@ニロ、:錏h@他アコ搶HFケァンtハGモアvネ囂Z痂ゥ5ヘ「」[ムDq-ラ畝?QN・'"羮0ム ル=JZYオtOッ?ヨミsァ{ェwュ6 爍憐 ]ンYンモ`ndタM.YJ・]tテ~eメ:」ハッU jオ%r-)」fニVIウルaエ願ゥ`M}Yタ船ン/->ニ<>撫貯賂フ┬C゚ハヌセ メ炙ャ鱸ケ&埖ッ7K勦瀉姶,9楷瑠ュ舊帷& ^ 營岱Z8nf到V"Hエ_ラオ{d忙サhMl"&ッQ 業3E「佐flF8&赫`W13優c.タX觚ラヤsnHマフ;力Gじ)リ&psュ慵i#ョGX」・<レEi$)0!q昆厘l*巍゜uユ/ヘQ}9筏輝ィルX「Y 6ロ盜ウY#ヘケcル, ウBPNニ z6ヲヘIハヘd蓊/?,fb"祷ウxメ僭ィChE獻及シ~倭{ユチメソ瘋」ラィ素汗ァフv[リ耨Oヨユj略エ]I」zャn植征qチ矍゚6ネ簔Yャツラ+,hWォFMSミ+ァ・ムヤ」-7、1@ツgYユ9ui#相狢Lフスeュ^v゚MS゙< ホィl-ァチウz5スkdハ疂レゥb{ネスVハネW6; ri'チ+<澂2s京r・ヅbq`&N10Aソz・ゥレマNハ>營゚矇ヌリラテハFhbサ覲g゙穩ォソ犖DS。 ]ユワニHt フbソチ4ツ萃~qX<>-NQ洪セ・?モOシC'ッi場」ァハ ッEホ5S^@-}ラa>背均トRyAk^アハJ~ム 星L駅セ+マH10#~_z フ婦~ Pi」3J。クmケ7L9フウチgo.?呰?シk JニS禪p=モ`f^n「[ w>1h今ゥA側5゙。キ,)PフミHウ?mWチ%゙メOtモV&陝bwE[韜+ I吼3w@メHz8トノホNvmL蔟テ#イカタ卦ニ巍lCヲヨMユ"c峨ヌZセ躊独賤 ({b袖aォ??o、_??酌ル>9刔pタゥ/叮ケ4 @。ァe@゙h@(ソ籃4uリ・Pネ゚[MモエD2ケォq_m咫死6V%侵>泉Wン=ウ/モキ|K槽nソ 」9キp呶0゙L瞭ワFシ"゚晨 ;マ^J セ$ユ (/`ニwアFュH\淪NldR9リニR(ん+ メ榔益マ 纏レ$$Vヘ/rトY(]`Dコ袰t暹イ'腋-,A>リィ#懲Ji&ッョf_T,uトヲ百4FワRcタ「ゥメユgハ駻ム砥8ラン犂賞・ム`P&T5%+醢%6\☆W P@兮艸<持ロ1ケ~ヒqニウx`諂 0Oラ^;(cヨLン銹bzノl**:熊<マe」 轅ヤラ狃)+陰dウiワ!t 0フー槃QZヘミオリg-ト躱;゙ 10(レ]粍g0メK7゙フ8sFァマケケW N匣テ 圀+ヤラ、W轉イワスB6v,(ヨXb/アDSLアワ叨1oフィfOYウヨ 'ァI<ノキ!ケ。6オiレ7カ碣蠡FケL ケ..ソ゚ァ躬U。d#シァS#U(\V肢k4+ '-2c輦@ノ$ユ6O罰ェィ鼡「モ:ミ9杪蛸ワィ"u」テzコ Z。_ {譴ツbPT_z?FS凱e2dエnCxVc@トンワ蒐タ5ソレクワフ贏橈81v" ゥA^ル、疲o淋4フゥneUB酸>ニt廢'>ヒイ%アTP*。D恤 iィj3|y GFXlsq5rルマj7頒釖SArTdロzミnェ鉅ノャヘ9イSワ」w咼ヨ。3% 扱[フオa 皋Jホxゥ|Y{2樗イ2Xカe #Q嘉ヒユD遨複ン &粧額∩シ,匯メu气´G6SCFイp゚崑95qA:0夲bV:実ミv决詣オア崔ゥマup翩*o廼ョモ乂珎*ォ|2碓;C p'ルクJZゥーi=%1剃樔+D:uアP P・釖gヘミカbッ*C9Bニ ヌカヒテュ&FE}シ5邏註F}R 堤矼ノム|!`櫛o^囁acイ%ノmZセ`ノノ゙D_zョs=ン4ト-Lンッ_ydeシ_F!(N葎{ス5LsナX7霍_ミリョラdモK衂テBQ゙ラ_dヌハ災メ碚討ュノ?!岑Z゚ ョサ詐;ol5エx蛍6>vケ[ェタjナ藝?ヌ珈ン梁oスkc)シ>3オC潭+癢サ]eラサ V゙驕w詬 aナ 鑵 $ムサ2C 0炮ヤA}gレ謗ホミケアマzxvm愬゚Zキカワ(5関fs副4Bク5tlャネスU姑g$2UnンX 研Yケャl! ヨメlRL<'6キヤm梧帷Vウ係鯨(Frc1N*8[ スqー1エロ葦ンTS}ZNオ?リ~ノ 梧寫?2ロ彭清ヒYPp筧?'招ク=5ケ8ク゚[マ ケR「v1和!xヌ{Yw!Oa曦+ホ5;テ・1p咫~pf、cーJル瞞"ソu\{3?P 幟シ"`5o(ォタア、ン遘pヌ コ驚Nロヒヘ_ol+セ=ス{ZケD6aクlケ tj瘢テヘfx'キ'モセ[kワ.コP 39J<ハ夫ハdIマ「ゥ豐テD_ッ+豐、Aヌォqョ]ホ/ウ崛&綟ヌ:懦@ヒヒ~ 鐐ヌ紘Iトャ=TMイフ s4ル i ヌネ」A7セ0}kツ、ヘン5県サc Sイ^rイ,|。スェ゚蕷K仔R-w=レNレ#t#セヘァ\ッノF ォョヘチ」雅ヘsz 6サ*ネ恥ョ|!・クMGsッノ;1・スア3DRロ滄=C9zfPキネャ7X;;ヤ聟ェ更ェe,ユナw@{Fmァノキ=6k&EPス胯ル メュラo 7セニィノwq埒タ5鮃ネu瞽Pqnーfロaサオ/歓朴ヲ|ク&ウ >Sヘヤ{ヌ@uz狃G *!>1レ リ1ェ狄1QZマカt}タ跡ルネタヲスoぎ[ユ@;ァ}ヘe2ッロihZ茵kUE舮w"4'エ*ホノヘ xFDyR鑑%#<ニシャwK$_mコtォ逅lネ$;i凾リ∝レリ-簒[GォqqマGレォ芟eJ'" シ9リ&+・ンoシfエy杖ヒヌォネ5ユァKnメ魁キヨ8P鵤 ?ョュ)uN1T5サ%7ナ夥ウヘミpvi、`(a%麟Vワ%l%炊tメ寅園4 「ィコンvェ符 「g茎翅ミTRォ齶s*G'ZナqY^゚Jマセィ8ヨ3iゥリ蕷[Eh/ゥdァッi[0lォo哉%.滑2W8iTAヘ覇゚モ*qユ{j1v嵐vネT}フュミ /\#^`駻狹(゙LoFEハNMコチ煖#_ウGVKマ^h4ヘ5頷cイT爆y[t8@旋(wK1ア@寝娉ーy歓「xMエu广kメl2iレoIウュヒ8ミソ&ヘカ.c勵メヲ4ロコ憩~M夬ロチ5iカu贐、ル|モu4ロコ e~O嗄]Ft4ロコL|Z譲チ?ウウヌfホ-紗'(」}V緤3ン齷(チルヘOLーr嵶q: e烟ヌケフ樒麒冕チ>$Kモi*9Tモlォュヲ}」+ノ;」R。[リキαF#gX4)チス欷鳶>e[」gjヤア}メ"(ンノ7Aニミ゙}pi@Kzフ壘:oフ&桃シt;フテョ( ォeソルUヒタタ瑾ヤC鍮ハlチt5` `ヲ+匪ーロ鯡|MW(ウ`ヲ+ツf;`ヲォ鬘キ`コ。p`ヲ+Yマュ=舒dキ`コw`!ミ!チヌi?凡v >シ#( 、ゥIワS2J1Pイマ(ウ1|3ッ暫ッ緕PXー俟iヲ<゙L戰緇+zWー-86キK濛4ッシツケク9+)ハヲ@ラェfムスヘ#;ウトンネWーセLh堕ofbiミ搭コッGGhaB蒲J マゥ|8-qU*゙N畊AアRdテv#オSlレdャD1iI*~涯(ヨカilミフwvィュxニz&ヒ>酪イ.ラ8楊[DCホニレスm歟 W dO寉ヲス^りpワVヨ侏亦Tォkアフ #專ゥ(pワ'滸,)5シ7キ?jnト/35{I/p禪ォ マ炭Y}ト ~w`/ 窈荏wサエヨ杞トoチメBス +:!t蔑ナコh溂^タg致3+.俵>/=d伐ナ<カ0mオン+LSシ 1'ォコ萍エ賊ル#*C+Y&Q )@F┳・テi同Qーアエホ=ァシカNアッチ*ナ ゙セ*PワYキY2{Q纛ネ0dmwj|Pf/j|寓ワ.蠏ル6ヲカ。$タh゚Bt絹A(ルウ。/ノハQl2'R゚dAVニケ@=マユモ2ユ $Kモi*9Tモlォュヲ}」+ノ;」l、Bキ雎哉9ネc冂モエュス?ッ&敝}ハカ襾マレユィ!b$Vサ阮H、塵諠 1SE>ク*Jzフu゙L6v∞]QVヒ~ウ・XazレエU1ィ>紂アヒヲホ$ウ禍8シ隊nfI}#7翫c?>Hタ-PA咥モ;ン)$エ熈アg、罕クソレヤ儔^6/タカDナ z-リ=2^0磔]u1%1 ヒヌe zワVヒ」$eMuWイ廢[^啣|イ浪nyxKI戸9エWeノx`。ツW QOツR!リb~qiPヘoヌuCβ$屐Kワ/'"ウニ冗コキv胴v縻fВホg&ノ^=犂橸竏nF):yユォBッヘニa勣%゙コ+ktj)c鼾好闥钁ゃT'XヒFnF>sェッZ尾ヒス鎔rヨV9{r懇チ6ニワjラェ゚xuケタYj蓖スKNカ紺Vモ~ミ道ム熈=]。フO{26モク5Cスッ'セdn ハ,<吭d・2┥*>畩=剱!3\迴z27CMロ菲トG3識ヲ`1ュモ2Lyシ*Zゥメ5* 'o知jーケ]| (漱俳醢シj瘤x 6"ツヲ'エ|w2Jタ爿 セQ\豺yh_E\xテPO憐\ツLミ駛喉モミセ(eン"」、トァ[ド痙ョ8シk|ク格$?y8ミョRシ了墜I」 |Iノセァョヲ>#紫ーxニヤLヌ ミkウ '\泅vーn」暴^セ篋8ョ鬩マナオノB梯ミネトM^70ナRk8%AX徙'"ー4 c黥テ敢.NィT ヘ痘リスナニツァw9Mnォl,猫歃#9リャP椀)b~R(<嵜Ejツァル[、U(匏ホf1Bゥキf丞/オ2膾ュエエ霪S讎%{ュeト5<=bネ光\休2Gソ.リァ 脩v%q捫ZノナVマX e裴莇?q1Eツ) 」淒゙(;z S沺★鯛ス%。}ンz7цモ盪zA共ラ3gK剏フEN莉ウI ヒ愴尼F`鋳スサKレ+スjB*eJ+磧2:ぢャマ康Vセム}ムWネAcnレ、1隲゚ネ c!/2Tbケ$ォo;Bハ切#<ゥ I]ウ}]ツス總M=キス=チサf4;YフhoチヘhF兩ハhv@2?飯タ糸ラワ冦ヘ0{賽、ンルツ唔Vモ餅(ツ喧ウhKOトK&b絢1P濬ンÅィュヨ?'cLgcソw ルO寉%ィテ鬧8臾^ヨ侏~Dトo蓿椰bフニ グs1fc2?c6fB陝1ニ cx◎b呼会ムッcフニ πセ_1}忸 エ>OニV僅(9蒸2K 「k。チPs゚qラ4モrゥ\メャl1モフワ <モ「 ;フフ脳リ]x~゙&lmH! mク谺f''ヲ繿煢ュ)随S,フVホX゙eSツPQZアxEWユ燹ッ山メフ$~(テ.箆フ[ S釶Hvクニ、オラ!ー貎rF檐゚E恃=b廷Y$>m :xレイタ'ア」vB シeスェ LXヒ看oミ澡\オ*Tc示渦オ)ラ齣i尉ホA^ウ'アd_0葆ェーナlキ Q0釋翹HクoラユY冫-寥ムロ`lrク?*GR。洛kケf<澁O5^祺 ?嘴。Fk∩B4P謠。 譖ソB4dャヲ7[mW噎ョ}謐丱麸ヂ6ノ鳶无ゥャ:4yソ雍溲i3cgィ1、('"ァソットGA;) 籥0 キPC,Ckヌ@ 7_ャテ:{C~mナナヌt*コ[ォK0┬沐c礦7触%7緘ch夭ラ怕x!\ィマムュxク@l Oル %キ詮|V5賍煥8D&{嚢咯忸沺~'`Kイィ快鈴)棯Sムヨ?bK3賃y?YnQq2Dハb\オv7tヘホンミモT祺非Oミ.ムZヨョemYN濟ヨ妹osライカ,エ萄ヨヒ*ホヨロ#珀\詰Jヘオャ-KC鹿k‖;ョナ7派アnナェi、<・D$Svメl 舛uイコYn渠z`fFト膠*緘 Hミ辰整。1%シR;港蔀?゚ノ<妬>ユ /コn地 ;M+叙a`ァ7ヒム=エノ$テオ.ミ] OQW骸cF凝ゥュ(? シ}Πア- " 渥}ムン、ル淒枢'f I{ン4bノ(。]稲<ワ場\・W気ホ+uィサLjオ8hク 籖2タi ト7ヨp殖ョXトl^gJZxスセチ担ヌ;屍ササnネ7精VォTG$A-ソョHpルフ.・Bト椋マ殊l。擡佐」ハ禪1キ鄒$wツe&ケニ8b6{爪饕悛悩;<ニユ\1G【津ソサ 1Nィツ奉*4t9 ッR渾楳ョLヒワト>s[ヤ・eオLgロ{L!、ァ9ヤ耘庠"$ェチ硲c ニ'nn #gJexモ郡サナNHP[s5ナ 飃Rワヘ{/トネ)>b1$INwSカ4,ス^膣ト0:yェ3l天zソP{イ_Tノ&瓷ャナDキリ-簣Cタ1 x女チキ○ jハ#E授マタ籠 oSq)oンゥユエ擂>4v8・ リー者yャ抄3Sr桴}@)J;X賺2レ没 UFロメヲオ?ヒh[レチA@〒駱l辜チヨムeソネァゥツ;ネ~楠ヲィケ8wロ"3ェ+qノ_鬪vレAWコ鬻<$u%,ー_レ5ルュOフYV9セセ割球フUn Wヒフ5フ潺iオJ&&0蟇ロr鴨E幇喝n ヒhOD/nア!樛レ価ェ%~._x椹゙リ^iS@DWヲ["sQコ゚<、ノ\$ヲ7錻ciシ耳3ウ癸Sム }タiヌァシ、+爲I鮑.セチ&ycワQK@~!クO,#1]巨=ナC1雙n=O.ミハ ムコ「 ソエGJ\@シイ'姜{悵t゚ ワ"^3煌ホ?截<$Nホ8ァA襭陋a]9ク{xュ=ォA ハーミネ.Rァカ#jメリYチエcヨ麺モ」コEWT^[メ}~3]h{゚ュ7RツKノ贍ォXmソ,メwAN 7ル売ァ(QーxE4ロ慮Mzu白80イリ8、ノテ?%!皓ウ,闥,9Rホ「泄:イ|~v躇3(5#aミアトGオBカタキQz゙P/ YルモY]蝎ッωEc昨+ホgJ ナモlタMロx{刪Vリ|簓~ィ羨ェナi!!gカ.ト。・ツ:、cー,ゥー1セ惺ソエN・Q = j水作&ィカ>メi~メg"G7ゥヒ;キノwワ劾┘ァs nc・ナ(ナ2ャo>「_d・iェ F蜒;ィ瑪^&ッ5鎬ヌ蓼^岸*fOyon#,`rヘトe峨ノ幇ンオワ/レ參E$点 F W$8ッIeW艪iホコpヤ淬ムヌ 广?@{潦セレf4Uヲ譲5Y婀Pイ5ハX1罵荒ユァdソ-圻蛻hァdk]。フi(ルZW(sJカFdメァdk買2ァ。dk任N; %[」侮(沌[<}セZI゚cニ=惴矼アマー掩預KlI8トオァ拶N+S レ[l:にホ蝙Cユeヲ暹ク・n8 C~P抱ヌ脅ロスァヲB丈ナチ[獣W9檄ヤwセY8ケ5I阜暴ァ\゙e1d背路タ、ケAキ」6マク俵ロネモセ」ェa聹jfK*ヒイh.ヌゥッョ#皋~ヨヌyィ:/モ2[キ磽U4@ユq樢彿Pテキ[&卜ン>7ルwテHゥキチ}躯Beフc4,メeト褫] イ4ハ:t」猪。ー「埒シタ2=噛Gw*ィ3」モ躱y4@ 髭.耘VゥmホDサ$ad誼a0ヒEタ9、ー攵+ケ卓~撲ц/IテM ユシ'懊&セ、テマヨ!ョィGeqM」ン楊W簗KB:ケ(Lネ Du@tTD.#wU'!1\6コヨ^/サコォォ゙z^殕Vサ;コカ胖エcー遭/啗 ;Dモネaム。劉トキZ\,ネHラタ肩メヘcs潅ョネケカ纐ャ%-,_リqGゥ /aソSH鴣乎ンヨワ茎Jbァ+ョLz7ソyXキッカン ュ珀ラVト消裴3クReホキM9キメ\謇Xナ婚フ昨as"?L8 ゙コミュョjォトyニ゙ヒTu|紜aワァ 酩Q r !ンNJョソ:炬娥OタネィQ O〜ョEゥヒ、N-跚ヒヨ隙レ殲 J^荒詭(y5ハ矍| %ッF9w|%モ鴿ソルラ#ヌ9、 燭咾7(rM$アT$Vzl*サEnラヘ!ヨ7"ク1V嬲U・hナ|)8。蘭B輸葱) 罎Dォac!嚢ツyム芟JョA萍ぁ晝;б%窒ヨェvqノ漏縢ZカBャ<」チ斤健 ォ&Bツ62"~Й7キh 7SR?沽!uイモ゙繧復2ソhァE?ス隊:關広ンタ9`「cDEォィ$ュz貔r陟ヲfテヌ}圃!Dイ!囃ク将R#9ェノ有スQ τ1L_良x5?y* 4・虫iミルW:噬ケ aセo4Gスァ;喞LLォナ/雉ツヲ&_sネ=ル@リ0経SソQリfaセWリ フl*Vリ祇Cリ\4ル@リHDリ(C、ロ/・_mヒ愎cJ犀 }ヨh~漉0ヤN。Aヲ囹|ノu 伸>ァ鰔シ薛リK ル 1ヌモRケョェ旌^ハ'絡40恋:.」藻セbチ碚翔fJJ膸膽 G{XあクOBワッiイ.Aq+ヘ@uソ」$Z-マP#(サ%ン&Gサト&Jヌ捨・W英ヌt邁nォ1殫カ Qdg職ア)ヒuヲQ「wモjテMテナnヤOコヒ3#ミlBェJ「tヒツN4L胸ョ(@丐[J、王ト務ヤ\f¶ n 汎、・!i鵈B噪嬢R喀%#pY喀%n7ノe(飫VNdC ,櫁Br2o剪ウ蔵~wィ9, Oユ゙ZツmLlvユ" ッ ナタラ。ェャv跟6_y g゙V「 2ホシZ@佛Jツ7jメ-衛イ桎ヨenィ)ャ。モT窕'ソ、o;N0ツンテラェ)-BT佩6會ル・ロ0 リノUW欟I:」頷Uル#ンソェサトィヒ{ワ剣ヤ(>|慝ィ.^ォ,3ムォロS嶌ヨッsNqS鵲ネvク[@゚イ3N3昜徃w aITip ヨホワR@*A&Б ヨ ョ%タQカdヽ5;・Kl犧4%チィ-Jlタ_!9ヲ暃キレC裝ト焼リ^讀ーцu笳RL≒1-5約gノ韜嵎篆"蘰_Jキ。vO+ミェkU サクdフc*%BイシM絏5@DoHk2ォ&、莟サw垂<シ抂フカケQT ク弌 SxC迂 叨L&,オ揆0Dミニヌ汾}テメ^ャ蔬: ゥI淹ーセFァ7}胚`ミ+コCゥ2獻PjoLE詬カ !nタj,竟s・槽キ_e(怜Kヲ亅兼テ3<ヤ}シ 8z゙摶 U}@z1碩キ@A+蟇[T@カ道ッhz渫弉ロソ{コ}奔&セメg 」=4'x9「ハ却篆ーo6Iメ} 簿ヨ姚゙ウX椽 lチRソ0楫恠ハネY!δv囑コ[LLォナヤ$0ンレ endstream endobj 3512 0 obj<>stream H嘩Wsレ8ソマ卷屁゙$s イ 恠")アネ^{ルFリエ5淡蜂鐇$ロ8 YHg{enタ~^マIo:掎"1・g噬誌゙シケ粕(!マ!」^gゥ丁t2サqt=ヨ1[メ゙ナ挺チrE・ーxCiD」?ヘnァ躇>ー錬 優。カ)hァ轉搭固ムMカ彝(ョエ ス>1矚ヲ7、@?zkメ[iD浮シ2道睇規&ア4@4沒サ!3モdPハ_OsテcコLbィォ)Jンiヨtッ7マ(カオ|オ レ*Xk5Qォ~益S;$z始ァyリゥF+ム3ュタヒノテ,ヲ3拈K lミラ"「1ワィ演ユ|ワヘo.1&rN寤3e豊ロ)x切+イヲコ袋ワI?。|,~60マシf0ユ措sモo」vロC^モ8慨クs才噺。-カ[コ ィL_イ9肅クヨ茱dムヲ\-オ廠[kWセAヘqBヤJQ^Vケショ゙ゥ]抄ラ..ナR'?5jホa ナb枹7/&イ蓼韶ィ珀3。h c鰍&朏イ「炊6fR キT$ヲ$・xbワR」ゥ・チ單Iハタ=縞|Ne|2 1矩NィT 則Жx)8曚ロ1)ワ"キ畆ロフ3、t。J友エxアャiT)秋コタti,+苅#コ$ヲN8オハやHタlLS\?タ#F%D"&$д48フ、、<\テKO・B搬稚嬶\ネ絮$ワヲ掲tノ8罌゙0茵$襭眷:YP磁Y國% 5,H+ 'ー/f肪u/メ 槌トj!)-゚H)蒲rロulhQHケオメ闇1KーK エ$i佛Qサュ卅gーW@ア瀲A笙S魯~SアSゥfヌ豺SF゚ム潘_pラィ羂Q+ン額キヤYゥ柆ムォネJ勸ZフュB゚*+ }叫_-ウXア$^縷楮-コオハキ袤RウeBBキPリZ-ナト:&E<、「MャkR!&箍HオヤZァe0EK=f・秒ャ硲n +. L「「 r然/b+ヲ 6儷ヘャァ椪ヤY[カ2ノX蒹」qラ撮ァノ8ル_4] ス泪Iu|イ呀瓱\HヤN詩U脇M8ロdtシN+@<ロイキm?ラ楝癌_:KヌG' ; j1仗)@-ヘセ"ォヤ+カ*5ツ蔦&ヌVO」。慍yeLム}L *y歇2Kh,D\BヘrVV軈恃ツロp浩8タャI,ワf ソtゐ>n瘉。ウセヘ緜V鴈ケニ!yOgpwィヤタPサ|Ec岱 ス、タョMdヌニug隈BィWユヲ,b呵ワI「ノZCErッ莅祐ウtケノIR>c 偲イヲy゚k僻 」Dc&モタエ{2ュ mcヨラcウ:マホvホフoム ,O_雙ホ、ー給{n゙ミケ 頴ネ弔キタ1クホム抵>ヤSp冑5ロMッ賓栄!7エヨo?チモo@サG t咋~uPt シ。朋屮wヌGC#鼇mタ千ヤwC侠テサタ5/\ソeoヌェフミ 怱ンV蠍khWオV#p<タワlオuラ<8~ロ\Z7h迄;ッ佳}9ウ`Tヨチ5 p ヤ`|0}峠。ケ鯖8ナ i2ノェS碗|4痣アヾ:}ンツセ」*"yノ髏:91|モァJ\ャ譱オシaテソwm{eャ侘l篳颱{ル フ・ホ07唾,ニ'bxツナ.瓸Pロウー桓,果ト+8 TテS3]ェヘニ sワンルチナヲ9エアマ序p劈リ陲'コニBNF癧儘ウム5フTコ廠サヨ阮Jィ= qケィEJ磧ナW"QLニレR*「Ad楸ィC$?dNィ頗皇g憲トLh.*\09スエW ;qrユGァ婬1涯ケ7+#鐚Oeモ焉ユ 親ヒa6屮,G該膝7・0スwh5ア`メ0゙oト瘋ュQG Dァ<ヲZ6oオセ猿Z Kネfo雹 ラヨ。恵xヒ"サ ィ5ッ蹇6リチメ=r ;襟シ>h9F\、疔ホフ ,トsM/ !2},・70,黽イ ムア#-+499 擡B2ニ"マトJq3p、&<]フモ<ニエbヌ^\z%us癰鄲ヌッpbケ mp詛a|)'ヲC网江>?゙K} b・揣チMMR猥aレH#メハ @ョeシ、オN。jマy@」エpナ8ォヨe 壯コ\Gハ$95翰ロ限 B/fp・・クxトc吾甥+愼Ljリ/。b蕨B ^J*#猩ノ"%クm 」afミs 浴H酊 4&+撓.L堊オ蕩|唸サT朮7@$ヘcB;ツ&$テ」U2倆禝ョRmォ"4 Aク>ァ5;_`'ノ2簗` 杼ノZニi8 ,リe迅.ゥIハf追En譟u汚セレ齲煬hテtfワラ s礇$ソユBサs0cト儁レサ#ー圈C^覲w$ネ9傍灯袰is゚ナホs@ <)dj宰咬O;%礼箸サ3mンヤ1繝勉n。c褪猪%Yw疋j,zgルカヲロxハッ0鐶玉予ナ柮ヒオホソェTeJ隨 },ナbVR{、胡ヒLタタメラ緯瑣;聽姨Wソホョラ表・&ua{Sq:テリsc。kK!忻ト&劫:Ql [リナ:妝」kエ゚ *GrDミD#ィ_E顯8H瀏;(^サ"1уwテd:A厠l 9 ン ゚%掎ツ<"`p蜃ワ 1(:hAーネヤ!o$S. おッ0イ0|サ.jーg卦z]ァM:S7A4釈リ` 9c襪ヒラTpmpニ墹PIGィ%BбQ~aソ「b贓Zホキ コ$ι|d_bヌト<え黴セァォムb湿VルLY>庚 N|1メ&'z蠡桀4z゙eァ1%シll4イム1n*jjQ-ヌ゚pj歡>セ'ウRリAクイケyqs)yX ナ/&そ4ケ*<ミーネ q5I!リ タヨ皙゚ヒレラ70}3マ*リI鞘7f.LェエazO;Jセ蹣JゥQ,ノヘネウuS+」ゥィ%wイェォネ,フゥソpBハ9D幤)xカ「ナムt蛾フ蹠Hーr寧1]蘖剣 M>iVキnッMソ_+.ラカ腫゚o祕ロgサ;ヘ:?オGオ。谺f{s」Eア&Vo?ル_ゥユoO粧+jスマ輹ユホIンZゥRY)Eゥ=ワ.ョヨソhoGロョィ?ハS?ス!鶚6ソユ*、゚「渚カヲm bフ?!`オンYォU:倣ァヌf蟇晨ヘz「ムヒムヨ陥iWV娑ヨニ=i拡z「キユチz疽罔・ン-ヌユG耒cス&4{ォスス誦6Oヘユ =xシッ6ュコゥ6h仕kTォ4モ賊m」ヤV?ーq8うEヒ ダ゚レ]ウヲケiオム゚Yq$>aモ0O媼ニ桶qウ5ェ}xヤXロ]゚j^lンェキ6n;-篆=セ;[ォ_tdミ。KナョrコオFソ恙Mkテニ゚5zoェ゚鼇g」]ウxXo8ニスーPオ?ソァユjA vワ阮カニオR萪h汢;鐔uサw鞠左 ケt~sg4ュ齦ヤgoュ゙ュワ殕 u6ン輔j急ル:コ3je}衽{ャAIヌoWヤア穣麝O忘ツソナトリET+e#ニX5F=カ9マ并/ケ ;;ウsマ=ュヒ5ケ7*'ュmエ1.1退2ユEuネ セー,ヘ0テァラハゥWヲゥ錺^*&ムニカルWネC蚌JYヨRヤフfメ綟 Gbィ]垣フ@)ゥx}Bマ~Bト溜!ゥI 興$ミヌpテ!:ワr$`I(X゚+メラ-qテ*_yi}茨イTモb/{ゥ4#ナレFレ眸・。Rャ%セォ`ルヒ%NO7/3U"テ恙Hヤニ[ロ`イセ゚鞣{)ォタ?ヨ :ャI 忻。*賓 ト・i胖$ナモァsw:精」up]Tユaスヒ'hF骭_fャ卷F「3」ネ繊崇カラ}シnチu B滌xニ8!o弃K壓/F0o2ヤ.mェセゥ剏ムaッ yノ-"ワケニOT殀逞軆m・P・針襤{給M]#「 0サ6鞋ウ_槝苗"=ィ演ロシ修・ーnワ(メ:8_Mt差1貴Rゥスz^,齔モレ)LeX->ァ伎ッャモ*wX*ァ44cサMUトGソ7p E カ ツ. -O纃エnlEc゙rCz爼`ァキeVミ屋X嶄スZルロ椀♯買ェ繩(會^{ムz<チヒ(ヘ覈テ繃モ>} t#7\。啝褻Lォ 殄コΜタU跨ンョpxn晧偲 タ」x謨ムjアェH)ェミku;}(pィハ「チヨB臟ッx、カlョ@NO)ォラ。店?サハミP|ミヘf隸ョ4|%ゥ、蔓博[MヤYナ&O蝗ヤW「6珊ォK`物、ー`テHャ鬚E+ノ< ロ゚xヌ73呆 hニ):菅ャ粐drモ侯2ォJ セd]ソX 活カLAeU#]c鼻`KXQー?ハゥ宦裔N脩ラ漸9膊鑾X z2C<ナ*ムウヤ杞ヌ゚61Π゚。d?ホ麪ヨヘt> Zw\G5%2「7ネHp4ア}ミu 諏シjァ eヨeKKヘ+レ滷3wムz゚_.カ冉U#EO%゚拆ホれ"g況aア醸7$,リ「メコv/艦溯gnfノ癡ヘxd^リ]ニラH!ョ 8.^Aサs]イ ^uワ>ヌ俗、 ΩUャ醜ァリ;dキ。%!氷‰(eャフDラP8ィ兜Z ソo、チィcB輙ヲ]」o_ツムヘ′$,1h8ァ爽庖ソ[ソp#トラャネ」穫ト。ap g」祥}トハ"^'綉z}'゚ァ2:?'ム一AmュィEV蕘-ゥノクチ+キkLMU~ラカ佯<牀葬L*巒x#7呆着ァホ=久ロSヤmモ」ォ]D鶲トレキ_棉ワァェ$kロ・DコSRナ4*GタMk作觝hx}咤聞翊s-崟;便∧5サス(f]サ袁埆>ュ帋 !ニ゙vヌ" g`Pj7サ莚2ュ"ナ嗟2カqエ稠V!*=Lヘh鶺テaKス5xフMニ_昌xレメTSチ:"1ナx ム佛eワnヘワ @釀bPュス+2 ゚3坡セオンモ0oV&宴=6X<ェPア机O攸]~ス゚。ョs痺 「」 儉L 3ゥdモラxンBUコトy!KCフ~ヘk゙ -モコsミKミnw貉相E女封ュノ;ミV/8W3(6hヨdヲゥ踐ゥh巧ソキSyq\pp燈シ++゚フ毟ャ綿i視Mk「パォ睡gユ`ヤSnV-ュIャホテ Sメ;Xトh錠蒜im$23裹W銹串セ リフYb"チ上u/`lコ_"渫鴉チ宝930ェUフア柧。*賓 -FBH'sラe坑!Hチ裃ナコ6^ェ%{`O6゙;ワヘホD*)9クッノu鎹タm?~ラ、;モVz゙[寔f.フ$ィ3tオ娠ソz“U>幗 ソIレハ悼Qゥ(U+Bキ7eGェ蚫マ:h.」ラm婚S[ャ[#UZ4苡e`ホ(Jiエ ミNZ'lnU洌-P記Qルヒ9QサVテニ呰H圖,テr「 c:aレ゙tn*ワfイSロ?Lcサ%B3ヘ 括4vシ・ア,oc 9TマS萎ェヤ、57レ融ネ瘁pヤ#oゥ"K:モ偃ヨョ脆`オィQM」ワヤYョ/} 颯(俔=ォムp(Rh争ア 1、クg。「0瓱銜 7~ハミ,ぽZ3WA瀬R側ォャロ蕪ウ5ヌaG`種ヲX3ィOナ舸'k髴lHホ媛{FZクァ}ナレワ・撚ユ溷:ワr/ SL4]ユ.縊メ:鵄;G畊U? ゥ*xャモモツp&、壯&「f1ム廂 i0\ニ'h '訊欝硲 UBT\ETT.岑1囗P4涯S0ソ}"Q虹M}ヲp鮴ン}i+l,p黻d&澹3\ユ2jEフJサル霙BナS?ijサ・! -l"設B iャ(kCァU?ニュ:jホ マ{|戦eャ Q ワKQ~冥アォ,wf摩策#0t「クMス*ウY#~'・ャ(PトN)ヨ望Lカ詫セCjホJ零テオr{ハ辨~」ヲ[X械~ァ抛yオoLラ鳬フ ホ4オト範撹^MhDpv?マセネアホホ方Wル某"オ抗鬥テゥ*=ゥロ @ニォ_便オ|bu゚w+#XK<鏑 7Z=ウェ鋒貨ハヒ霪zエイkyハキ65t廢胤1贏Bdgンロヤ。狠Mムァリ*ャ)ス(kF2マフj'[ケy"鴿サgァTハウ・桀Oト&゙,P-9ュuj歃 ヌ5ユ01ii./U蕾k%メィ霧xケ}オ&~羝チ=qM\ロネンoーbー「深カ。 <轗、}鰕ク/>X・ェM毎/サ」4ェut 5キケ!J夢エ1;9 澁ミ複$ス>D#Cr^マユd4ー4ケ仙n竒Kq7ェロヨ|ヲ+yソチ >オqョハ蟠M躁ウQェE抹RA^フケ゚,QR捻ンkヤ斑籃sラM5Z餌6Hオ゙ナユオ4ヘリP ネヘネy'ツ; 14_{tWカ:79霜+R,;フ ヤSャ$ケ@ロy-tンH.ナU:媼 ユ)3~襌峅ラP]トムdェヌモカ)ルケ},ンT yシTB レH ャ:Uウ底jBH エKKモDニ#條> ェxメyョ゙OオG:ュ)'、biラQ繚コlPkエフ 葱v?LZ 洲モト0ヘn絏J5Z53 7オケ狆ナ,h{4ム?m_メラチ\5糘瑣:m扠$ソ、F゚ニッe9蹶憊YィャL^ヲM雍シ%ヌp7rエ皈yK∃ツツメ<ワ。。漠ソ@B&メ[ 犯NZァnメn4_,`aE21c~渝ナク~ホ#゚般ノI#ヨF冦a~=濾ヨ~]‘セ堯ロ^徴vン}J?ネ_!煬ユ8=~5拯ァルH9ォ #ンフ7ョワ7オカコr、^タbh$[sヘnピウ);ョ宛#}G ィ@(シ{C咄ク[スヲ煕~Aサョj「OモAp*cPq[?亭Wィフ仞pC1ynウヤ C+& 3」-嗚ホ旱 ア版ロ樗レ卑1e` 稟髫眷ユMhト1HェF殼G 2ン蟶ツ籘ヤk?ョ妊マ7齎峺zクャ新S)&/7ソ{R侫。FbNr(Kノカニラホ、鐚m_O゙ ウT看ハロノCmg/カ帙2カヌチワrテT*ナ?ミ・閤躪kゥ{,@?o贇リフゥ>テ猛Cuc*[羔柤llリy ・ゥオリエァイソ^4~q!@」暴*Il嶮3$%7ハ3&ル攸エシセ`%槫*ヨ}iロT銃フ嶂甬> トIUOU、sF-Cn。bメョ開_カ、mFヒ jハ蒙Q( 充Mルo゙ヒアハl!ウチF篳z '4CォミネdルBロ法ツ亮ァ膿旅pョノヘ霞瘰7D、Q"(樞臆mチム孤マT"24泥pア\A[Z0t5翔f]ッcoニs>7Q{メエ チw\ク6醪X=GPエソ シサ゚4V!"マォEルァ4ネ|ョノ-ヒィ\K駿h瑞G、ョ>寧栄}スU籾&J奴r5Qp、呪dニァツ7io・*b眩ャ擁{餃灸ト(j/坪jアUNu盒Hフ$イ匈シ轎ノナ5曇マセp瑜 ク_oカK蠍エfLsFq」6オ_コョ xヲョホ[PCe2ヌ"ノC 'サモ@ー、=型牘險lnZ*S_ヌ楙H1シx参ムシ♯カ,ヤi/^&R:ツZ!Q_F咒=l」<ナRユ B「Vb梏オI!`g(Feン-蒔^Cnツン杳ィ´エAメ5N ンn゙瞰麹框ゥoau・、Uメ#、ロ8*/スョ狼;家F"戒ニヒイ2ツ[Xレ「・_ x-カqP双リnウャテオぴ"*HマhwX剿mH曉56削Cス 「jュタPロJ工74M「V^酎! 0jイ)饐SW・キE吋ュ茱?組<5メzMDE第 ィャマ_8*/ン95Nサ滯JGセョ暈メエメナ剪ヤエg?aゥ2whゥ」ミBT9Q7 +カT洩;?(ク['オ(師(5ゥZ骭モァニコッゥ+Nヨ掴ネマセ1ーTェイSkコヌRハ「「&m#ja=+=ィc濃ェxj=8ゥソ-ケスホ7モ,淅ゥ卿ヘI・V$QK|&ヤ}xXシチォnソルゥ=9,!Q|+ヤc狆ッ2x}タR櫞斛u罘ュ_>ヤヨp6[ォa9翩RァPHn丕リ0:X稟拆Om|ハA-aゥ*'Pラノ7エq釀^カ'O^9 ニ1H $O起^゚3@ヘ*Nォソヨゥ{?「ァN8w|2」゙y「lホ[アSC期Q」!5xZ(!ラьKZPOコdw 戈栢テネョゥナjヤ>Uウラナ^ ]ノヨ 5|Z{疏「チャU: *lk&XハtjェイQ*ス「ノ ェ撰56]魍zキ」ホテ盜クyサ'5ワwェuVMEyX!?-&ルQッ1ゥaOsWッN{t殻s6勠m:ζケ垳峻5誥A5レlラ?Gフa4Kq コ6・=ユZ祕゚)タ|イォ*スt゙^W3;U肥ャ#:^/< 撼F琴Vァ Oテ做Tf゚ェkハ「ヤ Vnヒl-;ャ8ケ顎J存チ浮.(O剛ア濃ヨS[Ms驤+w.ョ葢foソ\゙アオZrウ;ヒ~陵nヨ@悸夊cロ糅ォサWォミLソイ 俤(QMカテBィPQ6ロjS/ワ,E?G ,ZOQO+ミレ6ァYチ1゚Л・、 相 ュQp囮`ur*サネTクTuO 8Y⊇チ腥リ<オRcOnォ;ョニ0エIク倭黛nーナSc」價Iシ==`エィq uN、ツ5樺Q]4hゥpミ闡,フ儺}エォ[eョ膏`@|KwFvユススtVツUェ埠]qO9フヨKンZ屶オ殆$1x暎オゥeUづ]ル詆\#薹傚怠yセ M5ハS5ニuュ苛f@スcヌ%]yキDMmr[ロ/ウLbsYタm&チ6u家蛻ソク亭-AYs9ムcy2iNモ澆そcスワfvヌ+コツPChセv銖ロ.。ヒヨ2t(r 。bア。ナrッ 2ーh]」pbゥア2ソ唔sイ錦ソbニ ク 0タ催eテ」GWモミーア#NCア*a蹤モBセケG=h猥"TI oレ゙^ラP~∠ワdッ3_田カオヒaoレgwテk耆 .モhヨレD誅カr匂Iヲ[ッュソPマ嫂7チ^*4窰弑H恃カVぃソス フE松qェハニ7シ :」k'ュY臼ゥ鈞c故フ<*cフRヨ+ヨqELz位 tスq途叱ヲ几B_67」I~9滸Lスl素モヒヌ ス5uトm]繧J、b#Nハ![ア1ムイbシユU9yイCAF ロシァシマ、ニン1"ウt猯ラJ。_テ dタXpン8pN5vW$瓊モz.キ薀N{棄瀋c!P8里ハUミKb嫺ア2ァ#ト nY`Z@ァvル「サhセW+z1モ簒-ネ'ニR麓'キキラ{ハルハ{m柘慓f%Bァコ4Mレ"Mカ郵K妝屆シNnェU袷p攅ヤ0|Qヲ{鷭4%コbヨタO$S畊ョu#qヨモ+タ槧lnシ4]Cナh]ミオ7v. Eレu_サエ万フlニラHアサ壽エ/掲/サk4{uサンhレq キhq8 レキロ Lノルヲァ&ム>w。Xf]|MィGoウヲ簒7~ィタメQG鴿Q丑ナ・e>tユcシ7y淑、ヘ2ミ!ーホq<1折セシニiA屆jb゙\皙s[C}ツ sゥ\#ノノヤソフrゥ%《墮ウロウ甘Y黻Bヒ纜レヒr囹ミ7z、T(Vラ"Q゙[゙゚F?,D勾ェ(GAJBHーィQD兪アケEャY フHウ葯ェ繍ミ97ルワヲa>ユynD>掫ユィセ>a。$k。z-ro」aZx5'ヤ (塩ユケ{モ@9礑ヒE隱i鉈+K&ァ漾犯G ゙l(ヌbO()(カ网QXネ': 6^nMォf・メSムv筺ゥ瓰ヘエ>讒R(ツ。P=カ・R{)[Gワ竢 eム・ルMF个4$阮箱[ラ?コQ+カ珮{雜彭E境ッ%ムj<ツi\\Bキ螟ーUE>コ2tロコム紺(8コu)コQワ6熟ゥ宸<カ麈ノa"食&ミミNxnサ侑馮?セSァネ U掀1ア|mPNrソ樫Vユ!ム、PR蛬コHア瘻ハ来ロ-@Eク ロ#'ュ@印幢罔-hr)Mー $*<_裄ラ82;y裕"晄3|A^g%-?D示u7"?>Qワェ諢咤lチ<甲7?「h:$G゙xhチラmz駆ヨユ鸚渫Κ.凱蔀hQヲeQl」 、ナ祝rtチfコ)瓱 アモカIノムIミワeYD~t゚゚淘#テ楾wyウ7ンマ纏ツ^@ヒハuモ:OY リ[*ナ=エヲvEモコL 沓。xD^セiモ=ンiレミ Zヲ樊ナ[ム.p、ミgラBdナ壻ラj/エニ L舞ミT、)チ{0ユxゥーqf%紙vcレ,I -鞳%ohtS翳P咤・7Q岌ー %_Hキッメ寞Tテホョ訣、、カ蔆q 宛メ゙eヲ摯n|闔メ&Y靦ーォ ミユL6洳|^L“緲FV」,,曙碇セル。轣T!覈漬ヲオモホ瘍D 胚゙H'ラFGzh$['yテシ<貪ヒスa Iァト・オj、[テソカ79イ「桧ソ'lムホ=fo~LcケioスXcト3ナワJツネhBオ蜿v6隨ン鱆"и/MJ]ニ"゚3fノハ畸 eh~eイヒワ8メ厰・aウ'BVロ籘韻/i0kイrx d= Gヲナ!牲ぴタマ ユ8kスセ霆Y欺ヨ昨p=pイセ癪フfンソ床Mセ;0Y_」ム0ヘ:__ チJ<Lホhbケ}8k頸oフ埆|nthV"9ク&Mイc(H揃+〆Q塲o3 <0l ツ]yヨ Sヨォィ 9ミh鬥I 膂0]ソ + スロ廈P;ゥ。rアN刮_0jLク`ヘ8憎ャィ"8セォ#aナ8駒6Z9Wユ止蘓cOUNァ。RK゚"ッリチ+D硼鎰ヲト]9(|t\ィヲケッ(Bo鳩 き缺ハ驍父6ヌ2iハオ=ヌi傷0?jZォkツi4オ1jUロリr|ヤZeナBサi並d霹ヌシマ2xNR齲閾E43 -q庠XWウ 3檜」ンxd梅ェ PVnV ーモ7ァ5.XーlRKj-リ髮フ}Zポ觴;オxSHラT8ku.FqヨF80融痒]iノE+ cWセ-{yM?ヘ薹輯黝<ア嶋「クス ィモ3ッ^ェキ「2IMmp、rス/] オl4*#p]ハfc錺スqOA_=] U}ワ$。l-3墸}逋ネリヨSDYクサD3j=|メ4ーUォクンツカラテivメェワロhリ錬チiタ{逮イ&糊BYアyO シj*、5Eォソユ紅Y[出゚エエ撲b ~ェメナネフテq孥4登Zセ7ヘ}=oLB&面W ゚,災゙ョ筬ノヒトコノア款/qg・サ痃ホヲルEg'Eq{@ァ嫐ッ^ェキ「汎ナ ~^リチシ8F%ミケアAс「モG府マ潅s今nmウ7<「ス。x0.&dサsィキミIB|- iエ h 72 餾メメW溺纐B|Y7ソァ ぷoaiy]炙ヨ*FNZラツ釣ワヘヌ&拍渡ゥネ7ウ蓬μE賓)|>Yシ、O簔FI{セ.亰Q[vv F航I7 &?Tィ>nj,4pノ6`ル)Rcショュ「淒ソ4就ハ糧ェァIヘh老4_クd衷コ髭テ。イイPDァ!8Zn娵%@pモz、皸鞦[」ロF)ニrォr,|侃憮恵ソニq6キ、Tムx)ッI EIレム。ヨ*ラァ"筺y7狹B隅阿厨B(l鋒モ&3ー崛ヤンdgc恬イH$ノッ拍前7M#C ャX贍鮑Pu「k<逑?/ユk、#/弃ラk-ユノ0s\「オ@WヲI隈6モ8權」z4スヌ貎-ヒ。:!8BCj」nワ52スムュサq娼宸;ワロェ峽Iノ|微爪繝c$i{Dテネmユ|mpサBivt招チ|Aヲ¶XCチ・:ア?資qkセゥQモ竰@総nQヨシm゙」ナオキ「U3OVi樣z[ェw澀ヲrッアァ*{A制フ>ヌ]H 狠Mj=`s咥,.、ムk。A3#'ュ ヨ7アQロ」ヨ(tcェ」獸 「5N ゥマ.ゥソ頂5マ@yー懍ヌwヤY$W豪 ェ。7譁.T~7 fヲoVミ骨゙傀燈6効5+フ砿,ナ=。セG{aLc・・5槊冢「wスn懆4ェミ6T゙ヘRシ瑾L!Tンさ)ナuhX ・y曠y6m ヒ 滿 エ゙メ<ー 6\ィネラ歟Ptu單3ム隴3ナリァッキhT(ニjFネン0碇xEb 9%ー 諞NC/_)オq件fモO敘k-uモ,BニDネ8ZB-゚ゴ卒/吉ソnシx氾e:M5ホ@ウn樮ョ(TzC奏ク4 ]@K耗\,6コリ7;ホ0ョ丈[hツLvyミ8z?ユレ&EKチ@}」瀋ムFXH}菱bナG4孜tLナチサ " Rレ テ;悳サ3{ョゥSml~+セwタy雛攫-A・STルァョゥカウ譚lッイUヲー埜エノ\ロ毘」zffナXモ彊qテd0イ2YyT}=ーcヒタ馬ア"?゙ [ュ゚エハフ YqP゚BQGJO bケIBu辞Fノ6!UミフZeSオQzAAオT4。コ幻鬨:;スァ「゚ラUテQ媽仙タ%3詰Tハ黽綛Laセニ9gT1ЩyMmマ゙Tト&$nハh*ェオ灰サ中鼕LWイ1ィzェJGユoルi鶩靤⊆kHCナ(<昆ィhヲpッm 萸o^ゥsフネナDu「"D鶩&Z*ャ2鷺淮6w,Sネレ弔飢b9イ2チ ケ書g9タ|ォ&ソ混>stream H鉛WM賞6 スネ侏^{lルケyメkム{アE謳 甸g$2,Y)繿.涸セ||~t疸mw8ァ!ヌキo>貰|:|xvク・LKi[ヤ}循QマウFロmロbカm1ロカ慙ルリノヨ {d}イセマY去#hニ4c)ニ> G雪 5ネd ヨyニフ<&gフ贖ニ3r&ヲネ蝿{rャ嗤ロツdミ 5ネ龍韮 (レt9ネ スP」・Pc)規C)ヤヲ;>0 スー+mJ @ユP&g庫K&<-M[メTィノJゥナァtワ゚劉Dツ2闊Kム態徭8| :ハモ4 劭#j qレヌj植Gヤt&瓧絣),會B箪Gi{績xイ オァ&ーサ4゙〆チヨp{mP'シヲ5]シ「若" モHーXテ+ユル&イ寒w}F$Wェ岼ホ^シ゚Nヌ罪b膾7メqウ=涛!8ヒカ`O革サ^リqYuフWンY膕冶Zゼicナハ9ョ゙ロソ ム{ワィ\ヒ7 モMkc~@o=シOJオP」Y>ホホク ヲコ[ヨク:,;lウオニ|キ7`?"五地iリVHLSqァッGワミ歹~゚_#ニヒ渮-&ェDスナyァェ義ス仟ウ"ヨT! ,ョァLワモ寸楴ヨメッィンャトh~x斗o蛤U.硴8m勅pノロ洟罪UナdkW」猾ラ゚eGノヨ示4!u5「Iz<%<\_>.庄出゚/タU endstream endobj 3514 0 obj<>stream H噂R]oロ0 |ミタ=H」カャシ%レXレタI ク1 踏@盲uソ~巴7ナ`H(xシモ鈑鹵ZgシHホ>據+ォヘ|覲vュ5.4*ヌナA雋ヲ|モg>「iVwシスq」ケイhT%。トェa カ8ム5+cT ャ ィフロリユョ菱ユE >ユ/D O」il Zャマ2~'Kヘッ+K5ムeト/0d伸ツ 2モ擡レヘハRHRクb!ーフS*Jlマ 敗J ョXフ*紜j_rュキ撻セ4z砧[hゥM;≫ュRーィvtSチw燃ソツLVロ゚T3擧!槍i* ケ擁:鞘ヘャイセ喩$ノ"檢xイ-。ー;8ロフ ュミZbK==漑vV触コ゚鍜;皴#×施56{IjQ0 H楴tR解Q遭D 89.ヒ1・lO叶?:;ュー{jJ・12B<テe'ム<(ai劃^%<捕ネハマソ雍ハミ昼Zvヨ?ト<Hリoユ:{「セノユZ?zqァ「 4f咾槁gセ Eツ。]膽、Cー匍aIホワアj2芯媼#齠],クyワ ーーz4オオィ糜T看翕`アr]ソィコミソ=O1リ endstream endobj 3515 0 obj<>stream H鉛Wロnロハ}ラW「オ{フg9'A;@ yCどソ居j゚mMjテT囿伯機茣mイ-ェァ?g釐~ヌ!8`nキ$。yワ 栫Jt;ァレッチャ`ワ軍 ヘクユミ:r)ワ櫨@杠?>ユc蔟P鶚゙1'ヤtWャキq+貂栃$キフノ~ォ黻 ・81C\9ヲフ20f鼎:@゚ #伜cソ洫@覃ーd┏a荻}皰\&`ゥァ1yΔ夊シ`z奕蹲q!*ハW「ュォイXdォユ#U%オ?sコケケ!・L萢s#癩 u{>莵Mム謾オt錵アマユッ7、 P\vtFニ}>ョ7ォ ス7糞〈ノヘ嵶YチBーvコホ7Uン蛩*dhテ⊇i窟2!鑚ルエvvツユJf4Neミクケ豈 %(;ヘ 耨ンU芽)Rp=bK6<ニ9#疑$ワァg0N 檣ソモ?8-iヨvm椿3杭ェjvヨォ0 &{gア霏叨十Zd%-M*ス1ョ4rB *Hルセ;ソ'f2v),e蹈%9筏,貽Iヲzャカゥ!勘h.ユ42;穆」P讖ホnd佼CTァモ,ユ0、懈~ ルj92ルΨ抒i\?ュメ-Li諠エモクpユヨ疫y(A柆|ツD。。マ`セ滉ァ鈔dqヌキクtq騰マWユヒfッw8}唔&%ヨL議3.牡ハx#レ軸jソ2セ裝ne-yキャレソ|ybuaDータ2 Ay燃サ%&墺i5ム爐)サ゚=&{ 向ユ+エT(nチタiH9゚ケュ崟"{uョ術アメ}ワム>ニチ%^ `Gミf琢R「;噬c恁taサxBD*1斫1)&;モi谺ア統Zェィ`眈`=fDgワvpeZ8悄マ/}ロラ/聿驕!ノィuチ}ニ」テC宋h*輯XKYユT゚ソオ痘フ98jーモラタ毬ムコ「ユPフ壌カP~-ー@tx\Y辟頑<CヨYア"茨ョrオイK「クャツ:v蛆ム6l陬O3、i'スfヨ H覩ツ爲GO「d蜉f_[\Iノ endstream endobj 3516 0 obj[3517 0 R] endobj 3517 0 obj<>/A 3518 0 R/H/I/Border[0 0 0]/Type/Annot>> endobj 3518 0 obj<> endobj 3519 0 obj<>stream Acrobat Distiller 7.0.5 (Windows) 2007-01-12T13:59:13-05:00 OneForm Designer Plus 2007-01-23T09:13:31-05:00 2007-01-23T09:13:31-05:00 application/pdf 2007 Form W-2 SE:W:CAR:MP Wage and Tax Statement uuid:622d762b-8a27-483e-bb39-b227f66b8177 uuid:25bfc6c7-f201-40ad-8bbc-2401394916ed endstream endobj xref 0 1 0000003167 65535 f 58 1 0000148351 00000 n 70 1 0000148415 00000 n 72 1 0000148656 00000 n 3411 1 0000003201 00001 f 3425 1 0000148856 00000 n 3427 1 0000148994 00000 n 3430 1 0000149132 00000 n 3440 1 0000000000 65535 f 3442 1 0000003440 65535 f 3444 2 0000003442 65535 f 0000003444 65535 f 3447 1 0000003445 65535 f 3449 1 0000003447 65535 f 3451 2 0000003449 65535 f 0000003451 65535 f 3454 1 0000003452 65535 f 3456 1 0000003454 65535 f 3458 1 0000003456 65535 f 3460 1 0000003458 65535 f 3462 1 0000003460 65535 f 3464 1 0000003462 65535 f 3466 1 0000003464 65535 f 3468 1 0000003466 65535 f 3470 1 0000003468 65535 f 3472 1 0000003470 65535 f 3474 1 0000003472 65535 f 3476 6 0000003474 65535 f 0000003476 65535 f 0000003477 65535 f 0000003478 65535 f 0000003479 65535 f 0000003480 65535 f 3490 33 0000149234 00000 n 0000149366 00000 n 0000149444 00000 n 0000149537 00000 n 0000150730 00000 n 0000151305 00000 n 0000151419 00000 n 0000151770 00000 n 0000152046 00000 n 0000175831 00000 n 0000176337 00000 n 0000176607 00000 n 0000221763 00000 n 0000222056 00000 n 0000222312 00000 n 0000245520 00000 n 0000245805 00000 n 0000245856 00000 n 0000246263 00000 n 0000246340 00000 n 0000246558 00000 n 0000263171 00000 n 0000279337 00000 n 0000295577 00000 n 0000297535 00000 n 0000298184 00000 n 0000300090 00000 n 0000300118 00000 n 0000300258 00000 n 0000300346 00000 n 0000003481 65535 f 0000003520 65535 f 0000003521 65535 f trailer <<613F84376FCEF6469901F8AC112AEF98>]>> xref 0 0 trailer <<613F84376FCEF6469901F8AC112AEF98>]>> startxref 305864 %%EOF z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-07.rml0000644000175000017500000000313112032774153025332 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-7.rml0000644000175000017500000000243212032774153024552 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo Top Left 02 03 04 12 13 14 20 21 22 Bottom Right 30 31 32 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pageInfo.rml0000644000175000017500000000050712032774153024075 0ustar srichtersrichter00000000000000 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-curves.rml0000644000175000017500000000055712032774153023661 0ustar srichtersrichter00000000000000 1in 1in 2in 2in 2in 3in 1in 3in 1in 2in 2in 3in 2in 4in 1in 4in 1in 3in 2in 4in 2in 5in 1in 5in z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-document-pageDrawing.rml0000644000175000017500000000046412032774153026413 0ustar srichtersrichter00000000000000 Hello World! z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-02.rml0000644000175000017500000000110612032774153025325 0ustar srichtersrichter00000000000000 This is the "story". This is the part of the RML document where your text is placed. It should be enclosed in "para" and "/para" tags to turn it into paragraphs. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-plugInFlowable.rml0000644000175000017500000000126012032774153025254 0ustar srichtersrichter00000000000000 <font face="Courier"><pluginFlowable></font> Tag Demo You can also integrate arbitrary flowables. Some text. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-04.rml0000644000175000017500000001623112032774153025334 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-2.rml0000644000175000017500000000207112032774153024544 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo This is a more complex blocktable. This is a more complex blocktable. This is a more complex blockTable. This is a more complex blocktable. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-drawString.rml0000644000175000017500000000046512032774153024474 0ustar srichtersrichter00000000000000 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-002-paras.rml0000644000175000017500000004067512032774153025617 0ustar srichtersrichter00000000000000 ]> This checks for all the possible quotes: &amp; = &, &lt; = <, &gt; = >, &apos; = ', &quot; = ", &pound; = £. Paragraph 1: About this page This page tests out a number of attributes of the paraStyle tag. This paragraph is in a style we have called "style1". It should be a normal paragraph, set in Courier 12 pt. It should be a normal paragraph, set in Courier (not bold). It should be a normal paragraph, set in Courier 12 pt. Paragraph 2: Indent Left This paragraph is in a style we have called "style2". It should be indented on the left. It should be indented on the left by 1 inch. It should be indented on the left. Paragraph 3: Indent Right This paragraph is in a style we have called "style3". It should be indented on the right. It should be indented on the right by 1 inch. It should be indented on the right. Paragraph 4: Space Before This paragraph is in a style we have called "style4". It should be have a space before it. It should be have a space before it of 2 centimeters. It should be have a space before it. Paragraph 5: Space After This paragraph is in a style we have called "style5". It should be have a space after it. It should be have a space after it of 2 centimeters. It should be have a space after it. Paragraph 6: First Line Indent This paragraph is in a style we have called "style6".It should be have an indented first line. It should be have an first line indented by 2 centimeters. It should be have an indented first line. Paragraph 7: Leading This paragraph is in a style we have called "style7". It should be using leading. It should have a gap of 5 points between each line. It should be using leading. It should have a gap of 5 pt between each line. It should be using leading. The gap between lines should be half of the height of a line. This paragraph should look like it has a line spacing of "1.5 lines" Paragraphs 8-12: Simple Bullet Points Parastyle name="style8" parent="style1" bulletFontName = "ZapfDingbats" bulletFontSize = "5" These paragraphs are in a style we have called "style8" These five lines should have bullet points. The bullet font is ZapfDingbats. The bullet size is 5 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style8". These four lines should have bullet points. The bullet font is ZapfDingbats. The bullet size is 5 points Paragraph 13-18: Indented Bullet Points bulletFontName = "ZapfDingbats" bulletFontSize = "10" bulletIndent = "20" These paragraphs are in a style we have called "style9" These five lines should have indented bullet points. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style9". These four lines should have indented bullet points. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points Paragraph 19-24: Indented Bullet Points with a Left Indent for the Text bulletFontName = "ZapfDingbats" bulletFontSize = "10" bulletIndent = "20" leftIndent = "35" These paragraphs are in a style we have called "style10" These four lines should have indented bullet points, with the text indented as well. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. The bullet indent is 20 points, and the text indent is 35 points This is a long line to see how multi-line bullets look: These paragraphs are in a style we have called "style10". These four lines should have indented bullet points, with the text indented as well. Bullet points should look like a pointing hand. Bullet font is still ZapfDingbats, and bullet size is 10 points. Paragraph 25: Left Justified Paragraphs This paragraph is in a style we have called "style11". It should be left justified. It has an argument which states 'alignment = "left"'. It should be left justified. It should be aligned to the left. Paragraph 26: Right Justified Paragraphs This paragraph is in a style we have called "style12". It should be right justified. It has an argument which states 'alignment = "right"'. It should be right justified. It should be aligned to the right. Paragraph 27: Centered Paragraphs This paragraph is in a style we have called "style13".It should be center justified. It has an argument which states 'alignment = "center"'. It should be centered. It should be aligned to the center. Paragraph 28: Justified Paragraphs This paragraph is in a style we have called "style14". It should be justified. It has an argument which states 'alignment = "justify"'. It should be justified. This paragraph doesn't contain any bold text though. Paragraph 28.1: Justified Paragraphs With Bold Text This paragraph is in a style we have called "style14". It should be justified. It has an argument which states 'alignment = "justify"'. It should be justified. This paragraph doesn't contain any bold text though. Paragraphs 29-32: Bullets using left align, right align, centered and justify. bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "left" This is "style15", bullets with a left alignment. (The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "right" This is "style16", bullets with a right alignment.(The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "center" This is "style17", bullets with a center alignment.(The bullets in this style are based on "style10") bulletFontName = "ZapfDingbats" bulletFontSize = "5" bulletIndent = "20" leftIndent = "35" alignment = "justify" This is "style18", bullets with a justified paragraph.(The bullets in this style are based on "style10") These all look wierd, but most people do not actually use these styles because they look so wrong. Paragraph 33-35: Using Colours by Colour Name This text should be RED This text should be GREEN This text should be BLUE You SHOULD be able to specify colours by all the means available to reportlab.lib.colours. Currently, you cannot use RGB or HEX values... Last Paragraph: Para Tags and Paragraph Content This should not have any extra spaces at the start of this line (though there should be at the start of the heading). RML should ignore additional whitespace, and you should be able to format the actual paragraphs as you like. This should be underlined. There should be line break after the colon:
The text in this paragraph starts on a different line to the actual "para" tag.
Quoting and escaping This checks for all the possible quotes: &amp; = &, &lt; = <, &gt; = >, &apos; = ', &quot; = ", &pound; = £. If this is not italic, and this is not bold, even normal angle brackets are broken. Test imageAndFlowables tag with paras We should have an image on the right side of the paragraphs here. The imageAndFlowables tag can take an arbitrarary number of flowables and try to flow them round an image sepcified by attributes imageName imageWidth imageHeight imageMask; other attributes allow for padding and which side the image goes eg imageTopPadding imageBottomPadding imageLeftPadding imageRightPadding imageSide. Of course we hope that a single paragraph will flow properly round the image and that the leading should not appear to change during the process. On our assumptions, this selectionally introduced contextual feature is unspecified with respect to irrelevant intervening contexts in selectional rules. To characterize a linguistic level L, a descriptively adequate grammar appears to correlate rather closely with a descriptive fact. A consequence of the approach just outlined is that a case of semigrammaticalness of a different sort suffices to account for the system of base rules exclusive of the lexicon. A majority of informed linguistic specialists agree that the speaker-hearer's linguistic intuition raises serious doubts about the traditional practice of grammarians. For one thing, the descriptive power of the base component does not readily tolerate problems of phonemic and morphological analysis. Test imageAndFlowables tag with paras We should have an image on the right side of the paragraphs here. Summarizing, then, we assume that the fundamental error of regarding functional notions as categorial may remedy and, at the same time, eliminate the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). This suggests that the theory of syntactic features developed earlier delimits a descriptive fact. We have already seen that any associated supporting element is not quite equivalent to the traditional practice of grammarians. From C1, it follows that the theory of syntactic features developed earlier can be defined in such a way as to impose irrelevant intervening contexts in selectional rules. So far, a descriptively adequate grammar is rather different from a general convention regarding the forms of the grammar. Intra-paragraph <br/> And now for a break...
here we should be one line two.
Summarizing, then, we assume that the fundamental error of regarding functional notions as categorial may remedy and, at the same time, eliminate the levels of acceptability from fairly high (e.g. (99a)) to virtual gibberish (e.g. (98d)). Now let's fake a bullet list:
- bullet 1
- bullet 2
- bullet 3
- bullet 4
- bullet 15
z3c.rml-2.0.0/src/z3c/rml/tests/input/encoding-test-latin1.rml0000644000175000017500000000137612032774153025532 0ustar srichtersrichter00000000000000 Test of Encoding: Latin 1 This following paragraph contains multiple European symbols. Das ist ein „Deutscher Text”: Er hat eine L舅ge von ber einer Zeile. Das ist aber ntig um alle Funktionen zu zeigen. Ach brigens, unsere Stra゚e ist nicht fr €200.000,00 erh舁tlich. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-skew.rml0000644000175000017500000000062612032774153023320 0ustar srichtersrichter00000000000000 Hello World. Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-para-border.rml0000644000175000017500000000137612032774153024550 0ustar srichtersrichter00000000000000 Paragraph Borders This is some important text. In this document all important text is rendered in a red box. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-pieChart3d.rml0000644000175000017500000000466212032774153024341 0ustar srichtersrichter00000000000000 3-D Pie Chart Demo 10 20 30 40 50 60 10 20 30 40 50 60 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-alias.rml0000644000175000017500000000110612032774153023432 0ustar srichtersrichter00000000000000 <font face="Courier"><alias></font> Tag Demo Header 1 via Alias z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-rotate.rml0000644000175000017500000000062312032774153023642 0ustar srichtersrichter00000000000000 Hello World. Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-nextPage.rml0000644000175000017500000000101312032774153024111 0ustar srichtersrichter00000000000000 Page 1, Frame 1 Page 2, Frame 1 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-buttonField.rml0000644000175000017500000000076012032774153024625 0ustar srichtersrichter00000000000000 "buttonField" Tag Demo Button 1: z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-bookmark.rml0000664000175000017500000000237412064526206024157 0ustar srichtersrichter00000000000000 <font face="Courier"><bookmark></font> and <font face="Courier"><link></font> Tag Demo Go to page 1 now!

This is page 1.

Go to title. Go to page 1. Link to ReporLab Web Site. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-nextFrame.rml0000644000175000017500000000077512032774153024305 0ustar srichtersrichter00000000000000 Frame 1 Frame 2 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-drawRightString.rml0000644000175000017500000000050712032774153025467 0ustar srichtersrichter00000000000000 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-008-tables.rml0000644000175000017500000007351112032774153025764 0ustar srichtersrichter00000000000000 The email address should be a clickable mailto link built by creating a plugin within the cell. And Robin's job title should be on a separate line to his name. In the third row, we use the newer and easier table cell properties "href" and "destination". Name Email Robin Becker (chief propellerhead) ("mailto:robin@reportlab.com",) Internal link to back page Hyperlink to www.reportlab.com This should be a 5x5 table where some ranges span. Note that the grid and background commands still work on the "underlying" grid; if you grid the whole table, it will show through your 'spanned cells' This should span the first 3 cells in the top row. It's ordinary left aligned text but could be centred if you want. B C D This should span all five cells in the right column. We vertically centred the text to make it look sensible using a separate stylesheet command.
some more text A B C DB E A B C DB E A B C DB E A B C DB E
This should be a 5x5 table where some ranges span. The column widths have been set as 3cm,10%,10%,10%,30%. The percentage refers to unallocated width only. This should span the first 3 cells in the top row. It's ordinary left aligned text but could be centred if you want. B C D This should span all five cells in the right column. We vertically centred the text to make it look sensible using a separate stylesheet command.





some more text A B C DB E A B C DB E A B C DB E A B C DB E
This shows some pointers on doing financial tables. It demonstrates the decimal alignment and multiple lines. We also used a local <td color="red"> attribute for the negative cell; ideally one wants to make the data drive the colour, so that generator apps don't need to make para tags in every cell if they want red negatives. If we move to dynamic RML, then a number-and-cell-formatting function is possible, but static RML sees everything as text. Note that when the value does not contain the decimal character but there are non-digit characters at the end, it tries to align the rightmost digits with other rows. Corporate Assets Amount Fixed Assets 1,234,567.89 Legal Offense Fund 86,000,000 Company Vehicle 1,234.8901 Petty Cash 42 Intellectual Property Questionable Bank Overdraft (13,029) Goodwill (742,078,231.56) Flat Screen TV 27 inches Net Position Doomed. Really! Individual <td> tags that contain pure strings can override the following attributes: fontName, fontSize, fontColor, leading, leftPadding, rightPadding, topPadding, bottomPadding, background, align, vAlign, lineBelowThickness, lineBelowColor, lineBelowCap, lineBelowCount, lineBelowSpace, lineAboveThickness, lineAboveColor, lineAboveCap, lineAboveCount, lineAboveSpace, lineLeftThickness, lineLeftColor, lineLeftCap, lineLeftCount, lineLeftSpace, lineRightThickness, lineRightColor, lineRightCap, lineRightCount, lineRightSpace . fontName Courier fontName Helvetica fontSize 8 fontSize 14 fontColor red fontColor blue leading leading is 16 leading leading is 12 leftPadding 10 leftPadding 16 rightPadding 10 rightPadding 24 topPadding 10 topPadding 24 bottomPadding 10 bottomPadding 24 background pink background lightblue align left align center align right - vAlign - top - vAlign - middle - vAlign - bottom lineBelow right This table is using <xpre> tags around the contents of the right hand column. fontName Courier fontName Helvetica fontSize 8 fontSize 14 fontColor red fontColor blue leading leading is 16 leading leading is 12 leftPadding 10 leftPadding 16 rightPadding 10 rightPadding 24 topPadding 10 topPadding 24 bottomPadding 10 bottomPadding 24 background pink background lightblue align left align center align right - vAlign - top - vAlign - middle - vAlign - bottom

Bulk Data Support

Very often one wants to get quite a lot of text or numeric data into a table - for example from a database query or imported data file. Quoting all of this correctly as XML and wrapping in in td and tr tags is time and memory consumuing, unquoting and parsing it all back even more so. Therefore, instead of explicitly creating row and cell tags, you can now use a new bulkData tag. This lets you specify a delimiter for fields (default is comma) and for records (default is newline), and rml2pdf will break this up. If you want to avoid having to quote ampersands, wrap this in a CDATA escape sequence. Of course if you want per-cell formatting or to put arbitrary flowables in a cell, you must use the other tags. You can specify a tab with fieldDelim="\t", but we generally advise against using any whitespace character as a delimiter if you have a choice. You can also specify fine-grained "stripping" control; the default behaviour is to strip whitespace off the top and bottom of the overall data block, so blank lines are excluded, and off the ends of each row so line endings and indentation don't matter, but not off each cell. Note that the strings in the cells may contain spaces and these spaces will be respected in formatting. You are also advised to use a CDATA escape sequence around your data so that "&","<" and ">", characters don't need special handling.

Excel Bulk Data Support

The excelData tag is very similar to the bulk data support, but reads the bulk data from an Excel file instead of from delimited textual data. The range attribute is optional.

Sorry Ecel Bulk Support is not yet here

Colour cycles by rows and columns

It's sometimes nice to alternate colours by row (e.g. a pale color then white) to visually break up a long table. The style lets you specify cycles as well as single colours. Here we have created a style command which cycles through pale green and white, like old stacks of fanfold paper... Date Item Debit Credit 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Bottom row should be greem 110 - Try again by column, with three colors this time. Also ensure some row heights vary to check accuracy of drawing. Date Item Debit Credit 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients plus magnum of champagne 400 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - 28-09-2004 Expensive lunch with clients 100 - And now by column (although this may be used less...) Date Item Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Total Expenses Entertainment 100 100 100 100 100 100 100 100 100 100 100 100 1200 Expenses Entertainment 100 100 100 100 100 100 100 100 100 100 100 100 1200 Expenses Entertainment 100 100 100 100 100 100 100 100 100 100 100 100 1200 Expenses Entertainment 100 100 100 100 100 100 100 100 100 100 100 100 1200 Expenses Entertainment 100 100 100 100 100 100 100 100 100 100 100 100 1200

Splitting over pages - top and bottom rows

Sometimes a table splits over a page and you don't have a grid, so the bottom part (and top of the new page) have no line boxing them in. The splitfirst and splilast magic coordinates can be used to insert a line drawing routine into the style for this. I used an ugly thick purple line! DateItemDebitCredit 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100- 28-09-2004Expensive lunch with clients100 -
z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-translate.rml0000644000175000017500000000063612032774153024345 0ustar srichtersrichter00000000000000 Hello World. Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-8.rml0000644000175000017500000000246412032774153024560 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo This demo demonstrates setting styles via <td> attributes. 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-guide-example-11.rml0000644000175000017500000000564512032774153025341 0ustar srichtersrichter00000000000000 Example 11 - lines and alignment in tables (a=LEFT)(VA=TOP) (VA=TOP) (VA="TOP") (a=RIGHT)(VA=TOP) (a=LEFT) 1,1 Cell 2,1 (a=RIGHT) (a=LEFT) 1,2 (VA=MIDDLE) (a=RIGHT) (a=LEFT) 1,3 (VA=MIDDLE) (VA=MDL)(a=RIGHT) (a=LEFT) 1,4 2,4 (a=RIGHT) (a=LEFT) 1,5 2,5 (a=RIGHT) (a=LEFT) 1,6 2,6 (a=RIGHT) a=value for blockAlignment VA=value for blockValign MDLE=MIDDLE for VA in cells 3,2 and 3,3 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-place.rml0000644000175000017500000000235312032774153023432 0ustar srichtersrichter00000000000000 This is a string drawn using ``drawString``. 14cm 17cm 14cm 23cm 1cm 23cm <font face="Courier"><place></font> Tag Demo This is the first paragraph. This is a blockTable. This is a string drawn using ``drawString``. A paragraph within the place. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-transform.rml0000644000175000017500000000071312032774153024357 0ustar srichtersrichter00000000000000 Hello World. 1.0 0.3 -0.2 1.1 10.1 15.0 Hello World. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-032-images.rml0000644000175000017500000002143512032774153025752 0ustar srichtersrichter00000000000000 Image Functionality This tries out some new features of images. PDF files as images PDF files (or their pagecatcherised pals, .data files) can be used just like images. Below you should see a few little internet access icons; zoom in and you'll see they are vector. The original PDF is 1296x1296, so the rubbish at top right of the page is the unscaled one being drawn in the illustration below at (0,0). The preserveAspectRatio flag lets you place your image in a box and it will be centered intelligently, touching either the sides or the top depending on its own aspect ratio. The anchor attribute lets you determine which part of the image corresponds to the given x and y. You can choose an anchor from the standard compass points. nw43 43 47 47 43 47 47 43 n43 43 47 47 43 47 47 43 ne43 43 47 47 43 47 47 43 w43 43 47 47 43 47 47 43 c43 43 47 47 43 47 47 43 e43 43 47 47 43 47 47 43 sw43 43 47 47 43 47 47 43 s43 43 47 47 43 47 47 43 se43 43 47 47 43 47 47 43 First attempt to place an image which has an artbox. We have created a PDF with MediaBox (the usual size measure) approx 300x400 points, and a 100x100 circle in top right corner, and instructed RML to draw it in a box of half size. This seems to work. Now we try to place it with the art box. The blue should leak out horribly to left and below, but the red circle should end up elliptical within the box. (In real life, the art box defines the 'area of interest' and there would be no stuff outside it). This isn't working yet. Also, we get an extraneous boundary box from drawPdfImage appearing at top right - shifted the wrong way. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-034-cmyk.rml0000644000175000017500000000605712032774153025455 0ustar srichtersrichter00000000000000 This is a test of CMYK support. The four swatches above should be in the CMYK primaries, and the paragraph carefully declares the text color to be process black (k=1). This is cmyk white text on cmyk black rectangle Hello World This is rgb white text on rgb black rectangle Hello World This is rgb white text on cmyk black rectangle Hello World This is cmyk white text on rgb black rectangle Hello World z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-blockTable-5.rml0000644000175000017500000000334612032774153024555 0ustar srichtersrichter00000000000000 <font face="Courier"><blockTable></font> Tag Demo 00 01 02 03 04 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-registerTTFont.rml0000644000175000017500000000110012032774153025256 0ustar srichtersrichter00000000000000 Hello World! z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-keepInFrame.rml0000644000175000017500000000357412032774153024542 0ustar srichtersrichter00000000000000 <font face="Courier"><keepInFrame></font> Tag Demo This tag allows keeping a set of flowables in a confined space. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. <font face="Courier"><keepInFrame></font> Tag Demo This tag allows keeping a set of flowables in a confined space. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. This tag allows keeping a set of flowables in a confined space. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-illustration.rml0000644000175000017500000000171412032774153025077 0ustar srichtersrichter00000000000000 <font face="Courier"><illustration></font> Tag Demo Illustrations allow graphical elements to be located into a story. 0 0 0 3cm 0 3cm 5cm 3cm 5cm 3cm 5cm 0 5cm 0 0 0 Unfortunately, the height and width of the illustration are not honored. z3c.rml-2.0.0/src/z3c/rml/tests/input/rml-examples-017-outlines.rml0000644000175000017500000000240412032774153026345 0ustar srichtersrichter00000000000000 TOP Level Top Level Outline Level 1 Level 1 Outline Level 2 Level 2 Outline Level 1 Again Level 1 Again Ampersand (&) and Japanese (、゙、ソ、マ、エエヒセ、ホ・ロ・ニ・、1、トチェツ、キ、ニ、ッ、タ、オ、、) Test Check that the ampersand (&) appears correctly in the outline/bookmark list. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-drawAlignedString.rml0000644000175000017500000000302212032774153025750 0ustar srichtersrichter00000000000000 $ 13.63 $ 121.01 $ 7.13 $ -97.45 12,345.67 987.15 42 -1,234.56 (456.78) (456) 27 inches 13cm a = 2b + 3 a - 3 = 2b (a - 3)/2 = b z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-fixedSize.rml0000644000175000017500000000330512032774153024276 0ustar srichtersrichter00000000000000 <font face="Courier"><fixedSize></font> Tag Demo This tag allows keeping a set of flowables in a confined space. Actually I have no clue what this tag is supposed to dol I did not find any documentation on it. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. <font face="Courier"><fixedSize></font> Tag Demo This tag allows keeping a set of flowables in a confined space. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. Lot's of text goes here. z3c.rml-2.0.0/src/z3c/rml/tests/input/tag-circle.rml0000644000175000017500000000107212032774153023604 0ustar srichtersrichter00000000000000 z3c.rml-2.0.0/src/z3c/rml/tests/module.py0000664000175000017500000000613112064637043021562 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007-2012 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTLAR PURPOSE. # ############################################################################## """Testing all XML Locale functionality. $Id: module.py 128806 2012-12-20 16:34:40Z srichter $ """ import reportlab.platypus import reportlab.lib.styles import reportlab.graphics.widgets.markers from reportlab.graphics import renderPDF, shapes from reportlab.lib import colors from z3c.rml import interfaces, attr def myPreformatted(params): return reportlab.platypus.Preformatted(''' Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin. Hey, this is a long text from a plugin.''', reportlab.lib.styles.getSampleStyleSheet()['Normal']) class LinkURL(reportlab.platypus.flowables.Flowable): def __init__(self, link): self.link = link def wrap(self, *args): return (0, 0) def draw(self): self.canv.linkURL(self.link, None) def linkURL(params): params = eval(params) return ( reportlab.platypus.Paragraph( params[0], reportlab.lib.styles.getSampleStyleSheet()['Normal']), LinkURL(*params)) class IMarker(interfaces.IRMLDirectiveSignature): x = attr.Measurement() y = attr.Measurement() dx = attr.Measurement() dy = attr.Measurement() size = attr.Measurement() fillColor = attr.Color(acceptNone=True, required=False) strokeColor = attr.Color(acceptNone=True, required=False) strokeWidth = attr.Measurement(required=False) arrowBarDx = attr.Measurement(required=False) arrowHeight = attr.Measurement(required=False) def symbols(canvas, params): args = eval('dict(%s)' %params) name = args.pop('name') n = args.pop('n') for key, value in args.items(): field = IMarker[key].bind(canvas.manager) args[key] = field.fromUnicode(value) m = reportlab.graphics.widgets.markers.makeMarker(name, **args) drawing = shapes.Drawing() drawing.add(m) for idx in range(n): drawing.drawOn(canvas, idx*args['dx'], idx*args['dy']) z3c.rml-2.0.0/src/z3c/rml/tests/test_pagetemplate.py0000644000175000017500000000157412032774154024010 0ustar srichtersrichter00000000000000# -*- coding: utf-8 -*- ############################################################################### # # Copyright (c) 2005 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################### """Tests for the Book Documentation Module""" import doctest import unittest def test_suite(): return doctest.DocFileSuite( '../pagetemplate.txt', optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS) z3c.rml-2.0.0/src/z3c/rml/tests/output/0000775000175000017500000000000012065004362021253 5ustar srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c/rml/tests/output/README.txt0000644000175000017500000000006512032774152022755 0ustar srichtersrichter00000000000000This directory contains the PDF output of the tests. z3c.rml-2.0.0/src/z3c/rml/tests/__init__.py0000644000175000017500000000002212032774152022021 0ustar srichtersrichter00000000000000# Make a package. z3c.rml-2.0.0/src/z3c/rml/pagetemplate.py0000644000175000017500000000326112032774154021602 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Page Template Support $Id: pagetemplate.py 74160 2007-04-15 22:04:24Z srichter $ """ __docformat__ = "reStructuredText" import zope from z3c.rml import rml2pdf try: import zope.pagetemplate.pagetemplatefile except ImportError: # zope.pagetemplate package has not been installed import types zope.pagetemplate = types.ModuleType('barcode') zope.pagetemplate.pagetemplatefile = types.ModuleType('barcode') zope.pagetemplate.pagetemplatefile.PageTemplateFile = object class RMLPageTemplateFile(zope.pagetemplate.pagetemplatefile.PageTemplateFile): def pt_getContext(self, args=(), options=None, **ignore): rval = {'template': self, 'args': args, 'nothing': None, 'context': options } rval.update(self.pt_getEngine().getBaseNames()) return rval def __call__(self, *args, **kwargs): rml = super(RMLPageTemplateFile, self).__call__(*args, **kwargs) return rml2pdf.parseString( rml, filename=self.pt_source_file()).getvalue() z3c.rml-2.0.0/src/z3c/rml/occurence.py0000644000175000017500000000657312032774154021111 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Condition Implementation $Id: occurence.py 73959 2007-04-01 01:36:03Z srichter $ """ __docformat__ = "reStructuredText" import reportlab import sys import zope.interface import zope.schema from zope.schema import fieldproperty class ICondition(zope.interface.Interface): """Condition that is checked before a directive is available.""" __doc__ = zope.schema.TextLine( title=u'Description', description=u'The description of the condition.', required=True) def __call__(directive): """Check whether the condition is fulfilled for the given directive.""" class IOccurence(zope.interface.Interface): """Description of the occurence of a sub-directive.""" __doc__ = zope.schema.TextLine( title=u'Description', description=u'The description of the occurence.', required=True) tag = zope.schema.BytesLine( title=u'Tag', description=u'The tag of the sub-directive within the directive', required=True) signature = zope.schema.Field( title=u'Signature', description=u'The signature of the sub-directive.', required=True) condition = zope.schema.Field( title=u'Condition', description=u'The condition that the directive is available.', required=False) @zope.interface.implementer(ICondition) def laterThanReportlab21(directive): """The directive is only available in Reportlab 2.1 and higher.""" return [int(num) for num in reportlab.Version.split('.')] >= (2, 0) def containing(*occurences): frame = sys._getframe(1) f_locals = frame.f_locals f_globals = frame.f_globals if not (f_locals is not f_globals and f_locals.get('__module__') and f_locals.get('__module__') == f_globals.get('__name__') ): raise TypeError("contains not called from signature interface") f_locals['__interface_tagged_values__'] = {'directives': occurences} class Occurence(object): zope.interface.implements(IOccurence) tag = fieldproperty.FieldProperty(IOccurence['tag']) signature = fieldproperty.FieldProperty(IOccurence['signature']) condition = fieldproperty.FieldProperty(IOccurence['condition']) def __init__(self, tag, signature, condition=None): self.tag = tag self.signature = signature self.condition = condition class ZeroOrMore(Occurence): """Zero or More This sub-directive can occur zero or more times. """ class ZeroOrOne(Occurence): """Zero or one This sub-directive can occur zero or one time. """ class OneOrMore(Occurence): """One or More This sub-directive can occur one or more times. """ class One(Occurence): """One This sub-directive must occur exactly one time. """ z3c.rml-2.0.0/src/z3c/rml/paraparser.py0000664000175000017500000000620412064434040021264 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007-2008 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Paragraph-internal XML parser extensions. $Id: flowable.py 76814 2007-06-19 20:12:41Z srichter $ """ __docformat__ = "reStructuredText" import copy import inspect import reportlab.lib.fonts import reportlab.platypus.paraparser class PageNumberFragment(reportlab.platypus.paraparser.ParaFrag): """A fragment whose `text` is computed at access time.""" def __init__(self, attributes): reportlab.platypus.paraparser.ParaFrag.__init__(self) @property def text(self): # Guess 1: We're in a paragraph in a story. frame = inspect.currentframe(4) canvas = frame.f_locals.get('canvas', None) if canvas is None: # Guess 2: We're in a template canvas = frame.f_locals.get('canv', None) if canvas is None: raise Exception("Can't use in this location.") return str(canvas.getPageNumber()) class GetNameFragment(reportlab.platypus.paraparser.ParaFrag): """A fragment whose `text` is computed at access time.""" def __init__(self, attributes): reportlab.platypus.paraparser.ParaFrag.__init__(self) self.id = attributes['id'] @property def text(self): # Guess 1: We're in a paragraph in a story. frame = inspect.currentframe(4) canvas = frame.f_locals.get('canvas', None) if canvas is None: # Guess 2: We're in a template canvas = frame.f_locals.get('canv', None) if canvas is None: raise Exception("Can't use in this location.") return canvas.manager.names[self.id] class Z3CParagraphParser(reportlab.platypus.paraparser.ParaParser): """Extensions to paragraph-internal XML parsing.""" def startDynamic(self, attributes, klass): frag = klass(attributes) frag.__dict__.update(self._stack[-1].__dict__) frag.fontName = reportlab.lib.fonts.tt2ps( frag.fontName, frag.bold, frag.italic) self.fragList.append(frag) self._stack.append(frag) def endDynamic(self): self._pop() def start_pageNumber(self, attributes): self.startDynamic(attributes, PageNumberFragment) def end_pageNumber(self): self.endDynamic() def start_getName(self, attributes): self.startDynamic(attributes, GetNameFragment) def end_getName(self): self.endDynamic() # Monkey-patch reportlabs global parser instance. Wah. import reportlab.platypus.paragraph reportlab.platypus.paragraph._parser = Z3CParagraphParser() z3c.rml-2.0.0/src/z3c/rml/rml2pdf.py0000644000175000017500000000435312064467314020505 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """RML to PDF Converter $Id: rml2pdf.py 74160 2007-04-15 22:04:24Z srichter $ """ __docformat__ = "reStructuredText" import cStringIO import os import sys import zope.interface from lxml import etree from z3c.rml import document, interfaces zope.interface.moduleProvides(interfaces.IRML2PDF) def parseString(xml, removeEncodingLine=True, filename=None): if isinstance(xml, unicode) and removeEncodingLine: # RML is a unicode string, but oftentimes documents declare their # encoding using . Unfortuantely, I cannot tell lxml to # ignore that directive. Thus we remove it. if xml.startswith(' tag. stylesheet.Initialize.factories['color'] = ColorDefinition stylesheet.IInitialize.setTaggedValue( 'directives', stylesheet.IInitialize.getTaggedValue('directives') + (occurence.ZeroOrMore('color', IColorDefinition),) ) class IStartIndex(interfaces.IRMLDirectiveSignature): """Start a new index.""" name = attr.String( title=u'Name', description=u'The name of the index.', default='index', required=True) offset = attr.Integer( title=u'Offset', description=u'The counting offset.', min=0, required=False) format = attr.Choice( title=u'Format', description=(u'The format the index is going to use.'), choices=interfaces.LIST_FORMATS, required=False) class StartIndex(directive.RMLDirective): signature = IStartIndex def process(self): kwargs = dict(self.getAttributeValues()) name = kwargs['name'] manager = attr.getManager(self) manager.indexes[name] = tableofcontents.SimpleIndex(**kwargs) class ICropMarks(interfaces.IRMLDirectiveSignature): """Crop Marks specification""" name = attr.String( title=u'Name', description=u'The name of the index.', default='index', required=True) borderWidth = attr.Measurement( title=u'Border Width', description=u'The width of the crop mark border.', required=False) markColor = attr.Color( title=u'Mark Color', description=u'The color of the crop marks.', required=False) markWidth = attr.Measurement( title=u'Mark Width', description=u'The line width of the actual crop marks.', required=False) markLength = attr.Measurement( title=u'Mark Length', description=u'The length of the actual crop marks.', required=False) markLast = attr.Boolean( title=u'Mark Last', description=u'If set, marks are drawn after the content is rendered.', required=False) bleedWidth = attr.Measurement( title=u'Bleed Width', description=(u'The width of the page bleed.'), required=False) class CropMarksProperties(object): borderWidth = 36 markWidth = 0.5 markColor = colors.toColor('green') markLength = 18 markLast = True bleedWidth = 0 class CropMarks(directive.RMLDirective): signature = ICropMarks def process(self): cmp = CropMarksProperties() for name, value in self.getAttributeValues(): setattr(cmp, name, value) self.parent.parent.cropMarks = cmp class ILogConfig(interfaces.IRMLDirectiveSignature): """Configure the render logger.""" level = attr.Choice( title=u'Level', description=u'The default log level.', choices=interfaces.LOG_LEVELS, doLower=False, required=False) format = attr.String( title=u'Format', description=u'The format of the log messages.', required=False) filename = attr.File( title=u'File Name', description=u'The path to the file that is being logged.', doNotOpen=True, required=True) filemode = attr.Choice( title=u'File Mode', description=u'The mode to open the file in.', choices={'WRITE': 'w', 'APPEND': 'a'}, default='a', required=False) datefmt = attr.String( title=u'Date Format', description=u'The format of the log message date.', required=False) class LogConfig(directive.RMLDirective): signature = ILogConfig def process(self): args = dict(self.getAttributeValues()) logger = logging.Logger(LOGGER_NAME) handler = logging.FileHandler(args['filename'], args['filemode']) formatter = logging.Formatter( args.get('format'), args.get('datefmt')) handler.setFormatter(formatter) logger.addHandler(handler) if 'level' in args: logger.setLevel(args['level']) self.parent.parent.logger = logger class IDocInit(interfaces.IRMLDirectiveSignature): occurence.containing( occurence.ZeroOrMore('color', IColorDefinition), occurence.ZeroOrMore('name', special.IName), occurence.ZeroOrMore('registerType1Face', IRegisterType1Face), occurence.ZeroOrMore('registerFont', IRegisterFont), occurence.ZeroOrMore('registerCidFont', IRegisterCidFont), occurence.ZeroOrMore('registerTTFont', IRegisterTTFont), occurence.ZeroOrMore('registerFontFamily', IRegisterFontFamily), occurence.ZeroOrMore('addMapping', IAddMapping), occurence.ZeroOrMore('logConfig', ILogConfig), occurence.ZeroOrMore('cropMarks', ICropMarks), occurence.ZeroOrMore('startIndex', IStartIndex), ) pageMode = attr.Choice( title=u'Page Mode', description=(u'The page mode in which the document is opened in ' u'the viewer.'), choices=('UseNone', 'UseOutlines', 'UseThumbs', 'FullScreen'), required=False) pageLayout = attr.Choice( title=u'Page Layout', description=(u'The layout in which the pages are displayed in ' u'the viewer.'), choices=('SinglePage', 'OneColumn', 'TwoColumnLeft', 'TwoColumnRight'), required=False) useCropMarks = attr.Boolean( title=u'Use Crop Marks', description=u'A flag when set shows crop marks on the page.', required=False) class DocInit(directive.RMLDirective): signature = IDocInit factories = { 'name': special.Name, 'color': ColorDefinition, 'registerType1Face': RegisterType1Face, 'registerFont': RegisterFont, 'registerTTFont': RegisterTTFont, 'registerCidFont': RegisterCidFont, 'addMapping': AddMapping, 'logConfig': LogConfig, 'cropMarks': CropMarks, 'startIndex': StartIndex, } def process(self): kwargs = dict(self.getAttributeValues()) self.parent.cropMarks = kwargs.get('useCropMarks', False) self.parent.pageMode = kwargs.get('pageMode') self.parent.pageLayout = kwargs.get('pageLayout') super(DocInit, self).process() class IDocument(interfaces.IRMLDirectiveSignature): occurence.containing( occurence.ZeroOrOne('docinit', IDocInit), occurence.ZeroOrOne('stylesheet', stylesheet.IStylesheet), occurence.ZeroOrOne('template', template.ITemplate), occurence.ZeroOrOne('story', template.IStory), occurence.ZeroOrOne('pageInfo', canvas.IPageInfo), occurence.ZeroOrMore('pageDrawing', canvas.IPageDrawing), ) filename = attr.String( title=u'File Name', description=(u'The default name of the output file, if no output ' u'file was provided.'), required=True) debug = attr.Boolean( title=u'Debug', description=u'A flag to activate the debug output.', required=False) compression = attr.BooleanWithDefault( title=u'Compression', description=(u'A flag determining whether page compression should ' u'be used.'), required=False) invariant = attr.BooleanWithDefault( title=u'Invariant', description=(u'A flag that determines whether the produced PDF ' u'should be invariant with respect to the date and ' u'the exact contents.'), required=False) class Document(directive.RMLDirective): signature = IDocument zope.interface.implements(interfaces.IManager, interfaces.IPostProcessorManager, interfaces.ICanvasManager) factories = { 'docinit': DocInit, 'stylesheet': stylesheet.Stylesheet, 'template': template.Template, 'story': template.Story, 'pageInfo': canvas.PageInfo, 'pageDrawing': canvas.PageDrawing, } def __init__(self, element): super(Document, self).__init__(element, None) self.names = {} self.styles = {} self.colors = {} self.indexes = {} self.postProcessors = [] self.filename = '' self.cropMarks = False self.pageLayout = None self.pageMode = None self.logger = None def _indexAdd(self, canvas, name, label): self.indexes[name](canvas, name, label) def _beforeDocument(self): self._initCanvas(self.doc.canv) self.canvas = self.doc.canv def _initCanvas(self, canvas): canvas._indexAdd = self._indexAdd canvas.manager = self if self.pageLayout: canvas._doc._catalog.setPageLayout(self.pageLayout) if self.pageMode: canvas._doc._catalog.setPageMode(self.pageMode) def process(self, outputFile=None): """Process document""" # Reset all reportlab global variables. This is very important for # ReportLab not to fail. reportlab.rl_config._reset() # Add our colors mapping to the default ones. colors.toColor.setExtraColorsNameSpace(self.colors) if outputFile is None: # TODO: This is relative to the input file *not* the CWD!!! outputFile = open(self.element.get('filename'), 'wb') # Create a temporary output file, so that post-processors can # massage the output self.outputFile = tempOutput = cStringIO.StringIO() # Process common sub-directives self.processSubDirectives(select=('docinit', 'stylesheet')) # Handle Page Drawing Documents if self.element.find('pageDrawing') is not None: kwargs = dict(self.getAttributeValues( select=('compression', 'debug'), attrMapping={'compression': 'pageCompression', 'debug': 'verbosity'} )) kwargs['cropMarks'] = self.cropMarks self.canvas = reportlab.pdfgen.canvas.Canvas(tempOutput, **kwargs) self._initCanvas(self.canvas) self.processSubDirectives(select=('pageInfo', 'pageDrawing')) self.canvas.save() # Handle Flowable-based documents. elif self.element.find('template') is not None: self.processSubDirectives(select=('template', 'story')) self.doc.beforeDocument = self._beforeDocument self.doc.multiBuild(self.flowables) # Process all post processors for name, processor in self.postProcessors: tempOutput.seek(0) tempOutput = processor.process(tempOutput) # Save the result into our real output file tempOutput.seek(0) outputFile.write(tempOutput.getvalue()) # Cleanup. colors.toColor.setExtraColorsNameSpace({}) z3c.rml-2.0.0/src/z3c/rml/error.py0000644000175000017500000000242012032774152020255 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """RML-specific XML tools $Id: error.py 73148 2007-03-12 15:31:54Z srichter $ """ __docformat__ = "reStructuredText" import sys ERROR_FILE = sys.stderr class ParseException(Exception): pass class RequiredAttributeMissing(ParseException): def __init__(self, element, name): self.element = element self.name = name def __str__(self): return "%r attribute of %r element is required but missing." % ( self.name, self.element.tag) def reportUnsupportedAttribute(element, name): ERROR_FILE.write( "'%s' attribute of '%s' element is not yet supported." % ( name, element.tag) ) z3c.rml-2.0.0/src/z3c/rml/attr.py0000664000175000017500000004217212064772761020121 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """RML Attribute Implementation $Id: attr.py 128842 2012-12-21 05:38:51Z srichter $ """ __docformat__ = "reStructuredText" import cStringIO import logging import os import re import reportlab.graphics.widgets.markers import reportlab.lib.colors import reportlab.lib.pagesizes import reportlab.lib.styles import reportlab.lib.units import reportlab.lib.utils import urllib import zope.interface import zope.schema from lxml import etree from z3c.rml import interfaces MISSING = object() logger = logging.getLogger("z3c.rml") def getFileInfo(directive): root = directive while root.parent: root = root.parent return '(file %s, line %i)' % ( root.filename, directive.element.sourceline) def getManager(context, interface=None): if interface is None: # Avoid circular imports from z3c.rml import interfaces interface = interfaces.IManager # Walk up the path until the manager is found while (not interface.providedBy(context) and context is not None): context = context.parent # If no manager was found, raise an error if context is None: raise ValueError('The manager could not be found.') return context def deprecated(oldName, attr, reason): zope.interface.directlyProvides(attr, interfaces.IDeprecated) attr.deprecatedName = oldName attr.deprecatedReason = reason return attr class RMLAttribute(zope.schema.Field): """An attribute of the RML directive.""" missing_value = MISSING default = MISSING def fromUnicode(self, ustr): """See zope.schema.interfaces.IField""" if self.context is None: raise ValueError('Attribute not bound to a context.') return super(RMLAttribute, self).fromUnicode(unicode(ustr)) def get(self): """See zope.schema.interfaces.IField""" # If the attribute has a deprecated partner and the deprecated name # has been specified, use it. if (interfaces.IDeprecated.providedBy(self) and self.deprecatedName in self.context.element.attrib): name = self.deprecatedName logger.warn( u'Deprecated attribute "%s": %s %s' % ( name, self.deprecatedReason, getFileInfo(self.context))) else: name = self.__name__ # Extract the value. value = self.context.element.get(name, self.missing_value) # Get the correct default value. if value is self.missing_value: if self.default is not None: return self.default return self.missing_value return self.fromUnicode(value) class BaseChoice(RMLAttribute): choices = {} doLower = True def fromUnicode(self, value): if self.doLower: value = value.lower() if value in self.choices: return self.choices[value] raise ValueError( '%r not a valid value for attribute "%s". %s' % ( value, self.__name__, getFileInfo(self.context))) class Combination(RMLAttribute): """A combination of several other attribute types.""" def __init__(self, value_types=(), *args, **kw): super(Combination, self).__init__(*args, **kw) self.value_types = value_types def fromUnicode(self, value): for value_type in self.value_types: bound = value_type.bind(self) try: return bound.fromUnicode(value) except ValueError: pass raise ValueError( '"%s" is not a valid value. %s' %( value, getFileInfo(self.context))) class String(RMLAttribute, zope.schema.Bytes): """A simple Bytes string.""" class Text(RMLAttribute, zope.schema.Text): """A simple unicode string.""" class Integer(RMLAttribute, zope.schema.Int): """An integer. A minimum and maximum value can be specified.""" # By making min and max simple attributes, we avoid some validation # problems. min = None max = None class Float(RMLAttribute, zope.schema.Float): """An flaoting point. A minimum and maximum value can be specified.""" # By making min and max simple attributes, we avoid some validation # problems. min = None max = None class StringOrInt(RMLAttribute): """A (bytes) string or an integer.""" def fromUnicode(self, value): try: return int(value) except ValueError: return str(value) class Sequence(RMLAttribute, zope.schema._field.AbstractCollection): """A list of values of a specified type.""" splitre = re.compile('[ \t\n,;]*') def __init__(self, splitre=None, *args, **kw): super(Sequence, self).__init__(*args, **kw) if splitre is not None: self.splitre = splitre def fromUnicode(self, ustr): if ustr.startswith('(') and ustr.endswith(')'): ustr = ustr[1:-1] ustr = ustr.strip() raw_values = self.splitre.split(ustr) result = [self.value_type.bind(self.context).fromUnicode(raw.strip()) for raw in raw_values] if ((self.min_length is not None and len(result) < self.min_length) and (self.max_length is not None and len(result) > self.max_length)): raise ValueError( 'Length of sequence must be at least %s and at most %i. %s' % ( self.min_length, self.max_length, getFileInfo(self.context))) return result class IntegerSequence(Sequence): """A sequence of integers.""" def fromUnicode(self, ustr): ustr = ustr.strip() pieces = self.splitre.split(ustr) numbers = set([]) for piece in pieces: # Ignore empty pieces. if not piece: continue # The piece is a range. if '-' in piece: start, end = piece.split('-') # Make range lower and upper bound inclusive. numbers.update(range(int(start), int(end)+1)) continue # The piece is just a number numbers.add(int(piece)) return list(numbers) class Choice(BaseChoice): """A choice of several values. The values are always case-insensitive.""" def __init__(self, choices=None, doLower=True, *args, **kw): super(Choice, self).__init__(*args, **kw) if isinstance(choices, (tuple, list)): choices = dict( [(val.lower() if doLower else val, val) for val in choices]) else: choices = dict( [(key.lower() if doLower else key, val) for key, val in choices.items()]) self.choices = choices self.doLower = doLower class Boolean(BaseChoice): '''A boolean value. For true the values "true", "yes", and "1" are allowed. For false, the values "false", "no", "1" are allowed. ''' choices = {'true': True, 'false': False, 'yes': True, 'no': False, '1': True, '0': False, } class BooleanWithDefault(Boolean): '''This is a boolean field that can also receive the value "default".''' choices = Boolean.choices.copy() choices.update({'default': None}) class Measurement(RMLAttribute): '''This field represents a length value. The units "in" (inch), "cm", "mm", and "pt" are allowed. If no units are specified, the value is given in points/pixels. ''' def __init__(self, allowPercentage=False, allowStar=False, *args, **kw): super(Measurement, self).__init__(*args, **kw) self.allowPercentage = allowPercentage self.allowStar = allowStar units = [ (re.compile('^(-?[0-9\.]+)\s*in$'), reportlab.lib.units.inch), (re.compile('^(-?[0-9\.]+)\s*cm$'), reportlab.lib.units.cm), (re.compile('^(-?[0-9\.]+)\s*mm$'), reportlab.lib.units.mm), (re.compile('^(-?[0-9\.]+)\s*pt$'), 1), (re.compile('^(-?[0-9\.]+)\s*$'), 1) ] allowPercentage = False allowStar = False def fromUnicode(self, value): if value == 'None': return None if value == '*' and self.allowStar: return value if value.endswith('%') and self.allowPercentage: return value for unit in self.units: res = unit[0].search(value, 0) if res: return unit[1]*float(res.group(1)) raise ValueError( 'The value %r is not a valid measurement. %s' % ( value, getFileInfo(self.context))) class File(Text): """This field will return a file object. The value itself can eith be be a relative or absolute path. Additionally the following syntax is supported: [path.to.python.mpackage]/path/to/file """ open = staticmethod(urllib.urlopen) packageExtract = re.compile('^\[([0-9A-z_.]*)\]/(.*)$') doNotOpen = False def __init__(self, doNotOpen=False, *args, **kw): super(File, self).__init__(*args, **kw) self.doNotOpen = doNotOpen def fromUnicode(self, value): # Check whether the value is of the form: # []/rel/path/image.gif" if value.startswith('['): result = self.packageExtract.match(value) if result is None: raise ValueError( 'The package-path-pair you specified was incorrect. %s' %( getFileInfo(self.context))) modulepath, path = result.groups() module = __import__(modulepath, {}, {}, (modulepath)) value = os.path.join(os.path.dirname(module.__file__), path) # If there is a drive name in the path, then we want a local file to # be opened. This is only interesting for Windows of course. if os.path.splitdrive(value)[0]: value = 'file:///' + value # If the file is not to be opened, simply return the path. if self.doNotOpen: return value # Open/Download the file fileObj = self.open(value) sio = cStringIO.StringIO(fileObj.read()) fileObj.close() sio.seek(0) return sio class Image(File): """Similar to the file File attribute, except that an image is internally expected.""" def __init__(self, onlyOpen=False, *args, **kw): super(Image, self).__init__(*args, **kw) self.onlyOpen = onlyOpen def fromUnicode(self, value): fileObj = super(Image, self).fromUnicode(value) if self.onlyOpen: return fileObj return reportlab.lib.utils.ImageReader(fileObj) class Color(RMLAttribute): """Requires the input of a color. There are several supported formats. Three values in a row are interpreted as RGB value ranging from 0-255. A string is interpreted as a name to a pre-defined color. The 'CMYK()' wrapper around four values represents a CMYK color specification. """ def __init__(self, acceptNone=False, *args, **kw): super(Color, self).__init__(*args, **kw) self.acceptNone = acceptNone def fromUnicode(self, value): if self.acceptNone and value.lower() == 'none': return None manager = getManager(self.context) if value.startswith('rml:'): value = manager.names[value[4:]] if value in manager.colors: return manager.colors[value] try: return reportlab.lib.colors.toColor(value) # Bare except, since code raises string exception: Invalid color value except: raise ValueError( 'The color specification "%s" is not valid. %s' % ( value, getFileInfo(self.context))) def _getStyle(context, value): manager = getManager(context) for styles in (manager.styles, reportlab.lib.styles.getSampleStyleSheet().byName): if value in styles: return styles[value] elif 'style.' + value in styles: return styles['style.' + value] elif value.startswith('style.') and value[6:] in styles: return styles[value[6:]] raise ValueError('Style %r could not be found. %s' % ( value, getFileInfo(context))) class Style(String): """Requires a valid style to be entered. Whether the style is a paragraph, table or box style is irrelevant, except that it has to fit the tag. """ default = reportlab.lib.styles.getSampleStyleSheet().byName['Normal'] def fromUnicode(self, value): return _getStyle(self.context, value) class Padding(Sequence): """This attribute is specific for padding and will produce the proper length of the padding sequence.""" def __init__(self, *args, **kw): kw.update(dict(value_type=Integer(), min_length=1, max_length=4)) super(Padding, self).__init__(*args, **kw) def fromUnicode(self, value): seq = super(Padding, self).fromUnicode(value) # pdfgen does not like a single paddign value. if len(seq) == 1: seq.append(seq[0]) return seq class Symbol(Text): """This attribute should contain the text representation of a symbol to be used.""" def fromUnicode(self, value): return reportlab.graphics.widgets.markers.makeMarker(value) class PageSize(RMLAttribute): """A simple measurement pair that specifies the page size. Optionally you can also specify a the name of a page size, such as A4, letter, or legal. """ sizePair = Sequence(value_type=Measurement()) words = Sequence(value_type=String()) def fromUnicode(self, value): # First try to get a pair try: return self.sizePair.bind(self.context).fromUnicode(value) except ValueError: pass # Now we try to lookup a name. The following type of combinations must # work: "Letter" "LETTER" "A4 landscape" "letter portrait" words = self.words.bind(self.context).fromUnicode(value) words = [word.lower() for word in words] # First look for the orientation orienter = None for orientation in ('landscape', 'portrait'): if orientation in words: orienter = getattr(reportlab.lib.pagesizes, orientation) words.remove(orientation) # We must have exactely one value left that matches a paper size pagesize = getattr(reportlab.lib.pagesizes, words[0].upper()) # Now do the final touches if orienter: pagesize = orienter(pagesize) return pagesize class TextNode(RMLAttribute): """Return the text content of an element.""" def get(self): if self.context.element.text is None: return u'' return unicode(self.context.element.text).strip() class FirstLevelTextNode(TextNode): """Gets all the text content of an element without traversing into any child-elements.""" def get(self): text = self.context.element.text or u'' for child in self.context.element.getchildren(): text += child.tail or u'' return text.strip() class TextNodeSequence(Sequence, TextNode): """A sequence of values retrieved from the element's content.""" def get(self): return self.fromUnicode(self.context.element.text) class TextNodeGrid(TextNodeSequence): """A grid/matrix of values retrieved from the element's content. The number of columns is specified for every case, but the number of rows is dynamic. """ def __init__(self, columns=None, *args, **kw): super(TextNodeGrid, self).__init__(*args, **kw) self.columns = columns def fromUnicode(self, ustr): result = super(TextNodeGrid, self).fromUnicode(ustr) if len(result) % self.columns != 0: raise ValueError( 'Number of elements must be divisible by %i. %s' %( self.columns, getFileInfo(self.context))) return [result[i*self.columns:(i+1)*self.columns] for i in range(len(result)/self.columns)] class RawXMLContent(RMLAttribute): """Retrieve the raw content of an element. Only some special element substitution will be made. """ def __init__(self, *args, **kw): super(RawXMLContent, self).__init__(*args, **kw) def get(self): # ReportLab's paragraph parser does not like attributes from other # namespaces; sigh. So we have to improvize. text = etree.tounicode(self.context.element) text = text[text.find('>')+1:text.rfind('<')] return text class XMLContent(RawXMLContent): """Same as 'RawXMLContent', except that the whitespace is normalized.""" def get(self): text = super(XMLContent, self).get() return text.strip().replace('\t', ' ') z3c.rml-2.0.0/src/z3c/rml/README.txt0000664000175000017500000000157612063644201020260 0ustar srichtersrichter00000000000000========================= Reportlab Markup Language ========================= This package is a free implementation of the RML markup language developed by Reportlab. Unfortunately, full compliance cannot be immediately verified, since the RML User Guide is ambiguous, incomplete and even incorrect. This package can also not support the commercial extensions to Reportlab. In the course of implementing the specification, I made already some improvements for various tags and added others fully. I also tried hard to test all features. If you have any new sample RML files that you would like to share, please check them in. Why reimplement RML? The other free implementation of RML tinyRML is unfortunately pretty messy code and hard to debug. It makes it also hard to add additional tags. However, much thanks goes to their authors, since they have solved some of the very tricky issues. z3c.rml-2.0.0/src/z3c/rml/doclogic.py0000664000175000017500000001215012064514144020710 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2012 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """``doc*`` directives. """ import reportlab.platypus from z3c.rml import attr, directive, flowable, interfaces, occurence class IDocAssign(interfaces.IRMLDirectiveSignature): """Assign a value to the namesapce.""" var = attr.String( title=u'Variable Name', description=u'The name under which the value is stored.', required=True) expr = attr.String( title=u'Expression', description=u'The expression that creates the value when evaluated.', required=True) class DocAssign(flowable.Flowable): signature = IDocAssign klass = reportlab.platypus.flowables.DocAssign class IDocExec(interfaces.IRMLDirectiveSignature): """Execute a statement.""" stmt = attr.String( title=u'Statement', description=u'The statement to be executed.', required=True) class DocExec(flowable.Flowable): signature = IDocExec klass = reportlab.platypus.flowables.DocExec class IDocPara(interfaces.IRMLDirectiveSignature): """Create a paragraph with the value returned from the expression.""" expr = attr.String( title=u'Expression', description=u'The expression to be executed.', required=True) format = attr.String( title=u'Format', description=u'The format used to render the expression value.', required=False) style = attr.Style( title=u'Style', description=u'The style of the paragraph.', required=False) escape = attr.Boolean( title=u'Escape Text', description=u'When set (default) the expression value is escaped.', required=False) class DocPara(flowable.Flowable): signature = IDocPara klass = reportlab.platypus.flowables.DocPara class IDocAssert(interfaces.IRMLDirectiveSignature): """Assert a certain condition.""" cond = attr.String( title=u'Condition', description=u'The condition to be asserted.', required=True) format = attr.String( title=u'Format', description=u'The text displayed if assertion fails.', required=False) class DocAssert(flowable.Flowable): signature = IDocAssert klass = reportlab.platypus.flowables.DocAssert class IDocElse(interfaces.IRMLDirectiveSignature): """Starts 'else' block.""" class DocElse(flowable.Flowable): signature = IDocElse def process(self): if not isinstance(self.parent, DocIf): raise ValueError(" can only be placed inside a ") self.parent.flow = self.parent.elseFlow class IDocIf(flowable.IFlow): """Display story flow based on the value of the condition.""" cond = attr.String( title=u'Condition', description=u'The condition to be tested.', required=True) class DocIf(flowable.Flow): signature = IDocAssert klass = reportlab.platypus.flowables.DocIf def __init__(self, *args, **kw): super(flowable.Flow, self).__init__(*args, **kw) self.thenFlow = self.flow = [] self.elseFlow = [] def process(self): args = dict(self.getAttributeValues()) self.processSubDirectives() dif = self.klass( thenBlock = self.thenFlow, elseBlock = self.elseFlow, **args) self.parent.flow.append(dif) class IDocWhile(flowable.IFlow): """Repeat the included directives as long as the condition is true.""" cond = attr.String( title=u'Condition', description=u'The condition to be tested.', required=True) class DocWhile(flowable.Flow): signature = IDocAssert klass = reportlab.platypus.flowables.DocWhile def process(self): args = dict(self.getAttributeValues()) self.processSubDirectives() dwhile = self.klass(whileBlock = self.flow, **args) self.parent.flow.append(dwhile) flowable.Flow.factories['docAssign'] = DocAssign flowable.Flow.factories['docExec'] = DocExec flowable.Flow.factories['docPara'] = DocPara flowable.Flow.factories['docAssert'] = DocAssert flowable.Flow.factories['docIf'] = DocIf flowable.Flow.factories['docElse'] = DocElse flowable.Flow.factories['docWhile'] = DocWhile flowable.IFlow.setTaggedValue( 'directives', flowable.IFlow.getTaggedValue('directives') + (occurence.ZeroOrMore('docAssign', IDocAssign), occurence.ZeroOrMore('docExec', IDocExec), occurence.ZeroOrMore('docPara', IDocPara), occurence.ZeroOrMore('docIf', IDocIf), occurence.ZeroOrMore('docElse', IDocElse), occurence.ZeroOrMore('docWhile', IDocWhile), ) ) z3c.rml-2.0.0/src/z3c/rml/template.py0000664000175000017500000002023512064750571020751 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Style Related Element Processing $Id: template.py 128839 2012-12-21 03:03:18Z srichter $ """ __docformat__ = "reStructuredText" import zope.interface from reportlab import platypus from z3c.rml import attr, directive, interfaces, occurence from z3c.rml import canvas, flowable, stylesheet class IStory(flowable.IFlow): """The story of the PDF file.""" occurence.containing( *flowable.IFlow.getTaggedValue('directives')) firstPageTemplate = attr.Text( title=u'First Page Template', description=u'The first page template to be used.', default=None, required=False) class Story(flowable.Flow): signature = IStory def process(self): self.parent.flowables = super(Story, self).process() self.parent.doc._firstPageTemplateIndex = self.getFirstPTIndex() def getFirstPTIndex(self): args = dict(self.getAttributeValues(select=('firstPageTemplate',))) fpt = args.pop('firstPageTemplate', None) if fpt is None: return 0 for idx, pageTemplate in enumerate(self.parent.doc.pageTemplates): if pageTemplate.id == fpt: return idx raise ValueError('%r is not a correct page template id.' %fpt) class IFrame(interfaces.IRMLDirectiveSignature): """A frame on a page.""" x1 = attr.Measurement( title=u'X-Position', description=u'The X-Position of the lower-left corner of the frame.', allowPercentage=True, required=True) y1 = attr.Measurement( title=u'Y-Position', description=u'The Y-Position of the lower-left corner of the frame.', allowPercentage=True, required=True) width = attr.Measurement( title=u'Width', description=u'The width of the frame.', allowPercentage=True, required=True) height = attr.Measurement( title=u'Height', description=u'The height of the frame.', allowPercentage=True, required=True) id = attr.Text( title=u'Id', description=u'The id of the frame.', required=False) leftPadding = attr.Measurement( title=u'Left Padding', description=u'The left padding of the frame.', default=0, required=False) rightPadding = attr.Measurement( title=u'Right Padding', description=u'The right padding of the frame.', default=0, required=False) topPadding = attr.Measurement( title=u'Top Padding', description=u'The top padding of the frame.', default=0, required=False) bottomPadding = attr.Measurement( title=u'Bottom Padding', description=u'The bottom padding of the frame.', default=0, required=False) showBoundary = attr.Boolean( title=u'Show Boundary', description=u'A flag to show the boundary of the frame.', required=False) class Frame(directive.RMLDirective): signature = IFrame def process(self): # get the page size size = self.parent.pt.pagesize if size is None: size = self.parent.parent.parent.doc.pagesize # Get the arguments args = dict(self.getAttributeValues()) # Deal with percentages for name, dir in (('x1', 0), ('y1', 1), ('width', 0), ('height', 1)): if isinstance(args[name], basestring) and args[name].endswith('%'): args[name] = float(args[name][:-1])/100*size[dir] frame = platypus.Frame(**args) self.parent.frames.append(frame) class IPageGraphics(canvas.IDrawing): """Define the page graphics for the page template.""" class PageGraphics(directive.RMLDirective): zope.interface.implements(interfaces.ICanvasManager) signature = IPageGraphics def process(self): def drawOnCanvas(canv, doc): canv.saveState() self.canvas = canv drawing = canvas.Drawing(self.element, self) drawing.process() canv.restoreState() self.parent.pt.onPage = drawOnCanvas class IPageTemplate(interfaces.IRMLDirectiveSignature): """Define a page template.""" occurence.containing( occurence.OneOrMore('frame', IFrame), occurence.ZeroOrOne('pageGraphics', IPageGraphics), ) id = attr.Text( title=u'Id', description=u'The id of the template.', required=True) pagesize = attr.PageSize( title=u'Page Size', description=u'The Page Size.', required=False) autoNextTemplate = attr.String( title=u'Auto Next Page Template', description=u'The page template to use automatically for the next page.', required=False) class PageTemplate(directive.RMLDirective): signature = IPageTemplate attrMapping = {'autoNextTemplate': 'autoNextPageTemplate'} factories = { 'frame': Frame, 'pageGraphics': PageGraphics, } def process(self): args = dict(self.getAttributeValues(attrMapping=self.attrMapping)) pagesize = args.pop('pagesize', None) self.frames = [] self.pt = platypus.PageTemplate(**args) self.processSubDirectives() self.pt.frames = self.frames if pagesize: self.pt.pagesize = pagesize self.parent.parent.doc.addPageTemplates(self.pt) class ITemplate(interfaces.IRMLDirectiveSignature): """Define a page template.""" occurence.containing( occurence.OneOrMore('pageTemplate', IPageTemplate), ) pagesize = attr.PageSize( title=u'Page Size', description=u'The Page Size.', required=False) rotation = attr.Integer( title=u'Rotation', description=u'The rotation of the page in multiples of 90 degrees.', required=False) leftMargin = attr.Measurement( title=u'Left Margin', description=u'The left margin of the template.', default=0, required=False) rightMargin = attr.Measurement( title=u'Right Margin', description=u'The right margin of the template.', default=0, required=False) topMargin = attr.Measurement( title=u'Top Margin', description=u'The top margin of the template.', default=0, required=False) bottomMargin = attr.Measurement( title=u'Bottom Margin', description=u'The bottom margin of the template.', default=0, required=False) showBoundary = attr.Boolean( title=u'Show Boundary', description=u'A flag to show the boundary of the template.', required=False) allowSplitting = attr.Boolean( title=u'Allow Splitting', description=u'A flag to allow splitting over multiple templates.', required=False) title = attr.Text( title=u'Title', description=u'The title of the PDF document.', required=False) author = attr.Text( title=u'Author', description=u'The author of the PDF document.', required=False) class Template(directive.RMLDirective): signature = ITemplate factories = { 'pageTemplate': PageTemplate, } def process(self): args = self.getAttributeValues() args += self.parent.getAttributeValues( select=('debug', 'compression', 'invariant'), attrMapping={'debug': '_debug', 'compression': 'pageCompression'}) args += (('cropMarks', self.parent.cropMarks),) self.parent.doc = platypus.BaseDocTemplate( self.parent.outputFile, **dict(args)) self.processSubDirectives() z3c.rml-2.0.0/src/z3c/rml/reference.pt0000664000175000017500000002135712064772440021074 0ustar srichtersrichter00000000000000 Introduction RML is a XML dialect for generating PDF files. Like HTML produces a page within the browser, RML produces a PDF file. The RML processor uses the ReportLab library to convert the RML text into a full PDF template. The original version of RML was developed by ReportLab, Inc. as a commercial extension to the free ReportLab library. This original version of RML is still available and supported by ReportLab, Inc. This version of RML, z3c.RML, is a free implementation of the XML dialect based on the available documentation. While it tries to keep some level of compatibility with the original version of RML, it is intended to provde a as clean and feature-rich API as possible. The contents of this document is auto-generated from the code itself and should thus be very accurate and complete. Attribute Types Attribute Types This section list the types of attributes used for the attributes within the RML elements. Attribute Name Attribute Name Attribute purpose and data description. Directives Directives Element Name Element Name Deprecated: Reason What is this element doing? Attributes para (required) - Type Deprecated: Reason Title: Description Content Type (required) Title: Description Sub-Directives para (ZeroOrMore) (Deprecated) Examples Example Code (Extracted from file File, line ) [PDF] z3c.rml-2.0.0/src/z3c/rml/pdfinclude.py0000664000175000017500000000717312064771612021260 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2012 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """``pdfInclude`` Directive. """ __docformat__ = "reStructuredText" try: import pyPdf except ImportError: pyPdf = None from reportlab.platypus import flowables from z3c.rml import attr, flowable, interfaces, occurence, page class IncludePdfPagesFlowable(flowables.Flowable): def __init__(self, pdf_file, pages, mergeprocessor): flowables.Flowable.__init__(self) self.pdf_file = pdf_file self.proc = mergeprocessor pdf = pyPdf.PdfFileReader(pdf_file) self.num_pages = pdf.getNumPages() self.pages = pages if pages else range(1, self.num_pages+1) self.width = 10<<32 self.height = 10<<32 def draw(): return NotImplementedError('PDFPages shall be drawn not me') def split(self, availWidth, availheight): result = [] for i in self.pages: result.append(flowables.PageBreak()) result.append(PDFPageFlowable(self, i-1, availWidth, availheight)) return result class PDFPageFlowable(flowables.Flowable): def __init__(self, parent, pagenumber, width, height): flowables.Flowable.__init__(self) self.parent = parent self.pagenumber = pagenumber self.width = width self.height = height def draw(self): # FIXME : scale and rotate ? # self.canv.addLiteral(self.page.getContents()) proc = self.parent.proc outPage = self.canv.getPageNumber()-1 pageOperations = proc.operations.setdefault(outPage, []) pageOperations.append((self.parent.pdf_file, self.pagenumber)) # flowable.NextPage() def split(self, availWidth, availheight): return [self] class IIncludePdfPages(interfaces.IRMLDirectiveSignature): """Inserts a set of pages from a given PDF.""" filename = attr.File( title=u'Path to file', description=u'The pdf file to include.', required=True) pages = attr.IntegerSequence( title=u'Pages', description=u'A list of pages to insert.', required=False) class IncludePdfPages(flowable.Flowable): signature = IIncludePdfPages def getProcessor(self): manager = attr.getManager(self, interfaces.IPostProcessorManager) procs = dict(manager.postProcessors) if 'MERGE' not in procs: proc = page.MergePostProcessor() manager.postProcessors.append(('MERGE', proc)) return proc return procs['MERGE'] def process(self): if pyPdf is None: raise Exception( 'pyPdf is not installed, so this feature is not available.') args = dict(self.getAttributeValues()) proc = self.getProcessor() self.parent.flow.append( IncludePdfPagesFlowable(args['filename'], args.get('pages'), proc)) flowable.Flow.factories['includePdfPages'] = IncludePdfPages flowable.IFlow.setTaggedValue( 'directives', flowable.IFlow.getTaggedValue('directives') + (occurence.ZeroOrMore('includePdfPages', IIncludePdfPages),) ) z3c.rml-2.0.0/src/z3c/rml/platypus.py0000664000175000017500000001104412064741434021013 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Style Related Element Processing $Id: platypus.py 128833 2012-12-21 02:02:02Z srichter $ """ __docformat__ = "reStructuredText" import reportlab.platypus.flowables import reportlab.rl_config from reportlab.rl_config import overlapAttachedSpace import zope.interface from z3c.rml import interfaces # Fix problem with reportlab 2.0 class KeepInFrame(reportlab.platypus.flowables.KeepInFrame): def __init__(self, maxWidth, maxHeight, content=[], mergeSpace=1, mode='shrink', name=''): self.name = name self.maxWidth = maxWidth self.maxHeight = maxHeight self.mode = mode assert mode in ('error','overflow','shrink','truncate'), \ '%s invalid mode value %s' % (self.identity(),mode) # This is an unnecessary check, since wrap() handles None just fine! #assert maxHeight>=0, \ # '%s invalid maxHeight value %s' % (self.identity(),maxHeight) if mergeSpace is None: mergeSpace = overlapAttachedSpace self.mergespace = mergeSpace self._content = content class BaseFlowable(reportlab.platypus.flowables.Flowable): def __init__(self, *args, **kw): reportlab.platypus.flowables.Flowable.__init__(self) self.args = args self.kw = kw def wrap(self, *args): return (0, 0) def draw(self): pass class Illustration(reportlab.platypus.flowables.Flowable): def __init__(self, processor, width, height): self.processor = processor self.width = width self.height = height def wrap(self, *args): return (self.width, self.height) def draw(self): # Import here to avoid recursive imports from z3c.rml import canvas self.canv.saveState() drawing = canvas.Drawing( self.processor.element, self.processor) zope.interface.alsoProvides(drawing, interfaces.ICanvasManager) drawing.canvas = self.canv drawing.process() self.canv.restoreState() class BookmarkPage(BaseFlowable): def draw(self): self.canv.bookmarkPage(*self.args, **self.kw) class Bookmark(BaseFlowable): def draw(self): self.canv.bookmarkHorizontal(*self.args, **self.kw) class OutlineAdd(BaseFlowable): def draw(self): if self.kw.get('key', None) is None: self.kw['key'] = str(hash(self)) self.canv.bookmarkPage(self.kw['key']) self.canv.addOutlineEntry(**self.kw) class Link(reportlab.platypus.flowables._Container, reportlab.platypus.flowables.Flowable): def __init__(self, content, **args): self._content = content self.args = args def wrap(self, availWidth, availHeight): self.width, self.height = reportlab.platypus.flowables._listWrapOn( self._content, availWidth, self.canv) return self.width, self.height def drawOn(self, canv, x, y, _sW=0, scale=1.0, content=None, aW=None): '''we simulate being added to a frame''' pS = 0 if aW is None: aW = self.width aW = scale*(aW+_sW) if content is None: content = self._content y += self.height*scale startX = x startY = y totalWidth = 0 totalHeight = 0 for c in content: w, h = c.wrapOn(canv,aW,0xfffffff) if w < reportlab.rl_config._FUZZ or h < reportlab.rl_config._FUZZ: continue if c is not content[0]: h += max(c.getSpaceBefore()-pS,0) y -= h c.drawOn(canv,x,y,_sW=aW-w) if c is not content[-1]: pS = c.getSpaceAfter() y -= pS totalWidth += w totalHeight += h rectangle = [startX, startY-totalHeight, startX+totalWidth, startY] if 'url' in self.args: canv.linkURL(rect=rectangle, **self.args) else: canv.linkAbsolute('', Rect=rectangle, **self.args) z3c.rml-2.0.0/src/z3c/rml/list.py0000664000175000017500000001305712064506716020115 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2012 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """``ul``, ``ol``, and ``li`` directives. """ __docformat__ = "reStructuredText" import copy import reportlab.lib.styles import reportlab.platypus import zope.schema from reportlab.platypus import flowables from z3c.rml import attr, directive, flowable, interfaces, occurence, stylesheet class IListItem(stylesheet.IMinimalListStyle, flowable.IFlow): """A list item in an ordered or unordered list.""" style = attr.Style( title=u'Style', description=u'The list style that is applied to the list.', required=False) class ListItem(flowable.Flow): signature = IListItem klass = reportlab.platypus.ListItem attrMapping = {} styleAttributes = zope.schema.getFieldNames(stylesheet.IMinimalListStyle) def processStyle(self, style): attrs = self.getAttributeValues(select=self.styleAttributes) if attrs or not hasattr(style, 'value'): style = copy.deepcopy(style) # Sigh, this is needed since unordered list items expect the value. style.value = style.start for name, value in attrs: setattr(style, name, value) return style def process(self): self.processSubDirectives() args = dict(self.getAttributeValues(ignore=self.styleAttributes)) if 'style' not in args: args['style'] = self.parent.baseStyle args['style'] = self.processStyle(args['style']) li = self.klass(self.flow, **args) self.parent.flow.append(li) class IOrderedListItem(IListItem): """An ordered list item.""" value = attr.Integer( title=u'Bullet Value', description=u'The counter value.', required=False) class OrderedListItem(ListItem): signature = IOrderedListItem class IUnorderedListItem(IListItem): """An ordered list item.""" value = attr.Choice( title=u'Bullet Value', description=u'The type of bullet character.', choices=interfaces.UNORDERED_BULLET_VALUES, required=False) class UnorderedListItem(ListItem): signature = IUnorderedListItem styleAttributes = ListItem.styleAttributes + ['value'] class IListBase(stylesheet.IBaseListStyle): style = attr.Style( title=u'Style', description=u'The list style that is applied to the list.', required=False) class ListBase(directive.RMLDirective): klass = reportlab.platypus.ListFlowable factories = {'li': ListItem} attrMapping = {} styleAttributes = zope.schema.getFieldNames(stylesheet.IBaseListStyle) def __init__(self, *args, **kw): super(ListBase, self).__init__(*args, **kw) self.flow = [] def processStyle(self, style): attrs = self.getAttributeValues( select=self.styleAttributes, attrMapping=self.attrMapping) if attrs: style = copy.deepcopy(style) for name, value in attrs: setattr(style, name, value) return style def process(self): args = dict(self.getAttributeValues( ignore=self.styleAttributes, attrMapping=self.attrMapping)) if 'style' not in args: args['style'] = reportlab.lib.styles.ListStyle('List') args['style'] = self.baseStyle = self.processStyle(args['style']) self.processSubDirectives() li = self.klass(self.flow, **args) self.parent.flow.append(li) class IOrderedList(IListBase): """An ordered list.""" occurence.containing( occurence.ZeroOrMore('li', IOrderedListItem), ) bulletType = attr.Choice( title=u'Bullet Type', description=u'The type of bullet formatting.', choices=interfaces.ORDERED_LIST_TYPES, doLower=False, required=False) class OrderedList(ListBase): signature = IOrderedList factories = {'li': OrderedListItem} styleAttributes = ListBase.styleAttributes + ['bulletType'] class IUnorderedList(IListBase): """And unordered list.""" occurence.containing( occurence.ZeroOrMore('li', IUnorderedListItem), ) value = attr.Choice( title=u'Bullet Value', description=u'The type of bullet character.', choices=interfaces.UNORDERED_BULLET_VALUES, default='disc', required=False) class UnorderedList(ListBase): signature = IUnorderedList attrMapping = {'value': 'start'} factories = {'li': UnorderedListItem} def getAttributeValues(self, *args, **kw): res = super(UnorderedList, self).getAttributeValues(*args, **kw) res.append(('bulletType', 'bullet')) return res flowable.Flow.factories['ol'] = OrderedList flowable.IFlow.setTaggedValue( 'directives', flowable.IFlow.getTaggedValue('directives') + (occurence.ZeroOrMore('ol', IOrderedList),) ) flowable.Flow.factories['ul'] = UnorderedList flowable.IFlow.setTaggedValue( 'directives', flowable.IFlow.getTaggedValue('directives') + (occurence.ZeroOrMore('ul', IUnorderedList),) ) z3c.rml-2.0.0/src/z3c/rml/interfaces.py0000664000175000017500000001203312064760243021253 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """RML to PDF Converter Interfaces """ __docformat__ = "reStructuredText" import logging import reportlab.lib.enums import zope.interface import zope.schema from z3c.rml.occurence import ZeroOrMore, ZeroOrOne, OneOrMore JOIN_CHOICES = {'round': 1, 'mitered': 0, 'bevelled': 2} CAP_CHOICES = {'default': 0, 'butt': 0, 'round': 1, 'square': 2} ALIGN_CHOICES = { 'left': reportlab.lib.enums.TA_LEFT, 'right': reportlab.lib.enums.TA_RIGHT, 'center': reportlab.lib.enums.TA_CENTER, 'centre': reportlab.lib.enums.TA_CENTER, 'justify': reportlab.lib.enums.TA_JUSTIFY} ALIGN_TEXT_CHOICES = { 'left': 'LEFT', 'right': 'RIGHT', 'center': 'CENTER', 'centre': 'CENTER', 'decimal': 'DECIMAL'} VALIGN_TEXT_CHOICES = { 'top': 'TOP', 'middle': 'MIDDLE', 'bottom': 'BOTTOM'} SPLIT_CHOICES = ('splitfirst', 'splitlast') TEXT_TRANSFORM_CHOICES = ('uppercase', 'lowercase') LIST_FORMATS = ('I', 'i', '123', 'ABC', 'abc') ORDERED_LIST_TYPES = ('I', 'i', '1', 'A', 'a') UNORDERED_BULLET_VALUES = ('circle', 'square', 'disc', 'diamond', 'rarrowhead') LOG_LEVELS = { 'DEBUG': logging.DEBUG, 'INFO': logging.INFO, 'WARNING': logging.WARNING, 'ERROR': logging.ERROR, 'CRITICAL': logging.CRITICAL} class IRML2PDF(zope.interface.Interface): """This is the main public API of z3c.rml""" def parseString(xml): """Parse an XML string and convert it to PDF. The output is a ``StringIO`` object. """ def go(xmlInputName, outputFileName=None, outDir=None, dtdDir=None): """Convert RML 2 PDF. The generated file will be located in the ``outDir`` under the name ``outputFileName``. """ class IManager(zope.interface.Interface): """A manager of all document-global variables.""" names = zope.interface.Attribute("Names dict") styles = zope.interface.Attribute("Styles dict") colors = zope.interface.Attribute("Colors dict") class IPostProcessorManager(zope.interface.Interface): """Manages all post processors""" postProcessors = zope.interface.Attribute( "List of tuples of the form: (name, processor)") class ICanvasManager(zope.interface.Interface): """A manager for the canvas.""" canvas = zope.interface.Attribute("Canvas") class IRMLDirectiveSignature(zope.interface.Interface): """The attribute and sub-directives signature of the current RML directive.""" class IRMLDirective(zope.interface.Interface): """A directive in RML extracted from an Element Tree element.""" signature = zope.schema.Field( title=u'Signature', description=(u'The signature of the RML directive.'), required=True) parent = zope.schema.Field( title=u'Parent RML Element', description=u'The parent in the RML element hierarchy', required=True,) element = zope.schema.Field( title=u'Element', description=(u'The Element Tree element from which the data ' u'is retrieved.'), required=True) def getAttributeValues(ignore=None, select=None, includeMissing=False): """Return a list of name-value-tuples based on the signature. If ``ignore`` is specified, all attributes are returned except the ones listed in the argument. The values of the sequence are the attribute names. If ``select`` is specified, only attributes listed in the argument are returned. The values of the sequence are the attribute names. If ``includeMissing`` is set to true, then even missing attributes are included in the value list. """ def processSubDirectives(self): """Process all sub-directives.""" def process(self): """Process the directive. The main task for this method is to interpret the available data and to make the corresponding calls in the Reportlab document. This call should also process all sub-directives and process them. """ class IDeprecated(zope.interface.Interface): """Mark an attribute as being compatible.""" deprecatedName = zope.schema.TextLine( title=u'Name', description=u'The name of the original attribute.', required=True) deprecatedReason = zope.schema.Text( title=u'Reason', description=u'The reason the attribute has been deprecated.', required=False) class IDeprecatedDirective(zope.interface.interfaces.IInterface): """A directive that is deprecated.""" z3c.rml-2.0.0/src/z3c/rml/flowable.py0000664000175000017500000013610712065004243020724 0ustar srichtersrichter00000000000000############################################################################## # # Copyright (c) 2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Flowable Element Processing $Id: flowable.py 128843 2012-12-21 06:58:39Z srichter $ """ __docformat__ = "reStructuredText" import copy import logging import re import reportlab.lib.styles import reportlab.platypus import reportlab.platypus.doctemplate import reportlab.platypus.flowables import reportlab.platypus.tables import zope.schema from reportlab.lib import styles, pygments2xpre from xml.sax.saxutils import unescape from z3c.rml import attr, directive, interfaces, occurence from z3c.rml import form, platypus, special, stylesheet try: import reportlab.graphics.barcode except ImportError: # barcode package has not been installed import types import reportlab.graphics reportlab.graphics.barcode = types.ModuleType('barcode') reportlab.graphics.barcode.createBarcodeDrawing = None class Flowable(directive.RMLDirective): klass=None attrMapping = None def process(self): args = dict(self.getAttributeValues(attrMapping=self.attrMapping)) self.parent.flow.append(self.klass(**args)) class ISpacer(interfaces.IRMLDirectiveSignature): """Creates a vertical space in the flow.""" width = attr.Measurement( title=u'Width', description=u'The width of the spacer. Currently not implemented.', default=100, required=False) length = attr.Measurement( title=u'Length', description=u'The height of the spacer.', required=True) class Spacer(Flowable): signature = ISpacer klass = reportlab.platypus.Spacer attrMapping = {'length': 'height'} class IIllustration(interfaces.IRMLDirectiveSignature): """Inserts an illustration with graphics elements.""" width = attr.Measurement( title=u'Width', description=u'The width of the illustration.', required=True) height = attr.Measurement( title=u'Height', description=u'The height of the illustration.', default=100, required=True) class Illustration(Flowable): signature = IIllustration klass = platypus.Illustration def process(self): args = dict(self.getAttributeValues()) self.parent.flow.append(self.klass(self, **args)) class IBarCodeFlowable(form.IBarCodeBase): """Creates a bar code as a flowable.""" value = attr.String( title=u'Value', description=u'The value represented by the code.', required=True) class BarCodeFlowable(Flowable): signature = IBarCodeFlowable klass = staticmethod(reportlab.graphics.barcode.createBarcodeDrawing) attrMapping = {'code': 'codeName'} class IPluginFlowable(interfaces.IRMLDirectiveSignature): """Inserts a custom flowable developed in Python.""" module = attr.String( title=u'Module', description=u'The Python module in which the flowable is located.', required=True) function = attr.String( title=u'Function', description=(u'The name of the factory function within the module ' u'that returns the custom flowable.'), required=True) params = attr.TextNode( title=u'Parameters', description=(u'A list of parameters encoded as a long string.'), required=False) class PluginFlowable(Flowable): signature = IPluginFlowable def process(self): modulePath, functionName, text = self.getAttributeValues( valuesOnly=True) module = __import__(modulePath, {}, {}, [modulePath]) function = getattr(module, functionName) flowables = function(text) if not isinstance(flowables, (tuple, list)): flowables = [flowables] self.parent.flow += list(flowables) class IMinimalParagraphBase(interfaces.IRMLDirectiveSignature): style = attr.Style( title=u'Style', description=(u'The paragraph style that is applied to the paragraph. ' u'See the ``paraStyle`` tag for creating a paragraph ' u'style.'), required=False) bulletText = attr.String( title=u'Bullet Character', description=(u'The bullet character is the ASCII representation of ' u'the symbol making up the bullet in a listing.'), required=False) dedent = attr.Integer( title=u'Dedent', description=(u'Number of characters to be removed in front of every ' u'line of the text.'), required=False) class IBold(interfaces.IRMLDirectiveSignature): """Renders the text inside as bold.""" class IItalic(interfaces.IRMLDirectiveSignature): """Renders the text inside as italic.""" class IUnderLine(interfaces.IRMLDirectiveSignature): """Underlines the contained text.""" class IBreak(interfaces.IRMLDirectiveSignature): """Inserts a line break in the paragraph.""" class IPageNumber(interfaces.IRMLDirectiveSignature): """Inserts the current page number into the text.""" class IParagraphBase(IMinimalParagraphBase): occurence.containing( occurence.ZeroOrMore('b', IBold), occurence.ZeroOrMore('i', IItalic), occurence.ZeroOrMore('u', IUnderLine), occurence.ZeroOrMore('br', IBreak, condition=occurence.laterThanReportlab21), occurence.ZeroOrMore('pageNumber', IPageNumber) ) class IPreformatted(IMinimalParagraphBase): """A preformatted text, similar to the
 tag in HTML."""

    style = attr.Style(
        title=u'Style',
        description=(u'The paragraph style that is applied to the paragraph. '
                     u'See the ``paraStyle`` tag for creating a paragraph '
                     u'style.'),
        default=reportlab.lib.styles.getSampleStyleSheet()['Code'],
        required=False)

    text = attr.RawXMLContent(
        title=u'Text',
        description=(u'The text that will be layed out.'),
        required=True)

    maxLineLength = attr.Integer(
        title=u'Max Line Length',
        description=(u'The maximum number of characters on one line.'),
        required=False)

    newLineChars = attr.Text(
        title=u'New Line Characters',
        description=u'The characters placed at the beginning of a wrapped line',
        required=False)

class Preformatted(Flowable):
    signature = IPreformatted
    klass = reportlab.platypus.Preformatted

class IXPreformatted(IParagraphBase):
    """A preformatted text that allows paragraph markup."""

    style = attr.Style(
        title=u'Style',
        description=(u'The paragraph style that is applied to the paragraph. '
                     u'See the ``paraStyle`` tag for creating a paragraph '
                     u'style.'),
        default=reportlab.lib.styles.getSampleStyleSheet()['Normal'],
        required=False)

    text = attr.RawXMLContent(
        title=u'Text',
        description=(u'The text that will be layed out.'),
        required=True)

class XPreformatted(Flowable):
    signature = IXPreformatted
    klass = reportlab.platypus.XPreformatted


class ICodeSnippet(IXPreformatted):
    """A code snippet with text highlighting."""

    style = attr.Style(
        title=u'Style',
        description=(u'The paragraph style that is applied to the paragraph. '
                     u'See the ``paraStyle`` tag for creating a paragraph '
                     u'style.'),
        required=False)

    language = attr.String(
        title=u'Language',
        description=u'The language the code snippet is written in.',
        required=False)

class CodeSnippet(XPreformatted):
    signature = ICodeSnippet

    def process(self):
        args = dict(self.getAttributeValues())
        lang = args.pop('language', None)
        args['text'] = unescape(args['text'])
        if lang is not None:
            args['text'] = pygments2xpre.pygments2xpre(
                args['text'], lang.lower())
        if 'style' not in args:
            args['style'] = attr._getStyle(self, 'Code')
        self.parent.flow.append(self.klass(**args))


class IParagraph(IParagraphBase, stylesheet.IBaseParagraphStyle):
    """Lays out an entire paragraph."""

    text = attr.XMLContent(
        title=u'Text',
        description=(u'The text that will be layed out.'),
        required=True)

class Paragraph(Flowable):
    signature = IParagraph
    klass = reportlab.platypus.Paragraph
    defaultStyle = 'Normal'

    styleAttributes = zope.schema.getFieldNames(stylesheet.IBaseParagraphStyle)

    def processStyle(self, style):
        attrs = self.getAttributeValues(select=self.styleAttributes)
        if attrs:
            style = copy.deepcopy(style)
            for name, value in attrs:
                setattr(style, name, value)
        return style

    def process(self):
        args = dict(self.getAttributeValues(ignore=self.styleAttributes))
        if 'style' not in args:
            args['style'] = attr._getStyle(self, self.defaultStyle)
        args['style'] = self.processStyle(args['style'])
        self.parent.flow.append(self.klass(**args))


class ITitle(IParagraph):
    """The title is a simple paragraph with a special title style."""

class Title(Paragraph):
    signature = ITitle
    defaultStyle = 'Title'

class IHeading1(IParagraph):
    """Heading 1 is a simple paragraph with a special heading 1 style."""

class Heading1(Paragraph):
    signature = IHeading1
    defaultStyle = 'Heading1'


class IHeading2(IParagraph):
    """Heading 2 is a simple paragraph with a special heading 2 style."""

class Heading2(Paragraph):
    signature = IHeading2
    defaultStyle = 'Heading2'


class IHeading3(IParagraph):
    """Heading 3 is a simple paragraph with a special heading 3 style."""

class Heading3(Paragraph):
    signature = IHeading3
    defaultStyle = 'Heading3'


class IHeading4(IParagraph):
    """Heading 4 is a simple paragraph with a special heading 4 style."""

class Heading4(Paragraph):
    signature = IHeading4
    defaultStyle = 'Heading4'


class IHeading5(IParagraph):
    """Heading 5 is a simple paragraph with a special heading 5 style."""

class Heading5(Paragraph):
    signature = IHeading5
    defaultStyle = 'Heading5'


class IHeading6(IParagraph):
    """Heading 6 is a simple paragraph with a special heading 6 style."""

class Heading6(Paragraph):
    signature = IHeading6
    defaultStyle = 'Heading6'


class ITableCell(interfaces.IRMLDirectiveSignature):
    """A table cell within a table."""

    content = attr.RawXMLContent(
        title=u'Content',
        description=(u'The content of the cell; can be text or any flowable.'),
        required=True)

    fontName = attr.String(
        title=u'Font Name',
        description=u'The name of the font for the cell.',
        required=False)

    fontSize = attr.Measurement(
        title=u'Font Size',
        description=u'The font size for the text of the cell.',
        required=False)

    leading = attr.Measurement(
        title=u'Leading',
        description=(u'The height of a single text line. It includes '
                     u'character height.'),
        required=False)

    fontColor = attr.Color(
        title=u'Font Color',
        description=u'The color in which the text will appear.',
        required=False)

    leftPadding = attr.Measurement(
        title=u'Left Padding',
        description=u'The size of the padding on the left side.',
        required=False)

    rightPadding = attr.Measurement(
        title=u'Right Padding',
        description=u'The size of the padding on the right side.',
        required=False)

    topPadding = attr.Measurement(
        title=u'Top Padding',
        description=u'The size of the padding on the top.',
        required=False)

    bottomPadding = attr.Measurement(
        title=u'Bottom Padding',
        description=u'The size of the padding on the bottom.',
        required=False)

    background = attr.Color(
        title=u'Background Color',
        description=u'The color to use as the background for the cell.',
        required=False)

    align = attr.Choice(
        title=u'Text Alignment',
        description=u'The text alignment within the cell.',
        choices=interfaces.ALIGN_TEXT_CHOICES,
        required=False)

    vAlign = attr.Choice(
        title=u'Vertical Alignment',
        description=u'The vertical alignment of the text within the cell.',
        choices=interfaces.VALIGN_TEXT_CHOICES,
        required=False)

    lineBelowThickness = attr.Measurement(
        title=u'Line Below Thickness',
        description=u'The thickness of the line below the cell.',
        required=False)

    lineBelowColor = attr.Color(
        title=u'Line Below Color',
        description=u'The color of the line below the cell.',
        required=False)

    lineBelowCap = attr.Choice(
        title=u'Line Below Cap',
        description=u'The cap at the end of the line below the cell.',
        choices=interfaces.CAP_CHOICES,
        required=False)

    lineBelowCount = attr.Integer(
        title=u'Line Below Count',
        description=(u'Describes whether the line below is a single (1) or '
                     u'double (2) line.'),
        required=False)

    lineBelowSpace = attr.Measurement(
        title=u'Line Below Space',
        description=u'The space of the line below the cell.',
        required=False)

    lineAboveThickness = attr.Measurement(
        title=u'Line Above Thickness',
        description=u'The thickness of the line above the cell.',
        required=False)

    lineAboveColor = attr.Color(
        title=u'Line Above Color',
        description=u'The color of the line above the cell.',
        required=False)

    lineAboveCap = attr.Choice(
        title=u'Line Above Cap',
        description=u'The cap at the end of the line above the cell.',
        choices=interfaces.CAP_CHOICES,
        required=False)

    lineAboveCount = attr.Integer(
        title=u'Line Above Count',
        description=(u'Describes whether the line above is a single (1) or '
                     u'double (2) line.'),
        required=False)

    lineAboveSpace = attr.Measurement(
        title=u'Line Above Space',
        description=u'The space of the line above the cell.',
        required=False)

    lineLeftThickness = attr.Measurement(
        title=u'Left Line Thickness',
        description=u'The thickness of the line left of the cell.',
        required=False)

    lineLeftColor = attr.Color(
        title=u'Left Line Color',
        description=u'The color of the line left of the cell.',
        required=False)

    lineLeftCap = attr.Choice(
        title=u'Line Left Cap',
        description=u'The cap at the end of the line left of the cell.',
        choices=interfaces.CAP_CHOICES,
        required=False)

    lineLeftCount = attr.Integer(
        title=u'Line Left Count',
        description=(u'Describes whether the left line is a single (1) or '
                     u'double (2) line.'),
        required=False)

    lineLeftSpace = attr.Measurement(
        title=u'Line Left Space',
        description=u'The space of the line left of the cell.',
        required=False)

    lineRightThickness = attr.Measurement(
        title=u'Right Line Thickness',
        description=u'The thickness of the line right of the cell.',
        required=False)

    lineRightColor = attr.Color(
        title=u'Right Line Color',
        description=u'The color of the line right of the cell.',
        required=False)

    lineRightCap = attr.Choice(
        title=u'Line Right Cap',
        description=u'The cap at the end of the line right of the cell.',
        choices=interfaces.CAP_CHOICES,
        required=False)

    lineRightCount = attr.Integer(
        title=u'Line Right Count',
        description=(u'Describes whether the right line is a single (1) or '
                     u'double (2) line.'),
        required=False)

    lineRightSpace = attr.Measurement(
        title=u'Line Right Space',
        description=u'The space of the line right of the cell.',
        required=False)

    href = attr.Text(
        title=u'Link URL',
        description=u'When specified, the cell becomes a link to that URL.',
        required=False)

    destination = attr.Text(
        title=u'Link Destination',
        description=(u'When specified, the cell becomes a link to that '
                     u'destination.'),
        required=False)


class TableCell(directive.RMLDirective):
    signature = ITableCell
    styleAttributesMapping = (
        ('FONTNAME', ('fontName',)),
        ('FONTSIZE', ('fontSize',)),
        ('TEXTCOLOR', ('fontColor',)),
        ('LEADING', ('leading',)),
        ('LEFTPADDING', ('leftPadding',)),
        ('RIGHTPADDING', ('rightPadding',)),
        ('TOPPADDING', ('topPadding',)),
        ('BOTTOMPADDING', ('bottomPadding',)),
        ('BACKGROUND', ('background',)),
        ('ALIGNMENT', ('align',)),
        ('VALIGN', ('vAlign',)),
        ('LINEBELOW', ('lineBelowThickness', 'lineBelowColor',
                       'lineBelowCap', 'lineBelowCount', 'lineBelowSpace')),
        ('LINEABOVE', ('lineAboveThickness', 'lineAboveColor',
                       'lineAboveCap', 'lineAboveCount', 'lineAboveSpace')),
        ('LINEBEFORE', ('lineLeftThickness', 'lineLeftColor',
                        'lineLeftCap', 'lineLeftCount', 'lineLeftSpace')),
        ('LINEAFTER', ('lineRightThickness', 'lineRightColor',
                       'lineRightCap', 'lineRightCount', 'lineRightSpace')),
        ('HREF', ('href',)),
        ('DESTINATION', ('destination',)),
        )

    def processStyle(self):
        row = len(self.parent.parent.rows)
        col = len(self.parent.cols)
        for styleAction, attrNames in self.styleAttributesMapping:
            args = self.getAttributeValues(select=attrNames, valuesOnly=True)
            if args or len(attrNames) == 0:
                self.parent.parent.style.add(
                    styleAction, [col, row], [col, row], *args)

    def process(self):
        # Produce style
        self.processStyle()
        # Produce cell data
        flow = Flow(self.element, self.parent)
        flow.process()
        content = flow.flow
        if len(content) == 0:
            content = self.getAttributeValues(
                select=('content',), valuesOnly=True)[0]
        self.parent.cols.append(content)


class ITableRow(interfaces.IRMLDirectiveSignature):
    """A table row in the block table."""
    occurence.containing(
        occurence.OneOrMore('td', ITableCell),
        )

class TableRow(directive.RMLDirective):
    signature = ITableRow
    factories = {'td': TableCell}

    def process(self):
        self.cols = []
        self.processSubDirectives()
        self.parent.rows.append(self.cols)


class ITableBulkData(interfaces.IRMLDirectiveSignature):
    """Bulk Data allows one to quickly create a table."""

    content = attr.TextNodeSequence(
        title=u'Content',
        description=u'The bulk data.',
        splitre=re.compile('\n'),
        value_type=attr.Sequence(splitre=re.compile(','),
                                 value_type=attr.Text())
        )

class TableBulkData(directive.RMLDirective):
    signature = ITableBulkData

    def process(self):
        self.parent.rows = self.getAttributeValues(valuesOnly=True)[0]


class BlockTableStyle(stylesheet.BlockTableStyle):

    def process(self):
        self.style = copy.deepcopy(self.parent.style)
        attrs = self.getAttributeValues()
        for name, value in attrs:
            setattr(self.style, name, value)
        self.processSubDirectives()
        self.parent.style = self.style


class IBlockTable(interfaces.IRMLDirectiveSignature):
    """A typical block table."""
    occurence.containing(
        occurence.ZeroOrMore('tr', ITableRow),
        occurence.ZeroOrOne('bulkData', ITableBulkData),
        occurence.ZeroOrMore('blockTableStyle', stylesheet.IBlockTableStyle),
        )

    style = attr.Style(
        title=u'Style',
        description=(u'The table style that is applied to the table. '),
        required=False)

    rowHeights = attr.Sequence(
        title=u'Row Heights',
        description=u'A list of row heights in the table.',
        value_type=attr.Measurement(),
        required=False)

    colWidths = attr.Sequence(
        title=u'Column Widths',
        description=u'A list of column widths in the table.',
        value_type=attr.Measurement(allowPercentage=True, allowStar=True),
        required=False)

    repeatRows = attr.Integer(
        title=u'Repeat Rows',
        description=u'A flag to repeat rows upon table splits.',
        required=False)

    alignment = attr.Choice(
        title=u'Alignment',
        description=u'The alignment of whole table.',
        choices=interfaces.ALIGN_TEXT_CHOICES,
        required=False)

class BlockTable(Flowable):
    signature = IBlockTable
    klass = reportlab.platypus.Table
    factories = {
        'tr': TableRow,
        'bulkData': TableBulkData,
        'blockTableStyle': BlockTableStyle}

    def process(self):
        attrs = dict(self.getAttributeValues())
        # Get the table style; create a new one, if none is found
        self.style = attrs.pop('style', None)
        if self.style is None:
            self.style = reportlab.platypus.tables.TableStyle()
        hAlign = attrs.pop('alignment', None)
        # Extract all table rows and cells
        self.rows = []
        self.processSubDirectives(None)
        # Create the table
        repeatRows = attrs.pop('repeatRows', None)
        table = self.klass(self.rows, style=self.style, **attrs)
        if repeatRows:
            table.repeatRows = repeatRows
        if hAlign:
            table.hAlign = hAlign
        # Must set keepWithNext on table, since the style is not stored corr.
        if hasattr(self.style, 'keepWithNext'):
            table.keepWithNext = self.style.keepWithNext
        self.parent.flow.append(table)


class INextFrame(interfaces.IRMLDirectiveSignature):
    """Switch to the next frame."""
    name = attr.StringOrInt(
        title=u'Name',
        description=(u'The name or index of the next frame.'),
        required=False)

class NextFrame(Flowable):
    signature = INextFrame
    klass = reportlab.platypus.doctemplate.FrameBreak
    attrMapping = {'name': 'ix'}


class ISetNextFrame(interfaces.IRMLDirectiveSignature):
    """Define the next frame to switch to."""
    name = attr.StringOrInt(
        title=u'Name',
        description=(u'The name or index of the next frame.'),
        required=True)

class SetNextFrame(Flowable):
    signature = INextFrame
    klass = reportlab.platypus.doctemplate.NextFrameFlowable
    attrMapping = {'name': 'ix'}


class INextPage(interfaces.IRMLDirectiveSignature):
    """Switch to the next page."""

class NextPage(Flowable):
    signature = INextPage
    klass = reportlab.platypus.PageBreak


class ISetNextTemplate(interfaces.IRMLDirectiveSignature):
    """Define the next page template to use."""
    name = attr.StringOrInt(
        title=u'Name',
        description=u'The name or index of the next page template.',
        required=True)

class SetNextTemplate(Flowable):
    signature = ISetNextTemplate
    klass = reportlab.platypus.doctemplate.NextPageTemplate
    attrMapping = {'name': 'pt'}


class IConditionalPageBreak(interfaces.IRMLDirectiveSignature):
    """Switch to the next page if not enough vertical space is available."""
    height = attr.Measurement(
        title=u'height',
        description=u'The minimal height that must be remaining on the page.',
        required=True)

class ConditionalPageBreak(Flowable):
    signature = IConditionalPageBreak
    klass = reportlab.platypus.CondPageBreak


class IKeepInFrame(interfaces.IRMLDirectiveSignature):
    """Ask a flowable to stay within the frame."""

    maxWidth = attr.Measurement(
        title=u'Maximum Width',
        description=u'The maximum width the flowables are allotted.',
        default=None,
        required=False)

    maxHeight = attr.Measurement(
        title=u'Maximum Height',
        description=u'The maximum height the flowables are allotted.',
        default=None,
        required=False)

    mergeSpace = attr.Boolean(
        title=u'Merge Space',
        description=u'A flag to set whether the space should be merged.',
        required=False)

    onOverflow = attr.Choice(
        title=u'On Overflow',
        description=u'Defines what has to be done, if an overflow is detected.',
        choices=('error', 'overflow', 'shrink', 'truncate'),
        required=False)

    id = attr.Text(
        title=u'Name/Id',
        description=u'The name/id of the flowable.',
        required=False)

    frame = attr.StringOrInt(
        title=u'Frame',
        description=u'The frame to which the flowable should be fitted.',
        required=False)

class KeepInFrame(Flowable):
    signature = IKeepInFrame
    klass = platypus.KeepInFrame
    attrMapping = {'onOverflow': 'mode', 'id': 'name'}

    def process(self):
        args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        # Circumvent broken-ness in zope.schema
        args['maxWidth'] = args.get('maxWidth', None)
        args['maxHeight'] = args.get('maxHeight', None)
        # If the frame was specifed, get us there
        frame = args.pop('frame', None)
        if frame:
            self.parent.flow.append(
                reportlab.platypus.doctemplate.FrameBreak(frame))
        # Create the content of the container
        flow = Flow(self.element, self.parent)
        flow.process()
        args['content'] = flow.flow
        # Create the keep in frame container
        frame = self.klass(**args)
        self.parent.flow.append(frame)

class IKeepTogether(interfaces.IRMLDirectiveSignature):
    """Keep the child flowables in the same frame. Add frame break when
    necessary."""

    maxHeight = attr.Measurement(
        title=u'Maximum Height',
        description=u'The maximum height the flowables are allotted.',
        default=None,
        required=False)

class KeepTogether(Flowable):
    signature = IKeepTogether
    klass = reportlab.platypus.flowables.KeepTogether

    def process(self):
        args = dict(self.getAttributeValues())

        # Create the content of the container
        flow = Flow(self.element, self.parent)
        flow.process()

        # Create the keep in frame container
        frame = self.klass(flow.flow, **args)
        self.parent.flow.append(frame)

class IImage(interfaces.IRMLDirectiveSignature):
    """An image."""

    src = attr.Image(
        title=u'Image Source',
        description=u'The file that is used to extract the image data.',
        onlyOpen=True,
        required=True)

    width = attr.Measurement(
        title=u'Image Width',
        description=u'The width of the image.',
        required=False)

    height = attr.Measurement(
        title=u'Image Height',
        description=u'The height the image.',
        required=False)

    mask = attr.Color(
        title=u'Mask',
        description=u'The color mask used to render the image.',
        required=False)

    vAlign = attr.Choice(
        title=u'Vertical Alignment',
        description=u'The vertical alignment of the image.',
        choices=interfaces.VALIGN_TEXT_CHOICES,
        required=False)

class Image(Flowable):
    signature = IImage
    klass = reportlab.platypus.flowables.Image
    attrMapping = {'src': 'filename'}

    def process(self):
        args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        vAlign = args.pop('vAlign', None)
        img = self.klass(**args)
        if vAlign:
            img.vAlign = vAlign
        self.parent.flow.append(img)


class IImageAndFlowables(interfaces.IRMLDirectiveSignature):
    """An image with flowables around it."""

    imageName = attr.Image(
        title=u'Image',
        description=u'The file that is used to extract the image data.',
        onlyOpen=True,
        required=True)

    imageWidth = attr.Measurement(
        title=u'Image Width',
        description=u'The width of the image.',
        required=False)

    imageHeight = attr.Measurement(
        title=u'Image Height',
        description=u'The height the image.',
        required=False)

    imageMask = attr.Color(
        title=u'Mask',
        description=u'The height the image.',
        required=False)

    imageLeftPadding = attr.Measurement(
        title=u'Image Left Padding',
        description=u'The padding on the left side of the image.',
        required=False)

    imageRightPadding = attr.Measurement(
        title=u'Image Right Padding',
        description=u'The padding on the right side of the image.',
        required=False)

    imageTopPadding = attr.Measurement(
        title=u'Image Top Padding',
        description=u'The padding on the top of the image.',
        required=False)

    imageBottomPadding = attr.Measurement(
        title=u'Image Bottom Padding',
        description=u'The padding on the bottom of the image.',
        required=False)

    imageSide = attr.Choice(
        title=u'Image Side',
        description=u'The side at which the image will be placed.',
        choices=('left', 'right'),
        required=False)

class ImageAndFlowables(Flowable):
    signature = IImageAndFlowables
    klass = reportlab.platypus.flowables.ImageAndFlowables
    attrMapping = {'imageWidth': 'width', 'imageHeight': 'height',
                   'imageMask': 'mask', 'imageName': 'filename'}

    def process(self):
        flow = Flow(self.element, self.parent)
        flow.process()
        # Create the image
        args = dict(self.getAttributeValues(
            select=('imageName', 'imageWidth', 'imageHeight', 'imageMask'),
            attrMapping=self.attrMapping))
        img = reportlab.platypus.flowables.Image(**args)
        # Create the flowable and add it
        args = dict(self.getAttributeValues(
            ignore=('imageName', 'imageWidth', 'imageHeight', 'imageMask'),
            attrMapping=self.attrMapping))
        self.parent.flow.append(
            self.klass(img, flow.flow, **args))


class IPTO(interfaces.IRMLDirectiveSignature):
    '''A container for flowables decorated with trailer & header lists.
    If the split operation would be called then the trailer and header
    lists are injected before and after the split. This allows specialist
    "please turn over" and "continued from previous" like behaviours.'''

class PTO(Flowable):
    signature = IPTO
    klass = reportlab.platypus.flowables.PTOContainer

    def process(self):
        # Get Content
        flow = Flow(self.element, self.parent)
        flow.process()
        # Get the header
        ptoHeader = self.element.find('pto_header')
        header = None
        if ptoHeader is not None:
            header = Flow(ptoHeader, self.parent)
            header.process()
            header = header.flow
        # Get the trailer
        ptoTrailer = self.element.find('pto_trailer')
        trailer = None
        if ptoTrailer is not None:
            trailer = Flow(ptoTrailer, self.parent)
            trailer.process()
            trailer = trailer.flow
        # Create and add the PTO Container
        self.parent.flow.append(self.klass(flow.flow, trailer, header))


class IIndent(interfaces.IRMLDirectiveSignature):
    """Indent the contained flowables."""

    left = attr.Measurement(
        title=u'Left',
        description=u'The indentation to the left.',
        required=False)

    right = attr.Measurement(
        title=u'Right',
        description=u'The indentation to the right.',
        required=False)

class Indent(Flowable):
    signature = IIndent

    def process(self):
        kw = dict(self.getAttributeValues())
        # Indent
        self.parent.flow.append(reportlab.platypus.doctemplate.Indenter(**kw))
        # Add Content
        flow = Flow(self.element, self.parent)
        flow.process()
        self.parent.flow += flow.flow
        # Dedent
        for name, value in kw.items():
            kw[name] = -value
        self.parent.flow.append(reportlab.platypus.doctemplate.Indenter(**kw))


class IFixedSize(interfaces.IRMLDirectiveSignature):
    """Create a container flowable of a fixed size."""

    width = attr.Measurement(
        title=u'Width',
        description=u'The width the flowables are allotted.',
        required=True)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height the flowables are allotted.',
        required=True)

class FixedSize(Flowable):
    signature = IFixedSize
    klass = reportlab.platypus.flowables.KeepInFrame
    attrMapping = {'width': 'maxWidth', 'height': 'maxHeight'}

    def process(self):
        flow = Flow(self.element, self.parent)
        flow.process()
        args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        frame = self.klass(content=flow.flow, mode='shrink', **args)
        self.parent.flow.append(frame)


class IBookmarkPage(interfaces.IRMLDirectiveSignature):
    """
    This creates a bookmark to the current page which can be referred to with
    the given key elsewhere.

    PDF offers very fine grained control over how Acrobat reader is zoomed
    when people link to this. The default is to keep the user's current zoom
    settings. the last arguments may or may not be needed depending on the
    choice of 'fitType'.
    """

    name = attr.Text(
        title=u'Name',
        description=u'The name of the bookmark.',
        required=True)

    fit = attr.Choice(
        title=u'Fit',
        description=u'The Fit Type.',
        choices=('XYZ', 'Fit', 'FitH', 'FitV', 'FitR'),
        required=False)

    top = attr.Measurement(
        title=u'Top',
        description=u'The top position.',
        required=False)

    bottom = attr.Measurement(
        title=u'Bottom',
        description=u'The bottom position.',
        required=False)

    left = attr.Measurement(
        title=u'Left',
        description=u'The left position.',
        required=False)

    right = attr.Measurement(
        title=u'Right',
        description=u'The right position.',
        required=False)

    zoom = attr.Float(
        title=u'Zoom',
        description=u'The zoom level when clicking on the bookmark.',
        required=False)

class BookmarkPage(Flowable):
    signature = IBookmarkPage
    klass = platypus.BookmarkPage
    attrMapping = {'name': 'key', 'fitType': 'fit'}


class IBookmark(interfaces.IRMLDirectiveSignature):
    """
    This creates a bookmark to the current page which can be referred to with
    the given key elsewhere. (Used inside a story.)
    """

    name = attr.Text(
        title=u'Name',
        description=u'The name of the bookmark.',
        required=True)

    x = attr.Measurement(
        title=u'X Coordinate',
        description=u'The x-position of the bookmark.',
        default=0,
        required=False)

    y = attr.Measurement(
        title=u'Y Coordinate',
        description=u'The y-position of the bookmark.',
        default=0,
        required=False)

class Bookmark(Flowable):
    signature = IBookmark
    klass = platypus.Bookmark
    attrMapping = {'name': 'key', 'x': 'relativeX', 'y': 'relativeY'}


class ILink(interfaces.IRMLDirectiveSignature):
    """Place an internal link around a set of flowables."""

    destination = attr.Text(
        title=u'Destination',
        description=u'The name of the destination to link to.',
        required=False)

    url = attr.Text(
        title=u'URL',
        description=u'The URL to link to.',
        required=False)

    boxStrokeWidth = attr.Measurement(
        title=u'Box Stroke Width',
        description=u'The width of the box border line.',
        required=False)

    boxStrokeDashArray = attr.Sequence(
        title=u'Box Stroke Dash Array',
        description=u'The dash array of the box border line.',
        value_type=attr.Float(),
        required=False)

    boxStrokeColor = attr.Color(
        title=u'Box Stroke Color',
        description=(u'The color in which the box border is drawn.'),
        required=False)


class Link(Flowable):
    signature = ILink
    attrMapping = {'destination': 'destinationname',
                   'boxStrokeWidth': 'thickness',
                   'boxStrokeDashArray': 'dashArray',
                   'boxStrokeColor': 'color'}

    def process(self):
        flow = Flow(self.element, self.parent)
        flow.process()
        args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        self.parent.flow.append(platypus.Link(flow.flow, **args))


class IHorizontalRow(interfaces.IRMLDirectiveSignature):
    """Create a horizontal line on the page."""

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the line on the page.',
        allowPercentage=True,
        required=False)

    thickness = attr.Measurement(
        title=u'Thickness',
        description=u'Line Thickness',
        required=False)

    color = attr.Color(
        title=u'Color',
        description=u'The color of the line.',
        required=False)

    lineCap = attr.Choice(
        title=u'Cap',
        description=u'The cap at the end of the line.',
        choices=interfaces.CAP_CHOICES.keys(),
        required=False)

    spaceBefore = attr.Measurement(
        title=u'Space Before',
        description=u'The vertical space before the line.',
        required=False)

    spaceAfter = attr.Measurement(
        title=u'Space After',
        description=u'The vertical space after the line.',
        required=False)

    align = attr.Choice(
        title=u'Alignment',
        description=u'The alignment of the line within the frame.',
        choices=interfaces.ALIGN_TEXT_CHOICES,
        required=False)

    valign = attr.Choice(
        title=u'Vertical Alignment',
        description=u'The vertical alignment of the line.',
        choices=interfaces.VALIGN_TEXT_CHOICES,
        required=False)

    dash = attr.Sequence(
        title=u'Dash-Pattern',
        description=u'The dash-pattern of a line.',
        value_type=attr.Measurement(),
        default=None,
        required=False)

class HorizontalRow(Flowable):
    signature = IHorizontalRow
    klass = reportlab.platypus.flowables.HRFlowable
    attrMapping = {'align': 'hAlign'}


class IOutlineAdd(interfaces.IRMLDirectiveSignature):
    """Add a new entry to the outline of the PDF."""

    title = attr.TextNode(
        title=u'Title',
        description=u'The text displayed for this item.',
        required=True)

    key = attr.String(
        title=u'Key',
        description=u'The unique key of the item.',
        required=False)

    level = attr.Integer(
        title=u'Level',
        description=u'The level in the outline tree.',
        required=False)

    closed = attr.Boolean(
        title=u'Closed',
        description=(u'A flag to determine whether the sub-tree is closed '
                     u'by default.'),
        required=False)


class OutlineAdd(Flowable):
    signature = IOutlineAdd
    klass = platypus.OutlineAdd


class NamedStringFlowable(reportlab.platypus.flowables.Flowable):

    def __init__(self, manager, id, value):
        reportlab.platypus.flowables.Flowable.__init__(self)
        self.manager = manager
        self.id = id
        self.value = value

    def wrap(self, *args):
        return (0, 0)

    def draw(self):
        self.manager.names[self.id] = self.value


class INamedString(interfaces.IRMLDirectiveSignature):
    """Defines a name for a string."""

    id = attr.String(
        title=u'Id',
        description=u'The id under which the value will be known.',
        required=True)

    value = attr.XMLContent(
        title=u'Value',
        description=u'The text that is displayed if the id is called.',
        required=True)

class NamedString(directive.RMLDirective):
    signature = INamedString

    def process(self):
        id, value = self.getAttributeValues(valuesOnly=True)
        manager = attr.getManager(self)
        # We have to delay assigning values, otherwise the last one wins.
        self.parent.flow.append(NamedStringFlowable(manager, id, value))


class IShowIndex(interfaces.IRMLDirectiveSignature):
    """Creates an index in the document."""

    name = attr.String(
        title=u'Name',
        description=u'The name of the index.',
        default='index',
        required=False)

    dot = attr.String(
        title=u'Dot',
        description=u'The character to use as a dot.',
        required=False)

    style = attr.Style(
        title=u'Style',
        description=u'The paragraph style that is applied to the index. ',
        required=False)

    tableStyle = attr.Style(
        title=u'Table Style',
        description=u'The table style that is applied to the index layout. ',
        required=False)

class ShowIndex(directive.RMLDirective):
    signature = IShowIndex

    def process(self):
        args = dict(self.getAttributeValues())
        manager = attr.getManager(self)
        index = manager.indexes[args['name']]
        args['format'] = index.formatFunc.__name__[8:]
        args['offset'] = index.offset
        index.setup(**args)
        self.parent.flow.append(index)


class IBaseLogCall(interfaces.IRMLDirectiveSignature):

    message = attr.RawXMLContent(
        title=u'Message',
        description=u'The message to be logged.',
        required=True)

class LogCallFlowable(reportlab.platypus.flowables.Flowable):

    def __init__(self, logger, level, message):
        self.logger = logger
        self.level = level
        self.message = message

    def wrap(self, *args):
        return (0, 0)

    def draw(self):
        self.logger.log(self.level, self.message)

class BaseLogCall(directive.RMLDirective):
    signature = IBaseLogCall
    level = None

    def process(self):
        message = self.getAttributeValues(
            select=('message',), valuesOnly=True)[0]
        manager = attr.getManager(self)
        self.parent.flow.append(
            LogCallFlowable(manager.logger, self.level, message))

class ILog(IBaseLogCall):
    """Log message at DEBUG level."""

    level = attr.Choice(
        title=u'Level',
        description=u'The default log level.',
        choices=interfaces.LOG_LEVELS,
        doLower=False,
        default=logging.INFO,
        required=True)

class Log(BaseLogCall):
    signature = ILog

    @property
    def level(self):
        return self.getAttributeValues(select=('level',), valuesOnly=True)[0]

class IDebug(IBaseLogCall):
    """Log message at DEBUG level."""

class Debug(BaseLogCall):
    signature = IDebug
    level = logging.DEBUG


class IInfo(IBaseLogCall):
    """Log message at INFO level."""

class Info(BaseLogCall):
    signature = IInfo
    level = logging.INFO


class IWarning(IBaseLogCall):
    """Log message at WARNING level."""

class Warning(BaseLogCall):
    signature = IWarning
    level = logging.WARNING


class IError(IBaseLogCall):
    """Log message at ERROR level."""

class Error(BaseLogCall):
    signature = IError
    level = logging.ERROR


class ICritical(IBaseLogCall):
    """Log message at CRITICAL level."""

class Critical(BaseLogCall):
    signature = ICritical
    level = logging.CRITICAL


class IFlow(interfaces.IRMLDirectiveSignature):
    """A list of flowables."""
    occurence.containing(
        occurence.ZeroOrMore('spacer', ISpacer),
        occurence.ZeroOrMore('illustration', IIllustration),
        occurence.ZeroOrMore('pre', IPreformatted),
        occurence.ZeroOrMore('xpre', IXPreformatted),
        occurence.ZeroOrMore('codesnippet', ICodeSnippet),
        occurence.ZeroOrMore('plugInFlowable', IPluginFlowable),
        occurence.ZeroOrMore('barCodeFlowable', IBarCodeFlowable),
        occurence.ZeroOrMore('outlineAdd', IOutlineAdd),
        occurence.ZeroOrMore('title', ITitle),
        occurence.ZeroOrMore('h1', IHeading1),
        occurence.ZeroOrMore('h2', IHeading2),
        occurence.ZeroOrMore('h3', IHeading3),
        occurence.ZeroOrMore('h4', IHeading4),
        occurence.ZeroOrMore('h5', IHeading5),
        occurence.ZeroOrMore('h6', IHeading6),
        occurence.ZeroOrMore('para', IParagraph),
        occurence.ZeroOrMore('blockTable', IBlockTable),
        occurence.ZeroOrMore('nextFrame', INextFrame),
        occurence.ZeroOrMore('setNextFrame', ISetNextFrame),
        occurence.ZeroOrMore('nextPage', INextPage),
        occurence.ZeroOrMore('setNextTemplate', ISetNextTemplate),
        occurence.ZeroOrMore('condPageBreak', IConditionalPageBreak),
        occurence.ZeroOrMore('keepInFrame', IKeepInFrame),
        occurence.ZeroOrMore('keepTogether', IKeepTogether),
        occurence.ZeroOrMore('img', IImage),
        occurence.ZeroOrMore('imageAndFlowables', IImageAndFlowables),
        occurence.ZeroOrMore('pto', IPTO),
        occurence.ZeroOrMore('indent', IIndent),
        occurence.ZeroOrMore('fixedSize', IFixedSize),
        occurence.ZeroOrMore('bookmarkPage', IBookmarkPage),
        occurence.ZeroOrMore('bookmark', IBookmark),
        occurence.ZeroOrMore('link', ILink),
        occurence.ZeroOrMore('hr', IHorizontalRow),
        occurence.ZeroOrMore('showIndex', IShowIndex),
        occurence.ZeroOrMore('name', special.IName),
        occurence.ZeroOrMore('namedString', INamedString),
        occurence.ZeroOrMore('log', ILog),
        occurence.ZeroOrMore('debug', IDebug),
        occurence.ZeroOrMore('info', IInfo),
        occurence.ZeroOrMore('warning', IWarning),
        occurence.ZeroOrMore('error', IError),
        occurence.ZeroOrMore('critical', ICritical),
        )

class Flow(directive.RMLDirective):

    factories = {
        # Generic Flowables
        'spacer': Spacer,
        'illustration': Illustration,
        'pre': Preformatted,
        'xpre': XPreformatted,
        'codesnippet': CodeSnippet,
        'plugInFlowable': PluginFlowable,
        'barCodeFlowable': BarCodeFlowable,
        'outlineAdd': OutlineAdd,
        # Paragraph-Like Flowables
        'title': Title,
        'h1': Heading1,
        'h2': Heading2,
        'h3': Heading3,
        'h4': Heading4,
        'h5': Heading5,
        'h6': Heading6,
        'para': Paragraph,
        # Table Flowable
        'blockTable': BlockTable,
        # Page-level Flowables
        'nextFrame': NextFrame,
        'setNextFrame': SetNextFrame,
        'nextPage': NextPage,
        'setNextTemplate': SetNextTemplate,
        'condPageBreak': ConditionalPageBreak,
        'keepInFrame': KeepInFrame,
        'keepTogether': KeepTogether,
        'img': Image,
        'imageAndFlowables': ImageAndFlowables,
        'pto': PTO,
        'indent': Indent,
        'fixedSize': FixedSize,
        'bookmarkPage': BookmarkPage,
        'bookmark': Bookmark,
        'link': Link,
        'hr': HorizontalRow,
        'showIndex': ShowIndex,
        # Special Elements
        'name': special.Name,
        'namedString': NamedString,
        # Logging
        'log': Log,
        'debug': Debug,
        'info': Info,
        'warning': Warning,
        'error': Error,
        'critical': Critical,
        }

    def __init__(self, *args, **kw):
        super(Flow, self).__init__(*args, **kw)
        self.flow = []

    def process(self):
        self.processSubDirectives()
        return self.flow
z3c.rml-2.0.0/src/z3c/rml/dtd.py0000664000175000017500000000534312064617202017705 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Generate a DTD from the code

$Id: dtd.py 128803 2012-12-20 14:19:44Z srichter $
"""
__docformat__ = "reStructuredText"
import zope.schema

from z3c.rml import attr, document, occurence

occurence2Symbol = {
    occurence.ZeroOrMore: '*',
    occurence.ZeroOrOne: '?',
    occurence.OneOrMore: '+',
    }


def generateElement(name, signature):
    if signature is None:
        return ''
    # Create the list of sub-elements.
    subElementList = []
    for occurence in signature.queryTaggedValue('directives', ()):
        subElementList.append(
            occurence.tag + occurence2Symbol.get(occurence.__class__, '')
            )
    fields = zope.schema.getFieldsInOrder(signature)
    for attrName, field in fields:
        if isinstance(field, attr.TextNode):
            subElementList.append('#PCDATA')
            break
    subElementList = ','.join(subElementList)
    if subElementList:
        subElementList = ' (' + subElementList + ')'
    text = '\n' %(name, subElementList)
    # Create a list of attributes for this element.
    for attrName, field in fields:
        # Ignore text nodes, since they are not attributes.
        if isinstance(field, attr.TextNode):
            continue
        # Create the type
        if isinstance(field, attr.Choice):
            type = '(' + '|'.join(field.choices.keys()) + ')'
        else:
            type = 'CDATA'
        # Create required flag
        if field.required:
            required = '#REQUIRED'
        else:
            required = '#IMPLIED'
        # Put it all together
        text += '\n' %(name, attrName, type, required)
    text += '\n'
    # Walk through all sub-elements, creating th eDTD entries for them.
    for occurence in signature.queryTaggedValue('directives', ()):
        text += generateElement(occurence.tag, occurence.signature)
    return text


def generate(useWrapper=False):
    text = generateElement('document', document.Document.signature)
    if useWrapper:
        text = '\n' %text
    return text

def main():
    print generate()


if __name__ == '__main__':
    print main()
z3c.rml-2.0.0/src/z3c/rml/reference.py0000664000175000017500000002162112064215116021063 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""RML Reference Generator

$Id: reference.py 128766 2012-12-19 01:37:16Z srichter $
"""
__docformat__ = "reStructuredText"
import copy
import re
import os
import pygments.token
import zope.schema
import zope.schema.interfaces
from lxml import etree
from xml.sax import saxutils
from pygments.lexers import XmlLexer
from z3c.rml import attr, document, interfaces, pagetemplate


INPUT_URL = ('http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/'
             'rml/tests/input/%s')
EXPECTED_URL = ('http://svn.zope.org/z3c.rml/trunk/src/z3c/'
                'rml/tests/expected/%s?view=auto')
EXAMPLES_DIRECTORY = os.path.join(os.path.dirname(__file__), 'tests', 'input')
IGNORE_ATTRIBUTES = ('RMLAttribute', 'BaseChoice')
CONTENT_FIELD_TYPES = (
    attr.TextNode, attr.TextNodeSequence, attr.TextNodeGrid,
    attr.RawXMLContent, attr.XMLContent)
STYLES_FORMATTING = {
     pygments.token.Name.Tag : ('', ''),
     pygments.token.Literal.String : ('', ''),
    }
EXAMPLE_NS = 'http://namespaces.zope.org/rml/doc'
EXAMPLE_ATTR_NAME = '{%s}example' %EXAMPLE_NS


def dedent(rml):
    spaces = re.findall('\n( *)<', rml)
    if not spaces:
        return rml
    least = min([len(s) for s in spaces if s != ''])
    return rml.replace('\n'+' '*least, '\n')


def enforceColumns(rml, columns=80):
    result = []
    for line in rml.split('\n'):
        if len(line) <= columns:
            result.append(line)
            continue
        # Determine the indentation for all other lines
        lineStart = re.findall('^( *<[a-zA-Z0-9]+ )', line)
        lineIndent = 0
        if lineStart:
            lineIndent = len(lineStart[0])
        # Create lines having at most the specified number of columns
        while len(line) > columns:
            end = line[:columns].rfind(' ')
            result.append(line[:end])
            line = ' '*lineIndent + line[end+1:]
        result.append(line)

    return '\n'.join(result)

def highlightRML(rml):
    lexer = XmlLexer()
    styledRml = ''
    for ttype, token in lexer.get_tokens(rml):
        start, end = STYLES_FORMATTING.get(ttype, ('', ''))
        styledRml += start + saxutils.escape(token) + end
    return styledRml


def removeDocAttributes(elem):
    for name in elem.attrib.keys():
        if name.startswith('{'+EXAMPLE_NS+'}'):
            del elem.attrib[name]
    for child in elem.getchildren():
        removeDocAttributes(child)


def getAttributeTypes():
    types = []
    candidates = sorted(attr.__dict__.items(), key=lambda e: e[0])
    for name, candidate in candidates:
        if not (isinstance(candidate, type) and
                zope.schema.interfaces.IField.implementedBy(candidate) and
                name not in IGNORE_ATTRIBUTES):
            continue
        types.append({
            'name': name,
            'description': candidate.__doc__
            })
    return types


def formatField(field):
    return field.__class__.__name__

def formatChoice(field):
    choices = ', '.join([repr(choice) for choice in field.choices.keys()])
    return '%s of (%s)' %(field.__class__.__name__, choices)

def formatSequence(field):
    vtFormatter = typeFormatters.get(field.value_type.__class__, formatField)
    return '%s of %s' %(field.__class__.__name__, vtFormatter(field.value_type))

def formatGrid(field):
    vtFormatter = typeFormatters.get(field.value_type.__class__, formatField)
    return '%s with %i cols of %s' %(
        field.__class__.__name__, field.columns, vtFormatter(field.value_type))

def formatCombination(field):
    vts = [typeFormatters.get(vt.__class__, formatField)(vt)
           for vt in field.value_types]
    return '%s of %s' %(field.__class__.__name__, ', '.join(vts))

typeFormatters = {
    attr.Choice: formatChoice,
    attr.Sequence: formatSequence,
    attr.Combination: formatCombination,
    attr.TextNodeSequence: formatSequence,
    attr.TextNodeGrid: formatGrid}

def processSignature(name, signature, examples, directives=None):
    if directives is None:
        directives = {}
    # Process this directive
    if signature not in directives:
        info = {'name': name, 'description': signature.getDoc(),
                'id': str(hash(signature)), 'deprecated': False}
        # If directive is deprecated, then add some info
        if interfaces.IDeprecatedDirective.providedBy(signature):
            info['deprecated'] = True
            info['reason'] = signature.getTaggedValue('deprecatedReason')
        attrs = []
        content = None
        for fname, field in zope.schema.getFieldsInOrder(signature):
            # Handle the case, where the field describes the content
            typeFormatter = typeFormatters.get(field.__class__, formatField)
            fieldInfo = {
                'name': fname,
                'type': typeFormatter(field),
                'title': field.title,
                'description': field.description,
                'required': field.required,
                'deprecated': False,
                }
            if field.__class__ in CONTENT_FIELD_TYPES:
                content = fieldInfo
            else:
                attrs.append(fieldInfo)

            # Add a separate entry for the deprecated field
            if interfaces.IDeprecated.providedBy(field):
                deprFieldInfo = fieldInfo.copy()
                deprFieldInfo['deprecated'] = True
                deprFieldInfo['name'] = field.deprecatedName
                deprFieldInfo['reason'] = field.deprecatedReason
                attrs.append(deprFieldInfo)

        info['attributes'] = attrs
        info['content'] = content
        # Examples can be either gotten by interface path or tag name
        ifacePath = signature.__module__ + '.' + signature.__name__
        if ifacePath in examples:
            info['examples'] = examples[ifacePath]
        else:
            info['examples'] = examples.get(name, None)

        subs = []
        for occurence in signature.queryTaggedValue('directives', ()):
            subs.append({
                'name': occurence.tag,
                'occurence': occurence.__class__.__name__,
                'deprecated': interfaces.IDeprecatedDirective.providedBy(
                                 occurence.signature),
                'id': str(hash(occurence.signature))
                })
        info['sub-directives'] = subs
        directives[signature] = info
    # Process Children
    for occurence in signature.queryTaggedValue('directives', ()):
        processSignature(occurence.tag, occurence.signature,
                         examples, directives)


def extractExamples(directory):
    examples = {}
    for filename in os.listdir(directory):
        if not filename.endswith('.rml'):
            continue
        rmlFile = open(os.path.join(directory, filename), 'r')
        root = etree.parse(rmlFile).getroot()
        elements = root.xpath('//@doc:example/parent::*',
                              namespaces={'doc': EXAMPLE_NS})
        # Phase 1: Collect all elements
        for elem in elements:
            demoTag = elem.get(EXAMPLE_ATTR_NAME) or elem.tag
            elemExamples = examples.setdefault(demoTag, [])
            elemExamples.append({
                'filename': filename,
                'line': elem.sourceline,
                'element': elem,
                'rmlurl': INPUT_URL %filename,
                'pdfurl': EXPECTED_URL %(filename[:-4]+'.pdf')
                })
        # Phase 2: Render all elements
        removeDocAttributes(root)
        for dirExamples in examples.values():
            for example in dirExamples:
                xml = etree.tounicode(example['element']).strip()
                xml = re.sub(
                    ' ?xmlns:doc="http://namespaces.zope.org/rml/doc"', '', xml)
                xml = dedent(xml)
                xml = enforceColumns(xml, 80)
                xml = highlightRML(xml)
                example['code'] = xml

    return examples


def main():
    examples = extractExamples(EXAMPLES_DIRECTORY)

    template = pagetemplate.RMLPageTemplateFile('reference.pt')

    directives = {}
    processSignature('document', document.IDocument, examples, directives)
    directives = sorted(directives.values(), key=lambda d: d['name'])

    pdf = template(types=getAttributeTypes(), directives=directives)
    open('rml-reference.pdf', 'wb').write(pdf)


if __name__ == '__main__':
    main()
z3c.rml-2.0.0/src/z3c/rml/rml2pdfscript.py0000644000175000017500000001033112032774154021721 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""RML to PDF Converter

$Id: rml2pdf.py 74160 2007-04-15 22:04:24Z srichter $
"""
__docformat__ = "reStructuredText"
import subprocess
import sys
import os

_fileOpen = None

def excecuteSubProcess(xmlInputName, outputFileName, testing=None):
    # set the sys path given from the parent process
    sysPath = os.environ['Z3CRMLSYSPATH']
    sys.path[:] = sysPath.split(';')

    # now it come the ugly thing, but we need to hook our test changes into
    # our subprocess.
    if testing is not None:

        # set some globals
        import z3c.rml.attr
        import z3c.rml.directive
        global _fileOpen
        _fileOpen = z3c.rml.attr.File.open
        def testOpen(img, filename):
            # cleanup win paths like:
            # ....\\input\\file:///D:\\trunk\\...
            if sys.platform[:3].lower() == "win":
                if filename.startswith('file:///'):
                    filename = filename[len('file:///'):]
            path = os.path.join(os.path.dirname(xmlInputName), filename)
            return open(path, 'rb')
        # override some testing stuff for our tests
        z3c.rml.attr.File.open = testOpen
        import z3c.rml.tests.module
        sys.modules['module'] = z3c.rml.tests.module
        sys.modules['mymodule'] = z3c.rml.tests.module

    # import rml and process the pdf
    from z3c.rml import rml2pdf
    rml2pdf.go(xmlInputName, outputFileName)

    if testing is not None:
        # reset some globals
        z3c.rml.attr.File.open = _fileOpen
        del sys.modules['module']
        del sys.modules['mymodule']


def goSubProcess(xmlInputName, outputFileName, testing=False):
    """Processes PDF rendering in a sub process.

    This method is much slower then the ``go`` method defined in rml2pdf.py
    because each PDF generation is done in a sub process. But this will make
    sure, that we do not run into problems. Note, the ReportLab lib is not
    threadsafe.

    Use this method from python and it will dispatch the pdf generation
    to a subprocess.

    Note: this method does not take care on how much process will started.
    Probably it's a good idea to use a queue or a global utility which only
    start a predefined amount of sub processes.
    """
    # get the sys path used for this python process
    env = os.environ
    sysPath = ';'.join(sys.path)
    # set the sys path as env var for the new sub process
    env['Z3CRMLSYSPATH'] = sysPath
    py = sys.executable

    # setup the cmd
    program = [py, __file__, 'excecuteSubProcess', xmlInputName, outputFileName]
    if testing is True:
        program.append('testing=1')
    program = " ".join(program)

    # run the subprocess in the rml input file folder, this will make it easy
    # to include images. If this doesn't fit, feel free to add a additional
    # home argument, and let this be the default, ri
    os.chdir(os.path.dirname(xmlInputName))

    # start processing in a sub process, raise exception or return None
    try:
        p = subprocess.Popen(program, executable=py, env=env,
            stdin=subprocess.PIPE, stdout=subprocess.PIPE,
            stderr=subprocess.PIPE)
    except Exception, e:
        raise Exception("Subprocess error: %s" % e)

    # Do we need to improve the implementation and kill the subprocess which will
    # fail? ri
    stdout, stderr = p.communicate()
    error = stderr
    if error:
        raise Exception("Subprocess error: %s" % error)


if __name__ == '__main__':
    if len(sys.argv) == 5:
        #testing support
        canvas = excecuteSubProcess(sys.argv[2], sys.argv[3], sys.argv[4])
    else:
        canvas = excecuteSubProcess(sys.argv[2], sys.argv[3])

z3c.rml-2.0.0/src/z3c/rml/special.py0000664000175000017500000000526412064434366020564 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Special Element Processing

$Id: special.py 128797 2012-12-19 22:00:20Z srichter $
"""
__docformat__ = "reStructuredText"
from z3c.rml import attr, directive, interfaces


class IName(interfaces.IRMLDirectiveSignature):
    """Defines a name for a string."""

    id = attr.String(
        title=u'Id',
        description=u'The id under which the value will be known.',
        required=True)

    value = attr.Text(
        title=u'Value',
        description=u'The text that is displayed if the id is called.',
        required=True)

class Name(directive.RMLDirective):
    signature = IName

    def process(self):
        id, value = self.getAttributeValues(valuesOnly=True)
        manager = attr.getManager(self)
        manager.names[id] = value


class IGetName(interfaces.IRMLDirectiveSignature):
    """Get the text for the id."""

    id = attr.String(
        title=u'Id',
        description=u'The id as which the value is known.',
        required=True)

class GetName(directive.RMLDirective):
    signature = IGetName

    def process(self):
        id = dict(self.getAttributeValues()).pop('id')
        manager = attr.getManager(self)
        try:
            text = manager.names[id] + (self.element.tail or u'')
        except:
            import pdb; pdb.set_trace()
        # Now replace the element with the text
        parent = self.element.getparent()
        if parent.text is None:
            parent.text = text
        else:
            parent.text += text
        parent.remove(self.element)


class IAlias(interfaces.IRMLDirectiveSignature):
    """Defines an alias for a given style."""

    id = attr.String(
        title=u'Id',
        description=u'The id as which the style will be known.',
        required=True)

    value = attr.Style(
        title=u'Value',
        description=u'The style that is represented.',
        required=True)

class Alias(directive.RMLDirective):
    signature = IAlias

    def process(self):
        id, value = self.getAttributeValues(valuesOnly=True)
        manager = attr.getManager(self)
        manager.styles[id] = value
z3c.rml-2.0.0/src/z3c/rml/pagetemplate.txt0000644000175000017500000000335712032774152021775 0ustar  srichtersrichter00000000000000==================
RML Page Templates
==================

This package also provides optional support a helper class to use page
templates with RML without using the entire Zope framework. This document will
demonstrate how to use page templates and RML together.

In this example, we will simply iterate through a list of names and display
them in the PDF.

The first step is to create a page template:

  >>> import tempfile
  >>> ptFileName = tempfile.mktemp('.pt')
  >>> open(ptFileName, 'w').write('''\
  ... 
  ... 
  ... 
  ...
  ...   
  ...
  ...   
  ...     
  ...   
  ...
  ... 
  ... ''')

The ``context`` namespace will be created during rendering. I get back to this
later. In th enext step we instantiate the page template:

  >>> from z3c.rml import pagetemplate
  >>> rmlPageTemplate = pagetemplate.RMLPageTemplateFile(ptFileName)

All we have to do now is to render the template. The context of the template
is effectively the keyword arguments dictionary:

  >>> rmlPageTemplate(names=(u'Roy', u'Daniel', u'Julian', u'Stephan'))
  '%PDF-1.4...'

You can uncomment the following line to write out the PDF in the current
working directory:

  #>>> open('pagetemplate-test.pdf', 'w').write(
  #...   rmlPageTemplate(names=(u'Roy', u'Daniel', u'Julian', u'Stephan')))
z3c.rml-2.0.0/src/z3c/rml/stylesheet.py0000664000175000017500000005153512064507365021337 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Style Related Element Processing

$Id: stylesheet.py 128798 2012-12-20 04:07:15Z srichter $
"""
__docformat__ = "reStructuredText"
import copy
import reportlab.lib.styles
import reportlab.lib.enums
import reportlab.platypus
from z3c.rml import attr, directive, interfaces, occurence, special


class IInitialize(interfaces.IRMLDirectiveSignature):
    """Do some RML processing initialization."""
    occurence.containing(
        occurence.ZeroOrMore('name', special.IName),
        occurence.ZeroOrMore('alias', special.IAlias),
        )

class Initialize(directive.RMLDirective):
    signature = IInitialize
    factories = {
        'name': special.Name,
        'alias': special.Alias,
        }


class IBaseParagraphStyle(interfaces.IRMLDirectiveSignature):

    fontName = attr.String(
        title=u'Font Name',
        description=u'The name of the font for the paragraph.',
        required=False)

    fontSize = attr.Measurement(
        title=u'Font Size',
        description=u'The font size for the text of the paragraph.',
        required=False)

    leading = attr.Measurement(
        title=u'Leading',
        description=(u'The height of a single paragraph line. It includes '
                     u'character height.'),
        required=False)

    leftIndent = attr.Measurement(
        title=u'Left Indentation',
        description=u'General indentation on the left side.',
        required=False)

    rightIndent = attr.Measurement(
        title=u'Right Indentation',
        description=u'General indentation on the right side.',
        required=False)

    firstLineIndent = attr.Measurement(
        title=u'First Line Indentation',
        description=u'The indentation of the first line in the paragraph.',
        required=False)

    alignment = attr.Choice(
        title=u'Alignment',
        description=u'The text alignment.',
        choices=interfaces.ALIGN_CHOICES,
        required=False)

    spaceBefore = attr.Measurement(
        title=u'Space Before',
        description=u'The vertical space before the paragraph.',
        required=False)

    spaceAfter = attr.Measurement(
        title=u'Space After',
        description=u'The vertical space after the paragraph.',
        required=False)

    bulletFontName = attr.String(
        title=u'Bullet Font Name',
        description=u'The font in which the bullet character will be rendered.',
        required=False)

    bulletFontSize = attr.Measurement(
        title=u'Bullet Font Size',
        description=u'The font size of the bullet character.',
        required=False)

    bulletIndent = attr.Measurement(
        title=u'Bullet Indentation',
        description=u'The indentation that is kept for a bullet point.',
        required=False)

    textColor = attr.Color(
        title=u'Text Color',
        description=u'The color in which the text will appear.',
        required=False)

    backColor = attr.Color(
        title=u'Background Color',
        description=u'The background color of the paragraph.',
        required=False)

    wordWrap = attr.String(
        title=u'Word Wrap Method',
        description=(u'When set to "CJK", invoke CJK word wrapping'),
        required=False)

    borderWidth = attr.Measurement(
        title=u'Paragraph Border Width',
        description=u'The width of the paragraph border.',
        required=False)

    borderPadding = attr.Padding(
        title=u'Paragraph Border Padding',
        description=u'Padding of the paragraph.',
        required=False)

    borderColor = attr.Color(
        title=u'Border Color',
        description=u'The color in which the paragraph border will appear.',
        required=False)

    borderRadius = attr.Measurement(
        title=u'Paragraph Border Radius',
        description=u'The radius of the paragraph border.',
        required=False)

    allowWidows = attr.Boolean(
        title=u'Allow Widows',
        description=(u'Allow widows.'),
        required=False)

    allowOrphans = attr.Boolean(
        title=u'Allow Orphans',
        description=(u'Allow orphans.'),
        required=False)

    textTransforms = attr.Choice(
        title=u'Text Transforms',
        description=u'Text transformations.',
        choices=interfaces.TEXT_TRANSFORM_CHOICES,
        required=False)

    endDots = attr.String(
        title=u'End Dots',
        description=u'Characters/Dots at the end of a paragraph.',
        required=False)

    # Attributes not part of the official style attributes, but are accessed
    # by the paragraph renderer.

    keepWithNext = attr.Boolean(
        title=u'Keep with Next',
        description=(u'When set, this paragraph will always be in the same '
                     u'frame as the following flowable.'),
        required=False)

    pageBreakBefore = attr.Boolean(
        title=u'Page Break Before',
        description=(u'Specifies whether a page break should be inserted '
                     u'before the directive.'),
        required=False)

    frameBreakBefore = attr.Boolean(
        title=u'Frame Break Before',
        description=(u'Specifies whether a frame break should be inserted '
                     u'before the directive.'),
        required=False)


class IParagraphStyle(IBaseParagraphStyle):
    """Defines a paragraph style and gives it a name."""

    name = attr.String(
        title=u'Name',
        description=u'The name of the style.',
        required=True)

    alias = attr.String(
        title=u'Alias',
        description=u'An alias under which the style will also be known as.',
        required=False)

    parent = attr.Style(
        title=u'Parent',
        description=(u'The apragraph style that will be used as a base for '
                     u'this one.'),
        required=False)

class ParagraphStyle(directive.RMLDirective):
    signature = IParagraphStyle

    def process(self):
        kwargs = dict(self.getAttributeValues())
        parent = kwargs.pop(
            'parent', reportlab.lib.styles.getSampleStyleSheet()['Normal'])
        name = kwargs.pop('name')
        style = copy.deepcopy(parent)
        style.name = name[6:] if name.startswith('style.') else name

        for name, value in kwargs.items():
            setattr(style, name, value)

        manager = attr.getManager(self)
        manager.styles[style.name] = style


class ITableStyleCommand(interfaces.IRMLDirectiveSignature):

    start = attr.Sequence(
        title=u'Start Coordinates',
        description=u'The start table coordinates for the style instruction',
        value_type=attr.Combination(
            value_types=(attr.Integer(),
                         attr.Choice(choices=interfaces.SPLIT_CHOICES))
            ),
        default=[0, 0],
        min_length=2,
        max_length=2,
        required=True)

    stop = attr.Sequence(
        title=u'End Coordinates',
        description=u'The end table coordinates for the style instruction',
        value_type=attr.Combination(
            value_types=(attr.Integer(),
                         attr.Choice(choices=interfaces.SPLIT_CHOICES))
            ),
        default=[-1, -1],
        min_length=2,
        max_length=2,
        required=True)

class TableStyleCommand(directive.RMLDirective):
    name = None

    def process(self):
        args = [self.name]
        args += self.getAttributeValues(valuesOnly=True)
        self.parent.style.add(*args)


class IBlockFont(ITableStyleCommand):
    """Set the font properties for the texts."""

    name = attr.String(
        title=u'Font Name',
        description=u'The name of the font for the cell.',
        required=False)

    size = attr.Measurement(
        title=u'Font Size',
        description=u'The font size for the text of the cell.',
        required=False)

    leading = attr.Measurement(
        title=u'Leading',
        description=(u'The height of a single text line. It includes '
                     u'character height.'),
        required=False)

class BlockFont(TableStyleCommand):
    signature = IBlockFont
    name = 'FONT'

class IBlockLeading(ITableStyleCommand):
    """Set the text leading."""

    length = attr.Measurement(
        title=u'Length',
        description=(u'The height of a single text line. It includes '
                     u'character height.'),
        required=True)

class BlockLeading(TableStyleCommand):
    signature = IBlockLeading
    name = 'LEADING'

class IBlockTextColor(ITableStyleCommand):
    """Set the text color."""

    colorName = attr.Color(
        title=u'Color Name',
        description=u'The color in which the text will appear.',
        required=True)

class BlockTextColor(TableStyleCommand):
    signature = IBlockTextColor
    name = 'TEXTCOLOR'

class IBlockAlignment(ITableStyleCommand):
    """Set the text alignment."""

    value = attr.Choice(
        title=u'Text Alignment',
        description=u'The text alignment within the cell.',
        choices=interfaces.ALIGN_TEXT_CHOICES,
        required=True)

class BlockAlignment(TableStyleCommand):
    signature = IBlockAlignment
    name = 'ALIGNMENT'

class IBlockLeftPadding(ITableStyleCommand):
    """Set the left padding of the cells."""

    length = attr.Measurement(
        title=u'Length',
        description=u'The size of the padding.',
        required=True)

class BlockLeftPadding(TableStyleCommand):
    signature = IBlockLeftPadding
    name = 'LEFTPADDING'

class IBlockRightPadding(ITableStyleCommand):
    """Set the right padding of the cells."""

    length = attr.Measurement(
        title=u'Length',
        description=u'The size of the padding.',
        required=True)

class BlockRightPadding(TableStyleCommand):
    signature = IBlockRightPadding
    name = 'RIGHTPADDING'

class IBlockBottomPadding(ITableStyleCommand):
    """Set the bottom padding of the cells."""

    length = attr.Measurement(
        title=u'Length',
        description=u'The size of the padding.',
        required=True)

class BlockBottomPadding(TableStyleCommand):
    signature = IBlockBottomPadding
    name = 'BOTTOMPADDING'

class IBlockTopPadding(ITableStyleCommand):
    """Set the top padding of the cells."""

    length = attr.Measurement(
        title=u'Length',
        description=u'The size of the padding.',
        required=True)

class BlockTopPadding(TableStyleCommand):
    signature = IBlockTopPadding
    name = 'TOPPADDING'

class IBlockBackground(ITableStyleCommand):
    """Define the background color of the cells.

    It also supports alternating colors.
    """

    colorName = attr.Color(
        title=u'Color Name',
        description=u'The color to use as the background for every cell.',
        required=False)

    colorsByRow = attr.Sequence(
        title=u'Colors By Row',
        description=u'A list of colors to be used circularly for rows.',
        value_type=attr.Color(acceptNone=True),
        required=False)

    colorsByCol = attr.Sequence(
        title=u'Colors By Column',
        description=u'A list of colors to be used circularly for columns.',
        value_type=attr.Color(acceptNone=True),
        required=False)

class BlockBackground(TableStyleCommand):
    signature = IBlockBackground
    name = 'BACKGROUND'

    def process(self):
        args = [self.name]
        if 'colorsByRow' in self.element.keys():
            args = [BlockRowBackground.name]
        elif 'colorsByCol' in self.element.keys():
            args = [BlockColBackground.name]

        args += self.getAttributeValues(valuesOnly=True)
        self.parent.style.add(*args)

class IBlockRowBackground(ITableStyleCommand):
    """Define the background colors for rows."""

    colorNames = attr.Sequence(
        title=u'Colors By Row',
        description=u'A list of colors to be used circularly for rows.',
        value_type=attr.Color(),
        required=True)

class BlockRowBackground(TableStyleCommand):
    signature = IBlockRowBackground
    name = 'ROWBACKGROUNDS'

class IBlockColBackground(ITableStyleCommand):
    """Define the background colors for columns."""

    colorNames = attr.Sequence(
        title=u'Colors By Row',
        description=u'A list of colors to be used circularly for rows.',
        value_type=attr.Color(),
        required=True)

class BlockColBackground(TableStyleCommand):
    signature = IBlockColBackground
    name = 'COLBACKGROUNDS'

class IBlockValign(ITableStyleCommand):
    """Define the vertical alignment of the cells."""

    value = attr.Choice(
        title=u'Vertical Alignment',
        description=u'The vertical alignment of the text with the cells.',
        choices=interfaces.VALIGN_TEXT_CHOICES,
        required=True)

class BlockValign(TableStyleCommand):
    signature = IBlockValign
    name = 'VALIGN'

class IBlockSpan(ITableStyleCommand):
    """Define a span over multiple cells (rows and columns)."""

class BlockSpan(TableStyleCommand):
    signature = IBlockSpan
    name = 'SPAN'

class ILineStyle(ITableStyleCommand):
    """Define the border line style of each cell."""

    kind = attr.Choice(
        title=u'Kind',
        description=u'The kind of line actions to be taken.',
        choices=('GRID', 'BOX', 'OUTLINE', 'INNERGRID',
                 'LINEBELOW', 'LINEABOVE', 'LINEBEFORE', 'LINEAFTER'),
        required=True)

    thickness = attr.Measurement(
        title=u'Thickness',
        description=u'Line Thickness',
        default=1,
        required=True)

    colorName = attr.Color(
        title=u'Color',
        description=u'The color of the border line.',
        default=None,
        required=True)

    cap = attr.Choice(
        title=u'Cap',
        description=u'The cap at the end of a border line.',
        choices=interfaces.CAP_CHOICES,
        default=1,
        required=True)

    dash = attr.Sequence(
        title=u'Dash-Pattern',
        description=u'The dash-pattern of a line.',
        value_type=attr.Measurement(),
        default=None,
        required=False)

    join = attr.Choice(
        title=u'Join',
        description=u'The way lines are joined together.',
        choices=interfaces.JOIN_CHOICES,
        default=1,
        required=False)

    count = attr.Integer(
        title=u'Count',
        description=(u'Describes whether the line is a single (1) or '
                     u'double (2) line.'),
        default=1,
        required=False)

class LineStyle(TableStyleCommand):
    signature = ILineStyle

    def process(self):
        name = self.getAttributeValues(select=('kind',), valuesOnly=True)[0]
        args = [name]
        args += self.getAttributeValues(ignore=('kind',), valuesOnly=True)
        self.parent.style.add(*args)

class IBlockTableStyle(interfaces.IRMLDirectiveSignature):
    """A style defining the look of a table."""
    occurence.containing(
        occurence.ZeroOrMore('blockFont', IBlockFont),
        occurence.ZeroOrMore('blockLeading', IBlockLeading),
        occurence.ZeroOrMore('blockTextColor', IBlockTextColor),
        occurence.ZeroOrMore('blockAlignment', IBlockAlignment),
        occurence.ZeroOrMore('blockLeftPadding', IBlockLeftPadding),
        occurence.ZeroOrMore('blockRightPadding', IBlockRightPadding),
        occurence.ZeroOrMore('blockBottomPadding', IBlockBottomPadding),
        occurence.ZeroOrMore('blockTopPadding', IBlockTopPadding),
        occurence.ZeroOrMore('blockBackground', IBlockBackground),
        occurence.ZeroOrMore('blockRowBackground', IBlockRowBackground),
        occurence.ZeroOrMore('blockColBackground', IBlockColBackground),
        occurence.ZeroOrMore('blockValign', IBlockValign),
        occurence.ZeroOrMore('blockSpan', IBlockSpan),
        occurence.ZeroOrMore('lineStyle', ILineStyle)
        )

    id = attr.String(
        title=u'Id',
        description=u'The name/id of the style.',
        required=True)

    keepWithNext = attr.Boolean(
        title=u'Keep with Next',
        description=(u'When set, this paragraph will always be in the same '
                     u'frame as the following flowable.'),
        required=False)

class BlockTableStyle(directive.RMLDirective):
    signature = IBlockTableStyle

    factories = {
        'blockFont': BlockFont,
        'blockLeading': BlockLeading,
        'blockTextColor': BlockTextColor,
        'blockAlignment': BlockAlignment,
        'blockLeftPadding': BlockLeftPadding,
        'blockRightPadding': BlockRightPadding,
        'blockBottomPadding': BlockBottomPadding,
        'blockTopPadding': BlockTopPadding,
        'blockBackground': BlockBackground,
        'blockRowBackground': BlockRowBackground,
        'blockColBackground': BlockColBackground,
        'blockValign': BlockValign,
        'blockSpan': BlockSpan,
        'lineStyle': LineStyle,
        }

    def process(self):
        kw = dict(self.getAttributeValues())
        id  = kw.pop('id')
        # Create Style
        self.style = reportlab.platypus.tables.TableStyle()
        for name, value in kw.items():
            setattr(self.style, name, value)
        # Fill style
        self.processSubDirectives()
        # Add style to the manager
        manager = attr.getManager(self)
        manager.styles[id] = self.style


class IMinimalListStyle(interfaces.IRMLDirectiveSignature):

    leftIndent = attr.Measurement(
        title=u'Left Indentation',
        description=u'General indentation on the left side.',
        required=False)

    rightIndent = attr.Measurement(
        title=u'Right Indentation',
        description=u'General indentation on the right side.',
        required=False)

    bulletColor = attr.Color(
        title=u'Bullet Color',
        description=u'The color in which the bullet will appear.',
        required=False)

    bulletFontName = attr.String(
        title=u'Bullet Font Name',
        description=u'The font in which the bullet character will be rendered.',
        required=False)

    bulletFontSize = attr.Measurement(
        title=u'Bullet Font Size',
        description=u'The font size of the bullet character.',
        required=False)

    bulletOffsetY = attr.Measurement(
        title=u'Bullet Y-Offset',
        description=u'The vertical offset of the bullet.',
        required=False)

    bulletDedent = attr.StringOrInt(
        title=u'Bullet Dedent',
        description=u'Either pixels of dedent or auto (default).',
        required=False)

    bulletDir = attr.Choice(
        title=u'Bullet Layout Direction',
        description=u'The layout direction of the bullet.',
        choices=('ltr', 'rtl'),
        required=False)

    bulletFormat = attr.String(
        title=u'Bullet Format',
        description=u'A formatting expression for the bullet text.',
        required=False)

class IBaseListStyle(IMinimalListStyle):

    start = attr.Combination(
        title=u'Start Value',
        description=u'The counter start value.',
        value_types=(attr.Integer(),
                     attr.Choice(choices=interfaces.UNORDERED_BULLET_VALUES)),
        required=False)


class IListStyle(IBaseListStyle):
    """Defines a list style and gives it a name."""

    name = attr.String(
        title=u'Name',
        description=u'The name of the style.',
        required=True)

    parent = attr.Style(
        title=u'Parent',
        description=(u'The list style that will be used as a base for '
                     u'this one.'),
        required=False)


class ListStyle(directive.RMLDirective):
    signature = IListStyle

    def process(self):
        kwargs = dict(self.getAttributeValues())
        parent = kwargs.pop(
            'parent', reportlab.lib.styles.ListStyle(name='List'))
        name = kwargs.pop('name')
        style = copy.deepcopy(parent)
        style.name = name[6:] if name.startswith('style.') else name

        for name, value in kwargs.items():
            setattr(style, name, value)

        manager = attr.getManager(self)
        manager.styles[style.name] = style


class IStylesheet(interfaces.IRMLDirectiveSignature):
    """A styleheet defines the styles that can be used in the document."""
    occurence.containing(
        occurence.ZeroOrOne('initialize', IInitialize),
        occurence.ZeroOrMore('paraStyle', IParagraphStyle),
        occurence.ZeroOrMore('blockTableStyle', IBlockTableStyle),
        occurence.ZeroOrMore('listStyle', IListStyle),
        # TODO:
        #occurence.ZeroOrMore('boxStyle', IBoxStyle),
        )

class Stylesheet(directive.RMLDirective):
    signature = IStylesheet

    factories = {
        'initialize': Initialize,
        'paraStyle': ParagraphStyle,
        'blockTableStyle': BlockTableStyle,
        'listStyle': ListStyle,
        }
z3c.rml-2.0.0/src/z3c/rml/rml.dtd0000664000175000017500000025260312065004045020046 0ustar  srichtersrichter00000000000000































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































z3c.rml-2.0.0/src/z3c/rml/page.py0000644000175000017500000000573712032774154020060 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Page Drawing Related Element Processing

$Id: page.py 73806 2007-03-28 03:11:03Z srichter $
"""
__docformat__ = "reStructuredText"
import cStringIO
from z3c.rml import attr, directive, interfaces

try:
    import pyPdf
except ImportError:
    # We don't want to require pyPdf, if you do not want to use the features
    # in this module.
    pyPdf = None

class MergePostProcessor(object):

    def __init__(self):
        self.operations = {}

    def process(self, inputFile1):
        input1 = pyPdf.PdfFileReader(inputFile1)
        output = pyPdf.PdfFileWriter()
        for (num, page) in enumerate(input1.pages):
            if num in self.operations:
                for mergeFile, mergeNumber in self.operations[num]:
                    merger = pyPdf.PdfFileReader(mergeFile)
                    mergerPage = merger.getPage(mergeNumber)
                    mergerPage.mergePage(page)
                    page = mergerPage
            output.addPage(page)

        outputFile = cStringIO.StringIO()
        output.write(outputFile)
        return outputFile


class IMergePage(interfaces.IRMLDirectiveSignature):
    """Merges an existing PDF Page into the one to be generated."""

    filename = attr.File(
        title=u'File',
        description=(u'Reference to the PDF file to extract the page from.'),
        required=True)

    page = attr.Integer(
        title=u'Page Number',
        description=u'The page number of the PDF file that is used to merge..',
        required=True)


class MergePage(directive.RMLDirective):
    signature = IMergePage

    def getProcessor(self):
        manager = attr.getManager(self, interfaces.IPostProcessorManager)
        procs = dict(manager.postProcessors)
        if 'MERGE' not in procs:
            proc = MergePostProcessor()
            manager.postProcessors.append(('MERGE', proc))
            return proc
        return procs['MERGE']

    def process(self):
        if pyPdf is None:
            raise Exception(
                'pyPdf is not installed, so this feature is not available.')
        inputFile, inPage = self.getAttributeValues(valuesOnly=True)
        manager = attr.getManager(self, interfaces.ICanvasManager)
        outPage = manager.canvas.getPageNumber()-1

        proc = self.getProcessor()
        pageOperations = proc.operations.setdefault(outPage, [])
        pageOperations.append((inputFile, inPage))
z3c.rml-2.0.0/src/z3c/rml/form.py0000664000175000017500000002524212064637043020102 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Page Drawing Related Element Processing

$Id: form.py 128806 2012-12-20 16:34:40Z srichter $
"""
__docformat__ = "reStructuredText"
import types
import reportlab.pdfbase.pdfform
from z3c.rml import attr, directive, interfaces, occurence

try:
    import reportlab.graphics.barcode
except ImportError:
    # barcode package has not been installed
    import types
    import reportlab.graphics
    reportlab.graphics.barcode = types.ModuleType('barcode')
    reportlab.graphics.barcode.getCodeNames = lambda : ()


class IBarCodeBase(interfaces.IRMLDirectiveSignature):
    """Create a bar code."""

    code = attr.Choice(
        title=u'Code',
        description=u'The name of the type of code to use.',
        choices=reportlab.graphics.barcode.getCodeNames(),
        required=True)

    value = attr.TextNode(
        title=u'Value',
        description=u'The value represented by the code.',
        required=True)

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the barcode.',
        required=False)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the barcode.',
        required=False)

    barStrokeColor = attr.Color(
        title=u'Bar Stroke Color',
        description=(u'The color of the line strokes in the barcode.'),
        required=False)

    barStrokeWidth = attr.Measurement(
        title=u'Bar Stroke Width',
        description=u'The width of the line strokes in the barcode.',
        required=False)

    barFillColor = attr.Color(
        title=u'Bar Fill Color',
        description=(u'The color of the filled shapes in the barcode.'),
        required=False)

    gap = attr.Measurement(
        title=u'Gap',
        description=u'The width of the inter-character gaps.',
        required=False)

    # Bar code dependent attributes
    # I2of5, Code128, Standard93, FIM, POSTNET, Ean13B
    barWidth = attr.Measurement(
        title=u'Bar Width',
        description=u'The width of the smallest bar within the barcode',
        required=False)

    # I2of5, Code128, Standard93, FIM, POSTNET
    barHeight = attr.Measurement(
        title=u'Bar Height',
        description=u'The height of the symbol.',
        required=False)

    # I2of5
    ratio = attr.Float(
        title=u'Ratio',
        description=(u'The ratio of wide elements to narrow elements. '
                     u'Must be between 2.0 and 3.0 (or 2.2 and 3.0 if the '
                     u'barWidth is greater than 20 mils (.02 inch)).'),
        min=2.0,
        max=3.0,
        required=False)

    # I2of5
    # Should be boolean, but some code want it as int; will still work
    checksum = attr.Integer(
        title=u'Ratio',
        description=(u'A flag that enables the computation and inclusion of '
                     u'the check digit.'),
        required=False)

    # I2of5
    bearers = attr.Float(
        title=u'Bearers',
        description=(u'Height of bearer bars (horizontal bars along the top '
                     u'and bottom of the barcode). Default is 3 '
                     u'x-dimensions. Set to zero for no bearer bars.'
                     u'(Bearer bars help detect misscans, so it is '
                     u'suggested to leave them on).'),
        required=False)

    # I2of5, Code128, Standard93, FIM, Ean13
    quiet = attr.Boolean(
        title=u'Quiet Zone',
        description=(u'A flag to include quiet zones in the symbol.'),
        required=False)

    # I2of5, Code128, Standard93, FIM, Ean13
    lquiet = attr.Measurement(
        title=u'Left Quiet Zone',
        description=(u"Quiet zone size to the left of code, if quiet is "
                     u"true. Default is the greater of .25 inch or .15 times "
                     u"the symbol's length."),
        required=False)

    # I2of5, Code128, Standard93, FIM, Ean13
    rquiet = attr.Measurement(
        title=u'Right Quiet Zone',
        description=(u"Quiet zone size to the right of code, if quiet is "
                     u"true. Default is the greater of .25 inch or .15 times "
                     u"the symbol's length."),
        required=False)

    # I2of5, Code128, Standard93, FIM, POSTNET, Ean13
    fontName = attr.String(
        title=u'Font Name',
        description=(u'The font used to print the value.'),
        required=False)

    # I2of5, Code128, Standard93, FIM, POSTNET, Ean13
    fontSize = attr.Measurement(
        title=u'Font Size',
        description=(u'The size of the value text.'),
        required=False)

    # I2of5, Code128, Standard93, FIM, POSTNET, Ean13
    humanReadable = attr.Boolean(
        title=u'Human Readable',
        description=(u'A flag when set causes the value to be printed below '
                     u'the bar code.'),
        required=False)

    # I2of5, Standard93
    stop = attr.Boolean(
        title=u'Show Start/Stop',
        description=(u'A flag to specify whether the start/stop symbols '
                     u'are to be shown.'),
        required=False)

    # FIM, POSTNET
    spaceWidth = attr.Measurement(
        title=u'Space Width',
        description=u'The space of the inter-character gaps.',
        required=False)

    # POSTNET
    shortHeight = attr.Measurement(
        title=u'Short Height',
        description=u'The height of the short bar.',
        required=False)

    # Ean13
    textColor = attr.Color(
        title=u'Text Color',
        description=(u'The color of human readable text.'),
        required=False)

    # USPS4S
    routing = attr.String(
        title=u'Routing',
        description=u'The routing information string.',
        required=False)


class IBarCode(IBarCodeBase):
    """A barcode graphic."""

    x = attr.Measurement(
        title=u'X-Position',
        description=u'The x-position of the lower-left corner of the barcode.',
        default=0,
        required=False)

    y = attr.Measurement(
        title=u'Y-Position',
        description=u'The y-position of the lower-left corner of the barcode.',
        default=0,
        required=False)

    isoScale = attr.Boolean(
        title=u'Isometric Scaling',
        description=u'When set, the aspect ration of the barcode is enforced.',
        required=False)

class BarCode(directive.RMLDirective):
    signature = IBarCode

    def process(self):
        kw = dict(self.getAttributeValues())
        name = kw.pop('code')
        kw['value'] = str(kw['value'])
        x = kw.pop('x', 0)
        y = kw.pop('y', 0)
        code = reportlab.graphics.barcode.createBarcodeDrawing(name, **kw)
        manager = attr.getManager(self, interfaces.ICanvasManager)
        code.drawOn(manager.canvas, x, y)


class IField(interfaces.IRMLDirectiveSignature):
    """A field."""

    title = attr.Text(
        title=u'Title',
        description=u'The title of the field.',
        required=True)

    x = attr.Measurement(
        title=u'X-Position',
        description=u'The x-position of the lower-left corner of the field.',
        default=0,
        required=True)

    y = attr.Measurement(
        title=u'Y-Position',
        description=u'The y-position of the lower-left corner of the field.',
        default=0,
        required=True)


class Field(directive.RMLDirective):
    signature = IField
    callable = None
    attrMapping = {}

    def process(self):
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        getattr(reportlab.pdfbase.pdfform, self.callable)(canvas, **kwargs)


class ITextField(IField):
    """A text field within the PDF"""

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the text field.',
        required=True)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the text field.',
        required=True)

    value = attr.Text(
        title=u'Value',
        description=u'The default text value of the field.',
        required=False)

    maxLength = attr.Integer(
        title=u'Maximum Length',
        description=u'The maximum amount of characters allowed in the field.',
        required=False)

    multiline = attr.Boolean(
        title=u'Multiline',
        description=u'A flag when set allows multiple lines within the field.',
        required=False)

class TextField(Field):
    signature = ITextField
    callable = 'textFieldAbsolute'
    attrMapping = {'maxLength': 'maxlen'}


class IButtonField(IField):
    """A button field within the PDF"""

    value = attr.Choice(
        title=u'Value',
        description=u'The value of the button.',
        choices=('Yes', 'Off'),
        required=True)

class ButtonField(Field):
    signature = IButtonField
    callable = 'buttonFieldAbsolute'


class IOption(interfaces.IRMLDirectiveSignature):
    """An option in the select field."""

    value = attr.TextNode(
        title=u'Value',
        description=u'The value of the option.',
        required=True)

class Option(directive.RMLDirective):
    signature = IOption

    def process(self):
        value = self.getAttributeValues(valuesOnly=True)[0]
        self.parent.options.append(value)


class ISelectField(IField):
    """A selection field within the PDF"""
    occurence.containing(
        occurence.ZeroOrMore('option', IOption))

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the select field.',
        required=True)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the select field.',
        required=True)

    value = attr.Text(
        title=u'Value',
        description=u'The default value of the field.',
        required=False)

class SelectField(Field):
    signature = ISelectField
    callable = 'selectFieldAbsolute'
    factories = {'option': Option}

    def process(self):
        self.options = []
        self.processSubDirectives()
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        kwargs['options'] = self.options
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        getattr(reportlab.pdfbase.pdfform, self.callable)(canvas, **kwargs)
z3c.rml-2.0.0/src/z3c/rml/rml-reference.pdf0000664000175000017500000203406512065003334022002 0ustar  srichtersrichter00000000000000%PDF-1.4
%東京 ReportLab Generated PDF document http://www.reportlab.com
% 'BasicFonts': class PDFDictionary 
1 0 obj
% The standard fonts dictionary
<< /F1 2 0 R
 /F2 4 0 R
 /F3 5 0 R
 /F4 7 0 R
 /F5 10 0 R
 /F6 11 0 R
 /F7 12 0 R >>
endobj
% 'F1': class PDFType1Font 
2 0 obj
% Font Helvetica
<< /BaseFont /Helvetica
 /Encoding /WinAnsiEncoding
 /Name /F1
 /Subtype /Type1
 /Type /Font >>
endobj
% 'Page1': class PDFPage 
3 0 obj
% Page dictionary
<< /Contents 1248 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'F2': class PDFType1Font 
4 0 obj
% Font Helvetica-Bold
<< /BaseFont /Helvetica-Bold
 /Encoding /WinAnsiEncoding
 /Name /F2
 /Subtype /Type1
 /Type /Font >>
endobj
% 'F3': class PDFType1Font 
5 0 obj
% Font Times-Roman
<< /BaseFont /Times-Roman
 /Encoding /WinAnsiEncoding
 /Name /F3
 /Subtype /Type1
 /Type /Font >>
endobj
% 'Page2': class PDFPage 
6 0 obj
% Page dictionary
<< /Contents 1249 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'F4': class PDFType1Font 
7 0 obj
% Font Times-Bold
<< /BaseFont /Times-Bold
 /Encoding /WinAnsiEncoding
 /Name /F4
 /Subtype /Type1
 /Type /Font >>
endobj
% 'Page3': class PDFPage 
8 0 obj
% Page dictionary
<< /Contents 1250 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page4': class PDFPage 
9 0 obj
% Page dictionary
<< /Contents 1251 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'F5': class PDFType1Font 
10 0 obj
% Font Times-BoldItalic
<< /BaseFont /Times-BoldItalic
 /Encoding /WinAnsiEncoding
 /Name /F5
 /Subtype /Type1
 /Type /Font >>
endobj
% 'F6': class PDFType1Font 
11 0 obj
% Font Times-Italic
<< /BaseFont /Times-Italic
 /Encoding /WinAnsiEncoding
 /Name /F6
 /Subtype /Type1
 /Type /Font >>
endobj
% 'F7': class PDFType1Font 
12 0 obj
% Font Courier
<< /BaseFont /Courier
 /Encoding /WinAnsiEncoding
 /Name /F7
 /Subtype /Type1
 /Type /Font >>
endobj
% 'Annot.NUMBER1': class PDFDictionary 
13 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-addMapping.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 482.9469
 241.3961
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER2': class PDFDictionary 
14 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 482.9469
 297.6378
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER3': class PDFDictionary 
15 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 482.9469
 323.1978
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER4': class PDFDictionary 
16 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 482.9469
 323.1978
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER5': class PDFDictionary 
17 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-alias.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 306.9469
 209.7361
 318.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER6': class PDFDictionary 
18 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 306.9469
 297.6378
 318.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER7': class PDFDictionary 
19 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 306.9469
 323.1978
 318.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER8': class PDFDictionary 
20 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 306.9469
 323.1978
 318.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER9': class PDFDictionary 
21 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 101.9469
 227.5161
 113.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER10': class PDFDictionary 
22 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 101.9469
 297.6378
 113.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER11': class PDFDictionary 
23 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 101.9469
 323.1978
 113.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER12': class PDFDictionary 
24 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 101.9469
 323.1978
 113.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page5': class PDFPage 
25 0 obj
% Page dictionary
<< /Annots [ 13 0 R
 14 0 R
 15 0 R
 16 0 R
 17 0 R
 18 0 R
 19 0 R
 20 0 R
 21 0 R
 22 0 R
 23 0 R
 24 0 R ]
 /Contents 1252 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER13': class LinkAnnotation 
26 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 183.1969
 538.5827
 195.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER14': class LinkAnnotation 
27 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 69 0 R
 /Fit ]
 /Rect [ 56.69291
 171.1969
 538.5827
 183.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER15': class LinkAnnotation 
28 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 166 0 R
 /Fit ]
 /Rect [ 56.69291
 159.1969
 538.5827
 171.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER16': class LinkAnnotation 
29 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1015 0 R
 /Fit ]
 /Rect [ 56.69291
 147.1969
 538.5827
 159.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER17': class LinkAnnotation 
30 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 67 0 R
 /Fit ]
 /Rect [ 56.69291
 135.1969
 538.5827
 147.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER18': class LinkAnnotation 
31 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 123.1969
 538.5827
 135.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page6': class PDFPage 
32 0 obj
% Page dictionary
<< /Annots [ 26 0 R
 27 0 R
 28 0 R
 29 0 R
 30 0 R
 31 0 R ]
 /Contents 1253 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER19': class PDFDictionary 
33 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 518.9469
 227.5161
 530.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER20': class PDFDictionary 
34 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 518.9469
 297.6378
 530.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER21': class PDFDictionary 
35 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 518.9469
 323.1978
 530.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER22': class PDFDictionary 
36 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 518.9469
 323.1978
 530.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page7': class PDFPage 
37 0 obj
% Page dictionary
<< /Annots [ 33 0 R
 34 0 R
 35 0 R
 36 0 R ]
 /Contents 1254 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER23': class LinkAnnotation 
38 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 473.1969
 538.5827
 485.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER24': class LinkAnnotation 
39 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 69 0 R
 /Fit ]
 /Rect [ 56.69291
 461.1969
 538.5827
 473.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER25': class LinkAnnotation 
40 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 166 0 R
 /Fit ]
 /Rect [ 56.69291
 449.1969
 538.5827
 461.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER26': class LinkAnnotation 
41 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1015 0 R
 /Fit ]
 /Rect [ 56.69291
 437.1969
 538.5827
 449.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER27': class LinkAnnotation 
42 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 67 0 R
 /Fit ]
 /Rect [ 56.69291
 425.1969
 538.5827
 437.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER28': class LinkAnnotation 
43 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 413.1969
 538.5827
 425.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER29': class PDFDictionary 
44 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 119.9469
 237.5161
 131.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER30': class PDFDictionary 
45 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 119.9469
 297.6378
 131.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER31': class PDFDictionary 
46 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 119.9469
 323.1978
 131.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER32': class PDFDictionary 
47 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 119.9469
 323.1978
 131.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page8': class PDFPage 
48 0 obj
% Page dictionary
<< /Annots [ 38 0 R
 39 0 R
 40 0 R
 41 0 R
 42 0 R
 43 0 R
 44 0 R
 45 0 R
 46 0 R
 47 0 R ]
 /Contents 1255 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page9': class PDFPage 
49 0 obj
% Page dictionary
<< /Contents 1256 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER33': class PDFDictionary 
50 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barcode.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 545.9469
 223.0561
 557.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER34': class PDFDictionary 
51 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 545.9469
 297.6378
 557.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER35': class PDFDictionary 
52 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 545.9469
 323.1978
 557.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER36': class PDFDictionary 
53 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 545.9469
 323.1978
 557.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER37': class PDFDictionary 
54 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barcode.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 455.9469
 223.0561
 467.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER38': class PDFDictionary 
55 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 455.9469
 297.6378
 467.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER39': class PDFDictionary 
56 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 455.9469
 323.1978
 467.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER40': class PDFDictionary 
57 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barcode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 455.9469
 323.1978
 467.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page10': class PDFPage 
58 0 obj
% Page dictionary
<< /Annots [ 50 0 R
 51 0 R
 52 0 R
 53 0 R
 54 0 R
 55 0 R
 56 0 R
 57 0 R ]
 /Contents 1257 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER41': class PDFDictionary 
59 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barCodeFlowable.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 294.9469
 263.0661
 306.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER42': class PDFDictionary 
60 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 282.9469
 297.6378
 294.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER43': class PDFDictionary 
61 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 282.9469
 323.1978
 294.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER44': class PDFDictionary 
62 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 282.9469
 323.1978
 294.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER45': class PDFDictionary 
63 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barCodeFlowable.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 216.9469
 263.0661
 228.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER46': class PDFDictionary 
64 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 204.9469
 297.6378
 216.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER47': class PDFDictionary 
65 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 204.9469
 323.1978
 216.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER48': class PDFDictionary 
66 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 204.9469
 323.1978
 216.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page11': class PDFPage 
67 0 obj
% Page dictionary
<< /Annots [ 59 0 R
 60 0 R
 61 0 R
 62 0 R
 63 0 R
 64 0 R
 65 0 R
 66 0 R ]
 /Contents 1258 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER49': class LinkAnnotation 
68 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 449 0 R
 /Fit ]
 /Rect [ 56.69291
 154.1969
 538.5827
 166.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page12': class PDFPage 
69 0 obj
% Page dictionary
<< /Annots [ 68 0 R ]
 /Contents 1259 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER50': class LinkAnnotation 
70 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 25 0 R
 /Fit ]
 /Rect [ 56.69291
 693.1969
 538.5827
 705.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER51': class PDFDictionary 
71 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 491.9469
 254.1661
 503.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER52': class PDFDictionary 
72 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 491.9469
 297.6378
 503.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER53': class PDFDictionary 
73 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 491.9469
 323.1978
 503.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER54': class PDFDictionary 
74 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 491.9469
 323.1978
 503.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER55': class PDFDictionary 
75 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 228.9469
 254.1661
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER56': class PDFDictionary 
76 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 228.9469
 297.6378
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER57': class PDFDictionary 
77 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 228.9469
 323.1978
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER58': class PDFDictionary 
78 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 228.9469
 323.1978
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page13': class PDFPage 
79 0 obj
% Page dictionary
<< /Annots [ 70 0 R
 71 0 R
 72 0 R
 73 0 R
 74 0 R
 75 0 R
 76 0 R
 77 0 R
 78 0 R ]
 /Contents 1260 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER59': class PDFDictionary 
80 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 254.1661
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER60': class PDFDictionary 
81 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER61': class PDFDictionary 
82 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER62': class PDFDictionary 
83 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER63': class PDFDictionary 
84 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 536.9469
 254.1661
 548.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER64': class PDFDictionary 
85 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 536.9469
 297.6378
 548.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER65': class PDFDictionary 
86 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 536.9469
 323.1978
 548.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER66': class PDFDictionary 
87 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 536.9469
 323.1978
 548.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER67': class PDFDictionary 
88 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 273.9469
 254.1661
 285.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER68': class PDFDictionary 
89 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 273.9469
 297.6378
 285.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER69': class PDFDictionary 
90 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 273.9469
 323.1978
 285.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER70': class PDFDictionary 
91 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 273.9469
 323.1978
 285.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER71': class PDFDictionary 
92 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 68.94685
 254.1661
 80.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER72': class PDFDictionary 
93 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 68.94685
 297.6378
 80.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER73': class PDFDictionary 
94 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 68.94685
 323.1978
 80.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER74': class PDFDictionary 
95 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 68.94685
 323.1978
 80.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page14': class PDFPage 
96 0 obj
% Page dictionary
<< /Annots [ 80 0 R
 81 0 R
 82 0 R
 83 0 R
 84 0 R
 85 0 R
 86 0 R
 87 0 R
 88 0 R
 89 0 R
 90 0 R
 91 0 R
 92 0 R
 93 0 R
 94 0 R
 95 0 R ]
 /Contents 1261 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER75': class PDFDictionary 
97 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 593.9469
 254.1661
 605.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER76': class PDFDictionary 
98 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 593.9469
 297.6378
 605.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER77': class PDFDictionary 
99 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 593.9469
 323.1978
 605.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER78': class PDFDictionary 
100 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 593.9469
 323.1978
 605.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER79': class PDFDictionary 
101 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 388.9469
 254.1661
 400.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER80': class PDFDictionary 
102 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 388.9469
 297.6378
 400.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER81': class PDFDictionary 
103 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 388.9469
 323.1978
 400.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER82': class PDFDictionary 
104 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 388.9469
 323.1978
 400.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER83': class PDFDictionary 
105 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 183.9469
 254.1661
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER84': class PDFDictionary 
106 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 183.9469
 297.6378
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER85': class PDFDictionary 
107 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 183.9469
 323.1978
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER86': class PDFDictionary 
108 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 183.9469
 323.1978
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page15': class PDFPage 
109 0 obj
% Page dictionary
<< /Annots [ 97 0 R
 98 0 R
 99 0 R
 100 0 R
 101 0 R
 102 0 R
 103 0 R
 104 0 R
 105 0 R
 106 0 R
 107 0 R
 108 0 R ]
 /Contents 1262 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER87': class PDFDictionary 
110 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 254.1661
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER88': class PDFDictionary 
111 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER89': class PDFDictionary 
112 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER90': class PDFDictionary 
113 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER91': class LinkAnnotation 
114 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1000 0 R
 /Fit ]
 /Rect [ 56.69291
 493.1969
 538.5827
 505.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER92': class LinkAnnotation 
115 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 166 0 R
 /Fit ]
 /Rect [ 56.69291
 481.1969
 538.5827
 493.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER93': class LinkAnnotation 
116 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 129 0 R
 /Fit ]
 /Rect [ 56.69291
 469.1969
 538.5827
 481.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER94': class PDFDictionary 
117 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTable-1.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 307.9469
 243.0561
 319.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER95': class PDFDictionary 
118 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 307.9469
 297.6378
 319.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER96': class PDFDictionary 
119 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 307.9469
 323.1978
 319.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER97': class PDFDictionary 
120 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 307.9469
 323.1978
 319.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER98': class LinkAnnotation 
121 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 96 0 R
 /Fit ]
 /Rect [ 56.69291
 146.1969
 538.5827
 158.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER99': class LinkAnnotation 
122 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 96 0 R
 /Fit ]
 /Rect [ 56.69291
 134.1969
 538.5827
 146.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER100': class LinkAnnotation 
123 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 148 0 R
 /Fit ]
 /Rect [ 56.69291
 122.1969
 538.5827
 134.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER101': class LinkAnnotation 
124 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 79 0 R
 /Fit ]
 /Rect [ 56.69291
 110.1969
 538.5827
 122.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER102': class LinkAnnotation 
125 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 109 0 R
 /Fit ]
 /Rect [ 56.69291
 98.19685
 538.5827
 110.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER103': class LinkAnnotation 
126 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 109 0 R
 /Fit ]
 /Rect [ 56.69291
 86.19685
 538.5827
 98.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER104': class LinkAnnotation 
127 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 79 0 R
 /Fit ]
 /Rect [ 56.69291
 74.19685
 538.5827
 86.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER105': class LinkAnnotation 
128 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 148 0 R
 /Fit ]
 /Rect [ 56.69291
 62.19685
 538.5827
 74.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page16': class PDFPage 
129 0 obj
% Page dictionary
<< /Annots [ 110 0 R
 111 0 R
 112 0 R
 113 0 R
 114 0 R
 115 0 R
 116 0 R
 117 0 R
 118 0 R
 119 0 R
 120 0 R
 121 0 R
 122 0 R
 123 0 R
 124 0 R
 125 0 R
 126 0 R
 127 0 R
 128 0 R ]
 /Contents 1263 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER106': class LinkAnnotation 
130 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 79 0 R
 /Fit ]
 /Rect [ 56.69291
 773.1969
 538.5827
 785.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER107': class LinkAnnotation 
131 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 109 0 R
 /Fit ]
 /Rect [ 56.69291
 761.1969
 538.5827
 773.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER108': class LinkAnnotation 
132 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 96 0 R
 /Fit ]
 /Rect [ 56.69291
 749.1969
 538.5827
 761.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER109': class LinkAnnotation 
133 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 148 0 R
 /Fit ]
 /Rect [ 56.69291
 737.1969
 538.5827
 749.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER110': class LinkAnnotation 
134 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 109 0 R
 /Fit ]
 /Rect [ 56.69291
 725.1969
 538.5827
 737.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER111': class LinkAnnotation 
135 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 513 0 R
 /Fit ]
 /Rect [ 56.69291
 713.1969
 538.5827
 725.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER112': class PDFDictionary 
136 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 635.9469
 254.1661
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER113': class PDFDictionary 
137 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 635.9469
 297.6378
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER114': class PDFDictionary 
138 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 635.9469
 323.1978
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER115': class PDFDictionary 
139 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 635.9469
 323.1978
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER116': class PDFDictionary 
140 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 430.9469
 254.1661
 442.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER117': class PDFDictionary 
141 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 430.9469
 297.6378
 442.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER118': class PDFDictionary 
142 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 430.9469
 323.1978
 442.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER119': class PDFDictionary 
143 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 430.9469
 323.1978
 442.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER120': class PDFDictionary 
144 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 225.9469
 254.1661
 237.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER121': class PDFDictionary 
145 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 225.9469
 297.6378
 237.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER122': class PDFDictionary 
146 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 225.9469
 323.1978
 237.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER123': class PDFDictionary 
147 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 225.9469
 323.1978
 237.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page17': class PDFPage 
148 0 obj
% Page dictionary
<< /Annots [ 130 0 R
 131 0 R
 132 0 R
 133 0 R
 134 0 R
 135 0 R
 136 0 R
 137 0 R
 138 0 R
 139 0 R
 140 0 R
 141 0 R
 142 0 R
 143 0 R
 144 0 R
 145 0 R
 146 0 R
 147 0 R ]
 /Contents 1264 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER124': class PDFDictionary 
149 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTableStyle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 254.1661
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER125': class PDFDictionary 
150 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER126': class PDFDictionary 
151 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER127': class PDFDictionary 
152 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTableStyle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page18': class PDFPage 
153 0 obj
% Page dictionary
<< /Annots [ 149 0 R
 150 0 R
 151 0 R
 152 0 R ]
 /Contents 1265 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER128': class PDFDictionary 
154 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-bookmark.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 230.2761
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER129': class PDFDictionary 
155 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER130': class PDFDictionary 
156 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER131': class PDFDictionary 
157 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER132': class PDFDictionary 
158 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-bookmark.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 699.9469
 230.2761
 711.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER133': class PDFDictionary 
159 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 699.9469
 297.6378
 711.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER134': class PDFDictionary 
160 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 699.9469
 323.1978
 711.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER135': class PDFDictionary 
161 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 699.9469
 323.1978
 711.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER136': class PDFDictionary 
162 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTable-bulkData.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 468.9469
 275.2761
 480.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER137': class PDFDictionary 
163 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-bulkData.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 456.9469
 297.6378
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER138': class PDFDictionary 
164 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-bulkData.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 456.9469
 323.1978
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER139': class PDFDictionary 
165 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-bulkData.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 456.9469
 323.1978
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page19': class PDFPage 
166 0 obj
% Page dictionary
<< /Annots [ 154 0 R
 155 0 R
 156 0 R
 157 0 R
 158 0 R
 159 0 R
 160 0 R
 161 0 R
 162 0 R
 163 0 R
 164 0 R
 165 0 R ]
 /Contents 1266 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER140': class LinkAnnotation 
167 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 174 0 R
 /Fit ]
 /Rect [ 56.69291
 316.1969
 538.5827
 328.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER141': class LinkAnnotation 
168 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 450 0 R
 /Fit ]
 /Rect [ 56.69291
 304.1969
 538.5827
 316.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER142': class PDFDictionary 
169 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 154.9469
 227.5161
 166.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER143': class PDFDictionary 
170 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 154.9469
 297.6378
 166.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER144': class PDFDictionary 
171 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 154.9469
 323.1978
 166.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER145': class PDFDictionary 
172 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 154.9469
 323.1978
 166.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER146': class LinkAnnotation 
173 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 73.19685
 538.5827
 85.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page20': class PDFPage 
174 0 obj
% Page dictionary
<< /Annots [ 167 0 R
 168 0 R
 169 0 R
 170 0 R
 171 0 R
 172 0 R
 173 0 R ]
 /Contents 1267 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER147': class PDFDictionary 
175 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 681.9469
 227.5161
 693.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER148': class PDFDictionary 
176 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 681.9469
 297.6378
 693.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER149': class PDFDictionary 
177 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 681.9469
 323.1978
 693.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER150': class PDFDictionary 
178 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 681.9469
 323.1978
 693.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER151': class PDFDictionary 
179 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-circle.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 418.9469
 213.0561
 430.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER152': class PDFDictionary 
180 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-circle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 418.9469
 297.6378
 430.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER153': class PDFDictionary 
181 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-circle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 418.9469
 323.1978
 430.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER154': class PDFDictionary 
182 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-circle.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 418.9469
 323.1978
 430.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page21': class PDFPage 
183 0 obj
% Page dictionary
<< /Annots [ 175 0 R
 176 0 R
 177 0 R
 178 0 R
 179 0 R
 180 0 R
 181 0 R
 182 0 R ]
 /Contents 1268 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER155': class PDFDictionary 
184 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-codesnippet.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 238.0561
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER156': class PDFDictionary 
185 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER157': class PDFDictionary 
186 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER158': class PDFDictionary 
187 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER159': class PDFDictionary 
188 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-codesnippet.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 692.9469
 238.0561
 704.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER160': class PDFDictionary 
189 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 692.9469
 297.6378
 704.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER161': class PDFDictionary 
190 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 692.9469
 323.1978
 704.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER162': class PDFDictionary 
191 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-codesnippet.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 692.9469
 323.1978
 704.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER163': class PDFDictionary 
192 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-color.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 342.9469
 211.3961
 354.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER164': class PDFDictionary 
193 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-color.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 342.9469
 297.6378
 354.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER165': class PDFDictionary 
194 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-color.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 342.9469
 323.1978
 354.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER166': class PDFDictionary 
195 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-color.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 342.9469
 323.1978
 354.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER167': class PDFDictionary 
196 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-condPageBreak.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 195.9469
 254.1561
 207.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER168': class PDFDictionary 
197 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-condPageBreak.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 195.9469
 297.6378
 207.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER169': class PDFDictionary 
198 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-condPageBreak.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 195.9469
 323.1978
 207.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER170': class PDFDictionary 
199 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-condPageBreak.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 195.9469
 323.1978
 207.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page22': class PDFPage 
200 0 obj
% Page dictionary
<< /Annots [ 184 0 R
 185 0 R
 186 0 R
 187 0 R
 188 0 R
 189 0 R
 190 0 R
 191 0 R
 192 0 R
 193 0 R
 194 0 R
 195 0 R
 196 0 R
 197 0 R
 198 0 R
 199 0 R ]
 /Contents 1269 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER171': class PDFDictionary 
201 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 203.0661
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER172': class PDFDictionary 
202 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER173': class PDFDictionary 
203 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER174': class PDFDictionary 
204 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER175': class PDFDictionary 
205 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-cropMarks.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 437.9469
 234.1661
 449.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER176': class PDFDictionary 
206 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 437.9469
 297.6378
 449.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER177': class PDFDictionary 
207 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 437.9469
 323.1978
 449.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER178': class PDFDictionary 
208 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 437.9469
 323.1978
 449.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER179': class PDFDictionary 
209 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-curves.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 242.9469
 216.3861
 254.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER180': class PDFDictionary 
210 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-curves.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 242.9469
 297.6378
 254.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER181': class PDFDictionary 
211 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-curves.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 242.9469
 323.1978
 254.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER182': class PDFDictionary 
212 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-curves.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 242.9469
 323.1978
 254.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page23': class PDFPage 
213 0 obj
% Page dictionary
<< /Annots [ 201 0 R
 202 0 R
 203 0 R
 204 0 R
 205 0 R
 206 0 R
 207 0 R
 208 0 R
 209 0 R
 210 0 R
 211 0 R
 212 0 R ]
 /Contents 1270 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER183': class PDFDictionary 
214 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-path.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 695.9469
 208.0661
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER184': class PDFDictionary 
215 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 695.9469
 297.6378
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER185': class PDFDictionary 
216 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 695.9469
 323.1978
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER186': class PDFDictionary 
217 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 695.9469
 323.1978
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER187': class LinkAnnotation 
218 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 779 0 R
 /Fit ]
 /Rect [ 56.69291
 614.1969
 538.5827
 626.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER188': class PDFDictionary 
219 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 524.9469
 227.5161
 536.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER189': class PDFDictionary 
220 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 524.9469
 297.6378
 536.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER190': class PDFDictionary 
221 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 524.9469
 323.1978
 536.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER191': class PDFDictionary 
222 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 524.9469
 323.1978
 536.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER192': class LinkAnnotation 
223 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 779 0 R
 /Fit ]
 /Rect [ 56.69291
 443.1969
 538.5827
 455.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER193': class PDFDictionary 
224 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 209.9469
 221.9561
 221.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER194': class PDFDictionary 
225 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 209.9469
 297.6378
 221.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER195': class PDFDictionary 
226 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 209.9469
 323.1978
 221.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER196': class PDFDictionary 
227 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 209.9469
 323.1978
 221.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER197': class LinkAnnotation 
228 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 779 0 R
 /Fit ]
 /Rect [ 56.69291
 128.1969
 538.5827
 140.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page24': class PDFPage 
229 0 obj
% Page dictionary
<< /Annots [ 214 0 R
 215 0 R
 216 0 R
 217 0 R
 218 0 R
 219 0 R
 220 0 R
 221 0 R
 222 0 R
 223 0 R
 224 0 R
 225 0 R
 226 0 R
 227 0 R
 228 0 R ]
 /Contents 1271 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER198': class PDFDictionary 
230 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 225.8461
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER199': class PDFDictionary 
231 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER200': class PDFDictionary 
232 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER201': class PDFDictionary 
233 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER202': class PDFDictionary 
234 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 623.9469
 203.0661
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER203': class PDFDictionary 
235 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 623.9469
 297.6378
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER204': class PDFDictionary 
236 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 623.9469
 323.1978
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER205': class PDFDictionary 
237 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 623.9469
 323.1978
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER206': class PDFDictionary 
238 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 447.9469
 204.7261
 459.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER207': class PDFDictionary 
239 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 447.9469
 297.6378
 459.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER208': class PDFDictionary 
240 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 447.9469
 323.1978
 459.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER209': class PDFDictionary 
241 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 447.9469
 323.1978
 459.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER210': class PDFDictionary 
242 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 417.9469
 204.7261
 429.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER211': class PDFDictionary 
243 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 417.9469
 297.6378
 429.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER212': class PDFDictionary 
244 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 417.9469
 323.1978
 429.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER213': class PDFDictionary 
245 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 417.9469
 323.1978
 429.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER214': class PDFDictionary 
246 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 321.9469
 204.7261
 333.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER215': class PDFDictionary 
247 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 321.9469
 297.6378
 333.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER216': class PDFDictionary 
248 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 321.9469
 323.1978
 333.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER217': class PDFDictionary 
249 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 321.9469
 323.1978
 333.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER218': class PDFDictionary 
250 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 174.9469
 204.7261
 186.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER219': class PDFDictionary 
251 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 174.9469
 297.6378
 186.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER220': class PDFDictionary 
252 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 174.9469
 323.1978
 186.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER221': class PDFDictionary 
253 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 174.9469
 323.1978
 186.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page25': class PDFPage 
254 0 obj
% Page dictionary
<< /Annots [ 230 0 R
 231 0 R
 232 0 R
 233 0 R
 234 0 R
 235 0 R
 236 0 R
 237 0 R
 238 0 R
 239 0 R
 240 0 R
 241 0 R
 242 0 R
 243 0 R
 244 0 R
 245 0 R
 246 0 R
 247 0 R
 248 0 R
 249 0 R
 250 0 R
 251 0 R
 252 0 R
 253 0 R ]
 /Contents 1272 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER222': class PDFDictionary 
255 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 710.9469
 204.7261
 722.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER223': class PDFDictionary 
256 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 710.9469
 297.6378
 722.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER224': class PDFDictionary 
257 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 710.9469
 323.1978
 722.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER225': class PDFDictionary 
258 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 710.9469
 323.1978
 722.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER226': class PDFDictionary 
259 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 476.9469
 204.7261
 488.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER227': class PDFDictionary 
260 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 476.9469
 297.6378
 488.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER228': class PDFDictionary 
261 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 476.9469
 323.1978
 488.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER229': class PDFDictionary 
262 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 476.9469
 323.1978
 488.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER230': class PDFDictionary 
263 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-doc.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 293.9469
 204.7261
 305.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER231': class PDFDictionary 
264 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 293.9469
 297.6378
 305.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER232': class PDFDictionary 
265 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 293.9469
 323.1978
 305.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER233': class PDFDictionary 
266 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-doc.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 293.9469
 323.1978
 305.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER234': class LinkAnnotation 
267 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 200 0 R
 /Fit ]
 /Rect [ 56.69291
 115.1969
 538.5827
 127.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER235': class LinkAnnotation 
268 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 103.1969
 538.5827
 115.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER236': class LinkAnnotation 
269 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 748 0 R
 /Fit ]
 /Rect [ 56.69291
 91.19685
 538.5827
 103.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER237': class LinkAnnotation 
270 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 735 0 R
 /Fit ]
 /Rect [ 56.69291
 79.19685
 538.5827
 91.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER238': class LinkAnnotation 
271 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 735 0 R
 /Fit ]
 /Rect [ 56.69291
 67.19685
 538.5827
 79.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page26': class PDFPage 
272 0 obj
% Page dictionary
<< /Annots [ 255 0 R
 256 0 R
 257 0 R
 258 0 R
 259 0 R
 260 0 R
 261 0 R
 262 0 R
 263 0 R
 264 0 R
 265 0 R
 266 0 R
 267 0 R
 268 0 R
 269 0 R
 270 0 R
 271 0 R ]
 /Contents 1273 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER239': class LinkAnnotation 
273 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 748 0 R
 /Fit ]
 /Rect [ 56.69291
 773.1969
 538.5827
 785.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER240': class LinkAnnotation 
274 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 748 0 R
 /Fit ]
 /Rect [ 56.69291
 761.1969
 538.5827
 773.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER241': class LinkAnnotation 
275 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 25 0 R
 /Fit ]
 /Rect [ 56.69291
 749.1969
 538.5827
 761.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER242': class LinkAnnotation 
276 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 737.1969
 538.5827
 749.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER243': class LinkAnnotation 
277 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 213 0 R
 /Fit ]
 /Rect [ 56.69291
 725.1969
 538.5827
 737.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER244': class LinkAnnotation 
278 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 875 0 R
 /Fit ]
 /Rect [ 56.69291
 713.1969
 538.5827
 725.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER245': class PDFDictionary 
279 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-addMapping.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 623.9469
 241.3961
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER246': class PDFDictionary 
280 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 623.9469
 297.6378
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER247': class PDFDictionary 
281 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 623.9469
 323.1978
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER248': class PDFDictionary 
282 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-addMapping.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 623.9469
 323.1978
 635.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER249': class PDFDictionary 
283 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerTTFont.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 569.9469
 251.4061
 581.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER250': class PDFDictionary 
284 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 569.9469
 297.6378
 581.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER251': class PDFDictionary 
285 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 569.9469
 323.1978
 581.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER252': class PDFDictionary 
286 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 569.9469
 323.1978
 581.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER253': class LinkAnnotation 
287 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 272 0 R
 /Fit ]
 /Rect [ 56.69291
 350.1969
 538.5827
 362.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER254': class LinkAnnotation 
288 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 946 0 R
 /Fit ]
 /Rect [ 56.69291
 338.1969
 538.5827
 350.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER255': class LinkAnnotation 
289 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 956 0 R
 /Fit ]
 /Rect [ 56.69291
 326.1969
 538.5827
 338.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER256': class LinkAnnotation 
290 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 875 0 R
 /Fit ]
 /Rect [ 56.69291
 314.1969
 538.5827
 326.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER257': class LinkAnnotation 
291 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 648 0 R
 /Fit ]
 /Rect [ 56.69291
 302.1969
 538.5827
 314.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER258': class LinkAnnotation 
292 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 629 0 R
 /Fit ]
 /Rect [ 56.69291
 290.1969
 538.5827
 302.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER259': class PDFDictionary 
293 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-document-story.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 128.9469
 252.4961
 140.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER260': class PDFDictionary 
294 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 128.9469
 297.6378
 140.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER261': class PDFDictionary 
295 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 128.9469
 323.1978
 140.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER262': class PDFDictionary 
296 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 128.9469
 323.1978
 140.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page27': class PDFPage 
297 0 obj
% Page dictionary
<< /Annots [ 273 0 R
 274 0 R
 275 0 R
 276 0 R
 277 0 R
 278 0 R
 279 0 R
 280 0 R
 281 0 R
 282 0 R
 283 0 R
 284 0 R
 285 0 R
 286 0 R
 287 0 R
 288 0 R
 289 0 R
 290 0 R
 291 0 R
 292 0 R
 293 0 R
 294 0 R
 295 0 R
 296 0 R ]
 /Contents 1274 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER263': class PDFDictionary 
298 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-document-pageDrawing.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 284.9961
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER264': class PDFDictionary 
299 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-pageDrawing.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 297.6378
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER265': class PDFDictionary 
300 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-pageDrawing.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER266': class PDFDictionary 
301 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-pageDrawing.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER267': class PDFDictionary 
302 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-drawAlignedString.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 502.9469
 266.4061
 514.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER268': class PDFDictionary 
303 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawAlignedString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 490.9469
 297.6378
 502.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER269': class PDFDictionary 
304 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawAlignedString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 490.9469
 323.1978
 502.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER270': class PDFDictionary 
305 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawAlignedString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 490.9469
 323.1978
 502.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER271': class PDFDictionary 
306 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-drawCenteredString.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 263.9469
 271.9561
 275.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER272': class PDFDictionary 
307 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawCenteredString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 251.9469
 297.6378
 263.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER273': class PDFDictionary 
308 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawCenteredString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 251.9469
 323.1978
 263.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER274': class PDFDictionary 
309 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawCenteredString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 251.9469
 323.1978
 263.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page28': class PDFPage 
310 0 obj
% Page dictionary
<< /Annots [ 298 0 R
 299 0 R
 300 0 R
 301 0 R
 302 0 R
 303 0 R
 304 0 R
 305 0 R
 306 0 R
 307 0 R
 308 0 R
 309 0 R ]
 /Contents 1275 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER275': class PDFDictionary 
311 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-drawRightString.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 256.9661
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER276': class PDFDictionary 
312 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawRightString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER277': class PDFDictionary 
313 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawRightString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER278': class PDFDictionary 
314 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawRightString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER279': class PDFDictionary 
315 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-drawString.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 514.9469
 235.2961
 526.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER280': class PDFDictionary 
316 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 514.9469
 297.6378
 526.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER281': class PDFDictionary 
317 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 514.9469
 323.1978
 526.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER282': class PDFDictionary 
318 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 514.9469
 323.1978
 526.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER283': class PDFDictionary 
319 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ellipse.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 210.9469
 216.3961
 222.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER284': class PDFDictionary 
320 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ellipse.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 210.9469
 297.6378
 222.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER285': class PDFDictionary 
321 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ellipse.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 210.9469
 323.1978
 222.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER286': class PDFDictionary 
322 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ellipse.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 210.9469
 323.1978
 222.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER287': class PDFDictionary 
323 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 63.94685
 203.0661
 75.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER288': class PDFDictionary 
324 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 63.94685
 297.6378
 75.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER289': class PDFDictionary 
325 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 63.94685
 323.1978
 75.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER290': class PDFDictionary 
326 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 63.94685
 323.1978
 75.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page29': class PDFPage 
327 0 obj
% Page dictionary
<< /Annots [ 311 0 R
 312 0 R
 313 0 R
 314 0 R
 315 0 R
 316 0 R
 317 0 R
 318 0 R
 319 0 R
 320 0 R
 321 0 R
 322 0 R
 323 0 R
 324 0 R
 325 0 R
 326 0 R ]
 /Contents 1276 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER291': class PDFDictionary 
328 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-fill.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 651.9469
 201.4061
 663.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER292': class PDFDictionary 
329 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fill.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 651.9469
 297.6378
 663.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER293': class PDFDictionary 
330 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fill.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 651.9469
 323.1978
 663.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER294': class PDFDictionary 
331 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fill.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 651.9469
 323.1978
 663.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER295': class PDFDictionary 
332 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-fixedSize.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 331.9469
 225.8361
 343.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER296': class PDFDictionary 
333 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fixedSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 331.9469
 297.6378
 343.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER297': class PDFDictionary 
334 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fixedSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 331.9469
 323.1978
 343.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER298': class PDFDictionary 
335 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-fixedSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 331.9469
 323.1978
 343.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page30': class PDFPage 
336 0 obj
% Page dictionary
<< /Annots [ 328 0 R
 329 0 R
 330 0 R
 331 0 R
 332 0 R
 333 0 R
 334 0 R
 335 0 R ]
 /Contents 1277 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER299': class PDFDictionary 
337 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-document-story.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 649.9469
 252.4961
 661.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER300': class PDFDictionary 
338 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 649.9469
 297.6378
 661.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER301': class PDFDictionary 
339 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 649.9469
 323.1978
 661.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER302': class PDFDictionary 
340 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 649.9469
 323.1978
 661.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER303': class PDFDictionary 
341 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-grid.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 473.9469
 206.9561
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER304': class PDFDictionary 
342 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-grid.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 473.9469
 297.6378
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER305': class PDFDictionary 
343 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-grid.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 473.9469
 323.1978
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER306': class PDFDictionary 
344 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-grid.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 473.9469
 323.1978
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page31': class PDFPage 
345 0 obj
% Page dictionary
<< /Annots [ 337 0 R
 338 0 R
 339 0 R
 340 0 R
 341 0 R
 342 0 R
 343 0 R
 344 0 R ]
 /Contents 1278 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER307': class PDFDictionary 
346 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 192.9469
 209.1761
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER308': class PDFDictionary 
347 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 297.6378
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER309': class PDFDictionary 
348 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER310': class PDFDictionary 
349 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page32': class PDFPage 
350 0 obj
% Page dictionary
<< /Annots [ 346 0 R
 347 0 R
 348 0 R
 349 0 R ]
 /Contents 1279 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page33': class PDFPage 
351 0 obj
% Page dictionary
<< /Contents 1280 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER311': class PDFDictionary 
352 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 627.9469
 209.1761
 639.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER312': class PDFDictionary 
353 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 627.9469
 297.6378
 639.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER313': class PDFDictionary 
354 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 627.9469
 323.1978
 639.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER314': class PDFDictionary 
355 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 627.9469
 323.1978
 639.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page34': class PDFPage 
356 0 obj
% Page dictionary
<< /Annots [ 352 0 R
 353 0 R
 354 0 R
 355 0 R ]
 /Contents 1281 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER315': class PDFDictionary 
357 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 337.9469
 209.1761
 349.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER316': class PDFDictionary 
358 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 337.9469
 297.6378
 349.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER317': class PDFDictionary 
359 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 337.9469
 323.1978
 349.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER318': class PDFDictionary 
360 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 337.9469
 323.1978
 349.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page35': class PDFPage 
361 0 obj
% Page dictionary
<< /Annots [ 357 0 R
 358 0 R
 359 0 R
 360 0 R ]
 /Contents 1282 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page36': class PDFPage 
362 0 obj
% Page dictionary
<< /Contents 1283 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER319': class PDFDictionary 
363 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 209.1761
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER320': class PDFDictionary 
364 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER321': class PDFDictionary 
365 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER322': class PDFDictionary 
366 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page37': class PDFPage 
367 0 obj
% Page dictionary
<< /Annots [ 363 0 R
 364 0 R
 365 0 R
 366 0 R ]
 /Contents 1284 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER323': class PDFDictionary 
368 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 482.9469
 209.1761
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER324': class PDFDictionary 
369 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 482.9469
 297.6378
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER325': class PDFDictionary 
370 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 482.9469
 323.1978
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER326': class PDFDictionary 
371 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 482.9469
 323.1978
 494.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page38': class PDFPage 
372 0 obj
% Page dictionary
<< /Annots [ 368 0 R
 369 0 R
 370 0 R
 371 0 R ]
 /Contents 1285 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER327': class PDFDictionary 
373 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 192.9469
 209.1761
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER328': class PDFDictionary 
374 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 297.6378
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER329': class PDFDictionary 
375 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER330': class PDFDictionary 
376 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page39': class PDFPage 
377 0 obj
% Page dictionary
<< /Annots [ 373 0 R
 374 0 R
 375 0 R
 376 0 R ]
 /Contents 1286 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER331': class PDFDictionary 
378 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-hr.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 521.9469
 199.1761
 533.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER332': class PDFDictionary 
379 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-hr.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 521.9469
 297.6378
 533.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER333': class PDFDictionary 
380 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-hr.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 521.9469
 323.1978
 533.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER334': class PDFDictionary 
381 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-hr.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 521.9469
 323.1978
 533.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER335': class PDFDictionary 
382 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-illustration.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 261.9469
 234.7461
 273.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER336': class PDFDictionary 
383 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-illustration.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 261.9469
 297.6378
 273.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER337': class PDFDictionary 
384 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-illustration.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 261.9469
 323.1978
 273.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER338': class PDFDictionary 
385 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-illustration.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 261.9469
 323.1978
 273.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page40': class PDFPage 
386 0 obj
% Page dictionary
<< /Annots [ 378 0 R
 379 0 R
 380 0 R
 381 0 R
 382 0 R
 383 0 R
 384 0 R
 385 0 R ]
 /Contents 1287 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER339': class PDFDictionary 
387 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-image.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 637.9469
 214.7261
 649.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER340': class PDFDictionary 
388 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-image.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 637.9469
 297.6378
 649.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER341': class PDFDictionary 
389 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-image.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 637.9469
 323.1978
 649.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER342': class PDFDictionary 
390 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-image.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 637.9469
 323.1978
 649.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER343': class PDFDictionary 
391 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-imageAndFlowables.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 210.9469
 272.5061
 222.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER344': class PDFDictionary 
392 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-imageAndFlowables.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 198.9469
 297.6378
 210.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER345': class PDFDictionary 
393 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-imageAndFlowables.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 198.9469
 323.1978
 210.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER346': class PDFDictionary 
394 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-imageAndFlowables.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 198.9469
 323.1978
 210.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page41': class PDFPage 
395 0 obj
% Page dictionary
<< /Annots [ 387 0 R
 388 0 R
 389 0 R
 390 0 R
 391 0 R
 392 0 R
 393 0 R
 394 0 R ]
 /Contents 1288 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER347': class PDFDictionary 
396 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-img.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 661.9469
 205.2861
 673.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER348': class PDFDictionary 
397 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-img.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 661.9469
 297.6378
 673.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER349': class PDFDictionary 
398 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-img.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 661.9469
 323.1978
 673.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER350': class PDFDictionary 
399 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-img.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 661.9469
 323.1978
 673.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER351': class PDFDictionary 
400 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-includePdfPages.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 473.9469
 258.0561
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER352': class PDFDictionary 
401 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-includePdfPages.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 473.9469
 297.6378
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER353': class PDFDictionary 
402 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-includePdfPages.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 473.9469
 323.1978
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER354': class PDFDictionary 
403 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-includePdfPages.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 473.9469
 323.1978
 485.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER355': class PDFDictionary 
404 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-indent.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 153.9469
 215.2861
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER356': class PDFDictionary 
405 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-indent.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 153.9469
 297.6378
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER357': class PDFDictionary 
406 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-indent.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 153.9469
 323.1978
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER358': class PDFDictionary 
407 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-indent.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 153.9469
 323.1978
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page42': class PDFPage 
408 0 obj
% Page dictionary
<< /Annots [ 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 ]
 /Contents 1289 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER359': class PDFDictionary 
409 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 741.9469
 203.0661
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER360': class PDFDictionary 
410 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 297.6378
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER361': class PDFDictionary 
411 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER362': class PDFDictionary 
412 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 741.9469
 323.1978
 753.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER363': class LinkAnnotation 
413 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 660.1969
 538.5827
 672.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER364': class LinkAnnotation 
414 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 25 0 R
 /Fit ]
 /Rect [ 56.69291
 648.1969
 538.5827
 660.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER365': class LinkAnnotation 
415 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 200 0 R
 /Fit ]
 /Rect [ 56.69291
 636.1969
 538.5827
 648.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER366': class PDFDictionary 
416 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-alias.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 558.9469
 209.7361
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER367': class PDFDictionary 
417 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 558.9469
 297.6378
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER368': class PDFDictionary 
418 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 558.9469
 323.1978
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER369': class PDFDictionary 
419 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-alias.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 558.9469
 323.1978
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER370': class PDFDictionary 
420 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-keepInFrame.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 218.9469
 243.5961
 230.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER371': class PDFDictionary 
421 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepInFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 218.9469
 297.6378
 230.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER372': class PDFDictionary 
422 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepInFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 218.9469
 323.1978
 230.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER373': class PDFDictionary 
423 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepInFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 218.9469
 323.1978
 230.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page43': class PDFPage 
424 0 obj
% Page dictionary
<< /Annots [ 409 0 R
 410 0 R
 411 0 R
 412 0 R
 413 0 R
 414 0 R
 415 0 R
 416 0 R
 417 0 R
 418 0 R
 419 0 R
 420 0 R
 421 0 R
 422 0 R
 423 0 R ]
 /Contents 1290 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER374': class PDFDictionary 
425 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-keepTogether.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 422.9469
 244.7161
 434.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER375': class PDFDictionary 
426 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepTogether.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 422.9469
 297.6378
 434.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER376': class PDFDictionary 
427 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepTogether.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 422.9469
 323.1978
 434.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER377': class PDFDictionary 
428 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-keepTogether.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 422.9469
 323.1978
 434.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page44': class PDFPage 
429 0 obj
% Page dictionary
<< /Annots [ 425 0 R
 426 0 R
 427 0 R
 428 0 R ]
 /Contents 1291 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER378': class PDFDictionary 
430 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 192.9469
 238.6261
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER379': class PDFDictionary 
431 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 297.6378
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER380': class PDFDictionary 
432 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER381': class PDFDictionary 
433 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 192.9469
 323.1978
 204.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page45': class PDFPage 
434 0 obj
% Page dictionary
<< /Annots [ 430 0 R
 431 0 R
 432 0 R
 433 0 R ]
 /Contents 1292 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER382': class PDFDictionary 
435 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 76.94685
 225.8461
 88.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER383': class PDFDictionary 
436 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 76.94685
 297.6378
 88.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER384': class PDFDictionary 
437 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 76.94685
 323.1978
 88.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER385': class PDFDictionary 
438 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 76.94685
 323.1978
 88.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page46': class PDFPage 
439 0 obj
% Page dictionary
<< /Annots [ 435 0 R
 436 0 R
 437 0 R
 438 0 R ]
 /Contents 1293 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page47': class PDFPage 
440 0 obj
% Page dictionary
<< /Contents 1294 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER386': class PDFDictionary 
441 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 690.9469
 238.6261
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER387': class PDFDictionary 
442 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 297.6378
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER388': class PDFDictionary 
443 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER389': class PDFDictionary 
444 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER390': class PDFDictionary 
445 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 543.9469
 235.8461
 555.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER391': class PDFDictionary 
446 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 543.9469
 297.6378
 555.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER392': class PDFDictionary 
447 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 543.9469
 323.1978
 555.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER393': class PDFDictionary 
448 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 543.9469
 323.1978
 555.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page48': class PDFPage 
449 0 obj
% Page dictionary
<< /Annots [ 441 0 R
 442 0 R
 443 0 R
 444 0 R
 445 0 R
 446 0 R
 447 0 R
 448 0 R ]
 /Contents 1295 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page49': class PDFPage 
450 0 obj
% Page dictionary
<< /Contents 1296 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER394': class LinkAnnotation 
451 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 449 0 R
 /Fit ]
 /Rect [ 56.69291
 316.1969
 538.5827
 328.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER395': class PDFDictionary 
452 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 262.9469
 227.5161
 274.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER396': class PDFDictionary 
453 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 262.9469
 297.6378
 274.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER397': class PDFDictionary 
454 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 262.9469
 323.1978
 274.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER398': class PDFDictionary 
455 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 262.9469
 323.1978
 274.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER399': class LinkAnnotation 
456 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 449 0 R
 /Fit ]
 /Rect [ 56.69291
 181.1969
 538.5827
 193.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page50': class PDFPage 
457 0 obj
% Page dictionary
<< /Annots [ 451 0 R
 452 0 R
 453 0 R
 454 0 R
 455 0 R
 456 0 R ]
 /Contents 1297 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER400': class PDFDictionary 
458 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 235.8461
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER401': class PDFDictionary 
459 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER402': class PDFDictionary 
460 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER403': class PDFDictionary 
461 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER404': class PDFDictionary 
462 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ul-ol-li.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 309.9469
 218.0661
 321.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER405': class PDFDictionary 
463 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 309.9469
 297.6378
 321.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER406': class PDFDictionary 
464 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 309.9469
 323.1978
 321.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER407': class PDFDictionary 
465 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 309.9469
 323.1978
 321.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page51': class PDFPage 
466 0 obj
% Page dictionary
<< /Annots [ 458 0 R
 459 0 R
 460 0 R
 461 0 R
 462 0 R
 463 0 R
 464 0 R
 465 0 R ]
 /Contents 1298 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER408': class PDFDictionary 
467 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ul-ol-li.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 567.9469
 218.0661
 579.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER409': class PDFDictionary 
468 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 567.9469
 297.6378
 579.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER410': class PDFDictionary 
469 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 567.9469
 323.1978
 579.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER411': class PDFDictionary 
470 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 567.9469
 323.1978
 579.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER412': class PDFDictionary 
471 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 304.9469
 221.9561
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER413': class PDFDictionary 
472 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 297.6378
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER414': class PDFDictionary 
473 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER415': class PDFDictionary 
474 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page52': class PDFPage 
475 0 obj
% Page dictionary
<< /Annots [ 467 0 R
 468 0 R
 469 0 R
 470 0 R
 471 0 R
 472 0 R
 473 0 R
 474 0 R ]
 /Contents 1299 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER416': class LinkAnnotation 
476 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 449 0 R
 /Fit ]
 /Rect [ 56.69291
 200.1969
 538.5827
 212.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER417': class PDFDictionary 
477 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 146.9469
 221.9561
 158.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER418': class PDFDictionary 
478 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 146.9469
 297.6378
 158.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER419': class PDFDictionary 
479 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 146.9469
 323.1978
 158.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER420': class PDFDictionary 
480 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 146.9469
 323.1978
 158.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page53': class PDFPage 
481 0 obj
% Page dictionary
<< /Annots [ 476 0 R
 477 0 R
 478 0 R
 479 0 R
 480 0 R ]
 /Contents 1300 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER421': class PDFDictionary 
482 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-lineMode.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 603.9469
 228.0561
 615.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER422': class PDFDictionary 
483 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lineMode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 603.9469
 297.6378
 615.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER423': class PDFDictionary 
484 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lineMode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 603.9469
 323.1978
 615.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER424': class PDFDictionary 
485 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lineMode.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 603.9469
 323.1978
 615.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page54': class PDFPage 
486 0 obj
% Page dictionary
<< /Annots [ 482 0 R
 483 0 R
 484 0 R
 485 0 R ]
 /Contents 1301 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER425': class LinkAnnotation 
487 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 734.1969
 538.5827
 746.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER426': class LinkAnnotation 
488 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 523 0 R
 /Fit ]
 /Rect [ 56.69291
 722.1969
 538.5827
 734.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER427': class LinkAnnotation 
489 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1024 0 R
 /Fit ]
 /Rect [ 56.69291
 710.1969
 538.5827
 722.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER428': class LinkAnnotation 
490 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1034 0 R
 /Fit ]
 /Rect [ 56.69291
 698.1969
 538.5827
 710.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER429': class LinkAnnotation 
491 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 475 0 R
 /Fit ]
 /Rect [ 56.69291
 686.1969
 538.5827
 698.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER430': class LinkAnnotation 
492 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 674.1969
 538.5827
 686.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER431': class PDFDictionary 
493 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 272.9469
 221.9561
 284.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER432': class PDFDictionary 
494 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 272.9469
 297.6378
 284.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER433': class PDFDictionary 
495 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 272.9469
 323.1978
 284.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER434': class PDFDictionary 
496 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 272.9469
 323.1978
 284.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page55': class PDFPage 
497 0 obj
% Page dictionary
<< /Annots [ 487 0 R
 488 0 R
 489 0 R
 490 0 R
 491 0 R
 492 0 R
 493 0 R
 494 0 R
 495 0 R
 496 0 R ]
 /Contents 1302 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER435': class LinkAnnotation 
498 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 287.1969
 538.5827
 299.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER436': class LinkAnnotation 
499 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 523 0 R
 /Fit ]
 /Rect [ 56.69291
 275.1969
 538.5827
 287.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER437': class LinkAnnotation 
500 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1024 0 R
 /Fit ]
 /Rect [ 56.69291
 263.1969
 538.5827
 275.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER438': class LinkAnnotation 
501 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1034 0 R
 /Fit ]
 /Rect [ 56.69291
 251.1969
 538.5827
 263.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER439': class LinkAnnotation 
502 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 475 0 R
 /Fit ]
 /Rect [ 56.69291
 239.1969
 538.5827
 251.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER440': class LinkAnnotation 
503 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 227.1969
 538.5827
 239.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page56': class PDFPage 
504 0 obj
% Page dictionary
<< /Annots [ 498 0 R
 499 0 R
 500 0 R
 501 0 R
 502 0 R
 503 0 R ]
 /Contents 1303 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER441': class PDFDictionary 
505 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot3D.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 530.9469
 234.1761
 542.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER442': class PDFDictionary 
506 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot3D.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 530.9469
 297.6378
 542.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER443': class PDFDictionary 
507 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot3D.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 530.9469
 323.1978
 542.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER444': class PDFDictionary 
508 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot3D.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 530.9469
 323.1978
 542.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER445': class PDFDictionary 
509 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTable-5.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 127.9469
 243.0561
 139.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER446': class PDFDictionary 
510 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-5.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 127.9469
 297.6378
 139.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER447': class PDFDictionary 
511 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-5.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 127.9469
 323.1978
 139.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER448': class PDFDictionary 
512 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-5.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 127.9469
 323.1978
 139.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page57': class PDFPage 
513 0 obj
% Page dictionary
<< /Annots [ 505 0 R
 506 0 R
 507 0 R
 508 0 R
 509 0 R
 510 0 R
 511 0 R
 512 0 R ]
 /Contents 1304 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER449': class PDFDictionary 
514 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-lines.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 659.9469
 209.1761
 671.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER450': class PDFDictionary 
515 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lines.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 659.9469
 297.6378
 671.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER451': class PDFDictionary 
516 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lines.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 659.9469
 323.1978
 671.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER452': class PDFDictionary 
517 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-lines.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 659.9469
 323.1978
 671.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER453': class LinkAnnotation 
518 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 475 0 R
 /Fit ]
 /Rect [ 56.69291
 440.1969
 538.5827
 452.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER454': class PDFDictionary 
519 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 350.9469
 221.9561
 362.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER455': class PDFDictionary 
520 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 350.9469
 297.6378
 362.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER456': class PDFDictionary 
521 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 350.9469
 323.1978
 362.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER457': class PDFDictionary 
522 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 350.9469
 323.1978
 362.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page58': class PDFPage 
523 0 obj
% Page dictionary
<< /Annots [ 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 ]
 /Contents 1305 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER458': class PDFDictionary 
524 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-bookmark.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 230.2761
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER459': class PDFDictionary 
525 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER460': class PDFDictionary 
526 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER461': class PDFDictionary 
527 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER462': class PDFDictionary 
528 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-bookmark.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 716.9469
 230.2761
 728.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER463': class PDFDictionary 
529 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 716.9469
 297.6378
 728.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER464': class PDFDictionary 
530 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 716.9469
 323.1978
 728.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER465': class PDFDictionary 
531 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-bookmark.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 716.9469
 323.1978
 728.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER466': class PDFDictionary 
532 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ul-ol-li.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 238.9469
 218.0661
 250.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER467': class PDFDictionary 
533 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 238.9469
 297.6378
 250.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER468': class PDFDictionary 
534 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 238.9469
 323.1978
 250.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER469': class PDFDictionary 
535 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 238.9469
 323.1978
 250.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page59': class PDFPage 
536 0 obj
% Page dictionary
<< /Annots [ 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 ]
 /Contents 1306 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER470': class PDFDictionary 
537 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 758.9469
 203.0661
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER471': class PDFDictionary 
538 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 297.6378
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER472': class PDFDictionary 
539 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER473': class PDFDictionary 
540 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER474': class PDFDictionary 
541 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 471.9469
 203.0661
 483.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER475': class PDFDictionary 
542 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 471.9469
 297.6378
 483.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER476': class PDFDictionary 
543 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 471.9469
 323.1978
 483.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER477': class PDFDictionary 
544 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 471.9469
 323.1978
 483.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER478': class PDFDictionary 
545 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-path.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 300.9469
 208.0661
 312.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER479': class PDFDictionary 
546 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 300.9469
 297.6378
 312.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER480': class PDFDictionary 
547 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 300.9469
 323.1978
 312.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER481': class PDFDictionary 
548 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 300.9469
 323.1978
 312.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER482': class PDFDictionary 
549 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 153.9469
 227.5161
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER483': class PDFDictionary 
550 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 153.9469
 297.6378
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER484': class PDFDictionary 
551 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 153.9469
 323.1978
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER485': class PDFDictionary 
552 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 153.9469
 323.1978
 165.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page60': class PDFPage 
553 0 obj
% Page dictionary
<< /Annots [ 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
 552 0 R ]
 /Contents 1307 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER486': class PDFDictionary 
554 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-name.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 707.9469
 211.9461
 719.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER487': class PDFDictionary 
555 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-name.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 707.9469
 297.6378
 719.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER488': class PDFDictionary 
556 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-name.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 707.9469
 323.1978
 719.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER489': class PDFDictionary 
557 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-name.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 707.9469
 323.1978
 719.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER490': class PDFDictionary 
558 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-nextFrame.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 419.9469
 233.6061
 431.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER491': class PDFDictionary 
559 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 419.9469
 297.6378
 431.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER492': class PDFDictionary 
560 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 419.9469
 323.1978
 431.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER493': class PDFDictionary 
561 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 419.9469
 323.1978
 431.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER494': class PDFDictionary 
562 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-nextPage.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 323.9469
 227.4961
 335.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER495': class PDFDictionary 
563 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextPage.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 323.9469
 297.6378
 335.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER496': class PDFDictionary 
564 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextPage.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 323.9469
 323.1978
 335.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER497': class PDFDictionary 
565 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-nextPage.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 323.9469
 323.1978
 335.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page61': class PDFPage 
566 0 obj
% Page dictionary
<< /Annots [ 554 0 R
 555 0 R
 556 0 R
 557 0 R
 558 0 R
 559 0 R
 560 0 R
 561 0 R
 562 0 R
 563 0 R
 564 0 R
 565 0 R ]
 /Contents 1308 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER498': class LinkAnnotation 
567 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 466 0 R
 /Fit ]
 /Rect [ 56.69291
 589.1969
 538.5827
 601.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER499': class PDFDictionary 
568 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ul-ol-li.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 451.9469
 218.0661
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER500': class PDFDictionary 
569 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 451.9469
 297.6378
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER501': class PDFDictionary 
570 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 451.9469
 323.1978
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER502': class PDFDictionary 
571 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 451.9469
 323.1978
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER503': class PDFDictionary 
572 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-selectField.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 304.9469
 234.1661
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER504': class PDFDictionary 
573 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 297.6378
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER505': class PDFDictionary 
574 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER506': class PDFDictionary 
575 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page62': class PDFPage 
576 0 obj
% Page dictionary
<< /Annots [ 567 0 R
 568 0 R
 569 0 R
 570 0 R
 571 0 R
 572 0 R
 573 0 R
 574 0 R
 575 0 R ]
 /Contents 1309 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER507': class PDFDictionary 
577 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-outlineAdd.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 234.1761
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER508': class PDFDictionary 
578 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER509': class PDFDictionary 
579 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER510': class PDFDictionary 
580 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER511': class PDFDictionary 
581 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-outlineAdd.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 740.9469
 234.1761
 752.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER512': class PDFDictionary 
582 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 740.9469
 297.6378
 752.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER513': class PDFDictionary 
583 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 740.9469
 323.1978
 752.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER514': class PDFDictionary 
584 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-outlineAdd.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 740.9469
 323.1978
 752.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER515': class LinkAnnotation 
585 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 761 0 R
 /Fit ]
 /Rect [ 56.69291
 659.1969
 538.5827
 671.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER516': class LinkAnnotation 
586 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 748 0 R
 /Fit ]
 /Rect [ 56.69291
 647.1969
 538.5827
 659.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER517': class LinkAnnotation 
587 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 327 0 R
 /Fit ]
 /Rect [ 56.69291
 635.1969
 538.5827
 647.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER518': class LinkAnnotation 
588 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 310 0 R
 /Fit ]
 /Rect [ 56.69291
 623.1969
 538.5827
 635.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER519': class LinkAnnotation 
589 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 310 0 R
 /Fit ]
 /Rect [ 56.69291
 611.1969
 538.5827
 623.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER520': class LinkAnnotation 
590 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 310 0 R
 /Fit ]
 /Rect [ 56.69291
 599.1969
 538.5827
 611.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER521': class LinkAnnotation 
591 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 310 0 R
 /Fit ]
 /Rect [ 56.69291
 587.1969
 538.5827
 599.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER522': class LinkAnnotation 
592 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 327 0 R
 /Fit ]
 /Rect [ 56.69291
 575.1969
 538.5827
 587.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER523': class LinkAnnotation 
593 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 183 0 R
 /Fit ]
 /Rect [ 56.69291
 563.1969
 538.5827
 575.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER524': class LinkAnnotation 
594 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 718 0 R
 /Fit ]
 /Rect [ 56.69291
 551.1969
 538.5827
 563.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER525': class LinkAnnotation 
595 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 345 0 R
 /Fit ]
 /Rect [ 56.69291
 539.1969
 538.5827
 551.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER526': class LinkAnnotation 
596 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 513 0 R
 /Fit ]
 /Rect [ 56.69291
 527.1969
 538.5827
 539.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER527': class LinkAnnotation 
597 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 213 0 R
 /Fit ]
 /Rect [ 56.69291
 515.1969
 538.5827
 527.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER528': class LinkAnnotation 
598 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 386 0 R
 /Fit ]
 /Rect [ 56.69291
 503.1969
 538.5827
 515.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER529': class LinkAnnotation 
599 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 696 0 R
 /Fit ]
 /Rect [ 56.69291
 491.1969
 538.5827
 503.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER530': class LinkAnnotation 
600 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 966 0 R
 /Fit ]
 /Rect [ 56.69291
 479.1969
 538.5827
 491.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER531': class LinkAnnotation 
601 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 663 0 R
 /Fit ]
 /Rect [ 56.69291
 467.1969
 538.5827
 479.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER532': class LinkAnnotation 
602 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 336 0 R
 /Fit ]
 /Rect [ 56.69291
 455.1969
 538.5827
 467.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER533': class LinkAnnotation 
603 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 946 0 R
 /Fit ]
 /Rect [ 56.69291
 443.1969
 538.5827
 455.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER534': class LinkAnnotation 
604 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 779 0 R
 /Fit ]
 /Rect [ 56.69291
 431.1969
 538.5827
 443.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER535': class LinkAnnotation 
605 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 796 0 R
 /Fit ]
 /Rect [ 56.69291
 419.1969
 538.5827
 431.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER536': class LinkAnnotation 
606 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 761 0 R
 /Fit ]
 /Rect [ 56.69291
 407.1969
 538.5827
 419.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER537': class LinkAnnotation 
607 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1010 0 R
 /Fit ]
 /Rect [ 56.69291
 395.1969
 538.5827
 407.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER538': class LinkAnnotation 
608 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 748 0 R
 /Fit ]
 /Rect [ 56.69291
 383.1969
 538.5827
 395.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER539': class LinkAnnotation 
609 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 811 0 R
 /Fit ]
 /Rect [ 56.69291
 371.1969
 538.5827
 383.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER540': class LinkAnnotation 
610 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1000 0 R
 /Fit ]
 /Rect [ 56.69291
 359.1969
 538.5827
 371.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER541': class LinkAnnotation 
611 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 481 0 R
 /Fit ]
 /Rect [ 56.69291
 347.1969
 538.5827
 359.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER542': class LinkAnnotation 
612 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 48 0 R
 /Fit ]
 /Rect [ 56.69291
 335.1969
 538.5827
 347.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER543': class LinkAnnotation 
613 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 323.1969
 538.5827
 335.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER544': class LinkAnnotation 
614 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 166 0 R
 /Fit ]
 /Rect [ 56.69291
 311.1969
 538.5827
 323.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER545': class LinkAnnotation 
615 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 761 0 R
 /Fit ]
 /Rect [ 56.69291
 299.1969
 538.5827
 311.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER546': class LinkAnnotation 
616 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 25 0 R
 /Fit ]
 /Rect [ 56.69291
 287.1969
 538.5827
 299.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER547': class LinkAnnotation 
617 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 37 0 R
 /Fit ]
 /Rect [ 56.69291
 275.1969
 538.5827
 287.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER548': class LinkAnnotation 
618 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 486 0 R
 /Fit ]
 /Rect [ 56.69291
 263.1969
 538.5827
 275.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER549': class LinkAnnotation 
619 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 497 0 R
 /Fit ]
 /Rect [ 56.69291
 251.1969
 538.5827
 263.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER550': class LinkAnnotation 
620 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 675 0 R
 /Fit ]
 /Rect [ 56.69291
 239.1969
 538.5827
 251.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER551': class LinkAnnotation 
621 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 685 0 R
 /Fit ]
 /Rect [ 56.69291
 227.1969
 538.5827
 239.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER552': class LinkAnnotation 
622 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 839 0 R
 /Fit ]
 /Rect [ 56.69291
 215.1969
 538.5827
 227.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER553': class LinkAnnotation 
623 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 153 0 R
 /Fit ]
 /Rect [ 56.69291
 203.1969
 538.5827
 215.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER554': class LinkAnnotation 
624 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 705 0 R
 /Fit ]
 /Rect [ 56.69291
 191.1969
 538.5827
 203.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER555': class PDFDictionary 
625 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-drawString.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 113.9469
 235.2961
 125.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER556': class PDFDictionary 
626 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 113.9469
 297.6378
 125.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER557': class PDFDictionary 
627 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 113.9469
 323.1978
 125.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER558': class PDFDictionary 
628 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-drawString.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 113.9469
 323.1978
 125.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page63': class PDFPage 
629 0 obj
% Page dictionary
<< /Annots [ 577 0 R
 578 0 R
 579 0 R
 580 0 R
 581 0 R
 582 0 R
 583 0 R
 584 0 R
 585 0 R
 586 0 R
 587 0 R
 588 0 R
 589 0 R
 590 0 R
 591 0 R
 592 0 R
 593 0 R
 594 0 R
 595 0 R
 596 0 R
 597 0 R
 598 0 R
 599 0 R
 600 0 R
 601 0 R
 602 0 R
 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 ]
 /Contents 1310 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER559': class PDFDictionary 
630 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pageGraphics.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 705.9469
 246.9461
 717.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER560': class PDFDictionary 
631 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 705.9469
 297.6378
 717.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER561': class PDFDictionary 
632 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 705.9469
 323.1978
 717.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER562': class PDFDictionary 
633 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 705.9469
 323.1978
 717.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER563': class PDFDictionary 
634 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pageInfo-2.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 558.9469
 234.1661
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER564': class PDFDictionary 
635 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo-2.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 558.9469
 297.6378
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER565': class PDFDictionary 
636 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo-2.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 558.9469
 323.1978
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER566': class PDFDictionary 
637 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo-2.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 558.9469
 323.1978
 570.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER567': class PDFDictionary 
638 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pageInfo.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 528.9469
 225.8361
 540.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER568': class PDFDictionary 
639 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 528.9469
 297.6378
 540.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER569': class PDFDictionary 
640 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 528.9469
 323.1978
 540.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER570': class PDFDictionary 
641 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageInfo.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 528.9469
 323.1978
 540.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER571': class LinkAnnotation 
642 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 336 0 R
 /Fit ]
 /Rect [ 56.69291
 338.1969
 538.5827
 350.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER572': class LinkAnnotation 
643 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 629 0 R
 /Fit ]
 /Rect [ 56.69291
 326.1969
 538.5827
 338.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER573': class PDFDictionary 
644 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-document-story.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 248.9469
 252.4961
 260.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER574': class PDFDictionary 
645 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 248.9469
 297.6378
 260.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER575': class PDFDictionary 
646 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 248.9469
 323.1978
 260.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER576': class PDFDictionary 
647 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 248.9469
 323.1978
 260.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page64': class PDFPage 
648 0 obj
% Page dictionary
<< /Annots [ 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 ]
 /Contents 1311 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page65': class PDFPage 
649 0 obj
% Page dictionary
<< /Contents 1312 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER577': class PDFDictionary 
650 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 690.9469
 209.1761
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER578': class PDFDictionary 
651 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 297.6378
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER579': class PDFDictionary 
652 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER580': class PDFDictionary 
653 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page66': class PDFPage 
654 0 obj
% Page dictionary
<< /Annots [ 650 0 R
 651 0 R
 652 0 R
 653 0 R ]
 /Contents 1313 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER581': class PDFDictionary 
655 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/simple-layout.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 458.9469
 228.6161
 470.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER582': class PDFDictionary 
656 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 458.9469
 297.6378
 470.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER583': class PDFDictionary 
657 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 458.9469
 323.1978
 470.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER584': class PDFDictionary 
658 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 458.9469
 323.1978
 470.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER585': class PDFDictionary 
659 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-textAnnotation.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 260.9469
 249.1761
 272.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER586': class PDFDictionary 
660 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 260.9469
 297.6378
 272.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER587': class PDFDictionary 
661 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 260.9469
 323.1978
 272.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER588': class PDFDictionary 
662 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 260.9469
 323.1978
 272.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page67': class PDFPage 
663 0 obj
% Page dictionary
<< /Annots [ 655 0 R
 656 0 R
 657 0 R
 658 0 R
 659 0 R
 660 0 R
 661 0 R
 662 0 R ]
 /Contents 1314 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER589': class LinkAnnotation 
664 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 654.1969
 538.5827
 666.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER590': class LinkAnnotation 
665 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 213 0 R
 /Fit ]
 /Rect [ 56.69291
 642.1969
 538.5827
 654.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER591': class LinkAnnotation 
666 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 213 0 R
 /Fit ]
 /Rect [ 56.69291
 630.1969
 538.5827
 642.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER592': class PDFDictionary 
667 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-path.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 468.9469
 208.0661
 480.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER593': class PDFDictionary 
668 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 468.9469
 297.6378
 480.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER594': class PDFDictionary 
669 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 468.9469
 323.1978
 480.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER595': class PDFDictionary 
670 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 468.9469
 323.1978
 480.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER596': class PDFDictionary 
671 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-path.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 390.9469
 208.0661
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER597': class PDFDictionary 
672 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 390.9469
 297.6378
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER598': class PDFDictionary 
673 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 390.9469
 323.1978
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER599': class PDFDictionary 
674 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-path.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 390.9469
 323.1978
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page68': class PDFPage 
675 0 obj
% Page dictionary
<< /Annots [ 664 0 R
 665 0 R
 666 0 R
 667 0 R
 668 0 R
 669 0 R
 670 0 R
 671 0 R
 672 0 R
 673 0 R
 674 0 R ]
 /Contents 1315 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER600': class LinkAnnotation 
676 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 403.1969
 538.5827
 415.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER601': class LinkAnnotation 
677 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 831 0 R
 /Fit ]
 /Rect [ 56.69291
 391.1969
 538.5827
 403.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER602': class LinkAnnotation 
678 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 457 0 R
 /Fit ]
 /Rect [ 56.69291
 379.1969
 538.5827
 391.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER603': class LinkAnnotation 
679 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 367.1969
 538.5827
 379.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page69': class PDFPage 
680 0 obj
% Page dictionary
<< /Annots [ 676 0 R
 677 0 R
 678 0 R
 679 0 R ]
 /Contents 1316 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER604': class PDFDictionary 
681 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 225.8461
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER605': class PDFDictionary 
682 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER606': class PDFDictionary 
683 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER607': class PDFDictionary 
684 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page70': class PDFPage 
685 0 obj
% Page dictionary
<< /Annots [ 681 0 R
 682 0 R
 683 0 R
 684 0 R ]
 /Contents 1317 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER608': class LinkAnnotation 
686 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 817 0 R
 /Fit ]
 /Rect [ 56.69291
 693.1969
 538.5827
 705.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER609': class LinkAnnotation 
687 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 681.1969
 538.5827
 693.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER610': class PDFDictionary 
688 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 363.9469
 235.8461
 375.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER611': class PDFDictionary 
689 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 363.9469
 297.6378
 375.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER612': class PDFDictionary 
690 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 363.9469
 323.1978
 375.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER613': class PDFDictionary 
691 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 363.9469
 323.1978
 375.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER614': class PDFDictionary 
692 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-place.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 105.9469
 211.9461
 117.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER615': class PDFDictionary 
693 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-place.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 105.9469
 297.6378
 117.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER616': class PDFDictionary 
694 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-place.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 105.9469
 323.1978
 117.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER617': class PDFDictionary 
695 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-place.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 105.9469
 323.1978
 117.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page71': class PDFPage 
696 0 obj
% Page dictionary
<< /Annots [ 686 0 R
 687 0 R
 688 0 R
 689 0 R
 690 0 R
 691 0 R
 692 0 R
 693 0 R
 694 0 R
 695 0 R ]
 /Contents 1318 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER618': class PDFDictionary 
697 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-plugInFlowable.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 586.9469
 254.1761
 598.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER619': class PDFDictionary 
698 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 586.9469
 297.6378
 598.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER620': class PDFDictionary 
699 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 586.9469
 323.1978
 598.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER621': class PDFDictionary 
700 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInFlowable.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 586.9469
 323.1978
 598.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER622': class PDFDictionary 
701 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-plugInGraphic.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 311.9469
 249.7261
 323.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER623': class PDFDictionary 
702 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInGraphic.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 311.9469
 297.6378
 323.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER624': class PDFDictionary 
703 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInGraphic.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 311.9469
 323.1978
 323.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER625': class PDFDictionary 
704 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-plugInGraphic.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 311.9469
 323.1978
 323.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page72': class PDFPage 
705 0 obj
% Page dictionary
<< /Annots [ 697 0 R
 698 0 R
 699 0 R
 700 0 R
 701 0 R
 702 0 R
 703 0 R
 704 0 R ]
 /Contents 1319 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER626': class PDFDictionary 
706 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 225.8461
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER627': class PDFDictionary 
707 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER628': class PDFDictionary 
708 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER629': class PDFDictionary 
709 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER630': class PDFDictionary 
710 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 456.9469
 209.1761
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER631': class PDFDictionary 
711 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 456.9469
 297.6378
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER632': class PDFDictionary 
712 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 456.9469
 323.1978
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER633': class PDFDictionary 
713 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 456.9469
 323.1978
 468.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER634': class PDFDictionary 
714 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pto.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 168.9469
 203.0661
 180.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER635': class PDFDictionary 
715 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pto.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 168.9469
 297.6378
 180.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER636': class PDFDictionary 
716 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pto.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 168.9469
 323.1978
 180.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER637': class PDFDictionary 
717 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pto.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 168.9469
 323.1978
 180.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page73': class PDFPage 
718 0 obj
% Page dictionary
<< /Annots [ 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 ]
 /Contents 1320 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER638': class PDFDictionary 
719 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-rectange.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 516.9469
 225.2761
 528.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER639': class PDFDictionary 
720 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rectange.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 516.9469
 297.6378
 528.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER640': class PDFDictionary 
721 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rectange.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 516.9469
 323.1978
 528.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER641': class PDFDictionary 
722 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rectange.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 516.9469
 323.1978
 528.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER642': class PDFDictionary 
723 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerCidFont.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 340.9469
 254.7361
 352.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER643': class PDFDictionary 
724 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 340.9469
 297.6378
 352.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER644': class PDFDictionary 
725 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 340.9469
 323.1978
 352.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER645': class PDFDictionary 
726 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 340.9469
 323.1978
 352.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER646': class PDFDictionary 
727 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerCidFont.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 310.9469
 254.7361
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER647': class PDFDictionary 
728 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 310.9469
 297.6378
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER648': class PDFDictionary 
729 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 310.9469
 323.1978
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER649': class PDFDictionary 
730 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerCidFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 310.9469
 323.1978
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER650': class PDFDictionary 
731 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerType1Face.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 93.94685
 265.8261
 105.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER651': class PDFDictionary 
732 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 81.94685
 297.6378
 93.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER652': class PDFDictionary 
733 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 81.94685
 323.1978
 93.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER653': class PDFDictionary 
734 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 81.94685
 323.1978
 93.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page74': class PDFPage 
735 0 obj
% Page dictionary
<< /Annots [ 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
 732 0 R
 733 0 R
 734 0 R ]
 /Contents 1321 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER654': class PDFDictionary 
736 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerTTFont.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 416.9469
 251.4061
 428.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER655': class PDFDictionary 
737 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 416.9469
 297.6378
 428.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER656': class PDFDictionary 
738 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 416.9469
 323.1978
 428.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER657': class PDFDictionary 
739 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerTTFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 416.9469
 323.1978
 428.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER658': class PDFDictionary 
740 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-registerType1Face.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 240.9469
 265.8261
 252.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER659': class PDFDictionary 
741 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 228.9469
 297.6378
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER660': class PDFDictionary 
742 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 228.9469
 323.1978
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER661': class PDFDictionary 
743 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-registerType1Face.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 228.9469
 323.1978
 240.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER662': class PDFDictionary 
744 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-saveState-restoreState.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 132.9469
 277.2161
 144.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER663': class PDFDictionary 
745 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 120.9469
 297.6378
 132.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER664': class PDFDictionary 
746 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 120.9469
 323.1978
 132.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER665': class PDFDictionary 
747 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 120.9469
 323.1978
 132.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page75': class PDFPage 
748 0 obj
% Page dictionary
<< /Annots [ 736 0 R
 737 0 R
 738 0 R
 739 0 R
 740 0 R
 741 0 R
 742 0 R
 743 0 R
 744 0 R
 745 0 R
 746 0 R
 747 0 R ]
 /Contents 1322 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER666': class PDFDictionary 
749 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-rotate.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 690.9469
 214.1761
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER667': class PDFDictionary 
750 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rotate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 297.6378
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER668': class PDFDictionary 
751 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rotate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER669': class PDFDictionary 
752 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-rotate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 690.9469
 323.1978
 702.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER670': class PDFDictionary 
753 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-saveState-restoreState.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 498.9469
 277.2161
 510.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER671': class PDFDictionary 
754 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 486.9469
 297.6378
 498.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER672': class PDFDictionary 
755 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 486.9469
 323.1978
 498.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER673': class PDFDictionary 
756 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-saveState-restoreState.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 486.9469
 323.1978
 498.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER674': class PDFDictionary 
757 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-scale.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 310.9469
 210.8361
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER675': class PDFDictionary 
758 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-scale.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 310.9469
 297.6378
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER676': class PDFDictionary 
759 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-scale.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 310.9469
 323.1978
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER677': class PDFDictionary 
760 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-scale.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 310.9469
 323.1978
 322.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page76': class PDFPage 
761 0 obj
% Page dictionary
<< /Annots [ 749 0 R
 750 0 R
 751 0 R
 752 0 R
 753 0 R
 754 0 R
 755 0 R
 756 0 R
 757 0 R
 758 0 R
 759 0 R
 760 0 R ]
 /Contents 1323 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER678': class LinkAnnotation 
762 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 576 0 R
 /Fit ]
 /Rect [ 56.69291
 756.1969
 538.5827
 768.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER679': class PDFDictionary 
763 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-selectField.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 642.9469
 234.1661
 654.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER680': class PDFDictionary 
764 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 642.9469
 297.6378
 654.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER681': class PDFDictionary 
765 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 642.9469
 323.1978
 654.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER682': class PDFDictionary 
766 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-selectField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 642.9469
 323.1978
 654.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER683': class PDFDictionary 
767 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 495.9469
 227.5161
 507.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER684': class PDFDictionary 
768 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 495.9469
 297.6378
 507.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER685': class PDFDictionary 
769 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 495.9469
 323.1978
 507.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER686': class PDFDictionary 
770 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 495.9469
 323.1978
 507.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER687': class PDFDictionary 
771 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 276.9469
 221.9561
 288.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER688': class PDFDictionary 
772 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 276.9469
 297.6378
 288.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER689': class PDFDictionary 
773 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 276.9469
 323.1978
 288.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER690': class PDFDictionary 
774 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 276.9469
 323.1978
 288.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER691': class PDFDictionary 
775 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pageGraphics.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 71.94685
 246.9461
 83.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER692': class PDFDictionary 
776 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 71.94685
 297.6378
 83.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER693': class PDFDictionary 
777 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 71.94685
 323.1978
 83.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER694': class PDFDictionary 
778 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pageGraphics.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 71.94685
 323.1978
 83.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page77': class PDFPage 
779 0 obj
% Page dictionary
<< /Annots [ 762 0 R
 763 0 R
 764 0 R
 765 0 R
 766 0 R
 767 0 R
 768 0 R
 769 0 R
 770 0 R
 771 0 R
 772 0 R
 773 0 R
 774 0 R
 775 0 R
 776 0 R
 777 0 R
 778 0 R ]
 /Contents 1324 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER695': class PDFDictionary 
780 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-setFont.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 758.9469
 220.2861
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER696': class PDFDictionary 
781 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 297.6378
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER697': class PDFDictionary 
782 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER698': class PDFDictionary 
783 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFont.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER699': class PDFDictionary 
784 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-setFontSize.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 582.9469
 236.3961
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER700': class PDFDictionary 
785 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFontSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 582.9469
 297.6378
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER701': class PDFDictionary 
786 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFontSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 582.9469
 323.1978
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER702': class PDFDictionary 
787 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setFontSize.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 582.9469
 323.1978
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER703': class PDFDictionary 
788 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-setNextFrame.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 435.9469
 246.3861
 447.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER704': class PDFDictionary 
789 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 435.9469
 297.6378
 447.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER705': class PDFDictionary 
790 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 435.9469
 323.1978
 447.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER706': class PDFDictionary 
791 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextFrame.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 435.9469
 323.1978
 447.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER707': class PDFDictionary 
792 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-setNextTemplate.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 288.9469
 256.9461
 300.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER708': class PDFDictionary 
793 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextTemplate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 288.9469
 297.6378
 300.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER709': class PDFDictionary 
794 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextTemplate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 288.9469
 323.1978
 300.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER710': class PDFDictionary 
795 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-setNextTemplate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 288.9469
 323.1978
 300.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page78': class PDFPage 
796 0 obj
% Page dictionary
<< /Annots [ 780 0 R
 781 0 R
 782 0 R
 783 0 R
 784 0 R
 785 0 R
 786 0 R
 787 0 R
 788 0 R
 789 0 R
 790 0 R
 791 0 R
 792 0 R
 793 0 R
 794 0 R
 795 0 R ]
 /Contents 1325 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER711': class PDFDictionary 
797 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-index.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 211.9461
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER712': class PDFDictionary 
798 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER713': class PDFDictionary 
799 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER714': class PDFDictionary 
800 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER715': class PDFDictionary 
801 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-skew.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 594.9469
 209.7261
 606.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER716': class PDFDictionary 
802 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-skew.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 594.9469
 297.6378
 606.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER717': class PDFDictionary 
803 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-skew.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 594.9469
 323.1978
 606.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER718': class PDFDictionary 
804 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-skew.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 594.9469
 323.1978
 606.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER719': class LinkAnnotation 
805 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 434 0 R
 /Fit ]
 /Rect [ 56.69291
 242.1969
 538.5827
 254.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER720': class LinkAnnotation 
806 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 705 0 R
 /Fit ]
 /Rect [ 56.69291
 230.1969
 538.5827
 242.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER721': class PDFDictionary 
807 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 176.9469
 225.8461
 188.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER722': class PDFDictionary 
808 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 176.9469
 297.6378
 188.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER723': class PDFDictionary 
809 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 176.9469
 323.1978
 188.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER724': class PDFDictionary 
810 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 176.9469
 323.1978
 188.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page79': class PDFPage 
811 0 obj
% Page dictionary
<< /Annots [ 797 0 R
 798 0 R
 799 0 R
 800 0 R
 801 0 R
 802 0 R
 803 0 R
 804 0 R
 805 0 R
 806 0 R
 807 0 R
 808 0 R
 809 0 R
 810 0 R ]
 /Contents 1326 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER725': class PDFDictionary 
812 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 499.9469
 235.8461
 511.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER726': class PDFDictionary 
813 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 499.9469
 297.6378
 511.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER727': class PDFDictionary 
814 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 499.9469
 323.1978
 511.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER728': class PDFDictionary 
815 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 499.9469
 323.1978
 511.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER729': class LinkAnnotation 
816 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 811 0 R
 /Fit ]
 /Rect [ 56.69291
 147.1969
 538.5827
 159.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page80': class PDFPage 
817 0 obj
% Page dictionary
<< /Annots [ 812 0 R
 813 0 R
 814 0 R
 815 0 R
 816 0 R ]
 /Contents 1327 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER730': class PDFDictionary 
818 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart3d.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 722.9469
 235.8461
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER731': class PDFDictionary 
819 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 722.9469
 297.6378
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER732': class PDFDictionary 
820 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 722.9469
 323.1978
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER733': class PDFDictionary 
821 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart3d.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 722.9469
 323.1978
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER734': class LinkAnnotation 
822 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 811 0 R
 /Fit ]
 /Rect [ 56.69291
 387.1969
 538.5827
 399.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER735': class PDFDictionary 
823 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-pieChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 237.9469
 225.8461
 249.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER736': class PDFDictionary 
824 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 237.9469
 297.6378
 249.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER737': class PDFDictionary 
825 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 237.9469
 323.1978
 249.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER738': class PDFDictionary 
826 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-pieChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 237.9469
 323.1978
 249.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER739': class PDFDictionary 
827 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spacer.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 61.94685
 216.9461
 73.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER740': class PDFDictionary 
828 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spacer.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 61.94685
 297.6378
 73.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER741': class PDFDictionary 
829 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spacer.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 61.94685
 323.1978
 73.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER742': class PDFDictionary 
830 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spacer.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 61.94685
 323.1978
 73.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page81': class PDFPage 
831 0 obj
% Page dictionary
<< /Annots [ 818 0 R
 819 0 R
 820 0 R
 821 0 R
 822 0 R
 823 0 R
 824 0 R
 825 0 R
 826 0 R
 827 0 R
 828 0 R
 829 0 R
 830 0 R ]
 /Contents 1328 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER743': class LinkAnnotation 
832 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 229 0 R
 /Fit ]
 /Rect [ 56.69291
 260.1969
 538.5827
 272.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER744': class LinkAnnotation 
833 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 946 0 R
 /Fit ]
 /Rect [ 56.69291
 248.1969
 538.5827
 260.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER745': class LinkAnnotation 
834 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 926 0 R
 /Fit ]
 /Rect [ 56.69291
 236.1969
 538.5827
 248.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER746': class LinkAnnotation 
835 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 850 0 R
 /Fit ]
 /Rect [ 56.69291
 224.1969
 538.5827
 236.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER747': class LinkAnnotation 
836 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 844 0 R
 /Fit ]
 /Rect [ 56.69291
 212.1969
 538.5827
 224.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER748': class LinkAnnotation 
837 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 457 0 R
 /Fit ]
 /Rect [ 56.69291
 200.1969
 538.5827
 212.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER749': class LinkAnnotation 
838 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 981 0 R
 /Fit ]
 /Rect [ 56.69291
 188.1969
 538.5827
 200.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page82': class PDFPage 
839 0 obj
% Page dictionary
<< /Annots [ 832 0 R
 833 0 R
 834 0 R
 835 0 R
 836 0 R
 837 0 R
 838 0 R ]
 /Contents 1329 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER750': class PDFDictionary 
840 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 602.9469
 238.6261
 614.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER751': class PDFDictionary 
841 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 602.9469
 297.6378
 614.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER752': class PDFDictionary 
842 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 602.9469
 323.1978
 614.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER753': class PDFDictionary 
843 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 602.9469
 323.1978
 614.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page83': class PDFPage 
844 0 obj
% Page dictionary
<< /Annots [ 840 0 R
 841 0 R
 842 0 R
 843 0 R ]
 /Contents 1330 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER754': class LinkAnnotation 
845 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 440 0 R
 /Fit ]
 /Rect [ 56.69291
 316.1969
 538.5827
 328.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER755': class PDFDictionary 
846 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 178.9469
 238.6261
 190.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER756': class PDFDictionary 
847 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 178.9469
 297.6378
 190.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER757': class PDFDictionary 
848 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 178.9469
 323.1978
 190.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER758': class PDFDictionary 
849 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 178.9469
 323.1978
 190.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page84': class PDFPage 
850 0 obj
% Page dictionary
<< /Annots [ 845 0 R
 846 0 R
 847 0 R
 848 0 R
 849 0 R ]
 /Contents 1331 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER759': class LinkAnnotation 
851 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 844 0 R
 /Fit ]
 /Rect [ 56.69291
 618.1969
 538.5827
 630.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER760': class PDFDictionary 
852 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 564.9469
 238.6261
 576.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER761': class PDFDictionary 
853 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 564.9469
 297.6378
 576.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER762': class PDFDictionary 
854 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 564.9469
 323.1978
 576.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER763': class PDFDictionary 
855 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 564.9469
 323.1978
 576.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER764': class PDFDictionary 
856 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-index.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 359.9469
 211.9461
 371.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER765': class PDFDictionary 
857 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 359.9469
 297.6378
 371.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER766': class PDFDictionary 
858 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 359.9469
 323.1978
 371.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER767': class PDFDictionary 
859 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-index.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 359.9469
 323.1978
 371.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER768': class LinkAnnotation 
860 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 831 0 R
 /Fit ]
 /Rect [ 56.69291
 227.1969
 538.5827
 239.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER769': class LinkAnnotation 
861 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 386 0 R
 /Fit ]
 /Rect [ 56.69291
 215.1969
 538.5827
 227.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER770': class LinkAnnotation 
862 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 718 0 R
 /Fit ]
 /Rect [ 56.69291
 203.1969
 538.5827
 215.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER771': class LinkAnnotation 
863 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1034 0 R
 /Fit ]
 /Rect [ 56.69291
 191.1969
 538.5827
 203.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER772': class LinkAnnotation 
864 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 183 0 R
 /Fit ]
 /Rect [ 56.69291
 179.1969
 538.5827
 191.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER773': class LinkAnnotation 
865 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 696 0 R
 /Fit ]
 /Rect [ 56.69291
 167.1969
 538.5827
 179.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER774': class LinkAnnotation 
866 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 58 0 R
 /Fit ]
 /Rect [ 56.69291
 155.1969
 538.5827
 167.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER775': class LinkAnnotation 
867 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 576 0 R
 /Fit ]
 /Rect [ 56.69291
 143.1969
 538.5827
 155.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER776': class LinkAnnotation 
868 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 986 0 R
 /Fit ]
 /Rect [ 56.69291
 131.1969
 538.5827
 143.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER777': class LinkAnnotation 
869 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 345 0 R
 /Fit ]
 /Rect [ 56.69291
 119.1969
 538.5827
 131.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER778': class LinkAnnotation 
870 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 350 0 R
 /Fit ]
 /Rect [ 56.69291
 107.1969
 538.5827
 119.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER779': class LinkAnnotation 
871 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 356 0 R
 /Fit ]
 /Rect [ 56.69291
 95.19685
 538.5827
 107.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER780': class LinkAnnotation 
872 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 361 0 R
 /Fit ]
 /Rect [ 56.69291
 83.19685
 538.5827
 95.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER781': class LinkAnnotation 
873 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 367 0 R
 /Fit ]
 /Rect [ 56.69291
 71.19685
 538.5827
 83.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER782': class LinkAnnotation 
874 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 372 0 R
 /Fit ]
 /Rect [ 56.69291
 59.19685
 538.5827
 71.19685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page85': class PDFPage 
875 0 obj
% Page dictionary
<< /Annots [ 851 0 R
 852 0 R
 853 0 R
 854 0 R
 855 0 R
 856 0 R
 857 0 R
 858 0 R
 859 0 R
 860 0 R
 861 0 R
 862 0 R
 863 0 R
 864 0 R
 865 0 R
 866 0 R
 867 0 R
 868 0 R
 869 0 R
 870 0 R
 871 0 R
 872 0 R
 873 0 R
 874 0 R ]
 /Contents 1332 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER783': class LinkAnnotation 
876 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 648 0 R
 /Fit ]
 /Rect [ 56.69291
 773.1969
 538.5827
 785.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER784': class LinkAnnotation 
877 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 129 0 R
 /Fit ]
 /Rect [ 56.69291
 761.1969
 538.5827
 773.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER785': class LinkAnnotation 
878 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 566 0 R
 /Fit ]
 /Rect [ 56.69291
 749.1969
 538.5827
 761.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER786': class LinkAnnotation 
879 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 796 0 R
 /Fit ]
 /Rect [ 56.69291
 737.1969
 538.5827
 749.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER787': class LinkAnnotation 
880 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 566 0 R
 /Fit ]
 /Rect [ 56.69291
 725.1969
 538.5827
 737.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER788': class LinkAnnotation 
881 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 796 0 R
 /Fit ]
 /Rect [ 56.69291
 713.1969
 538.5827
 725.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER789': class LinkAnnotation 
882 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 200 0 R
 /Fit ]
 /Rect [ 56.69291
 701.1969
 538.5827
 713.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER790': class LinkAnnotation 
883 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 424 0 R
 /Fit ]
 /Rect [ 56.69291
 689.1969
 538.5827
 701.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER791': class LinkAnnotation 
884 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 424 0 R
 /Fit ]
 /Rect [ 56.69291
 677.1969
 538.5827
 689.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER792': class LinkAnnotation 
885 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 395 0 R
 /Fit ]
 /Rect [ 56.69291
 665.1969
 538.5827
 677.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER793': class LinkAnnotation 
886 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 395 0 R
 /Fit ]
 /Rect [ 56.69291
 653.1969
 538.5827
 665.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER794': class LinkAnnotation 
887 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 718 0 R
 /Fit ]
 /Rect [ 56.69291
 641.1969
 538.5827
 653.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER795': class LinkAnnotation 
888 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 408 0 R
 /Fit ]
 /Rect [ 56.69291
 629.1969
 538.5827
 641.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER796': class LinkAnnotation 
889 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 336 0 R
 /Fit ]
 /Rect [ 56.69291
 617.1969
 538.5827
 629.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER797': class LinkAnnotation 
890 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 153 0 R
 /Fit ]
 /Rect [ 56.69291
 605.1969
 538.5827
 617.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER798': class LinkAnnotation 
891 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 153 0 R
 /Fit ]
 /Rect [ 56.69291
 593.1969
 538.5827
 605.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER799': class LinkAnnotation 
892 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 523 0 R
 /Fit ]
 /Rect [ 56.69291
 581.1969
 538.5827
 593.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER800': class LinkAnnotation 
893 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 377 0 R
 /Fit ]
 /Rect [ 56.69291
 569.1969
 538.5827
 581.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER801': class LinkAnnotation 
894 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 796 0 R
 /Fit ]
 /Rect [ 56.69291
 557.1969
 538.5827
 569.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER802': class LinkAnnotation 
895 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 553 0 R
 /Fit ]
 /Rect [ 56.69291
 545.1969
 538.5827
 557.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER803': class LinkAnnotation 
896 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 566 0 R
 /Fit ]
 /Rect [ 56.69291
 533.1969
 538.5827
 545.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER804': class LinkAnnotation 
897 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 536 0 R
 /Fit ]
 /Rect [ 56.69291
 521.1969
 538.5827
 533.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER805': class LinkAnnotation 
898 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 254 0 R
 /Fit ]
 /Rect [ 56.69291
 509.1969
 538.5827
 521.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER806': class LinkAnnotation 
899 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 408 0 R
 /Fit ]
 /Rect [ 56.69291
 497.1969
 538.5827
 509.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER807': class LinkAnnotation 
900 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1024 0 R
 /Fit ]
 /Rect [ 56.69291
 485.1969
 538.5827
 497.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER808': class LinkAnnotation 
901 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 327 0 R
 /Fit ]
 /Rect [ 56.69291
 473.1969
 538.5827
 485.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER809': class LinkAnnotation 
902 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 200 0 R
 /Fit ]
 /Rect [ 56.69291
 461.1969
 538.5827
 473.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER810': class LinkAnnotation 
903 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 254 0 R
 /Fit ]
 /Rect [ 56.69291
 449.1969
 538.5827
 461.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER811': class LinkAnnotation 
904 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 254 0 R
 /Fit ]
 /Rect [ 56.69291
 437.1969
 538.5827
 449.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER812': class LinkAnnotation 
905 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 272 0 R
 /Fit ]
 /Rect [ 56.69291
 425.1969
 538.5827
 437.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER813': class LinkAnnotation 
906 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 254 0 R
 /Fit ]
 /Rect [ 56.69291
 413.1969
 538.5827
 425.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER814': class LinkAnnotation 
907 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 254 0 R
 /Fit ]
 /Rect [ 56.69291
 401.1969
 538.5827
 413.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER815': class LinkAnnotation 
908 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 272 0 R
 /Fit ]
 /Rect [ 56.69291
 389.1969
 538.5827
 401.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER816': class LinkAnnotation 
909 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 566 0 R
 /Fit ]
 /Rect [ 56.69291
 377.1969
 538.5827
 389.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER817': class LinkAnnotation 
910 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 1010 0 R
 /Fit ]
 /Rect [ 56.69291
 365.1969
 538.5827
 377.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER818': class LinkAnnotation 
911 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 408 0 R
 /Fit ]
 /Rect [ 56.69291
 353.1969
 538.5827
 365.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER819': class LinkAnnotation 
912 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 917 0 R
 /Fit ]
 /Rect [ 56.69291
 341.1969
 538.5827
 353.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER820': class PDFDictionary 
913 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/simple-layout.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 263.9469
 228.6161
 275.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER821': class PDFDictionary 
914 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 263.9469
 297.6378
 275.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER822': class PDFDictionary 
915 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 263.9469
 323.1978
 275.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER823': class PDFDictionary 
916 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 263.9469
 323.1978
 275.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page86': class PDFPage 
917 0 obj
% Page dictionary
<< /Annots [ 876 0 R
 877 0 R
 878 0 R
 879 0 R
 880 0 R
 881 0 R
 882 0 R
 883 0 R
 884 0 R
 885 0 R
 886 0 R
 887 0 R
 888 0 R
 889 0 R
 890 0 R
 891 0 R
 892 0 R
 893 0 R
 894 0 R
 895 0 R
 896 0 R
 897 0 R
 898 0 R
 899 0 R
 900 0 R
 901 0 R
 902 0 R
 903 0 R
 904 0 R
 905 0 R
 906 0 R
 907 0 R
 908 0 R
 909 0 R
 910 0 R
 911 0 R
 912 0 R
 913 0 R
 914 0 R
 915 0 R
 916 0 R ]
 /Contents 1333 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER824': class PDFDictionary 
918 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-storyPlace.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 695.9469
 233.0561
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER825': class PDFDictionary 
919 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-storyPlace.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 695.9469
 297.6378
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER826': class PDFDictionary 
920 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-storyPlace.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 695.9469
 323.1978
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER827': class PDFDictionary 
921 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-storyPlace.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 695.9469
 323.1978
 707.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER828': class PDFDictionary 
922 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 374.9469
 238.6261
 386.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER829': class PDFDictionary 
923 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 374.9469
 297.6378
 386.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER830': class PDFDictionary 
924 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 374.9469
 323.1978
 386.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER831': class PDFDictionary 
925 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 374.9469
 323.1978
 386.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page87': class PDFPage 
926 0 obj
% Page dictionary
<< /Annots [ 918 0 R
 919 0 R
 920 0 R
 921 0 R
 922 0 R
 923 0 R
 924 0 R
 925 0 R ]
 /Contents 1334 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER832': class LinkAnnotation 
927 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 429 0 R
 /Fit ]
 /Rect [ 56.69291
 190.1969
 538.5827
 202.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER833': class PDFDictionary 
928 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 64.94685
 238.6261
 76.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER834': class PDFDictionary 
929 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 64.94685
 297.6378
 76.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER835': class PDFDictionary 
930 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 64.94685
 323.1978
 76.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER836': class PDFDictionary 
931 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 64.94685
 323.1978
 76.94685 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page88': class PDFPage 
932 0 obj
% Page dictionary
<< /Annots [ 927 0 R
 928 0 R
 929 0 R
 930 0 R
 931 0 R ]
 /Contents 1335 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER837': class LinkAnnotation 
933 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 926 0 R
 /Fit ]
 /Rect [ 56.69291
 492.1969
 538.5827
 504.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER838': class PDFDictionary 
934 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-spiderChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 390.9469
 238.6261
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER839': class PDFDictionary 
935 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 390.9469
 297.6378
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER840': class PDFDictionary 
936 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 390.9469
 323.1978
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER841': class PDFDictionary 
937 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-spiderChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 390.9469
 323.1978
 402.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER842': class PDFDictionary 
938 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-stroke.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 243.9469
 214.7261
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER843': class PDFDictionary 
939 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-stroke.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 243.9469
 297.6378
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER844': class PDFDictionary 
940 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-stroke.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 243.9469
 323.1978
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER845': class PDFDictionary 
941 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-stroke.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 243.9469
 323.1978
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER846': class LinkAnnotation 
942 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 424 0 R
 /Fit ]
 /Rect [ 56.69291
 162.1969
 538.5827
 174.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER847': class LinkAnnotation 
943 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 654 0 R
 /Fit ]
 /Rect [ 56.69291
 150.1969
 538.5827
 162.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER848': class LinkAnnotation 
944 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 129 0 R
 /Fit ]
 /Rect [ 56.69291
 138.1969
 538.5827
 150.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER849': class LinkAnnotation 
945 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 536 0 R
 /Fit ]
 /Rect [ 56.69291
 126.1969
 538.5827
 138.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page89': class PDFPage 
946 0 obj
% Page dictionary
<< /Annots [ 933 0 R
 934 0 R
 935 0 R
 936 0 R
 937 0 R
 938 0 R
 939 0 R
 940 0 R
 941 0 R
 942 0 R
 943 0 R
 944 0 R
 945 0 R ]
 /Contents 1336 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER850': class PDFDictionary 
947 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/simple-layout.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 770.9469
 228.6161
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER851': class PDFDictionary 
948 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 297.6378
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER852': class PDFDictionary 
949 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER853': class PDFDictionary 
950 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/simple-layout.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 770.9469
 323.1978
 782.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page90': class PDFPage 
951 0 obj
% Page dictionary
<< /Annots [ 947 0 R
 948 0 R
 949 0 R
 950 0 R ]
 /Contents 1337 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER854': class PDFDictionary 
952 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTable-1.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 366.9469
 243.0561
 378.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER855': class PDFDictionary 
953 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 366.9469
 297.6378
 378.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER856': class PDFDictionary 
954 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 366.9469
 323.1978
 378.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER857': class PDFDictionary 
955 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 366.9469
 323.1978
 378.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page91': class PDFPage 
956 0 obj
% Page dictionary
<< /Annots [ 952 0 R
 953 0 R
 954 0 R
 955 0 R ]
 /Contents 1338 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER858': class LinkAnnotation 
957 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 648 0 R
 /Fit ]
 /Rect [ 56.69291
 693.1969
 538.5827
 705.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER859': class PDFDictionary 
958 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-document-story.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 591.9469
 252.4961
 603.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER860': class PDFDictionary 
959 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 591.9469
 297.6378
 603.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER861': class PDFDictionary 
960 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 591.9469
 323.1978
 603.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER862': class PDFDictionary 
961 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-document-story.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 591.9469
 323.1978
 603.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER863': class PDFDictionary 
962 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 183.9469
 221.9561
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER864': class PDFDictionary 
963 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 183.9469
 297.6378
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER865': class PDFDictionary 
964 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 183.9469
 323.1978
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER866': class PDFDictionary 
965 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 183.9469
 323.1978
 195.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page92': class PDFPage 
966 0 obj
% Page dictionary
<< /Annots [ 957 0 R
 958 0 R
 959 0 R
 960 0 R
 961 0 R
 962 0 R
 963 0 R
 964 0 R
 965 0 R ]
 /Contents 1339 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER867': class LinkAnnotation 
967 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 663 0 R
 /Fit ]
 /Rect [ 56.69291
 773.1969
 538.5827
 785.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER868': class PDFDictionary 
968 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-textAnnotation.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 635.9469
 249.1761
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER869': class PDFDictionary 
969 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 635.9469
 297.6378
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER870': class PDFDictionary 
970 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 635.9469
 323.1978
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER871': class PDFDictionary 
971 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textAnnotation.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 635.9469
 323.1978
 647.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER872': class PDFDictionary 
972 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-textField.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 285.9469
 225.8361
 297.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER873': class PDFDictionary 
973 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 285.9469
 297.6378
 297.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER874': class PDFDictionary 
974 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 285.9469
 323.1978
 297.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER875': class PDFDictionary 
975 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 285.9469
 323.1978
 297.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER876': class PDFDictionary 
976 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-textField.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 243.9469
 225.8361
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER877': class PDFDictionary 
977 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 243.9469
 297.6378
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER878': class PDFDictionary 
978 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 243.9469
 323.1978
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER879': class PDFDictionary 
979 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-textField.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 243.9469
 323.1978
 255.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER880': class LinkAnnotation 
980 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 966 0 R
 /Fit ]
 /Rect [ 56.69291
 162.1969
 538.5827
 174.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page93': class PDFPage 
981 0 obj
% Page dictionary
<< /Annots [ 967 0 R
 968 0 R
 969 0 R
 970 0 R
 971 0 R
 972 0 R
 973 0 R
 974 0 R
 975 0 R
 976 0 R
 977 0 R
 978 0 R
 979 0 R
 980 0 R ]
 /Contents 1340 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER881': class PDFDictionary 
982 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 722.9469
 221.9561
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER882': class PDFDictionary 
983 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 722.9469
 297.6378
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER883': class PDFDictionary 
984 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 722.9469
 323.1978
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER884': class PDFDictionary 
985 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 722.9469
 323.1978
 734.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page94': class PDFPage 
986 0 obj
% Page dictionary
<< /Annots [ 982 0 R
 983 0 R
 984 0 R
 985 0 R ]
 /Contents 1341 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER885': class PDFDictionary 
987 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 436.9469
 209.1761
 448.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER886': class PDFDictionary 
988 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 436.9469
 297.6378
 448.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER887': class PDFDictionary 
989 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 436.9469
 323.1978
 448.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER888': class PDFDictionary 
990 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 436.9469
 323.1978
 448.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER889': class PDFDictionary 
991 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-cropMarks.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 406.9469
 234.1661
 418.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER890': class PDFDictionary 
992 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 406.9469
 297.6378
 418.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER891': class PDFDictionary 
993 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 406.9469
 323.1978
 418.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER892': class PDFDictionary 
994 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-cropMarks.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 406.9469
 323.1978
 418.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER893': class LinkAnnotation 
995 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 951 0 R
 /Fit ]
 /Rect [ 56.69291
 325.1969
 538.5827
 337.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER894': class PDFDictionary 
996 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-blockTable-1.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 235.9469
 243.0561
 247.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER895': class PDFDictionary 
997 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 235.9469
 297.6378
 247.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER896': class PDFDictionary 
998 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 235.9469
 323.1978
 247.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER897': class PDFDictionary 
999 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-blockTable-1.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 235.9469
 323.1978
 247.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page95': class PDFPage 
1000 0 obj
% Page dictionary
<< /Annots [ 987 0 R
 988 0 R
 989 0 R
 990 0 R
 991 0 R
 992 0 R
 993 0 R
 994 0 R
 995 0 R
 996 0 R
 997 0 R
 998 0 R
 999 0 R ]
 /Contents 1342 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER898': class PDFDictionary 
1001 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-transform.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 758.9469
 229.7361
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER899': class PDFDictionary 
1002 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-transform.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 297.6378
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER900': class PDFDictionary 
1003 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-transform.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER901': class PDFDictionary 
1004 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-transform.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 758.9469
 323.1978
 770.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER902': class PDFDictionary 
1005 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-translate.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 582.9469
 225.8461
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER903': class PDFDictionary 
1006 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-translate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 582.9469
 297.6378
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER904': class PDFDictionary 
1007 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-translate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 582.9469
 323.1978
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER905': class PDFDictionary 
1008 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-translate.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 582.9469
 323.1978
 594.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER906': class LinkAnnotation 
1009 0 obj
<< /Border [ 0
 0
 0 ]
 /Contents ()
 /Dest [ 466 0 R
 /Fit ]
 /Rect [ 56.69291
 131.1969
 538.5827
 143.1969 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page96': class PDFPage 
1010 0 obj
% Page dictionary
<< /Annots [ 1001 0 R
 1002 0 R
 1003 0 R
 1004 0 R
 1005 0 R
 1006 0 R
 1007 0 R
 1008 0 R
 1009 0 R ]
 /Contents 1343 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER907': class PDFDictionary 
1011 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-ul-ol-li.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 626.9469
 218.0661
 638.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER908': class PDFDictionary 
1012 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 626.9469
 297.6378
 638.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER909': class PDFDictionary 
1013 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 626.9469
 323.1978
 638.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER910': class PDFDictionary 
1014 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-ul-ol-li.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 626.9469
 323.1978
 638.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page97': class PDFPage 
1015 0 obj
% Page dictionary
<< /Annots [ 1011 0 R
 1012 0 R
 1013 0 R
 1014 0 R ]
 /Contents 1344 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER911': class PDFDictionary 
1016 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-barChart.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 451.9469
 227.5161
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER912': class PDFDictionary 
1017 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 451.9469
 297.6378
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER913': class PDFDictionary 
1018 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 451.9469
 323.1978
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER914': class PDFDictionary 
1019 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-barChart.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 451.9469
 323.1978
 463.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER915': class PDFDictionary 
1020 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-log.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 304.9469
 203.0661
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER916': class PDFDictionary 
1021 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 297.6378
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER917': class PDFDictionary 
1022 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER918': class PDFDictionary 
1023 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-log.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 304.9469
 323.1978
 316.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page98': class PDFPage 
1024 0 obj
% Page dictionary
<< /Annots [ 1016 0 R
 1017 0 R
 1018 0 R
 1019 0 R
 1020 0 R
 1021 0 R
 1022 0 R
 1023 0 R ]
 /Contents 1345 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Page99': class PDFPage 
1025 0 obj
% Page dictionary
<< /Contents 1346 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER919': class PDFDictionary 
1026 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 717.9469
 221.9561
 729.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER920': class PDFDictionary 
1027 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 717.9469
 297.6378
 729.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER921': class PDFDictionary 
1028 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 717.9469
 323.1978
 729.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER922': class PDFDictionary 
1029 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 717.9469
 323.1978
 729.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER923': class PDFDictionary 
1030 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-para.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 461.9469
 209.1761
 473.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER924': class PDFDictionary 
1031 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 461.9469
 297.6378
 473.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER925': class PDFDictionary 
1032 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 461.9469
 323.1978
 473.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER926': class PDFDictionary 
1033 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-para.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 461.9469
 323.1978
 473.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page100': class PDFPage 
1034 0 obj
% Page dictionary
<< /Annots [ 1026 0 R
 1027 0 R
 1028 0 R
 1029 0 R
 1030 0 R
 1031 0 R
 1032 0 R
 1033 0 R ]
 /Contents 1347 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'Annot.NUMBER927': class PDFDictionary 
1035 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/*checkout*/z3c.rml/trunk/src/z3c/rml/tests/input/tag-linePlot.rml) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 150.2861
 144.9469
 221.9561
 156.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER928': class PDFDictionary 
1036 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 144.9469
 297.6378
 156.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER929': class PDFDictionary 
1037 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 297.6378
 144.9469
 323.1978
 156.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Annot.NUMBER930': class PDFDictionary 
1038 0 obj
<< /A << /S /URI
 /Type /Action
 /URI (http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/tests/expected/tag-linePlot.pdf?view=auto) >>
 /Border [ 0
 0
 0 ]
 /Rect [ 323.1978
 144.9469
 323.1978
 156.9469 ]
 /Subtype /Link
 /Type /Annot >>
endobj
% 'Page101': class PDFPage 
1039 0 obj
% Page dictionary
<< /Annots [ 1035 0 R
 1036 0 R
 1037 0 R
 1038 0 R ]
 /Contents 1348 0 R
 /MediaBox [ 0
 0
 595.2756
 841.8898 ]
 /Parent 1247 0 R
 /Resources << /Font 1 0 R
 /ProcSet [ /PDF
 /Text
 /ImageB
 /ImageC
 /ImageI ] >>
 /Rotate 0
 /Trans <<  >>
 /Type /Page >>
endobj
% 'R1040': class PDFCatalog 
1040 0 obj
% Document Root
<< /Outlines 1042 0 R
 /PageMode /UseNone
 /Pages 1247 0 R
 /Type /Catalog >>
endobj
% 'R1041': class PDFInfo 
1041 0 obj
<< /Author (Zope Community)
 /CreationDate (D:20121221015105+05'00')
 /Creator (\(unspecified\))
 /Keywords ()
 /Producer (ReportLab PDF Library - www.reportlab.com)
 /Subject (\(unspecified\))
 /Title (z3c.RML Reference) >>
endobj
% 'R1042': class PDFOutlines 
1042 0 obj
<< /Count 206
 /First 1043 0 R
 /Last 1069 0 R
 /Type /Outlines >>
endobj
% 'Outline.0': class OutlineEntryObject 
1043 0 obj
<< /Count 25
 /Dest [ 8 0 R
 /Fit ]
 /First 1044 0 R
 /Last 1068 0 R
 /Next 1069 0 R
 /Parent 1042 0 R
 /Title (Attribute Types) >>
endobj
% 'Outline.205.0': class OutlineEntryObject 
1044 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1045 0 R
 /Parent 1043 0 R
 /Title (Boolean) >>
endobj
% 'Outline.205.1': class OutlineEntryObject 
1045 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1046 0 R
 /Parent 1043 0 R
 /Prev 1044 0 R
 /Title (BooleanWithDefault) >>
endobj
% 'Outline.205.2': class OutlineEntryObject 
1046 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1047 0 R
 /Parent 1043 0 R
 /Prev 1045 0 R
 /Title (Choice) >>
endobj
% 'Outline.205.3': class OutlineEntryObject 
1047 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1048 0 R
 /Parent 1043 0 R
 /Prev 1046 0 R
 /Title (Color) >>
endobj
% 'Outline.205.4': class OutlineEntryObject 
1048 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1049 0 R
 /Parent 1043 0 R
 /Prev 1047 0 R
 /Title (Combination) >>
endobj
% 'Outline.205.5': class OutlineEntryObject 
1049 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1050 0 R
 /Parent 1043 0 R
 /Prev 1048 0 R
 /Title (File) >>
endobj
% 'Outline.205.6': class OutlineEntryObject 
1050 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1051 0 R
 /Parent 1043 0 R
 /Prev 1049 0 R
 /Title (FirstLevelTextNode) >>
endobj
% 'Outline.205.7': class OutlineEntryObject 
1051 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1052 0 R
 /Parent 1043 0 R
 /Prev 1050 0 R
 /Title (Float) >>
endobj
% 'Outline.205.8': class OutlineEntryObject 
1052 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1053 0 R
 /Parent 1043 0 R
 /Prev 1051 0 R
 /Title (Image) >>
endobj
% 'Outline.205.9': class OutlineEntryObject 
1053 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1054 0 R
 /Parent 1043 0 R
 /Prev 1052 0 R
 /Title (Integer) >>
endobj
% 'Outline.205.10': class OutlineEntryObject 
1054 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1055 0 R
 /Parent 1043 0 R
 /Prev 1053 0 R
 /Title (IntegerSequence) >>
endobj
% 'Outline.205.11': class OutlineEntryObject 
1055 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1056 0 R
 /Parent 1043 0 R
 /Prev 1054 0 R
 /Title (Measurement) >>
endobj
% 'Outline.205.12': class OutlineEntryObject 
1056 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1057 0 R
 /Parent 1043 0 R
 /Prev 1055 0 R
 /Title (Padding) >>
endobj
% 'Outline.205.13': class OutlineEntryObject 
1057 0 obj
<< /Dest [ 8 0 R
 /Fit ]
 /Next 1058 0 R
 /Parent 1043 0 R
 /Prev 1056 0 R
 /Title (PageSize) >>
endobj
% 'Outline.205.14': class OutlineEntryObject 
1058 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1059 0 R
 /Parent 1043 0 R
 /Prev 1057 0 R
 /Title (RawXMLContent) >>
endobj
% 'Outline.205.15': class OutlineEntryObject 
1059 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1060 0 R
 /Parent 1043 0 R
 /Prev 1058 0 R
 /Title (Sequence) >>
endobj
% 'Outline.205.16': class OutlineEntryObject 
1060 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1061 0 R
 /Parent 1043 0 R
 /Prev 1059 0 R
 /Title (String) >>
endobj
% 'Outline.205.17': class OutlineEntryObject 
1061 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1062 0 R
 /Parent 1043 0 R
 /Prev 1060 0 R
 /Title (StringOrInt) >>
endobj
% 'Outline.205.18': class OutlineEntryObject 
1062 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1063 0 R
 /Parent 1043 0 R
 /Prev 1061 0 R
 /Title (Style) >>
endobj
% 'Outline.205.19': class OutlineEntryObject 
1063 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1064 0 R
 /Parent 1043 0 R
 /Prev 1062 0 R
 /Title (Symbol) >>
endobj
% 'Outline.205.20': class OutlineEntryObject 
1064 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1065 0 R
 /Parent 1043 0 R
 /Prev 1063 0 R
 /Title (Text) >>
endobj
% 'Outline.205.21': class OutlineEntryObject 
1065 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1066 0 R
 /Parent 1043 0 R
 /Prev 1064 0 R
 /Title (TextNode) >>
endobj
% 'Outline.205.22': class OutlineEntryObject 
1066 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1067 0 R
 /Parent 1043 0 R
 /Prev 1065 0 R
 /Title (TextNodeGrid) >>
endobj
% 'Outline.205.23': class OutlineEntryObject 
1067 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Next 1068 0 R
 /Parent 1043 0 R
 /Prev 1066 0 R
 /Title (TextNodeSequence) >>
endobj
% 'Outline.205.24': class OutlineEntryObject 
1068 0 obj
<< /Dest [ 9 0 R
 /Fit ]
 /Parent 1043 0 R
 /Prev 1067 0 R
 /Title (XMLContent) >>
endobj
% 'Outline.1': class OutlineEntryObject 
1069 0 obj
<< /Count 177
 /Dest [ 25 0 R
 /Fit ]
 /First 1070 0 R
 /Last 1246 0 R
 /Parent 1042 0 R
 /Prev 1043 0 R
 /Title (Directives) >>
endobj
% 'Outline.206.0': class OutlineEntryObject 
1070 0 obj
<< /Dest [ 25 0 R
 /Fit ]
 /Next 1071 0 R
 /Parent 1069 0 R
 /Title (addMapping) >>
endobj
% 'Outline.206.1': class OutlineEntryObject 
1071 0 obj
<< /Dest [ 25 0 R
 /Fit ]
 /Next 1072 0 R
 /Parent 1069 0 R
 /Prev 1070 0 R
 /Title (alias) >>
endobj
% 'Outline.206.2': class OutlineEntryObject 
1072 0 obj
<< /Dest [ 25 0 R
 /Fit ]
 /Next 1073 0 R
 /Parent 1069 0 R
 /Prev 1071 0 R
 /Title (bar) >>
endobj
% 'Outline.206.3': class OutlineEntryObject 
1073 0 obj
<< /Dest [ 25 0 R
 /Fit ]
 /Next 1074 0 R
 /Parent 1069 0 R
 /Prev 1072 0 R
 /Title (barChart) >>
endobj
% 'Outline.206.4': class OutlineEntryObject 
1074 0 obj
<< /Dest [ 37 0 R
 /Fit ]
 /Next 1075 0 R
 /Parent 1069 0 R
 /Prev 1073 0 R
 /Title (barChart3D) >>
endobj
% 'Outline.206.5': class OutlineEntryObject 
1075 0 obj
<< /Dest [ 48 0 R
 /Fit ]
 /Next 1076 0 R
 /Parent 1069 0 R
 /Prev 1074 0 R
 /Title (barCode) >>
endobj
% 'Outline.206.6': class OutlineEntryObject 
1076 0 obj
<< /Dest [ 58 0 R
 /Fit ]
 /Next 1077 0 R
 /Parent 1069 0 R
 /Prev 1075 0 R
 /Title (barCodeFlowable) >>
endobj
% 'Outline.206.7': class OutlineEntryObject 
1077 0 obj
<< /Dest [ 67 0 R
 /Fit ]
 /Next 1078 0 R
 /Parent 1069 0 R
 /Prev 1076 0 R
 /Title (barLabels) >>
endobj
% 'Outline.206.8': class OutlineEntryObject 
1078 0 obj
<< /Dest [ 69 0 R
 /Fit ]
 /Next 1079 0 R
 /Parent 1069 0 R
 /Prev 1077 0 R
 /Title (bars) >>
endobj
% 'Outline.206.9': class OutlineEntryObject 
1079 0 obj
<< /Dest [ 79 0 R
 /Fit ]
 /Next 1080 0 R
 /Parent 1069 0 R
 /Prev 1078 0 R
 /Title (blockAlignment) >>
endobj
% 'Outline.206.10': class OutlineEntryObject 
1080 0 obj
<< /Dest [ 79 0 R
 /Fit ]
 /Next 1081 0 R
 /Parent 1069 0 R
 /Prev 1079 0 R
 /Title (blockBackground) >>
endobj
% 'Outline.206.11': class OutlineEntryObject 
1081 0 obj
<< /Dest [ 79 0 R
 /Fit ]
 /Next 1082 0 R
 /Parent 1069 0 R
 /Prev 1080 0 R
 /Title (blockBottomPadding) >>
endobj
% 'Outline.206.12': class OutlineEntryObject 
1082 0 obj
<< /Dest [ 96 0 R
 /Fit ]
 /Next 1083 0 R
 /Parent 1069 0 R
 /Prev 1081 0 R
 /Title (blockColBackground) >>
endobj
% 'Outline.206.13': class OutlineEntryObject 
1083 0 obj
<< /Dest [ 96 0 R
 /Fit ]
 /Next 1084 0 R
 /Parent 1069 0 R
 /Prev 1082 0 R
 /Title (blockFont) >>
endobj
% 'Outline.206.14': class OutlineEntryObject 
1084 0 obj
<< /Dest [ 96 0 R
 /Fit ]
 /Next 1085 0 R
 /Parent 1069 0 R
 /Prev 1083 0 R
 /Title (blockLeading) >>
endobj
% 'Outline.206.15': class OutlineEntryObject 
1085 0 obj
<< /Dest [ 109 0 R
 /Fit ]
 /Next 1086 0 R
 /Parent 1069 0 R
 /Prev 1084 0 R
 /Title (blockLeftPadding) >>
endobj
% 'Outline.206.16': class OutlineEntryObject 
1086 0 obj
<< /Dest [ 109 0 R
 /Fit ]
 /Next 1087 0 R
 /Parent 1069 0 R
 /Prev 1085 0 R
 /Title (blockRightPadding) >>
endobj
% 'Outline.206.17': class OutlineEntryObject 
1087 0 obj
<< /Dest [ 109 0 R
 /Fit ]
 /Next 1088 0 R
 /Parent 1069 0 R
 /Prev 1086 0 R
 /Title (blockRowBackground) >>
endobj
% 'Outline.206.18': class OutlineEntryObject 
1088 0 obj
<< /Dest [ 109 0 R
 /Fit ]
 /Next 1089 0 R
 /Parent 1069 0 R
 /Prev 1087 0 R
 /Title (blockSpan) >>
endobj
% 'Outline.206.19': class OutlineEntryObject 
1089 0 obj
<< /Dest [ 129 0 R
 /Fit ]
 /Next 1090 0 R
 /Parent 1069 0 R
 /Prev 1088 0 R
 /Title (blockTable) >>
endobj
% 'Outline.206.20': class OutlineEntryObject 
1090 0 obj
<< /Dest [ 129 0 R
 /Fit ]
 /Next 1091 0 R
 /Parent 1069 0 R
 /Prev 1089 0 R
 /Title (blockTableStyle) >>
endobj
% 'Outline.206.21': class OutlineEntryObject 
1091 0 obj
<< /Dest [ 148 0 R
 /Fit ]
 /Next 1092 0 R
 /Parent 1069 0 R
 /Prev 1090 0 R
 /Title (blockTextColor) >>
endobj
% 'Outline.206.22': class OutlineEntryObject 
1092 0 obj
<< /Dest [ 148 0 R
 /Fit ]
 /Next 1093 0 R
 /Parent 1069 0 R
 /Prev 1091 0 R
 /Title (blockTopPadding) >>
endobj
% 'Outline.206.23': class OutlineEntryObject 
1093 0 obj
<< /Dest [ 148 0 R
 /Fit ]
 /Next 1094 0 R
 /Parent 1069 0 R
 /Prev 1092 0 R
 /Title (blockValign) >>
endobj
% 'Outline.206.24': class OutlineEntryObject 
1094 0 obj
<< /Dest [ 153 0 R
 /Fit ]
 /Next 1095 0 R
 /Parent 1069 0 R
 /Prev 1093 0 R
 /Title (bookmark) >>
endobj
% 'Outline.206.25': class OutlineEntryObject 
1095 0 obj
<< /Dest [ 153 0 R
 /Fit ]
 /Next 1096 0 R
 /Parent 1069 0 R
 /Prev 1094 0 R
 /Title (bookmark) >>
endobj
% 'Outline.206.26': class OutlineEntryObject 
1096 0 obj
<< /Dest [ 153 0 R
 /Fit ]
 /Next 1097 0 R
 /Parent 1069 0 R
 /Prev 1095 0 R
 /Title (bookmarkPage) >>
endobj
% 'Outline.206.27': class OutlineEntryObject 
1097 0 obj
<< /Dest [ 166 0 R
 /Fit ]
 /Next 1098 0 R
 /Parent 1069 0 R
 /Prev 1096 0 R
 /Title (bulkData) >>
endobj
% 'Outline.206.28': class OutlineEntryObject 
1098 0 obj
<< /Dest [ 166 0 R
 /Fit ]
 /Next 1099 0 R
 /Parent 1069 0 R
 /Prev 1097 0 R
 /Title (buttonField) >>
endobj
% 'Outline.206.29': class OutlineEntryObject 
1099 0 obj
<< /Dest [ 166 0 R
 /Fit ]
 /Next 1100 0 R
 /Parent 1069 0 R
 /Prev 1098 0 R
 /Title (categoryAxis) >>
endobj
% 'Outline.206.30': class OutlineEntryObject 
1100 0 obj
<< /Dest [ 174 0 R
 /Fit ]
 /Next 1101 0 R
 /Parent 1069 0 R
 /Prev 1099 0 R
 /Title (categoryNames) >>
endobj
% 'Outline.206.31': class OutlineEntryObject 
1101 0 obj
<< /Dest [ 183 0 R
 /Fit ]
 /Next 1102 0 R
 /Parent 1069 0 R
 /Prev 1100 0 R
 /Title (circle) >>
endobj
% 'Outline.206.32': class OutlineEntryObject 
1102 0 obj
<< /Dest [ 183 0 R
 /Fit ]
 /Next 1103 0 R
 /Parent 1069 0 R
 /Prev 1101 0 R
 /Title (codesnippet) >>
endobj
% 'Outline.206.33': class OutlineEntryObject 
1103 0 obj
<< /Dest [ 200 0 R
 /Fit ]
 /Next 1104 0 R
 /Parent 1069 0 R
 /Prev 1102 0 R
 /Title (color) >>
endobj
% 'Outline.206.34': class OutlineEntryObject 
1104 0 obj
<< /Dest [ 200 0 R
 /Fit ]
 /Next 1105 0 R
 /Parent 1069 0 R
 /Prev 1103 0 R
 /Title (condPageBreak) >>
endobj
% 'Outline.206.35': class OutlineEntryObject 
1105 0 obj
<< /Dest [ 200 0 R
 /Fit ]
 /Next 1106 0 R
 /Parent 1069 0 R
 /Prev 1104 0 R
 /Title (critical) >>
endobj
% 'Outline.206.36': class OutlineEntryObject 
1106 0 obj
<< /Dest [ 213 0 R
 /Fit ]
 /Next 1107 0 R
 /Parent 1069 0 R
 /Prev 1105 0 R
 /Title (cropMarks) >>
endobj
% 'Outline.206.37': class OutlineEntryObject 
1107 0 obj
<< /Dest [ 213 0 R
 /Fit ]
 /Next 1108 0 R
 /Parent 1069 0 R
 /Prev 1106 0 R
 /Title (curves) >>
endobj
% 'Outline.206.38': class OutlineEntryObject 
1108 0 obj
<< /Dest [ 213 0 R
 /Fit ]
 /Next 1109 0 R
 /Parent 1069 0 R
 /Prev 1107 0 R
 /Title (curvesto) >>
endobj
% 'Outline.206.39': class OutlineEntryObject 
1109 0 obj
<< /Dest [ 213 0 R
 /Fit ]
 /Next 1110 0 R
 /Parent 1069 0 R
 /Prev 1108 0 R
 /Title (curveto) >>
endobj
% 'Outline.206.40': class OutlineEntryObject 
1110 0 obj
<< /Dest [ 229 0 R
 /Fit ]
 /Next 1111 0 R
 /Parent 1069 0 R
 /Prev 1109 0 R
 /Title (data) >>
endobj
% 'Outline.206.41': class OutlineEntryObject 
1111 0 obj
<< /Dest [ 229 0 R
 /Fit ]
 /Next 1112 0 R
 /Parent 1069 0 R
 /Prev 1110 0 R
 /Title (data) >>
endobj
% 'Outline.206.42': class OutlineEntryObject 
1112 0 obj
<< /Dest [ 229 0 R
 /Fit ]
 /Next 1113 0 R
 /Parent 1069 0 R
 /Prev 1111 0 R
 /Title (data) >>
endobj
% 'Outline.206.43': class OutlineEntryObject 
1113 0 obj
<< /Dest [ 254 0 R
 /Fit ]
 /Next 1114 0 R
 /Parent 1069 0 R
 /Prev 1112 0 R
 /Title (debug) >>
endobj
% 'Outline.206.44': class OutlineEntryObject 
1114 0 obj
<< /Dest [ 254 0 R
 /Fit ]
 /Next 1115 0 R
 /Parent 1069 0 R
 /Prev 1113 0 R
 /Title (docAssign) >>
endobj
% 'Outline.206.45': class OutlineEntryObject 
1115 0 obj
<< /Dest [ 254 0 R
 /Fit ]
 /Next 1116 0 R
 /Parent 1069 0 R
 /Prev 1114 0 R
 /Title (docElse) >>
endobj
% 'Outline.206.46': class OutlineEntryObject 
1116 0 obj
<< /Dest [ 254 0 R
 /Fit ]
 /Next 1117 0 R
 /Parent 1069 0 R
 /Prev 1115 0 R
 /Title (docExec) >>
endobj
% 'Outline.206.47': class OutlineEntryObject 
1117 0 obj
<< /Dest [ 254 0 R
 /Fit ]
 /Next 1118 0 R
 /Parent 1069 0 R
 /Prev 1116 0 R
 /Title (docIf) >>
endobj
% 'Outline.206.48': class OutlineEntryObject 
1118 0 obj
<< /Dest [ 272 0 R
 /Fit ]
 /Next 1119 0 R
 /Parent 1069 0 R
 /Prev 1117 0 R
 /Title (docPara) >>
endobj
% 'Outline.206.49': class OutlineEntryObject 
1119 0 obj
<< /Dest [ 272 0 R
 /Fit ]
 /Next 1120 0 R
 /Parent 1069 0 R
 /Prev 1118 0 R
 /Title (docWhile) >>
endobj
% 'Outline.206.50': class OutlineEntryObject 
1120 0 obj
<< /Dest [ 272 0 R
 /Fit ]
 /Next 1121 0 R
 /Parent 1069 0 R
 /Prev 1119 0 R
 /Title (docinit) >>
endobj
% 'Outline.206.51': class OutlineEntryObject 
1121 0 obj
<< /Dest [ 297 0 R
 /Fit ]
 /Next 1122 0 R
 /Parent 1069 0 R
 /Prev 1120 0 R
 /Title (document) >>
endobj
% 'Outline.206.52': class OutlineEntryObject 
1122 0 obj
<< /Dest [ 310 0 R
 /Fit ]
 /Next 1123 0 R
 /Parent 1069 0 R
 /Prev 1121 0 R
 /Title (drawAlignedString) >>
endobj
% 'Outline.206.53': class OutlineEntryObject 
1123 0 obj
<< /Dest [ 310 0 R
 /Fit ]
 /Next 1124 0 R
 /Parent 1069 0 R
 /Prev 1122 0 R
 /Title (drawCenteredString) >>
endobj
% 'Outline.206.54': class OutlineEntryObject 
1124 0 obj
<< /Dest [ 310 0 R
 /Fit ]
 /Next 1125 0 R
 /Parent 1069 0 R
 /Prev 1123 0 R
 /Title (drawRightString) >>
endobj
% 'Outline.206.55': class OutlineEntryObject 
1125 0 obj
<< /Dest [ 327 0 R
 /Fit ]
 /Next 1126 0 R
 /Parent 1069 0 R
 /Prev 1124 0 R
 /Title (drawString) >>
endobj
% 'Outline.206.56': class OutlineEntryObject 
1126 0 obj
<< /Dest [ 327 0 R
 /Fit ]
 /Next 1127 0 R
 /Parent 1069 0 R
 /Prev 1125 0 R
 /Title (ellipse) >>
endobj
% 'Outline.206.57': class OutlineEntryObject 
1127 0 obj
<< /Dest [ 327 0 R
 /Fit ]
 /Next 1128 0 R
 /Parent 1069 0 R
 /Prev 1126 0 R
 /Title (error) >>
endobj
% 'Outline.206.58': class OutlineEntryObject 
1128 0 obj
<< /Dest [ 336 0 R
 /Fit ]
 /Next 1129 0 R
 /Parent 1069 0 R
 /Prev 1127 0 R
 /Title (fill) >>
endobj
% 'Outline.206.59': class OutlineEntryObject 
1129 0 obj
<< /Dest [ 336 0 R
 /Fit ]
 /Next 1130 0 R
 /Parent 1069 0 R
 /Prev 1128 0 R
 /Title (fixedSize) >>
endobj
% 'Outline.206.60': class OutlineEntryObject 
1130 0 obj
<< /Dest [ 336 0 R
 /Fit ]
 /Next 1131 0 R
 /Parent 1069 0 R
 /Prev 1129 0 R
 /Title (frame) >>
endobj
% 'Outline.206.61': class OutlineEntryObject 
1131 0 obj
<< /Dest [ 345 0 R
 /Fit ]
 /Next 1132 0 R
 /Parent 1069 0 R
 /Prev 1130 0 R
 /Title (grid) >>
endobj
% 'Outline.206.62': class OutlineEntryObject 
1132 0 obj
<< /Dest [ 345 0 R
 /Fit ]
 /Next 1133 0 R
 /Parent 1069 0 R
 /Prev 1131 0 R
 /Title (h1) >>
endobj
% 'Outline.206.63': class OutlineEntryObject 
1133 0 obj
<< /Dest [ 350 0 R
 /Fit ]
 /Next 1134 0 R
 /Parent 1069 0 R
 /Prev 1132 0 R
 /Title (h2) >>
endobj
% 'Outline.206.64': class OutlineEntryObject 
1134 0 obj
<< /Dest [ 356 0 R
 /Fit ]
 /Next 1135 0 R
 /Parent 1069 0 R
 /Prev 1133 0 R
 /Title (h3) >>
endobj
% 'Outline.206.65': class OutlineEntryObject 
1135 0 obj
<< /Dest [ 361 0 R
 /Fit ]
 /Next 1136 0 R
 /Parent 1069 0 R
 /Prev 1134 0 R
 /Title (h4) >>
endobj
% 'Outline.206.66': class OutlineEntryObject 
1136 0 obj
<< /Dest [ 367 0 R
 /Fit ]
 /Next 1137 0 R
 /Parent 1069 0 R
 /Prev 1135 0 R
 /Title (h5) >>
endobj
% 'Outline.206.67': class OutlineEntryObject 
1137 0 obj
<< /Dest [ 372 0 R
 /Fit ]
 /Next 1138 0 R
 /Parent 1069 0 R
 /Prev 1136 0 R
 /Title (h6) >>
endobj
% 'Outline.206.68': class OutlineEntryObject 
1138 0 obj
<< /Dest [ 377 0 R
 /Fit ]
 /Next 1139 0 R
 /Parent 1069 0 R
 /Prev 1137 0 R
 /Title (hr) >>
endobj
% 'Outline.206.69': class OutlineEntryObject 
1139 0 obj
<< /Dest [ 386 0 R
 /Fit ]
 /Next 1140 0 R
 /Parent 1069 0 R
 /Prev 1138 0 R
 /Title (illustration) >>
endobj
% 'Outline.206.70': class OutlineEntryObject 
1140 0 obj
<< /Dest [ 386 0 R
 /Fit ]
 /Next 1141 0 R
 /Parent 1069 0 R
 /Prev 1139 0 R
 /Title (image) >>
endobj
% 'Outline.206.71': class OutlineEntryObject 
1141 0 obj
<< /Dest [ 395 0 R
 /Fit ]
 /Next 1142 0 R
 /Parent 1069 0 R
 /Prev 1140 0 R
 /Title (imageAndFlowables) >>
endobj
% 'Outline.206.72': class OutlineEntryObject 
1142 0 obj
<< /Dest [ 395 0 R
 /Fit ]
 /Next 1143 0 R
 /Parent 1069 0 R
 /Prev 1141 0 R
 /Title (img) >>
endobj
% 'Outline.206.73': class OutlineEntryObject 
1143 0 obj
<< /Dest [ 408 0 R
 /Fit ]
 /Next 1144 0 R
 /Parent 1069 0 R
 /Prev 1142 0 R
 /Title (includePdfPages) >>
endobj
% 'Outline.206.74': class OutlineEntryObject 
1144 0 obj
<< /Dest [ 408 0 R
 /Fit ]
 /Next 1145 0 R
 /Parent 1069 0 R
 /Prev 1143 0 R
 /Title (indent) >>
endobj
% 'Outline.206.75': class OutlineEntryObject 
1145 0 obj
<< /Dest [ 408 0 R
 /Fit ]
 /Next 1146 0 R
 /Parent 1069 0 R
 /Prev 1144 0 R
 /Title (info) >>
endobj
% 'Outline.206.76': class OutlineEntryObject 
1146 0 obj
<< /Dest [ 424 0 R
 /Fit ]
 /Next 1147 0 R
 /Parent 1069 0 R
 /Prev 1145 0 R
 /Title (initialize) >>
endobj
% 'Outline.206.77': class OutlineEntryObject 
1147 0 obj
<< /Dest [ 424 0 R
 /Fit ]
 /Next 1148 0 R
 /Parent 1069 0 R
 /Prev 1146 0 R
 /Title (keepInFrame) >>
endobj
% 'Outline.206.78': class OutlineEntryObject 
1148 0 obj
<< /Dest [ 424 0 R
 /Fit ]
 /Next 1149 0 R
 /Parent 1069 0 R
 /Prev 1147 0 R
 /Title (keepTogether) >>
endobj
% 'Outline.206.79': class OutlineEntryObject 
1149 0 obj
<< /Dest [ 429 0 R
 /Fit ]
 /Next 1150 0 R
 /Parent 1069 0 R
 /Prev 1148 0 R
 /Title (label) >>
endobj
% 'Outline.206.80': class OutlineEntryObject 
1150 0 obj
<< /Dest [ 434 0 R
 /Fit ]
 /Next 1151 0 R
 /Parent 1069 0 R
 /Prev 1149 0 R
 /Title (label) >>
endobj
% 'Outline.206.81': class OutlineEntryObject 
1151 0 obj
<< /Dest [ 440 0 R
 /Fit ]
 /Next 1152 0 R
 /Parent 1069 0 R
 /Prev 1150 0 R
 /Title (label) >>
endobj
% 'Outline.206.82': class OutlineEntryObject 
1152 0 obj
<< /Dest [ 449 0 R
 /Fit ]
 /Next 1153 0 R
 /Parent 1069 0 R
 /Prev 1151 0 R
 /Title (label) >>
endobj
% 'Outline.206.83': class OutlineEntryObject 
1153 0 obj
<< /Dest [ 449 0 R
 /Fit ]
 /Next 1154 0 R
 /Parent 1069 0 R
 /Prev 1152 0 R
 /Title (label) >>
endobj
% 'Outline.206.84': class OutlineEntryObject 
1154 0 obj
<< /Dest [ 450 0 R
 /Fit ]
 /Next 1155 0 R
 /Parent 1069 0 R
 /Prev 1153 0 R
 /Title (labels) >>
endobj
% 'Outline.206.85': class OutlineEntryObject 
1155 0 obj
<< /Dest [ 457 0 R
 /Fit ]
 /Next 1156 0 R
 /Parent 1069 0 R
 /Prev 1154 0 R
 /Title (labels) >>
endobj
% 'Outline.206.86': class OutlineEntryObject 
1156 0 obj
<< /Dest [ 466 0 R
 /Fit ]
 /Next 1157 0 R
 /Parent 1069 0 R
 /Prev 1155 0 R
 /Title (li) >>
endobj
% 'Outline.206.87': class OutlineEntryObject 
1157 0 obj
<< /Dest [ 466 0 R
 /Fit ]
 /Next 1158 0 R
 /Parent 1069 0 R
 /Prev 1156 0 R
 /Title (li) >>
endobj
% 'Outline.206.88': class OutlineEntryObject 
1158 0 obj
<< /Dest [ 475 0 R
 /Fit ]
 /Next 1159 0 R
 /Parent 1069 0 R
 /Prev 1157 0 R
 /Title (line) >>
endobj
% 'Outline.206.89': class OutlineEntryObject 
1159 0 obj
<< /Dest [ 475 0 R
 /Fit ]
 /Next 1160 0 R
 /Parent 1069 0 R
 /Prev 1158 0 R
 /Title (lineLabels) >>
endobj
% 'Outline.206.90': class OutlineEntryObject 
1160 0 obj
<< /Dest [ 481 0 R
 /Fit ]
 /Next 1161 0 R
 /Parent 1069 0 R
 /Prev 1159 0 R
 /Title (lineMode) >>
endobj
% 'Outline.206.91': class OutlineEntryObject 
1161 0 obj
<< /Dest [ 486 0 R
 /Fit ]
 /Next 1162 0 R
 /Parent 1069 0 R
 /Prev 1160 0 R
 /Title (linePlot) >>
endobj
% 'Outline.206.92': class OutlineEntryObject 
1162 0 obj
<< /Dest [ 497 0 R
 /Fit ]
 /Next 1163 0 R
 /Parent 1069 0 R
 /Prev 1161 0 R
 /Title (linePlot3D) >>
endobj
% 'Outline.206.93': class OutlineEntryObject 
1163 0 obj
<< /Dest [ 513 0 R
 /Fit ]
 /Next 1164 0 R
 /Parent 1069 0 R
 /Prev 1162 0 R
 /Title (lineStyle) >>
endobj
% 'Outline.206.94': class OutlineEntryObject 
1164 0 obj
<< /Dest [ 513 0 R
 /Fit ]
 /Next 1165 0 R
 /Parent 1069 0 R
 /Prev 1163 0 R
 /Title (lines) >>
endobj
% 'Outline.206.95': class OutlineEntryObject 
1165 0 obj
<< /Dest [ 523 0 R
 /Fit ]
 /Next 1166 0 R
 /Parent 1069 0 R
 /Prev 1164 0 R
 /Title (lines) >>
endobj
% 'Outline.206.96': class OutlineEntryObject 
1166 0 obj
<< /Dest [ 523 0 R
 /Fit ]
 /Next 1167 0 R
 /Parent 1069 0 R
 /Prev 1165 0 R
 /Title (link) >>
endobj
% 'Outline.206.97': class OutlineEntryObject 
1167 0 obj
<< /Dest [ 536 0 R
 /Fit ]
 /Next 1168 0 R
 /Parent 1069 0 R
 /Prev 1166 0 R
 /Title (listStyle) >>
endobj
% 'Outline.206.98': class OutlineEntryObject 
1168 0 obj
<< /Dest [ 536 0 R
 /Fit ]
 /Next 1169 0 R
 /Parent 1069 0 R
 /Prev 1167 0 R
 /Title (log) >>
endobj
% 'Outline.206.99': class OutlineEntryObject 
1169 0 obj
<< /Dest [ 553 0 R
 /Fit ]
 /Next 1170 0 R
 /Parent 1069 0 R
 /Prev 1168 0 R
 /Title (logConfig) >>
endobj
% 'Outline.206.100': class OutlineEntryObject 
1170 0 obj
<< /Dest [ 553 0 R
 /Fit ]
 /Next 1171 0 R
 /Parent 1069 0 R
 /Prev 1169 0 R
 /Title (moveto) >>
endobj
% 'Outline.206.101': class OutlineEntryObject 
1171 0 obj
<< /Dest [ 553 0 R
 /Fit ]
 /Next 1172 0 R
 /Parent 1069 0 R
 /Prev 1170 0 R
 /Title (name) >>
endobj
% 'Outline.206.102': class OutlineEntryObject 
1172 0 obj
<< /Dest [ 553 0 R
 /Fit ]
 /Next 1173 0 R
 /Parent 1069 0 R
 /Prev 1171 0 R
 /Title (name) >>
endobj
% 'Outline.206.103': class OutlineEntryObject 
1173 0 obj
<< /Dest [ 566 0 R
 /Fit ]
 /Next 1174 0 R
 /Parent 1069 0 R
 /Prev 1172 0 R
 /Title (namedString) >>
endobj
% 'Outline.206.104': class OutlineEntryObject 
1174 0 obj
<< /Dest [ 566 0 R
 /Fit ]
 /Next 1175 0 R
 /Parent 1069 0 R
 /Prev 1173 0 R
 /Title (nextFrame) >>
endobj
% 'Outline.206.105': class OutlineEntryObject 
1175 0 obj
<< /Dest [ 566 0 R
 /Fit ]
 /Next 1176 0 R
 /Parent 1069 0 R
 /Prev 1174 0 R
 /Title (nextPage) >>
endobj
% 'Outline.206.106': class OutlineEntryObject 
1176 0 obj
<< /Dest [ 566 0 R
 /Fit ]
 /Next 1177 0 R
 /Parent 1069 0 R
 /Prev 1175 0 R
 /Title (ol) >>
endobj
% 'Outline.206.107': class OutlineEntryObject 
1177 0 obj
<< /Dest [ 576 0 R
 /Fit ]
 /Next 1178 0 R
 /Parent 1069 0 R
 /Prev 1176 0 R
 /Title (option) >>
endobj
% 'Outline.206.108': class OutlineEntryObject 
1178 0 obj
<< /Dest [ 576 0 R
 /Fit ]
 /Next 1179 0 R
 /Parent 1069 0 R
 /Prev 1177 0 R
 /Title (outlineAdd) >>
endobj
% 'Outline.206.109': class OutlineEntryObject 
1179 0 obj
<< /Dest [ 629 0 R
 /Fit ]
 /Next 1180 0 R
 /Parent 1069 0 R
 /Prev 1178 0 R
 /Title (pageDrawing) >>
endobj
% 'Outline.206.110': class OutlineEntryObject 
1180 0 obj
<< /Dest [ 629 0 R
 /Fit ]
 /Next 1181 0 R
 /Parent 1069 0 R
 /Prev 1179 0 R
 /Title (pageGraphics) >>
endobj
% 'Outline.206.111': class OutlineEntryObject 
1181 0 obj
<< /Dest [ 648 0 R
 /Fit ]
 /Next 1182 0 R
 /Parent 1069 0 R
 /Prev 1180 0 R
 /Title (pageInfo) >>
endobj
% 'Outline.206.112': class OutlineEntryObject 
1182 0 obj
<< /Dest [ 648 0 R
 /Fit ]
 /Next 1183 0 R
 /Parent 1069 0 R
 /Prev 1181 0 R
 /Title (pageTemplate) >>
endobj
% 'Outline.206.113': class OutlineEntryObject 
1183 0 obj
<< /Dest [ 648 0 R
 /Fit ]
 /Next 1184 0 R
 /Parent 1069 0 R
 /Prev 1182 0 R
 /Title (para) >>
endobj
% 'Outline.206.114': class OutlineEntryObject 
1184 0 obj
<< /Dest [ 654 0 R
 /Fit ]
 /Next 1185 0 R
 /Parent 1069 0 R
 /Prev 1183 0 R
 /Title (paraStyle) >>
endobj
% 'Outline.206.115': class OutlineEntryObject 
1185 0 obj
<< /Dest [ 663 0 R
 /Fit ]
 /Next 1186 0 R
 /Parent 1069 0 R
 /Prev 1184 0 R
 /Title (param) >>
endobj
% 'Outline.206.116': class OutlineEntryObject 
1186 0 obj
<< /Dest [ 663 0 R
 /Fit ]
 /Next 1187 0 R
 /Parent 1069 0 R
 /Prev 1185 0 R
 /Title (path) >>
endobj
% 'Outline.206.117': class OutlineEntryObject 
1187 0 obj
<< /Dest [ 675 0 R
 /Fit ]
 /Next 1188 0 R
 /Parent 1069 0 R
 /Prev 1186 0 R
 /Title (pieChart) >>
endobj
% 'Outline.206.118': class OutlineEntryObject 
1188 0 obj
<< /Dest [ 685 0 R
 /Fit ]
 /Next 1189 0 R
 /Parent 1069 0 R
 /Prev 1187 0 R
 /Title (pieChart3D) >>
endobj
% 'Outline.206.119': class OutlineEntryObject 
1189 0 obj
<< /Dest [ 696 0 R
 /Fit ]
 /Next 1190 0 R
 /Parent 1069 0 R
 /Prev 1188 0 R
 /Title (place) >>
endobj
% 'Outline.206.120': class OutlineEntryObject 
1190 0 obj
<< /Dest [ 696 0 R
 /Fit ]
 /Next 1191 0 R
 /Parent 1069 0 R
 /Prev 1189 0 R
 /Title (plugInFlowable) >>
endobj
% 'Outline.206.121': class OutlineEntryObject 
1191 0 obj
<< /Dest [ 705 0 R
 /Fit ]
 /Next 1192 0 R
 /Parent 1069 0 R
 /Prev 1190 0 R
 /Title (plugInGraphic) >>
endobj
% 'Outline.206.122': class OutlineEntryObject 
1192 0 obj
<< /Dest [ 705 0 R
 /Fit ]
 /Next 1193 0 R
 /Parent 1069 0 R
 /Prev 1191 0 R
 /Title (pointer) >>
endobj
% 'Outline.206.123': class OutlineEntryObject 
1193 0 obj
<< /Dest [ 718 0 R
 /Fit ]
 /Next 1194 0 R
 /Parent 1069 0 R
 /Prev 1192 0 R
 /Title (pre) >>
endobj
% 'Outline.206.124': class OutlineEntryObject 
1194 0 obj
<< /Dest [ 718 0 R
 /Fit ]
 /Next 1195 0 R
 /Parent 1069 0 R
 /Prev 1193 0 R
 /Title (pto) >>
endobj
% 'Outline.206.125': class OutlineEntryObject 
1195 0 obj
<< /Dest [ 718 0 R
 /Fit ]
 /Next 1196 0 R
 /Parent 1069 0 R
 /Prev 1194 0 R
 /Title (rect) >>
endobj
% 'Outline.206.126': class OutlineEntryObject 
1196 0 obj
<< /Dest [ 735 0 R
 /Fit ]
 /Next 1197 0 R
 /Parent 1069 0 R
 /Prev 1195 0 R
 /Title (registerCidFont) >>
endobj
% 'Outline.206.127': class OutlineEntryObject 
1197 0 obj
<< /Dest [ 735 0 R
 /Fit ]
 /Next 1198 0 R
 /Parent 1069 0 R
 /Prev 1196 0 R
 /Title (registerFont) >>
endobj
% 'Outline.206.128': class OutlineEntryObject 
1198 0 obj
<< /Dest [ 748 0 R
 /Fit ]
 /Next 1199 0 R
 /Parent 1069 0 R
 /Prev 1197 0 R
 /Title (registerFontFamily) >>
endobj
% 'Outline.206.129': class OutlineEntryObject 
1199 0 obj
<< /Dest [ 748 0 R
 /Fit ]
 /Next 1200 0 R
 /Parent 1069 0 R
 /Prev 1198 0 R
 /Title (registerTTFont) >>
endobj
% 'Outline.206.130': class OutlineEntryObject 
1200 0 obj
<< /Dest [ 748 0 R
 /Fit ]
 /Next 1201 0 R
 /Parent 1069 0 R
 /Prev 1199 0 R
 /Title (registerType1Face) >>
endobj
% 'Outline.206.131': class OutlineEntryObject 
1201 0 obj
<< /Dest [ 748 0 R
 /Fit ]
 /Next 1202 0 R
 /Parent 1069 0 R
 /Prev 1200 0 R
 /Title (restoreState) >>
endobj
% 'Outline.206.132': class OutlineEntryObject 
1202 0 obj
<< /Dest [ 748 0 R
 /Fit ]
 /Next 1203 0 R
 /Parent 1069 0 R
 /Prev 1201 0 R
 /Title (rotate) >>
endobj
% 'Outline.206.133': class OutlineEntryObject 
1203 0 obj
<< /Dest [ 761 0 R
 /Fit ]
 /Next 1204 0 R
 /Parent 1069 0 R
 /Prev 1202 0 R
 /Title (saveState) >>
endobj
% 'Outline.206.134': class OutlineEntryObject 
1204 0 obj
<< /Dest [ 761 0 R
 /Fit ]
 /Next 1205 0 R
 /Parent 1069 0 R
 /Prev 1203 0 R
 /Title (scale) >>
endobj
% 'Outline.206.135': class OutlineEntryObject 
1205 0 obj
<< /Dest [ 761 0 R
 /Fit ]
 /Next 1206 0 R
 /Parent 1069 0 R
 /Prev 1204 0 R
 /Title (selectField) >>
endobj
% 'Outline.206.136': class OutlineEntryObject 
1206 0 obj
<< /Dest [ 779 0 R
 /Fit ]
 /Next 1207 0 R
 /Parent 1069 0 R
 /Prev 1205 0 R
 /Title (series) >>
endobj
% 'Outline.206.137': class OutlineEntryObject 
1207 0 obj
<< /Dest [ 779 0 R
 /Fit ]
 /Next 1208 0 R
 /Parent 1069 0 R
 /Prev 1206 0 R
 /Title (series) >>
endobj
% 'Outline.206.138': class OutlineEntryObject 
1208 0 obj
<< /Dest [ 779 0 R
 /Fit ]
 /Next 1209 0 R
 /Parent 1069 0 R
 /Prev 1207 0 R
 /Title (setFont) >>
endobj
% 'Outline.206.139': class OutlineEntryObject 
1209 0 obj
<< /Dest [ 796 0 R
 /Fit ]
 /Next 1210 0 R
 /Parent 1069 0 R
 /Prev 1208 0 R
 /Title (setFontSize) >>
endobj
% 'Outline.206.140': class OutlineEntryObject 
1210 0 obj
<< /Dest [ 796 0 R
 /Fit ]
 /Next 1211 0 R
 /Parent 1069 0 R
 /Prev 1209 0 R
 /Title (setNextFrame) >>
endobj
% 'Outline.206.141': class OutlineEntryObject 
1211 0 obj
<< /Dest [ 796 0 R
 /Fit ]
 /Next 1212 0 R
 /Parent 1069 0 R
 /Prev 1210 0 R
 /Title (setNextTemplate) >>
endobj
% 'Outline.206.142': class OutlineEntryObject 
1212 0 obj
<< /Dest [ 796 0 R
 /Fit ]
 /Next 1213 0 R
 /Parent 1069 0 R
 /Prev 1211 0 R
 /Title (showIndex) >>
endobj
% 'Outline.206.143': class OutlineEntryObject 
1213 0 obj
<< /Dest [ 811 0 R
 /Fit ]
 /Next 1214 0 R
 /Parent 1069 0 R
 /Prev 1212 0 R
 /Title (skew) >>
endobj
% 'Outline.206.144': class OutlineEntryObject 
1214 0 obj
<< /Dest [ 811 0 R
 /Fit ]
 /Next 1215 0 R
 /Parent 1069 0 R
 /Prev 1213 0 R
 /Title (slice) >>
endobj
% 'Outline.206.145': class OutlineEntryObject 
1215 0 obj
<< /Dest [ 811 0 R
 /Fit ]
 /Next 1216 0 R
 /Parent 1069 0 R
 /Prev 1214 0 R
 /Title (slice) >>
endobj
% 'Outline.206.146': class OutlineEntryObject 
1216 0 obj
<< /Dest [ 817 0 R
 /Fit ]
 /Next 1217 0 R
 /Parent 1069 0 R
 /Prev 1215 0 R
 /Title (slices) >>
endobj
% 'Outline.206.147': class OutlineEntryObject 
1217 0 obj
<< /Dest [ 831 0 R
 /Fit ]
 /Next 1218 0 R
 /Parent 1069 0 R
 /Prev 1216 0 R
 /Title (slices) >>
endobj
% 'Outline.206.148': class OutlineEntryObject 
1218 0 obj
<< /Dest [ 831 0 R
 /Fit ]
 /Next 1219 0 R
 /Parent 1069 0 R
 /Prev 1217 0 R
 /Title (spacer) >>
endobj
% 'Outline.206.149': class OutlineEntryObject 
1219 0 obj
<< /Dest [ 839 0 R
 /Fit ]
 /Next 1220 0 R
 /Parent 1069 0 R
 /Prev 1218 0 R
 /Title (spiderChart) >>
endobj
% 'Outline.206.150': class OutlineEntryObject 
1220 0 obj
<< /Dest [ 844 0 R
 /Fit ]
 /Next 1221 0 R
 /Parent 1069 0 R
 /Prev 1219 0 R
 /Title (spoke) >>
endobj
% 'Outline.206.151': class OutlineEntryObject 
1221 0 obj
<< /Dest [ 844 0 R
 /Fit ]
 /Next 1222 0 R
 /Parent 1069 0 R
 /Prev 1220 0 R
 /Title (spokeLabels) >>
endobj
% 'Outline.206.152': class OutlineEntryObject 
1222 0 obj
<< /Dest [ 850 0 R
 /Fit ]
 /Next 1223 0 R
 /Parent 1069 0 R
 /Prev 1221 0 R
 /Title (spokes) >>
endobj
% 'Outline.206.153': class OutlineEntryObject 
1223 0 obj
<< /Dest [ 875 0 R
 /Fit ]
 /Next 1224 0 R
 /Parent 1069 0 R
 /Prev 1222 0 R
 /Title (startIndex) >>
endobj
% 'Outline.206.154': class OutlineEntryObject 
1224 0 obj
<< /Dest [ 875 0 R
 /Fit ]
 /Next 1225 0 R
 /Parent 1069 0 R
 /Prev 1223 0 R
 /Title (story) >>
endobj
% 'Outline.206.155': class OutlineEntryObject 
1225 0 obj
<< /Dest [ 917 0 R
 /Fit ]
 /Next 1226 0 R
 /Parent 1069 0 R
 /Prev 1224 0 R
 /Title (storyPlace) >>
endobj
% 'Outline.206.156': class OutlineEntryObject 
1226 0 obj
<< /Dest [ 926 0 R
 /Fit ]
 /Next 1227 0 R
 /Parent 1069 0 R
 /Prev 1225 0 R
 /Title (strand) >>
endobj
% 'Outline.206.157': class OutlineEntryObject 
1227 0 obj
<< /Dest [ 926 0 R
 /Fit ]
 /Next 1228 0 R
 /Parent 1069 0 R
 /Prev 1226 0 R
 /Title (strandLabels) >>
endobj
% 'Outline.206.158': class OutlineEntryObject 
1228 0 obj
<< /Dest [ 946 0 R
 /Fit ]
 /Next 1229 0 R
 /Parent 1069 0 R
 /Prev 1227 0 R
 /Title (strands) >>
endobj
% 'Outline.206.159': class OutlineEntryObject 
1229 0 obj
<< /Dest [ 946 0 R
 /Fit ]
 /Next 1230 0 R
 /Parent 1069 0 R
 /Prev 1228 0 R
 /Title (stroke) >>
endobj
% 'Outline.206.160': class OutlineEntryObject 
1230 0 obj
<< /Dest [ 946 0 R
 /Fit ]
 /Next 1231 0 R
 /Parent 1069 0 R
 /Prev 1229 0 R
 /Title (stylesheet) >>
endobj
% 'Outline.206.161': class OutlineEntryObject 
1231 0 obj
<< /Dest [ 951 0 R
 /Fit ]
 /Next 1232 0 R
 /Parent 1069 0 R
 /Prev 1230 0 R
 /Title (td) >>
endobj
% 'Outline.206.162': class OutlineEntryObject 
1232 0 obj
<< /Dest [ 956 0 R
 /Fit ]
 /Next 1233 0 R
 /Parent 1069 0 R
 /Prev 1231 0 R
 /Title (template) >>
endobj
% 'Outline.206.163': class OutlineEntryObject 
1233 0 obj
<< /Dest [ 966 0 R
 /Fit ]
 /Next 1234 0 R
 /Parent 1069 0 R
 /Prev 1232 0 R
 /Title (text) >>
endobj
% 'Outline.206.164': class OutlineEntryObject 
1234 0 obj
<< /Dest [ 966 0 R
 /Fit ]
 /Next 1235 0 R
 /Parent 1069 0 R
 /Prev 1233 0 R
 /Title (textAnnotation) >>
endobj
% 'Outline.206.165': class OutlineEntryObject 
1235 0 obj
<< /Dest [ 981 0 R
 /Fit ]
 /Next 1236 0 R
 /Parent 1069 0 R
 /Prev 1234 0 R
 /Title (textField) >>
endobj
% 'Outline.206.166': class OutlineEntryObject 
1236 0 obj
<< /Dest [ 981 0 R
 /Fit ]
 /Next 1237 0 R
 /Parent 1069 0 R
 /Prev 1235 0 R
 /Title (texts) >>
endobj
% 'Outline.206.167': class OutlineEntryObject 
1237 0 obj
<< /Dest [ 986 0 R
 /Fit ]
 /Next 1238 0 R
 /Parent 1069 0 R
 /Prev 1236 0 R
 /Title (title) >>
endobj
% 'Outline.206.168': class OutlineEntryObject 
1238 0 obj
<< /Dest [ 1000 0 R
 /Fit ]
 /Next 1239 0 R
 /Parent 1069 0 R
 /Prev 1237 0 R
 /Title (tr) >>
endobj
% 'Outline.206.169': class OutlineEntryObject 
1239 0 obj
<< /Dest [ 1000 0 R
 /Fit ]
 /Next 1240 0 R
 /Parent 1069 0 R
 /Prev 1238 0 R
 /Title (transform) >>
endobj
% 'Outline.206.170': class OutlineEntryObject 
1240 0 obj
<< /Dest [ 1010 0 R
 /Fit ]
 /Next 1241 0 R
 /Parent 1069 0 R
 /Prev 1239 0 R
 /Title (translate) >>
endobj
% 'Outline.206.171': class OutlineEntryObject 
1241 0 obj
<< /Dest [ 1010 0 R
 /Fit ]
 /Next 1242 0 R
 /Parent 1069 0 R
 /Prev 1240 0 R
 /Title (ul) >>
endobj
% 'Outline.206.172': class OutlineEntryObject 
1242 0 obj
<< /Dest [ 1015 0 R
 /Fit ]
 /Next 1243 0 R
 /Parent 1069 0 R
 /Prev 1241 0 R
 /Title (valueAxis) >>
endobj
% 'Outline.206.173': class OutlineEntryObject 
1243 0 obj
<< /Dest [ 1024 0 R
 /Fit ]
 /Next 1244 0 R
 /Parent 1069 0 R
 /Prev 1242 0 R
 /Title (warning) >>
endobj
% 'Outline.206.174': class OutlineEntryObject 
1244 0 obj
<< /Dest [ 1024 0 R
 /Fit ]
 /Next 1245 0 R
 /Parent 1069 0 R
 /Prev 1243 0 R
 /Title (xValueAxis) >>
endobj
% 'Outline.206.175': class OutlineEntryObject 
1245 0 obj
<< /Dest [ 1034 0 R
 /Fit ]
 /Next 1246 0 R
 /Parent 1069 0 R
 /Prev 1244 0 R
 /Title (xpre) >>
endobj
% 'Outline.206.176': class OutlineEntryObject 
1246 0 obj
<< /Dest [ 1034 0 R
 /Fit ]
 /Parent 1069 0 R
 /Prev 1245 0 R
 /Title (yValueAxis) >>
endobj
% 'R1247': class PDFPages 
1247 0 obj
% page tree
<< /Count 101
 /Kids [ 3 0 R
 6 0 R
 8 0 R
 9 0 R
 25 0 R
 32 0 R
 37 0 R
 48 0 R
 49 0 R
 58 0 R
 67 0 R
 69 0 R
 79 0 R
 96 0 R
 109 0 R
 129 0 R
 148 0 R
 153 0 R
 166 0 R
 174 0 R
 183 0 R
 200 0 R
 213 0 R
 229 0 R
 254 0 R
 272 0 R
 297 0 R
 310 0 R
 327 0 R
 336 0 R
 345 0 R
 350 0 R
 351 0 R
 356 0 R
 361 0 R
 362 0 R
 367 0 R
 372 0 R
 377 0 R
 386 0 R
 395 0 R
 408 0 R
 424 0 R
 429 0 R
 434 0 R
 439 0 R
 440 0 R
 449 0 R
 450 0 R
 457 0 R
 466 0 R
 475 0 R
 481 0 R
 486 0 R
 497 0 R
 504 0 R
 513 0 R
 523 0 R
 536 0 R
 553 0 R
 566 0 R
 576 0 R
 629 0 R
 648 0 R
 649 0 R
 654 0 R
 663 0 R
 675 0 R
 680 0 R
 685 0 R
 696 0 R
 705 0 R
 718 0 R
 735 0 R
 748 0 R
 761 0 R
 779 0 R
 796 0 R
 811 0 R
 817 0 R
 831 0 R
 839 0 R
 844 0 R
 850 0 R
 875 0 R
 917 0 R
 926 0 R
 932 0 R
 946 0 R
 951 0 R
 956 0 R
 966 0 R
 981 0 R
 986 0 R
 1000 0 R
 1010 0 R
 1015 0 R
 1024 0 R
 1025 0 R
 1034 0 R
 1039 0 R ]
 /Type /Pages >>
endobj
% 'R1248': class PDFStream 
1248 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 190 >>
stream
GarWrYmS?5%*%i9i83E3eKHj8?$fi\Sa'Sh^-K5\KiY:E:[b]ui#mS%J+=hC/.F8E*Is@5G[[gA40Tq7X`7BW?Il4&Kt7#BMQN_jWtRVk1(WkC6'YCX*O,G%/N),u:$gjRa#<@Z4nPs!c`4KXPsF;h.XBG^-W\Yg=lgFm*iJbm3C5.k"`Mu-RP2=M0(A~>endstream
endobj
% 'R1249': class PDFStream 
1249 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 722 >>
stream
Gasam?#SFN'R`L25Ffc2C9n+X.$'k+C.M%`W^tmFj4o/da3JK+`d[lhbu\+H$%Ynu+.mWB\L6IJiD6%oAIEl^;o(G=YUl?E_Ik@/>!Y5^6ns[$/h,e!Rp+"joT,;Xt2-c?F=CS?7,UPVqo,r^Q],$2mEPF)o6AHAUEjZI9a7VV(,rIU>?c#lN\;=p[nYTWnu"1?:i"Ar29rpLod6G=Jc'hni!Vfuo^Yu,c$mPnD?L&jKW9pqtP[0Yd5.W#[akbVij!<3TV(tAi4aPs,Cm/+AKL\aPd^Gnheb1iS($7tt&2=o6gQnAj'nE2+P8JNgT(P'Pj60/l0h:*Z>Om1&KAo_G=stsP9b=1Vn%6[4gK?@ul"7EjQ0gG)]';F.MSX+)4-6b/f+Ti-Wp/k3KAk`Q]n_),~>endstream
endobj
% 'R1250': class PDFStream 
1250 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1620 >>
stream
Gau0D>u)\('R`L25@!;]fd_[!7g@DNYUunUTcXiFW_+AWjA+^:a.B\%,jDN$[3o=_#ik?O,![hlhs9c,Uc)JRDU#ME[@0>1(1FeWd(G.uB:+/2A,YOsY==H\+s))C(klKXCpH[AHYp'W0":q7\`HG8i5U@S+BXsRVukU0B`kcZ)&,^?#7eb?gb-,/U\AuAJ-&B.edTDRQsI[`@8&r"Z,%t1m[lMR_=P1i@7o^-Yet7Q">Uj^c=k_!:(i8V'?.-V5(TUY+a@Un`W=jS89Kn55sJtSk6?6\kcN7Z0.(>YMgE/q+YSLPiiJPL0O_3c@\t74os`[=lUg1RqJ(0r)T-Q=i.!,'r."sOKaj$1[[tq)L(D.ath=YkpGf_RnJ[NdcdP_"8g!Fa7@IM)@R^+2V2lE2/nsLg.#=flbA!Tt@8/31MV`R/V@eT8'R*F?)_M32-B6dQ3?8<(cB014"hN+B,o;03A8CSR?VloYSj&?F3RAf)et=G(F!]upp&NL#4W,OcU_U4o*MR21fo3O1TZ4M8Kj#nV,$g1q[Bsc38nD(khnu(8\lFAtD&:.JZ=)5'nB+3d%M^VHNb[7#DY&X9-Tb/%[0Ks.SdQJ/pUTdh@5cejki#pGJklGDj3-3hBcT!H3CEI-.+n-:crX)-h11AHh+sF/sph*!IKJW$>4Ug]l[!_+WF&#Rb8rd/IE`Rhn*,FmQgU;GQJ:_CA\YhFIO[U_?/KN8na:Zq`IiNAX6Vc'IRiZm5g;a:="&Z]-gAM"?Q$B]3=cN5\+;G63q1Xkbhc5Y5I7WQro9NK8_0[)h,^B&XNm;n0>2T'IWL<5F$I1&Z))pmVW3F$n[Dsg`s;T>@.@T0*Q1#43C=^LcdC'Y$nj,G1$-+b#oTn8%^T`CfcWbt`_c@2pnc]tc*aSG+#c"iel4AAK"Hs.\F+9p]-[;a8+VGHZ;&b2SW'E=eTVL)i1,X*c2pa:rWQ*9*7+~>endstream
endobj
% 'R1251': class PDFStream 
1251 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 921 >>
stream
Gatn&>u03/'Sc',ofns.@-U(LY;V_$D:9agZk7#ai5S@D``$=Oa.WsWIOB"?9VTHOW)X#'IEqBCpUkYTbje-GB3G@A`c1p2!-'/g!V%0Pi[adD:FCA8$0fJ7TbBn56t!:h*"mr;c85XcAq4&\-Q%S#7fJ4[8dt#q5SM`9JtDt9Rm5f65"VH9ctiXQ"rQ<)ufmK!^,CUc]:d&q)-L01Z@d'>G?F;UlWk.pGUTg^Ej;nE(CRo*$Of8D/EcmF)WL'KXc-'md;qn1!+hXO7rCC>^"N>'JY#>asrGg1iDL7qo:]'3Wt")O=smO-!qCG;qGe12/QXc=KpbjtNH5m'*^r#/r(I.GPVPm!e,8Af^i!2)T9;jdOsZ&rs4:gH65Y-M)Gc[mojdB'_L0oBi"0'b!;\Ven&)&;@kAUTP8iHD[$qD\JGUg?Ek_bZDb>gO/uS*7me1#Ft2`el^1B8PpSaB9rbO?c"R#.9RR84fX]lO3iFp^D9P3TF'W-<#/1WlH\B1Y8<6([mCnLGcHI^enbQCdjFA/F.,G[d9BpGd4LKBK.Ia(pl[]]N0M2endstream
endobj
% 'R1252': class PDFStream 
1252 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1399 >>
stream
Gb!;e?#SIU'R^LRs)?@5B4tP4qQbim5asTDJTYX'UO/C&5[1V?7@%29Nn8cq/(,N&AQNsk":GhFL3,!gT)3Mf(]kcX&H-gY!-g;Q=*FcQL#E_:cjsOZ41lS??@9H!+Ih";l:2.T#fM;O-V9Q\2g'YK"6Ah>!ZsdQ:QAhm^o(*"U["fZXe+4X'p;@WGi7Zu%0(n;:O8F)qY02_Upep4Qma+9J?Gk;']9Jo4q/^%VB=H2.IrlIU1b*\,I3/_!uoa]!UXfh@mD8JG[OD`WtJ%t/`Yrk2_ME.,m_IF0c=7_0a.d1,$0l4"UA%XRWDjM[:1")97&Zj\n*YkauZ*>ODteDn1437dtj`T@:S!3Cbq:L@ErIfj^B&No2&E0)>bUnRdhm8&6j)V*g*q;ZthmrTikUd5PA[Z/F`%_shF7ZpI>7bk,'hct`fR'X\"WE61f?IOhVG;V\:Leg=C="R;60-P6PfbAX0[8c\lp`R6j-8Y,jgkD"S&`qe\-1\fjS8/$En>\a3H(sqc@.:j9TaOhV:[E=9bi*&Iho%dES)k!iNj(`3cI)!))KH[%2sG_GZ_pQ%]:L?%eUgdMW3J4J`%:p)kI70GecVEo)V@\A9#q6M@;qg4br]Q9.\$WeDdgS;HpLcN[GaCaD57?WBj01;_G*WSP!KGG)5j3f_\UCC4:iL&"Jn8aVQ?BQA>ajV\C'[25K7PXu4qX&Q"J#C*;1b(HERKi:tM;U$>24HouCMq4u<)>72^Y=`mhaeLmr:!:d2:]H>$!&COkendstream
endobj
% 'R1253': class PDFStream 
1253 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1445 >>
stream
GauI79lK&M&;KWSnfJ'_M77.<;dZtj[Qq-([tcQD79lW?EhR>RAh/dBMK56dqN@(Zb:BTiQ:d@V:ui5ao&1!i7L2KS([98b#2jA'2cBk#K@pT.0FV@_!T)-T00WZJTZT0OL/IV4=M)s(3/L6>F6J.Ms^\T]`nSqUKeBC\X=U]\m2m(@:(/W3!8a52*aY$`#7Vl?&EbH0V_3TG]\Z8TJW&sQ?%rj/S.DV1UAs4a]e<[,q1Q6S#-VKipp7nhA4_F;IQH@30e/r4\5=pM0$HMPUiCE/4m\bYms]c>hSe52o<)Tokis,>@T;"+DWP#F3dgeBiYIS8MHZZXos)C(u_t^$G$i9Sh=7SL;#1ShD.M:[)PHlMRIdsZa0hs[2)iPT__:l+_p]IDPZW_6PichgfcqqZH<>`J!5(-A_[8Zhm_)jBm"B!<;0QhD:0(sV8e^4S27l)g_NrOgcgt,*r:c3+E[#r.V(,^ps9;`NlZV27U\a7Zk)WrS3)G(<78UlBI4"_bSo$Q]bM[]+u*K:@k8ocZd[mRmTk@kOmFUI'2H$@8oZ%(@@7JS,_MTm&.E0`+30NYC_&boaRl"gY.7kaZMZ[5F]eU:0i:E4)!sk!)P*Rd&ASE4$usd"T,]Htt/gEc2li;U$ZL\<=u^kEtH*ihK/4n3cBiTub@C4D/@O9FXBK#PFWlLu34S#(<[tWn=`@(--RFEje02L!HfPnhj'PVnQaPc$/RmjD5q-S>9*'2qZV?a?%N@S#=d0>`//63!oVK9iQm(Xqla%9E%sfV05ePq9f5mJ1Pp%*H#S[K/XjrhDEG_)J3KCRBG$XVNK!-I*L0F%1K[>NMD5&;de(oX=e>5W-2bQLS#?Y^-V"gg1g+m(tVF'L,fT6qr:G#D\W#8d;cck+#?'&F?6qEp_S1!6#H~>endstream
endobj
% 'R1254': class PDFStream 
1254 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1475 >>
stream
Gau`Uhf%7-&:P.Os5B'+\4(7mqIOHp#,FhM5,:Q$)!H]c&%##'>\'h/keu^m5DkV6aV&G?dL\JM*:]'emc0l+UOp8mD^9i0COhIe(s`a9'BUf1p;i!a/UX"ZTDa+cL'h/**P%d+M(b/P6D!KL:MCrAG;d;Q9e=`pdhYlajb1*Pl3SRXS(`sB(;KpglQ+4L.9s2P5KgeH$d@[uP3n,rd<-'Jm$F%N,Y'I&d=tmGR\uZ%&#@m0Oeoqo)dW$=AoEWuMZ]L0*9XNUBjgqS\#>li'I?PWiX-MGEN@/WX14Un)N1iJp23(V,Y6SZeX!(LJm:^rJ*7YY]3U?aJj_JPX!HiBiAIU:p6e=0KMruE0P2q]oLI`V1jV`s*MXLRUDor!+r7>@SqH?&U[ErTZfdNnRWU_Z-H->Ict-EH?"IEB3NB`q>gsr3urJ.alcWRBPPW$$r'f4XfHc2$qhWEtLmClo_]2lX=bjfJS2'n22Z?1U*&Z1X$a:o`>:k1_b6\i'X@K9*.Ns"=RIVjf!;7[YbmWF='0=qM-9WS+EIi9%@EqYB-[t#01;YHCJ_HVu,#UfM#Nje4'r%g)V)Pd+=54Srj'Y*XY=s>gbKd;jtWa!YH"=EdoqKEpOQ,S19UNc5Bo(GYs[&(UGG9%lL;U2Ia-l2;OU'fOq<+)[t[5_,Hr^G&-LTc+30F%e_N)mg6p%F5)?R.[kAs*4@/'"s$X-+k'GW7p@b16*6Qq*,[!TRP5bW1M7l)6-+Brbu0io>LG].:sH'VJ@j0?U9:l^3/C*-BsT5(\o\h4K\*'d.RVV-;Bka9b]10aGL_O=^PX1qJB"f=fu"N[1,V5$.sJ]!%OA0!p0+Vc%-"mm.Ch_)JqB\?Z/m&a3RVQq8sZ)HD)g.4ib:l6c/UAAX9aA_5L4/VY>6Q<2T7&cf#\LKbcD'2MYf>QYu'3pm(4,Kf@BSEH+A#1([$!S%>9:"E0peZ9qh+MooS^.lOAVrhP<\)%QPbHA-KpVh4FNcA4o1<@;OL3(\)KWc/U.a$9$DXTL7FmX@->9(:A!04_a*K]l'."-*6(?g=G072/dhSr.*!hk7BS@Ud+XJ+Q!ctdn^c*f>ZZB(eaI8nR%^\ZnCNLq#W+o]5m"SaQ'C(ctMsgn;Thq1B&g9--b7ARf86GRZ2S*^N@Kkq-rrMHskFD~>endstream
endobj
% 'R1255': class PDFStream 
1255 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1552 >>
stream
Gb!TX?$#!`'Sc'4PQ,T6YLlSNb9)6rD.iFEU_h^%4)nmlBmLr,!&qop[NK+1I3mPn#"_)jUc[$:(bk.:]R"ZF*>ntqHQ_i>ScbJfclF;q2?X[YDT@Ih)En;%-i]^.T[MEWFaCdh,O"lm%e=s1o+VDQ\[&KRNebu3]n'QDR_*/@pAe@/@7r_g.C:_&N/VJ8-LW,QRoq_I7I(0aAd$!9CIfg@+kW_ep1[5.i^36D@4bY*t"*hhrcD`1BkIQ"R!sebXk,1jWO"gK',)qTgtZ&O$YB8I.!GDlhO&lZt!#*[&Mq.f*n'akF++^f/`u?CHNg20[8aI._sleXO=jjO0).U-Hq,c#frH$+\T)YMrYODTIgAmEKE-"jY^Raala=W\TQ-&>%]rGf`67PS'MJ.PYl"/SJh)SCr?lb<$@+ntF7Q1jo)e`KL"-JM)U*Qc`*=VJL:rdr-pmhetY9s^b(FnF7rSc'kL\ScE@p^]dIg4R6-P!bHVD_2kJF7)n+0"nMta%*=?SNa.FHkDjN9?>f$A(^2bSUT6J[-@1C+r29G$\$R?\J1ZO9Z$HuRnEfrl^]%Bmj,4eaimbQM8Q*!g/FEb82Ql7ULn(sQ=M3JgpQ+^>>Y2qMtIbc1g3nTMIK['drEm7[mm5`Yp=,@f>XIrOSk3aDfaN%11$*%7UmDS0$h*$ZSM67;42s_ia%Jd:+ti6\Oba;P@BS^4FWC!(*9*5_hTN'#88^.%-lWO.u9\*ZJdY.UWk;)j?8A$,dkAJded9O$9'ilA*J%5Sc'+&_[HF>HK`W<&%]3Z7_Y@U;T%o<-VF'%65Jl6X+?AWSrTWZrB^ks`.ku00]5_;^jgcKNT5r,AFl@LYB8K*FJ@KKng]crKQeP>YA^$/hTal[SWZ+1224d6U)8dMqZ4ghuj=rj4U3lN?jj'+_U['FN3cKO-sUIAp?%g`erMendstream
endobj
% 'R1256': class PDFStream 
1256 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1742 >>
stream
Gatn(?#SIU'Sc&Yj?K0H3(*#!qXDPng2:$tZie_n-nlJTBUQ<=8u+dO:"s%46V;Nler&]g8kkSUh_Z)%FjP<%(d[04jQdf2;RsEfffXZN)=t*)l>8sr]eVVF2QeEhh-P-acjR7L-V;?&k=[-.f5^]M!88CPm>](MZ29t?[TZqQc`LQl]3OocJR$*%E5AIqn\m#g\6&AWqeDL#YuNomYI(!47905bXto:r:bgdE42^6j"9o[MY4R2M5&$C$KS&HO]"Uh^mCu8.,FGa&CL4Gd(a8bYcC?.$a`Y11&5=enQ_(#5W/Gb^%T>]kGd.btd>a`LIeNuPHZS[[DMI>fnA&*P5;9ho(tH$',nn9sb:!k>ouUr/bc?lZ!^eJ?Dmdr?e3SFK^:ej".SPer6HRB3#%V6)rhc!:ul"sd*DlJ=XcecIP0[$!;(0SHW"7;]-^r8r#7ap3JId/FCa.tKq?3&G5:;^M;ZWRemYBa";i5g#o)'GhBZtd8P\AlO)"ZiR3M]#8ZTaWlelGJaS_sZ(e51J/4BK9ZG(_[Gi7tC7p`;"g:^s!W)UYQCIJFE1@]?'"N2Mt?Nq^/5naTtLFB^B+dMD.2(q;QF7krV7(Yb/7lAY4*N*gib<0ir4Zk7X#t_,fukV)PV2kf2%+^][qP(3!U*A6II&4sM%iA67:7^1tp\4rUNtL)XKk,hVW[7MSi_bk(AC@m(nU8IUT??[:Mp1.%bdVGQTn>Uo_Y$:Ba6%P=L/1tt8u3PnF'N%BIYiR+ar#@#Zg0\5%LcLP=LY;f"3SIl:%4(`;*I:l0h)Il4WrS`NiOSbKQ6`\%-.8cT(e<'kM+Lb+d^JZ'(fPb7j2Go'oY#12MrE-_'ZoH!DE&CO8OZRh/NCV%Ljk(LASuiGaa7+7B$oJ"Pc9pAf_EQSCOh@u6^\LiB;kn+$,W9K1D=Y^pL/I4K5%$>Y8I>[>ATu]`Gasm(NJ!%HaZZOKRK\%Aoen\Tq"XjVkjn*RedLV0D)5Jej?-1qSKnK.S0W@:\AffmO$0?:FaA!Gbf.S#8K>BW]LF2TV&ZY?XAF7UkjihLb)?GsKbh)b(,:\u]kg^(=]=tOk#$)dG0I%Z_p"X!gD/:j!lMbKeh:PLSH=/8%F(K^>YoqX8g)3>sl$[rfctM3i7U35#C\kJeJJ6g]Zf!^SG-(5%)floFh\2.*PX#j;Q>d9qPQLXW,9,E_i-LJ>kh.LFW+BFA7McjQI_O"pU>\r_`B)N`=P,L0_]\-ISc^ec0`B>1FOcd\ND+EMm_/K03bF#j8R&4<;<9BFo%+cO&g%S.=Zr<\P1n0I$p^//SL,DII?AGp@UP%9toT	cHgq>^Mcr8~>endstream
endobj
% 'R1257': class PDFStream 
1257 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1754 >>
stream
Gb!SmCJX7S)#et0re&0+b!\nh>hVm+UqpF]*KJDTe_%6(P=aRg41Q'[4ja0(]loU&2D-j4e$N!%k41Q^r4Eh1FtdspKCsGQ,'5_2VjA6/Jqaql]q1"6n'T,Di8);e4'^G75q`L8Lf(qUp2Ck%cr(fJj3e.#ikA&j3#nglEUVl&*l;#Bf[1d)73.sQA=QBA0cL#t#&[krl(VD(iJ,'1r(9?O8cK`\"F(^oiqIhZ#B3KC&g6OW!r92)nr,rnmsL+L1PSMdEAkpa8nFN*88*B697WVcPc6#47lQBa"_T:-Ua6M;1aVFRm`/SNM?5S8:Yg;9+6=.]iC]7t1>YaX7%u*m)<9hLdEE4qIqMC+dWdA7PX-3W80Ka#n(ipgW\SjoaeE7i,)J:];Hki2@Y'ohmtcs?g%750WC40L)"e?535+t-WiF+g3R9Kq*HQf/b1LoRIN,R?q*C"H+=S`;2X58TY_Y:YO,bg>ON&1-1JJY/*;j0n/]?>41B@W`0tL_,8%g7p*W1*,>WgDUShOU)Pohu4>sj2n)uX6YGg45e\uQ;@PN:mYf;--,in%Nkj>2dmup\K]aeQ`(:!BOsdU#cg$U$."U3AM(j)*E`fDYF5LWeT@Y1i)\2sXe"J*[C#hhYRn2jhil4IsT?S/Y-Dj0>+WokdBY$^tMud$OmRhe\G'lk?.(HCr^A9>4fASgI;(5L?cTIDq@&9Z@Z%2S"hIW]01W#S*@*ni?`ocLW=E[Dqrt!?JPXN0E<;/L8Ogf&iG%@D6/m7o!_AN52U?Nd#eUS=/a4N8Ac)NY@]fp/O-^V9TVJK@%FdQTEIm?^3Z-phuBXf\(t<>T`83PW;nQlc=,dD_c#]d)OMk-&qYeo[IF6CBa<(l[%/s]YCfd=)G00_T&'=WsRZW;ZZMb4HY*Q4etehAZ?[6\gnO!'\Wqm&uV;iJ,OiCSm-)kT_kV`L]fir.^)K-k&BtS433C0mW8>^6q[Ql2-[m9(Z]/P[>B4lh/L.$a83Z^SC-6Pq"N6^>'+W_&\E]Boe2PLcWGG^*HJNqSn7Gu.QA@rl+W7LS\!IeJ#Q63OHENLN>p3%duCLYRI@ms!5hLsC1pbA)@c%r^Em-`akfh^R,CND+ie-:^%o<)2mpN^3eE6_57AGr6!mF`GGJgD;BI;u%"CuE(HO]qFkpmP$qf^Y,$,6W<8g)+:Up7>)i2kuo+O6]G%FL+g	h.K,@_T84U6P07kX_"3`$\cO/t"QRdg!]@@_\K5Z>A+j)CX-6QD?1M1>j'*!54FRZ3=ta4;3l41VWh:c)\0Bendstream
endobj
% 'R1258': class PDFStream 
1258 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1822 >>
stream
Gb!TXhf%7-&BEZ9oRAjmA^8XNU41c6[K6>pAEUqkKc[^edni)F@$&hZ"oIU#k:VP!+0W`354Jf1;P&?QL!e%']omsL@a4T/S%P%N5XR[$=C6-=5M#qnn"bIkZLK;*D.k%>IBALk@6,btLsAr!/9o4=As6ZV*n%gPS/j?1[H)$6)_.6m,am,9RA(Uu^s!cRf2_8iopVXtj@VVS`,YSn3HG&(9rq!R'-3SEK#prMYs'j2(-V\7=j8DmZL/haA)dA^S@XBCdjmM&qp`iETF^T$s*SUafknclG9\I1d!hKX"E/_2afT@0Q0Sg(\XTJq1Ufd]:\(%m6h*`0ndE_1^$-'ZkLV4F!VKdf-&4;]+Tr3C2ESqakagUh-#eDi9F9qd]k:h],JIT'i\'QfK%kCuUq?Jd\q2+&[:96O-#=s]?[-T^bZ8:NlcE@8H-RrKTSDBr7."%sAQh!=@IQOB(?j/a/aBnZW)FDZ8H"t`jjkXfu!MeY;F,VkRDELMKQqI@bD@Bg](j^OQ_HQe-j3_]Jpn4+a->iT76W!XiBd0^Sk35eSMkCG]12GXSTr_hJkZfn$Bhnl/Sm@cL!U8*6f[M[TgV+QT;.q)UZ:"=+2E/I!u(Eid#_2DD/%,7p0"SL8mmfK)+(k&rpU/U$%,"[pumA9b+Y;B8f(4^RbAS2Hsh='4u31gPIL[GOk3D]=kJOI\H@nlEXc=nVlDq?dmJIB"2C)%?kKo4"E7TLtMsb%e2DVY((3#2`W:DkEaU,@p;'e`H4O+cO>(':n/Ph`'AKfA2k'Q!pL*C'U4&6ZCjE"g3^2/&\qGAmFGuHXX=/fn[o]r5#aR&Ke^ClhQVTSj3)WrO*T$~>endstream
endobj
% 'R1259': class PDFStream 
1259 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1382 >>
stream
Gaua@?#SIU'Sc&Yj?K0H\AR68PQ`lt]I<`C1)rj](at1BkJFHd`#J5:@sEZQ#%9:Op/s.>NRD?u,BS4SV!_WR6S]Tn2/.n6]d$6I&59M(XZuK;&13B55tKm[hh+QE4JjZ4o1^>Y?FE1pYg9DN&$`J5JE/^g!Dn"'AkDFtSG3i3\s)m>dO;=n-V,'csPdJTnED(0rU3!*qqQP,T47$/=1fS(G1VqI"*'Zm4%IP\IU\6\m7_`@sar`gml_9BQG11B,%t8VJtHQ!-%E(^R%1k&&;DB*d]71W-FQS*ELY0WuQ&SJL+HQ`\;HCoiDu&&$8AaEg^@;SAh/CE\GtH+C:]695S3H;UCLcr/RhBq\@)/CPKi)O2bhm"sl4/Zp5a9SE9#HJnh4iTb8f_9BH?0[-nqG%R"?\hbr@$5<[f>?[/1"d(U0Ta;/0.s0)8mi"(NW)ej1=%^B)Loi,?OB&V*i=CXi+O052lT!mk/I#H)c>ghdq^mM[guAF7]lX/Z_>7<2fgSemSFM^,e]e@XEWAe@uP^nfUc4ZN1A&rW?'3E#XdeOiM5pgV_U(2l35RZ/gllc%uJYSXst'h4rGIQ`g5Du\[%S1V*m$\4;'`B(Y;.*ao%SN=X#-?j5mRJE?nd2;=WDqE;u*@BHKCeo?1LOA?"FkY:LdJ>u?!?ZQh[5!?\'32"TA80Y[Q+63ee1'=qg=H5un$Uj+Q]Kk.Vp!V&;l7$h5t#djg@N94*nOu[o>iR6nY(Cr/pWII%,2^6T@I%i3dFeO&Yl?SXe^=Lmc9<2gY^aqUiWihSLHsS=-Mjd,U&,VL$I8S@jAa%saj,J8QW81Yc?9oq&VJMYM3'[9Ah<<4^~>endstream
endobj
% 'R1260': class PDFStream 
1260 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1507 >>
stream
Gb!kugQ(#H&:Inns+/6a]RfGbFgG&S"ni9+fX,?o5_7L7OC_U-0$U_>K.0.s#\@dRsRNRsuBFeqk4Fk'%r9Vo.)-koWma1W$++hn])FE?Sq306W5?un28)_NE/UeP4noYK@`AW6C]\&;f)M;AA.!\.oi@17K$P<6TNNBNbDZDto0J=hH;9%\Ai17gWMu$9PM9?u:>0`KU\TX'S-(JR1f\)r)@`b_KEc2]bMcda4<fi4[0?1:Y:;71;DU>\uaX59A_lEi^0>:lnVeY%3/\\OB>S`6*uQ]tJFSG=9R!oE1e#I%c@?"B>^GQmG*>R9a<9P*"nl.`$,%^>N8Jh2\FDj4G`henV`20c#rnNWml@[uFcLN4HZpr>a5(=Uj).6>kfZ'4)fdR%aka@3Q11Np#t:`,uI8lA-X,2q`P37Fb+`:sZ$:GJ)F)=Lk?i9R8*R8YW/nNbQ13EUQ)Hkos!T>K8_;C)aO=f(4S7>/$=JmFiOqS$s*&+#[3^f&(gaoSke89=!au%U^B%/7mmb9Zm\jNOL#`99;B\P=8:Cd_7H!H,*EJQH_E/S!I:qP&B]$B`a`?AFBMj4O=Nq_D3"V/jN_Y.-f7UW&dXfa\Q?&oQhpO]m&G9dTC[5"I)8:'Lk?M,7s!S'bs]BB1,h!jC+@Rh7bDYpj2T`=WWQ8FZQ4>'2OXSKBj91aL[=:JHY.0^a^]SLn,[)/`2XDNJ]!Wa\&j2a\m8f0n&Gd?H";4s5j#44ma$BQ;;s/UmW!pOaMj8d59<(eHrH;ni.KC-IFGZqeZ];_!#%pN@ns5?O-`BGM#6drA/t0l,>Ad+7VI^!9d]>2"t7s0`^$#f"Jb!:FcjrVpX6:Y%7lUZ&Q_AT@Yjhj:n@oREr4H]bAWrm4!g==!Z[endstream
endobj
% 'R1261': class PDFStream 
1261 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1421 >>
stream
Gb!kuhf%7-&:P.Os5D=k3eQgU'_Q7o"uL$&'^1Etp=m4b=f-&#]R#X$H$UVI>gS(b[+#%E%0V1q:$O[k6HeTi&Jk@8ZV^4j[ldFA\breAfrHBM)#GNVrj;g#+_"NjBug"6M!cVodO47E5QHFD6Lkkq/fl:`%U52U?/H1E\[:?-H!mosQh=NOC\?e9La^AH(<>-I4WHs&8lTe[*+"YlPV5LU^/2:V_AcHJQ^31iAg%N[fa*eW?]<+:P1h<-]APs,GT[LYgVlPlqY$7Z,>Rc![crs(BM=il3DtF4',j-]8rPq?X_m=O)G8QD3Itho*+cKCQ\Z\>\!h3pf9.8K6#;k>o8!]$_F1n6d?:tbhBqR%>"]1fA99[[rdoL,o77BC]>R;N/JFp\B$mH8\42VXi^7Kmk5u*U_N>EPGZ=;Ffi?r"B?[;&Vme.5hCfd#j\D=cnB9q4+_q'@R6pP)gH8VK;!T^dte't_*(R@E>lueVtoGd<73cA?+=82\?Hfo?E]YGQEs\pjQeE4="I;eH]hsHE8if.*'8QR+WkR!Na'^)@D6^B/Jlmkh%K9N*rcWn'b_K-OEnjH86?hsaH68/.K^6[.k.bP?aSbnCt,%:^-"X>:sbN<#F1m-Bqri7pnV'&/SVf!HjGq9hoDBbNG>m+-YP%KV?GZj[INYsrnq/Ln@nu>Y@R'%=[XQk$&*2l[b)uD;8tr=*]4acIl4@/NpE<0U,gNugcRireMkM.8Mo5ieKror`bP2sQs_Np:"tL^a0mWuXP)H5Lc#F2[UO*h;e\e1jmLZ+-8m+lhlkF^<9h%X;f9KNn0Jf)Y1.Ma^Icm@69KWVJOUXBs!c;#Z-QXI&\PkS^I3WB&34*KAd;XHdSdJkmc$OoIFlSIU+phoT.PD\gO9mjf0U5Tu@6/-6mTo9(9rb!$J^XI.e$(=]>4iVA''0?K(U%2hT?lC*t0;*E+pLk>\H&qtoFP!*-d7:ra7@BU>+4;nZdgcSH/3;'/h-G^W]"it,:U?8qQ3o`a!S0!R(F_--C6Ql*6P0D,M!C9X>tWlAga@iP(s0=M-S>q4Vg/3_]IjOgtR-\-g"B1M.<#p@"UJ^],'#p?^^Q+?*R!&YjNrV2o`Z5_O8F.JVHe(L%qK/F[dNJ55SdqsG\;FuWplVs%mf88`R8!7uEc0onWmZ;A7gZgHDW;ps!qMWujSGn-+X+(/?8/]P~>endstream
endobj
% 'R1262': class PDFStream 
1262 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1240 >>
stream
Gb!l!?#SIU'R^LRs)?AP3eQg_'Ic\m3.]V'MD%RV'<`'^?0h:/ATpT&=02oDjR,l6f:+1')EEHD6bB%kIDH@]<\"l35G8K%c+J"\miE3c$5H-DZC.#GD`b29iSWN0G9m2h-B_0FBWbB@Z+!9^t-0?+@Dd',r[o]IjsD;6rY+l?*p0Q&,(Oprp!^`1AHKYWfracl^gHf9N#R_M;.M)Jq+)(#3BD9j&gKo.,dllqMsp72)Bh_($:6\MSZ.:j;c*,V,*1j/Qe%!rO0S5.Q'g]#"1E^ZjZ/Zg$n_E?4]L6XsQRTa@=8eP4MtrP>8'PW\&qE^WZp,RW/3?Z.+F3$cU1r15I+h!%@r5%-ZOQ^9q2F3pP6B5gjOmfkZ'c$?do.(\;P-bG2q(]=dn'k(!&ET#UC6fX2657$;O4rXMCA'_Ogc_agamS+,r+r3Zk/rUKj:kKRGcErJT'rLg.FqNT3Bp=!6ipNC:#V\k/XlRc8UD^)\.#nJDn(ad9P\/7R"(0i]cN`'iD!H,+!U5ZN[E)HHW;>e1\M\:+[_*uc>,I`HdWkIV"Wjo]l]h$+2>+rGg^TkWJ.DJ$,iidEkQeBl.k%qMTjV1'$=Bt=jX;Y'W)3Y='R]](3/Q9jjel?j)4)P1ibi+0-2:ks(_31g&$*G[GNpu&%t3$0$aeG2X$&-K-&4Q77"3laXPr)+g1(i)6EFVHfH(ta,"LA)Cq&Nf'LNhl@S;[r6(r9crgc\Q9;.N&=Lqu6rpmaBi^2=*6ABE"'T7Q*N<%N%J>7Zendstream
endobj
% 'R1263': class PDFStream 
1263 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1515 >>
stream
Gb!;dD/\/e&H3^ns5?d^Lb^6a.*8bPC^'CXTZ,WmCBOdmZ4F<:>?ki=Q0>dSpS2%7ad*W6/!?0YB]%$ud#5XFUQC7sO2<++6476CI2]*nZM3+;g0a!HN!HY"Suj6m,_U+3A@r@:sd1G9(OE2<$d,GMhp??mIc:pKqlh:6b[E4=aFRX.lVG!f7PL9u@)Yes#Mc]GUh"'5\U6d!e\GBiE#a&%;T5PHXi3cO^C&MVk#nU?(_]rCh]>QK1>'co38b-[Ph7_(DNdM!hC1I:0-#l+fCP`ZY>,TjoC4'SKe]KB!bF7GKW>OfeU+C)0FCqI0"Q7gZ(oa+`aqpT0a0J%Y1=I)m"Kt[p:mDCT%i9r>N2ui6UWhf5(p5uHibND>5ba.>!&Bm-`MS;P.f@E=/G+95>?m8C+Kg'ZO($b.6LabLS-n?;m2!=f0#AQfEnDio5B0i;<#6G@_@kgC,A'lW0fReSZ?Hi]iFNn,@V&RQr<6V^u8^[_hEkfS9Z!2G[4Th-3=bD`*CHPUb!08hX3mc[o##:FNPe0]l!M-$4L=$EGTStg:k$>ra/3Y4=*Wt`-u,7+VkddL10IddMDP#)aL?(2eUiKo(G(ek``$\k!feu"hp.#_OSE.=A=19F!@8tBPdV%,;mo]+#m@.)1t1l]:tm=^UU3&uVT3LS80B(9FL-Vo+EPNtfM]aDkQ_m,dP@+HZe.btnF"02A_F8MaN)iq=k_27gPBA)ZuH@ARU1)':Eeaq"*R^8]rC.jGTeBM,n(@JG*+Ke\[h.qM&OFIa)nW9\1d$ce`-0fHIC\D_,"muBeZ`fDBY!$7*@,A#2?^bo67r?eZXYL?>!tOS\NE'9e(J&g4"%uA;8H0"WX41S>[7=p;P&74HmIse&bE]gHYU>YYbqc/.:#2OhjW_tBBN2ZS=L4fmSrR">(-P;V-e_bXK=d8s;G/'qK3+eN/A.;dWq-3h[skE(^c?-L#,(Js0ao`_`^,=[/\4TMfMM=)Yt'3h!bh`t-O]3/Y?pfoIkPMZ,+kfe:QA;bSPI99Frj6^1&5((Z!MeAC?F;-Z0]13`Zl&N,M@A`3p/p[p`1`&P6dE1pN=U[FG>rg:ORH3*`[-tjGrBtcL,0_?-0]U[8%,P:K,@FQYWIp@&.rn/\Y9Z=35iuO#G,2-HkWF#6@QAa%qPFUO"O-3Z`r=>-A[3G~>endstream
endobj
% 'R1264': class PDFStream 
1264 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1386 >>
stream
Gb!kuhf%7-&:P.Os5B'+3eQg]qIpDnJ0n!@!U8=_7NXPW6'c1gX!F]%h/rV]92]dS=a%__M?0VGi5!cLKP?YPgS=Y*h4i)iSm0k#]n1_AT3Q.NLM3Z4K/Df$8V:[X7'?#M9ose5r?kY5W&'f%E!lQss\CR.g2#)=[#9Ob@Y1)k[-NB?sW&7,Kks9=4frU_;r[*T<@rEe@drTYUnrlE=Vu#5+h8*B,s,5_S%_h%I%KD=*LP'NV?,Q^#a3c)ZDVU!&2=>JH5a/`8)k4'2anl#P'\?Ru]V-N4iJ+8^R-7d?CCt'FIV]6khn-n4Or/98YkB,_0i_k_-JVh6Nmk:Z]pH2q/=jdg='b.%+MEM)dT[]#84lBX9-)%LV8J8;$]T9,N+'j\/%Ye_WF_tq9GYOrVID7b1XHaCW]R`?5VJmGHok1hd733VD/3WRPp12S%]#gD`eU`B51UaB`'^e"fQ7MD.Z)rS-(iVm;jjl2@JnQ+K=qYM.T"q#jhUX0OQ/*;GZs(YBmmi.lXBD7>39^?1qSZSg@"6ef$fjUddM7*pReBs';U+]6eGEeK/kI`PHJ&4MoVMEGG/0QAu?[P_B`f&b8i-rX9I&!%L1*1gf=[]eR_[;[Kam`=>bVibTW+V_oLAkYE+bUY5/L\%fi.-13f'RqX+aW,pB@M0TUBlc!`?^Qe65EpaGtj$e_ZZ/XjBI6_Sc59u7KWCo2;jbgEAAL5TZ*jlkfg,;03GN`V\?@62]mg+QB7[dt]t06@.mkW%9LdqG:XgHANF-'-Y1]<1?Af3Q!G_#8SkQ01ldekVBO]p<*>aOul1NhY,\;!Ze8l(8iQA7MfgBVf8rC,+@e6fsOT.2AH]j&+`m(GtB/<3u&X\?L%iJJYbDd")ukO*ol>nW,^"_WZd\?6f+u26pGJp=YMYm>"tY7Zo/.@j9S;q&o^].-EG7B#M+N3i1$@LQ->ghC.Q);YDVW0cf;t8+dWm:VHj=48jL~>endstream
endobj
% 'R1265': class PDFStream 
1265 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1414 >>
stream
Gb!LDGU*;[s!-\+A.J)ULd/D77lAiAFB"q3g-CK/c4m[0"orhnc8('g]0?*9!7uF@Ombf"UN!['PDA]f-K2//+,>>a:Y1WQ0@2)?:$>ro\]>)EPle/[R[a$C7F[Abo(H]j]Ti[jO;hUCDjR-`>Qg8N'a#g[l3VK>$N+Cdt93#dV.J1-3JKatSgE/#mo8h3IbL_)0F&1O*S]!AWF\9>TJ[q:#k"!?hQN]p-C)9^qY>i+a]j$aH;YE[W'MAtnbRUh?Zb6u>5MR;,"YFt-U'<*a]0g-g,0Tl[jB>X%ePe,$VVT,m5OF8B`>%[h(oW#Hjcj_2agLn(p?4q!q/GMs"ATU(-DoH.?F[QOQ=,+='"GoW0lFc+TB,N12Al(e;'HV1LG+__>N[Xm"*8;i2?\P@pG3rDL#hNlj`(K[>=MM\F&h!IO:\(e4YgpV$"cbd\M1oP9Er3;%%l;0Bf1jH:MhiGF`)nVA0)#ZZXIpHg4Q1_,!9J;ZZWVD=W]`)oHAhRtmReP66[AN%K8$]kWREa=?ra]hTisr0904+E\-Z"3kel/?Y.U\*R"lo.j5ESo0;Fj3QUu3A;'26@S]M>7>;5O6<<56j2bG%a9RY!.^O`LZNZ>a=42p).=W">1%GS`5*#VG8[=.:!l.4_)?m@4\gP&fren(Wg65df5KZ.2-'',6Nq4O]3l/(k7*2+pFbg\+F6lc"htioh(3q^#;W<6T#84DXhA?Qq)@u(fZgh7,?+_n$Rdnlo%jf`>VWKjU>'GbnBjWI,f2A(%(m0TZBjW2[2OQ`:S>oI.">/PZ/@@=`WFR'+V^dTD-,&+4=&fpCipp+;^YnbF?dhhmjT~>endstream
endobj
% 'R1266': class PDFStream 
1266 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1477 >>
stream
Gb!TVm8)b#(r3m2nNT.q_['1Fik.0rPMcpGPM!fqd;IF#-BksYCD)uP4m;nA3DQ%j9hQI(-J^Y'7IF[_H%+)?&a83rP5bbA^nhS)f*IH=rWJJ]6s0]N#(\t]7.e-U5WlbK39B;Or#tBA>EVfL=$V6VnX`OX34*d$5ce'egl0K0]M-SG$#tT#/^+U:b>WhP+oP^m-jQbm3oAZtr'X]m?)sqF*,]%m]AIGmUVR"2'lCa,"G60NqEPP-OPEa$?Ti#7)#4ggPg0&:@31^W3BLZ\UXhJ-aWXXh+>!s#*L44@?U?.-+O$(VVG,hatog[\^=5a*uqu6H<\sF=Z^48?OeIj^[HCLkD^%cR>(HU68SP\`-k=os$rja3M%qBTHdV+G*AAXgF6/3#Fl1CYuM=cO9c<,_Q%qkLr*TbSu-ALP@s/X'ld2.o^NbbU.m\*KWDG+S5=h3u;dHj$Y=OG*J\%/Q#N9te%2J0YU>RH`>f,8NAZ)8"tE#**U\=gYh>!e;`bR%\8pc]lH7E\C%p$M2g9/oMQi_=+A?HBQA*nEC#bRp*&Y9F?Vd0-f_eHhq>31qI5a1FVN[YR'a=Z!s.F2&fm&T,5&GR"nftEJ'2qo4jdD0_EN=?9@GF?gY2-33=H0c).:5O?VJ0]sp&Wg3*m3?5W3N\<7]Nm%^TMRa3CmZNAsU&&qG=FiQra+MZ3B<1?\goYS1RVO.h;f\\bC6Ab4<%#/^#Q?/D1L)GrT/Z^SWK8-^"u2(C('o9h>+1grSl@HhlRZf(UM\.dl1uE%g)Q[k[;14Z7;0`mLN)R<\JABJF>[Br=UeSIXSB9dZd#.+p\&Kci\e,'\b/8^n]Q-Z`[3*ro`C:m\t])\g,JNP13m"SX(9@:*iRIP>TK3bm$=\`.n9AM@P,a`.PN3'R0T1dendstream
endobj
% 'R1267': class PDFStream 
1267 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1614 >>
stream
GauI8CN%rc'Sa@-aF?25QafEBLq;7X[K1(p*JS+lAci4F$j/*/()pCu.63anqN7"YbE`i@Q5V_RN0k;d53.&#%un@90;O'oF+=d2357b09GgP+fmOgZ[r=Jo55KGMK^uR3gNPg06SK?ZIH7r1kc#JVcDrjt.iMNe-/O[Fl>a;m_)`\P!\m?9q?b?W2koG/S2QBSi.\FOD"t6L'>fMLSXQ"3_&S*'_ER*0J\Za"*[5(S'NP$C2q-D+S3/aWLWN1amaNq+hT8#NlIP(bT[l9;A3UE$d(noZUR[1XW(kSUF@WM:Vn7,S>7TWCbjHErNEtt@_sTL5#H,24eg6)jD/8mcqpb/KDYR\4G2[@P=R2H24GBGCL5F>^1:AmLn2i#>K(pdjC_JuMV_b?b@@_ts"jh#sXh2C5eCpf4:*HMR-4r;R)bRa97&Q[9?QrA_3C?7lYM](L`.mb'88rSV-O\.<'To?hra.08\UUe3frVTFIc;0,X'mY*Q9mL+S@Qu.Eu'Ch;_f#&okfb)%t;*'o.aU$a)eNFY6WQ3H.LfU7]h)\!FFp*5Ue4I]RY[\(P6'`',:aQ1P&YOcm398>8KP3)3$;F/'@?F0GY6?CJ#JOY'b[3;F"tGj8'CO(fJ'nV_DPrf(`B!\!/M(4X4DLEa<-Llb[:'lnb\oei5_EG3e^3%1\%68mWkj@E1K.!-RB#5bM+a2@[;EmJi2o#^hdUWh2pU^N:JJ/S>#*@`"$YjMFT6ma`R&p6[np63PXqOmQ9&NbFhlW1>CaIls4+FImX'Eqc9Cbo1"!FmYs1,1$dYnnJDrZ1[3_;0oC0`4I`Cp]Uq*SJh-VCQ_]k[<4u9R;o1s,"opW%E)?hUE>KrelT..:`G8"DULNh93e/_;`#Kg4g'`>8m>>Dd8YgY"e=]iMWE)ROME\j$$qNXI07!KW:'Zr$QqHpdkC$b+Hc\?<]ZgYkdp-O2B[3P9\qkJaAW&hA]O89X6fS#`bmuRs^%Z7T\mX#PY;NC]ThKj0"LFLKkj`4U#na((Dq.5A-g?8'@2`mWuDKg@jDRt0]YA"r(caLMZq8Tj\[&^gsrP(R(h>C2XR]S;O_7k!.:_WTLbUi7AUgt8CIsICI?Y?^,)r%_c9bNc"SZja#($hI&<#@Z7FqVs3*Sh.VmQe#e$+e.`EV-4p9u-;Hs0t'&70~>endstream
endobj
% 'R1268': class PDFStream 
1268 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1611 >>
stream
Gb!;dD/\E'&H3_"s'^4\i`(VVr<>HnQ1Arm,NV\f"fXMI8m1KaHtR9QH3rQfGJ#iMfERXD766SCBg"QLlnbh\!]p;lqjL6OM*AuO6dBf.Z:g4pJ*91"r9_r*$RI[3J&P.s_g*7rjtXD>SoIk1;U_9i8D@VpIFgDY9Mf7dZVbr[SeDJa1934;-EfESIe(p&X6p&4jim.Js2\.Rp[?hAJO=0b7"F'$_+`2m)i=q`U.4;"*0K)%+_nI3E'=<':JoA\=M2JIb<3[;eNVj*)lT7t8UPu@"9I"rIA&HfokT'neP@Hh(LZJ7qEqBg)X`Ee:2-hulNS(iGY^=fa$K6H!H.5;hfY;$e*>H0Da^qG?&r=69Xg/8k-dlj?PR[Zb9L=8Qu'QW+C7j+Z;4;pB3[&\E]dX-=<^(c/(UUa2RbIYEs/$=+5Y2boH6%np,RV)"sJ3J>HGcq_kO/3r9GenVPA7GX3S-C0&rt^[D.8?2(L[?-s9D\5SUt]ckd_G,prQG43\n/5p*D:V/5ikucLQ"][0[-X*Vb5u$_Pkq-$0.+B5fAa2bR;E`=A0Tq`7I]AG8'Ml]E\c(:%Y!Q&C6&H^2"p@/GP>OO&k.Qb9Np60Mdb$r)R`Onu*3$\UqJapA([g=e5:^AB-a._^pL`lo@`t4-@5j#(SCV6j7'g?!'-,ITAMqjtO*:o6%srh?nr2]:B]'5Z20irFhCl51ja)oa(UKM?OX6hf"2!l7Qe4*(;k%E&?[8oaDSUmqXN_!Oi.!)l"?^iGpi66^Z8>GTN5"Ej8FT7!Ld$KCf^&lW^P3WkA5Q8!"1MhaN,kMR2aT@VgOLVFp]E"B)/odsO&?Efn.=VUK>u_?gJ1K_QFc,;P#X&l4'Fm$[Aia@]NQSn4!-T13bb9gX8u>_Yu%j?pAYLr.i6:$T(Gb$$B5'-qS7BekA^WgH\HKe?)_0L.CU>#?($_?4:gl00X$PcC@I!*]ql@h'Pm1^dFphMQ&Jdd>U%rK'L43Lr"uY$O-tZh<_a^-L,jr@:W'9U9HW3afc++]sEFX@aHmUt8Rendstream
endobj
% 'R1269': class PDFStream 
1269 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1497 >>
stream
Gb!SmD0+\p&H9r`s'_B-*R\Z;nf,*jlV'W3S%5>9]eIoYRXS);0Q(Ehf]"4W^9VR-Z10!shTaCm6P?3F5'hDHYuW!o`&Ej_P5sNU%)!5SUr.EaaR#?L^4Vnp]CjTiTkplCGATio&G5@=(HJoK/DDaNN^d?eQ*6n'2=s$^BOFB#(HFL*=1CVG6T78t"IW\:A7Q)0lU0j?F0k!@SoE]+1^X>PqNRMfp`J^Mr7)b>R8J`LmpZp@,\I%':3\])BJq/D\+>#_e=f&NTFW*ijhKjE,j=.H:BA%EC0ek:S\7,3G+kZdoP@^:M8)5\O8bH:[\IE+($Af`[0#qW/6Z3h90\KXL;k=aD&:jXL!p'[RCBsQH+t4fZ(J-#H<-UWo2f+dq%Tug.jL,oCu,+jh0]IG=,Q:t/11:cL`g*NU\ACo9GcA;q7+K&jjB72q\GQPN"a4SG/"S\6hig'W;BfUb\.hBL=k(dNge1s1_mf0MV#p<5K.tDVFbSX0X:`d*\_ZOo9TT-T"L*d!^),`!m`E&0j$,r6s[b`l@U=S=hE$5Kc9_^$Vk/"B*]Ll92s+Y&N[:grk?"h?o_31qXfcf:./D(IRMu3F"#AKJ-UXnH"qj]a/K0B>?qW1!SU7o]2GiADRnhWJFQmZ7f`sQT2;tB`/R)9pA(a:_r81Yep`)YpA17E5@]`7Rj6aFqi@Se@DK)"nQl"3l&;@(P26FHWk9\5VCb&j_^9Z?Ubs-i.<1Z:(o[2H-ieq63h$'bCID2'4(8eI9/.!\d'bI3nGjUr@+r,iNQ,8t$oLr67;DcNsC;]MFQXW6VqfeO$r)@+n-Vh<*4\DU)&9.]GZp@Wn0V-O/Zb/&`gAG"5kqYQ0T;31ZA;1sH1hZ(jP)R-Np64CY)@(>`HLKnaRk?"&mEL\ej9BEo!rX;tj>8*lA=Lu;pb(o+u#T@+^]6!O,go(cg^oR0$;0_6Dt1)Z6;:lVW\<'1-!6U4/Lc/I%\JTAjJUci:fU@!S)cqN)SUS!:F(UuIRnAmd"Kh$P;Tr_1;E=bYt:bg8(F\oT5k*59NNY;)ud"?keE?aV@dYFH4a1&t04.p+UW+'Hc"22CTLP9O<_k,5;(Bd5#l3XZn\A-5"ITENb+_cpS$gpsmC\0Ro:3u;"6dJ]F,T+U-*`uc8Ec#=<<pekl/UUX%sZ6\>GUHTl5uZcp]IT\]G\el.8F~>endstream
endobj
% 'R1270': class PDFStream 
1270 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1520 >>
stream
Gb!;dgMZ%0&:HLqIi.7g.5nW5X0lUKjQ8l3Bpb+_8NfsG*nMNf^7P%&b!!_j:tM)6Ce%qk%K&:l.BOnuan"5M+.1dQY.Qn8?L6Pj?5\=`G@:]2?WD*2:h(XEaNdBk[)=R"9ktp*sRdYq\R*=6BDJ=S?63k@r_m^5@FQW17J"69*9`H=#!ngq)ZeCmD^*Xe&I$--3TjsnP]rQRfDH.jT6ccf@#6+?mGEY8@9Z>Ju3GXfpN4WE4psT9."e$qFB/FTSVo9tk(7]4_0`NYOFetqVXCAIf2YPc+[&#K=46P([D^B!lTHW-Q"^TO[(6g,"9,ZGT;mZXT@PqB#Fmnn.4:k69-kaIA?'FXHh[S3kLq@(H-J2-84f:.?:*WJBWDiN6&lKq1BlX2p!YNK1'#7-`';::dQ3b%=5Z?T/$A;A8;\G5E=X%nB96M-:PUFsim-#5d^PSF+prA._g?T?WUU%plPf8T)d>9u?g>Nqf?eiITrLH`Y=;)a$bCDY("2sUi"gpPD:i,5@$qq5qt*;;%,EI1J@g<1Z*:%WHYZFfaL>Q/FYO&g5,8MdVk6DNtT\WOLi.8-QlRJ%;gp3f^8Ti)9j>&nmrM:Mm$4C_;aFUlQVPB,E[<[#AK4T@7sEGE?H,;8%$MoZ,u,FR",-f_:m9f$NV](9[kB*brZe1_W6gMCY58t,t_=r*@.#g%6h=Y6#baY^i>@0XQtG+.ikD%m??cmIL_mmALNh3*B#O-DWr0m&2OiDaG4U'QfWE_$p(I/3t:md(&ar`)=Z+Kt(EJVE;*BA0J9KoY+:]/#0rR1Summ[1=g"X8eT((`-+5LX-K0R;USR;T-acs=IoU5&uLaK)DfX,V#/?[7;mr6QsOoQ["`'[!-!V678!CBQEj$bOb?YW*G'd^F9l%7B0VE8haALe'+QIendstream
endobj
% 'R1271': class PDFStream 
1271 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 931 >>
stream
Gb!;dhf"u<&:Uh4s5>$`Zk36?4AD$JVL@aZ:???K"/Sc9P_@9-C4H5!6P9YrTM8&q&K@t"kI]'th3hY9qSK\%VZ>U@(nP6Q"Mum$jt[2qi%-uSqK%%;93L\nSfe)emo(#1:["3I5Yk_-&FORt"8r5Ye>g.-MESbr-qKbGmf(fFnRDgYdPo8Wn''/Bhk%U+u=bu^.)2t\h\Ou$_jb_2dX!R[OD?"$o)a3,hk/"p=RP1Pi:(5JE!Z10_F7qP]c6kC5\.hEe^sY2PT+VLLX.n^B#iI"4TC#O:FZ*$RQS8'@7+<(5J=[Vt7A_k:6FWVt06.*gopN)_omEAEZ1iDB)X_)3U$mK`>3IrNq[ZHfS5KsWX-AeI);3SEXS@E91BM2eC-]$5KUk#0E*s79uIriT6`bM3;kM4EZX#cg\@p[^S!FEh_3bJs;[&8\+CaZ9nNp_f)'gRClMV;^GWb]X4&-j7[='+/bhJ*#`okHqX$Jaa/-70roohqE,!-D22F,'AY(jXC/P*_i%S#*ruMAE<,OGQ(&H<+_omUJe'#WhaZo'+]4m3+0E6)XNC5,19'&o6^IA^l8"lBJ9bL^!LjQ0t8.0Dd-\.Db5?shZ"[\\+ieH#n/3`L4CNendstream
endobj
% 'R1272': class PDFStream 
1272 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1302 >>
stream
Gb!SlD/\/e&H6R_s5B%mDHO^TP0LP`N6?.946-rH5Yd/nM1ZBh(+Ro@m>ElM&tJfM9ju&*#\HBD?GlPFcli3E(tlkR:!i^t118]Ab(\-9YS]#0eUGYRBOMH.+RYTJfuNWP/E5Qnf2g\Z1j%&#]uKQ$h7-U[$94N`'P\AGiuAC4>IoNMMg!:phP8h\4Sa-^]S5m-D3,>99GiH)I*SUH\Cd*F))pS2I%o"DA>u:RijJopP6Ij`Y>#d]c?5jjO7paLJ[MPQ2P[C%mEHa>/^PP$2U4U"-2-^-9?ok3/PesA%LHt2?_qHjO4E0r4OP^P8iA\.^eP2%dW[7loN;e37HH/Hs3.j9-k=UA)'>:)O/Cs>,JIA"5&f3DaVQ!C7l?c&?B3`b$2/RihPikHlPkTj^.;*ra5aD9.1'i,^&a$no>1*gpCK+q4GE+Oa3&F#Wmp9Zr!NXaJqa$U`MPjffPRhO"(j"e$J,OmdhZ>-l>r4$,hYk+1H%V6jZ]?PQ1-=?Nuc=L'5ij(m(l4_`Oh4#RSf4Sl?4d]R*2UoQ?S#C%ikHKfG+1Q/$7F#%PU*f\CMC_T)/CLend*!jcmjuV``\fp.-Q_M:64pqN`VNRGiendstream
endobj
% 'R1273': class PDFStream 
1273 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1622 >>
stream
Gb!SlCN%rc'`D>\s5>0;(2%;#;(p\Y3hT2aTKn*?X+pbGLHpu8R@>J5'\+K/IO$4DQ7Q$0j:lBl+L.b9lJ-I,I8C1XnUo=u56c?gL[uAbAAW^#a<'%h^P(kLkf(T;(T=Q\gn?ea-O<2=1IMn#,$$/qZ$9b'QD0LQ>2U5OO4A]G@cn=G6g^u!=9sPO:LX55$j,_/>H3b(p(mE[$!qI%,'EFC5ec7Tr*RNp!p`s:/iWa*\eE;;&A(6QW-Ime@p]/6[V@L'@JJnP)$[YT![NK@@j,I"='br/o60\/1_Ca+c.*MHcSK"tp>n7O5fX)N3(j3c3TjE+7Rc7c[#R19*^uOoA_>DeFRgLSOFaG/i?X2-DH*QY=YYSF`.#3%]b*FaCaK6t^JpYu*]bO,Z6PJSaD'X\I?g&RR6YE=(K?tH8p$_=FluX21H5?Jco1I5;6+`BuYV/NVF@0^YI9BiR(43\A,@c0o*^j^e6>=\>U?@b*#+_mZMI.3lYYj5cqaqn%ErdkuLl4d]I.\GF%(Yb+36IZEZX=*nS[-7,9ZS+6U@B$uTtDVDgGle"Al+=(]Qlk==+416,M_=##`g%dH!5I97*;,&-L@.=H"`qs!_)ms$Dg10#,]i^[,o@NL=K_rp(o:;IUA/"2.^^GM'C5Jh!n&5)+Z].;RUr,Mn-2O]gPgaV@0mk=OMXSDh'(2_i*0p^DlV**Ui6f@;G+T7'R^5aW%U"]XnM=Jit5jPIaJYq;o^:a]5KQ,2o\lNHf4.)#`UP:q?"du7D[frnI&72_c^PNnWQ,U4HnV(R[atQ!C:grSkC-=$12Pk3J"@t27S!*CU@d,.0i,2!]r&p.g:_r)EbF1rQ=M>.UpXL3,K'tDBlrp@f*$>8gH4PV=Xt]?,lI./>'1ThRQ^!E$jB(E/mHk04e_O3K"qd0uCW?PM*thO8Eeg).''7D>_BD4&8W\eEOE<'*Sf/-km2HQZisS?.=!%5tmmTdeQCj6/hnKBV3](Y`-4k:g'=,dhTPh_3ZZ]jT8/b%-s'iopDQ4B=DMl\&5oA"&X7X[5Lt6O7Gj(S;8G`X@C_-kY^fNMnu$Qd9kQAAQV#iN7L+:!oh.Vldb=JJFch^A*5Or)%MLjmFhDGNR>uAT,[`Bnf6k+1oZh?6N_O&cN3rq":)pV7kaiD*N@f7~>endstream
endobj
% 'R1274': class PDFStream 
1274 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1522 >>
stream
Gb!kuD/\/e&H3^ns5B8>b#$iehJ<_WJ@;H)!):)!`X6P8#KEKSDN^qr<*oS&.*7>m;i9eg.b5%8&k'HtSpTn93urshP[CBa\V^An/RbqMJ1Oe,J=NkHbBNGfH$]&WoE9#J?#T)SXZ;!te/kBq2j^+iJTS&2UaqnfQ4Y/nXN\_"K"VEkF;Z-_,VC=,`@/oA\6\pBBbfMsj^1*Z>$)%X`gP)EnQ=hjGPu55+q*S0Tpt%h79b*YES:eur3rd(rR`mL`="3(pD.s#V5>2*,>hV?1gY)>iKD@+a>K=d[b,)Zf"a-1]0pXZBGoKCS(F7nH6Lbt$Hn?A@fLSYG@,1@uFTO2[k&T<2d#bGJkK>l8p/,mRmE8WMf_de%:-#'`Snj,!X*pd(#Zj6S_AnX3i\_f"eF&Ad$@L<8D!pKE7\<^@sn.U[0skUWN$0r"f*FJThCMID\A&>^&K'(2PAZ2M8>bakmTqCP1;\J+>d?o>cLJFP&^m&^XJ^@r`uNDGBASO'C][-(^h`32j-P\CT5%OJcg9fMSN6Whchh)#o5THNHJZ+Rlt-b,/)k^lS[g_cb/#J2[o46)1>>r"[Y!klZX%pi*81TkT0MdO$Gkt$-?LWLCRVpW!nHlkBgbZMk1Y`);=5]0(t=h,[P'k8I*O,frq/;<>E@^;7(s\9]s+&1kDP4F20BM"Tr&5]V1o`u2S,f!P2+HHq5!(("%R7K)1'\a"g!Q;'g$1;a>$"p`s-iR4(NbSOAeO.)IDR+BmSZ`k<$'$l_\=MBoG.g4:g'MFg!f'*Z+cI''oN]"dZh&IS$>agCbElsCBCh(CIjf)f/mB2'`(4@n48ST'<-GdahAoo2cD-h@re%g/(Vh+i%>^rG.Cd%b/CN%8%`l`VK;Z@l+jUEA#UUIf[U)$/bpel5:@n%B[_uWOfrgYd\6NEVS"%+/LhJ+_(J.7FiRNJj;F3GF?h[P'qBmI%gF\%3+NG4)?h5tk0"mdh0EU2#3gnlR!ET/JVk96=7UMN"S]6s4o0'iKon5MP?MD1%_TQWOTi76$Ae'A@L:PH*ch]qf1CDA:1%shi3e/'(SEo(9:+`tC0MQPu?[[O+D?*m:i<#d08M2hqs?$@mm5feP7Yl/je>7uZ!4u",ThfStfoR8jJVr>(Ua6[P>pHSr5s"i&96N=%fR4>XB5t^Tsbk.AaORW\CBC8\\\mM-aO(r0#ZU_LufD=Pj8F!p2XIWtQ]:]41&lZ4#H5fiMB"\XYVfqfrknTp&(XFL:3'I'B)APendstream
endobj
% 'R1275': class PDFStream 
1275 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1156 >>
stream
Gb!TUhf%4&&BE[jp`E8]*n"bU36oiaS(,i[4g`Yg79ZasLFa:2.3pa;QN$V7:-p'+E0`i6<7D]\m(<.dci,%`fFQuV]b/%m#MNGd8-NW+8;::4c*0"@a#NQSh59L",e*\.=,)NnK<^6/P,8/GUfH$.HfREAnN,[g=@Z[mE"htUh5$WU,9>LVreA/%k,PGk=)m6e00mM`PZD626Lgt(TGa13",Xm8G_4Xb]MO,EUHf6Ei4%rO8]i#9Dp9'`RHSXX[3g"C)1HH`Vk-Ua[FLDBs'EGD4p!ca"!*Mqe)3:Hp4ml29A*ZMTPhHO%GtcU52KOMVI$`t:G='-G'b41::S:OF"qb!&#A.\U8-Q5bDIc]7X>GB4sV[[c5*s80`/?s8P&&u3UjqMU>=:eSLn'6?1.Db@GMkf=>k-7.LiOd*aQA!:6dZZ4:_!8Am*9ia\kmI$Nrr_..C:oKPn"GptK5d$&P_QY@]1EfiH1kJ/-DI^L!??U`d;TimlO.gg61h25N27*1hD[>oNiOQ?][2*$=_1c'32f`/D#ANE$;+YZe<4p((\Y1O?\l+B.YGi*6`4<-'uYMZ[,(C\KAJVMc#=(D6i_r.s@*05n\4Or-Wu9O3*D?TFITVYRuXR4JTUZ+5YBp<2Q[/-ZKIG'S,4HW%=NQZUZ9.Q?bG86Y:0p3'endstream
endobj
% 'R1276': class PDFStream 
1276 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1392 >>
stream
Gb!;eD/\E'&H3_"s'^"Vl;Rr"IWs=Cb2!6WLI>u>Us&#d#6u%)G4BVHE[:\!la;S/?grZN'Tr_71Ys!6cd(l5'*Kfb7cJR%"F*"__%6Xq?p"[)oF2Yp_qk+alKe*Xb%seQDn2'2iN5#:Atql[BB:C799Wt4A'/MRLWN\-XD-SZiR/C>8@l#^BdWX/Fk]o^gF=,/.+^N>Z>'ii;)!V.nEoj_j:nN2eBUfMOiFE[W]41hb*Wk^k>PZ6mFJQQV=a\#'BrYla4R*4#otrF9kpt*<-YL.d5=-lIeN";b]6@/FoYHcX7gA--QICe%e8^%>Io,PJTGs=*hf6Zm;'mG&??=oL=N;+m,@D2gYSP%(5OBL0ONhl>HBq*.EIW07UVVrj>C%`TJ<7OX62%4Y9A6KB$0,L]iqDjm?:tP^D_(A%D".=fh((nTu=!$m*>QP0=JqpgKm.4D3T7^^osOEW\./'\EK)e-j$:r!"MIMH>$@bQGRp#b?8mTOD3qfe(rB^@L&7*p(k>ajqNV;HmoI.deuc/D"kZi(!kQXO?_>fD45sjl1UNC_$;QQXrW5"iDFl[^7rGsLSTDq:.9t*K!^#NfZ%@-/tQrSHdhiYBnI(7M8mc@J),cc"3N:A^)B.]rg^pjECKbqNIL=M`X9;=%6L=B)l4f"FD2=B]RUt7W-Xs4(9=Zg*<>B!/K/b^HbQJkAkQ3O>-[mRBWYoL`;A$fu!.2uLWXKt776K_q?n=j?YlKM93U$J&CRLH;qFSpWgC#Q1u/AnK-H(mlS[IY&+#Cru3Alm?)q'Isq^87'%09cm_C.pTi(l(54.X\]Z-_:iRVPO1E$Z$TGK,!E-RKiq0db2Wg#Nm[nY)0.+AWVJSq<-`85aRa]msaj!TbMbae+BW""P#>(e[9(Z6r>ki">&l:=5CJ9pq>VVaq,fV.Z"A]30?YN*fG@QZ\i1P6b;sd4kQaXN;FY9e&7'hOdZV.V=75U1&(DURD?#3,cR"JS=Hg8K]a0FgfABoQ])Z;i$K"k_<=f"r]fucT:0I/AV3UmLd2(K!de)MST^]+#\1;i5#;kh'U?Wo"l@M_,g.K8/em(,6,k*9RTAL_hlmEK2CYNfMqZ9\9u=tKl,^."?/hcaE1lg+s0>[RF;fQ.\<~>endstream
endobj
% 'R1277': class PDFStream 
1277 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1302 >>
stream
Gb!;dD/[lW&H4k-s5CBA.:*Z:Z.5I^\;f!&*:+*1N5JC+W(^6!V.4+4=LFB.DVhXHU80FC[MRAO\fg"Ki0KtQ1cOj(`n;/*W/FU_FOE:[,\Y84$#.VP6,&8K57VlaP`Xe%X^_hKaje:N7gH.]kQ<>Wa3(0P&hCD/icW?NM0e&=M]ZH-5r=T\6oM\>53_Xr'1>^nS'%+HJ>C?5Um8\/0oZ3fP_$i)uAtLtjCG7TIM5f"[fjIf$5eT:4"D(ro5`XL7%oe+$T1LFS#pUX#%&,\))RQec.@$)^$V%aR-IO^^!Nj"#-f;MZ]0>ri.Gn4N4Mg[=S!lENK/FR/Hs0]k1IHMi>WABALQk?JV/mHRa6cXl%RW[rS@g1_VP":,ZL%`=ZlF0-?Q$gFrYUVV&ln"*kPl-fI3K"T0Ck1'qI2Di_%m5gnSFa$)]3Jou(=Qg*O;!)&c&XoKYTIQ?a=;/Y(d>cBeokN=cW!MM#GedC_.XPuk36j=X!+A2`Zj,GJ?F#*e%M6;YH#)G9b?V,,VYk-a_P8uORSN@o'OK6:DL&PMS/Na__T5GIM>(/7JEZ&LH`n(W60TS\Mm)@rQZdpSNX,0W>%7"j#pcLM8:>c7#H?gM@SN_sO(6g*g[j%TI#7Uf#%]i^QLP>t?cM%=);E-]0.QM=8OlS3,=_#Fj;X(kbUNCCk)';B19_UO0dVOhn3?&H!.d@YiLu[NJN!;&;<<39jsWHdo_uGX5#U\3p&T=]HOo[jR)I-[LK'uT:36^1`//*j;4]5%Ks<7OJl(KIb[VT5dh+JmCt9S;NfUj;_fDl=,n;3O!iE5[5B?n8LmpRWL5;?lP;ME/SH(aXWUVX@qc_IO>k5.k3\?p=>pj?;6)GWqg3enD>H]W~>endstream
endobj
% 'R1278': class PDFStream 
1278 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1690 >>
stream
Gb!;ehf%7-&:P.Os+0B,S=t*orN\:s"-ThT$=lT7pgM(G#=bF>G-[oAF;+DPhiY52fTK^d'K-Yc"[tUI+2?jlG=Q(P_$@#N\4#OmL9@Bj@2mJR#eM;tc#1q`g%j=ao/"%ap&'pofE"J%Yqs7J+2CEY!.ud@(lH@omD.t&WGZnf2g,eQo#@!ln-'_d/H888LntK$M.WBq`nAuQL?M]2MA<$^RL8`JloPC42tbc.aN&.JCiABC4Fr^ZJ:*$PI6b+i7iOiX5g!^.4ds>(!Fh:3+D5a@i6n-Z,op\dFBqhj*\nnEAY6=i[OH&P$Id2BQ+2gp_k&<&7@ZNtA?.O2I,2To9pR)iUmc8(f(H5igE"'q'qRI'f4^b;"fs^0E@\aE.e"hTk>1g3UVa8@>oj%6YP60kH8Fe80!:ZJA7IWgr9KR`rABNnHQ+Wm#>I>]u4KU3ef;WuS0b"9##uXCbBkAQ@Mi\88uA7i+YpbQnRZaN]O.#c"pmpO7,\%*Mt=D`CD=9rco;>I+$DeUs3(RpIJeBepV*tKc[::kgXV.RTj?4S31`WIcnUoJ8%(IilKG;/"HJ\.1>Nj5Hk?0A-hCY:[Q$M+@fre2!8:gq9L6r:^1O@#GUab#^=L8%\dnp4%u#'hHMRMTG(kdCu((&W7omKBX$WNL![+\@-5`h>s6!6h<14cX&^R:cIJ+@.*L*i@L'V\3Ojb=U0.`mm:X#ASS+nVqa&jR_imf-\p,l_`\[n&6^;,bAW1'O-9E>>Za2PGl"X9V5h-0p?DtWt4o?j"6\R&kt0+AToW7OpN@=lm3(.k==aL5V*A.<MN5)j+OdfZ^q@(]uj$\2'1Lrd`>cL3i`;@\PLm>S'R8^7P8Nc_V14`5*?F:%$V?Tg0s^9=0?UDn>DS.XH$!4W6T[G'<(OlPR7nLeHUMbi7L`EV*D91#R5Qs@[7S4Nl*?`+2fZj[VX8hO+X?1027cWPQR`#.]30oi#&qXKD+U[Ka/VI`Do21\aV=c@9gN_.EChuT1>1mE\iqY8>r%J\s-C<%F'p]^+/b?"j+^KM-$67I3Un1[-GC)F'8TgA$J6904-^5_-n\t=$)&]mJfQFZ=,!nVg69#FU"D/rendstream
endobj
% 'R1279': class PDFStream 
1279 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1771 >>
stream
Gau10D/\\t'Z]*4l?>5!Dp"VS)WqEoVFcKM>'J`()j*0qSQ%rbaVkH:1$*SNI`DpI:W]_kRAbW_:AiH,4STm`^qpmbn&#Gs2h:L8!lTh$"N5/g&DY-&E.%%nDOMo2:,URHQ,0/Pn3X.+>g=t2r9Qb@eKs9W<`ZU6rPiI^SXLe/.ilAGU8=G27VR\!VIY\=[U#MG-7W=Te[K8QU[j[QWD]oDC]$1Rm"b8\sKi]N)\CdmOc/G*6_GcYXq.2jmadOMmKfK+C@s/"b"R%^uXc2a_#Y3@)V.gc.%kQ.YD#m1F)gnK7rKp[Z10G)'-%9BCr%D0L2![DIVC^4J3lpOs&A`9>!K!_fum%%*KOT=`B4`IYsI$e7DdIcBBqPShVjbr2uVddLKd4L*D)sL$Wo?Rh]N%"&aZ6>hgr6@,gSkri\KR:h,##J51U-.>@`4$2p1?AgI?r?0I[15hXe24O:s9YVck"M667*2RI;<-PNd2j+:D,"+nm#I5R<*397S%5rX_AO)5l%?e0hPV71;;uHDJk!2).sgF*3**h.f8RL1.W(GckhOc5#V]Q2oa/sVN(eG&RVJ>k]?GLDoOE6K-NdA=&1mmq?7;g\ol`*O=26]=rE0UKbW-;V7])7G71NL(p,gn/f"b:*hbq1\L5)Ou5HA*+2BMeLj&NgcWJX9jcdAX0&j/VB?^kSr5-SSK1aG5!r>eMfOW,qRN8b5->`fc\[G4tLt,nWTE@&X!"_BD&M2oa@O859N2&F4L*KAKU1`mBmq<_+"=r@BDe2rUOBJU]$.sNjYJjX&.alb2Ac)-seN-NAYq(]`?ZP1V'_Hq'=YeOOJT!6Ue(N54DY.[@/,fm?C5P2Dp\8c-'NnrEg)%f7._-AS9"J$%lf)<4jW@`R/\*U0VFWNoNP!EgruBqm])L'E^^)NQ3V]aq;F5*2mpe6:7J+gendstream
endobj
% 'R1280': class PDFStream 
1280 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1630 >>
stream
Gau10?#uc!'Sc'4PQ,T6Dj'L`?AgJk]o1?6B=li6](Sg8p*)6t_Zg2XEnp<=pIN/@*()2,3qag98au"28()`,0Z4K!J&<#:F:KCq#nR@(0bA9]_>FL$c;.783^"X/>sB//'5'X>1i`h3&koO+Wdp)_\YeC2.nG*$WT1d8a6"KI2g]>UeQj/%t$^`GjnU*!+`UCk!lE)M,EBt^VDs?OK`hp#Uj/T:gpJb5tO(BE`sfOV)]L1-NRp&B'Y7Q&11Kr$HDCd"2eGiSitP)I**Z:f*bX2Z,[ajd#+bmMu8\*D_,OkAk;C$'&Zh6G1dhq*ALKC`4#okjn%c"i35(49F6/H6gn-1W]sc+#33Lb@@Zm\ggF+Ra"\F=L5%.tCT.Z:XLDW\Gi&T@/!-c0.b:k(SU$e-9Zd,U>I$(YQhdYLkuCWW+d6r]T:a6H3P0etp%[W7LlE8/*cWNfI]P&^`_U7)h]$aSCCMrGLN'fk5VmW#rYG"Y8Q2e;fTp;QdZ@1+>]A9;BI0c8A.!&u'nM\#bj(=1ObO_G8j"Z3qI9`,5FM-Fn1p;&?4Zu3EGM@lj/3S/iM0$B;=m=F>C)3MQ8*AbjPh[q23#D>i7kreJ*ZW/_nd&D<9XE4#c+2,K!?lH\T!b.@A;-5I_=>4CsjlPOU7Q:KZ[G.MUZFtc?2W<9E46&W-tR$8rhj[A\GpfP,diEk;?:=MPPCher=-gbIBcQNKoM44"]D8Tf>q#G[R@5]Gu.c2:Jj%NRo%dCi+IYqK>kL7FNfec5S5N=kfLX>\SDk4MVa_Q$^o\(2"B0Zn*(P*JU/(m:mCnI-:[%B5M:YW+=#.FWS4"Dm?@>3S&c:F_U@cCHo-SG]\_MZs6Qm@dR[n:^JO!?^OBAkRcQU_K)S/.RaC,Y($EKmK*XOA+@>7It6klCp8>%XP04IH^P&oQ1;IC&kO/YTKBUU0t5JcLT/]+8mLsQgaM!^7j$qi)%JtlYdQ.[I^_.KanO:2L3e5_(NP&qV1:^b>KoYBYj5Is'@!\8g!=fB9hA'[gTp?qfH%5M\3k%aU@8&?7d7ML,ESIQ[7*(mKj%b<=K[qDKsEMC[OO,WM@Iij`MNt%Zm[\!F$hg9[8FK!C-]s&jJGR/Wmm8pDs]Y$Tg*did+f\)C[F,=KN_.jUI#cd6?9/eL"o>H3SkBmj/XM#HeGJX:)5sfQ-*:(hYN"AhT@"mY![&mGCgcC<)sRb$HdOZiZo1Q?\.qIf0V<6m'=`#%^qlkig*Xq3Ue6RGflK([!:I"AWSe'h;&QaMn?Mc9ALr1E7^YWL^ssg^7BfmdkpO^j[jUZqg/lrWUaUD4pN5Y%f6%M%FF)+jBk%u`q0~>endstream
endobj
% 'R1281': class PDFStream 
1281 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1690 >>
stream
Gatn(>u0KM'Sc(=p^]lA6ahU)nQ1mRWW_[oV1fX9Of26*iRj@HMdq+S'3P+sHY.(AEFP,'`W@I+)/%fOcI\S;J:TpQ^A;o$b;#Mo'-JW\Va0U_%HC[f4?bt*IXFQ+Z&[R_8*5WC?srZLa;s6'EWA:.NPS-,^bRLS*7*`uh;T7*5`#2E6iO;-oHoJUVL2'eE;0_!D`G`da7R[8J[6bmant+jUl%CuDke)7ZtV7c^-fsQ0@mP@5`E:?9;r)t6B?CUVedYM%da-&j,cU$)#S+_6of5!J+7K#Es%A5N92tU*fn_Pd]*-qJ"'6^)!9[2Xp5`1]NK\\P^j!YP]Qc$YIIWff&[t"!(Ae"^I^DUQ##8/`%lJ/J!*.,;1Dlq-O:Lh/kI;N'IFM3cdN[K#]`k0i[SmYIA-!:0da8:cI&OhGnQm\N(RAm6/iV\EdmCTd37,k]0Z\O$?j_UNqSDKCWgaJhqaSs,NJQEQ8.cV&;g99gUGs$TMnM'V>ImWgN9cE42pCG,hE6^1XuM^&lH2cCe4:"j`KDO(?fXnocn+%'Q#A0L^JQXLO"NWPHKr0BfP\Cb=q7KNOnma6J_8'##$B#`['m(7KNPbna$9db*2ZS,$fPmh=Ejl@AnN"$DP,269b0697e^H3RcY*02/T*QZL(MaFJH",ChbSX$2+>RJ%GWgDO.Cbha).I.c,D^(@HuMf3WO=cr)[$1E*?,d2=`^p4s`i*]q5?7B*R\Fn6`:6mR=;k)=RgL]PafEBg4IjM_Z_LZeReVM`dg\CTWdIDKoE0NiAFpi^IT[q8Aim=+`j<-+ts=KU+X2!67.Uma`:a9p2Hsg0.nKM"+'[62$-bAh%jaofnD8OKp%]l(s/kF0LVN$_i<=:qXGc&q:Z%aGYj[i`g5O*VGhr-[-W;:a(i*'LcX*9LI.,>)n,QkTa>:tBVX*#^gH&b@Pu4g:sHS[A`s2+_Hn5q,ctLL9(4LuHA<]/le.2idCO0qcAN:Xq(5')G9!_nCM5,o8"g9CXS6.\GcuZLMiE*hmcgJ,TTj."G&P9BOS.UHQHYhd?A3+SbM)a@3t[TrEXF2Br8PT6LFB4+(_p-0(>,$NhbI-4.a)Z<03'6%<"!rKX]d>TQ)h$8<0Lsd:G4.4`_ME%ASJWF%mgjBP+#Oe:rX_%UL&hu(0%:ua>&PFR>]R60bl"<$\!j(fh9.W.T4.H8aV;[1P`(o\,B&/YIiJ?S*_SiH_)#@fS[i]-0E(r0_3-SA&$RfV`Gf+'GDskJLXPf]:i@Nm:qDo[\$57_Gt0B?C%0WXJut/m1-%]\[sV7'(%96Z!Y0o:Hb*)>0U6;3n]-I>-Z'o\@T.a3qU0ACG):;cV;,>^OM6#I_9K`?c$Z(iH4*-6NAh745_0bYuX&0&@".O+9C\KWg.172:9$O(s9^P%+&X@m2E^tDB#2A>_6^g9#;9;c3E:s)M+&:2a?d`Qop]lV?^ahU@WN.B"^!$UlVFd*6D;"3Z9",QNn%f;B&/Hc&VQKF`2RJ'T5k2_P,X4Gs@,Z?I3`L;gtJ9+"a77K^/\S&1c!4!=["=rr[endstream
endobj
% 'R1282': class PDFStream 
1282 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1842 >>
stream
Gau10CN%rc'Sa@-aF?2,iXUfTh0^)p!P,ALd]BJQAABrCZpe,4ABC\3\DFFH3M[X![Zo-=L(q'G;prkP>^1L(5mRE@of8TFSGR8OD1Q8N++iU_?1;dkb!/#`G'IC0A%ccl40Sr*oQj9e)KZ4/V&Fk#YK#LsDPMs[o8bNe-(VNri:S[+Q&V.J\\8rFV;qAK3e_cZ/^;clHX3!+r7Ak]Fc@'^.2<+$:c$*`*A1XS+Fm^hk>nI#`aH!\>W'5.,Gn0q/0Td7Zr9(VW^R"DA>D5/08m'pP7>I*0Z'nZ^`*X_\)/crq#Wq:p4*hp8/OPe-g'.'er;_jD"[YEFt6[mPi,,e)3!F9?Df7<)4U,:_:d9t`rP(XEI5)JA%qk93%.@k2=2"ucM0@/A"I0j_i^TgIYsJOe7Eoic'(C;caf.-Nn*KPFq>$FQLV:9A@K!21PMp3rLT8@g))WBI'"B-J'?Vdrtis]D<5BP3L@pb$LX#$)li,OL6O.@p!\)a`H?(F;ItOG(39[\h+.#*P@Ml:SgjQbOj8IE&'!dGlDE]'a>Qjgg3[YHYI"=Ajll#aBab:qV=l:G%bf(2LVL6@QMG[M_mKGKl^QmUQ/Ei_d?<5dM9)uaTaSbBjA#F3_!A^/f7k$f1,s82ELofm#oloakSjBFK2NAmH]g)Vp4\f:&S\V>k+D!X/#N3NWE*jOai@u#GsQ7>td(QcZO8YsZk&BtE)#GtYUEZ;K9"PN)]$.cRX9aQ8GY4n[seU7("BJo8D`$1PW(_uM[;>3i_?Bb"PWdnWn%[5nc"L;-GeE*^-/,GP.VTcb[3sY@Y2=Vr_<\l>@J=suWG7VjoF>1^m\6'aXojZqH*-^Q(deL5'DQ5TM_V&Z*YAC7G-<\/"%M/O@"]\G.~>endstream
endobj
% 'R1283': class PDFStream 
1283 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1694 >>
stream
Gau10?#S^^'Sc',oflQ";eFQsEP?tRC8JeSRdRPRc4[+'d>OI3O=VR#32TCDfC,t=8h%m'i2il-&gr/"p`/&W#tA3F@J(Zn&/p;er!F\8TQ#dmGNPUg#$lu(8)KAgn@G_DS-9"-J5NN5T&DshJ2:1-34Wc+VrF<6\F;@\W6=#4Kft*o]Pprcp^D;fJja]OVi4RH&V^6M,BqtBo..DKUg.rOTXdl(_dAXoDsFN,;1P,M3W>G-E?Dp-<>6S2h,Z@uMNF.2;5>+QIR@O1d50l.NC\egGVmh5"WSrs-SnMTjNLH'kHtB\@O`dEKqI\<_bV^:_FKjaKBQb$QJQ/?AQ2p>>hkH1>m-/k:\1!JSo/%!R)0dl4\,oH;GfTnWB?^5BU,AjUo-`[j-'X-E8jY,,+BVR9N#.Jg`$-sjgLJYY1@HB#J@-UY"mLm7#o'[obYJ4Le\9/NQ#!5';6MJ9oT>aY)(qR/Kir?4W]@s,,RqV=sSDTiViN$0Tpe)_(R8?(CeDCJn)1arc(9Z,4!%'7@.7.V1uq>JY$_CbLu!SO06u06UL4Vg3G)5?[7cqg_u=0\+Ud[_HK_K,Gl!@640fRL"o=U*4ggZpnA8I-t-hc*7/3YA-nG'O%;i<:=0C3?2sNkd87#bm5ia?GpBgG7qDd"2,La!(oM0:/&5J@@\SnC5+=[dZ*kC6YiV-BFodRPpKF.=WSkkY9ErZ$+HsL*KTjlPfn8KWaDVs-G/'Y9];1/12=nal!+%HK$\!cWY53cP*8cAo<).E+q\?`&P7%96eO(UN@CB=GC=)mn+p!!^('/-UE/Yda!.)H0B%kt1lQ0)bEq"IZ68=Tmb-jMX@@?eQ&P*nVDTEUkJ*/^0<3:<7TW-8XD3LeT6KLH\QbME`4U6lHk>N;uQh8o@NiMgl.]mFLT`-;R^d9nf@/Zr5u47@&eS=N'Ms!_8OUdW.*g_SWWgHp1E,l20qPGHB0(A^Fs$XN(l7Y\8.Wm@I:KMX@gZNP,b)jA`O$7N@dj0VPdIp^44MF>lGk(,,;"!F+EY\l:,BD6uRL[pm&edWi&VOl-DTD`s1%+8n:(M+5JsCI/C9&^$,7T5D?Xn.f~>endstream
endobj
% 'R1284': class PDFStream 
1284 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1589 >>
stream
Gatn'>B?Pt'Z])ePOEI&?fLGu%cV*U[l@[&gLf2^j-`"dI?6`Qg0c$i?LRU:QIN1E'6X?CmZdS\O.0FGOT$aIeIf2L8qtZ5P3"i(r=98%FNfMMim18Q>1!So<\92Q?n;AncT=?2MY(%28ToihH+GQttJ_*huH;OQf(d&6kI,bWjS4'Shfa8KO+n&k5"U:Y!>u1E6d"(0<CEq:gTECR]C*1/]!\RVm;&l98bN,=s"aOSc.',gcZq3iKA?,q,J+Jg6^:_#mj@L4ZT!KRhk%-,Y!:)p2[dHVQnb'8U#-(]8VHL70X#r$)o%]*`I9B6:lMUsPUT&&p\p[Fmat[Ni&*B\2qo=j$c_.ft\bWucmDGS"?4V5BF'W(W!7%6]@GZtn(gJJV(8&s-#bhR6,.G'gE#/-+^HJ6Ii>(r2F,NIi(Y?;p+cU"H'P01--TSGQk5aU>5WMZ4l9^"64XCT+;QTG48`q^d*j?V0J=\#9<0ZGT'Y\Kg`;p.(3]&4[Z8:^".X#KJ=&Ug_g%](AnBpKh2rKX13M*O_':*;aK.-51HmmoD&H6^HE+Hu]Q,=0)n9lp\jbnIZGJYkVjQL]sL3@g+W^+^Q)lE9%*KX:,;8^qPNi"1X9FlEGA8sr&l)L<=D4K!Mji447L%Lmn9=RgQ0/#XHLp6`5&UF%\?#[CMIdr%(C9mo@e%Ki^iMKpH4*QsP?5KT_eI?n)Y!n@<1*Ihrp6*YU;5XrhJpNN9TTmsOl76;5L;N8AGaOi_:GGPplTDQq"n6+I;dLRDgeLX*Nh94FKb#^$-df7^:N!c9k3F99I+lmagdRe%TF5\4oY:utip&cX@c8Z2@B@h@le"8tChSt;b61:&5\24h7-]_j$^q96?RKqC0Wo9$\`t0aX44J:o,)OOm6?fI//WBO1s`+DSoJ#qP"4ZDgFUJ#U87Wk;i,?rm`]4=D5KG2(Fk\3hQ;sInn=QV"DaJM19PBS3.1,rRq5jM9SAQTbLUD"(;+qAX5nM7O_k?CounamdA*)W0WE\Lj#Z="-ikXU'B*pH*MRn>8IC1@8tNl2gY`$UG:a*e(UgGQ-DmU'<`9U%G3in=i]UNGs/+-_]32+$'-CanPZa&0nSSuP4X%l1:S%M3LcfR[.?51+q8c@4F=&H,F5>a/3pN_:>gAp6QK6,%>i;U54Y7s&&/iQ0(r/l<+[YZ03aQBfV;>T#QAV$]t\Ca1-![Vc?FK2,MFUjAr^,<3%VpbII+>K`5G+N)O4S@qGCcB8ie;e&<^cRl)>mPWh)7\,~>endstream
endobj
% 'R1285': class PDFStream 
1285 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1785 >>
stream
Gau10rGSGh(rq+jWW0m->B<`4@NZqaVFc3lc[oXAoMo\J=&%^JCo8hAeV\G*I[^3oRZ(5#>X.oRpuN;U"(N#B8eXs!1[;Q_5UsYR20,S:[W89g[&iImD'\0=HQo5`D_)lc97/U_KO-oR;NfT5qLSN2L;\.MX(R#,iMN%k&^uk9[$_hq&QXgKgdA17!:sKR_$kL`1@OE?$_PC!*^)Y3^U-3UhuR5RQ3kpsj!hUeI:$\0*ASiLDS))EuVE$?HD;Ur]ET`PCO)PG[W*(PcGsN91*]Ia`S`FBOen=4R[`Z4"tAis#$`c8suD)LY'kpD6d38eP['G)9!.[KsNrV=Mu,j+>Bg[5pn6%6.RJi(4`j1NL&ni.q80HSFP"AJ=mEKAeLTmM6')+Fa2tI8_@&FP?WS@eSmXt&>.sI>j.'eU'D'[ah?i,9qUIMH9KmokOm%V3uYN?*,!PXXjV1iEli+s,mTtM[2O2na;*5nEch]Tpp(!Hj8PV,b0lF)DXb(A\%Y2nq]:fMs[9ta2!:on()S*ZF^A*rXU"n%\cF3j.aO=.-b8`;g^cZZf'2+t$_UfQDP)\lYO#7/hm+&J&rn+["[F1&7B(B,H5"r!VqodO75LjW(H06-f?e#u&ep(qAk(l=ThD.UYdG3BjesW;V(hBN44''mUUohd=jf&"WdQi+Vj`#eV)S@_=4;rhO1;$?W@$B"8^&)&BEA1`-D>uL4O29P(3/66N=ho3]<3/r,p=?C]A_*&Cl2trM7HS;\MH886[5?Bt3c$qY[Xg=GriLhHRF-,9a]poS>)mS6E`,[r3CPH`EXQD-M<-9mj0LiAJAU*J%RJG+g^'?ZC?jLJ/6M`mlhdJ;WY.!rSF=@t/9_ohg;R!!=[6U5Fd\E<*MSX@i\kPMJ(nHj3qnFW-jVRslI`>apGWjBNe'):#=4l&K]Hm0\#UHjbu*Z4&"!093.ba`X&PGDT??f_MbpOR'uN?3Y"lc20gW!&+NNX,WHNNNW^+^Q)lE9%$HP?_W9L=ZbPRQA6`+R@mc2YJ=@T?;VO)`O/6$N"mi>'I3Bi"([JfZ*JWgp(XuMVHhq!$-pGU('-RuI5X/`c0h!o4$:FX`/8!WdldBacB[s"=ZS&25ip5?77oT_BM,(UWmJ)ljCiKTXu_8_SpF^QeYG/[)[3^GGdoRo1_.L/<=1DYS++L^m(c."VF_cWjr$/Tn/nq6C01~>endstream
endobj
% 'R1286': class PDFStream 
1286 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1740 >>
stream
Gau10D/\\t'Z]*4l?BK#RrYEm`d%W_Bi:Y,f%p&&>9e:=3iOG\,\r3W*E-kMl$)KU$\@Bi?m[@rM%fp\3tFNq?t@(]X7pRfcnI`Jf,.p8"VZRFY)@m9F;5c;I5sL.bH[Yro`t0jUL):2idj=E/(FX0\/GI9igsXAn26T4gYK`+?%fJqZ)(cSME6?<'dK#"N]s2q*uNugLNLh'3j&qt5:?uUX1q+M5&O;.HX.0B5($L7iZi9iPm!ajD+^Wm%I*eHJs`9/WD#(SLm'M^!Y.flBT])>,'coimqR`&>uPQL'##=eRq%ps)hO5%BCd\N*k_#X<6:7s'Z$;Y1?BdBFjXXD']"B2kRj\.+SR"'P"dg!=KT<@Ms_1A+=6-0MO6iekT46&Tn3Us)#>r_p!\[pE55QK64s-JjHH5?>b>f4pA;S/lbTZe5:2MK)\Ck';Tq.ld7e4'lEphK0$!k3M9o(56V:Ui,;,5K:%(I26YSTTn+@.mnX`,\R'$JMnr0Fe[l#T-7^t(D#-lUhB)qgPs"NdLOSsR^)@Y?QYGAS\ZE`Y;HRp>s?uQsAIul(H(P`9,YMU65H[B2#Xr/cDQ(*K5f<\.2Ou-_Xa>e"`KQ5(88kGnZ`bQ"n?%a"l%4^IUF">Qhe6-'DDJNgk';=<.*g=efOko4q@/k)Ad1N"_GT]DA1[K2@saB>40]JrtjM,9TKPY36bSX3C/1N"^L.*WhI&V$+T1Q5;b2=<%[JK2a3:p/VN1pWFn"`cM-;4WU/8$=!8]E40ASiC\+ZYt=+fFC480L6s0lCg_O5,@3Ua2X3dl-`OS;,-2T`pZ:d'LM#/c?A9)lq/>R*F*Y6s`\BW;Nfi:=>.8:.(/Vl9]Xu`m'CHp&QU(IH,5,=ukO/QqPKu?T@r&rCeBkdO)I7o!kP(ca\m9c*gV(Y&ZlYY_/h"+bk>i#`!4$dRY85&/e[ulZskYG;,*X*Y9(-;]%R8.GBf;BCTlGpjeFjhp(r,^rWIF^i,`r)nHL5lF$+g^bgZDI%Bk^[,7>\A+=3C0]8,+4^e;`\/DLEjVIdfs:;b?kk.2,8kkb1eF"Vs:n?4lisih,+c"qsX<\m98=slOFi0>BS28;tG$s<<(SKjn7MRZY[n^*TS.s7Z03sfqgbsdWO0s1"ORJfO*r)9ZD>.%^G&1,W/^C5`:2&`fklqh2l`H>dJ"$1"@ignA]A1:,.,>TEH+XKl.T7CqS6'37P,5jn<endstream
endobj
% 'R1287': class PDFStream 
1287 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1495 >>
stream
Gb!;dCN%rc'`B'qs5B]f&7qd\;(l-@=!13UX?[#4XjOPDpOSH?9:Ht4746d'+%9>hgGe(+`L:S>cUKp[E?GH?+4UJp+E%2t_RA7kgFc;ri9h^Jb:)S*Lo?/"5.WbqBm4pq$4tM]G']r*iU;kSfC&:N?g*YkX-#gUh?5!`rsFBO:Tb`rAd2p7h''&.6UO\d6RV72ppcaR#YRO![,J?K3D86j+uiq$Iu=OMi$).\^r'?#Ig4Y4/5B-CF:D8OS)_HClf`KZTg1uDnRH#^H-ltgsM#hl_oWPk8,,5Fnd'/Yk'r%F!Q=-qVN5m=6[[sLGE*8gr&Gdsm&O6"TUHV_N7jbf0a\W3Q4RgmMM*-D=F&p%/_+%r+cdj5JOnN&`Yie4CdJjU0h.8GPLj)lX$!mW9hobH)fWgl4b:besq?^BW>AX+[`Fa%'9n.;oScG\l\`MkWEem+R-HR5uH3"-I_-<\%p8MXp0:Xs_ZK5+0\0+-SrS4b(dJ@nlKJ)#YT%&pVqcX2SoCDZ?J-59,^q'S]3&f(^YK!bu7``8`_7W>-YJS%#3AtLe_ZQ*3/+3'e;s*+R_iNZlF/P4-&2+h!?4SLPT0Is7,(Ek"g8*4(Aa6meEB24==1+:Ib\hd:\spgO^*Zi]L.D@)m2V1j!2=reRpjGLO^HXPbt0!1Z?%#,:=uRc4cXDuh3rM7?AUFO#H^)3sD<)5AoNB;h[gLMn6YE[2:O@6&)ip8VP8:gTc'9#B]c;j^TufV#/YXP^Y*gQbCTWNP[VV,^eg1jBL2V)9HnkBqGZm9tL=b3L\caP4X6ZdN74SnY-5S.2]7a)/WI;mHF%IVT\7M@ulqg-I4=bC8pj&\]E=p%?JhQ)3Ct;)88eInskGSL=sA;f.W>\M.dsBj:?o=b/\Y/abs8'mp0!,iJfVWf&2a8G[*IWFUoNh_;uXG@X7ON7%(J_T>endstream
endobj
% 'R1288': class PDFStream 
1288 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1544 >>
stream
Gb!EU;cPU0k-*>jfZ,es6smmnK$9tZVdF@(Mi"cVm^+<;4J5j$.@`<3b[>[Mom^-XncCGM@2\rC)Y2+GZYfV53!&<6EB\i$c)RY`]%#\A2jU>lP&/aZZ(DmkDZDo?"0r!!pdM9!X(naK%NGQ^/)%-S&.ps0K@RZ+'(iWgps:\e'B9RLUe-K]uYL+\31$8V^VZEV9BgH3!'>g-Lsf-d\T[r=iO5]EMIa#(DKH4k7+YG[7n%]]T5_'PVUd#\*<%9nl!C^`![;s&rj@Rcj&KkCH>_qPGN9=nuc)>jLkW[$PCt;j`dSV?q"Qq1M%S)l*Nf:jS)]OC1SG,rCosV/V/0/sbm^d87D('>BO_I67s!?Jf?$7UijKs&.)qh*&f4rp[U=$70!r($%^YXI>3ib+"$0Fc[M6L2I$SbT"^`gWAML":>#BYlreRM<(UtH59Q>O$#%n8QBbbH_[M'1`J8:.rdm'dIs/*88Gkb-9P8'O&,rptlFP-_`)[7cHCXo11uSTdLMV\&\^-)M;8QA%ljBsL=Iq6TM/4>e[Wb%.A\6bV'C0&53P+j'n=0)S"=$b=AX>(&oY7P;I-L?W>5a)'OHkZ8:6b/'U]7"6M"^Pb8tXAG%1rf_^U;IilP_h97\!;Kj0-1cioF+`&VZCRW^ZEXB%$cYePjceTdd)7IcCY:;]7]RZ6jc%V2H<(!GdAaX&q>`m[ps:j"N5U]uL\sDA/M1YiM/koPFZ?p2q@J,9Ujg\?knX);r>h4DhURKC1>9S8:pDp@&,D(@G]sCoD`DWJH#g8/1L*0$_@r7O/oE3:1>4W&E1@67=rR94ePsfZ=,:U>"r4>rV3'nAT.-,WH7I8UB6gX^F/Vr>qZ!:'K@EL'NCB>EU;&(^ZR$G7S"l^sl"o'MVGYRma=pu))M:lL1-rdI=00:^Xf!qk'AYA*e]KU&\]/5^#L;)<.P]CDUR(qo&nBUc6$X7]@Gq"I?Pp/u>l~>endstream
endobj
% 'R1289': class PDFStream 
1289 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1386 >>
stream
Gb!;e?#QK-'Rc%,s)=6iOD9am#-b)\Q.#&'[H+^ZeuC4%pL+,59Zr2-`_"]fhjM=!?m(D&=t+H%,BMh8Hg\qb[LjASJ`O-R"8oBVnI,FR@CZSQknYfdn8W`!nb)GSm;6]1G?iTc0UZ;h\W4k:PQq'Fd`/Y:)ke]FJ7U9M\)92g!#ae9L4!M4B_.So'RlcbY[KJpr0&)Y]oi"?/2n8$nf0?4(^abYROu::W.($3XkK;=L/9cA9UE=qi:tOP<_2VIetoA\"qaNB1Tl%(X7OkPH?6?g@H$pj@X4m&8G(a=I[dcNgLKaC4's4.kC,l[)JaMFkhOi,XV_E_g@7>]7H(P4L\q"+cub!O*:>'\OiFKT@qj:9"69p_Mn>lRhcI#Q$q'kg6iEknFqTQKGHa1B4J;erO"aiDE?8iRWR?LViH1>*=l\`^U+icM]VJ0lJgs]45cLA&I+G[2Ae%D;ej'o[>JfeG_R7\5s<.CbQbORf]hLQG#+`KP-1?5>%Qh")hto&RlWU#kpTl`3)+BZ:B#]=pFjE-2B0gZ#U%g[rAAXo`^-!Y'i_f&Jh7#R->e^!k2W2Yg`E!?^7H]I[Y`qR_#n/Q)7@5h`A.6,a#,?AIbZpe)V$^Y=o],Etn<9H-fN$:D?>uOM(?jOP[IhgQBn?e!=O?Wa?!TF%/1<&Sf'ugj.k:mf&-[c4%r[41,#H\22%?"2[.SV>88mN[p@.G4o8^CTg,'Wh#qNc']T%(,7<6qF@L_7Wr8R=mnt!)/it17cpq?Gb$<2fBcjfQ#+ftKm8^a&CW`X5B[SBo:K[1n,`JY,K5(?.bBNVIF^UPJZn"SCXpA)Hg4o,E+?la7%XCf>O9&;pg'"#,ff,%V#2`8_0u3`=!i[jGn59C:4n)n/U;ojMgka=Wt8)~>endstream
endobj
% 'R1290': class PDFStream 
1290 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1599 >>
stream
Gb!;e?#QK-'Rc%,s)>A!nQ(Lkn7>P+Q*SY<)g/K$)bZIMoO//<1CZ&+0TM@rq@3T;(pFm]]of$W!SNg-1Zs4WHO0a@rZLmcNr_Ff-0#nL_[):%=aP0,m[tlAp-6[mh\7%>GSE7S-12AcjUOdos^Wj^IR'_1H0(O8rm_`A"&aI\n0bb@'ZP&+p's?US_ekAaIK[9g%\Sf@DJRLl^iqtE/_D;%J:ZYcl\\ZlGYeKG`@)>Lsq]c-pal(,hc3uCJj:0:hiH!K'ddn3lnKF3S]qB+,W01+c<#M?PX[mr2VS&ock+D!9Yhet]rJhpbg0MU^!EY^2S9DWr>EehQ9cg&.(o\taKiX>U]S(k)]m$HJWBNG4uHSLT6"NR;R`KdfD`;Y2R:Vtd:^LYT4k-m!MfaftC;g81X)K*ml#q!mI@]JdJ3dC[!?,EA(c@@2r8M"EnD*6;;[4B1`0fSZn-o\,>U9s!Bf"mJt(GD[KJhLtYaQ<$ei7Jn24=^3=a^940c/iH4jb,/aFVqLJ&GF:VpL0;GqGT%/*;@E_XL(tFH9gFA"L4MILVZ,9*!L;hG#Yq9jTj)m1Rb5'&4/tc1F;W^?pD?-n5m%]c)8=7fG6'W*Vb9coOpFcAY-SRtl1?!L7VFT>h+%+oi$TEr@o/QX)>--dUc7;MA>NZartN1?!HS<%MO9LYX6VGK3UZ&!';>"o*/2>u@_4:M3N1abL,nb@Bgggo1_Mu"G73c$(*5[o((m'MJha^rKf4]((f4n7"C=^'n6D4c,%),u8KV"RV@%bjZ=O`c<779gUW]@mFgnXs*4"Z!OmpSY/KFa01+L\V);Ou3=CHDs%VKLsC%@AA$,0)\/4aq[3+r._\)joM>OtCPo@jE!kaS)LOdQp3<3hJeKK.6/QNROE+m2+'J.l$,$"sYH&]E93?ctln;GVo\asZ7A1[coBCBEbkpI36Si&YOIph[5R8;u!oeR[:na"e1e8#^/07<_Z$P5-]Eeub%"\M[*'R4=Jiq*iRZNb$3l`^k9cE<;OuS&nuXS3Y)prH$%[S^#59_@+"G7Xgof<5_MEKkmVk_K_"a4`r8s.[)@H'U/sGp6g!7#W%IGjN"R"?4f1nVd\0N4K/0/:=7sNF]t;Rqg6,AF>uGZ+.t]51B~>endstream
endobj
% 'R1291': class PDFStream 
1291 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1174 >>
stream
Gb"/g?#SFN'Sc',ofjGhL3./tS.A/fD,T+'m@oe&2;0\6?+@_4X%T:h!sGdU2Gqg.KVb[kN+[9d.;CrQ"-2D/3)C(@M5K$X/D7D,hQ.4lLt=d1&BJON'6+""'+UO!01f(Z%=uP&nfa$LGn/dd#iE95/K(N\1roDerAL*3b]%Rt6%."/D`(IqZW.)0;Ng]ur-ht2<:Li`#%q_r2!_cD$XIe?oB2?Sprb')i,mdd\M*In-TQuM6F4!N83_NWLG@-s32.72(_[`6Gq9gt&L%5(4q[IU=eYMN:$HQ]jpR6:(N/j`cF_!I@B\YfT,?r/cLS;U,"FJ[%d:3tW%@Q3=*9a>BbW,(oZWFiegf.LFBkX)[6/Aa\D!,!mH)"KCuk6oj*&9WN]?8iO3rO>6jhlVQ"HpO2)7/Z?S;*!A:nu-B@a;,;-4]MP)1(75+HQY^$T!8i4;3g(T^X(BO1M`/H,,#A*<%;&?Y`/7dgJ\)l+5F$T48C::&sf\;S`g;Z''`]eO[3Hf=1M3khF8fIHMSZ[H;VpBm-okYVOd/:%_;>uO\:kL]4hXnh(K-''9GE_U1!g:;&hb5ig,"g%uQG63]t<;2>Epe5Wj@Uq_ZXsq:!WeB#rkoo,_eOXOobd($/-%BXKE=-0dM018@g%rp\3$sg$!Kj:P*5j=:A%4`bs5N_jiZ@1n4=ubiGU]adIV-"Crh6%0+>uXm'76-o*TLaKiEm.+'7\4rTUIRAUb+`">1n1"Q@[]\Q%c2icL`.)V+S(bXjZ-8kR4=:G)gt7a%(4C3RB8J82CH@$@;ruYe1f(Ue=^WMo4Sbb,TJh.jk&C%gSC&^)6dtT,OQDpO:uueuK<J'ngg't82p=i)n4QKL;KKA%eRb_tMA2'%-.%\endstream
endobj
% 'R1292': class PDFStream 
1292 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1512 >>
stream
Gatn(hf%7-&BEZ1jF8Q*P3GA!:RhKMf4puYdX6&YohU!"I"ZuL4LG&1R3MNH#"X"KbMLM`5aQ5Q[98[Fod9e_NoMQ"W3MpdBEX77VrGUs+s0(NXlr>*!_Q@c8/[D9#%,e>)i8PkHF.@f?'R6].dXOWRl=:3SCmfB#e;-M;I:/#C\J\J-I-nV1i-nu'2NXULt,\Bkekr(4)mlb[tHe9%HX0j1;W_En<.Z,eCq5HQ\POjl]6"#SOG5D;jH.-+"eckc&'(]jcSr@>lR3If.i3nG>auV64Vj'S!a$,Qe8rab'H3^V8FG!Vab)a&gjhI>(EJCZgheL=-H@nL"AgjueV7W5\P*Ub7>):D"Yc;dmf%+t9U<48s8t!bfLl8@TE.XK1FLS`"dY7[kP[pA./[KYcMIiX2<+>SkLb?_$Q'+Lh[iif>6A4i0\\pAuS)RQ9f*)A*X!dkB2W:9*4OeE;=hSgM^YC.Ue<5iY-d,[TXdi8FNqbcg-0S*`gBT&=b^]uTM/iRbW,gb*%+PfX"OT#C-TGBAM9n-J.RL^/)ka\Y?#mAnB/-`RMEBGbjYC;Gpg1WoOR'EOB1f$M083LPTQ^GWb$+iLXY^]]^[VWSb90krOr:gdEEPjf#4(5%QgoZ&QANRF9Kl(SWaP8s)4s\Lr%Vj45B&m!pq9.+6=8G$s)Z4Gnk7A`,!`8Im7N=d7@/[EYSjae#j[IQM^GY'_$HDe@jLZVr:gXtF0V2dP0b-%G)KmC?rPf)s0artCBsk(p1FPKEp<_=,mjX`2kQDS,(QJ%n;F1;fsN:tG0\g;5PCmhEKDpdL0!C=7Ap87qg-?bV0X]/S<1I4LHU%]l0&X*A\nF:IPo2/7Tp40;cI8-Hc#JW%ILA-hOIZJ\HPZ4qe]qA-&gkbaK[aklBUagd%Q`T_EEt1cjid'jd?BVoT'a/S4&A]k.5:8MOj;a*X`<:160B7jDendstream
endobj
% 'R1293': class PDFStream 
1293 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1517 >>
stream
Gatn(hf%7-&BEZ1jF9/]-19,>U41c6[K/s#UBAr=>D;HQf`Pa32HNIl,s$&BfCqhXYoQIDAI;1CJg.-3T,4nI14;s.RG9'^5>R[@Oje&*W-?9JjC\Z$7LS'&kc>ndQXA2.L!NP"REJ-s0(f^XlE2R6:k&@/iY2i[_VVC%DJ+H:'\flZ26AXjXQIhue4&XVG\>!Q,N-J!$r:;P#[3FQ#4G%Ga62Oc'Ec*uQY3"j:"c\C/8llWQ=NTU++:n3JS5!uQuC!'&qOg4SL@Id9>a!`#_?h(q.&a'6)jXr^Gk-:Cgd7`3e>Z%Pb)K!V,CJ9QNdU+SWG;&^cI*=),8J2H@b0^a8S#_RV#M,`od`/?r=jC-""`n>)i$,6uObR.*o9.ugT$UaLJSlbm;rU9t\\d6hP!atj0MCXMQge)V[nL8@/<:T=m$Ji8h$secD8cmKR(@V'g"Z;aAFX&JG!$C`p,`Hb0:+,91d8]!cM70;H,$6011d<8UEXQXj5?bJf`Nt/a%Dpgr1]f?d%f12/L*g;^HPX0?1iq3D[or6R^B*.qa".`XB="tX6I*+SM0.7a>n73263Q\CphkX%Gm!0E8-j(rC5>j:<9d9W=F0mXM"_2]>a$"3Y>+pSbj)pSCfNArS0hOJk?ZL=LRBmkK=o-oUha'DFQu#,T?5/]Y~>endstream
endobj
% 'R1294': class PDFStream 
1294 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1342 >>
stream
Gatn(?#SIU'Sc&Yj?K0H\ARTgqUY(tU-T$[_mTp.9lCl*ZFEN$-df3R?b\tNC!oGM.?d;s-k]7gI!Bm"(]kb-&Uc67J=@O-\KsLga=ACl3e[D@hWC.@s'B#nA(rDeZY(d%/.>u22DSbrh7rcE,FSk[DqmY"g0hAD/ju7^#[.H=>f-.>+S/5b%te>DUYfr@(2,gVPq@7'/r@&X]/!C)$NV5]oZ4!jbs8eQI3B*>^&VrNohXc2mqQI;iCBaF]D]F$s-,.L:t0AqS(Dhe3uTt4"1Z#2dc3hZ.]-Adjr_'p8o1A7$E=r2,s,O]`a8HHc,s^&$e^gr^J`n$_X)\abeI!mBQlLW9;jL0AmRKlZ#;P%.L/J=Utu19S6*_JP3"o[:2un3HS&U0D"g].V#rndD[,(6^p,+MgDt*N%'n2=2VW^S7!*r@s%?hI\Ecs.E2fEjQ/AX4oR7=(K8H%BV:70>h;5S:^2b"N/ZPIFNk6ut]ZgOY:'h5OoPUX#V<>Z"Z=n=Q5[P.h8M4(&U>qc\)]m`MR.u/g"J$cHac9B=NbD$?3S)7pAPma@5hJE[dUt0\+/LgcIAX\hr$G1kS.O3]B19$[)ct6pL/%2T"P_p"LlP-M@"r9VX"b^KboLq%[PgZ=HBi#p,#as*JXXf3^d1T0p#qXsppV.ZtS>o%-@N14YA2WdEpe>3S.%4G`"t46?dm@MI2L`X[-a>92p9%YiT354u-[j^s!8sd+R=@j?cFgoa=QfVNl%-=Up.+Pc4Z5;6=_+)h+3iXGYg>G_J#C9`E.9K0jBLg>apj`/K++,E96I+_fsNm&d)R>9WID7f//r2Kdbtl*$:'jqAk*l/k:3Reh-k,Jb'=AGjX9Mq7'G4KMY2_N8S26Y4RdpZ:S,qh#_?E\1K9N@f*WTi,qg-B6e0NmDW/nk`'*4#Rc@8[.BqI99P@NSs.H3hE(_D@@c7e3_,8YFoONMe%tdT0u:Z:I-?iJEJ`&OXrmYk54;a2H:!N4HIh22'O-=u1VGBgaMn[HmF_JZ18b(Ub@ZHs+!!p%>)2V,`#@KleoWgbECplMiUYtmkg/Jp~>endstream
endobj
% 'R1295': class PDFStream 
1295 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1427 >>
stream
Gb!0'(IB1m>bJ*-F0?)P]sm7H%7F\D'uFoW.Se5qW-jQ#SRP3Sq27i6FMeprZ?ji-map2S_oG:jk9@hk[/8MC7Wei0U1ZWOk:=3+lQLT7=,Z^kXaeHbN;IrlbMe(rV+t[pLfi"b4R+\61,$pS_2ME_m?_Y^bHn)F#M]m8QB^B#o^^5k:9Z=ZqRk><(X=;OHC[/]40#oar_85`L*jWkBZV".V(**JDL%g2[=82CE-_%e;h=*Q&_G/YI^]!]`7TTfn\%E3K*\Bnt'W[PBV2c.)EG&pFU;Fkt162q.#S!h_Vc%;)Um[XJ?X>r/K$eVW$D2>A=WeO;qCe_a;2jL"c[;'-2=nPlV-(-0u^3)YqHGm6ZcDcpMYT!9AB^7M5hE;$dRVCNR3FuQ>'3=2pPe?)t0Nrg%X!6oQdWL8mW2UlLj\BDM^Qcl\F1aLAe$(O`IQp2jfU@<0$#)klIE*:J;g00l<6]HHPcKP8XDENFu3mG)3"TYq]KBL9d!:b=R:lDV$_[qfV5?EE=9_P-Mip4c=n9Y)ECs_>FDf.aYSLM8pl^LQDYmV>>mTk((b0?uP'UYrO3m&aiAcho-rW*`JW^?tB"0:\$PKJpJp0s=X)U449!&rq0n:U1l#"SFj!15?1DBSt$\i+mf1009b+YTjQT)0/*Jm#bp#gH'-WFo6[V,_P9mfMT?Q?Q=/^F&_XBfT%AIqXdmCfu;(pgOF\Nendstream
endobj
% 'R1296': class PDFStream 
1296 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1332 >>
stream
Gau1/hfIL2&BEZaPQ,(K6>m3"re5c=,h#F/d[OS/Bp4st(b@pRgS1u%:B10SA4+GV/dl]T`+Y6KJ+_4WC:+2al9idKOg+>h+dSo=-mT?k3Oj%j%4$=MeIh;RqB<&HAZ>h55NQKT@r=2hL2!OJXi5bGb3fr3^8G8=(+4+8LSCWc=s`!&B#&jdXil/B.5kre>YdTp@--.naJ2)^.(aSh6QsWP8%[aE;;2I7u,VDfYU^Wk93i-8OT8,$RpQ>fg<&NB?MH$g`KXdnZnTH7GX3$u?MI>01J5?ZFJFl"7ofS-!'5j5?r%M3(eWiG-B5A0\X&dN[4K3D7h[?9Q"gb+<]9!u>LMA4*K2S`lN/9JToS.h#HA:QQR).lOSJER)*c=cl6YJtNK$YgE?*/bG[:A@%6'&AR?iUIg#9icTPQQK-S#a_QW0=CfNO\aXfD/>!BXk1Jn?EfDNSH+T8IX&3V3SU7`&"iUI*P@>LW>M)>\)3Wu>pj/F?>+c4Gj9pV2mGPV4<3JXn-:t"0AU7glbuQi5D,78>1\Om@bH(']Zk\Q7-.+DbrpEl[$p#ua,5LqV2!#_=K"=/#pjSn$V0KiE?^^UXc0tiKoZU]XNO$N>HO\ARH>_g58Fa6/dO'*0rd;%%t+gHB,FTr>WL?1l@coP/!aAlf/=1.f%a$U!kS)!\@hSY9/s]+~>endstream
endobj
% 'R1297': class PDFStream 
1297 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1431 >>
stream
Gaua?D/\/e&BEZ5aEKW9:"5kW6p5><"sdo8%S5/g&[ll+?H=m=F-T.[U(_I;IM=(iOs@rQV0R#f.hJ]Wo;B2Fmgp>qKB.6H!aLJ!IZ4>q&5E8Z,9+K=GScsCHp'VYeQBj4\UbV@n2tK>!]LZHjT%#\4[r+6Sn2*b1/-fiDT%0E5cAq3+[9cI>0\#aJq#!Y5)7`$rZqbOeK@SA>9)`tL/XU^Gr,@fCAD$3[462oQQjlr3=,H?U9;Q@A2G%W8OXaJ4XlPHZu7+X@sF5QknLZ&-],i&JV7QYUaXX!qa-e#N;jTg\:p;H:U6C_'$KVLlWP]f6:s>=67=C+4982c+d?uglleueb.*Nh"KjiW:E-J8*R*_hq7W.1HJ4eKL!n,S,UhSq`>**t^>"uTJtn0ATcmgS?Djj)_R_2H[%j("17Rk:<[=n\Z_V,37O.iPJRic+SDYCHH,QGE@ogiO`T_VqEBXktg0D6G&6**+b\75E.Wr36?-o*\68ObW,Z^?$`8:>M-ZSC/0r7QSb_V1Ya7'd!PQ))pj8m?BsaC%q..;/)r)1D\.GpEusDD81;j^kr7N+@=iK>sJ62F5ET!jb!2Xkk$JT3*crLd-b1>KQM2f5d;/+Eb=d_@SAe[l&bC2n+,I9C-%_h\KjUs5NHK8_e1R%Z'+*N/E-N\=gts&@^Nc/=FWs\N]DC#\Y?q.MIZ8;)SiEm0N8$&?Y7DM/p.P*%IO!$YG#b+g@(EV&+#T;XEmJr"8d%*moE;s86"Q8hJTN7_""FYU!8b8PEnfpV:?KEFW9]Ebmd6DHhAF-&"&P?HIXpMBY?Nt@N+@\-e%7TkoUVklI6ZaF!GL\En$*@*1mkT9AKlqqPD#1t0JW]:+Y0B>i588(6<["e0$>9RhgbRC4gWCcc;R]UD,3HX*S1/JS!#9pB,Mpg4]rLCEX<-]o&^.o2IZ"5eB\NUQ;).'(SBLaijA/'HK+[8,1'Af(O4aCq2khEA9-7>,dS\/%f7>K=-b+l,>b72tL:E@j4BG7V%40tuW%NR3:+PCET`0:SI~>endstream
endobj
% 'R1298': class PDFStream 
1298 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1429 >>
stream
Gb!1+Q`i^ehc0-BbHietSd5=ka5QN44e0V0CP(/3nAS<3p&/%D)Zc>El"W/>`2OV_1E!oNT>..fjREc>Wj]Bj-K[X!V,SmaK=_$!uM\Q-J8X!/STD9E.2A6Cc0:[I@4S*,DY1G7:L75;ghbZVB-3MH3LVZ2/IlHa_77'BbdmuXRWT4@o/=tE.ZbsqKMe,dep`RCalh5EtgZ1f[p4G=#nu9?A6Kbr:Sh!aknRHIS6lbW8C`(bjTWOpEE?)#n$`V/gl[LkJ9IikG>MsS64fB=,#5Fc^N@2FT5f`k7"NiR+?k1(61tM'P$lP^niX6/5XoW,I1gXRXp"cdMB7aRp#dTT2X8HS\tBc/2]9kB"%.3:;[[=l#[Mb[Q'SPJ45cuf:onc%'^cb_?79Ju#N21M$INUB,Gkjp[/,>4a\r+R[)]Zl*Rl=g,VkEpba"esgV/13d^1b<2q1VCVaP?9AsR0qXoWQPg_rU>/l>IKj'X?Wq5gA&nC_Di-7WTauN,nZXaXN2=/>[g>unRB%f$D,)X8FS_k.%adY@WV[T-]Fj@CKY0nVN)=;@b$S1EpUI.Y63aoJg^Mq&k^j,u/bjrZH/sfUtkQ~>endstream
endobj
% 'R1299': class PDFStream 
1299 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1595 >>
stream
Gb!;e?#SIU'R^LRs)?AP-q!$NqQ`8#".Tms"gY7!NV6f6")ZFD2d1;P.^Aa67oF@YgJUa77Y/F5/;TYPiOS]GLXuf:og._$=TI69i-L1ZGqbZg$9A3H*oMKhIeNI4$l-3Ze;=$.+$mC%G>LNhX.I"MZZ48^XtCc0`u'Y0h14EM+JoM&k;mL/&/FM`>^=e>Yu",*,R])iFt7lEj5lU%#YQ.'DAM,\a_'mp$\>-%_L-Fl#hmmoRQb1IGA=,_=@K'e?j>M+Tp66H\sCmn\gG5=MOYCuB4i^WgT9/5tgLV)O&LCVuTo,G%ASkYqbH$Q9dFXSYLR\$LTHi;BMf>bf<)_;Esm_UXXj-l@2'1%s(_13[TJs%t*2\o'+D3sh?D6ZtJUf%EW9\QXL_'q9G_>bfgBIr<]]>s@CVjSY8@On1*;f'#`&K"'h434`o>A-+c)ri5;#6jMhg70t*MH>XHrS/#Yqu*s2CHH4KI]IJ&Q7]:a)Rf'Q3ZeX8`DqaUnhhX`IaAoeNbr88eOG$Up,"`_kc-(jFZVMF?cf)#n$hG!]bkfk7A":u`6kWFIV[6;_]9:g?rRJX9H["$-E:O94;"i!,YAJ<:=Xo^-8-Xuo%/$=ns:a*8Z*bbkV6`Td!HqVG3OaTrOh+3(m0)?._W93Z'cD+kNeFS+p!U=h)/Ht>?*YW-'dp?1[['>IhA94:M:">)'jZYKANUBI?Y@q[]#\_P42pLT4XXgmNl4d.F6`o[^n$o%jWO"HoTX'S'Bl.F$7rfM4=o&?q>?>Lu.a?J1/lZ30YbgYA&\?P4PcQm=ZakGu>>a_?.o']AQ,endstream
endobj
% 'R1300': class PDFStream 
1300 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1497 >>
stream
GauI8D/\/e&BEZ5aEKW9:"5k[6p4Zo[K1C&?iuoOCP8hGZ59f7fif]LUZfYPV]SLP[[]lCD/+\*8!$=4Im5!8G8(+BIusSgEe$^]Qe)M)"[N42)*/=&iI,Zop@nA#WnY,Acl62!"J_)B6t:/ZHccQ*o;2ucMFP$co?/8CO.5\F4+NE;YUMeY%`XI/YL>%L9/8im2$AF!(EoDX1rX]ib^D2ZZ3I#"0s">!Ri1*MYeUfAV.fskM_nT;j0uN-OHu!tSi@c@WcagQcikS`A(JLK^h]eq`4#NX<[h`Q-MT:j].+f]lG?,=E[nEE_c>rki)!Q9_qEEijnYK#[?=DX"o#gW)g/a$.^qL=jY/]Xm$Oc8E_$(iqCR][U4q)+%a,U+3A)"IU$$NDr/nXfUip(*;JhU6A8-TpTio,'U*Kp>&E^KV(g!=FF%%CRe'XEs-!(.78inIF'NQN?JIu")AP=k+#d]dG/pBGG"4piT:E-I3*R+1237ehi1h&sj@0eOVQKJ\W)VKEt\S5*]LUl+cKYL)E8SI7^uk/!F.liuCBcD3sq:EHZcMuKm4l2@Wn]f.Q9Sl)hP2fQU>lYsh!\AUferoIi6BDCKc[A%J-])iQ*##r1gM(VAfZBQ%IcP9Pn\Dqr%0'A3"Tfce=N(6$g'22E">M?L%6X$@nXDOGt&AkoA6;\';XqcDfPWWT'"\BKTq%EZN[^]WB-99ZR'nP%Jm4oj&$+gZ,^:%8#f.Ii9>S5JK%]:\t>!&^R;4,7NO-L#tg>rDO!N&YGY'0d5;9$7I)+oOAJnSqd'9"L>6tg:9'`hI/%$2F'9$Yqh/7sPiP4o7.)JbZU'<15,I[*K^#VBDqgfX<&c-n:%4q6@dGKtAFT*Dp@F^+g.7na.Cn85Ys'+Rnk=1ccQg'^DT]>jVnOQ5O(O<`Id4r[XOQABHs_WA2;3M)SW(jE%6i*Arp`6nlq.Lt*:EGR"?&")/QL'4_q1+PQ:e0iT]BK%`[JSs6^^LKlbVDj0;eLVGpr6l7k?\eG4;h]k8h^#SH):aJ8Xi]JBOUP+6:Bd8'j9?6:[e'IkVBfohqFL1](edI9^M7O;c(,4G>t0R:#;6UH(R:XV;mII8^=S.>bEgPi?[c(Bt96JsUc4N^rIM/Jr>u6GNb.2]`dT#'p8B/QGfZNA6>k3KN"J!Tl?Rge+?P]l[HW"[i@Z71j'iU)%T"@5>s)kaSk@aerLp>Hn~>endstream
endobj
% 'R1301': class PDFStream 
1301 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1574 >>
stream
Gau10>uTcA'Sc(EiBNjc)mUIs/:Su6Zt3?_1S%9SBf@iT;gKTr`R_2%"\Bm,mjlN%-3h(1a;pWZCrL_nj;a`^g'Bh6K?WXt!UsM)B4D(cLZodT3!`qRJPXbTU\j'rZl'h%K/iB7"N+Y%5Y7KE:RV=L_qQnp1l)\]WAcM:R*/4RKk!B>^9D7!GQti#R`bOk9Y[O4_<,S&H^Npu$0m)o\9Tt6a.M]?n\bh6;E5*PjY.;&e9*3KP_.o$kUPa8Vld$<$L-*)NTV'N]iL8BUuQdlAD&fZ5,i;B9!\-5kg:T4-=JF@Gf-uqb"V$2EIe4f6,r7ho\S;^_CHssBu!-=Pa>"-tYn&-=ol,bBEglVh>'\.QUa/_OAIc>gQeF#kB]IPGuM+4Vh@8$5*0:ROXPu%KZ-SQ,g\s/GIoZc(C*7_FnUeGKj#q-YfC.gRc-dYme9tl'V]$JCDG/#sdk^@cqMe,2-j](I:m&9FlDA]$bI"!b*p%2^s=A$ee4*jm9q!m*9A<+A3h`W'ZpV7T_eE#/qh/m;[F?`p2cgu>GX)TtMdbB>"<[Ks8XI02E@cg^>%?fb><%0`gC]ST\<+L=0i84`B:ZAIjKf@qJid%c!_@A8Y?3u!DoEIl(-B7<(\nq"Dp)a%EYik%pq:%7`;Wh"RiTqq"M<^#_0@cB%qck.KQ6oldE9;HpAo!K(?%<>RW%3sZ]`RchIfUFr[aiqO9kEPlB%37jLVis"7o[TI6te#*B^Mk&RH9*6GpcmHkW@P>/[V.0W+Kc`_(OA&B4HeAX<7u!`Wa8G\:VZP7p]jDc'0'C$4YifdVX/:eaJi$X[(R,P[p9qgGB@ocJGjj\e2m+QLZfO>eZnHbfo8$<9CRC#AZsdFLIg4'T=/R[[%ZE_om`a60.Am40''HkADXV%GNpPfNEgsPLem=(0#M>_&p,*rF)MgMo.i^in"+NQBdQ%I3k5]@(b`YL-BLS-#=$0>?%5SQG#k*W%*e7CqO7?[D(te#L<%:Jp#OB*rps]9$=fpnJCpTm,b-Vo<+tK5"j#LLCV]RnZ%Co^;Fg*A!jmu(gR6VP?,4+gRA,@7.Ek?iJk1t3VL1ftY';D&O/`u$+@>#1\k,8_ZS17tJT,&c])8G#gmMa3C_$HC,_=ML7T;a@C62=*4KZJ]W>)0TQ3>-iOCY&'cYf&7g;68'DF*.eRc$8*r45M,-JNM/G)&1mo.\SdVi3)ZZendstream
endobj
% 'R1302': class PDFStream 
1302 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1374 >>
stream
Gb!l_D/\/e&BEZ5aEKTX(uPn3,O3Z+[K1)?UDVE:>E!\8faHN.D0D0)a`M"\duU4L>8AY\NoduX*#T'*-iWO`Uj+-d6[Y!n*esaaL2]"8J4peT!80LSL3N-9G^8i*jTWeC*Ok5.VN8OaX<-q%\A@n\*[^n(7,]S>A]@:Wq=S[\*67O$d4P.Z?c*(=D^!Aao\jr!6tP:tj^nen[]]dNc6hb)[rjf]HR6$ps=b8u-//\%tg:+h6ZT_#B-F`1t<5j2,N>i25d=/dGJ7\40pq^P_PPu+KDBX;bWdb%2Z($(&7<\ALWZ1BCgO09LcRV%JR9U!rCW.0mSrfeB)N/SO'=2/4Q,hFPmAnord[n+43>1@u0jhYql7tdG&g1td#EO+Te#'S4W^Rj;cE&_K)?VG(hX4>41N1r@>()biGr131Ik4>1`>lIf$,ZoK0D3Ap_?CiYl1OD[5=[djDl\N9>s)#-P_F(4<)41Lt,870mgoNj0d(p%pIbO;'GJ!nQ+UlaK\FNi(5\fd:[*k"1hn]H2PsTI:laE)JWmWRMjfXGb%0n*PsT\Y39!0]O=7ej+RFr(3lZ#M?P;lWkOhski;GkQYWa32V4+3uY&OCRLH+S5MjaEJ9'm_a^M9jkBHbIa(?!9H/4`+nhUNb(`0D,M=dtgcjgLbUfNIH=C9tn@m'TihXpNsaJLNluJCDj@54fA@i2a)ISDZ0B/SWN/9(.>;*)=O^sqa2LW=cV?%BWsCTqcj0\.'ham2R_n1*Ig*.%:&~>endstream
endobj
% 'R1303': class PDFStream 
1303 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1551 >>
stream
GauI7>Ar7S'S,'Cj?FUu(uPnqKt?!U2PlH2>K*!)_X2TOJbEre5E0.`rOZK.EG"ZCg`_3Da@3FAB`2?k=cN7>?B.],%"#9o0MBJO:)P'^M8K<&/a\kYBmD\![ieSYro<=M.=85*g(fIEk:qb\ur(D"&t`S7k-#<`+uI\O&P38H<$5iBcP`d?%07>dqr+X--6b072%sHA_*lu:/t:+)(m6?:%&sX#u3$3r6d.*'m6*f9]XX!H[5qW(f-qR/=44&8K];\"G6_^&.f5@U``a_r'k9D:%,jrTV)]nRY_a,i%KBP0j15-_1Fq`8d1U`9jrHcOf_;V\kfVs):O7Di$!qA0;8cPj)O7+8k[*'kCnQj70O%A]V%_N'f['C(_Z@(aEkIQ"bo%$AIUVUJ;P'#m"6jKHJQ_,`08S4j"kN*T?*r+VX+cpKpA-aK$>9,f9m]sOpY(j#@mS&/@\XhD/7qu/%6,JjAed9Of)4&g[cmR'7VGL:cNe0Hc2)#N+D4q2<`_"Wqm%C'#RnH;n7sNeKF@@_-T?IeCfe_D3BZT:EI:q9GJ4=B`H[_8hN\Pp"R.N2Sh%Opf'7./tWH;C:>No`0Q;j+SEfQK@>\s8b=a/_3AeZs/*:?=[uY,Q)V@<]s\nJj5q$b7\F(Pq?mBD^hS>EmfZM:_1mRl>KtZuNJj2U]AMWi0aou>%iZ0HOCR`H#phY=p>UJOt>>*E6n>"^/1cDEiqbcefB:&N5i8F)G`u]L$09-k0h3,K1[=>]+Ybth+-u/KqCOKH.W/]SJ;`f+;T--esg;"a/jc?;M90A]a[L]6#XVb>nmulXGfa68SL7[i/2g$]0T39A$Su_l!:86k=:PY1]`Z'[[DmZa6()E@Ue8&5>1baXGY:6k]cOd-5G-i),E&T+BhLNJ0):g_HPd%`RcpC*n`FjOAD88mcV[`LEBm%FNDC+17kmCT@`-`r;0DIPYr\.Z'-`E,FL%LiYeoMA/.nNE9Wru-,ebXXNc6$,G9e4eGkJ'M&CrrEcg)Fendstream
endobj
% 'R1304': class PDFStream 
1304 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1576 >>
stream
Gb!;dfl$+6&:G(NIj":pVm%1=MjL.iO;2'L2JnDI5huZ;U2Ac.UdJ!^qXrrZ8!50&oMo3A7tF2@adFq@LC46Fr'C9G=orY'!U$p'5Sm++!;_*c9^]^@jS7s'p^"$6K0au@G/s0k&,L6-(sALS5^)#*aKBLG\K5]Q#>CG0^cORK&3r_pmH>XaK+=!h)45eSG?%Z#l#J.;+\kr6>nEV_.Xj`Xr;CsEe.!ciioCsb&ttMkiQf\e5EnY>PAet3oi%KtrIpCC?bDQonBM?6phm"t'tsWX914,n/;[0fj<)HmL&FT6&f<*O"kH@a1[M9MQ?Nc:RLXSMk-ZBidj>d?S*5,_jh/o;eT(UN2"eXd(gEh37?^](o54p?A1V@SXW]s;'^)hAt1HhN$R%(DX]X#*NV>F"If(*lhZ!sXC!JlW4(T<_@@q>ae*:Y%kP+,t*$G)X`'AjnI9?fRRFO'#d$1*0p8[(fLM#%06;;7$<8:6N>^;>ssBJ20DnR0t/t#rAh]c0!.GET=&*Mif5)#0S`n$H,@S]"59dmA=@HiV4iH*66MaYV"Z5&$cer8-=%SQ6Dqm&4T[i-S"U*o.IOV0Oc<)S^V\G&2>Cl'rP>F8dUZ7L*XkMpP-9gGCt>Ei,&.p+,4EN)`#.HY\H@T?6i+dRlC9aQO?)3pjk;7#r%[Bj37iMG]g^]YmcO.dsdjSOliW%E`l%flDGG7P8KbB>bG&eKM#:;Q,-teTQ,uYq;(5Cm@iI(9(Elg/D+.W&o0,@u=GC$mgdfnI/uc@Jm#3)(OSrURGWPI`7oYh9jLN["c;.>mYb_!_@"WZ!e%42>@]p[eRlk>r4+@#:I8*lqB9@i3&n[]mD"MajYP=Q/]KBOYHPN!hAG_"muaCZmciY6u%KOjPaa^0fRu:*3I-*h3hf^B`9Q*X[hmb]kQ8"+B&FlS)eimYW8#3a_ek9Rd\-4R5Lb6#0lh\c;"m0hO+iH<1-T\7HtehOZ_u$P[5+D)4e9`I4#XfO:jU@S$Zl78qN4Z)RD!EAQP0.#YR.1?[j31Gt#nV@XB)I^'/ZVFa'4\(Ou6X3X=-(7k0jM:=lK#po3jN7Bd$/4]i:r];phQjmR\#"Q).&<=SeBYU*VcR*s=X;IAZ.-7F2qHO\Ye^$C0&/#+e,dGmV89R9"rV:"d2>T,oKD0]i+R9sHP^_d7P/q[tN7R9?&cjQTV+;`+Q>)XXP%pI]YL@&K2?KAC`23C=`5,6VjUWf%Aendstream
endobj
% 'R1305': class PDFStream 
1305 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1432 >>
stream
Gb!;d?$#!`'Re;$rkiTE]K6R)rktA91YGLD$enAp3dk[&*J$Xu0bu9t-2I;K(+'lJ"<#k9Cl#p#/)?tAYHNsS^r.$dn)HFDLEUd:"Gd6!#nX#p^i094_t12fk@Z'LFhNeO=9/H[[lYl)!pllpYk,j=]+X#0CqLe6eSkU1(r)5M?rObW,8`fA,_+ht]+n0KX%6"%JME3ai"Pn(BY"moc4UHP@/(fRi8k%X%u+J!QB>S6_`QC,I'6rWY5W4QHDCkKj`XlqH?`?kMn[D@Y_+?40SiVpUTnkJj!V?g(k9k.a(U^s*4Q9LKM&nD*'uqm*DN&IY_.#WIKsldN_m?9G7uG0g:2F&o0pl$4]e6Dm#@WQ(-1pV)3Yk3ITET[2='r&YNk/%[1%cj5b\C/]Y*q##%6%[/H+2d]s4$T,Aa2>kX7S?[Sq"T('fXAZWr1?\``,R#2](;`K/3D?07Xaq9dI%=6"5$k7GFi6BpBAAQPjW/q9c[b,ES\T5s>3P*$Al?X=Rq:g`^:Wh5;iU4*cW;O(*M(-_[+:Z4+K:(=hM-9)CotPfFGp\!>D%c>?e!?[`/[;TkmloC"U"ol1@RRqHUqj4\>mDN*-@j+*4HOCM%)M[q%,o#7=a"KjiP-(&A#XFFlu)UWqijI)P&+qG`(o%_jaq[5m!QWt:P+6q&tBYY;B''Q]=`A`=S!PS=lq6FE34eeViIESK">;H^\?N\7M4MiMB@_CpEIrPZ6HVNTj-Z'+jk."93aAJoU0<9MlZh32J/GQ<)Vq(0h"Z!'3m+7'+%Y_I>5p!?R?rCNI%58HppP-]JN\&X670e5e"D$`?oIpA9Le#S!'5J5OU/!5Hi6+/b?2jZ?TUmNI3.MZ_["KFhVu+s2pIK81T)?BrT]MaUkCJs*R:rA38^BF8J_sis6i=ro5CgoM>FGXcF^(Fl^I%2lG1=Gjq@pJ*indruDIcesBKRj[(o?Lg3RK.8]\T!]>5`d8BuKnM/6*'X^S4fuY&81W,o(R7)h'C+^0AW-?-5?OKqA6C+5gmPYf^FdNT+;A6#3m;EQb\_^S$VrHR4(46i@#@`Xs->qlEZ-_ti!c:!!E`~>endstream
endobj
% 'R1306': class PDFStream 
1306 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1745 >>
stream
Gb!Sl>BAd^'RnA%rkk.PM:5VC2[o&[S]Qk.Ak93R[+h/"#D!&W0fG0UOS%.+P"gn?*TWTCDNdaJerfUh3u=H/%++gR+ob?)!9YS?oaNTK(sTk#Rl630E&B[?H9=AH'%s_BFF%QFJ<&)m)Ek"=B-&/ZEg4k1O#Ce;EXf?_"W]-Sk>;S)hX^&mNb)D0V_"$gXhL&OZrnKXZ$,fa.%2pX_Me[lQk9k$_WYpb5^p*::,5CNB\o*Z_8?o5LF-;QanTIFm:/7Go8&ID[)T$7lf\S1pfI:#L"j!-B$[o4L%+adDIXK,+sp(SkEjBk?ZN&dFEc'djsf\`Oj[Q*TsK`TZVe^mLHiKoq]UkbK8=h<]tTEpITS;4qUB8^fBXd&X+2r99pu*RIuo9HZ9RL_V#fog-$ug,7IejP/8`1"!=N9`[MkeFI)Qc/-O_ql=)+!Q,lm#F?Vd5KQ`3&Xgp$cZL2OK8$U],a=[ULhT;$$j33Bp>M+okD:E$Ncp6%,<=3"(f8N3[pe$2nI;oL[3.))SCi-a@`^]=ZC0d=P,i9u!B-hrXK9T]Q*'a"BT()Xu(+=++q[WJE"JX"@p#@t'pZg0A+'StU?Tfc*c%bmOL>n/6Ek@&NGGQBDS:qg#LiflKW.XU=kbLWO.i^TH3WPhAU=>.a;+\@S&!,LS>J6"1ZW%*(9pFt\$"/"E?0NGpG4V'%A>S3#sl4=[:'S&Fk.OK-^L5S$]/s*_qC!>^m>9r?39!PEhWR3dIV>'&C,"eoJ[9i,Dn)79^H@sgGTFPRfZmr@pp[lA-GW2+GR!h%!M0>fH=XoU0XV&H#k3r[U7]&:1##ZkmUagl>rea!u^IqgP[DZs28$A3BZV)=6,(22C4F("]o0d"UT!9(=g>!N-&!n^(e\tX3nI.i-)kX.YBUK+"OVD+RMh"KtX,OG"O3s/PE5F--PJ6cq=piAdQH*i]C@HVADn9)l`S"VI#^e<=P%3M98Ok%?8mgFd1%2;8C9eGK,90(h"Bti9(io@48YGDmpr:_p>=k>+O(e9pNPV+^.:i7Bi9n+)R7cSK#m0rKsulQ\8:OWef)2]th](hkl'%4Y32A`s>Q3Cfs;%bG/HCc]"Hd*q5&A*H\`BQX3:;R"ipQ_r)T@p>DjBk'FjiULRn]eL/YdP9.O5&KYPXB.S\c1X6bCIccfTj]^)nB+d@.+D[jJd,?GjZNW70]6Nh;+K\1c&Kg[d(fdgc<@+cYY(?9MRL&MS$"?H"qNq,:GGZ`PrbZt]9,RpFsBPLXmYkP8X1Q6+qqQ%mGEcHY@kc-lWa2M@X(&I^,R'fkH!S2DQ''P)[O`WHsBOJ(tHq?/JVd)Pjl]g25GN%`).$=7/V%bUg+'V$h6ioIjrfqK;~>endstream
endobj
% 'R1307': class PDFStream 
1307 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1544 >>
stream
Gb!SmD/\E'&H3_"s'ZTJKiA;%rJIAY;NAOM;So7:IbC'#T:'t:G!eO2?Qq\i&E)RS3WfFOL!^$ZhUZ+W%K4]EdC8-\P-m0k[V;d#!R&pF`&;K!.2lUW]FB$1QDSDI",13oCE1t.U54@hX*=urT?gp;2`-/#.P?sP(D+q`)Z90sP_c4bIpUn>YD/ZE`:IH*?T3:<7oK\-OuQAI:Hk8EUI!JC^!SnDdE,6r_i9*X/,roQD-anb'^O'm(GlC-e"s'K(fWbak"Nr&.Mas\p7GLS\;Y_fM5(V/IR$ii+MKl=1[EP$cEr;KC<'bE]unB2IXmB(Ini:.a(MS.>1JnHXm>[]jN9MoZ3bfqJmWCK#@H)b9ggHdh6U\"!'BRN53-.(X4?,<78Eo\!X6l)e-s?<`7.F*dfF!'_!lT^h+9i3qm:r\<&/!gN(IkD1.K0NV2Nh(lS?J-)6=XAN/J_i5,Ti[5^5tI?DHb*>ec>/Gh1Xs]YKZ;+MO=TdsF\suNi3-JAa0nZ^d16qHk!B?WRg#GXT.X?Ma01Ml.qmK=-R?pCe_N>D,aQE,,:]F[S?QJ2/\AB:?"#nUuScan4nqaQ&FP/plgYL]K[j3>>6Mp11r)_nQ2b'[Mn#$n_8?Lk.G\@#+)<#WU#o>R`e@L2V&XOeci:;H\cJ[8H>/C\8VL/9FX_>^%&5;4M:UA3jLNihI"eOm=\cP"cb(;FC@YJ/Fh5\XBgQPIjjf9I'DXL)@]"=<,_6R`fWJPMlEd6l`Cr;3E'fVt\pon[S\C)(U3SNV54#h-"127H>\Y0s@(V?[C?mdX[dkch=PCpG>KY/%aV9C_J(U=;p1prO$JGbFQP4F5_i9nD?"+$Yendstream
endobj
% 'R1308': class PDFStream 
1308 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1355 >>
stream
Gb!Slhf%7-&:P.Os5DDe]B%H#82;OqG)Nh?J'"\SM*s"%%kU>P]_F0_c8-97@)]5PUJGSdo-ci3!<&#EjRC$H]'t1YB-"LO_T;4W=6oZ2UW(SVURW&$bL1*C;m$W?Oe;Y'5t&]],YSgl%1V8o^BSnAU'A:*8&Q3RB,rmiIIQABS1bMH)bsu!Xg+r^1KsTL*gq;IB,[T)]]<_C)>a?Uit0U*cRuOq+B64MD;4??BUBV6i[`24:DHi8ge<2p:B.Ag^D>T!>N8`H^U55*/,Lok`Z3Aqp=s+ZPRJoHo-0LR*+G%pCfRgU9I^cPcO2L`Eh7(ph"/s?OGK,'EGs/5H>PHRkVMAiKPo;snt?8N*3qANHSgYY$qm9LLg3MKESK@)FZL3[XV]qBO"is]KM^T^30STVCG-)R^h*0&)XpY`<-LuHWWK?jp/Q2Hop,,D5pi\:TO1."eK"7.R7:GurCfms>/I[(_7`AP\E!'sRbalr;072\gts-kf3,+Mp'bRP3Sd"m)^5.Nh=YO*K:t*>j6gas^;VDM@AJrT+e5fB07`GR;7BPSN,3>(FG[T>(TPRF9N+u:J1FR'lkoS,ouQL&qS^%,akbGoXi($(kC^E&XY[E#q)-F_pZk4]UpUD`CP>"SH@RPq>%j:5Pfq*\*uWn8_d2$;=p]?l7IAde:?qAXOiV_6n^F>&6Yd?C0bgWutcH\6`XRNfd()Xpb]cG'Y.4FDY?#epbQcd_$hf<`doeCc_/[$hKC6q,6donQ*K'_;/,#d1%8al7?.AjF]12->E:].mkoOJ<:5@$5o?@/Hu_Vs;`pJ^@"Q=,@!jA:mV@N"Pb#ZLG'Be5N@)m/a#itQ3=)dbX&mc24(Jqqd=4K%rIURZ[ig["Th2Bmm#=RSDoMSK9)m,*lB`T(5D:1g2+?fg=ILubP$@8feqT/^[9]b1;3U9nuEPQ%IPkah2Q_]bqRVsbSDGfGLuY#+:WFT_goBh]e<.[Fk9[4c*.HjEM$_=7VN'k7RNAb\8)j!#mo`g(ShInDao;HU.*_~>endstream
endobj
% 'R1309': class PDFStream 
1309 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1579 >>
stream
Gb!;d>uU&I&:J2Gs0-QO#TXO%4)pEYgDR^\QRTVW/Y5/5l%9U!M-AR>Z4,gO=-@D5a#6dKA`aJ]0sHOqcL.90/V:/%6KU99!A8d[+!X#\piA^6:(R7a\FGW@*fc:XB&!&@hT-QX(_#10)L3R8dMSq%\W,),oFW"A([sf`EHg]#4[<*0hV\<8]me`\c.`l9j)F$O$'3ZWDB5'Af8@G"^=%"`U([T/tg`j"nR,scg.k;gq$:Ym7c@Y8SkkEJ%.`$$`(::U``B(lI1t#7X&P!i\#Fmc>%.CqND3al;t6XTd9?T47N'_"K9f=M!j<+1N38A9D\)shdQK/PeKZ0@8Y&9YH1l5-IY24/qaVKn");\`,SSZoo8lFOk;D9>7u+I,P+Z$>,OQ;aDH;:GBq=9s2[,=Gb%ArOc&1s7^]Em=s!Cq3BWnV$k`!3$rI1;(uE*=te1W%!$r&i4GbI8r%>CWc:^-p,Xp%GA8IQ:Da>:nr`kJT:Y'2Hm'634aMflNVZ]Xpb>jrGVojeW&i?t][gf`-J^bB&SG2<_Q-[C"G+q0W>b;5e0?.b>IH!67V0!Oendstream
endobj
% 'R1310': class PDFStream 
1310 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1336 >>
stream
Gb!TYD/\/e&BEZIn96#OB'RaaU)kmo)iups=("JO`P@!UIA'3=b_6g&JS?Qe^(/t2g#0'D9Ba70Ge[[qF6TcISVpjn8h5?+67O]DB\UuP>$L/kZj+)/PX:?hAT1iAnbmVq+:%T4p[g2Slhl@tc$O`>5ChFeI"OsF]ap^/T$,L=d8+(V&8f4=$q:54_U1VT!1B&l'G9X/'77FS@.U@L#G'8:E(]_jbhZ"/;jId`BQY%"]9Hq2I:C&G)p-Xl".,.5%M(Z8*4K)&7'aA\MRg/(W\I&s@P+r:ojKA,3qh;our$MojgE4Gck2u$)@E>0rltRV"q7#EW[HN6udNH\M!;8?'U.`(W7u#H?)0s.=1:#?$bbTS[Po)cDF0FuIrHN$5#6Do>[@Z3@3i\l-.0c,=K*.D.Nr@dV)7V",eAQfhMke]*[@9K0NnWPN^&Qb%a?>+PF4YW>=!cc=tZ/u/Jg.JU%=I!-VIQkMJYLK<6T)"bmO0ji=X[E%!Q'O\)(rjmrW&5n'W6s7h-T5gDNU^RDKi)oCMTJF/+GIi>kb;NpD/@\gHV?SX,'\gtn4OK`>TI$(s8A#pm)73^KCm/Iq0\rW@#IIBMZ]UD`6ZCeQ-(:>XFb1We)mhS'AG.bk\p#5SBMG@TFtRlHK9g)+V=,Gbg1(RqQt`5d`u;(KX]aO?Rb44'%[,`8<^lb"G5(Dl!FqcP5R5T*QZG4h]g'#endstream
endobj
% 'R1311': class PDFStream 
1311 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1535 >>
stream
Gb!SmgMZ%0&:G(NIi.7C9!Pfnh(0:XJLkhU!,o.Nqe>@[0G\6+cm=gQ:"$3u8_L@d[cf-q,)ZR6TF\mbc+l1iTNHNfdY/EL=sm.aVXd-R``u-WCdIV8i/F8'22IQ.]+:nNWJB"h&6u@^WKO04^O;P']6+XU.DHc0)ob7K0Z14aG5c&).Ak'bc2mELiGh3H[1G._im;Upl-u=^k7\>khk6NoH>S0oq<9%V`>I%-ailI_m0%eI[m^.`li\RVe3e7e3N`_Lbda[fJZkAOgaBf-8[(:\4/>`D2W-=g9kkT[A+\qg8WT#/9QAFPdNj0_;&+17_.Vl#!=]E'Zspd>Qd0o=`pe"F?JdGr_KF(7@dQN;8ddY_i6>'l0&Ei)Tk@M7lO*86FB"$%g@7BlT3qTJgmq'_h97s`Y0nEs7aWA1c>BOJ#XY]S+Apm)B5DL-ondYuBkh7fWD*]r.>.O>"STYe9^Zj*]O`d'lIf!R+VoBP=$:'k=P`(4[BDWGe_+#$\QJVJTk^-VV+u:HgX`D6-l71!@'6?e+f?dZkGM.;*l-t04Pdf8Ym\'M%rHu)<3:2=EBlrZW$3lig+P-a&\3V$3C=DZ%R^%7K1F'b1^%?6`[>b+U_W`M-*gO:dr>>R+03rAUF?1_peqVS;bY$!U\!"P"OV`fsYGZVlUUQgeA,b'.VIR\R3_b@?8>FsRuj[q81o6Rr3-\9nn>\F:F00iAD/B@U93cA0]^,f'g^'[(L:J;A'C%kX%CVP=u$X".@[c0`cMq^Y7%gQ\I7`i\tHJ\te#$qJ.h3QgcmEYqEE:qtuV,#%$W>GJn+=PN]*T-p:G`YuBWIJuNM_@3334\i9A*i!VrWt_?'Yf.:RS3`;o^bP>"Y2+`D8V*b0]0Zkd74P2h?A9cC5d^&)>Vi&C,0YIu_.&+p@&3+>MOYI>2RKVRS^W*pa$(m=/SK:^2kW$9:a"c$&P:d=pPQm7`?Am_,m]Z9(8Y+BkM'p%c[b&NIfTbn]pJ~>endstream
endobj
% 'R1312': class PDFStream 
1312 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1694 >>
stream
Gau10;01_T&BE[H-Jr7p?BXWM3G`1-I1*SY-bWc24da@74[dp1emWAr(89ujmn/0C^s7bWSM5nQAc&['Fs[+=*d$Vde%aoH^i0](YLrkH3Knd7#n]#9NM`_1ah(#'?\Z5Sn@md%t&%n,k]k0D+XLl,I#u4E]\ErXgqG'7?+gRlnMl_?UqXUdi23dFk_m'j7pY\=g2)jS0OnjY-S3<>9^QMYurfoXm@.]MoSrf@a0r>q#h"M+M%7>?SQ!fl-@AjsX=9I+nqj,?"a$+/jF9(RBrj>uubZ/h2.iF)6tKi4F$B&oW!OXo%`A2+R6=pSph>,,D6%bZFP.7IVie['Qi+aHaaYJnDtW..HJ7U`J8JX-CZ(7VDPuECpLH`H0#)N$8oAcTYB6MS2bH'\cj3_ltjsNb!Ca&h[*PO]oR@91a@3YRT'ei7@3ffPTEeg%&,.gJs@NFgInChGT3fQliaRa(hI,54S\\XB"\![pGSI7^KBgAfZV4j4;I9$s>]2"'_ZX+fqH"PfuP#b`gZ:9t%/4a)rRJ],_tUO;p:r0XHWn$^\[!6qf<+[a't&os+'A@XQ]N/??PJuAL@%K'_a_PBc@^n\*NBj^28H-L0>O0EV4mmd^o1J%nrm;K@"hN/`q?9=H_%XeR2XSZ..eo]9!,J0*U]-gh;.H!XAg?CLYr(0`)$%B2c+5Fkj:-+*MR)6A!;3TU9AAB*hpGD'X-53a7i$-oC5S_$Zsm/X:t(frD8-.onLe'WX9R_kP56jd'Y/B;9LHe:<[&aN^5\l*IgO3mQ#<'DbXl.Ee7oq#b9U@3DZE1bgK(BhM!Ghq;,1^#W;B,AB*NW5Gu@c!&P++_"L:WYOc(s'o9Bnfqf!Tsr3L_)46Q)TYVTD*+h=L(+muacWQjN0LA/Ak+MV^@,kgk(r+^Qg(%Z44d1!S@ulXP!cPjD:k)Gk3_\!JKlt_>m&<&R]Y4@V2?kjnoU^#8Q2=3Zc\N:$^L'n4#<_JCm*Jc'CZ4O5,;^F*"$6J`[^:O\-])1niK4cOrDNFUCq'#j]KoRL-,hN*N+#46siuk`A1'pnd:)hjCK&aidEKC>rXu\$h"IEAp4q@Q1H^X,gEG#!1*,TmICBGti'&"7;Gm\XA4+7oqW.+KuP^mD!87SedM6K*@_pgro8"!LP3W"rXVo8D(Xtlo"LeQ@"2me_cj$iX@EpB,!Bos.k>gU:sha-E(]rc_N'+iVL7*U3NJY-ZW.Zb3II^+&P.g(V+>DC,9&2'2IE_#:*-uVu~>endstream
endobj
% 'R1313': class PDFStream 
1313 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1614 >>
stream
Gatn(?#S^l'Sc'$jZaaP:"Up=*e/aAW`$nje[A&7DNIbql,A/Xm#A:'@0iA%qOSQD0OTZeZ%BdLZ-PMXS<#Z?!=Sp`H65i^H3:\F'-K1A`^&=f$\LP94?,S&IXXbDZ(BkH"$7XPkrU?T:DP4D+Np:K.5[->M[hqpMAYtWF2_##_R%Lpds069>)f,iDJ9+l2E)oF<'&O6St"ar47qrM);Z("KfH-mg>8OCgQl7@SH*u`S'uSbZX`=;,`PAf'0HQ[RWk)&'B4FQF3i-^j_)+Lf9g[r="=7J\X&a+t?t<-OC2!,kR(MO=`k);k@iu^+c1/d-3)iF%oT!GAq-%89Ba2Ou8)'PblriEge*KW]i>>*q7C,doiJqhn/B(pWA,_rGH6mH4,aRIVV;\a7V$'ZmY/*/bq3.'qC9e0'8O6;]*O]bCu:113Wmf-Wb=pD*C[;h;g=5h+H[kJ_`?E['jbX"4mu3V-D]Cafac8QrO+3_l*LKgFKUCo,Zo+VrNqAG4(PH67r#/,k3;>$cq.L"Pms4R-51\Wa,!lKPE\@1%]7*bh@=sk&YNt;:-LVY;S5Ee"]kG;V(_!A\;r4/;fFu>j^V3oV@`93eqq;#KY==StshMVRKDj!n(@QfI"Z&rM`"NFa1UJqB,UhWr6N/Mq6;6RoJpSlZ7igD\UU9u&4W!&c'.RXg/lH06ctne%[6o-hj5-ZW/)\AQE?2cn#dNcCCa0Kc@gX(QPE*+%8KD]%_rkq%b#l\t3M[lgt1h.B5ZPpOuLRS$iFG"4aH/=G;22c;-7U0A@F("%+]@oV1l*TO;784P=-@'bjIR3!iGn8+5An%fr\7cbUcCpIp$\=Zo94FBJZL.-e!`dQ&E.KLjWSr"j'pX),m/;6)RV9%T4mI,OP\3pRLc!D7F(Q^G(-!igb=5>V!AVOl`nY\>\;%j7tpr7a+qB7rmPVu@tWZ?)YFROMtjHJ#66K/om/\/P")V.%>.F)VlEK%Mk4bRAI>7al):CLVtN*DL9>m&c@=N4',60l%dZ0QQ\P`YgX5[D\Qj&[/=Mg5teh!o,*Sa;'@\n\H3=)Jer?ItPh9p0=L)(/Wh@I.Q._J$Na#0tQo#MITae,~>endstream
endobj
% 'R1314': class PDFStream 
1314 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1630 >>
stream
Gb!Ar7S'Z])5j?"@R--fm[U2IDoX[(l(0C?&_2O5-%*Z0gDZq-o`d<2`j^I-.f>7D7S_1i)Q@i^terQ^Bb"<@=_qK8;1>`@V-OoTK11]cT[I2KYQ\"huYcc8Od@2jmU0QJB>]q3h%;&J8_g&Q%tg:0F-+Jb':@$Ku\H]MMR!cc^+48MH@Tllri^Yo%2,7m)=RsfZqb4Eai'QIm%b(P(.Pa^mMIIX;jgl>hcXQ+(c:B..D'dP#HO+`5RH-lGb)&?.ONmU0!3^?n=D05Ra((a"h+og6BeNbcuPdTu4Z7bC+>mNpg/f5o@Zc;Ajk):bW&#]c@,cETf'-ENVS5)s__)u-s;!9mXgMZ\$U-G>OA*@>:T%mHWF05(IPHRNLb30)m;GNUL`1?YPk(X\^o(\F"8@.]%f3=[k5r'YU0Y&7QQP"i"T(;KEUh;QARQ'pNVR5PLT<#KX0.0SeAJ3tXDmV@,;WGNom2j5B%S9Flij-Yi8L6)Cfla1.Yn)Qrd-2j)APVEnR.$@PYcsYH]7U=bURKE%0T%?4M=GW7r4D9EWY&[^0ElC?mn0.mCc%A[":^kXT@#]r-.DZ-%$bk+g)A?X'1L$PHtRl6j9.EZ8;2B['DPiQnP8M>m!E7`CV*g,5Gj64VIopO`k?ErFMK[Zl0X2[%6@;M]k!(=K'+gZ(H=@3E#ja7Wk@-/kQ@I!Y/ms*88Ztf['I&HW8Nd_Ko6nDaS2H^qOMK^A68O1q`dS9_GhMFi^A]$@9UZirNUd/!pf`TLH\n5&V=)%57:E?T-1U[\hfI1bB\RchaUV'_R7[2SbKdlr/tKj?@PhjR"s%N.beE?j6T)f.#4r/FAdo6t:1,QP^*k3n?au6q;Q\R<22:-I>&S<.G(7O7`GTI=]lU+#G1r`dG,uHPSZUL!D5Qa`!9(]G9I66Q<6[R5Qe]VBC@o8SW3-q=2,ot\qUfj1m?L.!V#U@A3l!PZ`6C;U#:]1t8WPC9>iR(mlg`iFD:e]>d:t"1DVR3BBKZLrfGSW\ij:rm*Nn$:46)UFZBa^CGUHu7#plcQQ("`uI6pTUZ;(Je3T%`t6hdZPJY+!;rolL2GO=RBl:c%TlQ_GgX:Jk^(o+klUJm6o.QusA=AATlUc'QIl;:Z"Lp#TgoE,JCPna/AH;N=>)MOQq)epPB_KUUpURBWnHjqhHFDcCM$9`0bj,@&8_?e1PrrVLgoG@~>endstream
endobj
% 'R1315': class PDFStream 
1315 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1365 >>
stream
Gb!SlgMZ%0&:G(NIi.O9\#:=0\l^H9!nh+jIFrC8e3Is:"!c2O$X(tWEoR"F8!KOb[M7,T[Qo`RL0tP61M>i`Ak9_S5GCB['u7F!>hfl5'P;D/cGY:e7sI6[5PohW7OhWoRs4rC#Y_/iKEPV3/%#C1hV(eMiY(82"3ael]8sJ,#K/)M[e-1q_!!86)2DF^0AjY5D`"^LPL2=.$1jN9+A6u.k"d1(^uLU@9Bi4N'qa^4`JqLS0(%0P8gZQiAU'C"*Z$g5+E0-Naa]Nes.Da_NriIW&BZs73JUD#AS\,jho=7%`qF;Gpuf%]4M#lT#1a0.bMuV1$q!s0A!,jVjA8G`M1jt-;JhB?AN#?L\OT\[bZ[Q>.\qQ5-%AgbUuKB[Fm+@;_mT>"0\b1*R'XN"CCA7"$a4i53JH]<*A6]%h""6:kk?%)8n6=LG5PCG^V#tj2`@Xmk6_F4'_7ppr^62lb$CagrXHi`E=kY][t&(@%['L..Q/f3-)u)<$fbR>SRRa9Ag$fcIl[.CQM`=qh=D&dWuTD[EA2)hIk?C-@t1[NR4e5b[_f:/^sa4]tX=.0H!/Zn0ueCSW>4Gmn>dj6L1>i&eJb#C2U4&UK>$#(>QTM3YX!'XJ(rI7]j81mF!^8+\S8rj>=%-a38-2_^pP'&$j[<>IE/.!`?'rJosaInbX='oE]>i!E9Q,:e*?[:F=P:<7#<]-7+DM:6h,$7Op>S[rDLDB]C$m6Bb2IOIjcLjmi_2cM\,-9hF'Pb#\W!;aL#15E@dNm(7:P9/E&KbBF'fFO/$!N/\+t7o0GnlX\q-EZl_-'B%AHI4_Q)-=#6_\Z"+I<#1@BuaUIE#3r79I=eKG?8Lf;@Ye!B7l=:d:"A01m!YJcfc:qkB]^AF^%djP#)oQSfIH0)2U,\cA20;^IQ\Qca'5Pa`IH3!B+bPC]$psjKheOR!0,K$S[!H*;%ot+\/I12#c(\pC32WOB:0YQ&&iEp>-msNGQng<)D-XpQffqM!/K4~>endstream
endobj
% 'R1316': class PDFStream 
1316 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1497 >>
stream
Gau`T;/b/Z&:T\)s"N_2gf$SQ`\qeI4"3lCl(h:h[Rb72H!0J;mq)%;ofA1aJ%LU^#2<[FBa>;+B#aH02rDj)K"tA>ADX(1_##9[>U)KT%**nrNXs#Hpc(B!q0@:<$JQ]iKEH.CT\&LQcla;V:Lg&f=#S29ot"I2>n3dpEB!1!4s6XCm$a9.JejP\rhk^dKopEdk.\Ahr6:o0D#S4TKW#38(N]_3qWaf6,m<:H@ejcCP_'f)`lRt(GoQMqA3qD2Y`LQu+ss$o$./DW6e417bG9lo:BY=@+B+Fq913(S5a3-W>U'+[Zlb#@u!mIgSf3uWid)"4g[XV8He.`7LIu._/RS[IVBt==1)s5T8]Va.bkEi[#\),Wf5E62.S(hab%FH1-="Gd8FN(TM"0\X:,?qa%aK#Cl-kX(\!Cu1A+`s)Fp5@HmAJJ_0'F)%;7/&Wb7+gl/&Id">2LqIX=@]f!?>3)@5XBt$AoH)Y03-iC"1&3.j;>+cA3)Lu@8%J@ib=??%*Uhl0;"M4/u7[=-$R@'(H3l?`8eG;YbC-BVaeU`N&>WA-]))V?@K*nF:^:[T5>AC=b888)8_A7g(M[-!0f@nLe<\)X#9DYuJk:G1&TBU9'>ESfBK:R-p``)F3a-="J\(=`$epU\0!L(H_Ag:L'PY+h)NH/%LOk=!:DI\OVdWqm%euR70KAUTqL0<^[jk1eHEkg6&'_D;$Mh+f6XTd3`O8j[ChNoe*U*$a+`B53'0#.&ck/SNbrRd_pDc>Vq\/S9;]>Af4*N[QB#-IJS+.X3X`<3@SfR-Luk@]F0DM\t$)-Q*<8OA@^hBJgbh("%-;Ooo42C5fNh]4i:fBn]h3H[E?]6ge6lK.%-:M7n[;F8jRqS>pE_Q_6ZY?2ZGYPA\Bb>DdIQ(I![V\16Eim79L6`9OqUZn8*fji"&=(aGC^Sb%)_`H8"k]sFBldsci0tJ*h._r&Y4h>MWU/$[Mlbm1aNQ@qd/=eRn'4j(]la!kV(Z)0.guqM3Zp4EVj_Nui;;]J!TSOZd38=ABp93q:=%76a8s-al\11HsiE[I9i)A)ARRYJL&;cB:gDE-:41^cM`*ph,Vb=O?\")8Itha%ASF)f3FrApZsbBM>6,Z^9_K/@"YQM4b=J*&Wb%/p(BAm")s+cu$YTr/BHih$LZ-^+fj./fTEkS=]Wh(PCQT~>endstream
endobj
% 'R1317': class PDFStream 
1317 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1551 >>
stream
Gau1/>u0K?'Sc',nK6$sSJ<_r^7+I11S&8^RaJ?,,s]X[\;?]"8X&/D;#^FI:-*)^_DpSW5g\Z2If9%)3TgNr-%:sP)m03*0&Uc1!84SY!HQ45/AAp_`S'26Ck/O$4b)fom4!XD58g5q58AC6%4lXf`Fji%(mZ)XDA^1k8)`FnRt;3VZ\e>B'Zfb^E7QB;;O$$Bgr(+%j0g=]]7'R^/1BEgdaKPDklV-AD(.D:oo3G3HEjeU7mbR^R@P;O3s*?%?4$T^1h["I))lJ-=]?O8?nN3#Uj22+^ND*i&Wlld(9A#K0A,&G9g$dE.j)dVV1jYY:Yj5tPf,Qr:c9m%NJ'l\.\W2,A;<"0sFaJ0p(SoLI7CVF^)K7*%iU`8q0o):!Z?iLq(%Pe7a66i)o!Y_tr7ou(e;H#Bl;Jm^G9pq;abUano:3[l-]P2.0FG9FD'%K[X&o<*CRlI:tE#,@I!STZ\Yq@ZDeaU/[Y,$qe8i`XJ%6b3KI<=HME!GD2BEf'*)'QS"lFF&H]3b&_kHnE"Q_#ZXIN`L*Ub77c-T!mfX%O"LV?D6;(nT7r"l0H-:D\`gh7trqfNY4l-`upcNM:<^kYbFPW$`^u6i4?&)mm]o63HS_A\(4?dX:!8D8+J*)F4L=b*S8em=q.Wml:,JJR.LYaWUVATQT9s0dtHgVNSB4$ennc6kQJnR7"q]g&9$G/@7OiAj$mHGe$K@(3M(5g0Gd>BG`-1(0UcdPEm7ehZJ!.]sM]c#0jlKU5YPW.j\EDN*l7&l:nhlJs*XbJ5cLOYs3$g)SSB8?Ys1S?)D.mJ8W*G\KX*p*#S"2-_X_aCC8]?Ht,3_a=(F^+MPFkJF7?VT<8:#Y.cU=3K(X"L]0]P%dN[%.jc&DebcK.N/!@?l6:Tq#OX*0i5^m&`U;r"@qbVsEK<1Tmr>+>qdA=+n1MPqb^[S)`qgtmFB17R+!WPL=W@endstream
endobj
% 'R1318': class PDFStream 
1318 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1447 >>
stream
Gb!;dD3*[7&H9DlreJmLb#X4USJOiIf;hq)iL"QD[;[\*_UG^1Y-pmH+a1C/*m7.T/>!;nU'gG&b_@57pqp.^peLUWK5X2jNV<+%;iD`cT;0GkXTjOfKsPQ5.)`X#L"0X)]a:)r'!a&XRuB^6:s6QS0X*)qE?PS]5)3ROVk+f21Z`,GS:Q(!n=iA0Hc)9OE*`*&B7(#]Hd\dW]B-^$cNXh?DB_Z*hkXa]\LN3UMe-7U7(:B\L\(m2Sp_*F4Ve/h#0p%pH,()?t*jXiS&CH9&L0TMA=l+`\VpG8tWa@045Hn&l>>G'/^3q>d,]"Ah@k^$JNGY$4)&+SgRl13oI;*/;htr(H@jJgU2"@/egAE3"e_]4,H;fC.<+#eClm_G6?\-o\W)&&VcRW*rJZWtB/!qg&I7tuu#,R*DXJ$b5_fZ(;$N@B[k8pRX8k>g9bd4"_m\$E):a9_5gNo(W^8>Q8jdskdG=Gs3N4rn@I3#UTR)!ISd\0RmA1;0]=8Jh8;sJe3fhOWmEo5n.#fHO!N*4,l8(^o;KiGMTD4??Ok^+4#kphKVatMlT&q7<)Qf(H*`67Fo(KGDRLQVnoTLU:#mhd;"UB:V4KEgLW8JZs_d:FLe4N];lr\-EAh3a>o,k!TLVU>q9,X[W3dV?%O"Z?99;3G?.$lr"^/0/Q?NcY.V%PRMukph(a(+bE)Q_S`'O'0)Viokg83f3sTF[jpifednKik)?g?H8&k!,"nUlXfD%V-hH2,F^C[l_?.",lb8/6N"fJ)d-sTVO%m=VR&6W`JA02Hm5$CApKo"4j1hXgg$s>QG[oC%jlk[9k7HI2=mA#1O;-I=G_D&Sj4FNfd0Vt!Z.gL_(jS`)5Y?;[S!\p"':F`L$0&T"G=f.cW@6T507%X?F3tgp_!!n:UP9dLFuo87GFZ!I]&ZSt3'=:5;D]D\4E%Pc+-Vp%*u0bdUQLq.a:lB@jhq+b'G5%EH1WK!>e&X9W56bDAlrao.9@lr1][O-[q\KMZ3F$'HMB=%*F>&/bB7mLS^N4rc.JJEfJWtOWSX`eY)p8/0Y0T^!i@#?+[Z:4S#rfdmH.CT@Hp0X]7]Ib3?sBq5+;5?Y,F_RY#\K0DY.dLYp(3<',@P^kub3*iGYGm*Qn=;[+Z:rbPAb`>h"/GU-,YP*]mbGUChQiebUm2h&F]*endstream
endobj
% 'R1319': class PDFStream 
1319 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1447 >>
stream
Gb!;d>Ar4d'Rl+-s)>mi=V:/uma\U@[Mu5=m4)*eojP0;`ZDp"j.Z0CP5b;@*o"Uk3".NN)\IWY\+@jgDP'9]_%..8rY"-"(If&>6j7c=6m(^PIY:r"o&AEc"Y&"@k0S3LLO`rM6fOICmM$$CYooHA?JmQ6EjEi;O,P0>bqGn[I*e5#mSB9H[)>BrZoKBIQ/q1spl9b[-,5qF_U*,:^os-<`.[LLS%M#9N^JrO*1L)E_7jF7hEG,OTe/$!Ps85c_oO+N29T.VJsYe3SS!J/6W4?bp#E\9m3C(.3O(#\2L<6@T"UVe-OqGggIcKo#OGVnl1BZYFV/HFAi^*jYRB<"l#WeWV$+lX"`bc8,a;4W2)kgF*?>a$+bi>,i*Us%7FXI1RG5PX+82RiX9m>O5=mlaVI!;+U@U8266@O`SJY%T&54#r[M*t5K&a0o#00:Kgie;\&1TBpO6fT0Ngk4XO''MQ=8N`mOhFGB>9B%-FI.*\:1WRP*+,s\7_1;*(+E*N1HGsp0=FRm3&*W>tLl]j$_'hSitV;GRA+;3hbg@D'q^nd-j*5Jq6cX9$D0Fq@Tc*-FlbZrL'm6SIi+,)EQ@C'1f>u^VA-Fa<%Me20d:F`.:%dZa?$`8W^'2o\>Fj=3runuGmN)4<'O?$O/q9,LdT,>OU.Zl)ZfBi8966nTa!jECVB4#M6TIJTqVZAK,@T@H4H4\gp7#XJ\9H94A.j?h]g7`30NK0cE/E!^PU,8f2#Mo?M3?,XU5@a3LaD(&,SU&l*2$l+C?bh*?N/35Z)i7\MK"JHr4eHdKW&\7DR;FmFG?:=YT3U8*n9H_c<3Qc)5WY&3E0@&Y"!;%p[Z=icHJAQ`?]H:Qt[>`(44r:U]qM0eDIThB+u5]#UOZjB;#C"oj#mH\I2QJ.T^)GSoI,E:k6Uendstream
endobj
% 'R1320': class PDFStream 
1320 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1717 >>
stream
Gb!SlgMZ%0&:G(NIi.sSeJ;q'GM>Pj+Ic*P!6J^)p`Vn$1pfs2g=7bh(#+5q+XQq.9/.*h>GOfOfFhgV4>V&'8.uF01$)b,!r+I$hPCOU"f!N6Npa^H)D4LW-]b/QAi\H8FDkh%:$?qPh&L`.ZogK+jBFN(4fNfGdYHB2_#R]n4NbLj;k2/"gQi:^&s\3b9=o:Fq$6:n]3')CHql%CAP!$R+JeI6oE@(5s*C#YJ.AN7@r#D(]A6;&2EG)]_T(n56").O,!_VGOHW285%:%]B3\C6+"KSsYf]&`<'$_eah%!Vi$:>r)pK@RQ??N?9"5n(MgDQ\-$[2PVDUdfp6>P1L;kS`P7)!@E$C6Npq@2g?T(,34;_$ldE\;^#5UjRi7^o!jf(p+1T(f!1lN2>EMMoB^Zf/*`pDHV=5mJ&ue!i!Y%:U5;)rgn39X"kTCQZSi$*\eUbgCH@u;*naV-QE,)<7VX2%$nM6[jengcF2/Z+E'D'"UJ``F=#/E'U-85l,5g.eSTDJ%WRgCurD0p9hU#aN^B(SsdQ1^jL3'caS%VSb!^o$P@-GUQi^4@i(2*Wr$3,"`W/\)pj/FMg-ToS>'%1#pkBT(2W][HnB-Rn=Fp)mTSY&/5^6-N\o1U-+%;WPA[KTY7:672XjpI4U=3?&5E_mpuqV$?B1+`G=ic<JT+=h="loGB7'8\g88QjP=U153;m@P66,M'9[W_(Tcq605#m"$fY:l@48':,V.)5P,g@G1Dmbg2]#+"V4jp!EVbGLKcMH8eNmW'`1EXV3I2D-grl&WcH*KNH&7Ci5Jb0h5eY,-.MR>MZnH7g4P:2$X="4$BJo`HBX5R2RiA99V;c>][Oc.\:t3b#cgS6'imrV.'PH.Kgr^PXU[:;h@B.FP$ZI5@g]FfphoJd5bYEDeQeD0tY7SgO]CeJ>h/edZY=EKEBHj-oXobQ#H6Q:W$UcU#qaqht*0l+(_!0Ce+r>j<8H68"[dI=tj7\Bug=efGg\6:tahQe^?L]0#^V7Smua(ha`jBt!.JT>XMnq4A"0NLf)&JT98TRrd$tTQ&07=Z>N42\?dG`Y]I-5-`QZ:dGS]b=8sc6E-h(68_8s4~>endstream
endobj
% 'R1321': class PDFStream 
1321 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1559 >>
stream
Gb!TXD,]IQ&BEZa_fsbD2[uKthE7?PhT5b))D?,H?"NZ;5&@;lFKKDiK%qg3!b)g"0taGgaaU";S-2c:m.JJqeI\3VK-W2D7UOQjfVW<[VJ3Q6Ukr@:@aqV"-q>U5QmS/f?&+(aLbN*8H^?qfKo4'l(j+%!-uV0ka#4!hca-="uhE`RW8a*9p3qGDke[HE&'^U='AWt#'/cr'#;b*T..4s3i!In8$&A\W*GtKbHFMmii1%pkO9mfGb9^rC/%WXmF3kU*uQmbL777r"!BpugpJKbekR%eXh>BDV:r.\=k6\-i%0A;OYiVPnBTB7S6d2Q!.-\R6nP05s7UE]l(L^K^7YS0nW]HD!*kL62(;'P+]Xg47rsdL)_.$"6HlN3XDtoAZhXl>fSNU-MV>]WEh=<=WN1&IB<&iX)WNk$snt:GUuIoNYUL$'BKV*t"9@Ke_AM!'=UO=o%YW3%GT0@eK$n<4Z1iWq]QP*;5"_&F.&7VmeXTUdQ-8b1iKg2/M6'#$PL5=hgq9E6qZ:TQ'eOnda)lhXogoc$cY)L6_)+1"1!;@2c5PS\<8^Xj!=j=fH;=8sI%+o?sb:>HJ\\N3flJ#/)X:U#*79",Mo/2us;1#Pl8Om;#h>)4XU8:jeFER(\i3$fEOmbeU]m&aZU\eq1aT(r/V#PXeOrEfE9\kbk8N*s3Grhl:j&aYpO:da<&]Z`mF41W]=7qc::$D&-aBh#l0,C.[HG[`3Ndj-ATo&h>oXh+i7Hk]LQiP$lWCZL\p[NCf.*i(1T&uo8`V29*J)gKsMXQ`9cW9>14To=@6ap@eD0*IZQFbsRiDN?O.9lEQlAK+`Vio,][aFii=;FV!D-A9Q=R\MH7+-`@\0M7)U]q.\Y?%T.`c'*gQ8!C>,9A[Xk4#i-]DaiDUuHmHS!XGd3.!56kXf@=o6XRl]dtW^5brk"1>OFp0L2*o\>eBO=I"@eYFoJE\c=^q"WtFp'8d[kPQtL+*(],l>qIXZF\IVRt$KlX?om]D4=MC*ffq/Y9Fmb`ZO-1@.3-hgI])k.9+kF6o=6RZ"8.jL-Ini`&LbCeWmZ8uKXq'rl(RbV*NMo/jAW:Iq!bTssh1PgJ@b0RBI2AONX/3BmpC3PUtWMBu]66!VJ,D"#,8d\pf,%/@,m1^^?\$Q$MF=f3FI5%!)NFshY\],,0j9%XND95Pooi.!if:+BtK6t5JHc3Y7Fn$,Ch49*rp7iOnI"/C`m>>Y4MUp;U%4(=A=;ei5;6Hu_N4LNV;K7>q]27T+e<"tU7@]KpPL&;`7\mU$V?_2a]GQ~>endstream
endobj
% 'R1322': class PDFStream 
1322 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1306 >>
stream
Gb!;dD/[lW&H4k-s5Cno%^@S1HOq;S5nW*FK11/rI.1%C$fn-DDTD`>[Zbf)gJDN8'kl&3,o>H[ceWYT#D(!HOSg&1!9XraN=d9@U+%5*E$0H;YG:-QT>sI#[WOaN$`stkn(S$R]o]uX%8:J$B?*Mi)73TCPV8?mAKALX>h0OGN[U;A,pRM:jD9d],eZ9jkW;1nV8#gsGH4du\G*"5_ljd$Rh^1[iM6PT\HWQ]EcMOd*Wo)I&;FX.[PP_2g\(Q/0q)?#(b$2j+i!'=jauY4q6n8[':u5sAZCj]f:[^mN\_lM8Lif=&_&bPk/J-3lH_mcalM^ieu_a,P,$<8MNCQA&$k:8/j]TRBLCo)bV%t;*Q[g1kUAnY"@Oq?9S)a"iMlF#5b$#MAiS>:aR_Q3MCKT4JtPS7NEict`&,:j;l._JF_SH?dYTSj:9P@28NR_:##HXD5D1`Fe0QYS3)*jfb#!#iX&AZ"_D-SJ)Yla61XSDOXFbi@QKJIc!Z=n)B>_h,nX_n6ES'gVYRcO6JQUHt[<'&4fsp2$p&G\1OQ^Rg:R#"f,e50ZMI;mK"E;Yu!0/SlUei%k[]#]jJ+_I2bbL]Ii[(=''s;1lLcg#bu7V:3VI>bF\)&gOO8rMB@>8;2L/(<1r=URH@Y(/7pcP@O#F**o%7\o0K-&i\ArPh@F?mdUO'(fDA^>I,J;FP,*QG9^ftqg'bnQldk7C"c-l9jHW%O98s>e7HWMSEN8JYL,BTGpCCk(o4^(A5b/2bg=6"5TP\p3^-f5E]5)(eY'G>7[/`V$4m@:RV2ZAe:nW%lG\cQWlGHpGS[9`*;,M0AN:V!L-*`'+^;s+DNoGj-6Vgg`+!+"5OUV@@'Se"\,+nn]Y`_OI3VDP?^?RL%_?Hq?UZ7=Drl1LaL[R*KNlAP3.%]Y6%5,ku<%1*K5YEle)5Qg1bVt7Ig$hI2V&L!:q!>$C&T3?D94RbK04!@]N)Qo_,f<&kJ**q.(a-M5#A\A\mRn3j[mA0&!RY"m$/l)WRqNr[sUCAEO!T1?]NSZrc+ElgJeR$8&#(\7:&4~>endstream
endobj
% 'R1323': class PDFStream 
1323 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1352 >>
stream
Gb!Sl>Ar7S'RgRSs)=&IAXI:2G88k_Cou*?%d4I4(G'u2-/.K(9.iX\p3urg9"&k`9Ugmd%LEPJ3[2?1SIK7bpJJfU"4DTTO2rII="%*pPg%?(e"uTEk(OT4q];f#:WSK9ualaDV`@ZcC5kpo&ju;fp\/G=tgoRaaa,)q%[.m_:;mlUL@KSsYITodE-$Vn!^#+'Deb:r"0=]aE%iWDo0#U3rFl1@R]egB1rrLD'+@I3[4kQT7:QAk=COioXeq*i]Ruq=*k&.*(*]^!g5k:hFJ9DBq?EZGO&qI9Vk*h3(H?fo&$K26p(Eu&3FS_B+_1hfQ4BAr5[W9,d-#Ik=/_10/Kbsq+2(*l[+!6/Ug*I(jeS1'k2\>mAncqo`M+Yd3rTdJLSh[0I:l.S#KSf!/kH87EUE=dVaYa?eK3DaY4k'iV$Eh:"pKg[N,d.2qk3-(NkB)^H]H'Htp^#\*#QC]8fQkl=QJ%nnHcbHIPV]XgHVC!XEH>SF3FeA?HVeq;VkCrNj?^(J3q1SdM(*C<&m%]3a0g[03-?ABSPEmk_WiVAnAFA7K_jREW'j-fd*bJE2+@_d/s&G_0_\9@RfA@VJBM"J,ABEZ].<^?GcZPk@\&e>%>`u^Jg8r#Ahku1:CflbrUZf&?f5^)!i5s?l7b1KC:Y^>@hsf4/W5MQ[D4.VK/@tk#WG45X':t]=`Gr+`\85/>nBAH[0r8$YOY_T`_F\BK*;HlW&[mnlU7\.:H;`H8>^/VhV>6e_K)4'4Z[^,*fDVN`*u]_/ANL'q:433,N1SnVWGPWDXL47JXLVC*8':Pl?o^V`[1a.OtgA'hNAET!K_2_%Ah3X9[8.,g@Q*?"O6F#8pZMp8<@H;6igRQ0OI5/u^R4kC^pV!Odq@"@NrV:,7KH)FU@a"Nn1pJ1js!!:o?V(mj'ZY#VE14k%f^t44?7?gp5nr3BKq%R0T9e-gM6Ju^s2m]iZRP-rXe:PI4jcqZ;!lGbYi]`8oA39/Km$mjZ8Bc*j$PX1hgN/P\3kXHUkV0d9/\t+Jm-9m&D:\X":kjAj&B@-TF&iRKejjq8RPbn;=2Xi'J_P\uXeeb[,mjKme(o8aaFB!PJ5nL=IrEb'mjs\'pBU(?OE#pHC\A%eM4TCpJ~>endstream
endobj
% 'R1324': class PDFStream 
1324 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1336 >>
stream
Gb!d2(B$gV[p7KoI/-oUo6n-.00b#8TlD)j)tp)%L;nTnm*W?S&p(0u2Nm%)rQD?oeOgI1"Gan6pWgn`BS%>2'NVm./j?&qVK0s/R_[eH@$2O"'1AZoP=+&%/89`8,lD)J9kWuJ..;82&:+V'Uh>%qJ#Fo^pbAgnr?T^L4mSsA/(SgK0QN?kSQ!>\Xq]X>V9of!QK[J5snG4XG7AVV#6K2&c;7cD@on7kps"u5lqYh8H#9M$a-L>K1H#,(2s"#$p/>]5$DQ1/QfPataC'dm;XX.4Vc`0<`gGK4_<)5AC^;!8&30Up?4&7B/mS\'&9rTsAZCmi'WPKAICiGDd:[.S4Wb!Z5G-hos4%p`@<56*EG35,*[uZ=?qkE%ba@>.3(1'WFGc#o+$aeC8an[#-EJ$SQmJ.mm3%"$$@T6@\AQ_ah;_e08f92R@bQ*p$B?Z3gE6@`aQp3eq^>#-sQL=>a!MA5r.2:"uU>rE\h'\*kN$YaN>!k]mfGP^X`)#BtqK/muOIcg?C($'e>m8i/WGA628c?6h2P*"q\Pp,;lIoNNT7uI(IOO]5H(MA=F-Lk>gj'c"-a"&TG4Jmu;c?'rl?0tt8EQS?OVZ:k9GT1H/%6Z.@Ko+2%T3gd%I]?GP=?+isSlRVfJ4k+mEp><&-CLO@OR!7h:KSJip):Qr[/A9^MS]Y(5kakARs6@9lU[\+DKguU%['Rh3-*imUJ9Sfkhhho&:TMjMCr~>endstream
endobj
% 'R1325': class PDFStream 
1325 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1216 >>
stream
Gb!;dD/\,^&H6"8s5DI'FBTi2m"A'eUhq\eV68Q@^5[P3_*FlZYf*Vb^OF0/0B"KQNB3b6V'K^NnT/p#fgihU5=GP=NW;9>ctF"6'`:-+caE-iSR@N0/m)ffuTM-Yn('XB^>.ar/\P0/;na9`Kd@+C1bX#,d;gn2gm56b6P5X:jtp1fkSjUW!qL90^XQWNDlql!rFP/n\W\*"6X67r?SY/4\M3'')kS?U<;+>fVD>4EeN7]Y*G5.F[cp,"75kb]PElSufqfEXaHfFuFQ&AjF+9%I*dVVj<4tP;!`bc6]Pr?bmNjA&V3+NlP8NPf-)q]eCKIKc8]#V<0C#Z\P(Q0:!_i&CNMd?o3nJ!R8=CJ3Kob/]+<`/eMi!R(2IQ:gog?;H]Lq3Jm%>\SG6:m_r/6;K]E6HCE=*dY"i&lohsC?&S^+7C*=9/,79]$9uT7ZH#dbL[%*7Ec]ZV\U)4H@OeeUgeS.IWi]+/W3hAm/PHX8W+c!$.AjXaYH6P\hTVbVdl"MP',:LOcYLL9_Tc-It=>Pk:$8KQ?p/"g5S61i)JbiF6@j]on%%HCf93tArD9bmSY&-Z.LKp2$MY/>[j:G]EgU;7CpV]q8;JWl:I"KQpG9W!P:S*cG[/K6/uSDXX67QpD,D;_"%31'lk`fu$o>HS=VYAf#c(MGsA'*?f/8GD*?=m8@@4$K;rtGH(d*f3Rb[U`YD.gumoJdZbWi\@lsSaR-ofLOkbjZoCrKTOLtk.lL31gNgt.G8'(:ZorZ*,34T?fK1;ph&BV#[_^?n;)CgrnIT`>EYq=Q'i3k0'InZ8bT.[)[/)g_6(89(,1/RUGLk%Na)^@hTYMTQ2-'j,&-YkO"<2\^SJFs!!p:]H.kbIQ%Or4$PnT8%\W$\f*Imj8oendstream
endobj
% 'R1326': class PDFStream 
1326 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1429 >>
stream
Gb!;d>Ap9+'Rl,(s)>>@:0$$W2k-hLPhj8RHY[Jt;X6N*@1oHriXFjiZG4,kJ.3?OLZ!&/8sBVDbaa`4c5hH_IZXKnL&c.Y0UX.N3\51MR:?nrn)7k=\9JiqTNp'Ra0qa)#c@<;N#^Ra3sQRj>\/,3Mu=N^4@=$H5m'LBH'#o?[mD+()S,rY9:0Xfb`2OnrV8-P%8iSr=T/CiOT-YK45VmUphiJEO$&G*)!$VP'8Jeaikp:9"AEZT.3Fm@8@ZFVh\'VYeAdM_3fVe".VNo43YtHJs7Q26rjUBVX<-]/.5*Y>Xb-/",MEM^,7/!<2[-8$2%5[qZ?u9i97!s3:ELI&VLhmmi#6scbMXuU>i7dHO5V+=m`(.:27nK9X/bcKF%4bc:(fEqp<9KaCGKR&[LI4&W+s[=f_Ds1::XOdjm9s$aN28b1?,DgiE1C/*sbWMN.`J9MSQ.=2W2/([Len$W_qM.:V<\/cb/Nj=Ge'8@D%RZn/.=`9*?0T7mCVXCE.=6-sirkCOMUW'E13-D9htjrO.tT\#8D;r18]7V'/hb\5[)T?J-KQRL^mD4XFJ8hu_3o$hmf&om3t(cIV/lXRpLIG?TbDjMRuAFp>c$"rckq1F"K5=[uI1t4H,0-ha'OI?:C/l'g6[k\/#GEmK=TS1`IqOW`4oai5;eP2&1&$IK[C0to,u&1Y%aV2]C/9u$4\>m"r<%+?Fl.CqMLK>A*+BSJPO*sXeSn\gr,\,bKgdSN*32;W:K[cJn[,+O!Yk0\*D!q#e-sDi\'c]D;^8&8sn^P,AId0O=H03CQY\%E-2`SKp(Fe$0nN=]iP/;VR>Gubl.+S9V4h=A56(%*4mKVRHL`h?"bSeU^@LbJljt8-uU[4]UG(ki`-5oE.b9^+Fk395'$;*=4lnEY^&")1:VPLhK$J09jLrN>mr0tm_`HFDU(:6?GjuS7(INI=$AM90ODfT"'OjBbWV&%T:BUDaV\W^\VDoNcHApZ%q,4cFoHqgQcVnHq1g1FnsT1LbWf]//#)KDraFQp8UJ;O!sTSA!n2OJU&~>endstream
endobj
% 'R1327': class PDFStream 
1327 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1375 >>
stream
Gb!;d?#uc!'Re;$rkk:T@QUuM&7Et$G@nHi5:,+rH_q80CUqZdR_!a(hQlnX0bSG`qTae=Ypc(?"qf[FCb#l\)\t8",(le"rH*/Nd;uu";Fc>Dj*JDGl#L&M!F][SA/g+*,fMir9$cXHLA,)/*.=2H/ImaPp6]>A[(/e8UEF4_n\c=A^PJrY[LFRWDPCiKsrNu\@^H)@P[@n2@`,p-P2B^KPQuSGK;2#Q2LapI_e;unT`O>Z,2-!cPdFDW>Psu(X%,r\_-HmAKLTjF7L$om(%kXSOl*m005*\)TED!_f2WPj75R@o7\eZ&q#_g3"]<92\Z9.b&'N`=CYWK0R`>HQAQl6;1][%i>o$_L08k`FiI?q8D9GDoU?#>gM:5TKg'=37!YS,GGpe@\M6tL>R*99G99a97K;`MVD];Q/-_/_Tr?dQR2lZ.8^Y\L6/CY6hh9D3s\_@6%+n9f-bNV4h0-6@u-dG8cW0YgQ/J36i*^'.?99gRQA/a>3jA+X22!9Bg=?DH=gs6Nadp(3hJZc<<(TjMo4^A@[S3VE#CV<(EF+C@Eu.Q]!c7r2O?ae9.O8m+>r`0Iiuk&mI9,`h2+S_:1U&Arepn"mY"dbd2Qr0qZN/0<3*SYtVhh4YYIKZHcs4PM:XJ9g45`E?#D?1>YdaT8R=j.C9*8S%!arDM_$4ZYcmg!G3!*g.#Bns0'b8PJ605fPrm]tH#WR%=rOgctUB+#bcQ>/(GREqUm*6^5M)]Lk75A]1tU#P2pf-V+&(?W$I5K;MtS%[?tg"e&Im?b\<.a^/#RKL,=4RTDjfB7+f>83.plgSOE*jFC'M''ue^ijW6rqsb<`kB@dZPa8jop4\mD*244[g53inR-X5`ULHu#HQV:Hsu'OE]_J)2&Hj)\$pVij2&U'g&DtL#HQV#4H]/ARD$5\di/grgYY+bX,gMfQCqO1:@n;>11F-gJ(GFCaF;pWmqh&a'3(&kCg,@Z=+N6/G5Achj&89/Z0RY%7ln'cYgl,3+6G3jH>Ms7j2NhH%>O3\,JY9[gMQo$h+lE!fEuqnUCe&\=1K4i:;X?]4HFR[4\B5,:G_agchbCsNuAF+jT=UXrrJRqnKS~>endstream
endobj
% 'R1328': class PDFStream 
1328 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1471 >>
stream
Gb"/'hfId8&:Vr!reI%k,+XHjrWV_sS[g*+.G)0ibk.UnKf+TG`$a2W$q`hiIH@@/S9cerF`:jFe7dYV`-LWJnC'b^Ss!RMTS`]K//GY;kqD:KO;URVo+,fhHi2e^%K[q\>Q@"6X.S.r&/"kZ'aYe]$fp[F.5s6cTD9;ZcZa@o!DUS.^W<@jIA)B>CEq)$BX2$HuNn+aGX&>X-I0QMV#D45^G1Ghu(BkbO4^^f*ch6g9DNqJiBp/sXKHKJ6W)_X/(n"];c$Y;W+u(7ZIgWdcD)1nG.mjVmQ&f^adoZ=T@!'dpB0%mlZ<.MG\."U:p9Gf8K)iqV`ZsT(aL>=L%=1&g4BKbM9Vl0US;-,PdC:4J0*u32"LuKbi;\hkEB@p!MCP&1iZ1No6$*8Rnib,/"5SRE:&XN%Za2+=45Op!HU?GD3C`%b4r3]$Wt_dt!E_T/5jitA<9O#11+f_WbH]5D(']<>Zrl)V`.[*09hGplXDS(sPTKP\#>M06.Z]ZPCiFM(tUgC@@sj?F'5OQ6ngqGLPXI!:U_$endstream
endobj
% 'R1329': class PDFStream 
1329 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1341 >>
stream
GauI8gMZ%0&;KWUj;eGO'5^Tn7@d_k"gWnk$Z*("@N]NM)d8s^G%E,!k`,3-V't#_/LdP``CUUXdZF(l,=aO7,;@(iP5iE7_#$.)]0UruQnJJ#;[;Gli7%VpikNYE<85"@e=0Ss"MSeMdEJ):Oj_%0"t[L$&C[<.bS)_a8keQ,$0ANp3N5kp#R2(+*P1ZTW;CUaopML=.k9.E))o?2PJV8',^0VT"I?ZPi1ShYfR#qjefX@T5"?`)R*`,_b.6@npY']K-K%u#CAplT/Cr&+9p0.<`D[aug"NLsUM&D0YtlMHYrJVu$F-"R4RH3/)]]Gfer4"_4kbmOSiOABA:oR(R.OFNl&q=H-Zh3g1B7iLo.'UVX6GRT:O=).$_=NTquW$p+Q[@&=o`X*^j)X7ccU!Ptr;;K`:_)g4BUl,[pECr9bh5!&3`8q3:#@8.sFfD+);U24+K:>0Aboe2b,=FC_?/O(A2bMqG^##Nf8l&J&0?>%eWJf]r$-eoH<=(^p0#:BtL26NQ_(^JYdtKD?jQI3r/Q9/kD`eH'W1#)gPa"qi>?n.Z)D=65Idafh7S5g($tA>lek`(4lE?=DP`YRdfWR7`e.r0j@jYHWj"&Ap7[(\2c^nZ8@sq]OnAk:>q629+gYh8NP^jUkm431%^\A-&tCE9E:phn;FeC%9Fj*g__T39TS,``9Lo?kiP9N%ZS_ctAm&");:S!6UaU2`>bp&5G$e'bZ#SAYWHE\lI19f]G7hHX4[`46r$r^1ffi\=%@-hp01brn\ujHK`;n^)U8Wesg+E,5l)OEY:P26Gq.4bA!]Ah:1jd\,HYSuE?"UCMDOGfVVH%EbZ?83EgD\>&9j?P\9o7YUk"iHi]0elFfU_7Jq6->aO,W@PBnTU7\7\endstream
endobj
% 'R1330': class PDFStream 
1330 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1437 >>
stream
GauI7hf%7-&BEZ1jF9/]`U8i?,5$<8"se&F4_-ge)!f)F#KEJiY-OEmFRAFu01kuK-(D3!`2W#o4Rmb?*dMrui2@/Af?k;jIL,lQ!eauA#3>G>(d>a5iUta1lRT=^lNb*G`\E&FKfp+TZ*H1gPjrLI1.@mp>sNiA_l7q?K6hYGaO.27bXY@"$gQn<%0'P#l9XFQ=Vs$)\)a);Z'/X->M/Mhd#CRall,hg-kA#NMYd+#dfD`)IHj9;an*t+%_UO#shl.Zt$lf:n8.hc<;;>(p3M>X%j#_!=I$cf?pUJ6&V]EM"L55'ZB:lHIJi\4`q%aAVeX'\]4.&10)Qi_@e=^UdW:@.lC?TJj7LutHBP>OM1&1g:Gm]si=jbO!,e$7L4HJ(/c13PF):i^s`O?0Q$0qUUE!kOZa1^P@`R1ZoA@iGKjrJ\P''CZP*mT&*];`@+Lnb9[YgAth1n!lmd7;sJL,ogl(V%ZFk)3QRFO\Xnm:1(e'NZZO-F)@5j,"@suoo1Ubqj6=Z>3aF+M7uCImZlA)fH2`LD15/H@RR,b6pk+`=-Kp]VdSc2@f."RccUTBM]!?8qOrE.*5]80r2=b53(>Clq=$SS9/X8_!>?h9,A8Bc/9!6UBU<,hf*6Z@&3E5G&6P\-F1ocT>1Zmla<'TT)9kZNWuPZ?=RJurf*6^lHs.L,Fk$m6rL=_tB7k=([NJ9Lp(pB54[8e.PC8ZBkc@Rb;0iXAoiM'2EF(70g2(-E+sQN-T!DKrI_Yo88n?![rE@f]Gq\K3iFok`Fib=FrX$+G(G3kX*\&?c[9`!O4*;;0]fC;B:c]*;$fs*1Lm*;R"sV$XSbQ+6BMr=QUmDbrkHYB?>I7X)+4)<'/;neOLFDYZtVW--"Z-6?EhB1>Y^Slp\-eMih7a)[QFCm;*]WHqHde24Eu(Rb+Jo%TiW&i!6@g**pK?!,*NLh_W#_,`%b7],uPo=P,7>[RF0^_q.b~>endstream
endobj
% 'R1331': class PDFStream 
1331 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1424 >>
stream
Gb!$H?#SIU'Sc&Yj?FXV`p1o1U:tFQgOQ):ciMGG/R#cIlp@"OMi/jl&tKm:ocknGQ5qEO9e@2%3.ah]0-;7LLSPKKr.F'SPQ>"nE.3K@=V/dW3C=%'$+pdD:VNElTXq5j%6`V>&WB3Q&G_pDCWZ^ko"#75MFP$co?/8?O.5VD4+NE;YUMfU*/kb,e$h01"h]TJDdLAbM\p(Ln&sJ%2c@Q>nul&MLUr^Pma+C9bV,DW4@&&;Ot3]2dA0_cM\t>bVPqT&N;*L#8P/<^*i.L:01\Zp'qon_:O?!fSGa.6\:kc$:\)&jP#5kb.o/d?"GE"_;F2c_9,n&/Yi*ZkA9K&l94_ArW"3,ljI\>8#7$XZFGB]Zb_2R2Au/=-#F>Ps%'Q$J/ShF\/&br@6`:f'W&)q'@8/4/mALXkjp;^*6B3XiV\Q7I2StN6B7hU<`jg[M$&^KH\>\^AicKTU([".mf&huS-\?0WR"DmahiW=hSEJa9hr6%VNVg*1X>#D`]3>ke)#/\&'hc_uMG?q,L]u7;-U8QaM]&iSp=W5/2-ia&Z*MEO21,]d!]@(qI\`@YgibT/da/e3M+Up@9AQS'@*QE(jbQ>GHrZm>gPPp&Tk%])begq&)TVN+L)ig52c&S1D5CSQSa\/ae(L&raG[aU,N:l:8,8lc*6P81Oa2EESb!_fTn_9=A*"-XJOf\XJOf]XJJ.AC?]I.h2ngUm@SNrL1>/HDL"uqDPm$N.D6&];(bnk^?+LmjH2n?Z\&)QN7@1LVmaR]q,t8d98__G_DaQo,24tX>9Hm2_8sm-S>&+jT=NOY(jUk./+hJ7>6B80\RL0NO;"P,[I3jgo3nrdS5^N875ts3YT_3BDf`YSRDqfT(2\#H&sL!d\"&K`~>endstream
endobj
% 'R1332': class PDFStream 
1332 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1429 >>
stream
Gb!e*C-RIR0kREeY',neUooLKa$gTEL`np4_g;7<8//si[CLtEac^'\Sau"]B5W2X,u\1I`Z7YVM_Z$1Em7\OP>qG$4\mu[>(Bd:,MpC6@(r$WK8hPdJ,X57Tinehs(0lcb%>lpP[u34LAE[8LRjg=DMJ+$3Ub'K+&rZ*(lb*-Y#G0QuFrb2*c$ogD1pQoJ0]?+ltX=_F9g;j%]9ZaD^?WJ$SSS6c"f5%3-ao>_,mE8"8]Gp&Fl1g]+mu@p=#gU:_M6=Qq-Wbu?`c;_Z["81EtiO?OWOZX"tNRZ,(-&)XZOU5sm1!XX:,8?j+g4P-kKGN`fcGVmQrWCo=dg4Ip5*@55k2cESiXO/f-EEO@)=<%gsX(j"RSP0KTIFL)lrE;N?ApUkPj*#WC4q9dV;((#n!pJki:R2=B#^RXkT4omU9b4e6eGFHA2HJ+9qi,4hY1a"R[u0fIk`EQ"\kDJ;)$'he(W1Zcs*>mgYZkoL8hm,]D'P%G-THnmq1oK<:%cX^&LO$[V_p>Wb20uiSNR%B*L74KD`WnZuSse]ScP`42'C'5)Fmr%EcE<)Z,NKmn(GrnVKs(JBDgr6rb0dT[/AK2te/6hgGY2M?m6RFU)Poi'Ike.s;do7oVq(cucl>,NE[FT>Uq(:]'dJA5"qCa9lBW1mEJfcM$QPEW(aD!Q\+XB"/g/<`.c[(mf9ZHli~>endstream
endobj
% 'R1333': class PDFStream 
1333 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1379 >>
stream
GauI8?#Q3''Sc'$jZgu_-D[X^L+gGZGGV[+eO])YX!4Croj3ScJ6)a6+XVLj:3+1Ru]lXk)1Z9eGiq;2SH@6iaJcD,AM7QK"Ym0%sl-(W5n+GFuR]*Cl4;>KBrJQjb2g]N^SLW5E^>cJgm@ZhD(S_\t+A]2d%(AtS5A?;3So-'YbVK?ic5"CKW4\0MBg`]Imbc&ktmQl/_'rc(W(XeVN:jIIn`r2FRlMF>QS)/]Qk!X7G]G@:`=W,[dl:/dT:/'<1`h1n-mIeAM[,Hi4EC%P<)/bXU!9qN>>W9##Bu?I+g4;CX+(i*&.]s/j;U,"'?BpP]DJBDuRAtbaiS'CMX+B;,;Qs'n4l!G1mDlX+RZQrql"I)dfEiZ0aN?pF6Gr=:]f.11e=X_jBX`^'_0+@@#IIbM#preCEo#*8c'k"i[oLDq;E$IHZURgLc"WuC)7327QjTn#kU>GI`nEQHlCJM:!BCYSSk%gecNFAK61crTUDm._[XQ3kdIp[&0B#8eT'9U]Z>=[@-Q19ms3BqJ_d9\loJVuYI5N:h@OC&KNY:aFZ"MN^g/87iQ)V#3\31h/:NV2@q!2d.Ck;o[#KC"J2o1CDs?P_+mlo$gQmIHtRG_s?!O-4t1M@')68lrd,5]I`f/I[r5[j5DlLNp`PNPZ1RIMmbct*4fc(Jl[eS(LnP*>/8n_mcVk7c:,t"h=m&OY:*@+q7.0@,3l/1B33>9'qLjA&l!VI*WX`l06^.U6p>aJ:KTb"&cM7q76eG$3*#T(7n*HP;09uA=7dAgAHnkT53TRV[="oUp5?GrI"FaPZNg0[1F1*k9/?mJO`)=p3E;hu%Es9`QCq#Man*eYM$oWLgV^0dD_fV4-M*#4endstream
endobj
% 'R1334': class PDFStream 
1334 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1514 >>
stream
Gb!u'Sc>_ndYo2M5Q_#U2IDs[QrtaFHO"16tdB2(Q?R?Ca:`&d>^:b?]stSQ=Npk;.*d%OX3Wtq=3s957omGKCgn?!T(k91I6OrLn=\C6Qb;Lp_7(AI(?mTX0P#N$mR\t0H,4('SVZs;AYE*YKOGl0L0;&:E[sUlgEhl6U6ZXZ(jO2#(temS^HFK`;dp5hWjgmH\bT%9]#sG"@E)[(unOu?pUGjQ@e2e`43N[$HAE"rJpY7/bXDeD3Z*6RcLl>RWrt>Wc'6#)MH[+pp@j491DOkWfY[u7tO/Sch5'_GO^Vmm7/*X5No*O\qQb4S.PXGM[pRfDQY+1jUFiQ2uBG;ND`MEWE2+qC%Hai78lNcWA(?alGZ6?(H`pBfkkMSW^!Nq%fl;1XcU2'NiTM"VZq-599I`14kOr0GD;7K8$*5>lH7Mgnsu0Dlgr0=hp&='eTh/ma>"S.f5N,[ka)og0fA=W0\Fre;^V![j=7@)X)=Vo$o3J#,l'd)KYs&6)999r6Tg9;Gq0#qO)n`u/jgAr8(&^;%2IP`W#k$*`U'#jWR;W"6WP!A>f/2tQZGoB;@#WYNb^_ih.oHP-+-NhH3icZ]1u4'^DY=0_)SZq-8Rs]JRrjWD)0Sl%@,R!"t!6i:6c8h8uZ&#.&f()J2tHC^uX0O_X&8`r6CDm).3]B[II-\B?JCc,!#j(/V)Hh(`CMM*CGPDiqf!?.WVi:"c`M$'l_*TC&Sa'/G`,lMCm9lcXdZE+M.^1!sMgc5FpWGS\OTNZ%D%-Aj5s)Q>Uq^49dN6XfVSpi!KQjrtdF!1+m#"h_t4/K>+?r\FFU%u_\`t;tgcJ*tVbf*Fdj,Uk\?fUsE[BI-YO!HLjn(gEj9c;9bE]6Cb7'N8;FTW%nJVT2Si-B-u)g*ck9iLV)EK9k<*@'=Or%mC*.k:bJ5Rok"dg#-j\uQ\eh)U4endstream
endobj
% 'R1335': class PDFStream 
1335 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1556 >>
stream
Gb!$Hhf%7-&BEZ1jF9/]-0ii:U41bGYRP9o"=oS@?".U\b8qLW[^A`%9@:#r^O@FS=0a-kZmi)/"'`$+k4_&%hXP7^[Wiqf*2W_&'=bP%M68f::Ks`Ucd64X_oZajFhA9UCu"lA*k2EQ%#lV!\N6Q].^cj-kjeh\.XhWL_X5WNGcD,gM2mZsbXHKf5bFs+"%r6;4>=Z^I\REG(q[01qo@Um-%#;CF);&cno7&B_Llp5G332QgK8#HijWCE'F/")R1FLAX?]Un2aA\Pu`:QN@>\XLTr8cShVb&0-NhW9,@sc+/L]"h&65'Wd2B#k,=&#%=fr8.OSu1E:GPb'S5M,%QRPeQ6MWK?f1D$Zg5]41#"_A&jg0MV#OQIt,rcrORgQn2a=2ktC8*/PV6nk'-6HFHMhshZkj=1VS!_rMmfK\3:EmjE,9cF:lVOn2:[;mJF(INC/t@+0Dl>A&cjO^tBB,j!CVoP%9]&8`M3kaP#Th:"cId1$HKEaQupjDC<#gH-BceaaL>1Wm[H:Xjs"%Um-^pM7L]RN(aQ,K^K#74""=tcZ(!j-#I5eP#>.X1/0')j'L^=6:mC">F6a^-C4.6=lQI[S)RQ8f*+&hDA*X<^2"l0!6P8Vb1,]R,M2WLC3g.=k]-)d=iS4,l_ckPUZ[gsWVN:GQ?NPcK*Q>+oqH6b[iK;9AQ:12jF9IWVSgQ)&jit,j>gcaF@*F3;$8n5"S8ZF'Ot*)X`etdcF#9rIMCB5oURR".S\Cb>V!Z:'Ya5I7^$GtB&^:n.iujTh[\L%nn[?;6Qb,CAT)6Frl24i28BBh(P3WR5K)KD+$\hlU.P3*df@Cl4rMp0V8bo'10`V.8_Yb*L6^MtMUkN%OM+/iPqPZFj.ouP74%eWqML`UrmNRlpN]@eo"Xn(Bm#B$?Ob1pQ9,u!Yo6_^MCj%ZPTeTs>DLo1O5WR/17_fQ.<'nX3#D)%AXWH-Lda>5ig(aS_l.sTkc.UbgZabP7PCEV/"$UK~>endstream
endobj
% 'R1336': class PDFStream 
1336 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1390 >>
stream
Gb!;egMYb*&:G(NIi.fL.2k_+?&RM?C"#2PRhcc9?oRsJ96@7)Q^"5V8\_tbjbmY@(1e?fM?L1l%692VL,1q#!hK?6q):tJh?@k@MZ=V+bQ1i[$\FH/+ZM^`IX[#P[^Iu3I)AJ4]&j.kNmC3f"'lhlL\!;c%GK$RaX9aWZkf91:2>YW[=V8G7E#E5h]R.qSU?R7Xf`X^lY;@fIo:fuQ\`mD&LHFP#kK;b+cGq#niBtTZu@oLhj5SrM1Bl@jB-DS3iFk1#P'7XJOJ*b@O0f?M>hH@FYoQ/QZSN@D$7utC,g%5EsF,"[WU2pC5%f3YUkV*825N4?J')G3"B0Apa8'k2mAjuNA-;L&;WBW'3OQ,<\?_(1s6k3>)(Ka\cVH(b*1MHk,LQBbqZR=,gdX\-Z.[(r$X@,c7X$E.ZR@j<0&i$hk.Y@)U&Nt8C11fVd+Y\ef@L8N3+>5k#/hCmP8fQ5NS-b?RR+Aotr6Tn;Pho7%'S5PLYC->Hb?mXqlaM9E%l$Wh%8>\+4#rMZBJ;a\Bgkq>^sS^&>.Z3uJOqp)^!H2cAapI)KYCf$asJr^[-BU3+AJjH_sJlbL8@[nbOSk=T\#m4?0IQPrVQEQp:k3IC-MAGn(?[-4&8,\(fsr?(`UX[>e3];>IQU&r(9FNT&g\KSnSVD2]+"#9msCK$L8>%4EshG)m/rTj][60iopANSG4l;dGh3.FoB+t;P&GP4H>(D7a>t<')`Z,fWb7V%h-uP]\["\!ZnccD]ZU*A\0%mV>h<"=E;hoJ%aa6r#/,*R!"_P(S6j!653FQJ^!!AWarF\\d+MYCQPb(C5Bs$a/W7,A?d!NL`(k*'>'`Lh$E"6^5hc'.e*-6$E8sPWJ(W9^u)8nGpp'6kqH^(>-=!B1X..#'cGqP@-=1DfcN*T#:do$#4n,5:qV4:IitXce_endstream
endobj
% 'R1337': class PDFStream 
1337 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1486 >>
stream
GauI88T3WI'Z]YHr#L$?;G8'-S#+u)c57B@*D@EIQb!E*U2>%[3"cs%qrpa;99qMr.?Q#ffNLi9cQD&]VdO'+57HFXMU:r74jGau(7ME4'k,H@UI2=,b1Q)+L4e0cH!l_pjk=E)DR$5=*JueIe;r.4RGMPs:i6SSKB7I`gmG7@g0*Z@"4)TuTm>QFnjoOO*c5[>&>mZ-P5Fg`\-tYPu8fPs?;/>U=g5Y@a`BGG7Q3fu'9bOgkfd=uUfjC4>:;c^M%.BbscWCc4.n31B_)sqA)=3f3j's=mCP,EBH^/71$V;d^%2E%`&*T::ajuVIVUI.DQ90(@p@5,mH5CHWj%>DpEpb\IU\TY=9SgnoM"+suRXZ&k,1]A,EBMRs_2_*r6'c>rPSB;5go7DnKe)k^7(OqsofE%m%UYit.N&@GH_7I.mZt75Ts%P))I22rYt@-;'3YW1\>nWkh^umdq];G8CS\8^-,N-l:AV8X$#G;\&I'D$S30b57A2kqnEpKF4/1*/U<$=%PceIH:gu%pH1s,fqXBmnLD0DB0SZIF01a;ru_&Ci>q[P4.O\U\6:7AZ6ogg9,I]o-.M,J225.emYlijY]n[ca&5,I=XHE,u4VB_a`Ije8(Wkj3:u4NXmY,3%[>"^#f5*?'-Uf\6?UHUjtu9klG6Z`L)#u0U5;*A("oB_3n)V0Yg;+&lT!Pq6a`0%-SbDF14Q3*1R3ZZb:!>sb(aIW!aU-SjdNRXeW?c7Y?XmE@I08YL>h`g/#jBBs-fpkX'C/qP9,gbL&ncKMm"@PeW?c7V-Hif=DZkg[ATr\;diV8mQ*&QQDjq)1uHj$\Q>XHA>m5qWOEC+nV1+\U@N\SNoJ#4^`8T:i4\`Cs,D]OU]1>AV2Ss~>endstream
endobj
% 'R1338': class PDFStream 
1338 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1524 >>
stream
GauI7D/ZI5'Z]*4l?Da0VGisnSc[Y'WP-!1Y*;P&/^l$uHf5N'=95>XXS;/3n(82?1q5CRRM$nlf_Fp-cggNc(`Dh[nh\K$\d?a6*Ce[L6%lI*[8AVJT7bUVkL1)L[rpK*l^L(-Z^E\i^?\-^f`4)%g-A_%ZV1`ZK1nIH%M,u[`o=ghHkeB)Ue+>E1ub-0apN6NK"n"I6COcM9u48$)EtH@K=>Ga8;4@gjD770Z;(/J"Ze0+\"o\VWaOS/,qbKfcHd9hR_gXt0PS?tiWeWSc7gW_,ug>:7KJO?na(Cfo+pCoE_^,ECU&WBIsQ&JMN19bdP-eW(3F*(T6_I8G*D=;AaD6^D44:Q:n_Nu#&A;sA*]3-P^5]knK7c\/kLf*..;kQUUJ/iH)]0-.8[U#-pRa1-S*di>reh)-O*eLY,C"=<2b64XJ<1M+>86"cg+GPX68nOD_W^)o/8&]8iPV[k$Tjp8'l:RW0H`;&O/SRb@12X#>5`B1!.2*-tP%7p12E*Z[AtVRXP0)Z;!qac(Ve2p\Y+[Z^Ll3#lQ;ERda>MrJUT""UKn<9$:(mX2?P3CN]A0LBAm/:1Lq'GZ1FnOJP*)lc9,CJP*m!iEdVJT"TE8oFt(l-i8>O?Ph0oJ92hVS3R\26]c^4ZF0d6M-&QY'flYUeIT-HR]=,iM^DRB=/]?q;6cmbgObTblP581Y9;)\NNcXsTh-^P:G!J$1kf,N"gQHEcWCY2kC!QH?mYkI%L4lOe#KC/J%uFn])p+DOA.g2WV:RS.'MK?GqPj/UQrVi8Gkf/U/oh-*E4Rmq'3Nhknd3Q`Ik9LMD_2gb];&TL*NWCtSX?A"p`^F)I?Zn^p;&X_k3AZ+O2V5PE2XB/tujI0]$4TPA3b:GFK(loV:=!YCX>2B?_j\3S5\V&'US8CaVVCk4#EXUO^?#$$V+>\@`H">#VBA&*ne9+5dCc>8?]AtHl"6&4TFcURf?>`/&NYLATi8$)Q;Ng@fWN(lJ1B?2Ta?_mNa5F*D+X+*].YVbsCq15:&#!Vc2]b;_+%G-0nc~>endstream
endobj
% 'R1339': class PDFStream 
1339 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1581 >>
stream
Gb!;e>Ar7S'Rh]ss$5Wkb"t*mDO-#oJ=G'@6^i1VJYcKB5YJK/9bL`h:7V:ZOgJZBVGu"V/(UEhnN6JT#TWAdl935iGW,Y)@gJ_8-8PZ#JIa*:i;Ma'c'PaqY`]I45o@3g"N-olJ8lEaPtF:mY%>OL3:pHO>Y]>4\6JK2+$_4rm&1_i",dha@;lN"IuE&fFka4<"L#B4G4L:>r\sN%$6k./+P^?95T#?9-AW3uB-5&[K%OL.GHDt'A:_Q$+.WEbrqUXl"t<8I3A1*B&=r:aV$O3uK!KhFH#?uL7LDRG8JT)`/4!nZ?bPhJ;Y_pf?B'Tk4;CuaIPnNO#f?rr:Ui790T;&smN*NXK+KF;fr/Z'_@k,`"R!r:nO#*I0N`+pk14jc4r3oH!$`Y:Gl;2PFQajI=R(u-2.-af5YS(q,\W/iM`&r?cMjCg&$AfGiTo]PUC8gW&6N_"/=n>,dF\i-'5Pah"r,HTthLOs`*U[+Sk7'@\n'S?]"hjji0p_df!;o??Ce6Q.npIibOoF`H9Z.g5nr_QDU6$s@WHVrI?9a7i4[:(2jb\@HZ4]PN`.WA1^>g7jTOCZ3L\]FKX4L26oK856?)_1kd7,Pb$hu><@^^7Zf-VI]'ZCP5%-#89$>HE&u-RKbR8GMM('q8JYO=7-`)R0ZARaa5GI34h#W"2PUGj'.$H_JbL@!'lu_fY]j#((.c5H?&`RZ'bY%g?kTgi7:+c]+-X=mPCM=83n[fPW-;aKG`m=*H'2i,.H/Q?MftgVH=>0i/RccQ1i$r9eb=ehJkjcQ-;+-aDG,tg7%kkpX"U4/&gM!\Rs2Mf3]7cd4-,8p^%&jD:m*6mJ$^h#/o$]1\):^ff:ikTne)bFO#h/Qe/O'N,H0m6_Z3mfH?9tc^f4.>04ecUY?\qb7&BWYeBB-o*aZag57p?C\#7"lj7`r+T!2(dXu\s8I#6JYVkBRL6@&1`[_SnBMD*Tn@t@KS^plH5f=C#Z$jkoUHjcVft@jCf4cr\!7uWM\(Q5"Wf8Ia8",DuKiQV,.*~>endstream
endobj
% 'R1340': class PDFStream 
1340 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1542 >>
stream
Gb!Smm;LuB*<'9Ds+Aitku:!>2b:>NU?bg'](W:2dFN1$K,Y5Db6sZ(6LV+Mj!9`EKG\`OlIq+fiN`@Vq7ZUe5bPAha?NrPJ?'jWhEV'`0Ur,VW[8S>Jp5,]P:rg]0Z.)&C-0!/6*Fq"d'4TLOos@p*5dNJStR*R:#tp1DV;r4J6F^JMM\3\4YsEWarEjk56o*@$UBa%&u5T7YO!5n;Z=I/pc5nn,^tmcQ&I:s@[p5$igtNQdbPimf7DCPhQ;l(pM_[mP\k,oiq2W43k]?BE4tH'q,.R=.lmrfOfn,^po'm7VLYNfjfe;!SB3UR9Xe]VHg',->eOt$DCE88k9bTbO^LDq-(X6q54o6pZO-c4-f/L8+.JJlJj^I3Bb2%$4gjf+kEUu_+U#(ctS_;@Kcjl!9CWimUrJ#kl9$L=WHN@P':"A*f=kNH1a6J:od92PU_IK[**gkR<)1!:8QreSC<0#F%^=BgH;D]k*UkM&mFIp%j=O%8A@)r1N^VO8]>;m0]4>H.j8+-rJP(*[g%At0(W,oABfn]cT'_G/$eW(PLdXgUR!g5:-1;7q^hNrrN:@I4q'LFh5g"qqerA#k2pGq\Y8UAH>_Q%3*2J;F)>4P04(:Sn9%dLGa\G`i;ibT.0-\YZLq#Zi%QXRlO5D=?Z7Qjo?o)5XgJR";u;%JT)LW#]6)\DH.aKH]C]Rih?KbBF4DO@F=$$53Hcaf_)ObSeo[cH5<2\?adN`ecJ^Y\@I_jXArVdCag5gFLN`%odK+98B\j@An&5eoV(PW[abq8/1js/+2R`Og.,Ouh`ELTY`B[KV&kE^hN`HH[n(QT#(^VF71*1dO4dq$)rD`ILj?<4.0dSI;>_V$Z=4p0BGT^A4.A.h:7m-7endstream
endobj
% 'R1341': class PDFStream 
1341 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1639 >>
stream
Gatn(>ArLj'Z])UjZ=ID-#AhXO)NsVXVB2p]5=uN2b6froO4s/ls4,MnIW#)oUUmH(u*0J3(1jG)>cY5F.6YN=T!m6Haj%m:#KcF!80&o!HS&i9Q&hfjRhNjdh>]@p&)NGfE$ST1[(UL&,8gYJ5>$\iD\.>YoRe<0NlK_h=<',!*S=(Q@.(?oUu,OjVdq90?B4C@.L/,LcBnX$V?rr91""db1#S@j`ELgbe$[MX3X..I;G(D2gLk@g0dOq/#/HY5?2@6j?"[]YKQ7pUjuZ3-)hlY:@-7)6%86-1%NQ<@Dhc,LDRS_q'\Q/:\im]!u,QgYdq>%Ks[VNXm#4Vd/rJg]@jf.F)#<6m(Im\'ShW80VeG1YU)oO6?+mVb=OjOkEfnGOh3G_IC_tmo:([30%>iO(^%MLq!Q[tgTK';>W6>\DcLqTIGHtCs826InNV/c<:8G"h%-Ng?Qm0aF"-3UNEm$;CPa**=@qgQqssLKND.>#/KMZndd(^)JC6N9#tW=V4Wd%R/=-3YM(,#p]Sp9iYZQ:f,[l;REbN;'V51<*8oJs)3j5RORPC7)=,[i^2fmB9Baa=>&[rg]])O*]_:Ft7Lu'H5F"u?Q;i)O%.C$S#LX6T4*SR\#ig;4s+_l^oo;Hhf5h3b2t2gu@R:HGbG1dnNpa,/1pk`,:^'2:lS(c?=$W(j7S]:S\g0?eA\.lqh8L=DELP+X75ND^3);kD)]sFi,'(s^i*;^X*/&\PTpm9!`6joO_33K\o/AS+gBDi(iMC=ClcfL"\]]m&Z:J9(cHqekZ,@e'&RH;9.H[eh)FM*/mY)i]P+#N:&LtB5'Vou@.eQ:lVU`7n3sad;9U*1"pc1WUU`@BM.al1hV=nE_3Q'F=RkDD=.SU3gGI%Nur75i6Kf>0@i/OkKgedQH\;lb,QKZgZG.'X$,Ybg^![Tt&;A/4i;0VH2N'#+jb:+;M<5MdsRHX:XP,2n1nV69`:UKGH*>l7JU;"_SG"qX6I'9M[B\`#L7&A_rZA(#s.P&muMmJ@U]Nc)Nl\;idgso)i?Y.W#n>=r;MW9gn[d=q+1[CQ#&,_`J7E)]pqj7Vk"Jh8XKZ/498,!RY$jn&@/;LR$?[k/Li"#OHIjMlpJ63,Zq>@)'C)-`kL1J;*kgLDG\ir5N=.p'qGK5A_a$0]MPSC#"t5%ZVV.mmVD#(4b6/q2:"8X\d@CFcVoEOc!U=%X_RJM-ZCr9jOC`>ZYOheqcA>d#lR&U1!U7q"K*XI"/U3)V>~>endstream
endobj
% 'R1342': class PDFStream 
1342 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1616 >>
stream
Gb!SmCJX7c&H.X-J!b08<[;qgaJ5ab!$Z,lqJ,3sT6hCiHT:_EC$VIX"*b>GpBEO3A2e_8,>u;1F6LPlWKiD+pkj&2M0Wi(!!OfD+8f&48Y6:d=ji3i?DR/E)Ve5)lm%i;S^:,3V-1RbSD@lQff`BWe*B]?Ge[Of"G(KQ'e4=UG1)Gh"kqK/0Y[WJh-)^hA?a,/_?r29pT3,NrPLcphjWW\miPgc%.4?HD:.FR<65ia]A'N2UBaD'pTZIU*,gTpOk=SaT\riM,bQ+F:I#oS^[i=$Z@6C5=A&.U6'%nJrc#/BsbL5^t!,VI/=K]/@R"<&oWCBd]A6*-HuBZ+<(jX8=&Q$FR3*Rb&Opm4`CVTX+3e<]Eb5-cuikgLEe!b&4qFrG-cQgV&5#S\Q*0i]*`Uhggj".$dOB?22sH&BeBC0B[HMpTWrcPRHlITPAt[_73tR0]Cl8[aVe,cbVIP@_)*`cP@tKRe+Jr:O"4^/^Ki0%I;*+aQn.#S5Ecfku,.ID6jm!-S'&TTaDn'(,^`ABc%t@,#Qjl1`%JiBCk(J?;uu7GQ:$,.hW=JN.[5/6+7r<8\-]7gQFa+KHV"H]iMnGbrLEr6IVe19OV)s[/)33Lga=faTtFt:FG=,=27t]=iOpE%L]QK.b0!-VF_%*I?J\*;K]6h&.1LQ0Z[cMFEr'K&!4B8Hd"j=24S$mJism`mfm5[9@U?!3`*LWDg"MI&Fp<<:^dMTSgV1dHd.H]C0_4I=]Q*koQSd;j&V42_e6)u#(XcBD>I)TbN85S)4>7R)1eL-$Bl<&!DBKll$jpXh)\]ubSN7r+Kn=Mt1;,dZ6gWg7^bI[Kl1^9-JOmq1Pu+WYN*g@2T&GGo3Wn)ImBendstream
endobj
% 'R1343': class PDFStream 
1343 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1672 >>
stream
Gb!TW>Ar7S'Z])5j?!p$M)*#0W10o_/'pr;'hF[n0nsiB*b^Cj3Dbl+;2Mt^5E_0SbE?\aapMsAiJVe+rqReb+jY_T'`V"C#8$t)-K+G5!bd/,*'e0#JB881R[fs3S=[O5f(FchDtss'7eRDiShF7s"4;@',FZK3D:q0:-rQ,<&J#o`BW;:f.s;G^fB6Q4(GII%6ZG._=Hri7UHU$^WNL_JY=8Pq>7*'BLFOon]gK7KF6G]Ghl,G6$AZ71$Sser5CWTNrMSq[]Xuq]*q"2oi[a4c2$5/fo%F[dbGd00%Z36sS7HD?G1O\dM-6JR%eWUD`P)"sH?0,eaLLP-C%dic5BiXi1W17tJ3&+p.mq+_0WDH5b%c5E$]6B,SiUX;C-L"e+M9I-^N6F\MsZb!R3!VqGK_=0f](_3J,@+T])5%Bgh$qE;>R]8N[9ss'm>mSKTl3CY?JU\WoW_(n:`UCW29Hf:V/EVI1+A*]U'/$H0T8_PYZtIl+pP-?[p5j-p0BB=W6I(lmLkWEb@1S.(>+oV$Fkt%0&%dbVG#sZR,r-%7IX&Sk#O5BP`33ofl^F60)jO]7G1oODOoM',8L:nHb>.?6UE2L27Q"i1[17)8=uLucd9Gg=Yo@;[fJ'Rd;Ljp02hJV[r9a2Gf7\Ri28sY9.1SeJI>LM]N;^JQpdPMj\K\s`'%\B!7iZ#n-m5>u&2+odj_-nO6EE1OcH,8Y:i3Bh8C00i')Wpg*KuQ[;l4CQ!hC1$\S^pOphB,#t;@Thjk$&n\(e@Zdg3[!gJ:e<7D=r/oN['$l2D$Yq2e5'.X^9.L^):[E#C>md&q*dAY6@"_;;_9JM5VSLNc/i-O,lIKkW$AKt2F?/l5_0>2X])9IRQ)/fqJON9G(\W8+7o9Fh,EHq+f)a[/#fjVOBAKkk@hmb22D9/oj[JX5jZI>pP[_8h,b+77"+E2@@Lh_@cAg#n#sm5[$%j8!dIH[9ER`pR.gSlX[RW)mi@fLf(X,u'Moe1.*@bcKB+66_p0^*F;j(JUqJ8?M-$Vh"t\!:dNuNMmY+c'E7),C6K.!:JEPh_]MgA+Y(Gg"bshKp#Um13Rb.pEQPr=J!nt"I9E"S=]W\qU>X+~>endstream
endobj
% 'R1344': class PDFStream 
1344 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1507 >>
stream
Gb!<@A]o[M814]*T31D*W*mAL%"iC=PQZ+Z@4LdU<5]tg8)FgtJ,DZCX6u`pASu.)(]PaLUU9X1_J:'4BAd5nI6]V8-o["iS&doP,qKW=PJ*X96dSK$*_&X<$qXf^Ae+>)1/lEla$E1Z(=_D*/rLiW4d>cQQSa&BX1\uu38Uc-"MTjVGikE?_*'J4&0,Z#*"(tm*FIB1LNh5(7?()-gn,$O\;Om8>m0.JQ#g(tqUAt0g'NbXT=q]U$jbrg1--*eX1r!P3]M\5nDj_"n+tju1\ZLK0Fi]E8]TaBE_X_>`fIoK%38,&)6AP$p(U*M+J$G6GN,X?BA"Tb]6!*3&O!Aap/OdNF`BIVW(lj98D6t_#ug(Q_r1<-@/%6g=@/9aISeL7H0^LV^?\F];5(R?-fRgH/<33l`&i=aNk&hT90/bE&%ba5Wf(4r]3l$#Eq:Ce"5OnJ8c>:X-aI2@[>/m*kkfKp:kmk&K3BZFLn4p="Oo@\otT_rZ3$OEeu(jY%=<-J.5/$A"7k9HSA[<3lP@kfB#3]FH8"VPHfI:I61S8dduJD%9S++HZ6PTl#b+XE9h02NMWMUbIu!-->>HRJ^_$(mEU#WP/JVVDj?EM/H-V+:bu4p`B36"Q43"E15=(/gP":\I8Y987"gnimO`OBp2-o9[]?8ti;=%Q:(n=2n4%uAj^(j6sENX0dq:L!3nR9ORjn7rUYmQendstream
endobj
% 'R1345': class PDFStream 
1345 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1626 >>
stream
Gb!e+'PT&`5,#e>t^kg&X+c2&re5@AT7jF:"TR%_f(F0m!8Xq]Tk(gADDMuc`h1NS-QE^muE\=2%K.\a]ZZJ!Qi3\1cE&&[4I$%)Pi*FSfc-SUr:.JR7:X@rUi\raraT'4ffLSpde#?>SU!9a$61T[lJ`NfPqbA!XsR[X'd-&tV$6CtYLk,cu2'V!D*Yq;U+8Dg[Q@cA*-pT,FoX-!kP8J*@GdiUla#U(*W"9NP@l\Q$I)s)-N+HI`%ZUS&GAFif#.B5?=^OGkdo:*7<-'42MWL(NbM+ihUWA7$EtS]Y;o`/!8UNQ4t4746>^75C75JN_j'<'H$oT5TI0Y<*er/U'u2U%W"rOGW@Z_=_%$@;dq!eJm06ggiJN`b.(_Z(2]_b*A$m]".$D$0G>ADS$LfT3aUG)ukk@R$BIF`D$gQTne)MI&fBfE2rS\LfE^4Xn#LeWa1$&/?9$=fBIVe1T?X6i-^$_rHt1OX:8_/endstream
endobj
% 'R1346': class PDFStream 
1346 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1582 >>
stream
Gau10?Z4[W'ZJr3j?)/+UdLK:qIb.nl.QOb&tl;]'c78d[)?'],grOQ-LI`"jd#0lMmQL4M:F8$mtaYoK0/T?7k-&$O//4jYa:+/:ut0]NH9tI6Ki(mFXBY9BO'\_/pTeZ$A+F.qnui]GlKiZ=t//Gdsj=j"BkS,@J`En:Y+o%B$V]l:1]K8u:JM/3i*dYT7i^1XLD.^&3^dr'`i@=q]Da-&BlV`b'I7W$MI&H)P:?=q5FB>%l:IYHZ4SUnk>YE17YX%L,`!]:t%cOE`$,0L^:d"4mT0c#;^3U\6)SLZdq,^i#7aPOETa/@UHib?"D3$Hmgb6GOW9Y]\[C#$0b'*dd%rUZG3.aB^q7gDR-_s)?9.@UO-2U(U`oEMoiM5TBRquKPgU0a0KLT@W7LX4FW2@a)sbo$FT=KcWInjGe"$u=;faOk0NoXbn37\g6I\mIXd0%PaBKT50d0n@!SeTq@gnZ:>+K5dQTDO:KJr\0ScM1:6Z>)KJJ1KR$*ooH!u3$H]hOe'.%0_)f^Q80lVZG$kr"DMaf@lJ=CoiOl^j(&,=#;&Ir+(K$$.VYooLLVRX'[^$5]!DA_dCW%uJjKNa5O>p!,p+N>r"%pQ00GaDJ?1DBZi_9o1%0L2!76VgV0FVDB3AXM-$a225%Ns"0V!IpSNXkZaucZsJ:9VNH0:\"IO(kiMbHc=1QSF<-f;'-Ve7/;_\ZWsSI9J*Gip'X+0OLm!+YI_Z`>7!>G`)5F94*9g\FnI!*gh-nU&V:0q=Wj#j[cA'j33-_RY'sD5(W>18Jf=9*C>5/++2kUQ1:bYD;FtJn.*#HR2@gZF7HAm2A+:oSE7(A5KZ>!q-9_NGeVoMec*Q1[iOR+gN8)oa#F5nJEJ[CLFQ^g/VQhZbOA>*LhCG%Vppq?0gG,`.iA]ktt?*hm!l%$Ft%uYjE"9;I@A[mfZmP-/L)g.X6r`Ae\j^GK(b;GSi\JSn.$1_U(jh83]C0&O1't8(#6ZH?H_!>4$`-l?)d24bs%m\[(1sYR/4%7ciS"oYc\gC3EM8%R:@"n!>k)9F;,;`>W-#d8kP4D8/jg=3pfp,PV<$F)a@VX;"Bc:lqZ`K8r*48&69L#\rs-1.!F~>endstream
endobj
% 'R1347': class PDFStream 
1347 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1659 >>
stream
Gb!;d>Ar7S'RgRSs)?=4GA(ei2d=0X+I?[JO;-AWZl>;3Tl&N76;&q"`V.%g8]d*+8J,NZ"cYj]c!eq=qZdTS-%,*^e\.GQ!gJ^glB'81m0:%hjmpYuE%"D)GITQQGW[os(C.Eh?M8Z\'VCNB-a7lb6J./8,"U1HhPcE%*1Sule?i,[pj)lAKjMIH0r;=-VeA=<-?+D@i(IXg7d0EF4"^.)2AdEn.n!18%!;;)oCJ[,;ZuC_5)":=G5mk2P,P6\/IuO,Ep6+H.<#8O-p8CVCeJh;QBPY8NP:0co19]@%1]sg<%DHUr.m5:*j&,RgB6_YB"K!_T^so8-!M48a]6;Xt*KFcFe.9V`%=+9lBY(o@[.=;reqFO"cK"d\Df48uf<]=t'Y]^MNV7A\=RGSSX6Y7mL<8\]VHs,bK]ebk`2>2Ch20JNOqBkK\q>I/Vi=C-Bol)kHoa7mJTi$<"m47iS?+a?3Tbi@%9F,m0uGf%QZH8:p)G`tRWigVUptKkR6QS>DN]&m[l2@%?/H5@6[>:G`KV!!PdetD=NP[1i'G-bAsugq]*aJ\F<-#=..>2o+oX).(:]lE'ngBfVLF3WS3VZC``jn],@NP5k7Zs/GUjb"7]9;9Fp[r^d.jSM^;XR)u[4X:WPqS/E-LRi+//1]bZFa3Gh@&;F$+=Iu5$e6*;@"Q"e'U#U:NQ?A'sUAd!0!9o<-\+n@tP##r$(3L:>Saf!T0[,j+')bN_.GXF@;P2fS4P:i8k[Y!7Gq':NkEfG$D]Ne?A-D42?p+"XI#=?qU5U@[k0.jEB=2:3;^s#Hif,X3)!_BZmI!A<9XX4Yn'&Dm^qc]9mW*dU\O"7#b[n%7dNmCfs*=Wb5s^H(QgCn]QX;bI=?LNfMCSLN']&)6[OhlbA6#"I>KrSg?HW3es"KHVX$cpZko[L0U&qf@@bR(L,W8H>:"j9&'m?E)p7b)N>MJ;%9lbU&hc0HhG51t#([Q@k2cT(J&o"BsZE#gAgHQ:4679L67SRJ##J4j&NYppiP#W7(X6Ei/=_+H7oLi[#ha1gn\clQ?[Mn5deng/;So.YFBCKt#_X9@NF\#$p6Db'.YhidPJ:&D'jg,?]3E,A':W"JQ?>tXoFbuiA:;h:UZg'Nkd`.UKG/p[GN('=W%VD%m,UR'Vt;sJ#1ML\*n+8!ut!tpsis$BKaX4R(Ed+YZm5Moj&(9nlh)q;U.%o"jY*pV]W]hmZ6Q,8s-@`=;50-S:N#JW8Dn`PONgNU\Qo[GZ-M&&2-ckN7GGuRYFqn(QmJKiL06d_1=pS:@:NQ@tf@nCPX52Rb.r2_u(5%XiE:S`B5,!b#.gc<0paQYoA@B5$@0VLFO7Ik3O*5d]8.kL[`kGgil@bdjXri:H!0P_W1Y-l,cW*']1(H[LMuNId3XPnV^Q'SGUS+L=;@d!1@pAH2~>endstream
endobj
% 'R1348': class PDFStream 
1348 0 obj
% page stream
<< /Filter [ /ASCII85Decode
 /FlateDecode ]
 /Length 1661 >>
stream
Gau10D/\/e&BEZ5aEKW9:#$n76p93A[K5c]F;pAeMiA1u1(9+8gM/%_VEV&XOnhQ4==*R0RZXR5LZh2.C7am;lN`#1`e64Q7,]>/@TTqepXZ79b.DR@LqVd81JZ2.oX;,&VSVNp%N"TJK29N3*ibof0K1S]rIVW(g"0CQ#J7T,!3eYh;#:<.o)tE]tI)+iX.NY]JOUtTA3IP<2O?G%oTn99KJcd;88[)8mPdHa2/\l-R#dbeS,jdq"ri^FoPXZYNbG\TPb]I[-0C&F)_fmWRG(_ol;Gs^++J&U1Me]*`RKFRi16i/@F%pV;W@c#d[:).ai?4tVX7]IFW%Gcg[3D3YcNn:M,1E'NbbM/SjO4F6(D8M?;pXrik&]hl3V$An2-Z#O4FDW?![Om*ETe>3V\[cKYL'Bd-DqFbJhL=r93u&Tg1VMHMa"]A$N&,'A[,cnK3(h0`!KN3lq5LK"3"l4]HUuY@Q8q)dUquFA=7l!C.TuL"jWuT8ZJa3)6f0C`[gLt#WD\g`WECR&5,ApEfEe`-ae#\e/0K#H>mg_j=)AFICK@;78]FaH&#R5pLDMCV>?ctX0bS/oZe1[M5SA%-ao@V="q9OpRglX<]Ca"Bgp]r]9hba)>_ZAY5)LG"F!2K%gP%ea^)i+tE4=4;I6lC.7"RP$,qjBD3PIZ3-dZ/t+0HO[+9/t5Oq"3ttr)?u]D[$R:>ZCd!!:RljQH]djMH)07HD?TX?WE[3-Qj3GH;e/F1oV+$4h+"fE:og:QgO`6@T>i?bL/?V/JR=c0ZZQ'1SFncJC*@A&-Mf)biSl=jHjjI2e%'k#`@PYfXXT,#YPN^\cDjqJ+A5a"R%ZR59b4ogiY>*g\B#bY-\seQ_L'ZM8tU8nHd/7q!SrSY-OR&IV&=&L9G[04m#1U]8!#'L:l/*='r?7iN7#lCa=l5E6MNt`R[Oh*X(AJi9S]NfVsjWbV:DXWj(e/92WJaX*6B]Ms=R^<(G?X/%qt=@U4(eO`+=K3RlP5"rEFcDacn_\k*_cNUjbWh.0aag/In3p6Vh0G9>&KR+25-SpU]634,4~>endstream
endobj
xref
0 1349
0000000000 65535 f
0000000113 00000 n
0000000284 00000 n
0000000447 00000 n
0000000732 00000 n
0000000907 00000 n
0000001074 00000 n
0000001359 00000 n
0000001524 00000 n
0000001807 00000 n
0000002092 00000 n
0000002272 00000 n
0000002444 00000 n
0000002618 00000 n
0000002924 00000 n
0000003232 00000 n
0000003540 00000 n
0000003848 00000 n
0000004149 00000 n
0000004452 00000 n
0000004755 00000 n
0000005058 00000 n
0000005363 00000 n
0000005670 00000 n
0000005977 00000 n
0000006269 00000 n
0000006689 00000 n
0000006907 00000 n
0000007124 00000 n
0000007342 00000 n
0000007561 00000 n
0000007778 00000 n
0000007980 00000 n
0000008345 00000 n
0000008650 00000 n
0000008957 00000 n
0000009264 00000 n
0000009556 00000 n
0000009904 00000 n
0000010122 00000 n
0000010339 00000 n
0000010557 00000 n
0000010776 00000 n
0000010993 00000 n
0000011210 00000 n
0000011517 00000 n
0000011826 00000 n
0000012135 00000 n
0000012429 00000 n
0000012815 00000 n
0000013114 00000 n
0000013418 00000 n
0000013724 00000 n
0000014030 00000 n
0000014336 00000 n
0000014640 00000 n
0000014946 00000 n
0000015252 00000 n
0000015544 00000 n
0000015927 00000 n
0000016239 00000 n
0000016553 00000 n
0000016867 00000 n
0000017181 00000 n
0000017493 00000 n
0000017807 00000 n
0000018121 00000 n
0000018421 00000 n
0000018805 00000 n
0000019008 00000 n
0000019329 00000 n
0000019545 00000 n
0000019857 00000 n
0000020171 00000 n
0000020485 00000 n
0000020799 00000 n
0000021111 00000 n
0000021425 00000 n
0000021739 00000 n
0000022039 00000 n
0000022431 00000 n
0000022743 00000 n
0000023057 00000 n
0000023371 00000 n
0000023685 00000 n
0000023997 00000 n
0000024311 00000 n
0000024625 00000 n
0000024939 00000 n
0000025251 00000 n
0000025565 00000 n
0000025879 00000 n
0000026193 00000 n
0000026505 00000 n
0000026819 00000 n
0000027133 00000 n
0000027433 00000 n
0000027888 00000 n
0000028200 00000 n
0000028514 00000 n
0000028828 00000 n
0000029143 00000 n
0000029456 00000 n
0000029771 00000 n
0000030086 00000 n
0000030401 00000 n
0000030714 00000 n
0000031029 00000 n
0000031344 00000 n
0000031645 00000 n
0000032074 00000 n
0000032387 00000 n
0000032702 00000 n
0000033017 00000 n
0000033333 00000 n
0000033553 00000 n
0000033772 00000 n
0000033990 00000 n
0000034300 00000 n
0000034612 00000 n
0000034924 00000 n
0000035237 00000 n
0000035455 00000 n
0000035674 00000 n
0000035894 00000 n
0000036113 00000 n
0000036333 00000 n
0000036553 00000 n
0000036772 00000 n
0000036976 00000 n
0000037480 00000 n
0000037699 00000 n
0000037919 00000 n
0000038138 00000 n
0000038358 00000 n
0000038578 00000 n
0000038797 00000 n
0000039111 00000 n
0000039427 00000 n
0000039743 00000 n
0000040059 00000 n
0000040373 00000 n
0000040689 00000 n
0000041005 00000 n
0000041321 00000 n
0000041635 00000 n
0000041951 00000 n
0000042267 00000 n
0000042568 00000 n
0000043061 00000 n
0000043375 00000 n
0000043691 00000 n
0000044007 00000 n
0000044308 00000 n
0000044661 00000 n
0000044968 00000 n
0000045277 00000 n
0000045586 00000 n
0000045895 00000 n
0000046202 00000 n
0000046511 00000 n
0000046820 00000 n
0000047129 00000 n
0000047447 00000 n
0000047767 00000 n
0000048087 00000 n
0000048392 00000 n
0000048826 00000 n
0000049046 00000 n
0000049265 00000 n
0000049572 00000 n
0000049881 00000 n
0000050190 00000 n
0000050500 00000 n
0000050704 00000 n
0000051087 00000 n
0000051394 00000 n
0000051703 00000 n
0000052012 00000 n
0000052321 00000 n
0000052626 00000 n
0000052933 00000 n
0000053240 00000 n
0000053532 00000 n
0000053925 00000 n
0000054235 00000 n
0000054547 00000 n
0000054859 00000 n
0000055171 00000 n
0000055481 00000 n
0000055793 00000 n
0000056105 00000 n
0000056417 00000 n
0000056721 00000 n
0000057027 00000 n
0000057333 00000 n
0000057639 00000 n
0000057951 00000 n
0000058265 00000 n
0000058579 00000 n
0000058878 00000 n
0000059351 00000 n
0000059653 00000 n
0000059957 00000 n
0000060261 00000 n
0000060565 00000 n
0000060873 00000 n
0000061183 00000 n
0000061493 00000 n
0000061803 00000 n
0000062108 00000 n
0000062415 00000 n
0000062722 00000 n
0000063014 00000 n
0000063447 00000 n
0000063750 00000 n
0000064055 00000 n
0000064360 00000 n
0000064666 00000 n
0000064885 00000 n
0000065192 00000 n
0000065501 00000 n
0000065810 00000 n
0000066120 00000 n
0000066339 00000 n
0000066646 00000 n
0000066955 00000 n
0000067264 00000 n
0000067574 00000 n
0000067778 00000 n
0000068241 00000 n
0000068548 00000 n
0000068857 00000 n
0000069166 00000 n
0000069475 00000 n
0000069777 00000 n
0000070081 00000 n
0000070385 00000 n
0000070689 00000 n
0000070991 00000 n
0000071295 00000 n
0000071599 00000 n
0000071903 00000 n
0000072205 00000 n
0000072509 00000 n
0000072813 00000 n
0000073117 00000 n
0000073419 00000 n
0000073723 00000 n
0000074027 00000 n
0000074331 00000 n
0000074633 00000 n
0000074937 00000 n
0000075241 00000 n
0000075530 00000 n
0000076083 00000 n
0000076385 00000 n
0000076689 00000 n
0000076993 00000 n
0000077297 00000 n
0000077599 00000 n
0000077903 00000 n
0000078207 00000 n
0000078511 00000 n
0000078813 00000 n
0000079117 00000 n
0000079421 00000 n
0000079726 00000 n
0000079946 00000 n
0000080166 00000 n
0000080386 00000 n
0000080606 00000 n
0000080810 00000 n
0000081294 00000 n
0000081514 00000 n
0000081734 00000 n
0000081953 00000 n
0000082173 00000 n
0000082393 00000 n
0000082612 00000 n
0000082921 00000 n
0000083232 00000 n
0000083543 00000 n
0000083854 00000 n
0000084167 00000 n
0000084482 00000 n
0000084797 00000 n
0000085113 00000 n
0000085333 00000 n
0000085553 00000 n
0000085773 00000 n
0000085993 00000 n
0000086213 00000 n
0000086432 00000 n
0000086745 00000 n
0000087060 00000 n
0000087375 00000 n
0000087675 00000 n
0000088228 00000 n
0000088547 00000 n
0000088868 00000 n
0000089189 00000 n
0000089510 00000 n
0000089826 00000 n
0000090144 00000 n
0000090462 00000 n
0000090780 00000 n
0000091097 00000 n
0000091416 00000 n
0000091735 00000 n
0000092039 00000 n
0000092472 00000 n
0000092786 00000 n
0000093102 00000 n
0000093418 00000 n
0000093734 00000 n
0000094043 00000 n
0000094354 00000 n
0000094665 00000 n
0000094976 00000 n
0000095282 00000 n
0000095590 00000 n
0000095898 00000 n
0000096206 00000 n
0000096508 00000 n
0000096812 00000 n
0000097116 00000 n
0000097405 00000 n
0000097878 00000 n
0000098181 00000 n
0000098486 00000 n
0000098791 00000 n
0000099096 00000 n
0000099404 00000 n
0000099714 00000 n
0000100024 00000 n
0000100319 00000 n
0000100712 00000 n
0000101025 00000 n
0000101340 00000 n
0000101655 00000 n
0000101970 00000 n
0000102273 00000 n
0000102578 00000 n
0000102883 00000 n
0000103173 00000 n
0000103566 00000 n
0000103869 00000 n
0000104174 00000 n
0000104479 00000 n
0000104769 00000 n
0000105107 00000 n
0000105408 00000 n
0000105711 00000 n
0000106016 00000 n
0000106321 00000 n
0000106611 00000 n
0000106964 00000 n
0000107267 00000 n
0000107572 00000 n
0000107877 00000 n
0000108167 00000 n
0000108505 00000 n
0000108806 00000 n
0000109109 00000 n
0000109414 00000 n
0000109719 00000 n
0000110009 00000 n
0000110362 00000 n
0000110665 00000 n
0000110970 00000 n
0000111275 00000 n
0000111565 00000 n
0000111918 00000 n
0000112221 00000 n
0000112526 00000 n
0000112831 00000 n
0000113121 00000 n
0000113474 00000 n
0000113775 00000 n
0000114078 00000 n
0000114381 00000 n
0000114684 00000 n
0000114995 00000 n
0000115308 00000 n
0000115621 00000 n
0000115919 00000 n
0000116312 00000 n
0000116616 00000 n
0000116922 00000 n
0000117228 00000 n
0000117534 00000 n
0000117850 00000 n
0000118168 00000 n
0000118486 00000 n
0000118789 00000 n
0000119182 00000 n
0000119484 00000 n
0000119788 00000 n
0000120092 00000 n
0000120396 00000 n
0000120710 00000 n
0000121026 00000 n
0000121342 00000 n
0000121658 00000 n
0000121963 00000 n
0000122270 00000 n
0000122577 00000 n
0000122869 00000 n
0000123302 00000 n
0000123604 00000 n
0000123908 00000 n
0000124212 00000 n
0000124517 00000 n
0000124737 00000 n
0000124956 00000 n
0000125175 00000 n
0000125479 00000 n
0000125785 00000 n
0000126091 00000 n
0000126397 00000 n
0000126707 00000 n
0000127019 00000 n
0000127331 00000 n
0000127628 00000 n
0000128091 00000 n
0000128402 00000 n
0000128715 00000 n
0000129028 00000 n
0000129326 00000 n
0000129679 00000 n
0000129989 00000 n
0000130301 00000 n
0000130613 00000 n
0000130910 00000 n
0000131263 00000 n
0000131570 00000 n
0000131879 00000 n
0000132188 00000 n
0000132482 00000 n
0000132820 00000 n
0000133121 00000 n
0000133431 00000 n
0000133743 00000 n
0000134055 00000 n
0000134367 00000 n
0000134676 00000 n
0000134987 00000 n
0000135298 00000 n
0000135594 00000 n
0000135972 00000 n
0000136274 00000 n
0000136493 00000 n
0000136800 00000 n
0000137109 00000 n
0000137418 00000 n
0000137728 00000 n
0000137932 00000 n
0000138305 00000 n
0000138614 00000 n
0000138925 00000 n
0000139236 00000 n
0000139547 00000 n
0000139854 00000 n
0000140163 00000 n
0000140472 00000 n
0000140766 00000 n
0000141159 00000 n
0000141466 00000 n
0000141775 00000 n
0000142084 00000 n
0000142393 00000 n
0000142700 00000 n
0000143009 00000 n
0000143318 00000 n
0000143612 00000 n
0000144006 00000 n
0000144225 00000 n
0000144532 00000 n
0000144841 00000 n
0000145150 00000 n
0000145444 00000 n
0000145807 00000 n
0000146114 00000 n
0000146423 00000 n
0000146732 00000 n
0000147026 00000 n
0000147380 00000 n
0000147600 00000 n
0000147820 00000 n
0000148041 00000 n
0000148262 00000 n
0000148482 00000 n
0000148701 00000 n
0000149008 00000 n
0000149317 00000 n
0000149626 00000 n
0000149920 00000 n
0000150334 00000 n
0000150554 00000 n
0000150774 00000 n
0000150995 00000 n
0000151216 00000 n
0000151436 00000 n
0000151640 00000 n
0000152013 00000 n
0000152322 00000 n
0000152633 00000 n
0000152944 00000 n
0000153255 00000 n
0000153566 00000 n
0000153879 00000 n
0000154192 00000 n
0000154490 00000 n
0000154883 00000 n
0000155187 00000 n
0000155493 00000 n
0000155799 00000 n
0000156106 00000 n
0000156325 00000 n
0000156632 00000 n
0000156941 00000 n
0000157250 00000 n
0000157544 00000 n
0000157947 00000 n
0000158254 00000 n
0000158563 00000 n
0000158872 00000 n
0000159181 00000 n
0000159488 00000 n
0000159797 00000 n
0000160106 00000 n
0000160415 00000 n
0000160722 00000 n
0000161031 00000 n
0000161340 00000 n
0000161634 00000 n
0000162067 00000 n
0000162369 00000 n
0000162673 00000 n
0000162977 00000 n
0000163281 00000 n
0000163583 00000 n
0000163887 00000 n
0000164191 00000 n
0000164495 00000 n
0000164798 00000 n
0000165103 00000 n
0000165408 00000 n
0000165713 00000 n
0000166020 00000 n
0000166329 00000 n
0000166638 00000 n
0000166932 00000 n
0000167405 00000 n
0000167708 00000 n
0000168013 00000 n
0000168318 00000 n
0000168623 00000 n
0000168931 00000 n
0000169241 00000 n
0000169551 00000 n
0000169861 00000 n
0000170168 00000 n
0000170477 00000 n
0000170786 00000 n
0000171080 00000 n
0000171514 00000 n
0000171733 00000 n
0000172040 00000 n
0000172349 00000 n
0000172658 00000 n
0000172967 00000 n
0000173277 00000 n
0000173589 00000 n
0000173901 00000 n
0000174198 00000 n
0000174601 00000 n
0000174910 00000 n
0000175221 00000 n
0000175532 00000 n
0000175843 00000 n
0000176152 00000 n
0000176463 00000 n
0000176774 00000 n
0000177086 00000 n
0000177306 00000 n
0000177526 00000 n
0000177746 00000 n
0000177966 00000 n
0000178186 00000 n
0000178406 00000 n
0000178626 00000 n
0000178846 00000 n
0000179066 00000 n
0000179286 00000 n
0000179506 00000 n
0000179726 00000 n
0000179946 00000 n
0000180166 00000 n
0000180386 00000 n
0000180606 00000 n
0000180826 00000 n
0000181046 00000 n
0000181266 00000 n
0000181486 00000 n
0000181706 00000 n
0000181926 00000 n
0000182147 00000 n
0000182367 00000 n
0000182587 00000 n
0000182808 00000 n
0000183028 00000 n
0000183247 00000 n
0000183467 00000 n
0000183687 00000 n
0000183907 00000 n
0000184126 00000 n
0000184345 00000 n
0000184565 00000 n
0000184785 00000 n
0000185005 00000 n
0000185225 00000 n
0000185445 00000 n
0000185665 00000 n
0000185884 00000 n
0000186193 00000 n
0000186504 00000 n
0000186815 00000 n
0000187111 00000 n
0000187944 00000 n
0000188255 00000 n
0000188568 00000 n
0000188881 00000 n
0000189194 00000 n
0000189503 00000 n
0000189814 00000 n
0000190125 00000 n
0000190436 00000 n
0000190743 00000 n
0000191052 00000 n
0000191361 00000 n
0000191671 00000 n
0000191891 00000 n
0000192110 00000 n
0000192423 00000 n
0000192738 00000 n
0000193053 00000 n
0000193353 00000 n
0000193831 00000 n
0000194132 00000 n
0000194435 00000 n
0000194740 00000 n
0000195045 00000 n
0000195335 00000 n
0000195688 00000 n
0000195996 00000 n
0000196306 00000 n
0000196616 00000 n
0000196926 00000 n
0000197239 00000 n
0000197554 00000 n
0000197869 00000 n
0000198169 00000 n
0000198563 00000 n
0000198783 00000 n
0000199003 00000 n
0000199222 00000 n
0000199525 00000 n
0000199830 00000 n
0000200135 00000 n
0000200440 00000 n
0000200743 00000 n
0000201048 00000 n
0000201353 00000 n
0000201643 00000 n
0000202067 00000 n
0000202287 00000 n
0000202507 00000 n
0000202727 00000 n
0000202931 00000 n
0000203284 00000 n
0000203591 00000 n
0000203900 00000 n
0000204209 00000 n
0000204503 00000 n
0000204857 00000 n
0000205077 00000 n
0000205296 00000 n
0000205605 00000 n
0000205916 00000 n
0000206227 00000 n
0000206538 00000 n
0000206842 00000 n
0000207148 00000 n
0000207454 00000 n
0000207745 00000 n
0000208158 00000 n
0000208471 00000 n
0000208786 00000 n
0000209101 00000 n
0000209416 00000 n
0000209728 00000 n
0000210042 00000 n
0000210356 00000 n
0000210655 00000 n
0000211048 00000 n
0000211355 00000 n
0000211664 00000 n
0000211973 00000 n
0000212282 00000 n
0000212585 00000 n
0000212890 00000 n
0000213195 00000 n
0000213500 00000 n
0000213802 00000 n
0000214106 00000 n
0000214410 00000 n
0000214699 00000 n
0000215132 00000 n
0000215439 00000 n
0000215748 00000 n
0000216057 00000 n
0000216366 00000 n
0000216680 00000 n
0000216996 00000 n
0000217312 00000 n
0000217628 00000 n
0000217942 00000 n
0000218258 00000 n
0000218574 00000 n
0000218890 00000 n
0000219206 00000 n
0000219524 00000 n
0000219842 00000 n
0000220145 00000 n
0000220618 00000 n
0000220931 00000 n
0000221246 00000 n
0000221561 00000 n
0000221876 00000 n
0000222192 00000 n
0000222510 00000 n
0000222828 00000 n
0000223146 00000 n
0000223467 00000 n
0000223790 00000 n
0000224113 00000 n
0000224421 00000 n
0000224854 00000 n
0000225159 00000 n
0000225466 00000 n
0000225773 00000 n
0000226080 00000 n
0000226401 00000 n
0000226724 00000 n
0000227047 00000 n
0000227370 00000 n
0000227674 00000 n
0000227980 00000 n
0000228286 00000 n
0000228577 00000 n
0000229011 00000 n
0000229230 00000 n
0000229540 00000 n
0000229852 00000 n
0000230164 00000 n
0000230476 00000 n
0000230783 00000 n
0000231092 00000 n
0000231401 00000 n
0000231710 00000 n
0000232017 00000 n
0000232326 00000 n
0000232635 00000 n
0000232944 00000 n
0000233255 00000 n
0000233568 00000 n
0000233881 00000 n
0000234179 00000 n
0000234662 00000 n
0000234968 00000 n
0000235276 00000 n
0000235584 00000 n
0000235892 00000 n
0000236202 00000 n
0000236514 00000 n
0000236826 00000 n
0000237138 00000 n
0000237449 00000 n
0000237762 00000 n
0000238075 00000 n
0000238388 00000 n
0000238702 00000 n
0000239018 00000 n
0000239334 00000 n
0000239635 00000 n
0000240108 00000 n
0000240412 00000 n
0000240718 00000 n
0000241024 00000 n
0000241330 00000 n
0000241633 00000 n
0000241938 00000 n
0000242243 00000 n
0000242549 00000 n
0000242769 00000 n
0000242988 00000 n
0000243295 00000 n
0000243604 00000 n
0000243913 00000 n
0000244207 00000 n
0000244660 00000 n
0000244969 00000 n
0000245280 00000 n
0000245591 00000 n
0000245903 00000 n
0000246107 00000 n
0000246470 00000 n
0000246779 00000 n
0000247090 00000 n
0000247401 00000 n
0000247713 00000 n
0000247932 00000 n
0000248239 00000 n
0000248548 00000 n
0000248857 00000 n
0000249166 00000 n
0000249471 00000 n
0000249778 00000 n
0000250085 00000 n
0000250377 00000 n
0000250821 00000 n
0000251041 00000 n
0000251261 00000 n
0000251481 00000 n
0000251701 00000 n
0000251921 00000 n
0000252141 00000 n
0000252345 00000 n
0000252728 00000 n
0000253038 00000 n
0000253350 00000 n
0000253662 00000 n
0000253959 00000 n
0000254313 00000 n
0000254532 00000 n
0000254842 00000 n
0000255154 00000 n
0000255466 00000 n
0000255763 00000 n
0000256127 00000 n
0000256346 00000 n
0000256656 00000 n
0000256968 00000 n
0000257280 00000 n
0000257592 00000 n
0000257896 00000 n
0000258202 00000 n
0000258508 00000 n
0000258815 00000 n
0000259035 00000 n
0000259255 00000 n
0000259475 00000 n
0000259696 00000 n
0000259916 00000 n
0000260136 00000 n
0000260355 00000 n
0000260575 00000 n
0000260795 00000 n
0000261015 00000 n
0000261235 00000 n
0000261455 00000 n
0000261675 00000 n
0000261895 00000 n
0000262099 00000 n
0000262653 00000 n
0000262873 00000 n
0000263093 00000 n
0000263313 00000 n
0000263533 00000 n
0000263753 00000 n
0000263973 00000 n
0000264193 00000 n
0000264413 00000 n
0000264633 00000 n
0000264853 00000 n
0000265073 00000 n
0000265293 00000 n
0000265513 00000 n
0000265733 00000 n
0000265953 00000 n
0000266173 00000 n
0000266393 00000 n
0000266613 00000 n
0000266833 00000 n
0000267053 00000 n
0000267273 00000 n
0000267493 00000 n
0000267713 00000 n
0000267933 00000 n
0000268154 00000 n
0000268374 00000 n
0000268594 00000 n
0000268814 00000 n
0000269034 00000 n
0000269254 00000 n
0000269474 00000 n
0000269694 00000 n
0000269914 00000 n
0000270134 00000 n
0000270355 00000 n
0000270575 00000 n
0000270794 00000 n
0000271102 00000 n
0000271412 00000 n
0000271722 00000 n
0000272017 00000 n
0000272740 00000 n
0000273049 00000 n
0000273360 00000 n
0000273671 00000 n
0000273982 00000 n
0000274292 00000 n
0000274604 00000 n
0000274916 00000 n
0000275213 00000 n
0000275607 00000 n
0000275826 00000 n
0000276136 00000 n
0000276448 00000 n
0000276760 00000 n
0000277057 00000 n
0000277421 00000 n
0000277640 00000 n
0000277950 00000 n
0000278262 00000 n
0000278574 00000 n
0000278886 00000 n
0000279191 00000 n
0000279498 00000 n
0000279805 00000 n
0000280113 00000 n
0000280333 00000 n
0000280553 00000 n
0000280773 00000 n
0000280977 00000 n
0000281420 00000 n
0000281728 00000 n
0000282038 00000 n
0000282348 00000 n
0000282643 00000 n
0000282996 00000 n
0000283307 00000 n
0000283620 00000 n
0000283933 00000 n
0000284231 00000 n
0000284585 00000 n
0000284804 00000 n
0000285117 00000 n
0000285432 00000 n
0000285747 00000 n
0000286062 00000 n
0000286369 00000 n
0000286678 00000 n
0000286987 00000 n
0000287281 00000 n
0000287685 00000 n
0000287904 00000 n
0000288217 00000 n
0000288532 00000 n
0000288847 00000 n
0000289162 00000 n
0000289470 00000 n
0000289780 00000 n
0000290090 00000 n
0000290400 00000 n
0000290708 00000 n
0000291018 00000 n
0000291328 00000 n
0000291639 00000 n
0000291843 00000 n
0000292296 00000 n
0000292603 00000 n
0000292912 00000 n
0000293221 00000 n
0000293515 00000 n
0000293868 00000 n
0000294171 00000 n
0000294476 00000 n
0000294781 00000 n
0000295086 00000 n
0000295394 00000 n
0000295704 00000 n
0000296014 00000 n
0000296325 00000 n
0000296544 00000 n
0000296855 00000 n
0000297168 00000 n
0000297481 00000 n
0000297779 00000 n
0000298223 00000 n
0000298532 00000 n
0000298843 00000 n
0000299154 00000 n
0000299465 00000 n
0000299774 00000 n
0000300085 00000 n
0000300396 00000 n
0000300708 00000 n
0000300913 00000 n
0000301326 00000 n
0000301634 00000 n
0000301944 00000 n
0000302254 00000 n
0000302549 00000 n
0000302907 00000 n
0000303215 00000 n
0000303525 00000 n
0000303835 00000 n
0000304145 00000 n
0000304448 00000 n
0000304753 00000 n
0000305058 00000 n
0000305348 00000 n
0000305735 00000 n
0000306037 00000 n
0000306345 00000 n
0000306655 00000 n
0000306965 00000 n
0000307275 00000 n
0000307579 00000 n
0000307885 00000 n
0000308191 00000 n
0000308483 00000 n
0000308885 00000 n
0000309193 00000 n
0000309503 00000 n
0000309813 00000 n
0000310109 00000 n
0000310454 00000 n
0000310600 00000 n
0000310883 00000 n
0000311016 00000 n
0000311222 00000 n
0000311373 00000 n
0000311552 00000 n
0000311719 00000 n
0000311885 00000 n
0000312057 00000 n
0000312222 00000 n
0000312401 00000 n
0000312567 00000 n
0000312733 00000 n
0000312902 00000 n
0000313079 00000 n
0000313252 00000 n
0000313421 00000 n
0000313591 00000 n
0000313766 00000 n
0000313936 00000 n
0000314104 00000 n
0000314277 00000 n
0000314444 00000 n
0000314612 00000 n
0000314778 00000 n
0000314948 00000 n
0000315122 00000 n
0000315300 00000 n
0000315450 00000 n
0000315653 00000 n
0000315808 00000 n
0000315975 00000 n
0000316140 00000 n
0000316310 00000 n
0000316482 00000 n
0000316651 00000 n
0000316828 00000 n
0000316999 00000 n
0000317165 00000 n
0000317342 00000 n
0000317520 00000 n
0000317701 00000 n
0000317882 00000 n
0000318054 00000 n
0000318229 00000 n
0000318409 00000 n
0000318590 00000 n
0000318772 00000 n
0000318945 00000 n
0000319119 00000 n
0000319298 00000 n
0000319476 00000 n
0000319655 00000 n
0000319830 00000 n
0000320002 00000 n
0000320174 00000 n
0000320350 00000 n
0000320522 00000 n
0000320697 00000 n
0000320873 00000 n
0000321050 00000 n
0000321220 00000 n
0000321395 00000 n
0000321564 00000 n
0000321741 00000 n
0000321913 00000 n
0000322086 00000 n
0000322256 00000 n
0000322428 00000 n
0000322599 00000 n
0000322767 00000 n
0000322935 00000 n
0000323103 00000 n
0000323272 00000 n
0000323445 00000 n
0000323616 00000 n
0000323787 00000 n
0000323956 00000 n
0000324127 00000 n
0000324299 00000 n
0000324470 00000 n
0000324642 00000 n
0000324823 00000 n
0000325005 00000 n
0000325184 00000 n
0000325358 00000 n
0000325529 00000 n
0000325698 00000 n
0000325866 00000 n
0000326039 00000 n
0000326208 00000 n
0000326376 00000 n
0000326542 00000 n
0000326708 00000 n
0000326874 00000 n
0000327040 00000 n
0000327206 00000 n
0000327372 00000 n
0000327538 00000 n
0000327714 00000 n
0000327883 00000 n
0000328064 00000 n
0000328231 00000 n
0000328410 00000 n
0000328580 00000 n
0000328748 00000 n
0000328922 00000 n
0000329097 00000 n
0000329273 00000 n
0000329442 00000 n
0000329611 00000 n
0000329780 00000 n
0000329949 00000 n
0000330118 00000 n
0000330288 00000 n
0000330458 00000 n
0000330624 00000 n
0000330790 00000 n
0000330958 00000 n
0000331132 00000 n
0000331304 00000 n
0000331476 00000 n
0000331650 00000 n
0000331823 00000 n
0000331992 00000 n
0000332161 00000 n
0000332329 00000 n
0000332502 00000 n
0000332669 00000 n
0000332843 00000 n
0000333014 00000 n
0000333183 00000 n
0000333352 00000 n
0000333528 00000 n
0000333702 00000 n
0000333875 00000 n
0000334042 00000 n
0000334213 00000 n
0000334388 00000 n
0000334564 00000 n
0000334741 00000 n
0000334914 00000 n
0000335091 00000 n
0000335260 00000 n
0000335434 00000 n
0000335604 00000 n
0000335773 00000 n
0000335946 00000 n
0000336121 00000 n
0000336291 00000 n
0000336470 00000 n
0000336648 00000 n
0000336820 00000 n
0000336988 00000 n
0000337156 00000 n
0000337325 00000 n
0000337505 00000 n
0000337682 00000 n
0000337865 00000 n
0000338044 00000 n
0000338226 00000 n
0000338403 00000 n
0000338574 00000 n
0000338748 00000 n
0000338918 00000 n
0000339094 00000 n
0000339265 00000 n
0000339436 00000 n
0000339608 00000 n
0000339784 00000 n
0000339961 00000 n
0000340141 00000 n
0000340315 00000 n
0000340484 00000 n
0000340654 00000 n
0000340824 00000 n
0000340995 00000 n
0000341166 00000 n
0000341337 00000 n
0000341513 00000 n
0000341683 00000 n
0000341859 00000 n
0000342030 00000 n
0000342205 00000 n
0000342375 00000 n
0000342550 00000 n
0000342721 00000 n
0000342898 00000 n
0000343070 00000 n
0000343241 00000 n
0000343416 00000 n
0000343583 00000 n
0000343756 00000 n
0000343925 00000 n
0000344104 00000 n
0000344278 00000 n
0000344448 00000 n
0000344618 00000 n
0000344786 00000 n
0000344961 00000 n
0000345136 00000 n
0000345304 00000 n
0000345479 00000 n
0000345652 00000 n
0000345828 00000 n
0000345998 00000 n
0000346137 00000 n
0000347241 00000 n
0000347577 00000 n
0000348445 00000 n
0000350212 00000 n
0000351279 00000 n
0000352825 00000 n
0000354417 00000 n
0000356039 00000 n
0000357738 00000 n
0000359627 00000 n
0000361528 00000 n
0000363497 00000 n
0000365026 00000 n
0000366680 00000 n
0000368248 00000 n
0000369635 00000 n
0000371297 00000 n
0000372830 00000 n
0000374391 00000 n
0000376015 00000 n
0000377776 00000 n
0000379534 00000 n
0000381178 00000 n
0000382845 00000 n
0000383922 00000 n
0000385371 00000 n
0000387140 00000 n
0000388809 00000 n
0000390112 00000 n
0000391651 00000 n
0000393100 00000 n
0000394937 00000 n
0000396855 00000 n
0000398632 00000 n
0000400469 00000 n
0000402458 00000 n
0000404299 00000 n
0000406035 00000 n
0000407967 00000 n
0000409854 00000 n
0000411496 00000 n
0000413187 00000 n
0000414720 00000 n
0000416466 00000 n
0000417787 00000 n
0000419446 00000 n
0000421110 00000 n
0000422599 00000 n
0000424173 00000 n
0000425652 00000 n
0000427230 00000 n
0000428806 00000 n
0000430548 00000 n
0000432192 00000 n
0000433913 00000 n
0000435434 00000 n
0000437132 00000 n
0000438855 00000 n
0000440434 00000 n
0000442326 00000 n
0000444017 00000 n
0000445519 00000 n
0000447245 00000 n
0000448728 00000 n
0000450410 00000 n
0000452251 00000 n
0000454012 00000 n
0000455789 00000 n
0000457301 00000 n
0000458945 00000 n
0000460643 00000 n
0000462237 00000 n
0000463831 00000 n
0000465695 00000 n
0000467401 00000 n
0000468854 00000 n
0000470353 00000 n
0000471836 00000 n
0000473199 00000 n
0000474775 00000 n
0000476297 00000 n
0000477915 00000 n
0000479403 00000 n
0000480987 00000 n
0000482558 00000 n
0000484134 00000 n
0000485660 00000 n
0000487321 00000 n
0000489024 00000 n
0000490561 00000 n
0000492194 00000 n
0000493865 00000 n
0000495593 00000 n
0000497282 00000 n
0000499068 00000 n
0000500831 00000 n
0000502650 00000 n
0000504304 00000 n
0000506077 00000 n
0000507806 00000 n
0000509612 00000 n
trailer
<< /ID 
 % ReportLab generated PDF document -- digest (http://www.reportlab.com) 
 [(\254\266\356\237\252\335!\022\220\230\310f\207@\277\337) (\254\266\356\237\252\335!\022\220\230\310f\207@\277\337)] 

 /Info 1041 0 R
 /Root 1040 0 R
 /Size 1349 >>
startxref
511391
%%EOF
z3c.rml-2.0.0/src/z3c/rml/rlfix.py0000664000175000017500000000304012064151775020256 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2012 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""ReportLab fixups.
"""
__docformat__ = "reStructuredText"
from reportlab.pdfbase import pdfform
from reportlab.pdfbase.pdfpattern import PDFPattern
from reportlab.graphics import testshapes

def resetPdfForm():
    pdfform.PDFDOCENC = PDFPattern(pdfform.PDFDocEncodingPattern)
    pdfform.ENCODING = PDFPattern(
        pdfform.EncodingPattern, PDFDocEncoding=pdfform.PDFDOCENC)
    pdfform.GLOBALFONTSDICTIONARY = pdfform.FormFontsDictionary()
    pdfform.GLOBALRESOURCES = pdfform.FormResources()
    pdfform.ZADB = PDFPattern(pdfform.ZaDbPattern)

def resetFonts():
    for f in testshapes._setup():
        if f not in testshapes._FONTS:
            testshapes._FONTS.append(f)

def setSideLabels():
    from reportlab.graphics.charts import piecharts
    piecharts.Pie3d.sideLabels = 0
setSideLabels()

from reportlab.rl_config import register_reset
register_reset(resetPdfForm)
register_reset(resetFonts)
del register_reset
z3c.rml-2.0.0/src/z3c/rml/canvas.py0000664000175000017500000007714312065004243020410 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Page Drawing Related Element Processing

$Id: canvas.py 128843 2012-12-21 06:58:39Z srichter $
"""
__docformat__ = "reStructuredText"
import zope.interface
import reportlab.pdfgen.canvas
from z3c.rml import attr, directive, interfaces, occurence, stylesheet
from z3c.rml import chart, flowable, form, page


class IShape(interfaces.IRMLDirectiveSignature):
    """A shape to be drawn on the canvas."""

    x = attr.Measurement(
        title=u'X-Coordinate',
        description=(u'The X-coordinate of the lower-left position of the '
                     u'shape.'),
        required=True)

    y = attr.Measurement(
        title=u'Y-Coordinate',
        description=(u'The Y-coordinate of the lower-left position of the '
                     u'shape.'),
        required=True)

    fill = attr.Boolean(
        title=u'Fill',
        description=u'A flag to specify whether the shape should be filled.',
        required=False)

    stroke = attr.Boolean(
        title=u'Stroke',
        description=(u"A flag to specify whether the shape's outline should "
                     u"be drawn."),
        required=False)


class CanvasRMLDirective(directive.RMLDirective):
    callable = None
    attrMapping = None

    def process(self):
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        getattr(canvas, self.callable)(**kwargs)


class ISaveState(interfaces.IRMLDirectiveSignature):
    """Saves the current canvas state."""

class SaveState(CanvasRMLDirective):
    signature = ISaveState
    callable = 'saveState'


class IRestoreState(interfaces.IRMLDirectiveSignature):
    """Saves the current canvas state."""

class RestoreState(CanvasRMLDirective):
    signature = IRestoreState
    callable = 'restoreState'


class IDrawString(interfaces.IRMLDirectiveSignature):
    """Draws a simple string (left aligned) onto the canvas at the specified
    location."""

    x = attr.Measurement(
        title=u'X-Coordinate',
        description=(u'The X-coordinate of the lower-left position of the '
                     u'string.'),
        required=True)

    y = attr.Measurement(
        title=u'Y-Coordinate',
        description=(u'The Y-coordinate of the lower-left position of the '
                     u'string.'),
        required=True)

    text = attr.RawXMLContent(
        title=u'Text',
        description=(u'The string/text that is put onto the canvas.'),
        required=True)

class DrawString(CanvasRMLDirective):
    signature = IDrawString
    callable = 'drawString'

    def getPageNumber(self, elem, canvas):
        return str(canvas.getPageNumber() + int(elem.get('countingFrom', 1)) - 1)

    def getName(self, elem, canvas):
        return attr.getManager(self).names[elem.get('id')]

    handleElements = {'pageNumber': getPageNumber,
                      'getName': getName}

    def _getText(self, node, canvas):
        text = node.text or u''
        for sub in node.iterdescendants():
            if sub.tag in self.handleElements:
                text += self.handleElements[sub.tag](self, sub, canvas)
            else:
                self._getText(sub, canvas)
        text += node.tail or u''
        return text

    def process(self):
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        kwargs['text'] = self._getText(self.element, canvas).strip()
        getattr(canvas, self.callable)(**kwargs)

class IDrawRightString(IDrawString):
    """Draws a simple string (right aligned) onto the canvas at the specified
    location."""

class DrawRightString(DrawString):
    signature = IDrawRightString
    callable = 'drawRightString'


class IDrawCenteredString(IDrawString):
    """Draws a simple string (centered aligned) onto the canvas at the specified
    location."""

class DrawCenteredString(DrawString):
    signature = IDrawCenteredString
    callable = 'drawCentredString'


class IDrawAlignedString(IDrawString):
    """Draws a simple string (aligned to the pivot character) onto the canvas
    at the specified location."""

    pivotChar = attr.Text(
        title=u'Text',
        description=(u'The string/text that is put onto the canvas.'),
        min_length=1,
        max_length=1,
        default=u'.',
        required=True)

class DrawAlignedString(DrawString):
    signature = IDrawAlignedString
    callable = 'drawAlignedString'


class IEllipse(IShape):
    """Draws an ellipse on the canvas."""

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the ellipse.',
        required=True)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the ellipse.',
        required=True)

class Ellipse(CanvasRMLDirective):
    signature = IEllipse
    callable = 'ellipse'
    attrMapping = {'x': 'x1', 'y': 'y1'}

    def process(self):
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        # Convert width and height to end locations
        kwargs['x2'] = kwargs['x1'] + kwargs['width']
        del kwargs['width']
        kwargs['y2'] = kwargs['y1'] + kwargs['height']
        del kwargs['height']
        getattr(canvas, self.callable)(**kwargs)


class ICircle(IShape):
    """Draws a circle on the canvas."""

    radius = attr.Measurement(
        title=u'Radius',
        description=u'The radius of the circle.',
        required=True)

class Circle(CanvasRMLDirective):
    signature = ICircle
    callable = 'circle'
    attrMapping = {'x': 'x_cen', 'y': 'y_cen', 'radius': 'r'}


class IRectangle(IShape):
    """Draws an ellipse on the canvas."""

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the rectangle.',
        required=True)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the rectangle.',
        required=True)

    round = attr.Measurement(
        title=u'Corner Radius',
        description=u'The radius of the rounded corners.',
        required=False)

    href = attr.Text(
        title=u'Link URL',
        description=u'When specified, the rectangle becomes a link to that URL.',
        required=False)

    destination = attr.Text(
        title=u'Link Destination',
        description=(u'When specified, the rectangle becomes a link to that '
                     u'destination.'),
        required=False)

class Rectangle(CanvasRMLDirective):
    signature = IRectangle
    callable = 'rect'
    attrMapping = {'round': 'radius'}

    def process(self):
        if 'round' in self.element.keys():
            self.callable = 'roundRect'
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        # Create a link
        url = kwargs.pop('href', None)
        if url:
            canvas.linkURL(
                url,
                (kwargs['x'], kwargs['y'],
                 kwargs['x']+kwargs['width'], kwargs['y']+kwargs['height']))
        dest = kwargs.pop('destination', None)
        if dest:
            canvas.linkRect(
                '', dest,
                (kwargs['x'], kwargs['y'],
                 kwargs['x']+kwargs['width'], kwargs['y']+kwargs['height']))

        # Render the rectangle
        getattr(canvas, self.callable)(**kwargs)

class IGrid(interfaces.IRMLDirectiveSignature):
    """A shape to be drawn on the canvas."""

    xs = attr.Sequence(
        title=u'X-Coordinates',
        description=(u'A sequence x-coordinates that represent the vertical '
                     u'line positions.'),
        value_type=attr.Measurement(),
        required=True)

    ys = attr.Sequence(
        title=u'Y-Coordinates',
        description=(u'A sequence y-coordinates that represent the horizontal '
                     u'line positions.'),
        value_type=attr.Measurement(),
        required=True)


class Grid(CanvasRMLDirective):
    signature = IGrid
    callable = 'grid'
    attrMapping = {'xs': 'xlist', 'ys': 'ylist'}


class ILines(interfaces.IRMLDirectiveSignature):
    """A path of connected lines drawn on the canvas."""

    linelist = attr.TextNodeGrid(
        title=u'Line List',
        description=(u'A list of lines coordinates to draw.'),
        value_type=attr.Measurement(),
        columns=4,
        required=True)

class Lines(CanvasRMLDirective):
    signature = ILines
    callable = 'lines'


class ICurves(interfaces.IRMLDirectiveSignature):
    """A path of connected bezier curves drawn on the canvas."""

    curvelist = attr.TextNodeGrid(
        title=u'Curve List',
        description=(u'A list of curve coordinates to draw.'),
        value_type=attr.Measurement(),
        columns=8,
        required=True)

class Curves(CanvasRMLDirective):
    signature = ICurves
    callable = 'bezier'

    def process(self):
        argset = self.getAttributeValues(valuesOnly=True)[0]
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        for args in argset:
            getattr(canvas, self.callable)(*args)


class IImage(interfaces.IRMLDirectiveSignature):
    """Draws an external image on the canvas."""

    file = attr.Image(
        title=u'File',
        description=(u'Reference to the external file of the iamge.'),
        required=True)

    x = attr.Measurement(
        title=u'X-Coordinate',
        description=(u'The X-coordinate of the lower-left position of the '
                     u'shape.'),
        required=True)

    y = attr.Measurement(
        title=u'Y-Coordinate',
        description=(u'The Y-coordinate of the lower-left position of the '
                     u'shape.'),
        required=True)

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the image.',
        required=False)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the image.',
        required=False)

    showBoundary = attr.Boolean(
        title=u'Show Boundary',
        description=(u'A flag determining whether a border should be drawn '
                     u'around the image.'),
        default=False,
        required=False)

    preserveAspectRatio = attr.Boolean(
        title=u'Preserve Aspect Ratio',
        description=(u"A flag determining whether the image's aspect ration "
                     u"should be conserved under any circumstances."),
        default=False,
        required=False)

class Image(CanvasRMLDirective):
    signature = IImage
    callable = 'drawImage'
    attrMapping = {'file': 'image'}

    def process(self):
        kwargs = dict(self.getAttributeValues(attrMapping=self.attrMapping))
        preserve = kwargs.pop('preserveAspectRatio')
        show = kwargs.pop('showBoundary')

        if preserve:
            imgX, imgY = kwargs['image'].getSize()

            # Scale image correctly, if width and/or height were specified
            if 'width' in kwargs and 'height' not in kwargs:
                kwargs['height'] = imgY * kwargs['width'] / imgX
            elif 'height' in kwargs and 'width' not in kwargs:
                kwargs['width'] = imgX * kwargs['height'] / imgY
            elif 'width' in kwargs and 'height' in kwargs:
                if float(kwargs['width'])/kwargs['height'] > float(imgX)/imgY:
                    kwargs['width'] = imgX * kwargs['height'] / imgY
                else:
                    kwargs['height'] = imgY * kwargs['width'] / imgX

        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        getattr(canvas, self.callable)(**kwargs)

        if show:
            width = kwargs.get('width', kwargs['image'].getSize()[0])
            height = kwargs.get('height', kwargs['image'].getSize()[1])
            canvas.rect(kwargs['x'], kwargs['y'], width, height)


class IPlace(interfaces.IRMLDirectiveSignature):
    """Draws a set of flowables on the canvas within a given region."""

    x = attr.Measurement(
        title=u'X-Coordinate',
        description=(u'The X-coordinate of the lower-left position of the '
                     u'place.'),
        required=True)

    y = attr.Measurement(
        title=u'Y-Coordinate',
        description=(u'The Y-coordinate of the lower-left position of the '
                     u'place.'),
        required=True)

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the place.',
        required=False)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the place.',
        required=False)

class Place(CanvasRMLDirective):
    signature = IPlace

    def process(self):
        x, y, width, height = self.getAttributeValues(
            select=('x', 'y', 'width', 'height'), valuesOnly=True)
        y += height

        flows = flowable.Flow(self.element, self.parent)
        flows.process()

        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        for flow in flows.flow:
            flowWidth, flowHeight = flow.wrap(width, height)
            if flowWidth <= width and flowHeight <= height:
                y -= flowHeight
                flow.drawOn(canvas, x, y)
                height -= flowHeight
            else:
                raise ValueError("Not enough space")


class IParam(interfaces.IRMLDirectiveSignature):
    """Sets one paramter for the text annotation."""

    name = attr.String(
        title=u'Name',
        description=u'The name of the paramter.',
        required=True)

    value = attr.TextNode(
        title=u'Value',
        description=(u'The parameter value.'),
        required=True)

class Param(directive.RMLDirective):
    signature = IParam

    def process(self):
        args = dict(self.getAttributeValues())
        self.parent.params[args['name']] = args['value']


class ITextAnnotation(interfaces.IRMLDirectiveSignature):
    """Writes a low-level text annotation into the PDF."""
    occurence.containing(
        occurence.ZeroOrMore('param', IParam))

    contents = attr.FirstLevelTextNode(
        title=u'Contents',
        description=u'The PDF commands that are inserted as annotation.',
        required=True)

class TextAnnotation(CanvasRMLDirective):
    signature = ITextAnnotation
    factories = {'param': Param}

    paramTypes = {'escape': attr.Integer()}

    def process(self):
        contents = self.getAttributeValues(valuesOnly=True)[0]
        self.params = {}
        self.processSubDirectives()
        for name, type in self.paramTypes.items():
            if name in self.params:
                bound = type.bind(self)
                self.params[name] = bound.fromUnicode(self.params[name])
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        canvas.textAnnotation(contents, **self.params)


class IMoveTo(interfaces.IRMLDirectiveSignature):
    """Move the path cursor to the specified location."""

    position = attr.TextNodeSequence(
        title=u'Position',
        description=u'Position to which the path pointer is moved to.',
        value_type=attr.Measurement(),
        min_length=2,
        max_length=2,
        required=True)

class MoveTo(directive.RMLDirective):
    signature = IMoveTo

    def process(self):
        args = self.getAttributeValues(valuesOnly=True)
        self.parent.path.moveTo(*args[0])


class ICurveTo(interfaces.IRMLDirectiveSignature):
    """Create a bezier curve from the current location to the specified one."""

    curvelist = attr.TextNodeGrid(
        title=u'Curve Specification',
        description=u'Describes the end position and the curve properties.',
        value_type=attr.Measurement(),
        columns=6,
        required=True)

class CurveTo(directive.RMLDirective):
    signature = ICurveTo

    def process(self):
        argset = self.getAttributeValues(valuesOnly=True)[0]
        for args in argset:
            self.parent.path.curveTo(*args)

class ICurvesTo(ICurveTo):
    pass
directive.DeprecatedDirective(
    ICurvesTo,
    'Available for ReportLab RML compatibility. Please use the "curveto" '
    'directive instead.')


class IPath(IShape):
    """Create a line path."""
    occurence.containing(
        occurence.ZeroOrMore('moveto', IMoveTo),
        occurence.ZeroOrMore('curveto', ICurveTo),
        occurence.ZeroOrMore('curvesto', ICurvesTo),
        )

    points = attr.TextNodeGrid(
        title=u'Points',
        description=(u'A list of coordinate points that define th path.'),
        value_type=attr.Measurement(),
        columns=2,
        required=True)

    close = attr.Boolean(
        title=u'Close Path',
        description=(u"A flag specifying whether the path should be closed."),
        default=False,
        required=False)

    clip = attr.Boolean(
        title=u'Clip Path',
        description=(u"A flag specifying whether the path should clip "
                     u"overlapping elements."),
        default=False,
        required=False)

class Path(CanvasRMLDirective):
    signature = IPath
    factories = {
        'moveto': MoveTo,
        'curveto': CurveTo,
        'curvesto': CurveTo
        }

    def processPoints(self, text):
        if text.strip() == '':
            return
        bound = self.signature['points'].bind(self)
        for coords in bound.fromUnicode(text):
            self.path.lineTo(*coords)

    def process(self):
        kwargs = dict(self.getAttributeValues(ignore=('points',)))

        # Start the path and set the cursor to the start location.
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        self.path = canvas.beginPath()
        self.path.moveTo(kwargs.pop('x'), kwargs.pop('y'))

        # Process the text before the first sub-directive.
        if self.element.text is not None:
            self.processPoints(self.element.text)
        # Handle each sub-directive.
        for directive in self.element.getchildren():
            if directive.tag in self.factories:
                self.factories[directive.tag](directive, self).process()
            # If there is more text after sub-directive, process it.
            if directive.tail is not None:
                self.processPoints(directive.tail)

        if kwargs.pop('close', False):
            self.path.close()

        if kwargs.pop('clip', False):
            canvas.clipPath(self.path, **kwargs)
        else:
            canvas.drawPath(self.path, **kwargs)


class IFill(interfaces.IRMLDirectiveSignature):
    """Set the fill color."""

    color = attr.Color(
        title=u'Color',
        description=(u'The color value to be set.'),
        required=True)

class Fill(CanvasRMLDirective):
    signature = IFill
    callable = 'setFillColor'
    attrMapping = {'color': 'aColor'}


class IStroke(interfaces.IRMLDirectiveSignature):
    """Set the stroke/line color."""

    color = attr.Color(
        title=u'Color',
        description=(u'The color value to be set.'),
        required=True)

class Stroke(CanvasRMLDirective):
    signature = IStroke
    callable = 'setStrokeColor'
    attrMapping = {'color': 'aColor'}


class ISetFont(interfaces.IRMLDirectiveSignature):
    """Set the font name and/or size."""

    name = attr.String(
        title=u'Font Name',
        description=(u'The name of the font as it was registered.'),
        required=True)

    size = attr.Measurement(
        title=u'Size',
        description=(u'The font size.'),
        required=True)

    leading = attr.Measurement(
        title=u'Leading',
        description=(u'The font leading.'),
        required=False)

class SetFont(CanvasRMLDirective):
    signature = ISetFont
    callable = 'setFont'
    attrMapping = {'name': 'psfontname'}


class ISetFontSize(interfaces.IRMLDirectiveSignature):
    """Set the font size."""

    size = attr.Measurement(
        title=u'Size',
        description=(u'The font size.'),
        required=True)

    leading = attr.Measurement(
        title=u'Leading',
        description=(u'The font leading.'),
        required=False)

class SetFontSize(CanvasRMLDirective):
    signature = ISetFontSize
    callable = 'setFontSize'


class IScale(interfaces.IRMLDirectiveSignature):
    """Scale the drawing using x and y scaling factors."""

    sx = attr.Float(
        title=u'X-Scaling-Factor',
        description=(u'The scaling factor applied on x-coordinates.'),
        default=1,
        required=False)

    sy = attr.Float(
        title=u'Y-Scaling-Factor',
        description=(u'The scaling factor applied on y-coordinates.'),
        default=1,
        required=False)

class Scale(CanvasRMLDirective):
    signature = IScale
    callable = 'scale'
    attrMapping = {'sx': 'x', 'sy': 'y'}


class ITranslate(interfaces.IRMLDirectiveSignature):
    """Translate the drawing coordinates by the specified x and y offset."""

    dx = attr.Measurement(
        title=u'X-Offset',
        description=(u'The amount to move the drawing to the right.'),
        required=True)

    dy = attr.Measurement(
        title=u'Y-Offset',
        description=(u'The amount to move the drawing upward.'),
        required=True)

class Translate(CanvasRMLDirective):
    signature = ITranslate
    callable = 'translate'


class IRotate(interfaces.IRMLDirectiveSignature):
    """Rotate the drawing counterclockwise."""

    degrees = attr.Measurement(
        title=u'Angle',
        description=(u'The angle in degrees.'),
        required=True)

class Rotate(CanvasRMLDirective):
    signature = IRotate
    callable = 'rotate'
    attrMapping = {'degrees': 'theta'}


class ISkew(interfaces.IRMLDirectiveSignature):
    """Skew the drawing."""

    alpha = attr.Measurement(
        title=u'Alpha',
        description=(u'The amount to skew the drawing in the horizontal.'),
        required=True)

    beta = attr.Measurement(
        title=u'Beta',
        description=(u'The amount to skew the drawing in the vertical.'),
        required=True)

class Skew(CanvasRMLDirective):
    signature = ISkew
    callable = 'skew'


class ITransform(interfaces.IRMLDirectiveSignature):
    """A full 2-D matrix transformation"""

    matrix = attr.TextNodeSequence(
        title=u'Matrix',
        description=u'The transformation matrix.',
        value_type=attr.Float(),
        min_length=6,
        max_length=6,
        required=True)

class Transform(CanvasRMLDirective):
    signature = ITransform

    def process(self):
        args = self.getAttributeValues(valuesOnly=True)
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        canvas.transform(*args[0])


class ILineMode(interfaces.IRMLDirectiveSignature):
    """Set the line mode for the following graphics elements."""

    width = attr.Measurement(
        title=u'Width',
        description=(u'The line width.'),
        required=False)

    dash = attr.Sequence(
        title=u'Dash-Pattern',
        description=(u'The dash-pattern of a line.'),
        value_type=attr.Measurement(),
        required=False)

    miterLimit = attr.Measurement(
        title=u'Miter Limit',
        description=(u'The ???.'),
        required=False)

    join = attr.Choice(
        title=u'Join',
        description=u'The way lines are joined together.',
        choices=interfaces.JOIN_CHOICES,
        required=False)

    cap = attr.Choice(
        title=u'Cap',
        description=u'The cap is the desciption of how the line-endings look.',
        choices=interfaces.CAP_CHOICES,
        required=False)

class LineMode(CanvasRMLDirective):
    signature = ILineMode

    def process(self):
        kw = dict(self.getAttributeValues())
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        if 'width' in kw:
            canvas.setLineWidth(kw['width'])
        if 'join' in kw:
            canvas.setLineJoin(kw['join'])
        if 'cap' in kw:
            canvas.setLineCap(kw['cap'])
        if 'miterLimit' in kw:
            canvas.setMiterLimit(kw['miterLimit'])
        if 'dash' in kw:
            canvas.setDash(kw['dash'])


class IBookmark(interfaces.IRMLDirectiveSignature):
    """
    This creates a bookmark to the current page which can be referred to with
    the given key elsewhere. (Used inside a page drawing.)
    """

    name = attr.Text(
        title=u'Name',
        description=u'The name of the bookmark.',
        required=True)

    fit = attr.Choice(
        title=u'Fit',
        description=u'The Fit Type.',
        choices=('XYZ', 'Fit', 'FitH', 'FitV', 'FitR'),
        required=False)

    zoom = attr.Float(
        title=u'Zoom',
        description=u'The zoom level when clicking on the bookmark.',
        required=False)

    x = attr.Measurement(
        title=u'X-Position',
        description=u'The x-position.',
        required=False)

    y = attr.Measurement(
        title=u'Y-Position',
        description=u'The y-position.',
        required=False)

class Bookmark(CanvasRMLDirective):
    signature = IBookmark

    def process(self):
        args = dict(self.getAttributeValues())
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        args['left'], args['top'] = canvas.absolutePosition(args['x'], args['y'])
        canvas.bookmarkPage(**args)


class IPlugInGraphic(interfaces.IRMLDirectiveSignature):
    """Inserts a custom graphic developed in Python."""

    module = attr.String(
        title=u'Module',
        description=u'The Python module in which the flowable is located.',
        required=True)

    function = attr.String(
        title=u'Function',
        description=(u'The name of the factory function within the module '
                     u'that returns the custom flowable.'),
        required=True)

    params = attr.TextNode(
        title=u'Parameters',
        description=(u'A list of parameters encoded as a long string.'),
        required=False)

class PlugInGraphic(CanvasRMLDirective):
    signature = IPlugInGraphic

    def process(self):
        modulePath, functionName, params = self.getAttributeValues(
            valuesOnly=True)
        module = __import__(modulePath, {}, {}, [modulePath])
        function = getattr(module, functionName)
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        function(canvas, params)


class IDrawing(interfaces.IRMLDirectiveSignature):
    """A container directive for all directives that draw directly on the
    cnavas."""
    occurence.containing(
        # State Manipulation
        occurence.ZeroOrMore('saveState', ISaveState),
        occurence.ZeroOrMore('restoreState', IRestoreState),
        # String Drawing
        occurence.ZeroOrMore('drawString', IDrawString),
        occurence.ZeroOrMore('drawRightString', IDrawRightString),
        occurence.ZeroOrMore('drawCenteredString', IDrawCenteredString),
        occurence.ZeroOrMore('drawCentredString', IDrawCenteredString),
        occurence.ZeroOrMore('drawAlignedString', IDrawAlignedString),
        # Drawing Operations
        occurence.ZeroOrMore('ellipse', IEllipse),
        occurence.ZeroOrMore('circle', ICircle),
        occurence.ZeroOrMore('rect', IRectangle),
        occurence.ZeroOrMore('grid', IGrid),
        occurence.ZeroOrMore('lines', ILines),
        occurence.ZeroOrMore('curves', ICurves),
        occurence.ZeroOrMore('image', IImage),
        occurence.ZeroOrMore('place', IPlace),
        occurence.ZeroOrMore('textAnnotation', ITextAnnotation),
        occurence.ZeroOrMore('path', IPath),
        # State Change Operations
        occurence.ZeroOrMore('fill', IFill),
        occurence.ZeroOrMore('stroke', IStroke),
        occurence.ZeroOrMore('setFont', ISetFont),
        occurence.ZeroOrMore('setFontSize', ISetFontSize),
        occurence.ZeroOrMore('scale', IScale),
        occurence.ZeroOrMore('translate', ITranslate),
        occurence.ZeroOrMore('rotate', IRotate),
        occurence.ZeroOrMore('skew', ISkew),
        occurence.ZeroOrMore('transform', ITransform),
        occurence.ZeroOrMore('lineMode', ILineMode),
        # Form Field Elements
        occurence.ZeroOrMore('barCode', form.IBarCode),
        occurence.ZeroOrMore('textField', form.ITextField),
        occurence.ZeroOrMore('buttonField', form.IButtonField),
        occurence.ZeroOrMore('selectField', form.ISelectField),
        # Charts
        occurence.ZeroOrMore('barChart', chart.IBarChart),
        occurence.ZeroOrMore('barChart3D', chart.IBarChart3D),
        occurence.ZeroOrMore('linePlot', chart.ILinePlot),
        occurence.ZeroOrMore('linePlot3D', chart.ILinePlot3D),
        occurence.ZeroOrMore('pieChart', chart.IPieChart),
        occurence.ZeroOrMore('pieChart3D', chart.IPieChart3D),
        occurence.ZeroOrMore('spiderChart', chart.ISpiderChart),
        # Misc
        occurence.ZeroOrMore('bookmark', IBookmark),
        occurence.ZeroOrMore('plugInGraphic', IPlugInGraphic),
        )

class Drawing(directive.RMLDirective):
    signature = IDrawing

    factories = {
        # State Management
        'saveState': SaveState,
        'restoreState': RestoreState,
        # Drawing Strings
        'drawString': DrawString,
        'drawRightString': DrawRightString,
        'drawCenteredString': DrawCenteredString,
        'drawCentredString': DrawCenteredString,
        'drawAlignedString': DrawAlignedString,
        # Drawing Operations
        'ellipse': Ellipse,
        'circle': Circle,
        'rect': Rectangle,
        'grid': Grid,
        'lines': Lines,
        'curves': Curves,
        'image': Image,
        'place': Place,
        'textAnnotation': TextAnnotation,
        'path': Path,
        # Form Field Elements
        'barCode': form.BarCode,
        'textField': form.TextField,
        'buttonField': form.ButtonField,
        'selectField': form.SelectField,
        # State Change Operations
        'fill': Fill,
        'stroke': Stroke,
        'setFont': SetFont,
        'setFontSize': SetFontSize,
        'scale': Scale,
        'translate': Translate,
        'rotate': Rotate,
        'skew': Skew,
        'transform': Transform,
        'lineMode': LineMode,
        # Charts
        'barChart': chart.BarChart,
        'barChart3D': chart.BarChart3D,
        'linePlot': chart.LinePlot,
        'linePlot3D': chart.LinePlot3D,
        'pieChart': chart.PieChart,
        'pieChart3D': chart.PieChart3D,
        'spiderChart': chart.SpiderChart,
        # Misc
        'bookmark': Bookmark,
        'plugInGraphic': PlugInGraphic,
        }


class IPageDrawing(IDrawing):
    """Draws directly on the content of one page's canvas. Every call of this
    directive creates a new page."""

    occurence.containing(
        #'mergePage': IMergePage,
        *IDrawing.getTaggedValue('directives'))

class PageDrawing(Drawing):
    signature = IDrawing

    factories = Drawing.factories.copy()
    factories.update({
        'mergePage': page.MergePage
        })

    def process(self):
        super(Drawing, self).process()
        canvas = attr.getManager(self, interfaces.ICanvasManager).canvas
        canvas.showPage()


class IPageInfo(interfaces.IRMLDirectiveSignature):
    """Set's up page-global settings."""

    pageSize = attr.PageSize(
        title=u'Page Size',
        description=(u'The page size of all pages within this document.'),
        required=True)

class PageInfo(CanvasRMLDirective):
    signature=IPageInfo
    callable = 'setPageSize'
    attrMapping = {'pageSize': 'size'}
z3c.rml-2.0.0/src/z3c/rml/storyplace.py0000664000175000017500000000677712064252265021337 0ustar  srichtersrichter00000000000000##############################################################################
#
# Copyright (c) 2012 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""``pdfInclude`` Directive.
"""
__docformat__ = "reStructuredText"
from reportlab.platypus import flowables

from z3c.rml import attr, flowable, interfaces, occurence


class StoryPlaceFlowable(flowables.Flowable):

    def __init__(self, x, y, width, height, origin, flows):
        flowables.Flowable.__init__(self)
        self.x = x
        self.y = y
        self.width = width
        self.height = height
        self.origin = origin
        self.flows = flows

    def wrap(self, *args):
        return (0, 0)

    def draw(self):
        saveState = False
        x, y = self.x, self.y
        self.canv.restoreState()
        if self.origin == 'frame':
            x += self._frame._x1
            y += self._frame._y1
        elif self.origin == 'local':
            x += self._frame._x
            y += self._frame._y
        else:
            # origin == 'page'
            pass
        width, height  = self.width, self.height
        y += height
        for flow in self.flows.flow:
            flowWidth, flowHeight = flow.wrap(width, height)
            if flowWidth <= width and flowHeight <= height:
                y -= flowHeight
                flow.drawOn(self.canv, x, y)
                height -= flowHeight
            else:
                raise ValueError("Not enough space")
        self.canv.saveState()


class IStoryPlace(interfaces.IRMLDirectiveSignature):
    """Draws a set of flowables on the canvas within a given region."""

    x = attr.Measurement(
        title=u'X-Coordinate',
        description=(u'The X-coordinate of the lower-left position of the '
                     u'place.'),
        required=True)

    y = attr.Measurement(
        title=u'Y-Coordinate',
        description=(u'The Y-coordinate of the lower-left position of the '
                     u'place.'),
        required=True)

    width = attr.Measurement(
        title=u'Width',
        description=u'The width of the place.',
        required=False)

    height = attr.Measurement(
        title=u'Height',
        description=u'The height of the place.',
        required=False)

    origin = attr.Choice(
        title=u'Origin',
        description=u'The origin of the coordinate system for the story.',
        choices=('page', 'frame', 'local'),
        default = 'page',
        required=False)

class StoryPlace(flowable.Flowable):
    signature = IStoryPlace

    def process(self):
        x, y, width, height, origin = self.getAttributeValues(
            select=('x', 'y', 'width', 'height', 'origin'), valuesOnly=True)

        flows = flowable.Flow(self.element, self.parent)
        flows.process()
        self.parent.flow.append(
            StoryPlaceFlowable(x, y, width, height, origin, flows))


flowable.Flow.factories['storyPlace'] = StoryPlace
flowable.IFlow.setTaggedValue(
    'directives',
    flowable.IFlow.getTaggedValue('directives') +
    (occurence.ZeroOrMore('storyPlace', IStoryPlace),)
    )
z3c.rml-2.0.0/src/z3c/rml/__init__.py0000664000175000017500000000012712064141421020657 0ustar  srichtersrichter00000000000000
# Hook up our custom paragraph parser.
import z3c.rml.paraparser
import z3c.rml.rlfix
z3c.rml-2.0.0/src/z3c/__init__.py0000644000175000017500000000031112032774152020066 0ustar  srichtersrichter00000000000000# this is a namespace package
try:
    import pkg_resources
    pkg_resources.declare_namespace(__name__)
except ImportError:
    import pkgutil
    __path__ = pkgutil.extend_path(__path__, __name__)

z3c.rml-2.0.0/src/z3c.rml.egg-info/0000775000175000017500000000000012065004362020242 5ustar  srichtersrichter00000000000000z3c.rml-2.0.0/src/z3c.rml.egg-info/top_level.txt0000644000175000017500000000000412065004362022764 0ustar  srichtersrichter00000000000000z3c
z3c.rml-2.0.0/src/z3c.rml.egg-info/namespace_packages.txt0000644000175000017500000000000412065004362024565 0ustar  srichtersrichter00000000000000z3c
z3c.rml-2.0.0/src/z3c.rml.egg-info/not-zip-safe0000644000175000017500000000000112032774152022473 0ustar  srichtersrichter00000000000000
z3c.rml-2.0.0/src/z3c.rml.egg-info/dependency_links.txt0000644000175000017500000000000112065004362024306 0ustar  srichtersrichter00000000000000
z3c.rml-2.0.0/src/z3c.rml.egg-info/SOURCES.txt0000644000175000017500000003031312065004362022124 0ustar  srichtersrichter00000000000000AUTHORS.txt
CHANGES.txt
COPYRIGHT.txt
LICENSE.txt
README.txt
TODOS.txt
bootstrap.py
buildout.cfg
setup.py
src/z3c/__init__.py
src/z3c.rml.egg-info/PKG-INFO
src/z3c.rml.egg-info/SOURCES.txt
src/z3c.rml.egg-info/dependency_links.txt
src/z3c.rml.egg-info/entry_points.txt
src/z3c.rml.egg-info/namespace_packages.txt
src/z3c.rml.egg-info/not-zip-safe
src/z3c.rml.egg-info/requires.txt
src/z3c.rml.egg-info/top_level.txt
src/z3c/rml/README.txt
src/z3c/rml/__init__.py
src/z3c/rml/attr.py
src/z3c/rml/canvas.py
src/z3c/rml/chart.py
src/z3c/rml/directive.py
src/z3c/rml/doclogic.py
src/z3c/rml/document.py
src/z3c/rml/dtd.py
src/z3c/rml/error.py
src/z3c/rml/flowable.py
src/z3c/rml/form.py
src/z3c/rml/interfaces.py
src/z3c/rml/list.py
src/z3c/rml/occurence.py
src/z3c/rml/page.py
src/z3c/rml/pagetemplate.py
src/z3c/rml/pagetemplate.txt
src/z3c/rml/paraparser.py
src/z3c/rml/pdfinclude.py
src/z3c/rml/platypus.py
src/z3c/rml/reference.pt
src/z3c/rml/reference.py
src/z3c/rml/rlfix.py
src/z3c/rml/rml-reference.pdf
src/z3c/rml/rml.dtd
src/z3c/rml/rml2pdf.py
src/z3c/rml/rml2pdfscript.py
src/z3c/rml/special.py
src/z3c/rml/storyplace.py
src/z3c/rml/stylesheet.py
src/z3c/rml/template.py
src/z3c/rml/tests/__init__.py
src/z3c/rml/tests/flowable.py
src/z3c/rml/tests/module.py
src/z3c/rml/tests/test_directive.py
src/z3c/rml/tests/test_pagetemplate.py
src/z3c/rml/tests/test_rml.py
src/z3c/rml/tests/test_subprocess.py
src/z3c/rml/tests/expected/encoding-test-latin1.pdf
src/z3c/rml/tests/expected/encoding-test-utf8.pdf
src/z3c/rml/tests/expected/rml-examples-000-simple.pdf
src/z3c/rml/tests/expected/rml-examples-001-hello.pdf
src/z3c/rml/tests/expected/rml-examples-002-paras.pdf
src/z3c/rml/tests/expected/rml-examples-003-frames.pdf
src/z3c/rml/tests/expected/rml-examples-004-fpt-templates.pdf
src/z3c/rml/tests/expected/rml-examples-004-templates.pdf
src/z3c/rml/tests/expected/rml-examples-005-fonts.pdf
src/z3c/rml/tests/expected/rml-examples-006-barcodes.pdf
src/z3c/rml/tests/expected/rml-examples-008-tables.pdf
src/z3c/rml/tests/expected/rml-examples-009-splitting.pdf
src/z3c/rml/tests/expected/rml-examples-010-linkURL.pdf
src/z3c/rml/tests/expected/rml-examples-011-keepwithnext.pdf
src/z3c/rml/tests/expected/rml-examples-017-outlines.pdf
src/z3c/rml/tests/expected/rml-examples-022-paras-oas.pdf
src/z3c/rml/tests/expected/rml-examples-029-keepinframe.pdf
src/z3c/rml/tests/expected/rml-examples-031-japanese.pdf
src/z3c/rml/tests/expected/rml-examples-032-images.pdf
src/z3c/rml/tests/expected/rml-examples-034-cmyk.pdf
src/z3c/rml/tests/expected/rml-guide-example-01.pdf
src/z3c/rml/tests/expected/rml-guide-example-02.pdf
src/z3c/rml/tests/expected/rml-guide-example-03.pdf
src/z3c/rml/tests/expected/rml-guide-example-04.pdf
src/z3c/rml/tests/expected/rml-guide-example-05.pdf
src/z3c/rml/tests/expected/rml-guide-example-06.pdf
src/z3c/rml/tests/expected/rml-guide-example-07.pdf
src/z3c/rml/tests/expected/rml-guide-example-08.pdf
src/z3c/rml/tests/expected/rml-guide-example-09.pdf
src/z3c/rml/tests/expected/rml-guide-example-10.pdf
src/z3c/rml/tests/expected/rml-guide-example-11.pdf
src/z3c/rml/tests/expected/rml-guide-example-12.pdf
src/z3c/rml/tests/expected/sample-shipment-chinese.pdf
src/z3c/rml/tests/expected/simple-layout.pdf
src/z3c/rml/tests/expected/symbols-set.pdf
src/z3c/rml/tests/expected/tag-addMapping.pdf
src/z3c/rml/tests/expected/tag-alias.pdf
src/z3c/rml/tests/expected/tag-barChart.pdf
src/z3c/rml/tests/expected/tag-barChart3d.pdf
src/z3c/rml/tests/expected/tag-barCode.pdf
src/z3c/rml/tests/expected/tag-barCodeFlowable.pdf
src/z3c/rml/tests/expected/tag-blockTable-1.pdf
src/z3c/rml/tests/expected/tag-blockTable-2.pdf
src/z3c/rml/tests/expected/tag-blockTable-3.pdf
src/z3c/rml/tests/expected/tag-blockTable-4.pdf
src/z3c/rml/tests/expected/tag-blockTable-5.pdf
src/z3c/rml/tests/expected/tag-blockTable-6.pdf
src/z3c/rml/tests/expected/tag-blockTable-7.pdf
src/z3c/rml/tests/expected/tag-blockTable-8.pdf
src/z3c/rml/tests/expected/tag-blockTable-9.pdf
src/z3c/rml/tests/expected/tag-blockTable-bulkData.pdf
src/z3c/rml/tests/expected/tag-blockTableStyle-2.pdf
src/z3c/rml/tests/expected/tag-blockTableStyle.pdf
src/z3c/rml/tests/expected/tag-bookmark.pdf
src/z3c/rml/tests/expected/tag-buttonField.pdf
src/z3c/rml/tests/expected/tag-circle.pdf
src/z3c/rml/tests/expected/tag-color.pdf
src/z3c/rml/tests/expected/tag-condPageBreak.pdf
src/z3c/rml/tests/expected/tag-curves.pdf
src/z3c/rml/tests/expected/tag-document-pageDrawing.pdf
src/z3c/rml/tests/expected/tag-document-story.pdf
src/z3c/rml/tests/expected/tag-drawAlignedString.pdf
src/z3c/rml/tests/expected/tag-drawCenteredString.pdf
src/z3c/rml/tests/expected/tag-drawRightString.pdf
src/z3c/rml/tests/expected/tag-drawString.pdf
src/z3c/rml/tests/expected/tag-ellipse.pdf
src/z3c/rml/tests/expected/tag-fill.pdf
src/z3c/rml/tests/expected/tag-fixedSize.pdf
src/z3c/rml/tests/expected/tag-grid.pdf
src/z3c/rml/tests/expected/tag-hr.pdf
src/z3c/rml/tests/expected/tag-illustration.pdf
src/z3c/rml/tests/expected/tag-image-1.pdf
src/z3c/rml/tests/expected/tag-image.pdf
src/z3c/rml/tests/expected/tag-imageAndFlowables.pdf
src/z3c/rml/tests/expected/tag-indent.pdf
src/z3c/rml/tests/expected/tag-keepInFrame.pdf
src/z3c/rml/tests/expected/tag-keepTogether.pdf
src/z3c/rml/tests/expected/tag-lineMode.pdf
src/z3c/rml/tests/expected/tag-linePlot.pdf
src/z3c/rml/tests/expected/tag-linePlot3D.pdf
src/z3c/rml/tests/expected/tag-lines.pdf
src/z3c/rml/tests/expected/tag-mergePage.pdf
src/z3c/rml/tests/expected/tag-name.pdf
src/z3c/rml/tests/expected/tag-nextFrame.pdf
src/z3c/rml/tests/expected/tag-nextPage.pdf
src/z3c/rml/tests/expected/tag-outlineAdd.pdf
src/z3c/rml/tests/expected/tag-pageGraphics.pdf
src/z3c/rml/tests/expected/tag-pageInfo-2.pdf
src/z3c/rml/tests/expected/tag-pageInfo.pdf
src/z3c/rml/tests/expected/tag-para-border.pdf
src/z3c/rml/tests/expected/tag-para-wordWrap.pdf
src/z3c/rml/tests/expected/tag-para.pdf
src/z3c/rml/tests/expected/tag-path.pdf
src/z3c/rml/tests/expected/tag-pieChart.pdf
src/z3c/rml/tests/expected/tag-pieChart3d.pdf
src/z3c/rml/tests/expected/tag-place.pdf
src/z3c/rml/tests/expected/tag-plugInFlowable.pdf
src/z3c/rml/tests/expected/tag-pre.pdf
src/z3c/rml/tests/expected/tag-pto.pdf
src/z3c/rml/tests/expected/tag-rectange.pdf
src/z3c/rml/tests/expected/tag-registerCidFont.pdf
src/z3c/rml/tests/expected/tag-registerTTFont.pdf
src/z3c/rml/tests/expected/tag-registerType1Face.pdf
src/z3c/rml/tests/expected/tag-rotate.pdf
src/z3c/rml/tests/expected/tag-scale.pdf
src/z3c/rml/tests/expected/tag-selectField.pdf
src/z3c/rml/tests/expected/tag-setNextFrame.pdf
src/z3c/rml/tests/expected/tag-setNextTemplate.pdf
src/z3c/rml/tests/expected/tag-skew.pdf
src/z3c/rml/tests/expected/tag-spacer.pdf
src/z3c/rml/tests/expected/tag-spiderChart.pdf
src/z3c/rml/tests/expected/tag-stroke.pdf
src/z3c/rml/tests/expected/tag-textAnnotation.pdf
src/z3c/rml/tests/expected/tag-textField.pdf
src/z3c/rml/tests/expected/tag-transform.pdf
src/z3c/rml/tests/expected/tag-translate.pdf
src/z3c/rml/tests/expected/tag-xpre.pdf
src/z3c/rml/tests/input/encoding-test-latin1.rml
src/z3c/rml/tests/input/encoding-test-utf8.rml
src/z3c/rml/tests/input/rml-examples-000-simple.rml
src/z3c/rml/tests/input/rml-examples-001-hello.rml
src/z3c/rml/tests/input/rml-examples-002-paras.rml
src/z3c/rml/tests/input/rml-examples-003-frames.rml
src/z3c/rml/tests/input/rml-examples-004-fpt-templates.rml
src/z3c/rml/tests/input/rml-examples-004-templates.rml
src/z3c/rml/tests/input/rml-examples-005-fonts.rml
src/z3c/rml/tests/input/rml-examples-006-barcodes.rml
src/z3c/rml/tests/input/rml-examples-008-tables.rml
src/z3c/rml/tests/input/rml-examples-009-splitting.rml
src/z3c/rml/tests/input/rml-examples-010-linkURL.rml
src/z3c/rml/tests/input/rml-examples-011-keepwithnext.rml
src/z3c/rml/tests/input/rml-examples-017-outlines.rml
src/z3c/rml/tests/input/rml-examples-022-paras-oas.rml
src/z3c/rml/tests/input/rml-examples-029-keepinframe.rml
src/z3c/rml/tests/input/rml-examples-031-japanese.rml
src/z3c/rml/tests/input/rml-examples-032-images.rml
src/z3c/rml/tests/input/rml-examples-034-cmyk.rml
src/z3c/rml/tests/input/rml-guide-example-01.rml
src/z3c/rml/tests/input/rml-guide-example-02.rml
src/z3c/rml/tests/input/rml-guide-example-03.rml
src/z3c/rml/tests/input/rml-guide-example-04.rml
src/z3c/rml/tests/input/rml-guide-example-05.rml
src/z3c/rml/tests/input/rml-guide-example-06.rml
src/z3c/rml/tests/input/rml-guide-example-07.rml
src/z3c/rml/tests/input/rml-guide-example-08.rml
src/z3c/rml/tests/input/rml-guide-example-09.rml
src/z3c/rml/tests/input/rml-guide-example-10.rml
src/z3c/rml/tests/input/rml-guide-example-11.rml
src/z3c/rml/tests/input/rml-guide-example-12.rml
src/z3c/rml/tests/input/simple-layout.rml
src/z3c/rml/tests/input/symbols-set.rml
src/z3c/rml/tests/input/tag-addMapping.rml
src/z3c/rml/tests/input/tag-alias.rml
src/z3c/rml/tests/input/tag-barChart.rml
src/z3c/rml/tests/input/tag-barChart3d.rml
src/z3c/rml/tests/input/tag-barCodeFlowable.rml
src/z3c/rml/tests/input/tag-barcode.rml
src/z3c/rml/tests/input/tag-blockTable-1.rml
src/z3c/rml/tests/input/tag-blockTable-2.rml
src/z3c/rml/tests/input/tag-blockTable-3.rml
src/z3c/rml/tests/input/tag-blockTable-4.rml
src/z3c/rml/tests/input/tag-blockTable-5.rml
src/z3c/rml/tests/input/tag-blockTable-6.rml
src/z3c/rml/tests/input/tag-blockTable-7.rml
src/z3c/rml/tests/input/tag-blockTable-8.rml
src/z3c/rml/tests/input/tag-blockTable-9.rml
src/z3c/rml/tests/input/tag-blockTable-bulkData.rml
src/z3c/rml/tests/input/tag-blockTableStyle-2.rml
src/z3c/rml/tests/input/tag-blockTableStyle.rml
src/z3c/rml/tests/input/tag-bookmark.rml
src/z3c/rml/tests/input/tag-buttonField.rml
src/z3c/rml/tests/input/tag-circle.rml
src/z3c/rml/tests/input/tag-color.rml
src/z3c/rml/tests/input/tag-condPageBreak.rml
src/z3c/rml/tests/input/tag-curves.rml
src/z3c/rml/tests/input/tag-document-pageDrawing.rml
src/z3c/rml/tests/input/tag-document-story.rml
src/z3c/rml/tests/input/tag-drawAlignedString.rml
src/z3c/rml/tests/input/tag-drawCenteredString.rml
src/z3c/rml/tests/input/tag-drawRightString.rml
src/z3c/rml/tests/input/tag-drawString.rml
src/z3c/rml/tests/input/tag-ellipse.rml
src/z3c/rml/tests/input/tag-fill.rml
src/z3c/rml/tests/input/tag-fixedSize.rml
src/z3c/rml/tests/input/tag-grid.rml
src/z3c/rml/tests/input/tag-hr.rml
src/z3c/rml/tests/input/tag-illustration.rml
src/z3c/rml/tests/input/tag-image-1.rml
src/z3c/rml/tests/input/tag-image.rml
src/z3c/rml/tests/input/tag-imageAndFlowables.rml
src/z3c/rml/tests/input/tag-indent.rml
src/z3c/rml/tests/input/tag-keepInFrame.rml
src/z3c/rml/tests/input/tag-keepTogether.rml
src/z3c/rml/tests/input/tag-lineMode.rml
src/z3c/rml/tests/input/tag-linePlot.rml
src/z3c/rml/tests/input/tag-linePlot3D.rml
src/z3c/rml/tests/input/tag-lines.rml
src/z3c/rml/tests/input/tag-mergePage.rml
src/z3c/rml/tests/input/tag-name.rml
src/z3c/rml/tests/input/tag-nextFrame.rml
src/z3c/rml/tests/input/tag-nextPage.rml
src/z3c/rml/tests/input/tag-outlineAdd.rml
src/z3c/rml/tests/input/tag-pageGraphics.rml
src/z3c/rml/tests/input/tag-pageInfo-2.rml
src/z3c/rml/tests/input/tag-pageInfo.rml
src/z3c/rml/tests/input/tag-para-border.rml
src/z3c/rml/tests/input/tag-para-wordWrap.rml
src/z3c/rml/tests/input/tag-para.rml
src/z3c/rml/tests/input/tag-path.rml
src/z3c/rml/tests/input/tag-pieChart.rml
src/z3c/rml/tests/input/tag-pieChart3d.rml
src/z3c/rml/tests/input/tag-place.rml
src/z3c/rml/tests/input/tag-plugInFlowable.rml
src/z3c/rml/tests/input/tag-pre.rml
src/z3c/rml/tests/input/tag-pto.rml
src/z3c/rml/tests/input/tag-rectange.rml
src/z3c/rml/tests/input/tag-registerCidFont.rml
src/z3c/rml/tests/input/tag-registerTTFont.rml
src/z3c/rml/tests/input/tag-registerType1Face.rml
src/z3c/rml/tests/input/tag-rotate.rml
src/z3c/rml/tests/input/tag-scale.rml
src/z3c/rml/tests/input/tag-selectField.rml
src/z3c/rml/tests/input/tag-setNextFrame.rml
src/z3c/rml/tests/input/tag-setNextTemplate.rml
src/z3c/rml/tests/input/tag-skew.rml
src/z3c/rml/tests/input/tag-spacer.rml
src/z3c/rml/tests/input/tag-spiderChart.rml
src/z3c/rml/tests/input/tag-stroke.rml
src/z3c/rml/tests/input/tag-textAnnotation.rml
src/z3c/rml/tests/input/tag-textField.rml
src/z3c/rml/tests/input/tag-transform.rml
src/z3c/rml/tests/input/tag-translate.rml
src/z3c/rml/tests/input/tag-xpre.rml
src/z3c/rml/tests/input/zope3logo.gif
src/z3c/rml/tests/input/data/fw2.pdf
src/z3c/rml/tests/input/images/cylinder.eps
src/z3c/rml/tests/input/images/replogo.gif
src/z3c/rml/tests/output/README.txtz3c.rml-2.0.0/src/z3c.rml.egg-info/PKG-INFO0000644000175000017500000002277212065004362021347 0ustar  srichtersrichter00000000000000Metadata-Version: 1.1
Name: z3c.rml
Version: 2.0.0
Summary: An alternative implementation of RML
Home-page: http://pypi.python.org/pypi/z3c.rml
Author: Stephan Richter and the Zope Community
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ===================================================
        ``z3c.rml`` -- An alternative implementation of RML
        ===================================================
        
        This is an alternative implementation of ReportLab's RML PDF generation XML
        format. Like the original implementation, it is based on ReportLab's
        ``reportlab`` library.
        
        You can read all about ``z3c.rml`` and see many examples on how to use it,
        see the "RML Reference":http://svn.zope.org/z3c.rml/trunk/src/z3c/rml/rml-reference.pdf?view=auto
        
        
        =======
        CHANGES
        =======
        
        2.0.0 (2012-12-21)
        ------------------
        
        - Implemented ``saveState`` and ``restoreState`` directives. (LP #666194)
        
        - Implemented ``storyPlace`` directive. (LP #665941)
        
        - Implemented ``clip`` attribute of ``path`` directive. See RML example 041.
        
        - Added ``h4``, ``h5``, and ``h6`` directives.
        
        - Implemented ``codesnippet`` directive.
        
        - Implemented ``pageBreakBefore``, ``frameBreakBefore``, ``textTransform``,
          and ``endDots`` attributes for paragraph styles.
        
        - Added ``maxLineLength`` and ``newLineChars`` attributes to the ``pre``
          directive.
        
        - Implemented ``pageNumber`` element for all ``draw*String`` elements.
        
        - Implemented ``NamedString`` directive.
        
        - Implemented ``startIndex`` and ``showIndex`` directive. Also hooked up
          ``index`` in paragraphs properly. You can now create real book indexes.
        
        - Implemented ``ol``, ``ul``, and ``li`` directives, which allow highly
          flexible lists to be created. Also implemented a complimentary ``listStyle``
          directive.
        
        - Implemented the following doc-programming directives:
        
            * docAssert
            * docAssign
            * docElse
            * docIf
            * docExec
            * docPara
            * docWhile
        
        - Added ``encName`` attribute to ``registerCidFont`` directive.
        
        - Renamed ``bookmark`` to ``bookmarkPage``.
        
        - Created a new canvas directive called ``bookmark``.
        
        - Added ``img`` directive, which is a simple image flowable.
        
        - Implemented crop marks support fully.
        
        - Added ``pageLayout`` and ``pageMode`` to ``docInit`` directive.
        
        - Implemented all logging related directives.
        
        - Implemented ``color`` directive inside the ``initialize`` directive.
        
        - Renamed ``pdfInclude`` to documented ``includePdfPages`` and added `pages`
          attribute, so that you can only include specific pages.
        
        - Don't show "doc" namespace in reference snippets.
        
        - Create a list of RML2PDF and z3c.rml differences.
        
        - Implemented the ``ABORT_ON_INVALID_DIRECTIVE`` flag, that when set ``True``
          will raise a ``ValueError`` error on the first occurence of a bad tag.
        
        - Implemented ``setFontSize`` directive for page drawings.
        
        - Implemented ``plugInGraphic`` which allows inserting graphics rendered in
          Python.
        
        - Added `href` and `destination` to table cells and rectangles.
        
        - Bug: Due to a logic error, bad directives were never properly detected and
          logged about.
        
        - Bug: Overwriting the default paragraph styles did not work properly.
        
        - Bug: Specifying a color in any tag inside the paragraph would fail, if the
          color was a referenced name.
        
        - Bug: Moved premature ``getName`` evaluation into runtime to properly handle
          synamic content now. This is now properly done for any paragraph and
          draw string variant.
        
        - Bug: Fixed DTD generator to properly ignore Text Nodes as attributes. Also
          text nodes were not properly documented as element PCDATA.
        
        
        1.1.0 (2012-12-18)
        ------------------
        
        - Upgrade to ReportLab 2.6. This required some font changes and several
          generated PDFs did not match, since some default fonts changed to sans-serif.
        
        - Added ``pdfInclude`` directive from Alex Garel. (LP #969399).
        
        - Switched to Pillow (from PIL).
        
        - Switched RML highlighting in RML Reference from SilverCity to Pygments.
        
        - Bug: Addressed a bug in ReportLab 2.6 that disallowed 3-D pie charts from
          rendering.
        
        - Bug: Properly reset pdfform before rendering a document.
        
        - Bug: Reset fonts properly before a rendering.
        
        
        1.0.0 (2012-04-02)
        ------------------
        
        - Using Python's ``doctest`` module instead of depreacted
          ``zope.testing.doctest``.
        
        
        0.9.1 (2010-07-22)
        ------------------
        
        - I found a more complete paragraph border patch from Yuan Hong. Now the DTD
          is updated, the border supports a border radius and the tag-para.rml sample
          has been updated.
        
        
        0.9.0 (2010-07-22)
        ------------------
        
        - Upgraded to ReportLab 2.4. This required some font changes and several
          generated PDFs did not match, since some default fonts changed.
        
        - Upgraded to latest lxml. This only required a trivial change. Patch by Felix
          Schwarz.
        
        - Implemented ``linePlot3D`` directive. Patch by Faisal Puthuparackat.
        
        - Added paragraph border support. Patch by Yuan Hong.
        
        - Bug: Fixed version number in reference.pt. Patch by Felix Schwarz.
        
        - Bug: Write PDF documents in binary mode. Patch by Felix Schwarz.
        
        
        0.8.0 (2009-02-18)
        ------------------
        
        - Bug: Use python executable as a part of the subprocess command.
        
        - Add support for RML's `pageNumber` element.
        
        
        0.7.3 (2007-11-10)
        ------------------
        
        - Make sure that the output dir is included in the distribution.
        
        
        0.7.2 (2007-11-10)
        ------------------
        
        - Upgraded to work with ReportLab 2.1 and lxml 1.3.6.
        
        - Fix sub-process tests for a pure egg setup.
        
        
        0.7.1 (2007-07-31)
        ------------------
        
        - Bug: When the specified page size (within the ``pageInfo`` element) was a
          word or set thereof, the processing would fail. Thanks to Chris Zelenak for
          reporting the bug and providing a patch.
        
        
        0.7.0 (2007-06-19)
        ------------------
        
        - Feature: Added a Chinese PDF sample file to ``tests/expected`` under the
          name ``sample-shipment-chinese.pdf``.
        
        - Feature: Added another tag that is commonly needed in projects. The
          ```` tag will keep the child flowables in the same frame.
          When necessary, the frame break will be automatic. Patch by Yuan Hong.
        
        - Feature: Added the "alignment" attribute to the ``blockTable``
          directive. This attribute defines the horizontal alignment for a table that
          is not 100% in width of the containing flowable. Patch by Yuan Hong.
        
        - Feature: When creating Chinese PDF documents, the normal TTF for Chinese
          printing is 'simsun'. However, when bold text is neeed, we switch to
          'simhei'. To properly register this, we need the
          ``reportlab.lib.fonts.addMapping`` function. This is missing in the reportlab
          RML specification, so a new directive has been defined::
        
            
        
          Patch by Yuan Hong.
        
        - Feature: The ``para`` and ``paraStyle`` directive now support the "wordWrap"
          attribute, which allows for selecting a different wrod wrapping
          algorithm. This is needed because some far-East Asian languages do not use
          white space to separate words. Patch by Yuan Hong.
        
        - Bug: Handle Windows drive letters correctly. Report and fix by Yuan Hong.
        
        
        0.6.0 (2007-06-19)
        ------------------
        
        - Bug: Fixed setup.py to include all dependencies.
        
        - Bug: Added test to show that a blocktable style can be applied multiple
          times. A user reported that this is not working, but I could not replicate
          the problem.
        
        - Update: Updated the expected renderings to ReportLab 2.1. There were some
          good layout fixes that broke the image comparison.
        
        
        0.5.0 (2007-04-01)
        ------------------
        
        - Initial Release
        
Keywords: zope3 rml reportlab pdf pagetemplate
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
z3c.rml-2.0.0/src/z3c.rml.egg-info/requires.txt0000644000175000017500000000020612065004362022636 0ustar  srichtersrichter00000000000000Pygments
lxml
pyPdf
reportlab
setuptools
zope.interface
zope.schema

[test]
zope.pagetemplate
Pillow

[pagetemplate]
zope.pagetemplatez3c.rml-2.0.0/src/z3c.rml.egg-info/entry_points.txt0000644000175000017500000000011512065004362023533 0ustar  srichtersrichter00000000000000[console_scripts]
reference = z3c.rml.reference:main
dtd = z3c.rml.dtd:main

z3c.rml-2.0.0/buildout.cfg0000664000175000017500000000060412063747252017013 0ustar  srichtersrichter00000000000000[buildout]
develop = .
versions = versions
parts = test scripts python

[test]
recipe = zc.recipe.testrunner
eggs = z3c.rml [test]

[scripts]
recipe = zc.recipe.egg
eggs = z3c.rml [pagetemplate]

[python]
recipe = zc.recipe.egg
interpreter = python
eggs = z3c.rml [pagetemplate]

[ctags]
recipe = z3c.recipe.tag
eggs = ${test:eggs}

[versions]
reportlab = 2.6
Pillow = 1.7.8
lxml = 3.0.2
z3c.rml-2.0.0/CHANGES.txt0000664000175000017500000001507512065003744016315 0ustar  srichtersrichter00000000000000=======
CHANGES
=======

2.0.0 (2012-12-21)
------------------

- Implemented ``saveState`` and ``restoreState`` directives. (LP #666194)

- Implemented ``storyPlace`` directive. (LP #665941)

- Implemented ``clip`` attribute of ``path`` directive. See RML example 041.

- Added ``h4``, ``h5``, and ``h6`` directives.

- Implemented ``codesnippet`` directive.

- Implemented ``pageBreakBefore``, ``frameBreakBefore``, ``textTransform``,
  and ``endDots`` attributes for paragraph styles.

- Added ``maxLineLength`` and ``newLineChars`` attributes to the ``pre``
  directive.

- Implemented ``pageNumber`` element for all ``draw*String`` elements.

- Implemented ``NamedString`` directive.

- Implemented ``startIndex`` and ``showIndex`` directive. Also hooked up
  ``index`` in paragraphs properly. You can now create real book indexes.

- Implemented ``ol``, ``ul``, and ``li`` directives, which allow highly
  flexible lists to be created. Also implemented a complimentary ``listStyle``
  directive.

- Implemented the following doc-programming directives:

    * docAssert
    * docAssign
    * docElse
    * docIf
    * docExec
    * docPara
    * docWhile

- Added ``encName`` attribute to ``registerCidFont`` directive.

- Renamed ``bookmark`` to ``bookmarkPage``.

- Created a new canvas directive called ``bookmark``.

- Added ``img`` directive, which is a simple image flowable.

- Implemented crop marks support fully.

- Added ``pageLayout`` and ``pageMode`` to ``docInit`` directive.

- Implemented all logging related directives.

- Implemented ``color`` directive inside the ``initialize`` directive.

- Renamed ``pdfInclude`` to documented ``includePdfPages`` and added `pages`
  attribute, so that you can only include specific pages.

- Don't show "doc" namespace in reference snippets.

- Create a list of RML2PDF and z3c.rml differences.

- Implemented the ``ABORT_ON_INVALID_DIRECTIVE`` flag, that when set ``True``
  will raise a ``ValueError`` error on the first occurence of a bad tag.

- Implemented ``setFontSize`` directive for page drawings.

- Implemented ``plugInGraphic`` which allows inserting graphics rendered in
  Python.

- Added `href` and `destination` to table cells and rectangles.

- Bug: Due to a logic error, bad directives were never properly detected and
  logged about.

- Bug: Overwriting the default paragraph styles did not work properly.

- Bug: Specifying a color in any tag inside the paragraph would fail, if the
  color was a referenced name.

- Bug: Moved premature ``getName`` evaluation into runtime to properly handle
  synamic content now. This is now properly done for any paragraph and
  draw string variant.

- Bug: Fixed DTD generator to properly ignore Text Nodes as attributes. Also
  text nodes were not properly documented as element PCDATA.


1.1.0 (2012-12-18)
------------------

- Upgrade to ReportLab 2.6. This required some font changes and several
  generated PDFs did not match, since some default fonts changed to sans-serif.

- Added ``pdfInclude`` directive from Alex Garel. (LP #969399).

- Switched to Pillow (from PIL).

- Switched RML highlighting in RML Reference from SilverCity to Pygments.

- Bug: Addressed a bug in ReportLab 2.6 that disallowed 3-D pie charts from
  rendering.

- Bug: Properly reset pdfform before rendering a document.

- Bug: Reset fonts properly before a rendering.


1.0.0 (2012-04-02)
------------------

- Using Python's ``doctest`` module instead of depreacted
  ``zope.testing.doctest``.


0.9.1 (2010-07-22)
------------------

- I found a more complete paragraph border patch from Yuan Hong. Now the DTD
  is updated, the border supports a border radius and the tag-para.rml sample
  has been updated.


0.9.0 (2010-07-22)
------------------

- Upgraded to ReportLab 2.4. This required some font changes and several
  generated PDFs did not match, since some default fonts changed.

- Upgraded to latest lxml. This only required a trivial change. Patch by Felix
  Schwarz.

- Implemented ``linePlot3D`` directive. Patch by Faisal Puthuparackat.

- Added paragraph border support. Patch by Yuan Hong.

- Bug: Fixed version number in reference.pt. Patch by Felix Schwarz.

- Bug: Write PDF documents in binary mode. Patch by Felix Schwarz.


0.8.0 (2009-02-18)
------------------

- Bug: Use python executable as a part of the subprocess command.

- Add support for RML's `pageNumber` element.


0.7.3 (2007-11-10)
------------------

- Make sure that the output dir is included in the distribution.


0.7.2 (2007-11-10)
------------------

- Upgraded to work with ReportLab 2.1 and lxml 1.3.6.

- Fix sub-process tests for a pure egg setup.


0.7.1 (2007-07-31)
------------------

- Bug: When the specified page size (within the ``pageInfo`` element) was a
  word or set thereof, the processing would fail. Thanks to Chris Zelenak for
  reporting the bug and providing a patch.


0.7.0 (2007-06-19)
------------------

- Feature: Added a Chinese PDF sample file to ``tests/expected`` under the
  name ``sample-shipment-chinese.pdf``.

- Feature: Added another tag that is commonly needed in projects. The
  ```` tag will keep the child flowables in the same frame.
  When necessary, the frame break will be automatic. Patch by Yuan Hong.

- Feature: Added the "alignment" attribute to the ``blockTable``
  directive. This attribute defines the horizontal alignment for a table that
  is not 100% in width of the containing flowable. Patch by Yuan Hong.

- Feature: When creating Chinese PDF documents, the normal TTF for Chinese
  printing is 'simsun'. However, when bold text is neeed, we switch to
  'simhei'. To properly register this, we need the
  ``reportlab.lib.fonts.addMapping`` function. This is missing in the reportlab
  RML specification, so a new directive has been defined::

    

  Patch by Yuan Hong.

- Feature: The ``para`` and ``paraStyle`` directive now support the "wordWrap"
  attribute, which allows for selecting a different wrod wrapping
  algorithm. This is needed because some far-East Asian languages do not use
  white space to separate words. Patch by Yuan Hong.

- Bug: Handle Windows drive letters correctly. Report and fix by Yuan Hong.


0.6.0 (2007-06-19)
------------------

- Bug: Fixed setup.py to include all dependencies.

- Bug: Added test to show that a blocktable style can be applied multiple
  times. A user reported that this is not working, but I could not replicate
  the problem.

- Update: Updated the expected renderings to ReportLab 2.1. There were some
  good layout fixes that broke the image comparison.


0.5.0 (2007-04-01)
------------------

- Initial Release
z3c.rml-2.0.0/setup.cfg0000664000175000017500000000007312065004362016312 0ustar  srichtersrichter00000000000000[egg_info]
tag_build = 
tag_date = 0
tag_svn_revision = 0

z3c.rml-2.0.0/TODOS.txt0000644000175000017500000000054212032774152016126 0ustar  srichtersrichter00000000000000* Finish compatibility work.

* Fix  tag to the following form::

  
    #FF0000
    ...
  

* Add TOC

* Add chart legends

* Add symbols

* Implement form fields: push button, text field, select field

  See reportlab.pdfbase.pdfform
z3c.rml-2.0.0/AUTHORS.txt0000644000175000017500000000015712032774152016365 0ustar  srichtersrichter00000000000000- Stephan Richter (stephan.richter_at_gmail.com)

This package is based on ReportLab Inc.'s ReportLab library.