From 3b8ce4f12a75b34d890cb061a721e1a1240cddd1 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Mon, 31 Dec 2018 23:08:57 -0500 Subject: [PATCH] Annotation flattening including form fields Flatten annotations by integrating their appearance streams into the content stream of the containing page. In the case of form fields, only flatten if /NeedAppearance is false (or equivalently absent). If flattening form fields, also remove /AcroForm from the document catalog. --- ChangeLog | 17 + include/qpdf/QPDFPageDocumentHelper.hh | 16 + libqpdf/QPDFAnnotationObjectHelper.cc | 10 +- libqpdf/QPDFPageDocumentHelper.cc | 127 + qpdf/qpdf.cc | 17 + qpdf/qpdf.testcov | 12 + qpdf/qtest/qpdf.test | 56 + .../qpdf/comment-annotation-direct-out.pdf | 232 ++ qpdf/qtest/qpdf/comment-annotation-direct.pdf | 182 ++ qpdf/qtest/qpdf/comment-annotation-out.pdf | 237 ++ qpdf/qtest/qpdf/comment-annotation.pdf | 187 ++ qpdf/qtest/qpdf/form-field-types-out.pdf | 2612 ++++++++++++++++ qpdf/qtest/qpdf/form-field-types.pdf | 2443 +++++++++++++++ .../qtest/qpdf/form-filled-by-acrobat-out.pdf | 1654 ++++++++++ qpdf/qtest/qpdf/form-filled-by-acrobat.pdf | 2500 +++++++++++++++ qpdf/qtest/qpdf/manual-appearances-out.pdf | 1445 +++++++++ qpdf/qtest/qpdf/manual-appearances.pdf | 2680 +++++++++++++++++ qpdf/qtest/qpdf/need-appearances-out.pdf | 2575 ++++++++++++++++ qpdf/qtest/qpdf/need-appearances-warn.out | 2 + qpdf/qtest/qpdf/need-appearances.pdf | 2541 ++++++++++++++++ 20 files changed, 19540 insertions(+), 5 deletions(-) create mode 100644 qpdf/qtest/qpdf/comment-annotation-direct-out.pdf create mode 100644 qpdf/qtest/qpdf/comment-annotation-direct.pdf create mode 100644 qpdf/qtest/qpdf/comment-annotation-out.pdf create mode 100644 qpdf/qtest/qpdf/comment-annotation.pdf create mode 100644 qpdf/qtest/qpdf/form-field-types-out.pdf create mode 100644 qpdf/qtest/qpdf/form-field-types.pdf create mode 100644 qpdf/qtest/qpdf/form-filled-by-acrobat-out.pdf create mode 100644 qpdf/qtest/qpdf/form-filled-by-acrobat.pdf create mode 100644 qpdf/qtest/qpdf/manual-appearances-out.pdf create mode 100644 qpdf/qtest/qpdf/manual-appearances.pdf create mode 100644 qpdf/qtest/qpdf/need-appearances-out.pdf create mode 100644 qpdf/qtest/qpdf/need-appearances-warn.out create mode 100644 qpdf/qtest/qpdf/need-appearances.pdf diff --git a/ChangeLog b/ChangeLog index 75d4aa48..3b974fa5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,22 @@ 2018-12-31 Jay Berkenbilt + * Add several methods for flattening form fields and annotations: + - QPDFPageDocumentHelper::flattenAnnotations - integrate + annotation appearance streams into page contents with special + handling for form fields: if appearance streams are up to date + (/NeedAppearances is false in /AcroForm), the /AcroForm key of + the document catalog is removed. Otherwise, a warning is + issued, and form fields are ignored. Non-form-field + annotations are always flattened if an appearance stream can + be found. + - QPDFAnnotationObjectHelper::getPageContentForAppearance - + generate the content stream fragment to render an appearance + stream in a page's content stream. Called by flattenAnnotations. + - QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix - + calculate the matrix that will transform from the appearance + stream coordinates to the page coordinates. Called by + getPageContentForAppearance. + * Add method QPDFObjectHandle::mergeDictionary(), which recursively merges dictionaries with semantics designed for merging resource dictionaries. See detailed description in diff --git a/include/qpdf/QPDFPageDocumentHelper.hh b/include/qpdf/QPDFPageDocumentHelper.hh index 52e03be8..d5446c16 100644 --- a/include/qpdf/QPDFPageDocumentHelper.hh +++ b/include/qpdf/QPDFPageDocumentHelper.hh @@ -31,6 +31,8 @@ #include +class QPDFAcroFormDocumentHelper; + class QPDFPageDocumentHelper: public QPDFDocumentHelper { public: @@ -84,7 +86,21 @@ class QPDFPageDocumentHelper: public QPDFDocumentHelper QPDF_DLL void removePage(QPDFPageObjectHelper page); + // For every annotation, integrate the annotation's appearance + // stream into the containing page's content streams, merge the + // annotation's resources with the page's resources, and remove + // the annotation from the page. Handles widget annotations + // associated with interactive form fields as a special case, + // including removing the /AcroForm key from the document catalog. + QPDF_DLL + void flattenAnnotations(); + private: + void flattenAnnotationsForPage( + QPDFPageObjectHelper& page, + QPDFObjectHandle& resources, + QPDFAcroFormDocumentHelper& afdh); + class Members { friend class QPDFPageDocumentHelper; diff --git a/libqpdf/QPDFAnnotationObjectHelper.cc b/libqpdf/QPDFAnnotationObjectHelper.cc index a5b824f3..4c305149 100644 --- a/libqpdf/QPDFAnnotationObjectHelper.cc +++ b/libqpdf/QPDFAnnotationObjectHelper.cc @@ -149,12 +149,12 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate) QPDFMatrix matrix; if (matrix_obj.isMatrix()) { -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper explicit matrix"); + QTC::TC("qpdf", "QPDFAnnotationObjectHelper explicit matrix"); matrix = QPDFMatrix(matrix_obj.getArrayAsMatrix()); } else { -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper default matrix"); + QTC::TC("qpdf", "QPDFAnnotationObjectHelper default matrix"); } QPDFObjectHandle::Rectangle rect = rect_obj.getArrayAsRectangle(); if (rotate && flags.isInteger() && (flags.getIntValue() & 16)) @@ -176,7 +176,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate) switch (rotate) { case 90: -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 90"); + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 90"); rect = QPDFObjectHandle::Rectangle( rect.llx, rect.ury, @@ -184,7 +184,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate) rect.ury + rect_w); break; case 180: -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 180"); + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 180"); rect = QPDFObjectHandle::Rectangle( rect.llx - rect_w, rect.ury, @@ -192,7 +192,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate) rect.ury + rect_h); break; case 270: -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 270"); + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 270"); rect = QPDFObjectHandle::Rectangle( rect.llx - rect_h, rect.ury - rect_w, diff --git a/libqpdf/QPDFPageDocumentHelper.cc b/libqpdf/QPDFPageDocumentHelper.cc index f4774896..4d117017 100644 --- a/libqpdf/QPDFPageDocumentHelper.cc +++ b/libqpdf/QPDFPageDocumentHelper.cc @@ -1,4 +1,6 @@ #include +#include +#include QPDFPageDocumentHelper::Members::~Members() { @@ -62,3 +64,128 @@ QPDFPageDocumentHelper::removePage(QPDFPageObjectHelper page) { this->qpdf.removePage(page.getObjectHandle()); } + + +void +QPDFPageDocumentHelper::flattenAnnotations() +{ + QPDFAcroFormDocumentHelper afdh(this->qpdf); + if (afdh.getNeedAppearances()) + { + this->qpdf.getRoot().getKey("/AcroForm").warnIfPossible( + "document does not have updated appearance streams," + " so form fields will not be flattened"); + } + pushInheritedAttributesToPage(); + std::vector pages = getAllPages(); + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFPageObjectHelper ph(*iter); + QPDFObjectHandle page_oh = ph.getObjectHandle(); + if (page_oh.getKey("/Resources").isIndirect()) + { + QTC::TC("qpdf", "QPDFPageDocumentHelper indirect resources"); + page_oh.replaceKey("/Resources", + page_oh.getKey("/Resources").shallowCopy()); + } + QPDFObjectHandle resources = ph.getObjectHandle().getKey("/Resources"); + if (! resources.isDictionary()) + { + // This should never happen and is not exercised in the + // test suite + resources = QPDFObjectHandle::newDictionary(); + } + flattenAnnotationsForPage(ph, resources, afdh); + } + if (! afdh.getNeedAppearances()) + { + this->qpdf.getRoot().removeKey("/AcroForm"); + } +} + +void +QPDFPageDocumentHelper::flattenAnnotationsForPage( + QPDFPageObjectHelper& page, + QPDFObjectHandle& resources, + QPDFAcroFormDocumentHelper& afdh) +{ + bool need_appearances = afdh.getNeedAppearances(); + std::vector annots = page.getAnnotations(); + std::vector new_annots; + std::string new_content; + int rotate = 0; + QPDFObjectHandle rotate_obj = + page.getObjectHandle().getKey("/Rotate"); + if (rotate_obj.isInteger() && rotate_obj.getIntValue()) + { + rotate = rotate_obj.getIntValue(); + } + for (std::vector::iterator iter = + annots.begin(); + iter != annots.end(); ++iter) + { + QPDFAnnotationObjectHelper& aoh(*iter); + QPDFObjectHandle as = aoh.getAppearanceStream("/N"); + bool is_widget = (aoh.getSubtype() == "/Widget"); + bool process = true; + if (need_appearances && is_widget) + { + QTC::TC("qpdf", "QPDFPageDocumentHelper skip widget need appearances"); + process = false; + } + if (process && (! as.isStream())) + { + process = false; + } + if (process) + { + resources.mergeDictionary(as.getDict().getKey("/Resources")); + if (is_widget) + { + QTC::TC("qpdf", "QPDFPageDocumentHelper merge DR"); + QPDFFormFieldObjectHelper ff = afdh.getFieldForAnnotation(aoh); + resources.mergeDictionary(ff.getInheritableFieldValue("/DR")); + } + else + { + QTC::TC("qpdf", "QPDFPageDocumentHelper non-widget annotation"); + } + new_content += aoh.getPageContentForAppearance(rotate); + } + else + { + new_annots.push_back(aoh.getObjectHandle()); + } + } + if (new_annots.size() != annots.size()) + { + QPDFObjectHandle page_oh = page.getObjectHandle(); + if (new_annots.empty()) + { + QTC::TC("qpdf", "QPDFPageDocumentHelper remove annots"); + page_oh.removeKey("/Annots"); + } + else + { + QPDFObjectHandle old_annots = page_oh.getKey("/Annots"); + QPDFObjectHandle new_annots_oh = + QPDFObjectHandle::newArray(new_annots); + if (old_annots.isIndirect()) + { + QTC::TC("qpdf", "QPDFPageDocumentHelper replace indirect annots"); + this->qpdf.replaceObject( + old_annots.getObjGen(), new_annots_oh); + } + else + { + QTC::TC("qpdf", "QPDFPageDocumentHelper replace direct annots"); + page_oh.replaceKey("/Annots", new_annots_oh); + } + } + page.addPageContents( + QPDFObjectHandle::newStream(&qpdf, "q\n"), true); + page.addPageContents( + QPDFObjectHandle::newStream(&qpdf, "\nQ\n" + new_content), false); + } +} diff --git a/qpdf/qpdf.cc b/qpdf/qpdf.cc index 2eb75af5..062bb30a 100644 --- a/qpdf/qpdf.cc +++ b/qpdf/qpdf.cc @@ -102,6 +102,7 @@ struct Options keep_files_open_set(false), newline_before_endstream(false), coalesce_contents(false), + flatten_annotations(false), show_npages(false), deterministic_id(false), static_id(false), @@ -174,6 +175,7 @@ struct Options bool newline_before_endstream; std::string linearize_pass1; bool coalesce_contents; + bool flatten_annotations; std::string min_version; std::string force_version; bool show_npages; @@ -473,6 +475,7 @@ class ArgParser void argNewlineBeforeEndstream(); void argLinearizePass1(char* parameter); void argCoalesceContents(); + void argFlattenAnnotations(); void argMinVersion(char* parameter); void argForceVersion(char* parameter); void argSplitPages(char* parameter); @@ -670,6 +673,7 @@ ArgParser::initOptionTable() (*t)["linearize-pass1"] = oe_requiredParameter( &ArgParser::argLinearizePass1, "filename"); (*t)["coalesce-contents"] = oe_bare(&ArgParser::argCoalesceContents); + (*t)["flatten-annotations"] = oe_bare(&ArgParser::argFlattenAnnotations); (*t)["min-version"] = oe_requiredParameter( &ArgParser::argMinVersion, "version"); (*t)["force-version"] = oe_requiredParameter( @@ -1118,6 +1122,12 @@ ArgParser::argCoalesceContents() o.coalesce_contents = true; } +void +ArgParser::argFlattenAnnotations() +{ + o.flatten_annotations = true; +} + void ArgParser::argMinVersion(char* parameter) { @@ -1759,6 +1769,9 @@ familiar with the PDF file format or who are PDF developers.\n\ preserve unreferenced page resources\n\ --newline-before-endstream always put a newline before endstream\n\ --coalesce-contents force all pages' content to be a single stream\n\ +--flatten-annotations incorporate rendering of annotations into page\n\ + contents including those for interactive form\n\ + fields\n\ --qdf turns on \"QDF mode\" (below)\n\ --linearize-pass1=file write intermediate pass of linearized file\n\ for debugging\n\ @@ -3124,6 +3137,10 @@ static void do_inspection(QPDF& pdf, Options& o) static void handle_transformations(QPDF& pdf, Options& o) { QPDFPageDocumentHelper dh(pdf); + if (o.flatten_annotations) + { + dh.flattenAnnotations(); + } if (o.coalesce_contents) { std::vector pages = dh.getAllPages(); diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov index 330b6e54..37ecb28a 100644 --- a/qpdf/qpdf.testcov +++ b/qpdf/qpdf.testcov @@ -377,3 +377,15 @@ QPDFObjectHandle merge array dup 0 QPDFObjectHandle merge copy from other 0 QPDFObjectHandle merge loop 0 QPDFObjectHandle merge equal indirect 0 +QPDFAnnotationObjectHelper explicit matrix 0 +QPDFAnnotationObjectHelper default matrix 0 +QPDFAnnotationObjectHelper rotate 90 0 +QPDFAnnotationObjectHelper rotate 180 0 +QPDFAnnotationObjectHelper rotate 270 0 +QPDFPageDocumentHelper indirect resources 0 +QPDFPageDocumentHelper skip widget need appearances 0 +QPDFPageDocumentHelper merge DR 0 +QPDFPageDocumentHelper non-widget annotation 0 +QPDFPageDocumentHelper remove annots 0 +QPDFPageDocumentHelper replace indirect annots 0 +QPDFPageDocumentHelper replace direct annots 0 diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test index 9b1ae3e0..4aacd548 100644 --- a/qpdf/qtest/qpdf.test +++ b/qpdf/qtest/qpdf.test @@ -1445,6 +1445,62 @@ $td->runtest("check output", {$td->FILE => "a.pdf"}, {$td->FILE => "minimal-rotated.pdf"}); +show_ntests(); +# ---------- +$td->notify("--- Flatten Form/Annotations ---"); + +# manual-appearances was created by hand-coding appearance streams +# with graphics that make it easy to test matrix calculations. The +# result of flattening the annotations was compared visually with +# okular. Some PDF viewers don't actually display the original version +# correctly. The pages are as follows: +# - page 1: normal +# - page 2: rotate 90 with /F 20 (NoRotate) +# - page 3: non-trivial matrix +# - page 4: non-trivial matrix, rotate +# - page 5: rotate 180 with /F 20 +# - page 6: rotate 90, /F 20, non-trivial matrix +# - page 7: normal -- available for additional testing +# - page 8: rotate 270 with /F 20 +# - page 9: normal -- available for additional testing +# +# form-filled-by-acrobat was filled in using the Acrobat Reader +# android app. One of its appearance streams is actually an image. +# +# need-appearances is based on form-field-types with manual edits to +# turn on NeedAppearances, change /V for a field, and add the comment +# annotation from comment-annotation.pdf. The test output includes a +# flattened version of the comment annotation but not of the form +# fields. +my @annotation_files = ( + 'manual-appearances', + 'form-filled-by-acrobat', + 'comment-annotation', + 'comment-annotation-direct', + 'form-field-types', + 'need-appearances', + ); +$n_tests += 2 * scalar(@annotation_files); + +foreach my $f (@annotation_files) +{ + my $exp_out = {$td->STRING => "", $td->EXIT_STATUS => 0}; + if (-f "$f-warn.out") + { + $exp_out = {$td->FILE => "$f-warn.out", $td->EXIT_STATUS => 3}; + } + $td->runtest("flatten $f", + {$td->COMMAND => + "qpdf --qdf --static-id --no-original-object-ids" . + " --flatten-annotations $f.pdf a.pdf"}, + $exp_out, + $td->NORMALIZE_NEWLINES); + copy("a.pdf", "$f-out.pdf"); + $td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "$f-out.pdf"}); +} + show_ntests(); # ---------- $td->notify("--- Merging and Splitting ---"); diff --git a/qpdf/qtest/qpdf/comment-annotation-direct-out.pdf b/qpdf/qtest/qpdf/comment-annotation-direct-out.pdf new file mode 100644 index 00000000..4c93ee8e --- /dev/null +++ b/qpdf/qtest/qpdf/comment-annotation-direct-out.pdf @@ -0,0 +1,232 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /Pages 2 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 1 + /Kids [ + 3 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Annots [ + 4 0 R + ] + /Contents [ + 5 0 R + 7 0 R + 9 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + /Font << + /F1 11 0 R + >> + /ProcSet 12 0 R + >> + /Type /Page +>> +endobj + +4 0 obj +<< + /F 28 + /Open false + /Parent 13 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +5 0 obj +<< + /Length 6 0 R +>> +stream +q +endstream +endobj + +6 0 obj +2 +endobj + +%% Contents for page 1 +7 0 obj +<< + /Length 8 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +8 0 obj +44 +endobj + +%% Contents for page 1 +9 0 obj +<< + /Length 10 0 R +>> +stream + +Q +q +1.00000 0.00000 0.00000 1.00000 235.00000 703.00000 cm +0.00000 0.00000 18.00000 18.00000 re W n +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +Q +endstream +endobj + +10 0 obj +1032 +endobj + +11 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +12 0 obj +[ + /PDF + /Text +] +endobj + +13 0 obj +<< + /AP << + /N 14 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 3 0 R + /Popup 4 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +14 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 15 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +%QDF: ignore_newline +15 0 obj +928 +endobj + +xref +0 16 +0000000000 65535 f +0000000025 00000 n +0000000079 00000 n +0000000161 00000 n +0000000553 00000 n +0000000716 00000 n +0000000773 00000 n +0000000814 00000 n +0000000913 00000 n +0000000955 00000 n +0000002043 00000 n +0000002065 00000 n +0000002184 00000 n +0000002220 00000 n +0000002550 00000 n +0000003794 00000 n +trailer << + /Root 1 0 R + /Size 16 + /ID [<31415926535897932384626433832795>] +>> +startxref +3815 +%%EOF diff --git a/qpdf/qtest/qpdf/comment-annotation-direct.pdf b/qpdf/qtest/qpdf/comment-annotation-direct.pdf new file mode 100644 index 00000000..24de0a22 --- /dev/null +++ b/qpdf/qtest/qpdf/comment-annotation-direct.pdf @@ -0,0 +1,182 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /Pages 2 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 1 + /Kids [ + 3 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Annots [ + 4 0 R + 5 0 R + ] + /Contents 6 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 8 0 R + >> + /ProcSet 9 0 R + >> + /Type /Page +>> +endobj + +4 0 obj +<< + /AP << + /N 10 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 3 0 R + /Popup 5 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +5 0 obj +<< + /F 28 + /Open false + /Parent 4 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +6 0 obj +<< + /Length 7 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +7 0 obj +44 +endobj + +8 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +9 0 obj +[ + /PDF + /Text +] +endobj + +10 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 11 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +%QDF: ignore_newline +11 0 obj +928 +endobj + +xref +0 12 +0000000000 65535 f +0000000025 00000 n +0000000079 00000 n +0000000161 00000 n +0000000389 00000 n +0000000718 00000 n +0000000880 00000 n +0000000979 00000 n +0000000998 00000 n +0000001116 00000 n +0000001151 00000 n +0000002395 00000 n +trailer << + /Root 1 0 R + /Size 12 + /ID [<0ddac86998f1552ce51b2c402848bd8e>] +>> +startxref +2416 +%%EOF diff --git a/qpdf/qtest/qpdf/comment-annotation-out.pdf b/qpdf/qtest/qpdf/comment-annotation-out.pdf new file mode 100644 index 00000000..f71f1f84 --- /dev/null +++ b/qpdf/qtest/qpdf/comment-annotation-out.pdf @@ -0,0 +1,237 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /Pages 2 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 1 + /Kids [ + 3 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Annots 4 0 R + /Contents [ + 5 0 R + 7 0 R + 9 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + /Font << + /F1 11 0 R + >> + /ProcSet 12 0 R + >> + /Type /Page +>> +endobj + +4 0 obj +[ + 13 0 R +] +endobj + +%% Contents for page 1 +5 0 obj +<< + /Length 6 0 R +>> +stream +q +endstream +endobj + +6 0 obj +2 +endobj + +%% Contents for page 1 +7 0 obj +<< + /Length 8 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +8 0 obj +44 +endobj + +%% Contents for page 1 +9 0 obj +<< + /Length 10 0 R +>> +stream + +Q +q +1.00000 0.00000 0.00000 1.00000 235.00000 703.00000 cm +0.00000 0.00000 18.00000 18.00000 re W n +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +Q +endstream +endobj + +10 0 obj +1032 +endobj + +11 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +12 0 obj +[ + /PDF + /Text +] +endobj + +13 0 obj +<< + /F 28 + /Open false + /Parent 14 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +14 0 obj +<< + /AP << + /N 15 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 3 0 R + /Popup 13 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +15 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 16 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +%QDF: ignore_newline +16 0 obj +928 +endobj + +xref +0 17 +0000000000 65535 f +0000000025 00000 n +0000000079 00000 n +0000000161 00000 n +0000000543 00000 n +0000000595 00000 n +0000000652 00000 n +0000000693 00000 n +0000000792 00000 n +0000000834 00000 n +0000001922 00000 n +0000001944 00000 n +0000002063 00000 n +0000002099 00000 n +0000002240 00000 n +0000002571 00000 n +0000003815 00000 n +trailer << + /Root 1 0 R + /Size 17 + /ID [<31415926535897932384626433832795>] +>> +startxref +3836 +%%EOF diff --git a/qpdf/qtest/qpdf/comment-annotation.pdf b/qpdf/qtest/qpdf/comment-annotation.pdf new file mode 100644 index 00000000..ed53c03f --- /dev/null +++ b/qpdf/qtest/qpdf/comment-annotation.pdf @@ -0,0 +1,187 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /Pages 2 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 1 + /Kids [ + 3 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Annots 4 0 R + /Contents 5 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 7 0 R + >> + /ProcSet 8 0 R + >> + /Type /Page +>> +endobj + +4 0 obj +[ + 9 0 R + 10 0 R +] +endobj + +%% Contents for page 1 +5 0 obj +<< + /Length 6 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +6 0 obj +44 +endobj + +7 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +8 0 obj +[ + /PDF + /Text +] +endobj + +9 0 obj +<< + /AP << + /N 11 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 3 0 R + /Popup 10 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +10 0 obj +<< + /F 28 + /Open false + /Parent 9 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +11 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 12 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +%QDF: ignore_newline +12 0 obj +928 +endobj + +xref +0 13 +0000000000 65535 f +0000000025 00000 n +0000000079 00000 n +0000000161 00000 n +0000000369 00000 n +0000000429 00000 n +0000000528 00000 n +0000000547 00000 n +0000000665 00000 n +0000000700 00000 n +0000001030 00000 n +0000001170 00000 n +0000002414 00000 n +trailer << + /Root 1 0 R + /Size 13 + /ID [] +>> +startxref +2435 +%%EOF diff --git a/qpdf/qtest/qpdf/form-field-types-out.pdf b/qpdf/qtest/qpdf/form-field-types-out.pdf new file mode 100644 index 00000000..b56d47a0 --- /dev/null +++ b/qpdf/qtest/qpdf/form-field-types-out.pdf @@ -0,0 +1,2612 @@ +%PDF-1.6 +% +%QDF-1.0 + +1 0 obj +<< + /Lang (en-GB) + /Metadata 43 0 R + /OpenAction [ + 45 0 R + /XYZ + null + null + 0 + ] + /Pages 22 0 R + /Type /Catalog + /ViewerPreferences << + /DisplayDocTitle true + >> +>> +endobj + +2 0 obj +<< + /Type /ObjStm + /Length 16721 + /N 40 + /First 359 +>> +stream +3 0 +4 361 +5 492 +6 850 +7 1226 +8 1534 +9 1837 +10 3431 +11 3853 +12 4153 +13 4678 +14 4780 +15 5582 +16 6009 +17 6440 +18 6871 +19 7302 +20 7733 +21 8208 +22 8514 +23 8609 +24 8867 +25 9473 +26 9704 +27 11634 +28 11868 +29 12095 +30 12227 +31 12423 +32 12619 +33 12815 +34 13011 +35 13207 +36 13403 +37 13599 +38 13795 +39 13991 +40 14187 +41 14383 +42 16298 +%% Object stream: object 3, index 0 +<< + /AP << + /N 46 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 453.7 + 315.7 + 467.9 + ] + /Subtype /Widget + /T (Given Name Text Box) + /TU + /Type /Annot + /V (ABC) +>> +%% Object stream: object 4, index 1 +<< + /ArialMT 26 0 R + /F2 24 0 R + /F3 26 0 R + /FXF1 26 0 R + /Helv 29 0 R + /ZaDi 13 0 R +>> +%% Object stream: object 5, index 2 +<< + /AP << + /N 48 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 421.2 + 315.7 + 435.4 + ] + /Subtype /Widget + /T (Family Name Text Box) + /TU + /Type /Annot + /V (DEF) +>> +%% Object stream: object 6, index 3 +<< + /AP << + /N 50 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 378.4 + 388.4 + 446.9 + 402.6 + ] + /Subtype /Widget + /T (House nr Text Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 7, index 4 +<< + /AP << + /N 52 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 368.4 + 315.7 + 382.6 + ] + /Subtype /Widget + /T (Address 2 Text Box) + /Type /Annot + /V +>> +%% Object stream: object 8, index 5 +<< + /AP << + /N 54 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 165.7 + 348.5 + 238.5 + 362.7 + ] + /Subtype /Widget + /T (Postcode Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 9, index 6 +<< + /AP << + /N 56 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ] + /P 45 0 R + /Rect [ + 165.7 + 315.9 + 315.7 + 330.1 + ] + /Subtype /Widget + /T (Country Combo Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 10, index 7 +<< + /AP << + /N 58 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 165.7 + 250.8 + 238 + 265 + ] + /Subtype /Widget + /T (Height Formatted Field) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 11, index 8 +<< + /AP << + /N 60 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 297.1 + 348.5 + 447.2 + 362.7 + ] + /Subtype /Widget + /T (City Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 12, index 9 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 164.1 + 221.4 + 175.4 + 232.3 + ] + /Subtype /Widget + /T (Driving License Check Box) + /TU + /Type /Annot + /V /Yes +>> +%% Object stream: object 13, index 10 +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 14, index 11 +<< + /AP << + /N 68 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /I [ + 6 + ] + /Opt [ + + + + + + + + + + + ] + /P 45 0 R + /Rect [ + 165.7 + 143.4 + 322.8 + 157.6 + ] + /Subtype /Widget + /T (Favourite Colour List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 15, index 12 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 57.7 + 177.6 + 69 + 188.5 + ] + /Subtype /Widget + /T (Language 1 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 16, index 13 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 154.8 + 177.6 + 166.1 + 188.5 + ] + /Subtype /Widget + /T (Language 2 Check Box) + /Type /Annot + /V /Yes +>> +%% Object stream: object 17, index 14 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 251.8 + 177.6 + 263.1 + 188.5 + ] + /Subtype /Widget + /T (Language 3 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 18, index 15 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 342.8 + 177.6 + 354.1 + 188.5 + ] + /Subtype /Widget + /T (Language 4 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 19, index 16 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 439.8 + 177.6 + 451.1 + 188.5 + ] + /Subtype /Widget + /T (Language 5 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 20, index 17 +<< + /AP << + /N 70 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + ] + /P 45 0 R + /Rect [ + 165.7 + 283.4 + 241.2 + 297.6 + ] + /Subtype /Widget + /T (Gender List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 21, index 18 +<< + /AP << + /N 72 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 388.3 + 315.7 + 402.5 + ] + /Subtype /Widget + /T (Address 1 Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 22, index 19 +<< + /Count 1 + /Kids [ + 45 0 R + ] + /Type /Pages +>> +%% Object stream: object 23, index 20 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontFile2 74 0 R + /FontName /CAAAAA+ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 24, index 21 +<< + /BaseFont /CAAAAA+ArialMT + /FirstChar 0 + /FontDescriptor 23 0 R + /LastChar 50 + /Subtype /TrueType + /ToUnicode 76 0 R + /Type /Font + /Widths [ + 750 + 610 + 556 + 222 + 500 + 277 + 556 + 556 + 556 + 500 + 833 + 556 + 222 + 556 + 277 + 556 + 333 + 556 + 666 + 722 + 610 + 277 + 722 + 500 + 556 + 556 + 277 + 722 + 722 + 500 + 500 + 777 + 333 + 556 + 556 + 556 + 333 + 277 + 500 + 333 + 277 + 722 + 777 + 277 + 666 + 556 + 556 + 556 + 666 + 666 + 500 + ] +>> +%% Object stream: object 25, index 22 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontName /ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 26, index 23 +<< + /BaseFont /ArialMT + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 25 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 277 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +%% Object stream: object 27, index 24 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /ExtGState << + /FXE1 42 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 28, index 25 +<< + /CreationDate (D:20130629204853+02'00') + /Creator (Writer) + /Keywords (PDF Form) + /ModDate (D:20160331080439+03'00') + /Producer (OpenOffice.org 3.4) + /Title (PDF Form Example) +>> +%% Object stream: object 29, index 26 +<< + /BaseFont /Helvetica + /Encoding 41 0 R + /Name /Helv + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 30, index 27 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 31, index 28 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 32, index 29 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 33, index 30 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 34, index 31 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 35, index 32 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 36, index 33 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 37, index 34 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 38, index 35 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 39, index 36 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 40, index 37 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 41, index 38 +<< + /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 +>> +%% Object stream: object 42, index 39 +<< + /AIS false + /BM /Normal + /CA 1 + /SMask /None + /ca 1 +>> +endstream +endobj + +43 0 obj +<< + /Subtype /XML + /Type /Metadata + /Length 44 0 R +>> +stream + + + + + 2013-06-29T20:48:53+02:00 + Writer + 2016-03-31T08:04:39+03:00 + 2016-03-30T09:23:15-07:00 + PDF Form + OpenOffice.org 3.4 + application/pdf + + + PDF Form Example + + + uuid:2b2730cc-fa59-48a2-aef6-aaaa64179a3b + uuid:246f8744-738f-478b-9f5c-860c5c4ffcc5 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj + +%QDF: ignore_newline +44 0 obj +3352 +endobj + +%% Page 1 +45 0 obj +<< + /Annots [ + 15 0 R + 17 0 R + 18 0 R + 19 0 R + ] + /Contents [ + 78 0 R + 80 0 R + 82 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /ParaLinkXML 84 0 R + /ParaXML 86 0 R + /Parent 22 0 R + /Resources << + /Encoding << + /PDFDocEncoding 41 0 R + >> + /ExtGState << + /FXE1 42 0 R + >> + /Font << + /ArialMT 26 0 R + /F2 24 0 R + /F3 26 0 R + /FXF1 26 0 R + /Helv 29 0 R + /ZaDi 13 0 R + >> + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> + >> + /Type /Page +>> +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 33 0 R + /Length 47 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(ABC) Tj +ET +Q +EMC +endstream +endobj + +47 0 obj +89 +endobj + +48 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 34 0 R + /Length 49 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(DEF) Tj +ET +Q +EMC +endstream +endobj + +49 0 obj +89 +endobj + +50 0 obj +<< + /BBox [ + 0 + 0 + 68.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 36 0 R + /Length 51 0 R +>> +stream +q +Q +endstream +endobj + +51 0 obj +4 +endobj + +52 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Resources 30 0 R + /Length 53 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +%QDF: ignore_newline +53 0 obj +12 +endobj + +54 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 37 0 R + /Length 55 0 R +>> +stream +q +Q +endstream +endobj + +55 0 obj +4 +endobj + +56 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 39 0 R + /Length 57 0 R +>> +stream +q +Q +endstream +endobj + +57 0 obj +4 +endobj + +58 0 obj +<< + /BBox [ + 0 + 0 + 72.3 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 32 0 R + /Length 59 0 R +>> +stream +q +Q +endstream +endobj + +59 0 obj +4 +endobj + +60 0 obj +<< + /BBox [ + 0 + 0 + 150.1 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 38 0 R + /Length 61 0 R +>> +stream +q +Q +endstream +endobj + +61 0 obj +4 +endobj + +62 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 63 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +endstream +endobj + +63 0 obj +30 +endobj + +64 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 65 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +65 0 obj +95 +endobj + +66 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +67 0 obj +65 +endobj + +68 0 obj +<< + /BBox [ + 0 + 0 + 157.1 + 14.2 + ] + /Resources 40 0 R + /Length 69 0 R +>> +stream +1 1 0.6 rg +0 0 156.9 14.4 re f* +/Tx BMC +BT +0 0 0 rg /F3 11 Tf +0 g +2 2.106 Td +(Blue) Tj +ET +EMC +endstream +endobj + +69 0 obj +95 +endobj + +70 0 obj +<< + /BBox [ + 0 + 0 + 75.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 31 0 R + /Length 71 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 60.5 12.2 re +W +n +BT +0 0 0 rg +1 3.24501 Td +/FXF1 11 Tf +(Man) Tj +ET +Q +EMC +endstream +endobj + +71 0 obj +90 +endobj + +72 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 35 0 R + /Length 73 0 R +>> +stream +q +Q +endstream +endobj + +73 0 obj +4 +endobj + +74 0 obj +<< + /Length1 37060 + /Length 75 0 R +>> +stream +true @cmapY:.Rcvt .0fpgm bxRnglyf!$IheadNp7X6hheaXP$hmtxXtlocab YDjmaxp +Y nameHxY+post* prep +  +  !"#$%&'()*+,-./012&iiiD|ZRRD/W~ "APoLu\7LnpX cc-\ @Wr]g!wM+Le|C]h5G!\M-x ,I?)9Io#o 2@z1UW~~FB/OV)or,11di+ &  sC_a^m8Q[h|ATkhqBBSsX2Q|  !U{{~!""#rw"+5<Yoq22 *<Qaajx *>LQ_jqx !".5BOO^eq *G]ety +"&+G_u\ +m6>PQ]`E3-_dM?}$x;;N&;MKSj1<ex ~ 90+ +P >X!q}E ++NT2N7kwdg3|)n*i9$]u +MRhm}qyXgV%|2!r\/AMrLjUxiWnTgeRZgn-|{pLFF-S%>S?("bJmH3NFpyQ +hlOa+@CUTA@?>=<;:987543210/.-,+*)('&%$#"!  + ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,#p>#pE: -,E#DE#D-, E%EadPQXED!!Y-,Cc#b#B+-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+#Dz-,E+#D-,CXE+#DzEi #D QX+#Dz!zYY-,-,%F`F@aH-,KS \XYXY-, %E#DE#DEe#E %`j #B#hj`a Ry!@E TX#!?#YaDRy@ E TX#!?#YaD-,C#C -,C#C -, C#C -, C#Ce -,C#Ce -,C#Ce -,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KdQXEi C`:!!!Y-,%# `#-,%# a#-,%-, ` <<-, a <<-,++**-,CC -,>**-,5-,v##p #E PXaY:/-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,KTX8!!Y-,CXY-,CXY-,KTC\ZX8!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,KS#KQZX:+!!Y-,KS#KQZX;+!!Y-,KS#KQZC\ZX8!!Y-, KT&KTZ +C\ZX8!!Y-,KRX%%I%%Ia TX! CUX%%88Y@TX CTX%8Y CTX%%88%8YYYY!!!!-,F#F`F# F`ab# #ŠpE` PXaFY`h:-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,CTXKS#KQZX8!!Y!!!!Y-!!%!! @ 0@  s  / @ UU U U U Us+++++++]<]<]<<??<<10!!5!! a4@ U%5E @:4  + % @364  @ U@U (U U @ U  U  U @ U U @ U +U U N@464p%@364 U@U U U U@U U UNGP+++++++++]q+<<]q+++++++++++++]q+?0@{"": J D$V"e"| $, 0K,U2 +\\ \ +\ \ \ jj j +j j j &''&$'$)6$Z +Y d&d(t#t$$ + (,0 + '(&&( U" U# U$ U( U" U# U$ U@9Z'% + & .@", U?O_oU@ U@4@4.\l UU@U. $@42@/UU U U U U U U[$*9** U*U* U* U*2@!'*4`22?222$ U U U U @U $ U U U@ U U U"?O147+N]qM+++++++++++rN]q+++++q+M+++++++++r?+++?q9/++]qr+]qr+99910Cy@@'-#,&"  (- !#"# ) +(' ++++<<+<<+++++*++++++++++]q]rq]732654'&'.54676632&&#"#"&?{|x5%ƙOA8*S}Z si|j/Vi}=kreD=#%2INGy(+H{gR\R7# +$3A|\ZWJ>(7-@, * *) **9 67:*I*] ]*j i*`0 ) ( U'@ U((((D@ U U U5@U U+,*499,IH,VY+fi+v +74/$42!_)o))/? UU@U UU@ UE' +2 )aa U%!$U$@ U$ U$ U$ U$@ U$U$ U$[@'@&& &0&&9U&ֶU&19@ #409999@AU%"/$?U U U U U U U18+++++++]q+]q+++]++++++++<+??+?9/+++++]qq999910]++++q]++q%#"&546676767654'&#"'>32#&326765}@@< 4y  +  $@U@ U (U U @ U  U " U @ U U @ U +U @ U @364   N@464p3%UU@U U + U U@U U U@364 N]q++++++++++<<<]q+]q+++++++++++++<<?S@U]] U eko e  U@R U U'1:1AMAQ\Ramaxx P`p +U@U @ ܴ U U U @ '*4  %&4@A#403$@$*4?O U U U U U U47+N++++++]+MNq++q++++M?]++?9/]#ǹ U U @M 4%    #  # # +%%%%%UU@ U U@ U U UU U U]@ %U@ U U@ U U +U@ U U U]@3#%?O@U U U U UU@U + U U$%x!GP++N+++++++++]qrpXdL:&N_bX'l_:xxPi!>b@ -=K?  ) #22Bp ::JJY[ \\jk imk  #++5:FJZ   $ + +@ +` + + @ U @ U +@ U + U + U + U +U +@# U +t33%?O@U U U U UU@U U UG7+N+++++++++]qr k U U@s U U + GHVYgi4::5EKKE\\ R]]Rmm dmmdw  [TT +[ lee +l + $@ U@ U@U U U U UU U@$%40 1@I#40$ U U U U U U U U@$%4?147+]+++++++++q+]]]++++++++++??10q]qC\X@ SS bb ]Y++++7632#"32654&#"D{'v  @ /0@p  ( @(4   ++ +@%184@+4@U@ UU(U"U, U@ U UUU U! ++++++++++++++]++<<<]??<<<@;/#4CSft      + (" "%@364 U@U U UU@U U UNG+++++++++]q+<]r???999999ɇ}10]r]336632&#">i?[^>BB;^&qH:'G?`r@ $5E?"3Bp:<<LL]] X]^jl hnn  //0?@LPf  + $  @ ` @ U U  U U U U U @/ U t3 U U3%?OU@U U U U UU@U U UG7+N++++++++++]qr*o@` , %L E , &,#9 6J FVX h +.#,'>#>'L',,6!6)?,F F!E)T!T)ic!c)`,,'!#'(@ 0`p}@2 +E" +3%3 +%@`,@ U,@ UU@UU U@ UU U@J Ut%"$?O U U" U U U U+,t!4P++N++++++]qM++++++++++]q<<??]??<10]q]q32676'#"5463253#"&32654&#"f 2Ct}vnэze۠Ꙧ}|zxXQ%2dZ7<ݘjx*$*ع +#&4 @A#&4 + + + "" % E E`p UUU U UU@ U U Uj6f++++++++++]q<<<??<<993310]++%#"&&5#5373#32LeclM," ع @4 + + + +  U@ U U@ U U]    @ +4 UU U@ U U U@ U]  P ` p ;Y+]q++++++++]<<]+++++<<?ZCTX@4 @Pp  U U U U/++++??]2]210@G CCSS``    +jiju p +  "_o@y0@P`p    $ U"$ +@ U@UH U UI$? U +U U14++++]q++++]rKS#KQZX8Yr+r??9/9/]]10]q]qY#"4632&&#"326<r鉭Zj +kl‚c@P   @OO@XX WU_Z_VW & U U U U U@! U&  U Uc\+N++]MN]++++++]M??10]q]]]q!2#"$7324&#"c6FymZ4 |Q`=@ +'33@^ +]??rs^sg0pMQOa7&8@  << +|G_<DZCTX@  U U @ U @UUU U@  +  9/9//++++?+++210CTX@  U @ U @ UU + U@ U  9/9/++/++?++210@6;;I Y Tk dzz  @ + O @ +s@!#4 8@ ?_o$+]+<?<&37@U/0 H+)++]]qr+5k[A : OZ@ + : vM>Wy+? @^&>k +U4Ks uS_<'*Q& >NC40s?9sJssKssD9ssV9!sFsB9$P9c|sVssU|9A9f9m9Vss<sV\VPkl> +A "  4Mz*[x !N"c"#$_$$481/V +FN +^ +t~&h  + b f< \V16/=l q}b E +a> 1 3 Z.]     +  ^  +G Q i w &; a + b f   u \') + ' '  ' ''' '' '(( ( (+$(7*(E-(S + (S (_ + (k  (wTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormaloby ejnnormalStandardTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormalNormaaliNormalNormlNormaleStandaardNormalNormalnyNormal1KG=K9NormlneNormalNormalNavadnothngNormalNormalNormalNormal'TA"/O__o@3@3@jl2@a3@\]2@WY2@MQ2@DI2@:3@142@.B2@',2@%2 + 2Ap@$&2d 2A +d2AJ?/?_?Ӳ792Ӳ+/2Ӳ%2Ӳ2Ӳ2Ҳ) +A0 P`p`p   0@Pв +ϲ&BAƲA /$A/?O_"dA @j@&CI2@ CI2@&:=2@ :=2 &@&2@ 2@&2@ 2@&2@ 2@&z2@ z2@&lv2@ lv2@&dj2@ dj2@&Z_2@ Z_2@&OT2@ OT2$'7Ok Aw0w@wPwwww**@+)*Re~<^+@8@@89@s&%$ 7@!I3@!E3@!AB2@!=>2A!?!!!!!@! "2@!2@"*?2@!.:2oAH/`?_"""/"?"_"""!!o!!!/!?!O!""!!@+HO7 A &A9&%8s542V&, /& 8ʸ&~&}Gke&^s@R&ZHDb@s?^<&50+*V)#U7h@,XO62,!  +@+JKKSBKcKb S# +QZ#BKKTB8+KR7+KP[XY8+TXCX(YYv??>9FD>9FD>9FD>9FD>9F`D>9F`D+++++++++++++++++++++++KSXY2KSXYKS \XEDEDYX>ERX>DYYKVS \X ED&EDYX ERX DYYKS \X%ED$EDYX %ERX% DYYKS \Xs$ED$$EDYX sERXs DYYKS \X%ED%%EDYXERXDYYK>S \XEDEDYXERXDYYKVS \XED/EDYXERXDYYKS \XEDEDYX ERX DYY+++++++++++++++++++++++++++++++++++++++++eB++;Yc\Ee#E`#Ee`#E`vhb cYEe#E &`bch &aeY#eDc#D ;\Ee#E &`bch &ae\#eD;#D\ETX\@eD;@;E#aDYGP47Ee#E`#Ee`#E`vhb 4PEe#E &`bch &aeP#eD4#D G7Ee#E &`bch &ae7#eDG#D7ETX7@eDG@GE#aDYKSBKPXBYC\XBY +CX`!YBp>CX;!~ +Y #B #BCX-A-A +Y#B#BCX~;! +Y#B#B+tusuEiDEiDEiDsssstustu++++tu+++++sssssssssssssssssssssssss+++E@aDstK*SK?QZXE@`DYK:SK?QZX E`DYK.SK:QZXE@`DYK.SK> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +50 beginbfchar +<01> <0054> +<02> <0068> +<03> <0069> +<04> <0073> +<05> <0020> +<06> <0061> +<07> <006E> +<08> <0065> +<09> <0078> +<0A> <006D> +<0B> <0070> +<0C> <006C> +<0D> <006F> +<0E> <0066> +<0F> <0075> +<10> <0072> +<11> <0062> +<12> <0050> +<13> <0044> +<14> <0046> +<15> <002E> +<16> <004E> +<17> <0079> +<18> <0064> +<19> <0067> +<1A> <0074> +<1B> <0048> +<1C> <0077> +<1D> <0076> +<1E> <0063> +<1F> <004F> +<20> <0028> +<21> <0033> +<22> <0034> +<23> <0030> +<24> <0029> +<25> <002C> +<26> <006B> +<27> <002D> +<28> <0049> +<29> <0043> +<2A> <0047> +<2B> <003A> +<2C> <0041> +<2D> <0031> +<2E> <0032> +<2F> <004C> +<30> <0053> +<31> <0045> +<32> <00E7> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +77 0 obj +918 +endobj + +%% Contents for page 1 +78 0 obj +<< + /Length 79 0 R +>> +stream +q +endstream +endobj + +79 0 obj +2 +endobj + +%% Contents for page 1 +80 0 obj +<< + /Length 81 0 R +>> +stream +q +BT +/DeviceRGB cs 0 0 0 scn /DeviceGray CS 0 SCN 0.1 w /F2 11 Tf 1 0 0 1 0 0 Tm 56.8 460.8 TD[(*)-4<03>4<1d08>1<07>-7<05>4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 424.3 TD[<14>1<06>1(\n)-2<03>-4(\f)-4<17>9<05>-4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 395.4 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(-)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 371.6 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(.)1(+)]TJ +1 0 0 1 0 0 Tm 450 351.6 TD[<05>]TJ +1 0 0 1 0 0 Tm 147.8 179.1 TD[<05>4<05>]TJ +1 0 0 1 0 0 Tm 244.8 179.1 TD[<05>-4<05>]TJ +1 0 0 1 0 0 Tm 432.8 179.1 TD[<05>-4<05>]TJ +ET +Q +/DeviceRGB cs 1 1 0.6 scn /DeviceRGB CS 0 0 0 SCN 0 J [] 0 d 0 j 0.1 w 10 M /RelativeColorimetric ri 1 i /FXE1 gs 163.1 450.9 155.3 19.9 re +B* +163.1 418.3 155.3 19.9 re +B* +endstream +endobj + +81 0 obj +747 +endobj + +%% Contents for page 1 +82 0 obj +<< + /Length 83 0 R +>> +stream + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 453.70000 cm +0.00000 0.00000 150.00000 14.20000 re W n +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(ABC) Tj +ET +Q +EMC + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 421.20000 cm +0.00000 0.00000 150.00000 14.20000 re W n +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(DEF) Tj +ET +Q +EMC + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 388.30000 cm +0.00000 0.00000 150.00000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 378.40000 388.40000 cm +0.00000 0.00000 68.50000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 368.40000 cm +0.00000 0.00000 150.00000 14.20000 re W n +/Tx BMC +EMC +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 348.50000 cm +0.00000 0.00000 72.80000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 297.10000 348.50000 cm +0.00000 0.00000 150.10000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 315.90000 cm +0.00000 0.00000 150.00000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 283.40000 cm +0.00000 0.00000 75.50000 14.20000 re W n +q +Q +/Tx BMC +q +1 1 60.5 12.2 re +W +n +BT +0 0 0 rg +1 3.24501 Td +/FXF1 11 Tf +(Man) Tj +ET +Q +EMC + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 250.80000 cm +0.00000 0.00000 72.30000 14.20000 re W n +q +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 164.10000 221.40000 cm +0.00000 0.00000 11.30000 10.90000 re W n +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 154.80000 177.60000 cm +0.00000 0.00000 11.30000 10.90000 re W n +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q + +Q +q +1.00000 0.00000 0.00000 1.00000 165.70000 143.40000 cm +0.00000 0.00000 157.10000 14.20000 re W n +1 1 0.6 rg +0 0 156.9 14.4 re f* +/Tx BMC +BT +0 0 0 rg /F3 11 Tf +0 g +2 2.106 Td +(Blue) Tj +ET +EMC + +Q +endstream +endobj + +83 0 obj +1852 +endobj + +84 0 obj +<< + /SubType /XML + /Type /ParaLinkXML + /Length 85 0 R +>> +stream + +endstream +endobj + +85 0 obj +55 +endobj + +86 0 obj +<< + /SubType /XML + /Type /ParaXML + /Length 87 0 R +>> +stream + + +endstream +endobj + +87 0 obj +84 +endobj + +88 0 obj +<< + /Type /XRef + /Length 445 + /W [ 1 3 1 ] + /Info 28 0 R + /Root 1 0 R + /Size 89 + /ID [<5e0a553555622a0516e9877ca55217a6><31415926535897932384626433832795>] +>> +stream +  +    !"#$%&'BP P@RSTUUUUVxVW=WPXXXXYYZZ\)\=]|]^i^}__`H`[eFfz(< +endstream +endobj + +startxref +66108 +%%EOF diff --git a/qpdf/qtest/qpdf/form-field-types.pdf b/qpdf/qtest/qpdf/form-field-types.pdf new file mode 100644 index 00000000..5548d1e0 --- /dev/null +++ b/qpdf/qtest/qpdf/form-field-types.pdf @@ -0,0 +1,2443 @@ +%PDF-1.6 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm << + /DA (/Helv 0 Tf 0 g ) + /DR 27 0 R + /Fields [ + 3 0 R + 5 0 R + 21 0 R + 6 0 R + 7 0 R + 8 0 R + 11 0 R + 9 0 R + 20 0 R + 10 0 R + 12 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 14 0 R + ] + >> + /Lang (en-GB) + /Metadata 43 0 R + /OpenAction [ + 45 0 R + /XYZ + null + null + 0 + ] + /Pages 22 0 R + /Type /Catalog + /ViewerPreferences << + /DisplayDocTitle true + >> +>> +endobj + +2 0 obj +<< + /Type /ObjStm + /Length 16787 + /N 40 + /First 359 +>> +stream +3 0 +4 361 +5 492 +6 850 +7 1226 +8 1534 +9 1837 +10 3431 +11 3853 +12 4153 +13 4678 +14 4780 +15 5582 +16 6009 +17 6440 +18 6871 +19 7302 +20 7733 +21 8208 +22 8514 +23 8675 +24 8933 +25 9539 +26 9770 +27 11700 +28 11934 +29 12161 +30 12293 +31 12489 +32 12685 +33 12881 +34 13077 +35 13273 +36 13469 +37 13665 +38 13861 +39 14057 +40 14253 +41 14449 +42 16364 +%% Object stream: object 3, index 0 +<< + /AP << + /N 46 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 453.7 + 315.7 + 467.9 + ] + /Subtype /Widget + /T (Given Name Text Box) + /TU + /Type /Annot + /V (ABC) +>> +%% Object stream: object 4, index 1 +<< + /ArialMT 26 0 R + /F2 24 0 R + /F3 26 0 R + /FXF1 26 0 R + /Helv 29 0 R + /ZaDi 13 0 R +>> +%% Object stream: object 5, index 2 +<< + /AP << + /N 48 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 421.2 + 315.7 + 435.4 + ] + /Subtype /Widget + /T (Family Name Text Box) + /TU + /Type /Annot + /V (DEF) +>> +%% Object stream: object 6, index 3 +<< + /AP << + /N 50 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 378.4 + 388.4 + 446.9 + 402.6 + ] + /Subtype /Widget + /T (House nr Text Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 7, index 4 +<< + /AP << + /N 52 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 368.4 + 315.7 + 382.6 + ] + /Subtype /Widget + /T (Address 2 Text Box) + /Type /Annot + /V +>> +%% Object stream: object 8, index 5 +<< + /AP << + /N 54 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 165.7 + 348.5 + 238.5 + 362.7 + ] + /Subtype /Widget + /T (Postcode Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 9, index 6 +<< + /AP << + /N 56 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ] + /P 45 0 R + /Rect [ + 165.7 + 315.9 + 315.7 + 330.1 + ] + /Subtype /Widget + /T (Country Combo Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 10, index 7 +<< + /AP << + /N 58 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 45 0 R + /Rect [ + 165.7 + 250.8 + 238 + 265 + ] + /Subtype /Widget + /T (Height Formatted Field) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 11, index 8 +<< + /AP << + /N 60 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 297.1 + 348.5 + 447.2 + 362.7 + ] + /Subtype /Widget + /T (City Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 12, index 9 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 164.1 + 221.4 + 175.4 + 232.3 + ] + /Subtype /Widget + /T (Driving License Check Box) + /TU + /Type /Annot + /V /Yes +>> +%% Object stream: object 13, index 10 +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 14, index 11 +<< + /AP << + /N 68 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /I [ + 6 + ] + /Opt [ + + + + + + + + + + + ] + /P 45 0 R + /Rect [ + 165.7 + 143.4 + 322.8 + 157.6 + ] + /Subtype /Widget + /T (Favourite Colour List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 15, index 12 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 57.7 + 177.6 + 69 + 188.5 + ] + /Subtype /Widget + /T (Language 1 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 16, index 13 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 154.8 + 177.6 + 166.1 + 188.5 + ] + /Subtype /Widget + /T (Language 2 Check Box) + /Type /Annot + /V /Yes +>> +%% Object stream: object 17, index 14 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 251.8 + 177.6 + 263.1 + 188.5 + ] + /Subtype /Widget + /T (Language 3 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 18, index 15 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 342.8 + 177.6 + 354.1 + 188.5 + ] + /Subtype /Widget + /T (Language 4 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 19, index 16 +<< + /AP << + /D << + /Off 62 0 R + /Yes 64 0 R + >> + /N << + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 13 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 45 0 R + /Rect [ + 439.8 + 177.6 + 451.1 + 188.5 + ] + /Subtype /Widget + /T (Language 5 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 20, index 17 +<< + /AP << + /N 70 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + ] + /P 45 0 R + /Rect [ + 165.7 + 283.4 + 241.2 + 297.6 + ] + /Subtype /Widget + /T (Gender List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 21, index 18 +<< + /AP << + /N 72 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 4 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 45 0 R + /Rect [ + 165.7 + 388.3 + 315.7 + 402.5 + ] + /Subtype /Widget + /T (Address 1 Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 22, index 19 +<< + /Count 1 + /Kids [ + 45 0 R + ] + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /Resources 27 0 R + /Type /Pages +>> +%% Object stream: object 23, index 20 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontFile2 74 0 R + /FontName /CAAAAA+ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 24, index 21 +<< + /BaseFont /CAAAAA+ArialMT + /FirstChar 0 + /FontDescriptor 23 0 R + /LastChar 50 + /Subtype /TrueType + /ToUnicode 76 0 R + /Type /Font + /Widths [ + 750 + 610 + 556 + 222 + 500 + 277 + 556 + 556 + 556 + 500 + 833 + 556 + 222 + 556 + 277 + 556 + 333 + 556 + 666 + 722 + 610 + 277 + 722 + 500 + 556 + 556 + 277 + 722 + 722 + 500 + 500 + 777 + 333 + 556 + 556 + 556 + 333 + 277 + 500 + 333 + 277 + 722 + 777 + 277 + 666 + 556 + 556 + 556 + 666 + 666 + 500 + ] +>> +%% Object stream: object 25, index 22 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontName /ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 26, index 23 +<< + /BaseFont /ArialMT + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 25 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 277 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +%% Object stream: object 27, index 24 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /ExtGState << + /FXE1 42 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 28, index 25 +<< + /CreationDate (D:20130629204853+02'00') + /Creator (Writer) + /Keywords (PDF Form) + /ModDate (D:20160331080439+03'00') + /Producer (OpenOffice.org 3.4) + /Title (PDF Form Example) +>> +%% Object stream: object 29, index 26 +<< + /BaseFont /Helvetica + /Encoding 41 0 R + /Name /Helv + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 30, index 27 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 31, index 28 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 32, index 29 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 33, index 30 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 34, index 31 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 35, index 32 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 36, index 33 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 37, index 34 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 38, index 35 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 39, index 36 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 40, index 37 +<< + /Encoding << + /PDFDocEncoding 41 0 R + >> + /Font 4 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 41, index 38 +<< + /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 +>> +%% Object stream: object 42, index 39 +<< + /AIS false + /BM /Normal + /CA 1 + /SMask /None + /ca 1 +>> +endstream +endobj + +43 0 obj +<< + /Subtype /XML + /Type /Metadata + /Length 44 0 R +>> +stream + + + + + 2013-06-29T20:48:53+02:00 + Writer + 2016-03-31T08:04:39+03:00 + 2016-03-30T09:23:15-07:00 + PDF Form + OpenOffice.org 3.4 + application/pdf + + + PDF Form Example + + + uuid:2b2730cc-fa59-48a2-aef6-aaaa64179a3b + uuid:246f8744-738f-478b-9f5c-860c5c4ffcc5 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj + +%QDF: ignore_newline +44 0 obj +3352 +endobj + +%% Page 1 +45 0 obj +<< + /Annots [ + 3 0 R + 5 0 R + 21 0 R + 6 0 R + 7 0 R + 8 0 R + 11 0 R + 9 0 R + 20 0 R + 10 0 R + 12 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 14 0 R + ] + /Contents 78 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /ParaLinkXML 80 0 R + /ParaXML 82 0 R + /Parent 22 0 R + /Resources 27 0 R + /Type /Page +>> +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 33 0 R + /Length 47 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(ABC) Tj +ET +Q +EMC +endstream +endobj + +47 0 obj +89 +endobj + +48 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 34 0 R + /Length 49 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(DEF) Tj +ET +Q +EMC +endstream +endobj + +49 0 obj +89 +endobj + +50 0 obj +<< + /BBox [ + 0 + 0 + 68.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 36 0 R + /Length 51 0 R +>> +stream +q +Q +endstream +endobj + +51 0 obj +4 +endobj + +52 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Resources 30 0 R + /Length 53 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +%QDF: ignore_newline +53 0 obj +12 +endobj + +54 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 37 0 R + /Length 55 0 R +>> +stream +q +Q +endstream +endobj + +55 0 obj +4 +endobj + +56 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 39 0 R + /Length 57 0 R +>> +stream +q +Q +endstream +endobj + +57 0 obj +4 +endobj + +58 0 obj +<< + /BBox [ + 0 + 0 + 72.3 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 32 0 R + /Length 59 0 R +>> +stream +q +Q +endstream +endobj + +59 0 obj +4 +endobj + +60 0 obj +<< + /BBox [ + 0 + 0 + 150.1 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 38 0 R + /Length 61 0 R +>> +stream +q +Q +endstream +endobj + +61 0 obj +4 +endobj + +62 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 63 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +endstream +endobj + +63 0 obj +30 +endobj + +64 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 65 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +65 0 obj +95 +endobj + +66 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +67 0 obj +65 +endobj + +68 0 obj +<< + /BBox [ + 0 + 0 + 157.1 + 14.2 + ] + /Resources 40 0 R + /Length 69 0 R +>> +stream +1 1 0.6 rg +0 0 156.9 14.4 re f* +/Tx BMC +BT +0 0 0 rg /F3 11 Tf +0 g +2 2.106 Td +(Blue) Tj +ET +EMC +endstream +endobj + +69 0 obj +95 +endobj + +70 0 obj +<< + /BBox [ + 0 + 0 + 75.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 31 0 R + /Length 71 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 60.5 12.2 re +W +n +BT +0 0 0 rg +1 3.24501 Td +/FXF1 11 Tf +(Man) Tj +ET +Q +EMC +endstream +endobj + +71 0 obj +90 +endobj + +72 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 35 0 R + /Length 73 0 R +>> +stream +q +Q +endstream +endobj + +73 0 obj +4 +endobj + +74 0 obj +<< + /Length1 37060 + /Length 75 0 R +>> +stream +true @cmapY:.Rcvt .0fpgm bxRnglyf!$IheadNp7X6hheaXP$hmtxXtlocab YDjmaxp +Y nameHxY+post* prep +  +  !"#$%&'()*+,-./012&iiiD|ZRRD/W~ "APoLu\7LnpX cc-\ @Wr]g!wM+Le|C]h5G!\M-x ,I?)9Io#o 2@z1UW~~FB/OV)or,11di+ &  sC_a^m8Q[h|ATkhqBBSsX2Q|  !U{{~!""#rw"+5<Yoq22 *<Qaajx *>LQ_jqx !".5BOO^eq *G]ety +"&+G_u\ +m6>PQ]`E3-_dM?}$x;;N&;MKSj1<ex ~ 90+ +P >X!q}E ++NT2N7kwdg3|)n*i9$]u +MRhm}qyXgV%|2!r\/AMrLjUxiWnTgeRZgn-|{pLFF-S%>S?("bJmH3NFpyQ +hlOa+@CUTA@?>=<;:987543210/.-,+*)('&%$#"!  + ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,#p>#pE: -,E#DE#D-, E%EadPQXED!!Y-,Cc#b#B+-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+#Dz-,E+#D-,CXE+#DzEi #D QX+#Dz!zYY-,-,%F`F@aH-,KS \XYXY-, %E#DE#DEe#E %`j #B#hj`a Ry!@E TX#!?#YaDRy@ E TX#!?#YaD-,C#C -,C#C -, C#C -, C#Ce -,C#Ce -,C#Ce -,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KdQXEi C`:!!!Y-,%# `#-,%# a#-,%-, ` <<-, a <<-,++**-,CC -,>**-,5-,v##p #E PXaY:/-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,KTX8!!Y-,CXY-,CXY-,KTC\ZX8!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,KS#KQZX:+!!Y-,KS#KQZX;+!!Y-,KS#KQZC\ZX8!!Y-, KT&KTZ +C\ZX8!!Y-,KRX%%I%%Ia TX! CUX%%88Y@TX CTX%8Y CTX%%88%8YYYY!!!!-,F#F`F# F`ab# #ŠpE` PXaFY`h:-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,CTXKS#KQZX8!!Y!!!!Y-!!%!! @ 0@  s  / @ UU U U U Us+++++++]<]<]<<??<<10!!5!! a4@ U%5E @:4  + % @364  @ U@U (U U @ U  U  U @ U U @ U +U U N@464p%@364 U@U U U U@U U UNGP+++++++++]q+<<]q+++++++++++++]q+?0@{"": J D$V"e"| $, 0K,U2 +\\ \ +\ \ \ jj j +j j j &''&$'$)6$Z +Y d&d(t#t$$ + (,0 + '(&&( U" U# U$ U( U" U# U$ U@9Z'% + & .@", U?O_oU@ U@4@4.\l UU@U. $@42@/UU U U U U U U[$*9** U*U* U* U*2@!'*4`22?222$ U U U U @U $ U U U@ U U U"?O147+N]qM+++++++++++rN]q+++++q+M+++++++++r?+++?q9/++]qr+]qr+99910Cy@@'-#,&"  (- !#"# ) +(' ++++<<+<<+++++*++++++++++]q]rq]732654'&'.54676632&&#"#"&?{|x5%ƙOA8*S}Z si|j/Vi}=kreD=#%2INGy(+H{gR\R7# +$3A|\ZWJ>(7-@, * *) **9 67:*I*] ]*j i*`0 ) ( U'@ U((((D@ U U U5@U U+,*499,IH,VY+fi+v +74/$42!_)o))/? UU@U UU@ UE' +2 )aa U%!$U$@ U$ U$ U$ U$@ U$U$ U$[@'@&& &0&&9U&ֶU&19@ #409999@AU%"/$?U U U U U U U18+++++++]q+]q+++]++++++++<+??+?9/+++++]qq999910]++++q]++q%#"&546676767654'&#"'>32#&326765}@@< 4y  +  $@U@ U (U U @ U  U " U @ U U @ U +U @ U @364   N@464p3%UU@U U + U U@U U U@364 N]q++++++++++<<<]q+]q+++++++++++++<<?S@U]] U eko e  U@R U U'1:1AMAQ\Ramaxx P`p +U@U @ ܴ U U U @ '*4  %&4@A#403$@$*4?O U U U U U U47+N++++++]+MNq++q++++M?]++?9/]#ǹ U U @M 4%    #  # # +%%%%%UU@ U U@ U U UU U U]@ %U@ U U@ U U +U@ U U U]@3#%?O@U U U U UU@U + U U$%x!GP++N+++++++++]qrpXdL:&N_bX'l_:xxPi!>b@ -=K?  ) #22Bp ::JJY[ \\jk imk  #++5:FJZ   $ + +@ +` + + @ U @ U +@ U + U + U + U +U +@# U +t33%?O@U U U U UU@U U UG7+N+++++++++]qr k U U@s U U + GHVYgi4::5EKKE\\ R]]Rmm dmmdw  [TT +[ lee +l + $@ U@ U@U U U U UU U@$%40 1@I#40$ U U U U U U U U@$%4?147+]+++++++++q+]]]++++++++++??10q]qC\X@ SS bb ]Y++++7632#"32654&#"D{'v  @ /0@p  ( @(4   ++ +@%184@+4@U@ UU(U"U, U@ U UUU U! ++++++++++++++]++<<<]??<<<@;/#4CSft      + (" "%@364 U@U U UU@U U UNG+++++++++]q+<]r???999999ɇ}10]r]336632&#">i?[^>BB;^&qH:'G?`r@ $5E?"3Bp:<<LL]] X]^jl hnn  //0?@LPf  + $  @ ` @ U U  U U U U U @/ U t3 U U3%?OU@U U U U UU@U U UG7+N++++++++++]qr*o@` , %L E , &,#9 6J FVX h +.#,'>#>'L',,6!6)?,F F!E)T!T)ic!c)`,,'!#'(@ 0`p}@2 +E" +3%3 +%@`,@ U,@ UU@UU U@ UU U@J Ut%"$?O U U" U U U U+,t!4P++N++++++]qM++++++++++]q<<??]??<10]q]q32676'#"5463253#"&32654&#"f 2Ct}vnэze۠Ꙧ}|zxXQ%2dZ7<ݘjx*$*ع +#&4 @A#&4 + + + "" % E E`p UUU U UU@ U U Uj6f++++++++++]q<<<??<<993310]++%#"&&5#5373#32LeclM," ع @4 + + + +  U@ U U@ U U]    @ +4 UU U@ U U U@ U]  P ` p ;Y+]q++++++++]<<]+++++<<?ZCTX@4 @Pp  U U U U/++++??]2]210@G CCSS``    +jiju p +  "_o@y0@P`p    $ U"$ +@ U@UH U UI$? U +U U14++++]q++++]rKS#KQZX8Yr+r??9/9/]]10]q]qY#"4632&&#"326<r鉭Zj +kl‚c@P   @OO@XX WU_Z_VW & U U U U U@! U&  U Uc\+N++]MN]++++++]M??10]q]]]q!2#"$7324&#"c6FymZ4 |Q`=@ +'33@^ +]??rs^sg0pMQOa7&8@  << +|G_<DZCTX@  U U @ U @UUU U@  +  9/9//++++?+++210CTX@  U @ U @ UU + U@ U  9/9/++/++?++210@6;;I Y Tk dzz  @ + O @ +s@!#4 8@ ?_o$+]+<?<&37@U/0 H+)++]]qr+5k[A : OZ@ + : vM>Wy+? @^&>k +U4Ks uS_<'*Q& >NC40s?9sJssKssD9ssV9!sFsB9$P9c|sVssU|9A9f9m9Vss<sV\VPkl> +A "  4Mz*[x !N"c"#$_$$481/V +FN +^ +t~&h  + b f< \V16/=l q}b E +a> 1 3 Z.]     +  ^  +G Q i w &; a + b f   u \') + ' '  ' ''' '' '(( ( (+$(7*(E-(S + (S (_ + (k  (wTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormaloby ejnnormalStandardTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormalNormaaliNormalNormlNormaleStandaardNormalNormalnyNormal1KG=K9NormlneNormalNormalNavadnothngNormalNormalNormalNormal'TA"/O__o@3@3@jl2@a3@\]2@WY2@MQ2@DI2@:3@142@.B2@',2@%2 + 2Ap@$&2d 2A +d2AJ?/?_?Ӳ792Ӳ+/2Ӳ%2Ӳ2Ӳ2Ҳ) +A0 P`p`p   0@Pв +ϲ&BAƲA /$A/?O_"dA @j@&CI2@ CI2@&:=2@ :=2 &@&2@ 2@&2@ 2@&2@ 2@&z2@ z2@&lv2@ lv2@&dj2@ dj2@&Z_2@ Z_2@&OT2@ OT2$'7Ok Aw0w@wPwwww**@+)*Re~<^+@8@@89@s&%$ 7@!I3@!E3@!AB2@!=>2A!?!!!!!@! "2@!2@"*?2@!.:2oAH/`?_"""/"?"_"""!!o!!!/!?!O!""!!@+HO7 A &A9&%8s542V&, /& 8ʸ&~&}Gke&^s@R&ZHDb@s?^<&50+*V)#U7h@,XO62,!  +@+JKKSBKcKb S# +QZ#BKKTB8+KR7+KP[XY8+TXCX(YYv??>9FD>9FD>9FD>9FD>9F`D>9F`D+++++++++++++++++++++++KSXY2KSXYKS \XEDEDYX>ERX>DYYKVS \X ED&EDYX ERX DYYKS \X%ED$EDYX %ERX% DYYKS \Xs$ED$$EDYX sERXs DYYKS \X%ED%%EDYXERXDYYK>S \XEDEDYXERXDYYKVS \XED/EDYXERXDYYKS \XEDEDYX ERX DYY+++++++++++++++++++++++++++++++++++++++++eB++;Yc\Ee#E`#Ee`#E`vhb cYEe#E &`bch &aeY#eDc#D ;\Ee#E &`bch &ae\#eD;#D\ETX\@eD;@;E#aDYGP47Ee#E`#Ee`#E`vhb 4PEe#E &`bch &aeP#eD4#D G7Ee#E &`bch &ae7#eDG#D7ETX7@eDG@GE#aDYKSBKPXBYC\XBY +CX`!YBp>CX;!~ +Y #B #BCX-A-A +Y#B#BCX~;! +Y#B#B+tusuEiDEiDEiDsssstustu++++tu+++++sssssssssssssssssssssssss+++E@aDstK*SK?QZXE@`DYK:SK?QZX E`DYK.SK:QZXE@`DYK.SK> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +50 beginbfchar +<01> <0054> +<02> <0068> +<03> <0069> +<04> <0073> +<05> <0020> +<06> <0061> +<07> <006E> +<08> <0065> +<09> <0078> +<0A> <006D> +<0B> <0070> +<0C> <006C> +<0D> <006F> +<0E> <0066> +<0F> <0075> +<10> <0072> +<11> <0062> +<12> <0050> +<13> <0044> +<14> <0046> +<15> <002E> +<16> <004E> +<17> <0079> +<18> <0064> +<19> <0067> +<1A> <0074> +<1B> <0048> +<1C> <0077> +<1D> <0076> +<1E> <0063> +<1F> <004F> +<20> <0028> +<21> <0033> +<22> <0034> +<23> <0030> +<24> <0029> +<25> <002C> +<26> <006B> +<27> <002D> +<28> <0049> +<29> <0043> +<2A> <0047> +<2B> <003A> +<2C> <0041> +<2D> <0031> +<2E> <0032> +<2F> <004C> +<30> <0053> +<31> <0045> +<32> <00E7> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +77 0 obj +918 +endobj + +%% Contents for page 1 +78 0 obj +<< + /Length 79 0 R +>> +stream +q +BT +/DeviceRGB cs 0 0 0 scn /DeviceGray CS 0 SCN 0.1 w /F2 11 Tf 1 0 0 1 0 0 Tm 56.8 460.8 TD[(*)-4<03>4<1d08>1<07>-7<05>4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 424.3 TD[<14>1<06>1(\n)-2<03>-4(\f)-4<17>9<05>-4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 395.4 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(-)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 371.6 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(.)1(+)]TJ +1 0 0 1 0 0 Tm 450 351.6 TD[<05>]TJ +1 0 0 1 0 0 Tm 147.8 179.1 TD[<05>4<05>]TJ +1 0 0 1 0 0 Tm 244.8 179.1 TD[<05>-4<05>]TJ +1 0 0 1 0 0 Tm 432.8 179.1 TD[<05>-4<05>]TJ +ET +Q +/DeviceRGB cs 1 1 0.6 scn /DeviceRGB CS 0 0 0 SCN 0 J [] 0 d 0 j 0.1 w 10 M /RelativeColorimetric ri 1 i /FXE1 gs 163.1 450.9 155.3 19.9 re +B* +163.1 418.3 155.3 19.9 re +B* +endstream +endobj + +79 0 obj +747 +endobj + +80 0 obj +<< + /SubType /XML + /Type /ParaLinkXML + /Length 81 0 R +>> +stream + +endstream +endobj + +81 0 obj +55 +endobj + +82 0 obj +<< + /SubType /XML + /Type /ParaXML + /Length 83 0 R +>> +stream + + +endstream +endobj + +83 0 obj +84 +endobj + +84 0 obj +<< + /Type /XRef + /Length 340 + /W [ 1 2 1 ] + /Info 28 0 R + /Root 1 0 R + /Size 85 + /ID [<5e0a553555622a0516e9877ca55217a6><840c512d668f233ea559204b518f348c>] +>> +stream +  +    !"#$%&'DQQSgTlTUUVJV]VW WWXXYCYVZZ[7[K\\]^^^````4I +endstream +endobj + +startxref +64180 +%%EOF diff --git a/qpdf/qtest/qpdf/form-filled-by-acrobat-out.pdf b/qpdf/qtest/qpdf/form-filled-by-acrobat-out.pdf new file mode 100644 index 00000000..bfc3aa10 --- /dev/null +++ b/qpdf/qtest/qpdf/form-filled-by-acrobat-out.pdf @@ -0,0 +1,1654 @@ +%PDF-1.4 +% +%QDF-1.0 + +1 0 obj +<< + /Lang (en-US) + /OpenAction [ + 3 0 R + /XYZ + null + null + 0 + ] + /Pages 4 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /CreationDate (D:20180620163028-04'00') + /Creator + /ModDate (D:20181224003244Z00'00) + /Producer +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents [ + 5 0 R + 7 0 R + 9 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 11 0 R + /F2 12 0 R + /F3 13 0 R + /ZaDi 14 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +4 0 obj +<< + /Count 3 + /Kids [ + 3 0 R + 15 0 R + 16 0 R + ] + /Type /Pages +>> +endobj + +%% Contents for page 1 +5 0 obj +<< + /Length 6 0 R +>> +stream +q +endstream +endobj + +6 0 obj +2 +endobj + +%% Contents for page 1 +7 0 obj +<< + /Length 8 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf[<01>1<0203>1<04>-8<03>1<05>58<06>-2<0708>2<09070a0b0408>2(\f)]TJ +ET +Q +q 0 0 0 rg +BT +56.8 695.6 Td /F1 12 Tf[(\r)68<03>1<0e0f>-5<0710>-1<11>2<03>1<12>2<130707070707>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 666.2 Td /F1 12 Tf[<14>-2<0f>2<0203>1<04>-8<0706>-2<0f>2<15>8(\n)16<0a16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 450.3 Td /F1 12 Tf[<17>-2<1306>-2<18>1<130a18>1<06>-2<130a>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 424.9 Td /F1 12 Tf[<0203>1<0403>-6<05>58<06>-2<0706>6<0b08>-5<03>1<0708>2<0b0403>-6<0706>-2<0f>2<15>8(\n)16<0a0718>1(\n)-8<0f>2<03>1<04>58<16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 399.5 Td /F1 12 Tf[<19071a03>1<03>1<13>-7<0718>1<1a0b0f>2<0203>1<04>-8<071b18>1<1c03>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 386.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 374.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 361.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 348.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 336 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 323.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 310.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 297.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 285.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 272.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 259.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 247.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 234.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 221.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 209 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 196.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 183.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 170.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 158.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 145.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 132.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 120.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 107.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 94.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 82 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 69.3 Td /F1 12 Tf<1d>Tj +ET +Q +0 0 0 RG +1 1 1 rg +120.5 689 143.3 20.8 re B* +148.2 642.5 183.5 23.9 re f* +q 1.2 w 0 0 0 RG +155.4 660.4 m 158.7 660.4 161.4 657.8 161.4 654.4 c +161.4 651.1 158.7 648.4 155.4 648.4 c +152 648.4 149.4 651.1 149.4 654.4 c +149.4 657.8 152 660.4 155.4 660.4 c s + Q +q 166.2 642.5 164.3 23.9 re W* n +q 0.18039 0.20392 0.21176 rg +BT +166.2 651.3 Td /F3 12 Tf[<0102>-1<0304>]TJ +ET +Q +Q +1 1 1 rg +151.6 624.7 125.5 17.1 re f* +q 1.2 w 0 0 0 RG +158.8 639.2 m 162.1 639.2 164.8 636.6 164.8 633.2 c +164.8 629.9 162.1 627.2 158.8 627.2 c +155.4 627.2 152.8 629.9 152.8 633.2 c +152.8 636.6 155.4 639.2 158.8 639.2 c s + Q +q 169.6 624.7 106.3 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 630.1 Td /F3 12 Tf[<0102>-1<0305>]TJ +ET +Q +Q +1 1 1 rg +150.2 600.8 118.7 13.7 re f* +q 1.2 w 0 0 0 RG +157.4 613.6 m 160.8 613.6 163.5 611 163.5 607.6 c +163.5 604.3 160.8 601.6 157.4 601.6 c +154.1 601.6 151.4 604.3 151.4 607.6 c +151.4 611 154.1 613.6 157.4 613.6 c s + Q +q 168.3 600.8 99.5 13.7 re W* n +q 0.18039 0.20392 0.21176 rg +BT +168.3 604.5 Td /F3 12 Tf[<0102>-1<0306>]TJ +ET +Q +Q +1 1 1 rg +120.8 549 86.7 32.1 re f* +q 1.2 w 0 0 0 RG +122 559 12.1 12.1 re S + Q +q 138.9 549 67.5 32.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +138.9 562 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ +ET +Q +Q +1 1 1 rg +117.5 523.1 85.3 21.2 re f* +q 1.2 w 0 0 0 RG +118.7 527.6 12.1 12.1 re S + Q +q 135.5 523.1 66.1 21.2 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 530.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ +ET +Q +Q +1 1 1 rg +117.5 497.9 72.4 17.1 re f* +q 1.2 w 0 0 0 RG +118.7 500.4 12.1 12.1 re S + Q +q 135.5 497.9 53.2 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 503.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ +ET +Q +Q +Q +endstream +endobj + +%QDF: ignore_newline +8 0 obj +3700 +endobj + +%% Contents for page 1 +9 0 obj +<< + /Length 10 0 R +>> +stream + +Q +q +1.00000 0.00000 0.00000 1.00000 123.40000 692.09998 cm +0.00000 0.00000 137.50000 14.60004 re W n +/Tx BMC +q +1 1 135.5 12.600037 re +W +n +0 g 0 G 0 J []0 d 1 w +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +2 3.208019 Td +(abcpotato) Tj +ET +Q +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 149.30000 648.50000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 152.70000 627.30000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 151.30000 601.70000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 121.90000 559.10000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 118.60000 527.70000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 118.60000 500.50000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +endstream +endobj + +10 0 obj +1184 +endobj + +11 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 17 0 R + /LastChar 33 + /Subtype /TrueType + /ToUnicode 18 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 722 + 500 + 250 + 722 + 443 + 333 + 500 + 500 + 500 + 722 + 722 + 500 + 610 + 556 + ] +>> +endobj + +12 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 20 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +13 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 21 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 22 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +14 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Page 2 +15 0 obj +<< + /Contents 24 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 4 0 R + /Resources << + /Font 26 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +%% Page 3 +16 0 obj +<< + /Contents [ + 27 0 R + 29 0 R + 31 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 11 0 R + /F2 12 0 R + /F3 13 0 R + /ZaDi 14 0 R + >> + /ProcSet [ + /PDF + /Text + ] + /XObject << + /RMIm0 33 0 R + >> + >> + /Type /Page +>> +endobj + +17 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 35 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +18 0 obj +<< + /Length 19 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +33 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <004F> +<15> <0075> +<16> <002E> +<17> <0041> +<18> <0061> +<19> <0049> +<1A> <006E> +<1B> <0070> +<1C> <0067> +<1D> <0077> +<1E> <004E> +<1F> <0076> +<20> <004C> +<21> <0050> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +19 0 obj +714 +endobj + +20 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +21 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 37 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +22 0 obj +<< + /Length 23 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +23 0 obj +582 +endobj + +%% Contents for page 2 +24 0 obj +<< + /Length 25 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 699.7 Td /F1 12 Tf[(\r)2<0203>1<04>-8<03>1<0718>1<0403>-6<071a0b070a11>2<03>1<12>2<1306>-2<070b1a070f>2<0211>2<06>-10<071b18>1<1c03>1<16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 674.3 Td /F1 12 Tf<01>Tj +ET +Q +q 0 0 0 rg +BT +56.8 661.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 648.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 636.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 623.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 610.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 598.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 585.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 572.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 560 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 547.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 534.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 521.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 509.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 496.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 483.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 471.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 458.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 445.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 433 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 420.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 407.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 394.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 382.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 369.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 356.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 344.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 331.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 318.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 306 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 293.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 280.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 267.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 255.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 242.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 229.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 217.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 204.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 191.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 179 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 166.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 153.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 140.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 128.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 115.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 102.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 90.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 77.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 64.7 Td /F1 12 Tf<1d>Tj +ET +Q +Q +endstream +endobj + +%QDF: ignore_newline +25 0 obj +2634 +endobj + +26 0 obj +<< + /F1 11 0 R + /F2 12 0 R + /F3 13 0 R + /ZaDi 14 0 R +>> +endobj + +%% Contents for page 3 +27 0 obj +<< + /Length 28 0 R +>> +stream +q +endstream +endobj + +28 0 obj +2 +endobj + +%% Contents for page 3 +29 0 obj +<< + /Length 30 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 712.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 699.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 687 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 648.9 Td /F1 12 Tf[<1e>-2<0b1d>-2<0719070218>1<1f03>1<0718>1<070f>2<02>-7<11>2<0413071b18>1<1c03>1<16>-7<0720>2<03>1<0f>2<05>58<06>-2<071b150f>-5<0706>-2<0f>2<150a>16<0a070203>1<0403>1<070f>2<0b0b16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 382.2 Td /F1 12 Tf[(!)-1<0b0f>2<18>1<0f>2<0b>]TJ +ET +Q +1 1 1 rg +117.5 546.2 169.2 30.8 re f* +q 1.2 w 0 0 0 RG +124.7 567.6 m 128 567.6 130.7 565 130.7 561.6 c +130.7 558.3 128 555.6 124.7 555.6 c +121.3 555.6 118.7 558.3 118.7 561.6 c +118.7 565 121.3 567.6 124.7 567.6 c s + Q +q 135.5 546.2 150 30.8 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 558.5 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ +ET +Q +Q +1 1 1 rg +118.2 505.3 180.7 30.8 re f* +q 1.2 w 0 0 0 RG +125.4 526.7 m 128.7 526.7 131.4 524.1 131.4 520.7 c +131.4 517.4 128.7 514.7 125.4 514.7 c +122 514.7 119.4 517.4 119.4 520.7 c +119.4 524.1 122 526.7 125.4 526.7 c s + Q +q 136.2 505.3 161.5 30.8 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 517.6 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ +ET +Q +Q +1 1 1 rg +120.2 461.7 139.2 33.5 re f* +q 1.2 w 0 0 0 RG +127.4 484.4 m 130.7 484.4 133.4 481.8 133.4 478.4 c +133.4 475.1 130.7 472.4 127.4 472.4 c +124 472.4 121.4 475.1 121.4 478.4 c +121.4 481.8 124 484.4 127.4 484.4 c s + Q +q 138.2 461.7 120 33.5 re W* n +q 0.18039 0.20392 0.21176 rg +BT +138.2 475.3 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ +ET +Q +Q +0 0 0 RG +1 1 1 rg +110.7 375.4 243.5 24 re B* +Q +endstream +endobj + +%QDF: ignore_newline +30 0 obj +1753 +endobj + +%% Contents for page 3 +31 0 obj +<< + /Length 32 0 R +>> +stream + +Q +q +1.01653 0.00000 0.00000 0.98347 118.60000 555.70000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 119.30000 514.80000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC + +Q +q +1.01653 0.00000 0.00000 0.98347 121.30000 472.50000 cm +0.00000 0.00000 12.10000 12.10000 re W n +/Tx BMC +EMC + +Q +q +1.00000 0.00000 0.00000 1.00000 113.60000 378.50000 cm +0.00000 0.00000 237.69998 17.79999 re W n +q +235.699982 0 0 15.799988 1 1 cm +/RMIm0 Do +Q + +Q +endstream +endobj + +32 0 obj +683 +endobj + +33 0 obj +<< + /BitsPerComponent 8 + /ColorSpace /DeviceRGB + /Height 66 + /Mask [ + 255 + 255 + 255 + 255 + 255 + 255 + ] + /Subtype /Image + /Type /XObject + /Width 983 + /Length 34 0 R +>> +stream +𤧧-35-35-35-35HMO-35-35-35-35-35-35-35HMO-35-35-35曞󛞟-35-35-35-35HMO-35-35-35-35-35SXZ-35-35/57-35-35-35-35-35-35-35HMO-35-35-35-35-35-35_ce-35-35-35-35-35W[]-35-35-35-35HMO-35-35-356;=-35-35-35-35-35-35|swx-35-35-35-35-35-35HMO-35-35-35vz{-35-35-35-35179-358>@>CE-35-35-35-35-35-35HMO-35-35-35-35-35swyswx-35178-35-35-35-35;AC-35-35-35-35HMO-35-35-35-35-35?DF39;-35osu-35-35-35-35~-35-35-35-35HMO-35-35-35Y^_-35-35-35-35TY[-35GLN-35-35-35-35-35-35HMO-35-35-35-35-35-35-35-35-35afg-35-35갲cgiRWYRWXcgi|Пswx^cdNSUW[]imn-35-35-35-35Пswx^cdNSUW[]imnʉjopRWXY^_osuHMO-35-35-35-35-35?DF-35^cd-35-35179-35afgش䴶´Ӵ178-35-35-35-35-35-35-35-35-35swxRWY-35-35-35-35-35-35-35-35-35>CE-35-35-35-35RWY-35-35-35-35-35-35-35-35-35>CEJOQ-35-35-35-35-35-35-35-35fklHMO-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35koq>CE-356;=-35-35BGI-356;=-35-359?@-35-35-35{-35-35-35-35-35-35-35-35-35-35-35-35-35[`b-35-35-35-35{-35-35-35-35-35-35-35-35-35-35-35-35-35[`b-35-35-35-35-35-35-35-35-35-35-3539;HMO-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35koq-35-35-35-35-35-35-35-35-35-35-35-35?DF-35-35-3539;imn-35-35-35.46-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35;@B-35-35-35-35-35@FHX]_W\^;@B-35-35-35-35-35178jop-35-35-35-35-359?@cgiosu`ef6;=-35-35-35-35-35X]_-35-35-35-35jop-35-35-35-35-359?@cgiosu`ef6;=-35-35-35-35-35X]_-35-35-35-35-35-35-35-35-35-35[`b-35-35-35-35_ce39;-35-35-35imn8>@-35-35-35~-35-35-35-35]bc-35-35-35-35~-35-35-35-35-35-35-35-35nrs@-35-35-35PUW-35-35-35-35-35-356;=6;=-35-35-35;@B-35-35-35]bc?DF-35-35-35imnDJK-35-35-35-35-35-35-35x|}-35-35-35LQS-35-35-35-35-35-35-35-35-35-35-35-35.46-35-35-35swyHMO-35-35-35PUW-35-35-35-35-35-356;=-35-35-35-35~-35-35-35178-35-35-35.46-35-35-35-35-35-35-35-35`ef-35-35-35-35178-35-35-35-35-35-35-35178-35-35-35-35-35-35-35HMO-35-35-35PUW-35-35-35-35-35-356;=cgi-35-35-35[_a-35-35-35-35-35-35-35-35-35-35-35BGI4:<-35-35-35@-35-35-35-35-35-35-35@FHcgi-35-35-35gkmeij-35-35-3539;-35-35-35>CE❟TY[-35-35-35-35-35-35-35-35-35-35-35-35-35-35_ce178-35-35-35-35-35-35-35-35-35-35-35-35_ce178-35-35-35-35-35-35OTVHMO-35-35-35PUW-35-35-35-35-35-356;=-35-35179swx-35-35-35-35-35DJK-35-35-35-35-35-35-35-35-35.46-35-35-35RWX-35-35-35-35W\^-35-35-35-35-35-35dhj.46-35-35-35RWY178-35-35-35-35-35-35-35.46-35-35-35RWY178-35-35-35-35-35-35@FHHMO-35-35-35PUW-35-35-35-35-35-356;=.46-35-3539;-35-35-35-35-35-35-35-35-35-35-35@FH178-35-35-35-35-35-35TY[~-35-35-35-35嗚6;=-35-35-35-35quv-35-35-35EKL178-35-35-35-35-35-35-35quv-35-35-35EKL178-35-35-35-35-35-35.46HMO-35-35-35PUW-35-35-35-35-35-356;=dhj-35-35-35-35-35-35GLNLQS-35-35DJK-35-35-35-35-35-35-35y}~vz{-35-35-35gkmtxy-35-35-35-35-35-35-35dhj8>@-35-35-35;AC/57-35-35-35178-35-35-35-35-35-35-35/57-35-35-35178-35-35-35-35-35-35-35HMO-35-35-35PUW-35-35-35-35-35-356;=-35-35-35-35{-35-35-35-35178-35-35-354:<-35-35-35-35-35-35-35-3539;-35-35-3539;-35-35-35?DF-35-35-35-35-35-35-35-35178-35-35-35-35-35-35-35-35-35-35-35178-35-35-35-35-35-35-35HMO-35-35-35PUW-35-35-35-35-35-356;=-35-35LQS?DF-35[`b-35-35-35-35lpr-35-35-35-35nst-35-35-35@FH;@B-35-35-35-35-35-35_ceRWX-35-35-35-35-35-35-35@-35-35-35-35-35-35-35gkm-35-35-35-35}-35-35-35.46-35-35-35-35RWX-35-35-35-35-35-35-35-35-35-35-35-35-35RWX-35-35-35-35-35178-35-35-35EKL>CE-35-35-35-35PUW-35-35-35-35-35-35-35-35-35PUW-35JOQ-35-35;@B-35NSU-35-35-35-35RWX-35-35-35@FHJOQ-35-35-35-35-35-35imn39;-35-35-35AGH-35-35-35-35.46-35-35-35ptvhln-35-35-35-35rvwx{}-35-35-35-35-35-35-35-35-35-35hln-35-35-35-35rvwx{}-35-35-35-35-35-35-35-35-35-35UZ[;AC-35-35-35-35-35PUW-35-35-35-35-35-35-35179-35INO-35-354:<-35INO-35-35HMO-35-35-35>CE-35-35-35-35{-35-35-35-35-35-35PUW-35-35-35-35EKL-35-35-35-356<>̦]bc-35-35-35-35178-35-35-35-35-358>@~hln-35-35-35-35-35-35-35-35|-35-35-35-35-35-35-35-35-358>@~hln-35-35-35-35-35-35-35-35|RWX-35-35-35-35.46ptvSXZ-35-35-35-35-35-35-35PUW-35-35-35-35-35-35-35-35Y^_lprptv-35-35-35-35x{}-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35/57-35-35-35-35;ACvz{vz{vz{vz{vz{vz{vz{vz{vz{vz{vz{vz{vz{vz{vz{-35-35-35-35cgi;AC-35-35-35@FH\ab-35-35-35-35swx\ab-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35]bc-35-35-35-35-35-35-35-35-35-35-35-35INO.46-35-35-35-35-35-35-35-35-35/57-35-35-35-35-35-35-35-35.46-35-35-35-35-35-35-35-35-35/57-35-35-35-35[_a-35-35-35-35-35-35-35-35-35-35koq񉌍-35-35-35PUW-35-35-35OTV-35-35-35-35-35-35-35-35-35-35.46-35-35x{}INO-35-35-35/57-35-35-35-35{-35-35-35-35\ab-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35hln/57-35-35-35-35-35-35-35UZ[x|}/57-35-35-35-35-356;=~-35-35-35-35-35-35-35-35x|}/57-35-35-35-35-356;=~-35-35-35-35MRS-35-35-35-35-35-35_ce-35-35-35PUW-35-35-35󐓔6<>-35-35-35-35EKLSXZ-35-35eij-35-35-35-35-35-35afg-35-35-35-35-35-35-354:<\ab-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35-35ҽηη®-35-35-35||-35-35-3539;-35-35;@B-35-35-35DIK-35-35-35ino-35-35-35]bcʴ6<>-35-35-35-35> +stream +true @cmapcvt =O;fpgm\glyfX h&|head026hheahy3$hmtx }3@locan&3Fmaxp9X4 name?H40 vpostd$? prepLb?  +  !H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'TsL 6@  _Y _Y?@ qq^]?+?+99331032#"! ! %DL"CA]@_   PYRY  PY 9@0 p`@p` ]]]]]]qqqqrrrrr^]]]]q?+?3+3?3+39933310327'5!!'#"'5!9|l3wG?x --L'9f-y @   [?+9310%#"&54632yE44EF33F\1HH13FFH_@   `Y _Y +tdTD4$tdTD4$9tTD4$pP@0 pPO]]]]]]]]qqqqqqqqqq_qqrrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqq?3+333?339/3+.3939939910%!573!57!!Gɾ۪ɴ55555}huHq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nJb=  @ _Y_Y  p d T D         T D 4 $        p ` T D 0 $   ;    t d D 4       ` P 0       ]]]]qqqqqqqq_qqrrrrrrrrr^]]]]]]]]]]]]]]]qqqqqqqqqrrrrrrrrr?+3?+3910%!57'5!謬P5555/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!XF'4@@,//>8( &# AB5PY++ +&# + +  ;PY 2PYBBBBtBdBTBDB4B$BBBBBBBBBBtBdBTBDB$BBBBBBBBBBBdBDB4B$BBB9BBBBBBdBTBDB4B$BBBBBBBtBdBTB@B4B BBBB@"BBBBBBBpB`B0B B]]]]]]]]]]]]qq_qqqqqqqqqqqrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqqqqqqqqqqqqrrrrrrrrrrrr?+?+99//933+9333333310#"'3!2#"&5467.57&5463274&#!3262654&#"f¶RF?H6uH`9Nú%t#C)FG*5|m[^hib`tiUvm5gE\5Jٚ +o+Kl9@$o0VK|u}qrx@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--;=W@0 _Y  _Y ?@ ]]qr^]?33+3?33+3399333310'5!#!57'5!ɬaŴ755555o@  PY  tdTD4$tdTD4$tdTD4$9tdTD4$tdTD0 p`]]_]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrr?33^]?3+333993310#'5! '5!-J}`\Zz--w--;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u&_<DF!EW"9P)T9+?Nj%9s;9+9)JTHJ/!X;;s;^"$H ` F +\ + 4 ~  \ .">"A/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +36 0 obj +17240 +endobj + +37 0 obj +<< + /Length1 11088 + /Length 38 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +38 0 obj +11088 +endobj + +xref +0 39 +0000000000 65535 f +0000000025 00000 n +0000000158 00000 n +0000000389 00000 n +0000000785 00000 n +0000000902 00000 n +0000000959 00000 n +0000001000 00000 n +0000004777 00000 n +0000004821 00000 n +0000006061 00000 n +0000006083 00000 n +0000006540 00000 n +0000008456 00000 n +0000008824 00000 n +0000008915 00000 n +0000009220 00000 n +0000009663 00000 n +0000009906 00000 n +0000010677 00000 n +0000010698 00000 n +0000010913 00000 n +0000011155 00000 n +0000011794 00000 n +0000011838 00000 n +0000014551 00000 n +0000014573 00000 n +0000014673 00000 n +0000014732 00000 n +0000014774 00000 n +0000016606 00000 n +0000016651 00000 n +0000017391 00000 n +0000017412 00000 n +0000212295 00000 n +0000212319 00000 n +0000229655 00000 n +0000229678 00000 n +0000240862 00000 n +trailer << + /DocChecksum /74403ED4C05B5A117BE5EAA1AB10833F + /Info 2 0 R + /Root 1 0 R + /Size 39 + /ID [<31415926535897932384626433832795>] +>> +startxref +240885 +%%EOF diff --git a/qpdf/qtest/qpdf/form-filled-by-acrobat.pdf b/qpdf/qtest/qpdf/form-filled-by-acrobat.pdf new file mode 100644 index 00000000..e6fc28e5 --- /dev/null +++ b/qpdf/qtest/qpdf/form-filled-by-acrobat.pdf @@ -0,0 +1,2500 @@ +%PDF-1.4 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm << + /DR 3 0 R + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + ] + /NeedAppearances true + >> + /Lang (en-US) + /OpenAction [ + 11 0 R + /XYZ + null + null + 0 + ] + /Pages 12 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /CreationDate (D:20180620163028-04'00') + /Creator + /Producer +>> +endobj + +3 0 obj +<< + /Font 13 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +4 0 obj +<< + /AP << + /N 14 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 13 0 R + >> + /DV + /F 4 + /FT /Tx + /P 11 0 R + /Rect [ + 123.4 + 692.1 + 260.9 + 706.7 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +5 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 16 0 R + 17 0 R + 18 0 R + ] + /P 11 0 R + /T (r1) + /V /1 +>> +endobj + +6 0 obj +<< + /AP << + /N << + /Off 19 0 R + /Yes 21 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 11 0 R + /Rect [ + 121.9 + 559.1 + 134.2 + 571 + ] + /Subtype /Widget + /T (Check Box 1) + /Type /Annot + /V /Off +>> +endobj + +7 0 obj +<< + /AP << + /N << + /Off 24 0 R + /Yes 26 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 11 0 R + /Rect [ + 118.6 + 527.7 + 130.9 + 539.6 + ] + /Subtype /Widget + /T (Check Box 2) + /Type /Annot + /V /Yes +>> +endobj + +8 0 obj +<< + /AP << + /N << + /Off 28 0 R + /Yes 30 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 11 0 R + /Rect [ + 118.6 + 500.5 + 130.9 + 512.4 + ] + /Subtype /Widget + /T (Check Box 3) + /Type /Annot + /V /Off +>> +endobj + +9 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 32 0 R + 33 0 R + 34 0 R + ] + /P 35 0 R + /T (r2) + /V /2 +>> +endobj + +10 0 obj +<< + /AP << + /N 36 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 13 0 R + >> + /DV + /F 4 + /FT /Tx + /P 35 0 R + /Rect [ + 113.6 + 378.5 + 351.3 + 396.3 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Page 1 +11 0 obj +<< + /Annots [ + 4 0 R + 16 0 R + 17 0 R + 18 0 R + 6 0 R + 7 0 R + 8 0 R + ] + /Contents 38 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 12 0 R + /Resources 3 0 R + /Type /Page +>> +endobj + +12 0 obj +<< + /Count 3 + /Kids [ + 11 0 R + 40 0 R + 35 0 R + ] + /MediaBox [ + 0 + 0 + 611 + 791 + ] + /Resources 3 0 R + /Type /Pages +>> +endobj + +13 0 obj +<< + /F1 41 0 R + /F2 42 0 R + /F3 43 0 R + /ZaDi 23 0 R +>> +endobj + +14 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 15 0 R +>> +stream +/Tx BMC +%5 w +%q 1 0 0 rg 0 1 0 RG +%0 0 137.3 14.8 re f +%0 0 137.3 14.8 re s +%Q +0.18039 0.20392 0.21176 rg /F2 12 Tf +BT 0 0 Td (potato) Tj ET +EMC +endstream +endobj + +15 0 obj +145 +endobj + +16 0 obj +<< + /AP << + /N << + /1 44 0 R + /Off 46 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 11 0 R + /Parent 5 0 R + /Rect [ + 149.3 + 648.5 + 161.6 + 660.4 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +17 0 obj +<< + /AP << + /N << + /2 48 0 R + /Off 50 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 11 0 R + /Parent 5 0 R + /Rect [ + 152.7 + 627.3 + 165 + 639.2 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +18 0 obj +<< + /AP << + /N << + /3 52 0 R + /Off 54 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 11 0 R + /Parent 5 0 R + /Rect [ + 151.3 + 601.7 + 163.6 + 613.6 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +19 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 20 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +20 0 obj +12 +endobj + +21 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 22 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +22 0 obj +81 +endobj + +23 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +24 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 25 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +25 0 obj +12 +endobj + +26 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 27 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +27 0 obj +81 +endobj + +28 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 29 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +29 0 obj +12 +endobj + +30 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +31 0 obj +81 +endobj + +32 0 obj +<< + /AP << + /N << + /1 56 0 R + /Off 58 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 35 0 R + /Parent 9 0 R + /Rect [ + 118.6 + 555.7 + 130.9 + 567.6 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +33 0 obj +<< + /AP << + /N << + /2 60 0 R + /Off 62 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 35 0 R + /Parent 9 0 R + /Rect [ + 119.3 + 514.8 + 131.6 + 526.7 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +34 0 obj +<< + /AP << + /N << + /3 64 0 R + /Off 66 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 23 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 35 0 R + /Parent 9 0 R + /Rect [ + 121.3 + 472.5 + 133.6 + 484.4 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Page 3 +35 0 obj +<< + /Annots [ + 32 0 R + 33 0 R + 34 0 R + 10 0 R + ] + /Contents 68 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 12 0 R + /Resources 3 0 R + /Type /Page +>> +endobj + +36 0 obj +<< + /BBox [ + 0 + 0 + 237.5 + 18 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 37 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +37 0 obj +12 +endobj + +%% Contents for page 1 +38 0 obj +<< + /Length 39 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf[<01>1<0203>1<04>-8<03>1<05>58<06>-2<0708>2<09070a0b0408>2(\f)]TJ +ET +Q +q 0 0 0 rg +BT +56.8 695.6 Td /F1 12 Tf[(\r)68<03>1<0e0f>-5<0710>-1<11>2<03>1<12>2<130707070707>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 666.2 Td /F1 12 Tf[<14>-2<0f>2<0203>1<04>-8<0706>-2<0f>2<15>8(\n)16<0a16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 450.3 Td /F1 12 Tf[<17>-2<1306>-2<18>1<130a18>1<06>-2<130a>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 424.9 Td /F1 12 Tf[<0203>1<0403>-6<05>58<06>-2<0706>6<0b08>-5<03>1<0708>2<0b0403>-6<0706>-2<0f>2<15>8(\n)16<0a0718>1(\n)-8<0f>2<03>1<04>58<16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 399.5 Td /F1 12 Tf[<19071a03>1<03>1<13>-7<0718>1<1a0b0f>2<0203>1<04>-8<071b18>1<1c03>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 386.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 374.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 361.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 348.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 336 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 323.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 310.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 297.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 285.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 272.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 259.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 247.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 234.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 221.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 209 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 196.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 183.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 170.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 158.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 145.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 132.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 120.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 107.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 94.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 82 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 69.3 Td /F1 12 Tf<1d>Tj +ET +Q +0 0 0 RG +1 1 1 rg +120.5 689 143.3 20.8 re B* +148.2 642.5 183.5 23.9 re f* +q 1.2 w 0 0 0 RG +155.4 660.4 m 158.7 660.4 161.4 657.8 161.4 654.4 c +161.4 651.1 158.7 648.4 155.4 648.4 c +152 648.4 149.4 651.1 149.4 654.4 c +149.4 657.8 152 660.4 155.4 660.4 c s + Q +q 166.2 642.5 164.3 23.9 re W* n +q 0.18039 0.20392 0.21176 rg +BT +166.2 651.3 Td /F3 12 Tf[<0102>-1<0304>]TJ +ET +Q +Q +1 1 1 rg +151.6 624.7 125.5 17.1 re f* +q 1.2 w 0 0 0 RG +158.8 639.2 m 162.1 639.2 164.8 636.6 164.8 633.2 c +164.8 629.9 162.1 627.2 158.8 627.2 c +155.4 627.2 152.8 629.9 152.8 633.2 c +152.8 636.6 155.4 639.2 158.8 639.2 c s + Q +q 169.6 624.7 106.3 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 630.1 Td /F3 12 Tf[<0102>-1<0305>]TJ +ET +Q +Q +1 1 1 rg +150.2 600.8 118.7 13.7 re f* +q 1.2 w 0 0 0 RG +157.4 613.6 m 160.8 613.6 163.5 611 163.5 607.6 c +163.5 604.3 160.8 601.6 157.4 601.6 c +154.1 601.6 151.4 604.3 151.4 607.6 c +151.4 611 154.1 613.6 157.4 613.6 c s + Q +q 168.3 600.8 99.5 13.7 re W* n +q 0.18039 0.20392 0.21176 rg +BT +168.3 604.5 Td /F3 12 Tf[<0102>-1<0306>]TJ +ET +Q +Q +1 1 1 rg +120.8 549 86.7 32.1 re f* +q 1.2 w 0 0 0 RG +122 559 12.1 12.1 re S + Q +q 138.9 549 67.5 32.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +138.9 562 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ +ET +Q +Q +1 1 1 rg +117.5 523.1 85.3 21.2 re f* +q 1.2 w 0 0 0 RG +118.7 527.6 12.1 12.1 re S + Q +q 135.5 523.1 66.1 21.2 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 530.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ +ET +Q +Q +1 1 1 rg +117.5 497.9 72.4 17.1 re f* +q 1.2 w 0 0 0 RG +118.7 500.4 12.1 12.1 re S + Q +q 135.5 497.9 53.2 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 503.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ +ET +Q +Q +Q +endstream +endobj + +%QDF: ignore_newline +39 0 obj +3700 +endobj + +%% Page 2 +40 0 obj +<< + /Contents 70 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 611.971653543307 + 791.971653543307 + ] + /Parent 12 0 R + /Resources 3 0 R + /Type /Page +>> +endobj + +41 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 72 0 R + /LastChar 33 + /Subtype /TrueType + /ToUnicode 73 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 722 + 500 + 250 + 722 + 443 + 333 + 500 + 500 + 500 + 722 + 722 + 500 + 610 + 556 + ] +>> +endobj + +42 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 75 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +43 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 76 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 77 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +44 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC +endstream +endobj + +45 0 obj +205 +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +47 0 obj +12 +endobj + +48 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 49 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC +endstream +endobj + +49 0 obj +205 +endobj + +50 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 51 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +51 0 obj +12 +endobj + +52 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 53 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.4 8.4 8.5 7.4 8.5 6 c +8.5 4.7 7.4 3.6 6 3.6 c +4.7 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.7 8.4 6 8.4 c f* + +EMC +endstream +endobj + +53 0 obj +205 +endobj + +54 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 55 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +55 0 obj +12 +endobj + +56 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 57 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC +endstream +endobj + +57 0 obj +205 +endobj + +58 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 59 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +59 0 obj +12 +endobj + +60 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 61 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC +endstream +endobj + +61 0 obj +205 +endobj + +62 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 63 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +63 0 obj +12 +endobj + +64 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 65 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.1 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.3 8.4 8.4 7.4 8.4 6 c +8.4 4.7 7.3 3.6 6 3.6 c +4.6 3.6 3.6 4.7 3.6 6 c +3.6 7.4 4.6 8.4 6 8.4 c f* + +EMC +endstream +endobj + +65 0 obj +205 +endobj + +66 0 obj +<< + /BBox [ + 0 + 0 + 12.1 + 12.1 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +67 0 obj +12 +endobj + +%% Contents for page 3 +68 0 obj +<< + /Length 69 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 712.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 699.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 687 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 648.9 Td /F1 12 Tf[<1e>-2<0b1d>-2<0719070218>1<1f03>1<0718>1<070f>2<02>-7<11>2<0413071b18>1<1c03>1<16>-7<0720>2<03>1<0f>2<05>58<06>-2<071b150f>-5<0706>-2<0f>2<150a>16<0a070203>1<0403>1<070f>2<0b0b16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 382.2 Td /F1 12 Tf[(!)-1<0b0f>2<18>1<0f>2<0b>]TJ +ET +Q +1 1 1 rg +117.5 546.2 169.2 30.8 re f* +q 1.2 w 0 0 0 RG +124.7 567.6 m 128 567.6 130.7 565 130.7 561.6 c +130.7 558.3 128 555.6 124.7 555.6 c +121.3 555.6 118.7 558.3 118.7 561.6 c +118.7 565 121.3 567.6 124.7 567.6 c s + Q +q 135.5 546.2 150 30.8 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 558.5 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ +ET +Q +Q +1 1 1 rg +118.2 505.3 180.7 30.8 re f* +q 1.2 w 0 0 0 RG +125.4 526.7 m 128.7 526.7 131.4 524.1 131.4 520.7 c +131.4 517.4 128.7 514.7 125.4 514.7 c +122 514.7 119.4 517.4 119.4 520.7 c +119.4 524.1 122 526.7 125.4 526.7 c s + Q +q 136.2 505.3 161.5 30.8 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 517.6 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ +ET +Q +Q +1 1 1 rg +120.2 461.7 139.2 33.5 re f* +q 1.2 w 0 0 0 RG +127.4 484.4 m 130.7 484.4 133.4 481.8 133.4 478.4 c +133.4 475.1 130.7 472.4 127.4 472.4 c +124 472.4 121.4 475.1 121.4 478.4 c +121.4 481.8 124 484.4 127.4 484.4 c s + Q +q 138.2 461.7 120 33.5 re W* n +q 0.18039 0.20392 0.21176 rg +BT +138.2 475.3 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ +ET +Q +Q +0 0 0 RG +1 1 1 rg +110.7 375.4 243.5 24 re B* +Q +endstream +endobj + +%QDF: ignore_newline +69 0 obj +1753 +endobj + +%% Contents for page 2 +70 0 obj +<< + /Length 71 0 R +>> +stream +0.1 w +q 0 0 612 792 re +W* n +q 0 0 0 rg +BT +56.8 725.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 699.7 Td /F1 12 Tf[(\r)2<0203>1<04>-8<03>1<0718>1<0403>-6<071a0b070a11>2<03>1<12>2<1306>-2<070b1a070f>2<0211>2<06>-10<071b18>1<1c03>1<16>]TJ +ET +Q +q 0 0 0 rg +BT +56.8 674.3 Td /F1 12 Tf<01>Tj +ET +Q +q 0 0 0 rg +BT +56.8 661.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 648.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 636.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 623.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 610.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 598.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 585.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 572.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 560 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 547.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 534.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 521.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 509.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 496.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 483.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 471.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 458.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 445.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 433 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 420.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 407.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 394.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 382.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 369.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 356.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 344.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 331.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 318.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 306 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 293.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 280.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 267.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 255.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 242.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 229.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 217.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 204.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 191.7 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 179 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 166.3 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 153.6 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 140.9 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 128.2 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 115.5 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 102.8 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 90.1 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 77.4 Td /F1 12 Tf<1d>Tj +ET +Q +q 0 0 0 rg +BT +56.8 64.7 Td /F1 12 Tf<1d>Tj +ET +Q +Q +endstream +endobj + +%QDF: ignore_newline +71 0 obj +2634 +endobj + +72 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 79 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +73 0 obj +<< + /Length 74 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +33 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <004F> +<15> <0075> +<16> <002E> +<17> <0041> +<18> <0061> +<19> <0049> +<1A> <006E> +<1B> <0070> +<1C> <0067> +<1D> <0077> +<1E> <004E> +<1F> <0076> +<20> <004C> +<21> <0050> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +74 0 obj +714 +endobj + +75 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +76 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 81 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +77 0 obj +<< + /Length 78 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +78 0 obj +582 +endobj + +79 0 obj +<< + /Length1 17240 + /Length 80 0 R +>> +stream +true @cmapcvt =O;fpgm\glyfX h&|head026hheahy3$hmtx }3@locan&3Fmaxp9X4 name?H40 vpostd$? prepLb?  +  !H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'TsL 6@  _Y _Y?@ qq^]?+?+99331032#"! ! %DL"CA]@_   PYRY  PY 9@0 p`@p` ]]]]]]qqqqrrrrr^]]]]q?+?3+3?3+39933310327'5!!'#"'5!9|l3wG?x --L'9f-y @   [?+9310%#"&54632yE44EF33F\1HH13FFH_@   `Y _Y +tdTD4$tdTD4$9tTD4$pP@0 pPO]]]]]]]]qqqqqqqqqq_qqrrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqq?3+333?339/3+.3939939910%!573!57!!Gɾ۪ɴ55555}huHq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nJb=  @ _Y_Y  p d T D         T D 4 $        p ` T D 0 $   ;    t d D 4       ` P 0       ]]]]qqqqqqqq_qqrrrrrrrrr^]]]]]]]]]]]]]]]qqqqqqqqqrrrrrrrrr?+3?+3910%!57'5!謬P5555/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!XF'4@@,//>8( &# AB5PY++ +&# + +  ;PY 2PYBBBBtBdBTBDB4B$BBBBBBBBBBtBdBTBDB$BBBBBBBBBBBdBDB4B$BBB9BBBBBBdBTBDB4B$BBBBBBBtBdBTB@B4B BBBB@"BBBBBBBpB`B0B B]]]]]]]]]]]]qq_qqqqqqqqqqqrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqqqqqqqqqqqqrrrrrrrrrrrr?+?+99//933+9333333310#"'3!2#"&5467.57&5463274&#!3262654&#"f¶RF?H6uH`9Nú%t#C)FG*5|m[^hib`tiUvm5gE\5Jٚ +o+Kl9@$o0VK|u}qrx@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--;=W@0 _Y  _Y ?@ ]]qr^]?33+3?33+3399333310'5!#!57'5!ɬaŴ755555o@  PY  tdTD4$tdTD4$tdTD4$9tdTD4$tdTD0 p`]]_]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrr?33^]?3+333993310#'5! '5!-J}`\Zz--w--;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u&_<DF!EW"9P)T9+?Nj%9s;9+9)JTHJ/!X;;s;^"$H ` F +\ + 4 ~  \ .">"A/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +80 0 obj +17240 +endobj + +81 0 obj +<< + /Length1 11088 + /Length 82 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +82 0 obj +11088 +endobj + +xref +0 83 +0000000000 65535 f +0000000025 00000 n +0000000325 00000 n +0000000510 00000 n +0000000583 00000 n +0000000881 00000 n +0000001012 00000 n +0000001393 00000 n +0000001776 00000 n +0000002159 00000 n +0000002290 00000 n +0000002651 00000 n +0000002973 00000 n +0000003134 00000 n +0000003211 00000 n +0000003511 00000 n +0000003532 00000 n +0000003888 00000 n +0000004244 00000 n +0000004602 00000 n +0000004768 00000 n +0000004788 00000 n +0000005023 00000 n +0000005043 00000 n +0000005124 00000 n +0000005290 00000 n +0000005310 00000 n +0000005545 00000 n +0000005565 00000 n +0000005731 00000 n +0000005751 00000 n +0000005986 00000 n +0000006006 00000 n +0000006364 00000 n +0000006720 00000 n +0000007088 00000 n +0000007381 00000 n +0000007546 00000 n +0000007589 00000 n +0000011368 00000 n +0000011400 00000 n +0000011633 00000 n +0000012090 00000 n +0000014006 00000 n +0000014374 00000 n +0000014733 00000 n +0000014754 00000 n +0000014920 00000 n +0000014940 00000 n +0000015299 00000 n +0000015320 00000 n +0000015486 00000 n +0000015506 00000 n +0000015865 00000 n +0000015886 00000 n +0000016052 00000 n +0000016072 00000 n +0000016431 00000 n +0000016452 00000 n +0000016618 00000 n +0000016638 00000 n +0000016997 00000 n +0000017018 00000 n +0000017184 00000 n +0000017204 00000 n +0000017563 00000 n +0000017584 00000 n +0000017750 00000 n +0000017793 00000 n +0000019625 00000 n +0000019670 00000 n +0000022383 00000 n +0000022405 00000 n +0000022648 00000 n +0000023419 00000 n +0000023440 00000 n +0000023655 00000 n +0000023897 00000 n +0000024536 00000 n +0000024557 00000 n +0000041893 00000 n +0000041916 00000 n +0000053100 00000 n +trailer << + /DocChecksum /74403ED4C05B5A117BE5EAA1AB10833F + /Info 2 0 R + /Root 1 0 R + /Size 83 + /ID [] +>> +startxref +53123 +%%EOF +1 0 obj +<>/Lang(en-US)/OpenAction[ 11 0 R/XYZ null null 0]/Pages 12 0 R/Type/Catalog>> +endobj +2 0 obj +</Producer/ModDate(D:20181224003244Z00'00)>> +endobj +4 0 obj +<>/DA(0.18039 0.20392 0.21176 rg /F2 12 Tf)/DR<>/DV/F 4/FT/Tx/P 11 0 R/Rect[ 123.400002 692.099976 260.899994 706.700012]/Subtype/Widget/T(Text Box 1)/Type/Annot/V<61626320706F7461746F>>> +endobj +10 0 obj +<>/DA(0.18039 0.20392 0.21176 rg /F2 12 Tf)/DR<>/DV/F 4/FT/Tx/P 35 0 R/Rect[ 113.599998 378.5 351.299988 396.299988]/Subtype/Widget/T(Text Box 2)/Type/Annot/V>> +endobj +83 0 obj +<>/ProcSet[/PDF/Text]>>>> +stream +x +@D)ܽk^mB ,~+p3Lb_VmMRҫD$o8 H.vE8A/$yydxDC.ėڟu#iiM{1д5~ +endstream +endobj +84 0 obj +<>>>>> +stream +x*22630R0BCS=sBs|=s \ +endstream +endobj +85 0 obj +<> +stream +xWxV." ViYE"b•U1p * +T Qi  Q`[/C`9u8CWuUM|xFDtKI$:0ޛ7qHw޳t?[;CnKѱq,eeg㚺:~bj*=gWY(,yIqxaF޾!7 [ZZq/_q,qTB"?Cn.+=x646Qݼ-X\>i.!7ݺxN9ˏ_;tuuZ~3zZ\l^ 7]ƕc7#vkXUPTĎm'Nhb]}=:߀55X ivr>ؼ=89%Ո-ZON'Z{._Pđ`Dnz CX BQ1KJt:/cb~jSIϞi'&ldx{<9Mgǔy=}K+*Դ'NaՊFcuM`X=چZY,W~3,U ,REEfTے+**+L:lDZ^XP‚a)e%1̻w'8>9:)NgQ.^^=*`Ц[>}۵6}=4 +KJx$6hν\[GgmU:5A,x[֫3 +[҇?@e.e\:Pf~C^᛿DU"뇱V߿WnWIZX*+>˳=~bJ?Sh]lE߼Wy{(<#6ǾF}D?Ջeљ,f>Lç%z. {.L֬[Ps +mq}ܼ ~=}`OOO铛Ha@.&<d84Af]\י j4, I\49{7ю1wzVeܠZ3nt=g錦16t eJJKi+>2闯.Q|%Ć<]v}8[;Ǟ:-/0;f*7Ao!Z|l$oꝑ+ +8NfU! +S4uu`S?wР0j{ jT\m˱o]䄆,&Ns8e +=3Rxx=S<6ɾNfPׅQmF7^|ŴntGEy2Wnb4e1|=u&|EPjNOH)UմZ*~1N0Vi=޾U_gF=dfdznFj.* KJK=~Iz/\aww7?Ҡ[UW21q*O'Jf$]Ѝ˿gǐdsOo +QŚuCA ;e)Ef ( E,w7bpvXIm-Ngb=i1pS +wr+i6Y'NƨK:O~۷ԟ`vU1qt<xL)Iy/߸ )-+gj4"kN ޵[E帍 l^]`.XPT$_L)SY znCc#?DyRiTyN +so:By::;g?{NCY3uѰ#B=Ԉ ?~[ξ +>.ʋ;&_I=o^ɼ&kF]lz DFEWXb$Ǐ5%7oS#6g/gj?w.)3Moי ---t'6l٪u7Ō߃6m)'Ff݂FJ/Iɽ,=Z8|q:M譜biY <1)IRۮȦm xfSSӨsWlLY{dw\݌2dRJn^=Qr'VM=&7]btI++j4=7{}UeA8 >y#jOO/sx 3&ʿ_]z)oW( gU#ლ:;f)i@㫦vM! +ެIXr|vN//,D,)-U6.FT| u:zZu^)k^}?SLy ->G}47nݦYKع'T{jjؼ=~ON,d)i2Z^ghnZzrm44:FN'2yw*יK[~2.^c=^侃ߣO|ǜ|o޾ \_WUWh'OEdlЩ@ϢӢz)|%I^l ޡ\>X(X+#bF1O]A;{<-RTLؠAP4::eUa5'9[$?{mJ!1qn3u:˺ϳSRo!{ϟ?i!*'hZH+e/QQYIoO2`ew mn˱--=ubKWY^^[Fi< +?rT^Q(sd -6wWҕYdc;qa sn{bd\5A2ݖtI)oKY+$cӺ'fQ⥝@ab5zzC(+*+Y욒vJ浿746gCƟ`lExy`FtDt---bo[GSCY;߹fi."=Ux 1(^~˙%/=xh|5` &#`Q!2qT~9yneގ8koi>/ +endstream +endobj +xref +1 2 +0000054994 00000 n +0000055162 00000 n +4 1 +0000055365 00000 n +10 1 +0000055604 00000 n +83 3 +0000055903 00000 n +0000056241 00000 n +0000056487 00000 n +trailer +<<50821D3D3E2C8D1472BE0C6CAC732055>]/Prev 53123>> +startxref +61484 +%%EOF diff --git a/qpdf/qtest/qpdf/manual-appearances-out.pdf b/qpdf/qtest/qpdf/manual-appearances-out.pdf new file mode 100644 index 00000000..5ddddfc5 --- /dev/null +++ b/qpdf/qtest/qpdf/manual-appearances-out.pdf @@ -0,0 +1,1445 @@ +%PDF-1.5 +% +%QDF-1.0 + +1 0 obj +<< + /Lang (en-US) + /MarkInfo << + /Marked true + >> + /OpenAction [ + 3 0 R + /XYZ + null + null + 0 + ] + /Pages 4 0 R + /StructTreeRoot 5 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /CreationDate (D:20181224113354-05'00') + /Creator + /Producer +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents [ + 6 0 R + 8 0 R + 10 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 12 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +4 0 obj +<< + /Count 9 + /Kids [ + 3 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + ] + /Type /Pages +>> +endobj + +5 0 obj +<< + /K [ + 21 0 R + ] + /ParentTree 22 0 R + /RoleMap << + /Document /Document + /Standard /P + >> + /Type /StructTreeRoot +>> +endobj + +%% Contents for page 1 +6 0 obj +<< + /Length 7 0 R +>> +stream +q +endstream +endobj + +7 0 obj +2 +endobj + +%% Contents for page 1 +8 0 obj +<< + /Length 9 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +9 0 obj +240 +endobj + +%% Contents for page 1 +10 0 obj +<< + /Length 11 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +11 0 obj +491 +endobj + +12 0 obj +<< +>> +endobj + +%% Page 2 +13 0 obj +<< + /Contents [ + 23 0 R + 25 0 R + 27 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 29 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 3 +14 0 obj +<< + /Contents [ + 30 0 R + 32 0 R + 34 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 36 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 4 +15 0 obj +<< + /Contents [ + 37 0 R + 39 0 R + 41 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 43 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 5 +16 0 obj +<< + /Contents [ + 44 0 R + 46 0 R + 48 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 50 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 180 + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 6 +17 0 obj +<< + /Contents [ + 51 0 R + 53 0 R + 55 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 57 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 7 +18 0 obj +<< + /Contents [ + 58 0 R + 60 0 R + 62 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 64 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 8 +19 0 obj +<< + /Contents [ + 65 0 R + 67 0 R + 69 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 71 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 270 + /StructParents 0 + /Type /Page +>> +endobj + +%% Page 9 +20 0 obj +<< + /Contents [ + 72 0 R + 74 0 R + 76 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font 78 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +21 0 obj +<< + /K [ + 79 0 R + 80 0 R + 81 0 R + 82 0 R + ] + /P 5 0 R + /Pg 3 0 R + /S /Document + /Type /StructElem +>> +endobj + +22 0 obj +<< + /Nums [ + 0 + [ + 80 0 R + 81 0 R + 82 0 R + ] + ] +>> +endobj + +%% Contents for page 2 +23 0 obj +<< + /Length 24 0 R +>> +stream +q +endstream +endobj + +24 0 obj +2 +endobj + +%% Contents for page 2 +25 0 obj +<< + /Length 26 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +26 0 obj +240 +endobj + +%% Contents for page 2 +27 0 obj +<< + /Length 28 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +0.00000 1.00003 -0.99998 0.00000 392.14700 528.24900 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +28 0 obj +487 +endobj + +29 0 obj +<< +>> +endobj + +%% Contents for page 3 +30 0 obj +<< + /Length 31 0 R +>> +stream +q +endstream +endobj + +31 0 obj +2 +endobj + +%% Contents for page 3 +32 0 obj +<< + /Length 33 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +33 0 obj +240 +endobj + +%% Contents for page 3 +34 0 obj +<< + /Length 35 0 R +>> +stream + +Q +q +0.65131 0.36563 -0.46062 0.51700 153.31752 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +0.88367 0.26685 0.22710 0.47909 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +35 0 obj +487 +endobj + +36 0 obj +<< +>> +endobj + +%% Contents for page 4 +37 0 obj +<< + /Length 38 0 R +>> +stream +q +endstream +endobj + +38 0 obj +2 +endobj + +%% Contents for page 4 +39 0 obj +<< + /Length 40 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +40 0 obj +240 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream + +Q +q +0.65131 0.36563 -0.46062 0.51700 153.31752 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +0.88367 0.26685 0.22710 0.47909 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +42 0 obj +492 +endobj + +43 0 obj +<< +>> +endobj + +%% Contents for page 5 +44 0 obj +<< + /Length 45 0 R +>> +stream +q +endstream +endobj + +45 0 obj +2 +endobj + +%% Contents for page 5 +46 0 obj +<< + /Length 47 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +47 0 obj +240 +endobj + +%% Contents for page 5 +48 0 obj +<< + /Length 49 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +-1.00003 0.00000 0.00000 -0.99998 294.14900 626.24700 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +49 0 obj +488 +endobj + +50 0 obj +<< +>> +endobj + +%% Contents for page 6 +51 0 obj +<< + /Length 52 0 R +>> +stream +q +endstream +endobj + +52 0 obj +2 +endobj + +%% Contents for page 6 +53 0 obj +<< + /Length 54 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +54 0 obj +240 +endobj + +%% Contents for page 6 +55 0 obj +<< + /Length 56 0 R +>> +stream + +Q +q +-0.36563 0.65131 -0.51700 -0.46062 180.79700 725.56752 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +-0.26685 0.88387 -0.47909 0.22671 182.84700 595.74900 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +0.00000 1.00003 -0.99998 0.00000 392.14700 528.24900 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +56 0 obj +492 +endobj + +57 0 obj +<< +>> +endobj + +%% Contents for page 7 +58 0 obj +<< + /Length 59 0 R +>> +stream +q +endstream +endobj + +59 0 obj +2 +endobj + +%% Contents for page 7 +60 0 obj +<< + /Length 61 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +61 0 obj +240 +endobj + +%% Contents for page 7 +62 0 obj +<< + /Length 63 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +63 0 obj +491 +endobj + +64 0 obj +<< +>> +endobj + +%% Contents for page 8 +65 0 obj +<< + /Length 66 0 R +>> +stream +q +endstream +endobj + +66 0 obj +2 +endobj + +%% Contents for page 8 +67 0 obj +<< + /Length 68 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +68 0 obj +240 +endobj + +%% Contents for page 8 +69 0 obj +<< + /Length 70 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +0.00000 -1.00003 0.99998 0.00000 196.15100 528.24900 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +70 0 obj +487 +endobj + +71 0 obj +<< +>> +endobj + +%% Contents for page 9 +72 0 obj +<< + /Length 73 0 R +>> +stream +q +endstream +endobj + +73 0 obj +2 +endobj + +%% Contents for page 9 +74 0 obj +<< + /Length 75 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +75 0 obj +240 +endobj + +%% Contents for page 9 +76 0 obj +<< + /Length 77 0 R +>> +stream + +Q +q +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm +0.00000 0.00000 67.30000 50.95000 re W n +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q + +Q +q +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm +0.00000 0.00000 103.45000 53.00000 re W n +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q + +Q +q +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm +0.00000 0.00000 72.80000 98.00000 re W n +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q + +Q +endstream +endobj + +77 0 obj +486 +endobj + +78 0 obj +<< +>> +endobj + +79 0 obj +<< + /A 83 0 R + /P 21 0 R + /Pg 3 0 R + /S /Standard + /Type /StructElem +>> +endobj + +80 0 obj +<< + /K [ + 0 + ] + /P 21 0 R + /Pg 3 0 R + /S /Form + /Type /StructElem +>> +endobj + +81 0 obj +<< + /K [ + 1 + ] + /P 21 0 R + /Pg 3 0 R + /S /Form + /Type /StructElem +>> +endobj + +82 0 obj +<< + /K [ + 2 + ] + /P 21 0 R + /Pg 3 0 R + /S /Form + /Type /StructElem +>> +endobj + +83 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +xref +0 84 +0000000000 65535 f +0000000025 00000 n +0000000219 00000 n +0000000414 00000 n +0000000731 00000 n +0000000891 00000 n +0000001063 00000 n +0000001120 00000 n +0000001161 00000 n +0000001478 00000 n +0000001521 00000 n +0000002069 00000 n +0000002090 00000 n +0000002123 00000 n +0000002466 00000 n +0000002796 00000 n +0000003139 00000 n +0000003483 00000 n +0000003826 00000 n +0000004156 00000 n +0000004500 00000 n +0000004820 00000 n +0000004956 00000 n +0000005073 00000 n +0000005132 00000 n +0000005174 00000 n +0000005493 00000 n +0000005537 00000 n +0000006081 00000 n +0000006102 00000 n +0000006148 00000 n +0000006207 00000 n +0000006249 00000 n +0000006568 00000 n +0000006612 00000 n +0000007156 00000 n +0000007177 00000 n +0000007223 00000 n +0000007282 00000 n +0000007324 00000 n +0000007643 00000 n +0000007687 00000 n +0000008236 00000 n +0000008257 00000 n +0000008303 00000 n +0000008362 00000 n +0000008404 00000 n +0000008723 00000 n +0000008767 00000 n +0000009312 00000 n +0000009333 00000 n +0000009379 00000 n +0000009438 00000 n +0000009480 00000 n +0000009799 00000 n +0000009843 00000 n +0000010392 00000 n +0000010413 00000 n +0000010459 00000 n +0000010518 00000 n +0000010560 00000 n +0000010879 00000 n +0000010923 00000 n +0000011471 00000 n +0000011492 00000 n +0000011538 00000 n +0000011597 00000 n +0000011639 00000 n +0000011958 00000 n +0000012002 00000 n +0000012546 00000 n +0000012567 00000 n +0000012613 00000 n +0000012672 00000 n +0000012714 00000 n +0000013033 00000 n +0000013077 00000 n +0000013620 00000 n +0000013641 00000 n +0000013664 00000 n +0000013758 00000 n +0000013853 00000 n +0000013948 00000 n +0000014043 00000 n +trailer << + /DocChecksum /DA785F789D02970D387C264D0A6C8CB0 + /Info 2 0 R + /Root 1 0 R + /Size 84 + /ID [<976442cb303b8d5e88a36a127de2a19f><31415926535897932384626433832795>] +>> +startxref +14099 +%%EOF diff --git a/qpdf/qtest/qpdf/manual-appearances.pdf b/qpdf/qtest/qpdf/manual-appearances.pdf new file mode 100644 index 00000000..9e9d3df3 --- /dev/null +++ b/qpdf/qtest/qpdf/manual-appearances.pdf @@ -0,0 +1,2680 @@ +%PDF-1.5 +% +%QDF-1.0 + +%% Original object ID: 1 0 +1 0 obj +<< + /AcroForm << + /DR 3 0 R + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 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 + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + ] + /NeedAppearances false + >> + /Lang (en-US) + /MarkInfo << + /Marked true + >> + /OpenAction [ + 31 0 R + /XYZ + null + null + 0 + ] + /Pages 32 0 R + /StructTreeRoot 33 0 R + /Type /Catalog +>> +endobj + +%% Original object ID: 2 0 +2 0 obj +<< + /CreationDate (D:20181224113354-05'00') + /Creator + /Producer +>> +endobj + +%% Original object ID: 3 0 +3 0 obj +<< + /Font 34 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Original object ID: 4 0 +4 0 obj +<< + /AP << + /N 35 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 34 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 31 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 5 0 +5 0 obj +<< + /AP << + /N 37 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 34 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 31 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 6 0 +6 0 obj +<< + /AP << + /N 39 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 34 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 31 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 7 0 +7 0 obj +<< + /AP << + /N 41 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 43 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 44 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 8 0 +8 0 obj +<< + /AP << + /N 45 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 43 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 44 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 9 0 +9 0 obj +<< + /AP << + /N 47 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 43 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 44 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 10 0 +10 0 obj +<< + /AP << + /N 49 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 51 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 52 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 11 0 +11 0 obj +<< + /AP << + /N 53 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 51 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 52 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 12 0 +12 0 obj +<< + /AP << + /N 55 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 51 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 52 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 13 0 +13 0 obj +<< + /AP << + /N 57 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 59 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 60 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 14 0 +14 0 obj +<< + /AP << + /N 61 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 59 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 60 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 15 0 +15 0 obj +<< + /AP << + /N 63 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 59 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 60 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 16 0 +16 0 obj +<< + /AP << + /N 65 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 67 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 68 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 17 0 +17 0 obj +<< + /AP << + /N 69 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 67 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 68 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 18 0 +18 0 obj +<< + /AP << + /N 71 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 67 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 68 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 19 0 +19 0 obj +<< + /AP << + /N 73 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 75 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 76 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 20 0 +20 0 obj +<< + /AP << + /N 77 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 75 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 76 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 21 0 +21 0 obj +<< + /AP << + /N 79 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 75 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 76 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 22 0 +22 0 obj +<< + /AP << + /N 81 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 83 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 84 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 23 0 +23 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 83 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 84 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 24 0 +24 0 obj +<< + /AP << + /N 87 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 83 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 84 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 25 0 +25 0 obj +<< + /AP << + /N 89 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 91 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 92 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 26 0 +26 0 obj +<< + /AP << + /N 93 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 91 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 92 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 27 0 +27 0 obj +<< + /AP << + /N 95 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 91 0 R + >> + /DV + /F 20 + /FT /Tx + /Ff 4096 + /P 92 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 28 0 +28 0 obj +<< + /AP << + /N 97 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 99 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 100 0 R + /Rect [ + 129.849 + 651.151 + 197.151 + 702.099 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 29 0 +29 0 obj +<< + /AP << + /N 101 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 99 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 100 0 R + /Rect [ + 129.849 + 542.751 + 233.301 + 595.749 + ] + /Subtype /Widget + /T (Text Box 2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 30 0 +30 0 obj +<< + /AP << + /N 103 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf) + /DR << + /Font 99 0 R + >> + /DV + /F 4 + /FT /Tx + /Ff 4096 + /P 100 0 R + /Rect [ + 294.149 + 430.251 + 366.951 + 528.249 + ] + /Subtype /Widget + /T (Text Box 3) + /Type /Annot + /V +>> +endobj + +%% Page 1 +%% Original object ID: 31 0 +31 0 obj +<< + /Annots [ + 4 0 R + 5 0 R + 6 0 R + ] + /Contents 105 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 34 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 32 0 +32 0 obj +<< + /Count 9 + /Kids [ + 31 0 R + 44 0 R + 52 0 R + 60 0 R + 68 0 R + 76 0 R + 84 0 R + 92 0 R + 100 0 R + ] + /Type /Pages +>> +endobj + +%% Original object ID: 33 0 +33 0 obj +<< + /K [ + 107 0 R + ] + /ParentTree 108 0 R + /RoleMap << + /Document /Document + /Standard /P + >> + /Type /StructTreeRoot +>> +endobj + +%% Original object ID: 34 0 +34 0 obj +<< +>> +endobj + +%% Original object ID: 35 0 +35 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +36 0 obj +66 +endobj + +%% Original object ID: 37 0 +37 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 38 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +38 0 obj +60 +endobj + +%% Original object ID: 39 0 +39 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 40 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +40 0 obj +58 +endobj + +%% Original object ID: 41 0 +41 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 109 0 R + /Subtype /Form + /Type /XObject + /Length 42 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +42 0 obj +61 +endobj + +%% Original object ID: 43 0 +43 0 obj +<< +>> +endobj + +%% Page 2 +%% Original object ID: 44 0 +44 0 obj +<< + /Annots [ + 7 0 R + 8 0 R + 9 0 R + ] + /Contents 110 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 43 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 45 0 +45 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 109 0 R + /Subtype /Form + /Type /XObject + /Length 46 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +46 0 obj +60 +endobj + +%% Original object ID: 47 0 +47 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 109 0 R + /Subtype /Form + /Type /XObject + /Length 48 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +48 0 obj +58 +endobj + +%% Original object ID: 49 0 +49 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Matrix [ + .707 + .5 + -.5 + .707 + 0 + 0 + ] + /Resources 112 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +50 0 obj +61 +endobj + +%% Original object ID: 51 0 +51 0 obj +<< +>> +endobj + +%% Page 3 +%% Original object ID: 52 0 +52 0 obj +<< + /Annots [ + 10 0 R + 11 0 R + 12 0 R + ] + /Contents 113 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 51 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 53 0 +53 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Matrix [ + 1 + .557 + .257 + 1 + 0 + 0 + ] + /Resources 112 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +54 0 obj +60 +endobj + +%% Original object ID: 55 0 +55 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 112 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +56 0 obj +58 +endobj + +%% Original object ID: 57 0 +57 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Matrix [ + .707 + .5 + -.5 + .707 + 0 + 0 + ] + /Resources 115 0 R + /Subtype /Form + /Type /XObject + /Length 58 0 R +>> +stream +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +58 0 obj +66 +endobj + +%% Original object ID: 59 0 +59 0 obj +<< +>> +endobj + +%% Page 4 +%% Original object ID: 60 0 +60 0 obj +<< + /Annots [ + 13 0 R + 14 0 R + 15 0 R + ] + /Contents 116 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 59 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 61 0 +61 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Matrix [ + 1 + .557 + .257 + 1 + 0 + 0 + ] + /Resources 115 0 R + /Subtype /Form + /Type /XObject + /Length 62 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +62 0 obj +60 +endobj + +%% Original object ID: 63 0 +63 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 115 0 R + /Subtype /Form + /Type /XObject + /Length 64 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +64 0 obj +58 +endobj + +%% Original object ID: 65 0 +65 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 118 0 R + /Subtype /Form + /Type /XObject + /Length 66 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +66 0 obj +61 +endobj + +%% Original object ID: 67 0 +67 0 obj +<< +>> +endobj + +%% Page 5 +%% Original object ID: 68 0 +68 0 obj +<< + /Annots [ + 16 0 R + 17 0 R + 18 0 R + ] + /Contents 119 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 67 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 180 + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 69 0 +69 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 118 0 R + /Subtype /Form + /Type /XObject + /Length 70 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +70 0 obj +60 +endobj + +%% Original object ID: 71 0 +71 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 118 0 R + /Subtype /Form + /Type /XObject + /Length 72 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +72 0 obj +58 +endobj + +%% Original object ID: 73 0 +73 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Matrix [ + .707 + .5 + -.5 + .707 + 0 + 0 + ] + /Resources 121 0 R + /Subtype /Form + /Type /XObject + /Length 74 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +74 0 obj +61 +endobj + +%% Original object ID: 75 0 +75 0 obj +<< +>> +endobj + +%% Page 6 +%% Original object ID: 76 0 +76 0 obj +<< + /Annots [ + 19 0 R + 20 0 R + 21 0 R + ] + /Contents 122 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 75 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 90 + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 77 0 +77 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Matrix [ + 2 + 1.114 + .513 + 2 + 100 + 300 + ] + /Resources 121 0 R + /Subtype /Form + /Type /XObject + /Length 78 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +78 0 obj +60 +endobj + +%% Original object ID: 79 0 +79 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 121 0 R + /Subtype /Form + /Type /XObject + /Length 80 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +80 0 obj +58 +endobj + +%% Original object ID: 81 0 +81 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 124 0 R + /Subtype /Form + /Type /XObject + /Length 82 0 R +>> +stream +q +60 r +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +82 0 obj +66 +endobj + +%% Original object ID: 83 0 +83 0 obj +<< +>> +endobj + +%% Page 7 +%% Original object ID: 84 0 +84 0 obj +<< + /Annots [ + 22 0 R + 23 0 R + 24 0 R + ] + /Contents 125 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 83 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 85 0 +85 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 124 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +86 0 obj +60 +endobj + +%% Original object ID: 87 0 +87 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 124 0 R + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +88 0 obj +58 +endobj + +%% Original object ID: 89 0 +89 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 127 0 R + /Subtype /Form + /Type /XObject + /Length 90 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +90 0 obj +61 +endobj + +%% Original object ID: 91 0 +91 0 obj +<< +>> +endobj + +%% Page 8 +%% Original object ID: 92 0 +92 0 obj +<< + /Annots [ + 25 0 R + 26 0 R + 27 0 R + ] + /Contents 128 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 91 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Rotate 270 + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 93 0 +93 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 127 0 R + /Subtype /Form + /Type /XObject + /Length 94 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +94 0 obj +60 +endobj + +%% Original object ID: 95 0 +95 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 127 0 R + /Subtype /Form + /Type /XObject + /Length 96 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +96 0 obj +58 +endobj + +%% Original object ID: 97 0 +97 0 obj +<< + /BBox [ + 0 + 0 + 67.3 + 50.95 + ] + /Resources 130 0 R + /Subtype /Form + /Type /XObject + /Length 98 0 R +>> +stream +q +1 0 0 RG +5 w +0 0 67.3 50.95 re s +0 1 0 RG +5 5 15 15 re s +Q +endstream +endobj + +98 0 obj +61 +endobj + +%% Original object ID: 99 0 +99 0 obj +<< +>> +endobj + +%% Page 9 +%% Original object ID: 100 0 +100 0 obj +<< + /Annots [ + 28 0 R + 29 0 R + 30 0 R + ] + /Contents 131 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 32 0 R + /Resources << + /Font 99 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 101 0 +101 0 obj +<< + /BBox [ + 0 + 0 + 103.45 + 53 + ] + /Resources 130 0 R + /Subtype /Form + /Type /XObject + /Length 102 0 R +>> +stream +q +0 1 0 RG +5 w +0 0 103.45 53 re s +0 0 1 RG +5 5 15 15 re s +Q +endstream +endobj + +102 0 obj +60 +endobj + +%% Original object ID: 103 0 +103 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 98 + ] + /Resources 130 0 R + /Subtype /Form + /Type /XObject + /Length 104 0 R +>> +stream +q +0 0 1 RG +5 w +0 0 72.8 98 re s +1 0 0 RG +5 5 15 15 re s +Q +endstream +endobj + +104 0 obj +58 +endobj + +%% Contents for page 1 +%% Original object ID: 105 0 +105 0 obj +<< + /Length 106 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +106 0 obj +240 +endobj + +%% Original object ID: 107 0 +107 0 obj +<< + /K [ + 133 0 R + 134 0 R + 135 0 R + 136 0 R + ] + /P 33 0 R + /Pg 31 0 R + /S /Document + /Type /StructElem +>> +endobj + +%% Original object ID: 108 0 +108 0 obj +<< + /Nums [ + 0 + [ + 134 0 R + 135 0 R + 136 0 R + ] + ] +>> +endobj + +%% Original object ID: 109 0 +109 0 obj +<< + /Font 43 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 2 +%% Original object ID: 110 0 +110 0 obj +<< + /Length 111 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +111 0 obj +240 +endobj + +%% Original object ID: 112 0 +112 0 obj +<< + /Font 51 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 3 +%% Original object ID: 113 0 +113 0 obj +<< + /Length 114 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +114 0 obj +240 +endobj + +%% Original object ID: 115 0 +115 0 obj +<< + /Font 59 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 4 +%% Original object ID: 116 0 +116 0 obj +<< + /Length 117 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +117 0 obj +240 +endobj + +%% Original object ID: 118 0 +118 0 obj +<< + /Font 67 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 5 +%% Original object ID: 119 0 +119 0 obj +<< + /Length 120 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +120 0 obj +240 +endobj + +%% Original object ID: 121 0 +121 0 obj +<< + /Font 75 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 6 +%% Original object ID: 122 0 +122 0 obj +<< + /Length 123 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +123 0 obj +240 +endobj + +%% Original object ID: 124 0 +124 0 obj +<< + /Font 83 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 7 +%% Original object ID: 125 0 +125 0 obj +<< + /Length 126 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +126 0 obj +240 +endobj + +%% Original object ID: 127 0 +127 0 obj +<< + /Font 91 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 8 +%% Original object ID: 128 0 +128 0 obj +<< + /Length 129 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +129 0 obj +240 +endobj + +%% Original object ID: 130 0 +130 0 obj +<< + /Font 99 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Contents for page 9 +%% Original object ID: 131 0 +131 0 obj +<< + /Length 132 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +127.35 648.65 72.3 55.95 re B* +EMC +/Form<>BDC +127.35 540.25 108.45 58 re B* +EMC +/Form<>BDC +291.65 427.75 77.8 103 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +132 0 obj +240 +endobj + +%% Original object ID: 133 0 +133 0 obj +<< + /A 137 0 R + /P 107 0 R + /Pg 31 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 134 0 +134 0 obj +<< + /K [ + 0 + ] + /P 107 0 R + /Pg 31 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 135 0 +135 0 obj +<< + /K [ + 1 + ] + /P 107 0 R + /Pg 31 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 136 0 +136 0 obj +<< + /K [ + 2 + ] + /P 107 0 R + /Pg 31 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 137 0 +137 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +xref +0 138 +0000000000 65535 f +0000000052 00000 n +0000000702 00000 n +0000000914 00000 n +0000001014 00000 n +0000001346 00000 n +0000001678 00000 n +0000002010 00000 n +0000002342 00000 n +0000002674 00000 n +0000003008 00000 n +0000003342 00000 n +0000003676 00000 n +0000004010 00000 n +0000004344 00000 n +0000004678 00000 n +0000005012 00000 n +0000005346 00000 n +0000005680 00000 n +0000006015 00000 n +0000006350 00000 n +0000006685 00000 n +0000007020 00000 n +0000007354 00000 n +0000007688 00000 n +0000008022 00000 n +0000008356 00000 n +0000008690 00000 n +0000009025 00000 n +0000009360 00000 n +0000009696 00000 n +0000010042 00000 n +0000010406 00000 n +0000010597 00000 n +0000010777 00000 n +0000010828 00000 n +0000011049 00000 n +0000011097 00000 n +0000011311 00000 n +0000011359 00000 n +0000011569 00000 n +0000011617 00000 n +0000011835 00000 n +0000011883 00000 n +0000011944 00000 n +0000012321 00000 n +0000012537 00000 n +0000012585 00000 n +0000012797 00000 n +0000012845 00000 n +0000013124 00000 n +0000013172 00000 n +0000013233 00000 n +0000013600 00000 n +0000013874 00000 n +0000013922 00000 n +0000014134 00000 n +0000014182 00000 n +0000014466 00000 n +0000014514 00000 n +0000014575 00000 n +0000014955 00000 n +0000015229 00000 n +0000015277 00000 n +0000015489 00000 n +0000015537 00000 n +0000015755 00000 n +0000015803 00000 n +0000015864 00000 n +0000016245 00000 n +0000016461 00000 n +0000016509 00000 n +0000016721 00000 n +0000016769 00000 n +0000017048 00000 n +0000017096 00000 n +0000017157 00000 n +0000017537 00000 n +0000017816 00000 n +0000017864 00000 n +0000018076 00000 n +0000018124 00000 n +0000018347 00000 n +0000018395 00000 n +0000018456 00000 n +0000018823 00000 n +0000019039 00000 n +0000019087 00000 n +0000019299 00000 n +0000019347 00000 n +0000019565 00000 n +0000019613 00000 n +0000019674 00000 n +0000020055 00000 n +0000020271 00000 n +0000020319 00000 n +0000020531 00000 n +0000020579 00000 n +0000020797 00000 n +0000020845 00000 n +0000020907 00000 n +0000021276 00000 n +0000021494 00000 n +0000021544 00000 n +0000021758 00000 n +0000021831 00000 n +0000022152 00000 n +0000022203 00000 n +0000022375 00000 n +0000022502 00000 n +0000022629 00000 n +0000022950 00000 n +0000023001 00000 n +0000023128 00000 n +0000023449 00000 n +0000023500 00000 n +0000023627 00000 n +0000023948 00000 n +0000023999 00000 n +0000024126 00000 n +0000024447 00000 n +0000024498 00000 n +0000024625 00000 n +0000024946 00000 n +0000024997 00000 n +0000025124 00000 n +0000025445 00000 n +0000025496 00000 n +0000025623 00000 n +0000025944 00000 n +0000025995 00000 n +0000026122 00000 n +0000026443 00000 n +0000026494 00000 n +0000026621 00000 n +0000026748 00000 n +0000026875 00000 n +0000027002 00000 n +trailer << + /DocChecksum /DA785F789D02970D387C264D0A6C8CB0 + /Info 2 0 R + /Root 1 0 R + /Size 138 + /ID [<976442cb303b8d5e88a36a127de2a19f><1f7f023bcea1641cee1f72048a9d0676>] +>> +startxref +27059 +%%EOF diff --git a/qpdf/qtest/qpdf/need-appearances-out.pdf b/qpdf/qtest/qpdf/need-appearances-out.pdf new file mode 100644 index 00000000..1d616101 --- /dev/null +++ b/qpdf/qtest/qpdf/need-appearances-out.pdf @@ -0,0 +1,2575 @@ +%PDF-1.6 +% +%QDF-1.0 + +1 0 obj +<< + /Type /ObjStm + /Length 18715 + /N 44 + /First 398 +>> +stream +2 0 +3 551 +4 776 +5 1009 +6 1375 +7 1734 +8 2039 +9 2416 +10 2726 +11 3031 +12 3333 +13 4929 +14 5405 +15 5829 +16 6354 +17 6781 +18 7212 +19 7643 +20 8074 +21 8505 +22 9308 +23 10169 +24 10264 +25 12179 +26 12281 +27 12414 +28 12516 +29 14446 +30 15052 +31 15184 +32 15381 +33 15578 +34 15775 +35 15972 +36 16169 +37 16366 +38 16563 +39 16760 +40 16957 +41 17154 +42 17351 +43 17582 +44 17840 +45 18193 +%% Object stream: object 2, index 0 +<< + /AcroForm << + /DA (/Helv 0 Tf 0 g ) + /DR 4 0 R + /Fields [ + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 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 + ] + /NeedAppearances true + >> + /Lang (en-GB) + /Metadata 46 0 R + /OpenAction [ + 22 0 R + /XYZ + null + null + 0 + ] + /Pages 23 0 R + /Type /Catalog + /ViewerPreferences << + /DisplayDocTitle true + >> +>> +%% Object stream: object 3, index 1 +<< + /CreationDate (D:20130629204853+02'00') + /Creator (Writer) + /Keywords (PDF Form) + /ModDate (D:20160331080439+03'00') + /Producer (OpenOffice.org 3.4) + /Title (PDF Form Example) +>> +%% Object stream: object 4, index 2 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /ExtGState << + /FXE1 25 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 5, index 3 +<< + /AP << + /N 48 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 453.7 + 315.7 + 467.9 + ] + /Subtype /Widget + /T (Given Name Text Box) + /TU + /Type /Annot + /V (ABC mod) +>> +%% Object stream: object 6, index 4 +<< + /AP << + /N 50 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 421.2 + 315.7 + 435.4 + ] + /Subtype /Widget + /T (Family Name Text Box) + /TU + /Type /Annot + /V (DEF) +>> +%% Object stream: object 7, index 5 +<< + /AP << + /N 52 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 388.3 + 315.7 + 402.5 + ] + /Subtype /Widget + /T (Address 1 Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 8, index 6 +<< + /AP << + /N 54 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 378.4 + 388.4 + 446.9 + 402.6 + ] + /Subtype /Widget + /T (House nr Text Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 9, index 7 +<< + /AP << + /N 56 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 368.4 + 315.7 + 382.6 + ] + /Subtype /Widget + /T (Address 2 Text Box) + /Type /Annot + /V +>> +%% Object stream: object 10, index 8 +<< + /AP << + /N 58 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 165.7 + 348.5 + 238.5 + 362.7 + ] + /Subtype /Widget + /T (Postcode Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 11, index 9 +<< + /AP << + /N 60 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 297.1 + 348.5 + 447.2 + 362.7 + ] + /Subtype /Widget + /T (City Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 12, index 10 +<< + /AP << + /N 62 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ] + /P 22 0 R + /Rect [ + 165.7 + 315.9 + 315.7 + 330.1 + ] + /Subtype /Widget + /T (Country Combo Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 13, index 11 +<< + /AP << + /N 64 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + ] + /P 22 0 R + /Rect [ + 165.7 + 283.4 + 241.2 + 297.6 + ] + /Subtype /Widget + /T (Gender List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 14, index 12 +<< + /AP << + /N 66 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 165.7 + 250.8 + 238 + 265 + ] + /Subtype /Widget + /T (Height Formatted Field) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 15, index 13 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 164.1 + 221.4 + 175.4 + 232.3 + ] + /Subtype /Widget + /T (Driving License Check Box) + /TU + /Type /Annot + /V /Yes +>> +%% Object stream: object 16, index 14 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 57.7 + 177.6 + 69 + 188.5 + ] + /Subtype /Widget + /T (Language 1 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 17, index 15 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 154.8 + 177.6 + 166.1 + 188.5 + ] + /Subtype /Widget + /T (Language 2 Check Box) + /Type /Annot + /V /Yes +>> +%% Object stream: object 18, index 16 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 251.8 + 177.6 + 263.1 + 188.5 + ] + /Subtype /Widget + /T (Language 3 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 19, index 17 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 342.8 + 177.6 + 354.1 + 188.5 + ] + /Subtype /Widget + /T (Language 4 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 20, index 18 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 439.8 + 177.6 + 451.1 + 188.5 + ] + /Subtype /Widget + /T (Language 5 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 21, index 19 +<< + /AP << + /N 74 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /I [ + 6 + ] + /Opt [ + + + + + + + + + + + ] + /P 22 0 R + /Rect [ + 165.7 + 143.4 + 322.8 + 157.6 + ] + /Subtype /Widget + /T (Favourite Colour List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 22, index 20 +%% Page 1 +<< + /Annots [ + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 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 + 45 0 R + ] + /Contents [ + 76 0 R + 78 0 R + 80 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /ParaLinkXML 82 0 R + /ParaXML 84 0 R + /Parent 23 0 R + /Resources << + /Encoding << + /PDFDocEncoding 24 0 R + >> + /ExtGState << + /FXE1 25 0 R + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> + >> + /Type /Page +>> +%% Object stream: object 23, index 21 +<< + /Count 1 + /Kids [ + 22 0 R + ] + /Type /Pages +>> +%% Object stream: object 24, index 22 +<< + /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 +>> +%% Object stream: object 25, index 23 +<< + /AIS false + /BM /Normal + /CA 1 + /SMask /None + /ca 1 +>> +%% Object stream: object 26, index 24 +<< + /ArialMT 28 0 R + /F2 29 0 R + /F3 28 0 R + /FXF1 28 0 R + /Helv 30 0 R + /ZaDi 27 0 R +>> +%% Object stream: object 27, index 25 +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 28, index 26 +<< + /BaseFont /ArialMT + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 42 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 277 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +%% Object stream: object 29, index 27 +<< + /BaseFont /CAAAAA+ArialMT + /FirstChar 0 + /FontDescriptor 43 0 R + /LastChar 50 + /Subtype /TrueType + /ToUnicode 86 0 R + /Type /Font + /Widths [ + 750 + 610 + 556 + 222 + 500 + 277 + 556 + 556 + 556 + 500 + 833 + 556 + 222 + 556 + 277 + 556 + 333 + 556 + 666 + 722 + 610 + 277 + 722 + 500 + 556 + 556 + 277 + 722 + 722 + 500 + 500 + 777 + 333 + 556 + 556 + 556 + 333 + 277 + 500 + 333 + 277 + 722 + 777 + 277 + 666 + 556 + 556 + 556 + 666 + 666 + 500 + ] +>> +%% Object stream: object 30, index 28 +<< + /BaseFont /Helvetica + /Encoding 24 0 R + /Name /Helv + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 31, index 29 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 32, index 30 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 33, index 31 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 34, index 32 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 35, index 33 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 36, index 34 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 37, index 35 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 38, index 36 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 39, index 37 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 40, index 38 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 41, index 39 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 42, index 40 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontName /ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 43, index 41 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontFile2 88 0 R + /FontName /CAAAAA+ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 44, index 42 +<< + /AP << + /N 90 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 22 0 R + /Popup 45 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +%% Object stream: object 45, index 43 +<< + /F 28 + /Open false + /Parent 44 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endstream +endobj + +46 0 obj +<< + /Subtype /XML + /Type /Metadata + /Length 47 0 R +>> +stream + + + + + 2013-06-29T20:48:53+02:00 + Writer + 2016-03-31T08:04:39+03:00 + 2016-03-30T09:23:15-07:00 + PDF Form + OpenOffice.org 3.4 + application/pdf + + + PDF Form Example + + + uuid:2b2730cc-fa59-48a2-aef6-aaaa64179a3b + uuid:246f8744-738f-478b-9f5c-860c5c4ffcc5 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj + +%QDF: ignore_newline +47 0 obj +3352 +endobj + +48 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 31 0 R + /Length 49 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(ABC) Tj +ET +Q +EMC +endstream +endobj + +49 0 obj +89 +endobj + +50 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 32 0 R + /Length 51 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(DEF) Tj +ET +Q +EMC +endstream +endobj + +51 0 obj +89 +endobj + +52 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 33 0 R + /Length 53 0 R +>> +stream +q +Q +endstream +endobj + +53 0 obj +4 +endobj + +54 0 obj +<< + /BBox [ + 0 + 0 + 68.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 34 0 R + /Length 55 0 R +>> +stream +q +Q +endstream +endobj + +55 0 obj +4 +endobj + +56 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Resources 35 0 R + /Length 57 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +%QDF: ignore_newline +57 0 obj +12 +endobj + +58 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 36 0 R + /Length 59 0 R +>> +stream +q +Q +endstream +endobj + +59 0 obj +4 +endobj + +60 0 obj +<< + /BBox [ + 0 + 0 + 150.1 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 37 0 R + /Length 61 0 R +>> +stream +q +Q +endstream +endobj + +61 0 obj +4 +endobj + +62 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 38 0 R + /Length 63 0 R +>> +stream +q +Q +endstream +endobj + +63 0 obj +4 +endobj + +64 0 obj +<< + /BBox [ + 0 + 0 + 75.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 39 0 R + /Length 65 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 60.5 12.2 re +W +n +BT +0 0 0 rg +1 3.24501 Td +/FXF1 11 Tf +(Man) Tj +ET +Q +EMC +endstream +endobj + +65 0 obj +90 +endobj + +66 0 obj +<< + /BBox [ + 0 + 0 + 72.3 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 40 0 R + /Length 67 0 R +>> +stream +q +Q +endstream +endobj + +67 0 obj +4 +endobj + +68 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +endstream +endobj + +69 0 obj +30 +endobj + +70 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +71 0 obj +95 +endobj + +72 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +73 0 obj +65 +endobj + +74 0 obj +<< + /BBox [ + 0 + 0 + 157.1 + 14.2 + ] + /Resources 41 0 R + /Length 75 0 R +>> +stream +1 1 0.6 rg +0 0 156.9 14.4 re f* +/Tx BMC +BT +0 0 0 rg /F3 11 Tf +0 g +2 2.106 Td +(Blue) Tj +ET +EMC +endstream +endobj + +75 0 obj +95 +endobj + +%% Contents for page 1 +76 0 obj +<< + /Length 77 0 R +>> +stream +q +endstream +endobj + +77 0 obj +2 +endobj + +%% Contents for page 1 +78 0 obj +<< + /Length 79 0 R +>> +stream +q +BT +/DeviceRGB cs 0 0 0 scn /DeviceGray CS 0 SCN 0.1 w /F2 11 Tf 1 0 0 1 0 0 Tm 56.8 460.8 TD[(*)-4<03>4<1d08>1<07>-7<05>4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 424.3 TD[<14>1<06>1(\n)-2<03>-4(\f)-4<17>9<05>-4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 395.4 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(-)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 371.6 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(.)1(+)]TJ +1 0 0 1 0 0 Tm 450 351.6 TD[<05>]TJ +1 0 0 1 0 0 Tm 147.8 179.1 TD[<05>4<05>]TJ +1 0 0 1 0 0 Tm 244.8 179.1 TD[<05>-4<05>]TJ +1 0 0 1 0 0 Tm 432.8 179.1 TD[<05>-4<05>]TJ +ET +Q +/DeviceRGB cs 1 1 0.6 scn /DeviceRGB CS 0 0 0 SCN 0 J [] 0 d 0 j 0.1 w 10 M /RelativeColorimetric ri 1 i /FXE1 gs 163.1 450.9 155.3 19.9 re +B* +163.1 418.3 155.3 19.9 re +B* +endstream +endobj + +79 0 obj +747 +endobj + +%% Contents for page 1 +80 0 obj +<< + /Length 81 0 R +>> +stream + +Q +q +1.00000 0.00000 0.00000 1.00000 235.00000 703.00000 cm +0.00000 0.00000 18.00000 18.00000 re W n +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b + +Q +endstream +endobj + +81 0 obj +1033 +endobj + +82 0 obj +<< + /SubType /XML + /Type /ParaLinkXML + /Length 83 0 R +>> +stream + +endstream +endobj + +83 0 obj +55 +endobj + +84 0 obj +<< + /SubType /XML + /Type /ParaXML + /Length 85 0 R +>> +stream + + +endstream +endobj + +85 0 obj +84 +endobj + +86 0 obj +<< + /Length 87 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +50 beginbfchar +<01> <0054> +<02> <0068> +<03> <0069> +<04> <0073> +<05> <0020> +<06> <0061> +<07> <006E> +<08> <0065> +<09> <0078> +<0A> <006D> +<0B> <0070> +<0C> <006C> +<0D> <006F> +<0E> <0066> +<0F> <0075> +<10> <0072> +<11> <0062> +<12> <0050> +<13> <0044> +<14> <0046> +<15> <002E> +<16> <004E> +<17> <0079> +<18> <0064> +<19> <0067> +<1A> <0074> +<1B> <0048> +<1C> <0077> +<1D> <0076> +<1E> <0063> +<1F> <004F> +<20> <0028> +<21> <0033> +<22> <0034> +<23> <0030> +<24> <0029> +<25> <002C> +<26> <006B> +<27> <002D> +<28> <0049> +<29> <0043> +<2A> <0047> +<2B> <003A> +<2C> <0041> +<2D> <0031> +<2E> <0032> +<2F> <004C> +<30> <0053> +<31> <0045> +<32> <00E7> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +87 0 obj +918 +endobj + +88 0 obj +<< + /Length1 37060 + /Length 89 0 R +>> +stream +true @cmapY:.Rcvt .0fpgm bxRnglyf!$IheadNp7X6hheaXP$hmtxXtlocab YDjmaxp +Y nameHxY+post* prep +  +  !"#$%&'()*+,-./012&iiiD|ZRRD/W~ "APoLu\7LnpX cc-\ @Wr]g!wM+Le|C]h5G!\M-x ,I?)9Io#o 2@z1UW~~FB/OV)or,11di+ &  sC_a^m8Q[h|ATkhqBBSsX2Q|  !U{{~!""#rw"+5<Yoq22 *<Qaajx *>LQ_jqx !".5BOO^eq *G]ety +"&+G_u\ +m6>PQ]`E3-_dM?}$x;;N&;MKSj1<ex ~ 90+ +P >X!q}E ++NT2N7kwdg3|)n*i9$]u +MRhm}qyXgV%|2!r\/AMrLjUxiWnTgeRZgn-|{pLFF-S%>S?("bJmH3NFpyQ +hlOa+@CUTA@?>=<;:987543210/.-,+*)('&%$#"!  + ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,#p>#pE: -,E#DE#D-, E%EadPQXED!!Y-,Cc#b#B+-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+#Dz-,E+#D-,CXE+#DzEi #D QX+#Dz!zYY-,-,%F`F@aH-,KS \XYXY-, %E#DE#DEe#E %`j #B#hj`a Ry!@E TX#!?#YaDRy@ E TX#!?#YaD-,C#C -,C#C -, C#C -, C#Ce -,C#Ce -,C#Ce -,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KdQXEi C`:!!!Y-,%# `#-,%# a#-,%-, ` <<-, a <<-,++**-,CC -,>**-,5-,v##p #E PXaY:/-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,KTX8!!Y-,CXY-,CXY-,KTC\ZX8!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,KS#KQZX:+!!Y-,KS#KQZX;+!!Y-,KS#KQZC\ZX8!!Y-, KT&KTZ +C\ZX8!!Y-,KRX%%I%%Ia TX! CUX%%88Y@TX CTX%8Y CTX%%88%8YYYY!!!!-,F#F`F# F`ab# #ŠpE` PXaFY`h:-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,CTXKS#KQZX8!!Y!!!!Y-!!%!! @ 0@  s  / @ UU U U U Us+++++++]<]<]<<??<<10!!5!! a4@ U%5E @:4  + % @364  @ U@U (U U @ U  U  U @ U U @ U +U U N@464p%@364 U@U U U U@U U UNGP+++++++++]q+<<]q+++++++++++++]q+?0@{"": J D$V"e"| $, 0K,U2 +\\ \ +\ \ \ jj j +j j j &''&$'$)6$Z +Y d&d(t#t$$ + (,0 + '(&&( U" U# U$ U( U" U# U$ U@9Z'% + & .@", U?O_oU@ U@4@4.\l UU@U. $@42@/UU U U U U U U[$*9** U*U* U* U*2@!'*4`22?222$ U U U U @U $ U U U@ U U U"?O147+N]qM+++++++++++rN]q+++++q+M+++++++++r?+++?q9/++]qr+]qr+99910Cy@@'-#,&"  (- !#"# ) +(' ++++<<+<<+++++*++++++++++]q]rq]732654'&'.54676632&&#"#"&?{|x5%ƙOA8*S}Z si|j/Vi}=kreD=#%2INGy(+H{gR\R7# +$3A|\ZWJ>(7-@, * *) **9 67:*I*] ]*j i*`0 ) ( U'@ U((((D@ U U U5@U U+,*499,IH,VY+fi+v +74/$42!_)o))/? UU@U UU@ UE' +2 )aa U%!$U$@ U$ U$ U$ U$@ U$U$ U$[@'@&& &0&&9U&ֶU&19@ #409999@AU%"/$?U U U U U U U18+++++++]q+]q+++]++++++++<+??+?9/+++++]qq999910]++++q]++q%#"&546676767654'&#"'>32#&326765}@@< 4y  +  $@U@ U (U U @ U  U " U @ U U @ U +U @ U @364   N@464p3%UU@U U + U U@U U U@364 N]q++++++++++<<<]q+]q+++++++++++++<<?S@U]] U eko e  U@R U U'1:1AMAQ\Ramaxx P`p +U@U @ ܴ U U U @ '*4  %&4@A#403$@$*4?O U U U U U U47+N++++++]+MNq++q++++M?]++?9/]#ǹ U U @M 4%    #  # # +%%%%%UU@ U U@ U U UU U U]@ %U@ U U@ U U +U@ U U U]@3#%?O@U U U U UU@U + U U$%x!GP++N+++++++++]qrpXdL:&N_bX'l_:xxPi!>b@ -=K?  ) #22Bp ::JJY[ \\jk imk  #++5:FJZ   $ + +@ +` + + @ U @ U +@ U + U + U + U +U +@# U +t33%?O@U U U U UU@U U UG7+N+++++++++]qr k U U@s U U + GHVYgi4::5EKKE\\ R]]Rmm dmmdw  [TT +[ lee +l + $@ U@ U@U U U U UU U@$%40 1@I#40$ U U U U U U U U@$%4?147+]+++++++++q+]]]++++++++++??10q]qC\X@ SS bb ]Y++++7632#"32654&#"D{'v  @ /0@p  ( @(4   ++ +@%184@+4@U@ UU(U"U, U@ U UUU U! ++++++++++++++]++<<<]??<<<@;/#4CSft      + (" "%@364 U@U U UU@U U UNG+++++++++]q+<]r???999999ɇ}10]r]336632&#">i?[^>BB;^&qH:'G?`r@ $5E?"3Bp:<<LL]] X]^jl hnn  //0?@LPf  + $  @ ` @ U U  U U U U U @/ U t3 U U3%?OU@U U U U UU@U U UG7+N++++++++++]qr*o@` , %L E , &,#9 6J FVX h +.#,'>#>'L',,6!6)?,F F!E)T!T)ic!c)`,,'!#'(@ 0`p}@2 +E" +3%3 +%@`,@ U,@ UU@UU U@ UU U@J Ut%"$?O U U" U U U U+,t!4P++N++++++]qM++++++++++]q<<??]??<10]q]q32676'#"5463253#"&32654&#"f 2Ct}vnэze۠Ꙧ}|zxXQ%2dZ7<ݘjx*$*ع +#&4 @A#&4 + + + "" % E E`p UUU U UU@ U U Uj6f++++++++++]q<<<??<<993310]++%#"&&5#5373#32LeclM," ع @4 + + + +  U@ U U@ U U]    @ +4 UU U@ U U U@ U]  P ` p ;Y+]q++++++++]<<]+++++<<?ZCTX@4 @Pp  U U U U/++++??]2]210@G CCSS``    +jiju p +  "_o@y0@P`p    $ U"$ +@ U@UH U UI$? U +U U14++++]q++++]rKS#KQZX8Yr+r??9/9/]]10]q]qY#"4632&&#"326<r鉭Zj +kl‚c@P   @OO@XX WU_Z_VW & U U U U U@! U&  U Uc\+N++]MN]++++++]M??10]q]]]q!2#"$7324&#"c6FymZ4 |Q`=@ +'33@^ +]??rs^sg0pMQOa7&8@  << +|G_<DZCTX@  U U @ U @UUU U@  +  9/9//++++?+++210CTX@  U @ U @ UU + U@ U  9/9/++/++?++210@6;;I Y Tk dzz  @ + O @ +s@!#4 8@ ?_o$+]+<?<&37@U/0 H+)++]]qr+5k[A : OZ@ + : vM>Wy+? @^&>k +U4Ks uS_<'*Q& >NC40s?9sJssKssD9ssV9!sFsB9$P9c|sVssU|9A9f9m9Vss<sV\VPkl> +A "  4Mz*[x !N"c"#$_$$481/V +FN +^ +t~&h  + b f< \V16/=l q}b E +a> 1 3 Z.]     +  ^  +G Q i w &; a + b f   u \') + ' '  ' ''' '' '(( ( (+$(7*(E-(S + (S (_ + (k  (wTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormaloby ejnnormalStandardTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormalNormaaliNormalNormlNormaleStandaardNormalNormalnyNormal1KG=K9NormlneNormalNormalNavadnothngNormalNormalNormalNormal'TA"/O__o@3@3@jl2@a3@\]2@WY2@MQ2@DI2@:3@142@.B2@',2@%2 + 2Ap@$&2d 2A +d2AJ?/?_?Ӳ792Ӳ+/2Ӳ%2Ӳ2Ӳ2Ҳ) +A0 P`p`p   0@Pв +ϲ&BAƲA /$A/?O_"dA @j@&CI2@ CI2@&:=2@ :=2 &@&2@ 2@&2@ 2@&2@ 2@&z2@ z2@&lv2@ lv2@&dj2@ dj2@&Z_2@ Z_2@&OT2@ OT2$'7Ok Aw0w@wPwwww**@+)*Re~<^+@8@@89@s&%$ 7@!I3@!E3@!AB2@!=>2A!?!!!!!@! "2@!2@"*?2@!.:2oAH/`?_"""/"?"_"""!!o!!!/!?!O!""!!@+HO7 A &A9&%8s542V&, /& 8ʸ&~&}Gke&^s@R&ZHDb@s?^<&50+*V)#U7h@,XO62,!  +@+JKKSBKcKb S# +QZ#BKKTB8+KR7+KP[XY8+TXCX(YYv??>9FD>9FD>9FD>9FD>9F`D>9F`D+++++++++++++++++++++++KSXY2KSXYKS \XEDEDYX>ERX>DYYKVS \X ED&EDYX ERX DYYKS \X%ED$EDYX %ERX% DYYKS \Xs$ED$$EDYX sERXs DYYKS \X%ED%%EDYXERXDYYK>S \XEDEDYXERXDYYKVS \XED/EDYXERXDYYKS \XEDEDYX ERX DYY+++++++++++++++++++++++++++++++++++++++++eB++;Yc\Ee#E`#Ee`#E`vhb cYEe#E &`bch &aeY#eDc#D ;\Ee#E &`bch &ae\#eD;#D\ETX\@eD;@;E#aDYGP47Ee#E`#Ee`#E`vhb 4PEe#E &`bch &aeP#eD4#D G7Ee#E &`bch &ae7#eDG#D7ETX7@eDG@GE#aDYKSBKPXBYC\XBY +CX`!YBp>CX;!~ +Y #B #BCX-A-A +Y#B#BCX~;! +Y#B#B+tusuEiDEiDEiDsssstustu++++tu+++++sssssssssssssssssssssssss+++E@aDstK*SK?QZXE@`DYK:SK?QZX E`DYK.SK:QZXE@`DYK.SK> + >> + >> + /Subtype /Form + /Type /XObject + /Length 91 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +91 0 obj +929 +endobj + +92 0 obj +<< + /Type /XRef + /Length 465 + /W [ 1 3 1 ] + /Info 3 0 R + /Root 2 0 R + /Size 93 + /ID [<5e0a553555622a0516e9877ca55217a6><31415926535897932384626433832795>] +>> +stream +  +    !"#$%&'()*+IWW/X4XHYMYaZZ$ZZ[[\G\Z] ]]]^^__``bNbbccdddehBhnllm[monn1rr9P, +endstream +endobj + +startxref +67628 +%%EOF diff --git a/qpdf/qtest/qpdf/need-appearances-warn.out b/qpdf/qtest/qpdf/need-appearances-warn.out new file mode 100644 index 00000000..b461cdf7 --- /dev/null +++ b/qpdf/qtest/qpdf/need-appearances-warn.out @@ -0,0 +1,2 @@ +WARNING: need-appearances.pdf object stream 1, object 2 0 at offset 438: document does not have updated appearance streams, so form fields will not be flattened +qpdf: operation succeeded with warnings; resulting file may have some problems diff --git a/qpdf/qtest/qpdf/need-appearances.pdf b/qpdf/qtest/qpdf/need-appearances.pdf new file mode 100644 index 00000000..866760c2 --- /dev/null +++ b/qpdf/qtest/qpdf/need-appearances.pdf @@ -0,0 +1,2541 @@ +%PDF-1.6 +% +%QDF-1.0 + +1 0 obj +<< + /Type /ObjStm + /Length 19464 + /N 44 + /First 421 +>> +stream +2 0 +3 574 +4 822 +5 1078 +6 1467 +7 1849 +8 2177 +9 2577 +10 2910 +11 3239 +12 3565 +13 5185 +14 5685 +15 6133 +16 6682 +17 7133 +18 7588 +19 8043 +20 8498 +21 8953 +22 9780 +23 10302 +24 10486 +25 12425 +26 12551 +27 12708 +28 12834 +29 14788 +30 15418 +31 15574 +32 15795 +33 16016 +34 16237 +35 16458 +36 16679 +37 16900 +38 17121 +39 17342 +40 17563 +41 17784 +42 18005 +43 18260 +44 18542 +45 18919 +%% Object stream: object 2, index 0; original object ID: 1 +<< + /AcroForm << + /DA (/Helv 0 Tf 0 g ) + /DR 4 0 R + /Fields [ + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 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 + ] + /NeedAppearances true + >> + /Lang (en-GB) + /Metadata 46 0 R + /OpenAction [ + 22 0 R + /XYZ + null + null + 0 + ] + /Pages 23 0 R + /Type /Catalog + /ViewerPreferences << + /DisplayDocTitle true + >> +>> +%% Object stream: object 3, index 1; original object ID: 2 +<< + /CreationDate (D:20130629204853+02'00') + /Creator (Writer) + /Keywords (PDF Form) + /ModDate (D:20160331080439+03'00') + /Producer (OpenOffice.org 3.4) + /Title (PDF Form Example) +>> +%% Object stream: object 4, index 2; original object ID: 3 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /ExtGState << + /FXE1 25 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 5, index 3; original object ID: 4 +<< + /AP << + /N 48 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 453.7 + 315.7 + 467.9 + ] + /Subtype /Widget + /T (Given Name Text Box) + /TU + /Type /Annot + /V (ABC mod) +>> +%% Object stream: object 6, index 4; original object ID: 5 +<< + /AP << + /N 50 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 421.2 + 315.7 + 435.4 + ] + /Subtype /Widget + /T (Family Name Text Box) + /TU + /Type /Annot + /V (DEF) +>> +%% Object stream: object 7, index 5; original object ID: 6 +<< + /AP << + /N 52 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 388.3 + 315.7 + 402.5 + ] + /Subtype /Widget + /T (Address 1 Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 8, index 6; original object ID: 7 +<< + /AP << + /N 54 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 378.4 + 388.4 + 446.9 + 402.6 + ] + /Subtype /Widget + /T (House nr Text Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 9, index 7; original object ID: 8 +<< + /AP << + /N 56 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 165.7 + 368.4 + 315.7 + 382.6 + ] + /Subtype /Widget + /T (Address 2 Text Box) + /Type /Annot + /V +>> +%% Object stream: object 10, index 8; original object ID: 9 +<< + /AP << + /N 58 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 165.7 + 348.5 + 238.5 + 362.7 + ] + /Subtype /Widget + /T (Postcode Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 11, index 9; original object ID: 10 +<< + /AP << + /N 60 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 40 + /P 22 0 R + /Rect [ + 297.1 + 348.5 + 447.2 + 362.7 + ] + /Subtype /Widget + /T (City Text Box) + /Type /Annot + /V () +>> +%% Object stream: object 12, index 10; original object ID: 11 +<< + /AP << + /N 62 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ] + /P 22 0 R + /Rect [ + 165.7 + 315.9 + 315.7 + 330.1 + ] + /Subtype /Widget + /T (Country Combo Box) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 13, index 11; original object ID: 12 +<< + /AP << + /N 64 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + ] + /P 22 0 R + /Rect [ + 165.7 + 283.4 + 241.2 + 297.6 + ] + /Subtype /Widget + /T (Gender List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 14, index 12; original object ID: 13 +<< + /AP << + /N 66 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Tx + /MaxLen 20 + /P 22 0 R + /Rect [ + 165.7 + 250.8 + 238 + 265 + ] + /Subtype /Widget + /T (Height Formatted Field) + /TU + /Type /Annot + /V () +>> +%% Object stream: object 15, index 13; original object ID: 14 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 164.1 + 221.4 + 175.4 + 232.3 + ] + /Subtype /Widget + /T (Driving License Check Box) + /TU + /Type /Annot + /V /Yes +>> +%% Object stream: object 16, index 14; original object ID: 15 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 57.7 + 177.6 + 69 + 188.5 + ] + /Subtype /Widget + /T (Language 1 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 17, index 15; original object ID: 16 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 154.8 + 177.6 + 166.1 + 188.5 + ] + /Subtype /Widget + /T (Language 2 Check Box) + /Type /Annot + /V /Yes +>> +%% Object stream: object 18, index 16; original object ID: 17 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 251.8 + 177.6 + 263.1 + 188.5 + ] + /Subtype /Widget + /T (Language 3 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 19, index 17; original object ID: 18 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 342.8 + 177.6 + 354.1 + 188.5 + ] + /Subtype /Widget + /T (Language 4 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 20, index 18; original object ID: 19 +<< + /AP << + /D << + /Off 68 0 R + /Yes 70 0 R + >> + /N << + /Yes 72 0 R + >> + >> + /AS /Off + /DA (0 0 0 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 27 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 22 0 R + /Rect [ + 439.8 + 177.6 + 451.1 + 188.5 + ] + /Subtype /Widget + /T (Language 5 Check Box) + /Type /Annot + /V /Off +>> +%% Object stream: object 21, index 19; original object ID: 20 +<< + /AP << + /N 74 0 R + >> + /DA (0 0 0 rg /F3 11 Tf) + /DR << + /Font 26 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /I [ + 6 + ] + /Opt [ + + + + + + + + + + + ] + /P 22 0 R + /Rect [ + 165.7 + 143.4 + 322.8 + 157.6 + ] + /Subtype /Widget + /T (Favourite Colour List Box) + /TU + /Type /Annot + /V +>> +%% Object stream: object 22, index 20; original object ID: 23 +%% Page 1 +<< + /Annots [ + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 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 + 44 0 R + 45 0 R + ] + /Contents 76 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /ParaLinkXML 78 0 R + /ParaXML 80 0 R + /Parent 23 0 R + /Resources 4 0 R + /Type /Page +>> +%% Object stream: object 23, index 21; original object ID: 24 +<< + /Count 1 + /Kids [ + 22 0 R + ] + /MediaBox [ + 0 + 0 + 595 + 842 + ] + /Resources 4 0 R + /Type /Pages +>> +%% Object stream: object 24, index 22; original object ID: 25 +<< + /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 +>> +%% Object stream: object 25, index 23; original object ID: 26 +<< + /AIS false + /BM /Normal + /CA 1 + /SMask /None + /ca 1 +>> +%% Object stream: object 26, index 24; original object ID: 27 +<< + /ArialMT 28 0 R + /F2 29 0 R + /F3 28 0 R + /FXF1 28 0 R + /Helv 30 0 R + /ZaDi 27 0 R +>> +%% Object stream: object 27, index 25; original object ID: 54 +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 28, index 26; original object ID: 63 +<< + /BaseFont /ArialMT + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 42 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 277 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +%% Object stream: object 29, index 27; original object ID: 64 +<< + /BaseFont /CAAAAA+ArialMT + /FirstChar 0 + /FontDescriptor 43 0 R + /LastChar 50 + /Subtype /TrueType + /ToUnicode 82 0 R + /Type /Font + /Widths [ + 750 + 610 + 556 + 222 + 500 + 277 + 556 + 556 + 556 + 500 + 833 + 556 + 222 + 556 + 277 + 556 + 333 + 556 + 666 + 722 + 610 + 277 + 722 + 500 + 556 + 556 + 277 + 722 + 722 + 500 + 500 + 777 + 333 + 556 + 556 + 556 + 333 + 277 + 500 + 333 + 277 + 722 + 777 + 277 + 666 + 556 + 556 + 556 + 666 + 666 + 500 + ] +>> +%% Object stream: object 30, index 28; original object ID: 65 +<< + /BaseFont /Helvetica + /Encoding 24 0 R + /Name /Helv + /Subtype /Type1 + /Type /Font +>> +%% Object stream: object 31, index 29; original object ID: 66 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 32, index 30; original object ID: 67 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 33, index 31; original object ID: 68 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 34, index 32; original object ID: 69 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 35, index 33; original object ID: 70 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 36, index 34; original object ID: 71 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 37, index 35; original object ID: 72 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 38, index 36; original object ID: 73 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 39, index 37; original object ID: 74 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 40, index 38; original object ID: 75 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 41, index 39; original object ID: 76 +<< + /Encoding << + /PDFDocEncoding 24 0 R + >> + /Font 26 0 R + /ProcSet [ + /PDF + /Text + /ImageC + /ImageI + /ImageB + ] + /XObject << + >> +>> +%% Object stream: object 42, index 40; original object ID: 77 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontName /ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 43, index 41; original object ID: 78 +<< + /Ascent 905 + /CapHeight 1005 + /Descent -211 + /Flags 4 + /FontBBox [ + -664 + -324 + 2000 + 1006 + ] + /FontFile2 84 0 R + /FontName /CAAAAA+ArialMT + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +%% Object stream: object 44, index 42; original object ID: 83 +<< + /AP << + /N 86 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 22 0 R + /Popup 45 0 R + /Rect [ + 235 + 703 + 253 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +%% Object stream: object 45, index 43; original object ID: 84 +<< + /F 28 + /Open false + /Parent 44 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endstream +endobj + +%% Original object ID: 21 0 +46 0 obj +<< + /Subtype /XML + /Type /Metadata + /Length 47 0 R +>> +stream + + + + + 2013-06-29T20:48:53+02:00 + Writer + 2016-03-31T08:04:39+03:00 + 2016-03-30T09:23:15-07:00 + PDF Form + OpenOffice.org 3.4 + application/pdf + + + PDF Form Example + + + uuid:2b2730cc-fa59-48a2-aef6-aaaa64179a3b + uuid:246f8744-738f-478b-9f5c-860c5c4ffcc5 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj + +%QDF: ignore_newline +47 0 obj +3352 +endobj + +%% Original object ID: 28 0 +48 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 31 0 R + /Length 49 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(ABC) Tj +ET +Q +EMC +endstream +endobj + +49 0 obj +89 +endobj + +%% Original object ID: 30 0 +50 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 32 0 R + /Length 51 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 148 12.2 re +W +n +BT +0 0 0 rg +1 3.28299 Td +/FXF1 11 Tf +(DEF) Tj +ET +Q +EMC +endstream +endobj + +51 0 obj +89 +endobj + +%% Original object ID: 32 0 +52 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 33 0 R + /Length 53 0 R +>> +stream +q +Q +endstream +endobj + +53 0 obj +4 +endobj + +%% Original object ID: 34 0 +54 0 obj +<< + /BBox [ + 0 + 0 + 68.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 34 0 R + /Length 55 0 R +>> +stream +q +Q +endstream +endobj + +55 0 obj +4 +endobj + +%% Original object ID: 36 0 +56 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Resources 35 0 R + /Length 57 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +%QDF: ignore_newline +57 0 obj +12 +endobj + +%% Original object ID: 38 0 +58 0 obj +<< + /BBox [ + 0 + 0 + 72.8 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 36 0 R + /Length 59 0 R +>> +stream +q +Q +endstream +endobj + +59 0 obj +4 +endobj + +%% Original object ID: 40 0 +60 0 obj +<< + /BBox [ + 0 + 0 + 150.1 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 37 0 R + /Length 61 0 R +>> +stream +q +Q +endstream +endobj + +61 0 obj +4 +endobj + +%% Original object ID: 42 0 +62 0 obj +<< + /BBox [ + 0 + 0 + 150 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 38 0 R + /Length 63 0 R +>> +stream +q +Q +endstream +endobj + +63 0 obj +4 +endobj + +%% Original object ID: 44 0 +64 0 obj +<< + /BBox [ + 0 + 0 + 75.5 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 39 0 R + /Length 65 0 R +>> +stream +q +Q +/Tx BMC +q +1 1 60.5 12.2 re +W +n +BT +0 0 0 rg +1 3.24501 Td +/FXF1 11 Tf +(Man) Tj +ET +Q +EMC +endstream +endobj + +65 0 obj +90 +endobj + +%% Original object ID: 46 0 +66 0 obj +<< + /BBox [ + 0 + 0 + 72.3 + 14.2 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 40 0 R + /Length 67 0 R +>> +stream +q +Q +endstream +endobj + +67 0 obj +4 +endobj + +%% Original object ID: 48 0 +68 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +endstream +endobj + +69 0 obj +30 +endobj + +%% Original object ID: 50 0 +70 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +0.749023 g +0 0 11.3 10.9 re +f +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +71 0 obj +95 +endobj + +%% Original object ID: 52 0 +72 0 obj +<< + /BBox [ + 0 + 0 + 11.3 + 10.9 + ] + /FormType 1 + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + /ProcSet [ + /PDF + ] + >> + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +q +1 1 9.3 8.9 re +W +n +0 G +2.2 8.9 m +9.1 2 l +9.1 8.9 m +2.2 2 l +s +Q +endstream +endobj + +73 0 obj +65 +endobj + +%% Original object ID: 55 0 +74 0 obj +<< + /BBox [ + 0 + 0 + 157.1 + 14.2 + ] + /Resources 41 0 R + /Length 75 0 R +>> +stream +1 1 0.6 rg +0 0 156.9 14.4 re f* +/Tx BMC +BT +0 0 0 rg /F3 11 Tf +0 g +2 2.106 Td +(Blue) Tj +ET +EMC +endstream +endobj + +75 0 obj +95 +endobj + +%% Contents for page 1 +%% Original object ID: 57 0 +76 0 obj +<< + /Length 77 0 R +>> +stream +q +BT +/DeviceRGB cs 0 0 0 scn /DeviceGray CS 0 SCN 0.1 w /F2 11 Tf 1 0 0 1 0 0 Tm 56.8 460.8 TD[(*)-4<03>4<1d08>1<07>-7<05>4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 424.3 TD[<14>1<06>1(\n)-2<03>-4(\f)-4<17>9<05>-4<16>4<06>1(\n)-2(\b)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 395.4 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(-)1(+)]TJ +1 0 0 1 0 0 Tm 56.8 371.6 TD[(,)2<18>1<18>1<10>-2(\b)1<0404>-8<05>4(.)1(+)]TJ +1 0 0 1 0 0 Tm 450 351.6 TD[<05>]TJ +1 0 0 1 0 0 Tm 147.8 179.1 TD[<05>4<05>]TJ +1 0 0 1 0 0 Tm 244.8 179.1 TD[<05>-4<05>]TJ +1 0 0 1 0 0 Tm 432.8 179.1 TD[<05>-4<05>]TJ +ET +Q +/DeviceRGB cs 1 1 0.6 scn /DeviceRGB CS 0 0 0 SCN 0 J [] 0 d 0 j 0.1 w 10 M /RelativeColorimetric ri 1 i /FXE1 gs 163.1 450.9 155.3 19.9 re +B* +163.1 418.3 155.3 19.9 re +B* +endstream +endobj + +77 0 obj +747 +endobj + +%% Original object ID: 59 0 +78 0 obj +<< + /SubType /XML + /Type /ParaLinkXML + /Length 79 0 R +>> +stream + +endstream +endobj + +79 0 obj +55 +endobj + +%% Original object ID: 61 0 +80 0 obj +<< + /SubType /XML + /Type /ParaXML + /Length 81 0 R +>> +stream + + +endstream +endobj + +81 0 obj +84 +endobj + +%% Original object ID: 79 0 +82 0 obj +<< + /Length 83 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +50 beginbfchar +<01> <0054> +<02> <0068> +<03> <0069> +<04> <0073> +<05> <0020> +<06> <0061> +<07> <006E> +<08> <0065> +<09> <0078> +<0A> <006D> +<0B> <0070> +<0C> <006C> +<0D> <006F> +<0E> <0066> +<0F> <0075> +<10> <0072> +<11> <0062> +<12> <0050> +<13> <0044> +<14> <0046> +<15> <002E> +<16> <004E> +<17> <0079> +<18> <0064> +<19> <0067> +<1A> <0074> +<1B> <0048> +<1C> <0077> +<1D> <0076> +<1E> <0063> +<1F> <004F> +<20> <0028> +<21> <0033> +<22> <0034> +<23> <0030> +<24> <0029> +<25> <002C> +<26> <006B> +<27> <002D> +<28> <0049> +<29> <0043> +<2A> <0047> +<2B> <003A> +<2C> <0041> +<2D> <0031> +<2E> <0032> +<2F> <004C> +<30> <0053> +<31> <0045> +<32> <00E7> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +83 0 obj +918 +endobj + +%% Original object ID: 81 0 +84 0 obj +<< + /Length1 37060 + /Length 85 0 R +>> +stream +true @cmapY:.Rcvt .0fpgm bxRnglyf!$IheadNp7X6hheaXP$hmtxXtlocab YDjmaxp +Y nameHxY+post* prep +  +  !"#$%&'()*+,-./012&iiiD|ZRRD/W~ "APoLu\7LnpX cc-\ @Wr]g!wM+Le|C]h5G!\M-x ,I?)9Io#o 2@z1UW~~FB/OV)or,11di+ &  sC_a^m8Q[h|ATkhqBBSsX2Q|  !U{{~!""#rw"+5<Yoq22 *<Qaajx *>LQ_jqx !".5BOO^eq *G]ety +"&+G_u\ +m6>PQ]`E3-_dM?}$x;;N&;MKSj1<ex ~ 90+ +P >X!q}E ++NT2N7kwdg3|)n*i9$]u +MRhm}qyXgV%|2!r\/AMrLjUxiWnTgeRZgn-|{pLFF-S%>S?("bJmH3NFpyQ +hlOa+@CUTA@?>=<;:987543210/.-,+*)('&%$#"!  + ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,#p>#pE: -,E#DE#D-, E%EadPQXED!!Y-,Cc#b#B+-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+#Dz-,E+#D-,CXE+#DzEi #D QX+#Dz!zYY-,-,%F`F@aH-,KS \XYXY-, %E#DE#DEe#E %`j #B#hj`a Ry!@E TX#!?#YaDRy@ E TX#!?#YaD-,C#C -,C#C -, C#C -, C#Ce -,C#Ce -,C#Ce -,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KdQXEi C`:!!!Y-,%# `#-,%# a#-,%-, ` <<-, a <<-,++**-,CC -,>**-,5-,v##p #E PXaY:/-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,KTX8!!Y-,CXY-,CXY-,KTC\ZX8!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,C\X %% d#dadQX%% F`H F`HY +!!!!Y-,KS#KQZX:+!!Y-,KS#KQZX;+!!Y-,KS#KQZC\ZX8!!Y-, KT&KTZ +C\ZX8!!Y-,KRX%%I%%Ia TX! CUX%%88Y@TX CTX%8Y CTX%%88%8YYYY!!!!-,F#F`F# F`ab# #ŠpE` PXaFY`h:-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,CTXKS#KQZX8!!Y!!!!Y-!!%!! @ 0@  s  / @ UU U U U Us+++++++]<]<]<<??<<10!!5!! a4@ U%5E @:4  + % @364  @ U@U (U U @ U  U  U @ U U @ U +U U N@464p%@364 U@U U U U@U U UNGP+++++++++]q+<<]q+++++++++++++]q+?0@{"": J D$V"e"| $, 0K,U2 +\\ \ +\ \ \ jj j +j j j &''&$'$)6$Z +Y d&d(t#t$$ + (,0 + '(&&( U" U# U$ U( U" U# U$ U@9Z'% + & .@", U?O_oU@ U@4@4.\l UU@U. $@42@/UU U U U U U U[$*9** U*U* U* U*2@!'*4`22?222$ U U U U @U $ U U U@ U U U"?O147+N]qM+++++++++++rN]q+++++q+M+++++++++r?+++?q9/++]qr+]qr+99910Cy@@'-#,&"  (- !#"# ) +(' ++++<<+<<+++++*++++++++++]q]rq]732654'&'.54676632&&#"#"&?{|x5%ƙOA8*S}Z si|j/Vi}=kreD=#%2INGy(+H{gR\R7# +$3A|\ZWJ>(7-@, * *) **9 67:*I*] ]*j i*`0 ) ( U'@ U((((D@ U U U5@U U+,*499,IH,VY+fi+v +74/$42!_)o))/? UU@U UU@ UE' +2 )aa U%!$U$@ U$ U$ U$ U$@ U$U$ U$[@'@&& &0&&9U&ֶU&19@ #409999@AU%"/$?U U U U U U U18+++++++]q+]q+++]++++++++<+??+?9/+++++]qq999910]++++q]++q%#"&546676767654'&#"'>32#&326765}@@< 4y  +  $@U@ U (U U @ U  U " U @ U U @ U +U @ U @364   N@464p3%UU@U U + U U@U U U@364 N]q++++++++++<<<]q+]q+++++++++++++<<?S@U]] U eko e  U@R U U'1:1AMAQ\Ramaxx P`p +U@U @ ܴ U U U @ '*4  %&4@A#403$@$*4?O U U U U U U47+N++++++]+MNq++q++++M?]++?9/]#ǹ U U @M 4%    #  # # +%%%%%UU@ U U@ U U UU U U]@ %U@ U U@ U U +U@ U U U]@3#%?O@U U U U UU@U + U U$%x!GP++N+++++++++]qrpXdL:&N_bX'l_:xxPi!>b@ -=K?  ) #22Bp ::JJY[ \\jk imk  #++5:FJZ   $ + +@ +` + + @ U @ U +@ U + U + U + U +U +@# U +t33%?O@U U U U UU@U U UG7+N+++++++++]qr k U U@s U U + GHVYgi4::5EKKE\\ R]]Rmm dmmdw  [TT +[ lee +l + $@ U@ U@U U U U UU U@$%40 1@I#40$ U U U U U U U U@$%4?147+]+++++++++q+]]]++++++++++??10q]qC\X@ SS bb ]Y++++7632#"32654&#"D{'v  @ /0@p  ( @(4   ++ +@%184@+4@U@ UU(U"U, U@ U UUU U! ++++++++++++++]++<<<]??<<<@;/#4CSft      + (" "%@364 U@U U UU@U U UNG+++++++++]q+<]r???999999ɇ}10]r]336632&#">i?[^>BB;^&qH:'G?`r@ $5E?"3Bp:<<LL]] X]^jl hnn  //0?@LPf  + $  @ ` @ U U  U U U U U @/ U t3 U U3%?OU@U U U U UU@U U UG7+N++++++++++]qr*o@` , %L E , &,#9 6J FVX h +.#,'>#>'L',,6!6)?,F F!E)T!T)ic!c)`,,'!#'(@ 0`p}@2 +E" +3%3 +%@`,@ U,@ UU@UU U@ UU U@J Ut%"$?O U U" U U U U+,t!4P++N++++++]qM++++++++++]q<<??]??<10]q]q32676'#"5463253#"&32654&#"f 2Ct}vnэze۠Ꙧ}|zxXQ%2dZ7<ݘjx*$*ع +#&4 @A#&4 + + + "" % E E`p UUU U UU@ U U Uj6f++++++++++]q<<<??<<993310]++%#"&&5#5373#32LeclM," ع @4 + + + +  U@ U U@ U U]    @ +4 UU U@ U U U@ U]  P ` p ;Y+]q++++++++]<<]+++++<<?ZCTX@4 @Pp  U U U U/++++??]2]210@G CCSS``    +jiju p +  "_o@y0@P`p    $ U"$ +@ U@UH U UI$? U +U U14++++]q++++]rKS#KQZX8Yr+r??9/9/]]10]q]qY#"4632&&#"326<r鉭Zj +kl‚c@P   @OO@XX WU_Z_VW & U U U U U@! U&  U Uc\+N++]MN]++++++]M??10]q]]]q!2#"$7324&#"c6FymZ4 |Q`=@ +'33@^ +]??rs^sg0pMQOa7&8@  << +|G_<DZCTX@  U U @ U @UUU U@  +  9/9//++++?+++210CTX@  U @ U @ UU + U@ U  9/9/++/++?++210@6;;I Y Tk dzz  @ + O @ +s@!#4 8@ ?_o$+]+<?<&37@U/0 H+)++]]qr+5k[A : OZ@ + : vM>Wy+? @^&>k +U4Ks uS_<'*Q& >NC40s?9sJssKssD9ssV9!sFsB9$P9c|sVssU|9A9f9m9Vss<sV\VPkl> +A "  4Mz*[x !N"c"#$_$$481/V +FN +^ +t~&h  + b f< \V16/=l q}b E +a> 1 3 Z.]     +  ^  +G Q i w &; a + b f   u \') + ' '  ' ''' '' '(( ( (+$(7*(E-(S + (S (_ + (k  (wTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormaloby ejnnormalStandardTypeface The Monotype Corporation plc. Data The Monotype Corporation plc/Type Solutions Inc. 1990-1992. All Rights ReservedArialRegularMonotype:Arial Regular:Version 3.00 (Microsoft)ArialVersion 3.00ArialMTArial Trademark of The Monotype Corporation plc registered in the US Pat & TM Off. and elsewhere.Monotype TypographyMonotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982Contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.http://www.monotype.com/html/mtname/ms_arial.htmlhttp://www.monotype.com/html/mtname/ms_welcome.htmlNOTIFICATION OF LICENSE AGREEMENT + +This typeface is the property of Monotype Typography and its use by you is covered under the terms of a license agreement. You have obtained this typeface software either directly from Monotype or together with software distributed by one of Monotype's licensees. + +This software is a valuable asset of Monotype. Unless you have entered into a specific license agreement granting you additional rights, your use of this software is limited to your workstation for your own publishing use. You may not copy or distribute this software. + +If you have any question concerning your rights you should review the license agreement you received with the software or contact Monotype for a copy of the license agreement. + +Monotype can be contacted at: + +USA - (847) 718-0400 UK - 01144 01737 765959 +http://www.monotype.comhttp://www.monotype.com/html/type/license.htmlNormalNormaaliNormalNormlNormaleStandaardNormalNormalnyNormal1KG=K9NormlneNormalNormalNavadnothngNormalNormalNormalNormal'TA"/O__o@3@3@jl2@a3@\]2@WY2@MQ2@DI2@:3@142@.B2@',2@%2 + 2Ap@$&2d 2A +d2AJ?/?_?Ӳ792Ӳ+/2Ӳ%2Ӳ2Ӳ2Ҳ) +A0 P`p`p   0@Pв +ϲ&BAƲA /$A/?O_"dA @j@&CI2@ CI2@&:=2@ :=2 &@&2@ 2@&2@ 2@&2@ 2@&z2@ z2@&lv2@ lv2@&dj2@ dj2@&Z_2@ Z_2@&OT2@ OT2$'7Ok Aw0w@wPwwww**@+)*Re~<^+@8@@89@s&%$ 7@!I3@!E3@!AB2@!=>2A!?!!!!!@! "2@!2@"*?2@!.:2oAH/`?_"""/"?"_"""!!o!!!/!?!O!""!!@+HO7 A &A9&%8s542V&, /& 8ʸ&~&}Gke&^s@R&ZHDb@s?^<&50+*V)#U7h@,XO62,!  +@+JKKSBKcKb S# +QZ#BKKTB8+KR7+KP[XY8+TXCX(YYv??>9FD>9FD>9FD>9FD>9F`D>9F`D+++++++++++++++++++++++KSXY2KSXYKS \XEDEDYX>ERX>DYYKVS \X ED&EDYX ERX DYYKS \X%ED$EDYX %ERX% DYYKS \Xs$ED$$EDYX sERXs DYYKS \X%ED%%EDYXERXDYYK>S \XEDEDYXERXDYYKVS \XED/EDYXERXDYYKS \XEDEDYX ERX DYY+++++++++++++++++++++++++++++++++++++++++eB++;Yc\Ee#E`#Ee`#E`vhb cYEe#E &`bch &aeY#eDc#D ;\Ee#E &`bch &ae\#eD;#D\ETX\@eD;@;E#aDYGP47Ee#E`#Ee`#E`vhb 4PEe#E &`bch &aeP#eD4#D G7Ee#E &`bch &ae7#eDG#D7ETX7@eDG@GE#aDYKSBKPXBYC\XBY +CX`!YBp>CX;!~ +Y #B #BCX-A-A +Y#B#BCX~;! +Y#B#B+tusuEiDEiDEiDsssstustu++++tu+++++sssssssssssssssssssssssss+++E@aDstK*SK?QZXE@`DYK:SK?QZX E`DYK.SK:QZXE@`DYK.SK> + >> + >> + /Subtype /Form + /Type /XObject + /Length 87 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +87 0 obj +929 +endobj + +88 0 obj +<< + /Type /XRef + /Length 445 + /W [ 1 3 1 ] + /Info 3 0 R + /Root 2 0 R + /Size 89 + /ID [<5e0a553555622a0516e9877ca55217a6><52999bf878726e108bf91e4deaeb13b5>] +>> +stream +  +    !"#$%&'()*+LZ"ZT[Y[\\]n]^N^}__G_`'`aaabccceeJffhhFiifllmPmn.n^r-r^| +endstream +endobj + +startxref +67729 +%%EOF