summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-12-24 13:12:32 +0100
committerJay Berkenbilt <ejb@ql.org>2023-12-24 13:36:07 +0100
commit4ca185fd96dfd3c7a8d89d3afd8093a26acf178b (patch)
treea50f15d2e151cd9f5b18bae2dc5405f650795186
parent2f37633b923e0294acd894454a95d2a9ee1d36a9 (diff)
downloadqpdf-4ca185fd96dfd3c7a8d89d3afd8093a26acf178b.tar.zst
Remove --disable-signatures; incorporate into --remove-restrictions
Rather than adding yet another flag that is almost never useful on its own, just have --remove-restrictions disable digital signatures. The operations are still separate in the API.
-rw-r--r--ChangeLog8
-rw-r--r--include/qpdf/QPDF.hh4
-rw-r--r--include/qpdf/QPDFAcroFormDocumentHelper.hh3
-rw-r--r--include/qpdf/QPDFJob.hh1
-rw-r--r--include/qpdf/auto_job_c_main.hh1
-rw-r--r--job.sums16
-rw-r--r--job.yml2
-rw-r--r--libqpdf/QPDFAcroFormDocumentHelper.cc1
-rw-r--r--libqpdf/QPDFJob.cc3
-rw-r--r--libqpdf/QPDFJob_config.cc7
-rw-r--r--libqpdf/qpdf/auto_job_help.hh49
-rw-r--r--libqpdf/qpdf/auto_job_init.hh1
-rw-r--r--libqpdf/qpdf/auto_job_json_init.hh3
-rw-r--r--libqpdf/qpdf/auto_job_schema.hh1
-rw-r--r--manual/cli.rst36
-rw-r--r--manual/qpdf.114
-rw-r--r--manual/release-notes.rst10
-rw-r--r--qpdf/qtest/qpdf/minimal-signed-restricted.pdfbin166013 -> 135790 bytes
-rw-r--r--qpdf/qtest/qpdf/minimal-signed-restrictions-removed.pdf2466
19 files changed, 1671 insertions, 955 deletions
diff --git a/ChangeLog b/ChangeLog
index 43ba73dd..1b11bf87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,10 +4,10 @@
official installers will offer to modify PATH when installing
qpdf. Fixes #1054.
- * Add QPDFAcroFormDocumentHelper::disableDigitalSignatures and the
- --disable-signatures command-line argument. This disables any
- digital signature fields, leaving their visual representations
- intact.
+ * Add QPDFAcroFormDocumentHelper::disableDigitalSignatures, which
+ disables any digital signature fields, leaving their visual
+ representations intact. The --remove-restrictions command-line
+ argument now calls this. Fixes #1015.
2023-12-22 Jay Berkenbilt <ejb@ql.org>
diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh
index 0d8b5f91..615803d3 100644
--- a/include/qpdf/QPDF.hh
+++ b/include/qpdf/QPDF.hh
@@ -600,7 +600,9 @@ class QPDF
// Return the previously computed or retrieved encryption key for this file
QPDF_DLL
std::string getEncryptionKey() const;
- // Remove security restrictions associated with digitally signed files.
+ // Remove security restrictions associated with digitally signed files. From qpdf 11.7.0, this
+ // is called by QPDFAcroFormDocumentHelper::disableDigitalSignatures and is more useful when
+ // called from there than when just called by itself.
QPDF_DLL
void removeSecurityRestrictions();
diff --git a/include/qpdf/QPDFAcroFormDocumentHelper.hh b/include/qpdf/QPDFAcroFormDocumentHelper.hh
index f9ad0091..9e0ad51e 100644
--- a/include/qpdf/QPDFAcroFormDocumentHelper.hh
+++ b/include/qpdf/QPDFAcroFormDocumentHelper.hh
@@ -164,7 +164,8 @@ class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
void generateAppearancesIfNeeded();
// Disable Digital Signature Fields. Remove all digital signature fields from the document,
- // leaving any annotation showing the content of the field intact.
+ // leaving any annotation showing the content of the field intact. This also calls
+ // QPDF::removeSecurityRestrictions.
QPDF_DLL
void disableDigitalSignatures();
diff --git a/include/qpdf/QPDFJob.hh b/include/qpdf/QPDFJob.hh
index 21045019..b9c8ba50 100644
--- a/include/qpdf/QPDFJob.hh
+++ b/include/qpdf/QPDFJob.hh
@@ -557,7 +557,6 @@ class QPDFJob
bool linearize{false};
bool decrypt{false};
bool remove_restrictions{false};
- bool disable_signatures{false};
int split_pages{0};
bool progress{false};
std::function<void(int)> progress_handler{nullptr};
diff --git a/include/qpdf/auto_job_c_main.hh b/include/qpdf/auto_job_c_main.hh
index 024f8469..6c661404 100644
--- a/include/qpdf/auto_job_c_main.hh
+++ b/include/qpdf/auto_job_c_main.hh
@@ -11,7 +11,6 @@ QPDF_DLL Config* checkLinearization();
QPDF_DLL Config* coalesceContents();
QPDF_DLL Config* decrypt();
QPDF_DLL Config* deterministicId();
-QPDF_DLL Config* disableSignatures();
QPDF_DLL Config* externalizeInlineImages();
QPDF_DLL Config* filteredStreamData();
QPDF_DLL Config* flattenRotation();
diff --git a/job.sums b/job.sums
index 9d99eef8..7301dae0 100644
--- a/job.sums
+++ b/job.sums
@@ -4,17 +4,17 @@ generate_auto_job f64733b79dcee5a0e3e8ccc6976448e8ddf0e8b6529987a66a7d3ab2ebc10a
include/qpdf/auto_job_c_att.hh 4c2b171ea00531db54720bf49a43f8b34481586ae7fb6cbf225099ee42bc5bb4
include/qpdf/auto_job_c_copy_att.hh 50609012bff14fd82f0649185940d617d05d530cdc522185c7f3920a561ccb42
include/qpdf/auto_job_c_enc.hh 28446f3c32153a52afa239ea40503e6cc8ac2c026813526a349e0cd4ae17ddd5
-include/qpdf/auto_job_c_main.hh 36b5ff48ae0dca67415efececa4470cda45364b10d0905e7de9971a2af1795ea
+include/qpdf/auto_job_c_main.hh dbfc221d1533120d1aa9c361d8d2483dea5fcb1c0fd95144d98d305e64ed32a6
include/qpdf/auto_job_c_pages.hh b3cc0f21029f6d89efa043dcdbfa183cb59325b6506001c18911614fe8e568ec
include/qpdf/auto_job_c_uo.hh ae21b69a1efa9333050f4833d465f6daff87e5b38e5106e49bbef5d4132e4ed1
-job.yml 3c030ce21138967b8a6768b386c0d3bfab9ef41cafbb6ec52f30a81194a7421d
+job.yml 4f89fc7b622df897d30d403d8035aa36fc7de8d8c43042c736e0300d904cb05c
libqpdf/qpdf/auto_job_decl.hh 9c6f701c29f3f764d620186bed92685a2edf2e4d11e4f4532862c05470cfc4d2
-libqpdf/qpdf/auto_job_help.hh 72ae2354911aa353a0b11ca352e6ac6750c38e8c32d0d5ac6b3382ade1719c80
-libqpdf/qpdf/auto_job_init.hh 4413804cc784f288245039af053bfe74bc2755e994308220d1939e452011e5a5
+libqpdf/qpdf/auto_job_help.hh 62c40dcd827fcea261a9f432f457aac1331731199ee3530e40de763811ba158e
+libqpdf/qpdf/auto_job_init.hh b4c2b3724fba61f1206fd3bae81951636852592f67a63ef9539839c2c5995065
libqpdf/qpdf/auto_job_json_decl.hh 06caa46eaf71db8a50c046f91866baa8087745a9474319fb7c86d92634cc8297
-libqpdf/qpdf/auto_job_json_init.hh 7682e1e3bc465a3818036e1831aaf205478cc2e47ba5abe483d37c037b6bcf56
-libqpdf/qpdf/auto_job_schema.hh 039ee828cf91ece434f0c57706aecc40798e5537308737e01efc8f61eb20685f
+libqpdf/qpdf/auto_job_json_init.hh f5acb9aa103131cb68dec0e12c4d237a6459bdb49b24773c24f0c2724a462b8f
+libqpdf/qpdf/auto_job_schema.hh b53c006fec2e75b1b73588d242d49a32f7d3db820b1541de106c5d4c27fbb4d9
manual/_ext/qpdf.py 6add6321666031d55ed4aedf7c00e5662bba856dfcd66ccb526563bffefbb580
-manual/cli.rst e628a6e2853871679e156e63a53c493d18a38ef87cec8d44e3862401d3c8bde4
-manual/qpdf.1 d4a1b304e86c4e02fab5b22fe324235dffbfb50746cff4aec9b2787f12a4b2f6
+manual/cli.rst f361df89dd212daf65e82df8b7b1f8a5e3554043c545f8e7cb14ba5ded21e04e
+manual/qpdf.1 d44042b41642609628690560aad79845f0e9eb742624543c6fbb93f9ae065860
manual/qpdf.1.in 436ecc85d45c4c9e2dbd1725fb7f0177fb627179469f114561adf3cb6cbb677b
diff --git a/job.yml b/job.yml
index 9849c16d..d342e7a2 100644
--- a/job.yml
+++ b/job.yml
@@ -104,7 +104,6 @@ options:
- copy-attachments-from
- decrypt
- deterministic-id
- - disable-signatures
- empty
- encrypt
- externalize-inline-images
@@ -320,7 +319,6 @@ json:
decode-level:
decrypt:
deterministic-id:
- disable-signatures:
static-aes-iv:
static-id:
no-original-object-ids:
diff --git a/libqpdf/QPDFAcroFormDocumentHelper.cc b/libqpdf/QPDFAcroFormDocumentHelper.cc
index 5fdd20ba..fb096e5e 100644
--- a/libqpdf/QPDFAcroFormDocumentHelper.cc
+++ b/libqpdf/QPDFAcroFormDocumentHelper.cc
@@ -418,6 +418,7 @@ QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded()
void
QPDFAcroFormDocumentHelper::disableDigitalSignatures()
{
+ qpdf.removeSecurityRestrictions();
std::set<QPDFObjGen> to_remove;
auto fields = getFormFields();
for (auto& f: fields) {
diff --git a/libqpdf/QPDFJob.cc b/libqpdf/QPDFJob.cc
index 7b007c08..b2f905a1 100644
--- a/libqpdf/QPDFJob.cc
+++ b/libqpdf/QPDFJob.cc
@@ -2127,9 +2127,6 @@ QPDFJob::handleTransformations(QPDF& pdf)
}
};
if (m->remove_restrictions) {
- pdf.removeSecurityRestrictions();
- }
- if (m->disable_signatures) {
make_afdh();
afdh->disableDigitalSignatures();
}
diff --git a/libqpdf/QPDFJob_config.cc b/libqpdf/QPDFJob_config.cc
index 922d46e5..4798ce9b 100644
--- a/libqpdf/QPDFJob_config.cc
+++ b/libqpdf/QPDFJob_config.cc
@@ -145,13 +145,6 @@ QPDFJob::Config::deterministicId()
}
QPDFJob::Config*
-QPDFJob::Config::disableSignatures()
-{
- o.m->disable_signatures = true;
- return this;
-}
-
-QPDFJob::Config*
QPDFJob::Config::encryptionFilePassword(std::string const& parameter)
{
o.m->encryption_file_password = QUtil::make_shared_cstr(parameter);
diff --git a/libqpdf/qpdf/auto_job_help.hh b/libqpdf/qpdf/auto_job_help.hh
index 9147b601..da6520c5 100644
--- a/libqpdf/qpdf/auto_job_help.hh
+++ b/libqpdf/qpdf/auto_job_help.hh
@@ -157,15 +157,10 @@ encrypted. Normally qpdf preserves whatever encryption was
present on the input file. This option overrides that behavior.
)");
ap.addOptionHelp("--remove-restrictions", "transformation", "remove security restrictions from input file", R"(Remove restrictions associated with digitally signed PDF files.
-This may be combined with --decrypt and --disable-signatures to
-allow free editing of previously signed/encrypted files. This
-option invalidates the signature but leaves its visual
-appearance intact. See also --disable-signatures.
-)");
-ap.addOptionHelp("--disable-signatures", "transformation", "disable digital signature fields", R"(Remove all digital signature fields from a file. The appearance
-of the digital signature, if any, will remain on the page, but
-it will no longer be a signature field. See also
---remove-restrictions.
+This may be combined with --decrypt to allow free editing of
+previously signed/encrypted files. This option invalidates and
+disables any digital signatures but leaves their visual
+appearances intact.
)");
ap.addOptionHelp("--copy-encryption", "transformation", "copy another file's encryption details", R"(--copy-encryption=file
@@ -173,14 +168,14 @@ Copy encryption details from the specified file instead of
preserving the input file's encryption. Use --encryption-file-password
to specify the encryption file's password.
)");
-}
-static void add_help_3(QPDFArgParser& ap)
-{
ap.addOptionHelp("--encryption-file-password", "transformation", "supply password for --copy-encryption", R"(--encryption-file-password=password
If the file named in --copy-encryption requires a password, use
this option to supply the password.
)");
+}
+static void add_help_3(QPDFArgParser& ap)
+{
ap.addOptionHelp("--qdf", "transformation", "enable viewing PDF code in a text editor", R"(Create a PDF file suitable for viewing in a text editor and even
editing. This is for editing the PDF code, not the page contents.
All streams that can be uncompressed are uncompressed, and
@@ -290,9 +285,6 @@ Force the output PDF file's PDF version header to be the specified
value, even if the file uses features that may not be available
in that version.
)");
-}
-static void add_help_4(QPDFArgParser& ap)
-{
ap.addHelpTopic("page-ranges", "page range syntax", R"(A full description of the page range syntax, with examples, can be
found in the manual. Summary:
@@ -306,6 +298,9 @@ resulting set of pages, where :odd starts with the first page and
:even starts with the second page. These are odd and even pages
from the resulting set, not based on the original page numbers.
)");
+}
+static void add_help_4(QPDFArgParser& ap)
+{
ap.addHelpTopic("modification", "change parts of the PDF", R"(Modification options make systematic changes to certain parts of
the PDF, causing the PDF to render differently from the original.
)");
@@ -481,13 +476,13 @@ ap.addOptionHelp("--user-password", "encryption", "specify user password", R"(--
Set the user password of the encrypted file.
)");
-}
-static void add_help_5(QPDFArgParser& ap)
-{
ap.addOptionHelp("--owner-password", "encryption", "specify owner password", R"(--owner-password=owner-password
Set the owner password of the encrypted file.
)");
+}
+static void add_help_5(QPDFArgParser& ap)
+{
ap.addOptionHelp("--bits", "encryption", "specify encryption key length", R"(--bits={48|128|256}
Specify the encryption key length. For best security, always use
@@ -659,15 +654,15 @@ the destination pages. See qpdf --help=page-ranges for help
with the page range syntax. The page range may be omitted
if --repeat is used.
)");
-}
-static void add_help_6(QPDFArgParser& ap)
-{
ap.addOptionHelp("--repeat", "overlay-underlay", "overlay/underlay pages to repeat", R"(--repeat=page-range
Specify pages from the overlay/underlay that are repeated after
"from" pages have been exhausted. See qpdf --help=page-ranges
for help with the page range syntax.
)");
+}
+static void add_help_6(QPDFArgParser& ap)
+{
ap.addHelpTopic("attachments", "work with embedded files", R"(It is possible to list, add, or delete embedded files (also known
as attachments) and to copy attachments from other files. See help
on individual options for details. Run qpdf --help=add-attachment
@@ -776,9 +771,6 @@ ap.addOptionHelp("--requires-password", "inspection", "silently test a file's pa
2: the file is not encrypted
3: the file is encrypted, and correct password (if any) has been supplied
)");
-}
-static void add_help_7(QPDFArgParser& ap)
-{
ap.addOptionHelp("--check", "inspection", "partially check whether PDF is valid", R"(Check the structure of the PDF file as well as a number of other
aspects of the file, and write information about the file to
standard output. Note that qpdf does not perform any validation
@@ -786,6 +778,9 @@ of the actual PDF page content or semantic correctness of the
PDF file. It merely checks that the PDF file is syntactically
valid. See also qpdf --help=exit-status.
)");
+}
+static void add_help_7(QPDFArgParser& ap)
+{
ap.addOptionHelp("--show-encryption", "inspection", "information about encrypted files", R"(Show document encryption parameters. Also show the document's
user password if the owner password is given and the file was
encrypted using older encryption formats that allow user
@@ -866,9 +861,6 @@ This option is repeatable. If given, only specified objects will
be shown in the "objects" key of the JSON output. Otherwise, all
objects will be shown.
)");
-}
-static void add_help_8(QPDFArgParser& ap)
-{
ap.addOptionHelp("--json-stream-data", "json", "how to handle streams in json output", R"(--json-stream-data={none|inline|file}
When used with --json, this option controls whether streams in
@@ -880,6 +872,9 @@ object number. The prefix can be overridden with
when --json-output is specified, in which case the default is
"inline".
)");
+}
+static void add_help_8(QPDFArgParser& ap)
+{
ap.addOptionHelp("--json-stream-prefix", "json", "prefix for json stream data files", R"(--json-stream-prefix=file-prefix
When used with --json-stream-data=file, --json-stream-data=file-prefix
diff --git a/libqpdf/qpdf/auto_job_init.hh b/libqpdf/qpdf/auto_job_init.hh
index 5aa280d1..23b55c7f 100644
--- a/libqpdf/qpdf/auto_job_init.hh
+++ b/libqpdf/qpdf/auto_job_init.hh
@@ -43,7 +43,6 @@ this->ap.addBare("coalesce-contents", [this](){c_main->coalesceContents();});
this->ap.addBare("copy-attachments-from", b(&ArgParser::argCopyAttachmentsFrom));
this->ap.addBare("decrypt", [this](){c_main->decrypt();});
this->ap.addBare("deterministic-id", [this](){c_main->deterministicId();});
-this->ap.addBare("disable-signatures", [this](){c_main->disableSignatures();});
this->ap.addBare("empty", b(&ArgParser::argEmpty));
this->ap.addBare("encrypt", b(&ArgParser::argEncrypt));
this->ap.addBare("externalize-inline-images", [this](){c_main->externalizeInlineImages();});
diff --git a/libqpdf/qpdf/auto_job_json_init.hh b/libqpdf/qpdf/auto_job_json_init.hh
index bce96593..135a5159 100644
--- a/libqpdf/qpdf/auto_job_json_init.hh
+++ b/libqpdf/qpdf/auto_job_json_init.hh
@@ -71,9 +71,6 @@ popHandler(); // key: decrypt
pushKey("deterministicId");
addBare([this]() { c_main->deterministicId(); });
popHandler(); // key: deterministicId
-pushKey("disableSignatures");
-addBare([this]() { c_main->disableSignatures(); });
-popHandler(); // key: disableSignatures
pushKey("staticAesIv");
addBare([this]() { c_main->staticAesIv(); });
popHandler(); // key: staticAesIv
diff --git a/libqpdf/qpdf/auto_job_schema.hh b/libqpdf/qpdf/auto_job_schema.hh
index bd238aca..84f4cd4a 100644
--- a/libqpdf/qpdf/auto_job_schema.hh
+++ b/libqpdf/qpdf/auto_job_schema.hh
@@ -16,7 +16,6 @@ static constexpr char const* JOB_SCHEMA_DATA = R"({
"decodeLevel": "control which streams to uncompress",
"decrypt": "remove encryption from input file",
"deterministicId": "generate ID deterministically",
- "disableSignatures": "disable digital signature fields",
"staticAesIv": "use a fixed AES vector",
"staticId": "use a fixed document ID",
"noOriginalObjectIds": "omit original object IDs in qdf",
diff --git a/manual/cli.rst b/manual/cli.rst
index 411fbdf1..457796e3 100644
--- a/manual/cli.rst
+++ b/manual/cli.rst
@@ -736,40 +736,24 @@ Related Options
whatever encryption was present on the input file. This
functionality is not intended to be used for bypassing copyright
restrictions or other restrictions placed on files by their
- producers. See also :qpdf:ref:`--copy-encryption`,
- :qpdf:ref:`--remove-restrictions`, and
- :qpdf:ref:`--disable-signatures`.
+ producers. See also :qpdf:ref:`--copy-encryption` and
+ :qpdf:ref:`--remove-restrictions`.
.. qpdf:option:: --remove-restrictions
.. help: remove security restrictions from input file
Remove restrictions associated with digitally signed PDF files.
- This may be combined with --decrypt and --disable-signatures to
- allow free editing of previously signed/encrypted files. This
- option invalidates the signature but leaves its visual
- appearance intact. See also --disable-signatures.
+ This may be combined with --decrypt to allow free editing of
+ previously signed/encrypted files. This option invalidates and
+ disables any digital signatures but leaves their visual
+ appearances intact.
Remove security restrictions associated with digitally signed PDF
- files. This may be combined with :qpdf:ref:`--decrypt` and
- :qpdf:ref:`--disable-signatures` to allow free editing of
- previously signed/encrypted files. This option invalidates the
- signature but leaves its visual appearance intact. See also
- :qpdf:ref:`--disable-signatures`.
-
-.. qpdf:option:: --disable-signatures
-
- .. help: disable digital signature fields
-
- Remove all digital signature fields from a file. The appearance
- of the digital signature, if any, will remain on the page, but
- it will no longer be a signature field. See also
- --remove-restrictions.
-
- Remove all digital signature fields from a file. The appearance
- of the digital signature, if any, will remain on the page, but
- it will no longer be a signature field. See also
- :qpdf:ref:`--remove-restrictions`.
+ files. This may be combined with :qpdf:ref:`--decrypt` to allow
+ free editing of previously signed/encrypted files. This option
+ invalidates and disables any digital signatures but leaves their
+ visual appearances intact.
.. qpdf:option:: --copy-encryption=file
diff --git a/manual/qpdf.1 b/manual/qpdf.1
index 9ab0fbd5..2ef91031 100644
--- a/manual/qpdf.1
+++ b/manual/qpdf.1
@@ -221,16 +221,10 @@ present on the input file. This option overrides that behavior.
.TP
.B --remove-restrictions \-\- remove security restrictions from input file
Remove restrictions associated with digitally signed PDF files.
-This may be combined with --decrypt and --disable-signatures to
-allow free editing of previously signed/encrypted files. This
-option invalidates the signature but leaves its visual
-appearance intact. See also --disable-signatures.
-.TP
-.B --disable-signatures \-\- disable digital signature fields
-Remove all digital signature fields from a file. The appearance
-of the digital signature, if any, will remain on the page, but
-it will no longer be a signature field. See also
---remove-restrictions.
+This may be combined with --decrypt to allow free editing of
+previously signed/encrypted files. This option invalidates and
+disables any digital signatures but leaves their visual
+appearances intact.
.TP
.B --copy-encryption \-\- copy another file's encryption details
--copy-encryption=file
diff --git a/manual/release-notes.rst b/manual/release-notes.rst
index 61626fb1..963f02b0 100644
--- a/manual/release-notes.rst
+++ b/manual/release-notes.rst
@@ -71,10 +71,8 @@ Planned changes for future 12.x (subject to change):
shell completion and allows creation of passwords that start
with ``-``.
- - Add ``QPDFAcroFormDocumentHelper::disableDigitalSignatures`` and
- the :qpdf:ref:`--disable-signatures` command-line argument. This
- disables any digital signature fields, leaving their visual
- representations intact.
+ - :qpdf:ref:`--remove-restrictions` flag now also disables
+ digital signatures in the file.
- Build Enhancements:
@@ -102,6 +100,10 @@ Planned changes for future 12.x (subject to change):
- Add methods to ``Buffer`` to work more easily and efficiently
with ``std::string``.
+ - Add ``QPDFAcroFormDocumentHelper::disableDigitalSignatures``,
+ which disables any digital signature fields, leaving their
+ visual representations intact.
+
11.6.4: December 10, 2023
- Bug fixes:
diff --git a/qpdf/qtest/qpdf/minimal-signed-restricted.pdf b/qpdf/qtest/qpdf/minimal-signed-restricted.pdf
index b80e2263..3b43ef4c 100644
--- a/qpdf/qtest/qpdf/minimal-signed-restricted.pdf
+++ b/qpdf/qtest/qpdf/minimal-signed-restricted.pdf
Binary files differ
diff --git a/qpdf/qtest/qpdf/minimal-signed-restrictions-removed.pdf b/qpdf/qtest/qpdf/minimal-signed-restrictions-removed.pdf
index af4055d7..440ca13c 100644
--- a/qpdf/qtest/qpdf/minimal-signed-restrictions-removed.pdf
+++ b/qpdf/qtest/qpdf/minimal-signed-restrictions-removed.pdf
@@ -6,8 +6,12 @@
<<
/AcroForm <<
/DA (/Helv 0 Tf 0 g )
+ /DR <<
+ /Font <<
+ /SourceSansPro-Regular 3 0 R
+ >>
+ >>
/Fields [
- 3 0 R
]
/SigFlags 0
>>
@@ -26,27 +30,21 @@ endobj
2 0 obj
<<
/Creator (Acrobat Sign)
- /ModDate (D:20221212035245-08'00')
+ /ModDate (D:20231224043055-08'00')
/Producer (Acrobat Sign)
>>
endobj
3 0 obj
<<
- /F 132
- /FT /Sig
- /MK 7 0 R
- /P 8 0 R
- /Rect [
- 0
- 0
- 0
- 0
+ /BaseFont /GXXHAY+SourceSansPro-Regular
+ /DescendantFonts [
+ 7 0 R
]
- /Subtype /Widget
- /T (SignatureField1)
- /Type /Annot
- /V 9 0 R
+ /Encoding /Identity-H
+ /Subtype /Type0
+ /ToUnicode 8 0 R
+ /Type /Font
>>
endobj
@@ -66,11 +64,11 @@ stream
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<pdf:Producer>Acrobat Sign</pdf:Producer>
- <xmp:ModifyDate>2022-12-12T03:52:45-08:00</xmp:ModifyDate>
- <xmp:MetadataDate>2022-12-12T03:52:45-08:00</xmp:MetadataDate>
+ <xmp:ModifyDate>2023-12-24T04:30:55-08:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2023-12-24T04:30:55-08:00</xmp:MetadataDate>
<xmp:CreatorTool>Acrobat Sign</xmp:CreatorTool>
- <xmpMM:DocumentID>uuid:14168114-9962-29d8-5bb2-0c7c9bde010f</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:7183f29d-f7e4-2cc9-5dcf-0c7c9bde010f</xmpMM:InstanceID>
+ <xmpMM:DocumentID>uuid:5af9ad0e-cc1f-2f4c-5311-f3ec5bd6f4ed</xmpMM:DocumentID>
+ <xmpMM:InstanceID>uuid:672b8604-fc9d-2afb-73e3-f3ec5bd6f4ed</xmpMM:InstanceID>
<dc:format>application/pdf</dc:format>
</rdf:Description>
</rdf:RDF>
@@ -109,8 +107,8 @@ endobj
<<
/Count 2
/Kids [
- 8 0 R
10 0 R
+ 11 0 R
]
/Type /Pages
>>
@@ -118,24 +116,194 @@ endobj
7 0 obj
<<
- /R 0
+ /BaseFont /GXXHAY+SourceSansPro-Regular
+ /CIDSystemInfo <<
+ /Ordering (Identity)
+ /Registry (Adobe)
+ /Supplement 0
+ >>
+ /CIDToGIDMap /Identity
+ /DW 1000
+ /FontDescriptor 12 0 R
+ /Subtype /CIDFontType2
+ /Type /Font
+ /W [
+ 1
+ [
+ 200
+ ]
+ 5
+ [
+ 615
+ 527
+ ]
+ 11
+ [
+ 480
+ ]
+ 20
+ [
+ 534
+ 536
+ ]
+ 26
+ [
+ 476
+ ]
+ 28
+ [
+ 504
+ 553
+ 456
+ 555
+ 496
+ ]
+ 35
+ [
+ 544
+ 246
+ 247
+ 495
+ 255
+ 829
+ 547
+ 542
+ 555
+ ]
+ 45
+ [
+ 347
+ ]
+ 47
+ [
+ 338
+ ]
+ 49
+ [
+ 467
+ ]
+ 52
+ [
+ 467
+ ]
+ 1087
+ [
+ 497
+ ]
+ 1089
+ [
+ 497
+ 497
+ 497
+ ]
+ 1094
+ [
+ 497
+ ]
+ 1096
+ [
+ 497
+ ]
+ 1141
+ [
+ 249
+ 249
+ 249
+ ]
+ 1175
+ [
+ 303
+ 303
+ ]
+ 1213
+ [
+ 847
+ ]
+ ]
>>
endobj
-%% Page 1
8 0 obj
<<
+ /Length 9 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo
+<< /Registry (TTX+0)
+/Ordering (T42UV)
+/Supplement 0
+>> def
+/CMapName /TTX+0 def
+/CMapType 2 def
+1 begincodespacerange
+<0000><FFFF>
+endcodespacerange
+37 beginbfrange
+<0001><0001><0020>
+<0005><0005><0044>
+<0006><0006><0045>
+<000b><000b><004a>
+<0014><0014><0053>
+<0015><0015><0054>
+<001a><001a><0059>
+<001c><001c><0061>
+<001d><001d><0062>
+<001e><001e><0063>
+<001f><001f><0064>
+<0020><0020><0065>
+<0023><0023><0068>
+<0024><0024><0069>
+<0025><0025><006a>
+<0026><0026><006b>
+<0027><0027><006c>
+<0028><0028><006d>
+<0029><0029><006e>
+<002a><002a><006f>
+<002b><002b><0070>
+<002d><002d><0072>
+<002f><002f><0074>
+<0031><0031><0076>
+<0034><0034><0079>
+<043f><043f><0030>
+<0441><0441><0032>
+<0442><0442><0033>
+<0443><0443><0034>
+<0446><0446><0037>
+<0448><0448><0039>
+<0475><0475><002e>
+<0476><0476><002c>
+<0477><0477><003a>
+<0497><0497><0028>
+<0498><0498><0029>
+<04bd><04bd><0040>
+endbfrange
+endcmap
+CMapName currentdict /CMap defineresource pop
+end end
+endstream
+endobj
+
+9 0 obj
+1018
+endobj
+
+%% Page 1
+10 0 obj
+<<
/Annots [
- 11 0 R
- 12 0 R
- 3 0 R
+ 13 0 R
]
/Contents [
- 13 0 R
- 15 0 R
- 17 0 R
- 19 0 R
- 21 0 R
+ 14 0 R
+ 16 0 R
+ 18 0 R
+ 20 0 R
+ 22 0 R
+ 24 0 R
+ 26 0 R
]
/CropBox [
0
@@ -152,11 +320,16 @@ endobj
/Parent 6 0 R
/Resources <<
/Font <<
- /F1 23 0 R
+ /F1 28 0 R
+ /Xi0 29 0 R
>>
/XObject <<
- /Xi0 24 0 R
- /Xi1 26 0 R
+ /Xi1 30 0 R
+ /Xi2 32 0 R
+ /Xi3 34 0 R
+ /Xi4 36 0 R
+ /Xi5 38 0 R
+ /Xi6 40 0 R
>>
>>
/Rotate 0
@@ -164,49 +337,8 @@ endobj
>>
endobj
-9 0 obj
-<<
- /ByteRange [
- 0
- 135384
- 164120
- 1893
- ]
- /Contents <30821cc406092a864886f70d010702a0821cb530821cb1020101310f300d06096086480165030402010500300b06092a864886f70d010701a082141f3082074d30820535a0030201020210620292d85683f258528f57dd9c301deb300d06092a864886f70d01010b05003068310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311530130603550403130c41646f626520434453204341301e170d3230303232343030303030305a170d3233303232333233353935395a3081a7312e302c06035504030c2541646f6265205369676e2c206120446f63756d656e7420436c6f756420736f6c7574696f6e312d302b06092a864886f70d010901161e61646f62652d7369676e2d6365727469666965644061646f62652e636f6d310b30090603550406130255533111300f060355040b0c0870726f642d68736d3111300f06035504070c0853616e204a6f73653113301106035504080c0a43616c69666f726e696130820122300d06092a864886f70d01010105000382010f003082010a0282010100ac6c1757a3a646ea5acc1fd53dbef258837fea2e9af7ac2a78d07269a4e4ea3ab7f8233448b0c83f8b3e6a0ec056e9a2ab89c47c93c02ad4ff787d08417cf70c5583702d8c5b478010e7b5b479bebd4a90f8f71275000dad143f0d4809c32e998149d419e72da7854a578e1fbb418ed9fa18b9caf48012e960f4eedbdc3384152d9417d34271a09fe17b0ad88b2ffe973cf23aac152a76456cde11fc23547af554d9bddff7f59aab852390a386e5034508dfd7d8db2fb9b4c0dd43e04d4d02ac1e19ad432670423f822feaa1617ca8c6393ac49f95519574a352d28ee9cc51b5487e2ab9b4cfc3004eaadc4060865db370e239ade99609ebd8e17d7f7758c9630203010005a38202b1308202ad300c0603551d130101ff04023000300b0603551d0f0404030206c030140603551d25040d300b06092a864886f72f010105301d0603551d0e04160414b3fb6d0a50679945720a4f917cfad6daaf42cee53081e40603551d200481dc3081d93081d606092a864886f72f0102013081c8303606082b06010505070201162a68747470733a2f2f7777772e61646f62652e636f6d2f6d6973632f706b692f6364735f63702e68746d6c30818d06082b060105050702023081801a7e54686520636572746966696361746520686173206265656e2069737375656420696e20636f6e666f726d616e636520776974682074686520436572746966696361746520506f6c69637920666f756e642061742068747470733a2f2f7777772e61646f62652e636f6d2f6d6973632f706b692f6364735f63702e68746d6c305d0603551d1f045630543052a050a04e864c687474703a2f2f706b692d63726c2e73796d617574682e636f6d2f63615f64623935623838643961373464366561663163303133653936323738396435342f4c617465737443524c2e63726c303706082b06010505070101042b3029302706082b06010505073001861b687474703a2f2f706b692d6f6373702e73796d617574682e636f6d301f0603551d23041830168014d1cc0854a27ace82de4db256a2f879d18d9e1bd7303c060a2a864886f72f01010901042e302c0201018627687474703a2f2f61646f62652d74696d657374616d702e67656f74727573742e636f6d2f7473613013060a2a864886f72f0101090204053003020101302d060a6086480186f845011003041f301d06136086480186f84501100102050101839f9cb44216063538373234313039060a6086480186f845011005042b302902010016246148523063484d364c79397761326b74636d457563336c74595856306143356a6232303d300d06092a864886f70d01010b05000382020100433ebb23c2926b016319758488a75ae253ba4e6644339a4e954f144761617fc093ea4a4801c847daa18c41dcb857e2172975d35fe3bf822040757c8eec024d93e3da32afe0dfe8957ace542cf8b0ceee215d0c5c346a4b58a4b45ebf38621649462cb332bfc666692ba6b287cd2eeeaa7dc96c031a774bbc11d537f9f9731f0e262d7e45f120a87e03eea5b6edf0b52d3ca383cb109f6dc557d4f5d59f68d8fb7c6bd71d712918699a91bf19381a7eee63ce48628eca0de519f8ea597eb7e802c8108653d9467918caf5ae34e9a466176c278fa2c0c27966ea7a5701baddc299e795b42664e006d9b29ee97c6933f9f021151f9c51dd7a04d70b1bc5a0072604b3d0f3fce3e4ad4fe28c3f934444bc59d42b6be2ae39631ef3cb58a154e497667a7f802ac22a830fb3bf70ac79d886e08fef1c23c081178f1286f74f48976deebc214f6e8fcfbac7dece660cb9a917b80d500852075d9c5a50f6507c3232d9da1640f378e0ffd6caa8c4aa364aa35f11e36119d24dd5a70aa978ae585484f4d6835bb0f0a715902c30cf547b14d03f6cc6c7b5f2121d1b05903ca11e5b7e0dbeed4483f673c9636b89053f39a0cb7ff4809a136bfd2b99a719af18fe37c91c10eeb7b5a55eb9e4ed373d1ba9639eadc04405a465dddae380fecbbde60a2063a1182ce2c3a01f34207ef4631b291ae030dc72d4e1cc04bd759899e6bea7667b89308207223082050aa00302010202100a915e54fd303bf3fe783ec40e3abccb300d06092a864886f70d01010b0500306c310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311930170603550403131041646f626520526f6f74204341204732301e170d3136313132393030303030305a170d3431313132383233353935395a3068310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311530130603550403130c41646f62652043445320434130820222300d06092a864886f70d01010105000382020f003082020a0282020100bf52b1677cb144e1cefd04deb67ba3eeb7fc95411f6ec0ae1d4dd024c8182765b1328f1620b9a4aa2dee3d33693feeccc00abc5823d2019c78e6e673c33f52f7dd74e6f86d44342425adb00c1cce1792af750b9b6c6fce58c5c964d8778e0b940d2f4aa5bec0229a92baae0b61d2c813cc5e5335906a5ffed0519ea3b1cd57e689ca3874475158f64ae41fed16b2485d0231ccce0c947c7234398321b326335cbf46b3873efef4b26eb40f28cfc5561276486c1ea09c424993b8ceec44b162141bb17dbbed6c532b0bb57a5b7ca6358c04460e973082bffbc9c7dff533c098f69fd0a8d97ca12640da64c12962687d4054962c28a56af3ebdcce92d131c3a5506d349308c17e24251dfc47a99e41b858004f0840d23372b923509b3d4f727bb40bbb9a291927aa227a44bb57b960a421fb5da978cd5a686e67a8d6b40edca431221dd7a5c93d8bae58086788efac7b1cf7bd769e927e68aa1cc544fe3abe26334fc56b1606494c94b32de399ae4d97b8ddc50f865b3685a67505676f543fd39a1c995b151d524dc7969b598c2d39d613eb714077e5380864985833e936ce026c293a6841b618a0015fb599100d38ec281ce5d16227e47dac83d1ab6a8e8a3ecb7ec0f139f33f069d44ea5402401820f0811dca362079ed106c363a553d5be4d6e94c8e496b9126780be420f5bdd6546d5a0a923872a40393565de7acc02fd43d0203010001a38201c2308201be30120603551d130101ff040830060101ff0201003081e40603551d200481dc3081d93081d606092a864886f72f0102013081c8303606082b06010505070201162a68747470733a2f2f7777772e61646f62652e636f6d2f6d6973632f706b692f6364735f63702e68746d6c30818d06082b060105050702023081801a7e54686520636572746966696361746520686173206265656e2069737375656420696e20636f6e666f726d616e636520776974682074686520436572746966696361746520506f6c69637920666f756e642061742068747470733a2f2f7777772e61646f62652e636f6d2f6d6973632f706b692f6364735f63702e68746d6c30350603551d1f042e302c302aa028a0268624687474703a2f2f63726c2e61646f62652e636f6d2f61646f6265726f6f7467322e63726c30140603551d25040d300b06092a864886f72f010105300e0603551d0f0101ff04040302010630240603551d11041d301ba4193017311530130603550403130c53594d432d343039362d3332301d0603551d0e04160414d1cc0854a27ace82de4db256a2f879d18d9e1bd7301f0603551d23041830168014a61ce16d54244ca88f4872bf6ea98cd5e4ec31d4300d06092a864886f70d01010b0500038202010023df9aeed8d147e70bde2a17f4c0060f8546c723ce5c298e21c1928cc12e3cb58855f2776c7e5c82017fd3a7c93cfb6fed508cbbdfb589e8e0d108d37ee6e0ed966af363fa778164a4f700f94dabe942adfcecf7e30cea255207ca84014e47f2eae638f8cc2bd94f25ed6ad18da2ab90d536447155dcc435cf58aebf87706135bf1e3c80aea96dabf59a1d33960812f031ec407d119a6586dffe7700a271cf5ad9780a52dd4a7ef7469aeffdd927017a31b8ab18cd24c8b3816657e813b611e622ea8692bde354133cfa7f99560469c57257ea49b8e26ff6da6d1214eab5579f198f6f1037b982e396e317e226a458a922aa633ea0532b6c9686c0c2dfb13fc73f0ded37559285f730bd25fa2987de22c68484c7c562b6742eff6b7ee28f636bbc845c3d314778935ae47f9f5dd4de2565a5578c9d8a3294d4d45702a12dadab7b5bef15f15927babc4e1bdc9126843a436d00419fe46290d075c776525eae489f632036eb8c8dd68adb1bf7b72e6bc5e7b6a4c0fac505b4f0e121f47548cd752c708012dcc35d3248a89bf49ba0e1fbe45454ee4c2262b52b5438b54c6656c54fc88cfd9cc76a53d2aea6f3a96ca47812384105823e6537a664c23af4f78f2c12a83edeb6b7300774251ff116c7dff20a9aaf41c5f08ae03d874bd4bd744ebbc66b7cba25f15f21a889cad47e535c02698e898db786f5140b563988cd6760c7308205a43082038ca00302010202105df12f5f57a7c3e1b002d893270cdde1300d06092a864886f70d01010b0500306c310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311930170603550403131041646f626520526f6f74204341204732301e170d3136313132393030303030305a170d3436313132383233353935395a306c310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311930170603550403131041646f626520526f6f7420434120473230820222300d06092a864886f70d01010105000382020f003082020a0282020100b6da72629bee837b32a246e38a23329757ac2d737451cb06ff7b32e6970cacc8e7d92067484af74d25814f225d6f69da2c1842cfc56c9d3e7134715252a1b61a5b9d14cdbb8d91e4b188f9700f6d0ce7c6a7ebf3649c4f5d41c05fe61788404ceb03cb95efb2a5e68e38bd1c237957c3227104c9710eb32bd5bd539da6ee52eddef2b54ff7902852fd50177e24dd37d80a121b138ba31439e6a949a7c6d54c16c15f6db4670ae71a9976439f45eccc1cf4a412506ffa909fe66aa8bb97913ffde5208fe08ff963bcd9c5b95d098ca7969267a860d5d5b67412c375d1197bbff3978dde5a9f92f03441cb34287c3b7ec802a4a7b3092b955d861e119cc19d024920d6cededa8b311b4f748487eac15e291399bb413e2290d266c71a2bbd93444df3be171089a3bda2ef233299958798a5ce6ef96e3ef072cea569b853e5772c0abd980722d7bbdf44d9d8966d9c0ad7eb7f3f00f8c3287de125124d9f1f0a1f6fd658d4de936218f2fbb230cac5ba428ccc38a096a7cbd901b3c96a4e6cc4dace1bcffd9d8c323b5656d32865e19c7944df4aaeb81cdc33164668cf7ace3d8bb5658c38f773c48ea698e5fc4832d05dfe4bf69b9592154530040d9e2562a4c74bbf719f756407f14b0b866daa650efafd3732095d176d8994402387e9b45395cd236f090f42ccaed0411adb6cb7458ec30fdd5c527ec20972b70c0134832e6e810203010001a3423040300e0603551d0f0101ff040403020106300f0603551d130101ff040530030101ff301d0603551d0e04160414a61ce16d54244ca88f4872bf6ea98cd5e4ec31d4300d06092a864886f70d01010b0500038202010095fa7563bf6a261336974420a5a5e279e101ef081444d9404113d03a3c36e0d9669cce0aaaecf1f4b495a0fd443e54f1fb792ed1d19c4d8859881b0b4de3938cc4f88f7ea3e6329359f5aeb86c106e86b0b527ed6e65bb06ccb9c7c64453b83bd2da194761d59576da478e828629c794dbbbf485c1b5666c6dd1befdbb631ab560e9c400b3753f18016ca0be06d4c92a57ab210ef1d03639731016e44b421d72fb7e277b2a9ff3a6254f2d02accdc7b7b644b508d991f80d3d508d569d82293951533d0007934b5813b08a779c20a2776685d0ca5e219a75bb6e44f32411c4161e545a23d5962dc7061f733dd7e80ebc8086fa641791ccfabec2df1b1294bc878eceea1279a723416dda810dee9255dc33ed952d8c604424ce6873af23f9035286791edb7fddb8878ad23a29c29c82784b45724c8d8c0a0b62cac61b7f8c4101950ea81867f5bc3b0d00433fd9b7445f72a4267c275bc566d3bac47c96965ff2b79a3d4d97e5a769603a58f16fab54d50b72c93f4a3f8167c62972b324f7405b5dfd8aedb6f3430d8e0edcc7a612fa49092ddc96baa0a2da591bd04ec68aecaf30f964a295f0adb78bb8000c41cb19709adfca1de31f1d9b24b72feb1cbca4ee4c20b51cd776fa40eeab98906c8b5ad4ed6680792756fb39852b68c0eea86d6cdfd8cc7211e375ad46a8ec2c056c43a82e07aad758ed32b6a1f64bbea4c7bd3e3182086930820865020101307c3068310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311530130603550403130c41646f6265204344532043410210620292d85683f258528f57dd9c301deb300d06096086480165030402010500a08206be301806092a864886f70d010903310b06092a864886f70d010701301c06092a864886f70d010905310f170d3232313231323131353234355a302f06092a864886f70d01090431220420d6a05888300c6bcc988852c13d5086ec15a6fe1da61895098431b3994eee3f7b3082065106092a864886f72f010108318206423082063ea082063a308206363082034830820130020101300d06092a864886f70d01010b05003068310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311530130603550403130c41646f626520434453204341170d3232313230353138353635345a170d3232313231323138353635345a3062302f02100841011414acd771cd409020d6210e3e170d3230303932393138313330385a300c300a0603551d1504030a0109302f02101692f5ee433ecc86333879f09343aa81170d3231303832353231343033355a300c300a0603551d1504030a0104a030302e301f0603551d23041830168014d1cc0854a27ace82de4db256a2f879d18d9e1bd7300b0603551d14040402022185300d06092a864886f70d01010b05000382020100bd98ab2bb9762973e026d6057f0c7860d88da763f47d808e197cd2a018acb6f2ba29e61ab761c78e449c3efa60fa183cf6ea54573cbfb200a732dbc9c2ec54d8f9a918c62886e0cf1a6454e9de0c67c99b36e78656440e95556fc0a5562b8290bb74912ffe5380d432986959127a61c0c935cf13fc75088b8ad5b184295d1798b9343953a57cda1d9c126927190996436b11062b091122916dd65066e2bc91ed0984409c4115f8611c0dc69545ed0514cdf868d199931417a1382720f6e5ad0f9bbbf68a1537e37935003489a94d1a2f3408809e097a4c018161ee07f16c8c621f80c09edfd6c1d3171642b37a1d6fc334f99efa2e7e561f0a2a3431f190c72b4b84e55662b7c6799f8732344589bc9653be03279f34304d36f3ed8c760725cf94b2099fd04e349236e8a900dbef2ffda9b1834a83644ccc68f94ee4153d445f1267482e0cbc0f7e6e955bf31fed9aa7e915ae53c1fc58caf453e68cb286621eb0a526b12a079c1ce4a23245d64580b2388d1a75ae7baad728e5bc3725e8cdffeb209e58b5d53525f285656306fe9399272ab6ef8e002ea5831a749ec5ba7e639bd7de22f08181ed25b261f6bf4184ff89fb9529ff9c1afd22132f7ce586e94462e64d1e5871ed588f877bd3aba1fdf46d28a3bffb4a14e5de2a19f4e95928fda10a6aca4f0320bf2bff4e46e580e05c42803134cfe9fba3e80335113e506a84308202e63081cf020101300d06092a864886f70d01010b0500306c310b300906035504061302555331233021060355040a131a41646f62652053797374656d7320496e636f72706f7261746564311d301b060355040b131441646f6265205472757374205365727669636573311930170603550403131041646f626520526f6f74204341204732170d3231313131313030303030305a170d3236313131303233353935395aa02f302d301f0603551d23041830168014a61ce16d54244ca88f4872bf6ea98cd5e4ec31d4300a0603551d140403020102300d06092a864886f70d01010b05000382020100a36d0b62ee4e90ae360a2c62484a27c43884986de7f673ec65f902ccc4c0853c477ca7f09ba31de5f5a0387005dea0c1f7176ae4dd04c74785ff469c95566b2823aad4dcdcb30d323829c85d8c21d9a8a620447b8d28a6b7f101a42702086dc2c9ddfa6b9e8f41876e3e3c89a8bf9654b003e478a48dd952e2eb4cf456257f81b10998547bac41fbc8e3175b075f825c04b61db4fdff91626c128b278d34df8d00b5f28fad87f0eb288f6352b2185676b1380dd16aa5cbe18374bb00e106d5cb6b04a2eb5db9e47cfa8839393703b6bceee28d51d0c74c434da1cb6ba6d0f1b2bc9855caf4e0e4f97cbc96c2562a5ec2a8c15037ff5aad15fb6ff64d9e25d85ebbc9f5142be70a401cfd1adb629aabe73e03e41250f46d1b0c20d2ac9e40ecc4632e0174690c5cca9f5ab284a9057fc310759cdeec44a41825516b27ca7c4f3e5adcf8feced5e4ee879e455f44a41f321f7778d7b8e18b607d9f97d59054953974077857a65eaca0f97922defda38a1992710476c9e15b313251852fd9d1816018736bbd323378213ee264df559a74496588872c9b50fa1edd0d4eae36c23d7f271916ecf1041b9d5a234060accc02fd99f9961ee62a4265bced9d37f3fdd2e8581f68f6f087a5c98c7a75477f063758c2292370c7c980e08c63f459f1cd4dc62824caa8a479822a156dc6f868e794c4a858b8571bd60d2c6d09f5196b5efa91300d06092a864886f70d01010b0500048201002b4cc585b762855b2099ae7ff8ef2240360b7fbe03dbb234e7f51c1f88c9de9a1e258c9ac9871d85eff3605af57526eef3ba6bc7ac76d415a7bcd02d59623bfffe3112bd37a0f9a61758b4e4425382fd2627711b19c42653d3faa5ef57366fbde86ae871537209812c8640b40f2c7412a45ad140fa90db94629da88412b891bb6d098f5cfeb59317c917c1c4e1f4f3094c1a4e5d70c31034fe131304636a19fb41738bba9acc7b9aa16a4526b432282642756263088c87d60de68290b8f4a45d50302e9eec72965a7d9082ccaafda85ac426883f03f7c4f87c3ddd383385dd033beb038017c6287318107e31247ce7fb581f56b8b521f21f270812e0410b0568000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>
- /Filter /Adobe.PPKLite
- /M (D:20221212035245-08'00')
- /Prop_Build <<
- /App <<
- /Name /Acrobat#20Sign#20CDS#20Signer
- /R 6.6
- /TrustedMode true
- >>
- /Filter <<
- /Name /AdobePDFJavaToolkit.PPKLite
- /PreRelease false
- /R 0.0
- >>
- >>
- /Reason (Agreement certified by Adobe Acrobat Sign)
- /Reference [
- <<
- /DigestMethod /MD5
- /TransformMethod /DocMDP
- /TransformParams <<
- /P 1
- /Type /TransformParams
- /V /1.2
- >>
- /Type /SigRef
- >>
- ]
- /SubFilter /adbe.pkcs7.detached
- /Type /Sig
->>
-endobj
-
%% Page 2
-10 0 obj
+11 0 obj
<<
/BleedBox [
0
@@ -214,7 +346,7 @@ endobj
612
792
]
- /Contents 28 0 R
+ /Contents 42 0 R
/CropBox [
0
0
@@ -228,7 +360,7 @@ endobj
792
]
/Parent 6 0 R
- /Resources 30 0 R
+ /Resources 44 0 R
/Rotate 0
/TrimBox [
0
@@ -240,84 +372,89 @@ endobj
>>
endobj
-11 0 obj
+12 0 obj
<<
- /A <<
- /S /URI
- /URI (https://adobefreeuserschannel.na4.documents.adobe.com/verifier?tx=CBJCHBCAABAA1-5BC-Vgum0ZWIRgJgmZRsIySrvj9yOB)
- >>
- /Border [
- 0
- 0
- 0
- ]
- /H /N
- /P 8 0 R
- /Rect [
- 255.6
- 576.8
- 345.6
- 592.8
+ /Ascent 750
+ /CapHeight 660
+ /Descent -250
+ /Flags 32
+ /FontBBox [
+ -454
+ -292
+ 2159
+ 968
]
- /Subtype /Link
+ /FontFile2 45 0 R
+ /FontName /GXXHAY+SourceSansPro-Regular
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
>>
endobj
-12 0 obj
+13 0 obj
<<
- /A <<
- /S /URI
- /URI (https://na4.documents.adobe.com/verifier?tx=CBJCHBCAABAA1-5BC-Vgum0ZWIRgJgmZRsIySrvj9yOB)
- >>
- /Border [
+ /F 132
+ /MK 47 0 R
+ /P 10 0 R
+ /Rect [
+ 0
0
0
0
]
- /H /N
- /P 8 0 R
- /Rect [
- 255.6
- 533.6
- 345.6
- 549.6
- ]
- /Subtype /Link
+ /Subtype /Widget
+ /T (SignatureField1)
+ /Type /Annot
>>
endobj
%% Contents for page 1
-13 0 obj
+14 0 obj
<<
- /Length 14 0 R
+ /Length 15 0 R
>>
stream
q
endstream
endobj
-14 0 obj
+15 0 obj
2
endobj
%% Contents for page 1
-15 0 obj
+16 0 obj
<<
- /Length 16 0 R
+ /Length 17 0 R
>>
stream
q
endstream
endobj
-16 0 obj
+17 0 obj
2
endobj
%% Contents for page 1
-17 0 obj
+18 0 obj
+<<
+ /Length 19 0 R
+>>
+stream
+q
+endstream
+endobj
+
+19 0 obj
+2
+endobj
+
+%% Contents for page 1
+20 0 obj
<<
- /Length 18 0 R
+ /Length 21 0 R
>>
stream
BT
@@ -328,45 +465,107 @@ ET
endstream
endobj
-18 0 obj
+21 0 obj
44
endobj
%% Contents for page 1
-19 0 obj
+22 0 obj
<<
- /Length 20 0 R
+ /Length 23 0 R
>>
stream
Q
q
-q 1 0 0 1 255.6 576.8 cm /Xi0 Do Q
+q
+q
+1 1 1 rg
+15 544.89 280 39 re
+f
+Q
+Q
+q
+2 J
+0 G
+Q
+BT
+1 0 0 1 41.05 567.39 Tm
+/Xi0 10 Tf
+<0014002400220029001c002f0030002d00200477>Tj
+ET
+BT
+1 0 0 1 59.43 547.89 Tm
+/Xi0 10 Tf
+<00060028001c002400270477>Tj
+ET
+q
+q
+1 1 1 rg
+310 544.89 280 39 re
+f
+Q
+Q
+q
+2 J
+0 G
+Q
+BT
+1 0 0 1 336.05 567.39 Tm
+/Xi0 10 Tf
+<0014002400220029001c002f0030002d00200477>Tj
+ET
+BT
+1 0 0 1 354.43 547.89 Tm
+/Xi0 10 Tf
+<00060028001c002400270477>Tj
+ET
Q
endstream
endobj
-20 0 obj
-42
+23 0 obj
+424
endobj
%% Contents for page 1
-21 0 obj
+24 0 obj
<<
- /Length 22 0 R
+ /Length 25 0 R
>>
stream
Q
q
-q 1 0 0 1 255.6 533.6 cm /Xi1 Do Q
-Q
+q 1 0 0 1 92.37 560.89 cm /Xi1 Do Q
+Q q 1 0 0 1 80.1 649.4 cm /Xi2 Do Q
+q Q q 1 0 0 1 92.37 544.89 cm /Xi3 Do Q
+q Q
endstream
endobj
-22 0 obj
-42
+25 0 obj
+121
endobj
-23 0 obj
+%% Contents for page 1
+26 0 obj
+<<
+ /Length 27 0 R
+>>
+stream
+ Q
+q
+q 1 0 0 1 387.37 560.89 cm /Xi4 Do Q
+Q q 1 0 0 1 80.7 599.6 cm /Xi5 Do Q
+q Q q 1 0 0 1 387.37 544.89 cm /Xi6 Do Q
+q Q
+endstream
+endobj
+
+27 0 obj
+123
+endobj
+
+28 0 obj
<<
/BaseFont /Helvetica
/Encoding /WinAnsiEncoding
@@ -375,13 +574,26 @@ endobj
>>
endobj
-24 0 obj
+29 0 obj
+<<
+ /BaseFont /HGHMVV+SourceSansPro-Bold
+ /DescendantFonts [
+ 48 0 R
+ ]
+ /Encoding /Identity-H
+ /Subtype /Type0
+ /ToUnicode 49 0 R
+ /Type /Font
+>>
+endobj
+
+30 0 obj
<<
/BBox [
0
0
- 90
- 16
+ 108.88
+ 23
]
/FormType 1
/Matrix [
@@ -394,13 +606,13 @@ endobj
]
/Resources <<
/Font <<
- /F1 31 0 R
- /F2 32 0 R
+ /F1 3 0 R
+ /F2 51 0 R
>>
>>
/Subtype /Form
/Type /XObject
- /Length 25 0 R
+ /Length 31 0 R
>>
stream
q
@@ -410,38 +622,35 @@ q
1 w
q
BT
-1 0 0 1 0 1.09 Tm
-/F1 4.17 Tf
+1 0 0 1 0 1.78 Tm
+/F1 6 Tf
0.07843 0.45098 0.90196 rg
-(
+(
0 g
ET
Q
-0 5.76 m
-72.83 5.76 l
+0 8.28 m
+108.88 8.28 l
S
Q
0 0 0 RG
0 0 0 rg
q
BT
-1 0 0 1 0 6.46 Tm
-1 0 0.21256 1 0 6.46 Tm
-/F2 11.13 Tf
-(
-1 0 0 1 55.5 6.46 Tm
--55.5 0 Td
+1 0 0 1 6.75 9.28 Tm
+/F2 16 Tf
+(
ET
Q
Q
endstream
endobj
-25 0 obj
-395
+31 0 obj
+335
endobj
-26 0 obj
+32 0 obj
<<
/BBox [
0
@@ -459,31 +668,204 @@ endobj
0
]
/Resources <<
- /XObject <<
- /Xf2 33 0 R
+ /Font <<
+ /F1 3 0 R
>>
>>
/Subtype /Form
/Type /XObject
- /Length 27 0 R
+ /Length 33 0 R
+>>
+stream
+q Q /Tx BMC q 1 1 88 14 re W n q BT 1 0 0 1 2 3.83 Tm /F1 11.11 Tf 0 g (
+endstream
+endobj
+
+%QDF: ignore_newline
+33 0 obj
+120
+endobj
+
+34 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 202.63
+ 16
+ ]
+ /FormType 1
+ /Matrix [
+ 1
+ 0
+ 0
+ 1
+ 0
+ 0
+ ]
+ /Resources <<
+ /Font <<
+ /F1 3 0 R
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 35 0 R
+>>
+stream
+q Q /Tx BMC q 1 1 200.63 14 re W n q BT 1 0 0 1 2 4.25 Tm /F1 10 Tf 0 g (
+endstream
+endobj
+
+%QDF: ignore_newline
+35 0 obj
+143
+endobj
+
+36 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 105.51
+ 23
+ ]
+ /FormType 1
+ /Matrix [
+ 1
+ 0
+ 0
+ 1
+ 0
+ 0
+ ]
+ /Resources <<
+ /Font <<
+ /F1 52 0 R
+ /F2 53 0 R
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 37 0 R
>>
stream
q
+q
+0.07843 0.45098 0.90196 RG
+0.07843 0.45098 0.90196 rg
+1 w
+q
+BT
+1 0 0 1 0 1.78 Tm
+/F1 6 Tf
+0.07843 0.45098 0.90196 rg
+(
+0 g
+ET
+Q
+0 8.28 m
+105.51 8.28 l
+S
+Q
0 0 0 RG
0 0 0 rg
-q 1 0 0 1 0 0 cm /Xf2 Do Q
+q
+BT
+1 0 0 1 6.75 9.28 Tm
+1 0 0.21256 1 6.75 9.28 Tm
+/F2 13 Tf
+(
+1 0 0 1 69.44 9.28 Tm
+-62.69 0 Td
+ET
+Q
Q
endstream
endobj
-27 0 obj
-49
+37 0 obj
+388
+endobj
+
+38 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 90
+ 16
+ ]
+ /FormType 1
+ /Matrix [
+ 1
+ 0
+ 0
+ 1
+ 0
+ 0
+ ]
+ /Resources <<
+ /Font <<
+ /F1 52 0 R
+ /GXXHAY+SourceSansPro-Regular 3 0 R
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 39 0 R
+>>
+stream
+q Q /Tx BMC q 1 1 88 14 re W n q BT 1 0 0 1 2 3.73 Tm /GXXHAY+SourceSansPro-Regular 11.11 Tf 0 g (
+endstream
+endobj
+
+%QDF: ignore_newline
+39 0 obj
+168
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 202.63
+ 16
+ ]
+ /FormType 1
+ /Matrix [
+ 1
+ 0
+ 0
+ 1
+ 0
+ 0
+ ]
+ /Resources <<
+ /Font <<
+ /F1 52 0 R
+ /GXXHAY+SourceSansPro-Regular 3 0 R
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+q Q /Tx BMC q 1 1 200.63 14 re W n q BT 1 0 0 1 2 4.16 Tm /GXXHAY+SourceSansPro-Regular 10 Tf 0 g (
+endstream
+endobj
+
+%QDF: ignore_newline
+41 0 obj
+233
endobj
%% Contents for page 2
-28 0 obj
+42 0 obj
<<
- /Length 29 0 R
+ /Length 43 0 R
>>
stream
q
@@ -545,7 +927,7 @@ q
0 g
BT
/F19 10 Tf
-1 0 0 -1 103.35700226 8.59500027 Tm [<0012001300120012000200140012000200140012>] TJ
+1 0 0 -1 103.35700226 8.59500027 Tm [<0012001300120014000200150012000200120016>] TJ
ET
Q
q
@@ -587,20 +969,20 @@ Q
0 g
BT
/F19 8 Tf
-1 0 0 -1 12 17.87599945 Tm [<00150011000c0006000b000c000a0016>] TJ
-1 0 0 -1 146.73199463 17.87599945 Tm [<0012001300120012000200140012000200140012>] TJ
-1 0 0 -1 12 37.47600174 Tm [<001700180016>] TJ
-1 0 0 -1 146.73199463 37.47600174 Tm [<00190006001800010017000c0011001a000c0005001b00040007000b0001001c001d001b000c0011001a000c0005001b00040007000b001e0006000a001f000c0005000b0020000900210022001000030023>] TJ
-1 0 0 -1 12 57.07600021 Tm [<0024000b0006000b000800250016>] TJ
-1 0 0 -1 146.73199463 57.07600021 Tm [<0024000400260005000c000a>] TJ
-1 0 0 -1 12 76.6760025 Tm [<0027001100060005002500060022000b0004001000050001002800290016>] TJ
-1 0 0 -1 146.73199463 76.6760025 Tm [<0015001700190015002a00170015000e000e0017000e000e00140002002b001700150002002c0026000800030013002d002e0028000f0026001900260003002d000f00250028001800240011001f001d002f001800300017>] TJ
+1 0 0 -1 12 17.87599945 Tm [<00170011000c0006000b000c000a0018>] TJ
+1 0 0 -1 104.21199799 17.87599945 Tm [<0012001300120014000200150012000200120016>] TJ
+1 0 0 -1 12 37.47600174 Tm [<0019001a0018>] TJ
+1 0 0 -1 104.21199799 37.47600174 Tm [<001b00070004001c0005000c0011001d000c001c0001001e0006001f00010020001f001c000c0011001d000c0005001c00040007000b00210006000a0022000c0005000b0023000900240025001000030026>] TJ
+1 0 0 -1 12 57.07600021 Tm [<0027000b0006000b000800280018>] TJ
+1 0 0 -1 104.21199799 57.07600021 Tm [<0027000400290005000c000a>] TJ
+1 0 0 -1 12 76.6760025 Tm [<001b001100060005002800060025000b0004001000050001002a002b0018>] TJ
+1 0 0 -1 104.21199799 76.6760025 Tm [<00170019002c0017002d00190017000e000e0019000e000e000c000a0014001e002e002f000400140030001c0031000200320019003300340035003600110015000e0002001c00330010002d000a000d000f003400160037>] TJ
ET
Q
0 g
BT
/F19 18 Tf
-1 0 0 -1 0 189.75700378 Tm [<00320003000400050004000300060007000200080009000a0006000b000c000a00320001002a00040025000b001000110018>] TJ
+1 0 0 -1 0 189.75700378 Tm [<00390003000400050004000300060007000200080009000a0006000b000c000a00390001002d00040028000b00100011001a>] TJ
ET
q
12 0 0 -12 0 215.535995 cm
@@ -608,9 +990,9 @@ q
Q
BT
/F19 10 Tf
-1 0 0 -1 18 213.73100281 Tm [<00290010002200080003000c0005000b000100220011000c0006000b000c000a0001001b0018000100190006001800010017000c0011001a000c0005001b00040007000b0001001c001d001b000c0011001a000c0005001b00040007000b001e0006000a001f000c0005000b0020000900210022001000030023>] TJ
+1 0 0 -1 18 213.73100281 Tm [<002b0010002500080003000c0005000b000100250011000c0006000b000c000a0001001c001a000100050008000700070001001e0006001f00010020001f001c000c0011001d000c0005001c00040007000b00210006000a0022000c0005000b0023000900240025001000030026>] TJ
/F19 8 Tf
-1 0 0 -1 18 228.71200562 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b00130016001200330001000e00340001003500340027000200010028003600010006000a000a0011000c002500250016000100140037003800210037002f0021001200380038002100380038>] TJ
+1 0 0 -1 18 228.71200562 Tm [<00120013001200140002001500120002001200160001000200010015001200180012003a00180016003a0001002e003b00010032003b001b00020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
12 0 0 -12 0 258.536011 cm
@@ -618,18 +1000,18 @@ q
Q
BT
/F19 10 Tf
-1 0 0 -1 18 256.73098755 Tm [<00290010002200080003000c0005000b0001000c0003000600040007000c000a0001000b0010000100190006001800010017000c0011001a000c0005001b00040007000b0001001c000c001d001b001e00390007002100100011002600230001003a00100011000100250004002600050006000b00080011000c>] TJ
+1 0 0 -1 18 256.73098755 Tm [<0027000400290005000c0011000100050008000700070001001e0006001f00010020001f001c000c0011001d000c0005001c00040007000b00210006000a0022000c0005000b00230009002400250010000300260001000c0005000b000c0011000c000a0001000500060003000c00010006000b000100280004002900050004000500290001000600280001001b00070004001c0005000c0011001d000c001c0001001e0006001f>] TJ
/F19 8 Tf
-1 0 0 -1 18 271.71200562 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b001400160038002b0001000e00340001003500340027>] TJ
+1 0 0 -1 18 271.71200562 Tm [<00120013001200140002001500120002001200160001000200010015001200180012003d0018003e003c0001002e003b00010032003b001b00020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
-12 0 0 -12 0 301.536011 cm /Im2 Do
+12 0 0 -12 0 301.536011 cm /Im4 Do
Q
BT
/F19 10 Tf
-1 0 0 -1 18 299.73098755 Tm [<003b00030006000400070001001f0004000c003c000c000a0001001b0018000100190006001800010017000c0011001a000c0005001b00040007000b0001001c000c001d001b001e0039000700210010001100260023>] TJ
+1 0 0 -1 18 299.73098755 Tm [<002b0010002500080003000c0005000b0001000c00020028000400290005000c000a0001001c001a0001001b00070004001c0005000c0011001d000c001c0001001e0006001f00010020001f001c000c0011001d000c0005001c00040007000b00210006000a0022000c0005000b0023000900240025001000030026>] TJ
/F19 8 Tf
-1 0 0 -1 18 314.71200562 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b00140016002b00130001000e00340001003500340027000200010028003600010006000a000a0011000c0025002500160001003d003d00210014001400140021003e0021003e>] TJ
+1 0 0 -1 18 314.71200562 Tm [<00270004002900050006000b00080011000c0001002b0006000b000c0018000100120013001200140002001500120002001200160001000200010015001200180012003d0018003e003d0001002e003b00010032003b001b000100020001001b00040003000c000100270010000800110025000c001800010028000c00110022000c001100020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
12 0 0 -12 0 344.536011 cm
@@ -637,36 +1019,36 @@ q
Q
BT
/F19 10 Tf
-1 0 0 -1 18 342.73098755 Tm [<00290010002200080003000c0005000b0001000c00020025000400260005000c000a0001001b0018000100190006001800010017000c0011001a000c0005001b00040007000b0001001c000c001d001b001e0039000700210010001100260023>] TJ
+1 0 0 -1 18 342.73098755 Tm [<002b0010002500080003000c0005000b0001000c0003000600040007000c000a0001000b0010000100050008000700070001002f00010020000c001f001c002100330007002400100011002900260001003700100011000100280004002900050006000b00080011000c>] TJ
/F19 8 Tf
-1 0 0 -1 18 357.71200562 Tm [<00240004002600050006000b00080011000c000100290006000b000c001600010012001300120012000200140012000200140012000100020001001400140016002b001200160013002b0001000e00340001003500340027000100020001002700040003000c000100240010000800110022000c001600010025000c0011001f000c0011000200010028003600010006000a000a0011000c002500250016000100140037003800210037002f0021001200380038002100380038>] TJ
+1 0 0 -1 18 357.71200562 Tm [<0012001300120014000200150012000200120016000100020001001500120018001400130018001300130001002e003b00010032003b001b>] TJ
ET
q
-12 0 0 -12 0 387.536011 cm /Im4 Do
+12 0 0 -12 0 387.536011 cm /Im2 Do
Q
BT
/F19 10 Tf
-1 0 0 -1 18 385.73098755 Tm [<00290010002200080003000c0005000b0001000c0003000600040007000c000a0001000b0010000100190006001800010017000c0011001a000c0005001b00040007000b0001001c001d001b000c0011001a000c0005001b00040007000b001e0006000a001f000c0005000b00200009002100220010000300230001003a00100011000100250004002600050006000b00080011000c>] TJ
+1 0 0 -1 18 385.73098755 Tm [<003f0003000600040007000100220004000c0031000c000a0001001c001a000100050008000700070001002f00010020000c001f001c00210033000700240010001100290026>] TJ
/F19 8 Tf
-1 0 0 -1 18 400.71200562 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b001200160013003d0001000e00340001003500340027>] TJ
+1 0 0 -1 18 400.71200562 Tm [<0012001300120014000200150012000200120016000100020001001500120018001400130018001500120001002e003b00010032003b001b00020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
-12 0 0 -12 0 430.536011 cm /Im2 Do
+12 0 0 -12 0 430.536011 cm /Im4 Do
Q
BT
/F19 10 Tf
-1 0 0 -1 18 428.73098755 Tm [<003b00030006000400070001001f0004000c003c000c000a0001001b0018000100190006001800010017000c0011001a000c0005001b00040007000b0001001c001d001b000c0011001a000c0005001b00040007000b001e0006000a001f000c0005000b0020000900210022001000030023>] TJ
+1 0 0 -1 18 428.73098755 Tm [<0027000400290005000c0011000100050008000700070001002f00010020000c001f001c002100330007002400100011002900260001000c0005000b000c0011000c000a0001000500060003000c00010006000b000100280004002900050004000500290001000600280001001b00070004001c0005000c001d0011000c001c0001002f>] TJ
/F19 8 Tf
-1 0 0 -1 18 443.71200562 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b001200160038002b0001000e00340001003500340027000200010028003600010006000a000a0011000c002500250016000100140037003800210037002f0021001200380038002100380038>] TJ
+1 0 0 -1 18 443.71200562 Tm [<0012001300120014000200150012000200120016000100020001001500120018001400130018003e00150001002e003b00010032003b001b00020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
-12 0 0 -12 0 473.536011 cm /Im6 Do
+12 0 0 -12 0 473.536011 cm /Im4 Do
Q
BT
/F19 10 Tf
-1 0 0 -1 18 471.73098755 Tm [<00290010002200080003000c0005000b0001000c00020025000400260005000c000a0001001b0018000100190006001800010017000c0011001a000c0005001b00040007000b0001001c001d001b000c0011001a000c0005001b00040007000b001e0006000a001f000c0005000b0020000900210022001000030023>] TJ
+1 0 0 -1 18 471.73098755 Tm [<002b0010002500080003000c0005000b0001000c00020028000400290005000c000a0001001c001a0001001b00070004001c0005000c001d0011000c001c0001002f00010020000c001f001c00210033000700240010001100290026>] TJ
/F19 8 Tf
-1 0 0 -1 18 486.71200562 Tm [<00240004002600050006000b00080011000c000100290006000b000c001600010012001300120012000200140012000200140012000100020001001400140016002b00120016003e00380001000e00340001003500340027000100020001002700040003000c000100240010000800110022000c001600010025000c0011001f000c0011000200010028003600010006000a000a0011000c002500250016000100140037003800210037002f0021001200380038002100380038>] TJ
+1 0 0 -1 18 486.71200562 Tm [<00270004002900050006000b00080011000c0001002b0006000b000c001800010012001300120014000200150012000200120016000100020001001500120018001400130018003e00140001002e003b00010032003b001b000100020001001b00040003000c000100270010000800110025000c001800010028000c00110022000c001100020001002a002e00010006000a000a0011000c00280028001800010015003c00140024003c003d0024001200140014002400140014>] TJ
ET
q
12 0 0 -12 0 516.536011 cm
@@ -674,9 +1056,9 @@ q
Q
BT
/F19 10 Tf
-1 0 0 -1 18 514.73101807 Tm [<000e00260011000c000c0003000c0005000b000100220010000300090007000c000b000c000a0021>] TJ
+1 0 0 -1 18 514.73101807 Tm [<000e00290011000c000c0003000c0005000b000100250010000300090007000c000b000c000a0024>] TJ
/F19 8 Tf
-1 0 0 -1 18 529.7119751 Tm [<0012001300120012000200140012000200140012000100020001001400140016002b00120016003e00380001000e00340001003500340027>] TJ
+1 0 0 -1 18 529.7119751 Tm [<0012001300120014000200150012000200120016000100020001001500120018001400130018003e00140001002e003b00010032003b001b>] TJ
ET
Q
q
@@ -698,118 +1080,392 @@ Q
endstream
endobj
-29 0 obj
-7526
+43 0 obj
+7622
endobj
-30 0 obj
+44 0 obj
<<
- /ColorSpace 35 0 R
- /Font 36 0 R
+ /ColorSpace 54 0 R
+ /Font 55 0 R
/ProcSet [
/PDF
/ImageB
/ImageC
/Text
]
- /XObject 37 0 R
+ /XObject 56 0 R
>>
endobj
-31 0 obj
+45 0 obj
+<<
+ /Length1 36004
+ /Length 46 0 R
+>>
+stream
+
+
+„ X
+
+
+ "*2:BHJPRY[]_bj€‚ˆ’˜¢¨¶ÆÖÝàòö     & / 2 5 9 < D G p t } € ” ¡ ¤ ¦ © « ® ± ´ ¸ ½!!! !"!&!.!P!S![!‰!""""""""+"H"`"d#% %²%¶%¼%À%Æ%É%Ì&&j''R'æ.".:û
+æ æ
+
+
+#$34ÍÎÏÐÑÒÓÔIJÖ×ØÙÚÛÜÝUVßàáâãäåæñò?<@óG‘’‰ŠÌonpz}KHLS•–žÕtvx¯°§¨uwy,-./ +0ÀÁ»¼¹{|rWTX;_³´ÄÅÞsqŒ‘¦€„‚ƒ…¢£“’À§«•–¨ª©&ƒ01ˆ²ªº·¸=·ÌÑÒëÕØèõ”•“
+
+
+
+
+
+
+
+
+/¹
+
+(7$%@/-$6!3-!( )7$'D3
+
+¹
+/¹
+
+¹
+/¹
+
+
+¹
+Ð0133"&54632RR(!!!!æþJ
+
+
+¹
+/¹
+
+¹
+H2>þÈ
+Eƒƒ!*  / *<$ >ˆˆCþò-1>
+WP· ,8ÑA;-$çþó G"!H  ýò$>-
+
+
+ú
+{kþ:þÜoÈ
+
+
+*
+
+y
+
+
+ñÿññ
+ñ
+
+0
+”
+
+endstream
+endobj
+
+%QDF: ignore_newline
+46 0 obj
+36004
+endobj
+
+47 0 obj
+<<
+ /R 0
+>>
+endobj
+
+48 0 obj
+<<
+ /BaseFont /HGHMVV+SourceSansPro-Bold
+ /CIDSystemInfo <<
+ /Ordering (Identity)
+ /Registry (Adobe)
+ /Supplement 0
+ >>
+ /CIDToGIDMap /Identity
+ /DW 1000
+ /FontDescriptor 57 0 R
+ /Subtype /CIDFontType2
+ /Type /Font
+ /W [
+ 6
+ [
+ 548
+ ]
+ 20
+ [
+ 556
+ ]
+ 28
+ [
+ 527
+ ]
+ 32
+ [
+ 518
+ ]
+ 34
+ [
+ 534
+ ]
+ 36
+ [
+ 276
+ ]
+ 39
+ [
+ 286
+ 857
+ 572
+ ]
+ 45
+ [
+ 398
+ ]
+ 47
+ [
+ 383
+ 568
+ ]
+ 1143
+ [
+ 300
+ ]
+ ]
+>>
+endobj
+
+49 0 obj
+<<
+ /Length 50 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo
+<< /Registry (TTX+0)
+/Ordering (T42UV)
+/Supplement 0
+>> def
+/CMapName /TTX+0 def
+/CMapType 2 def
+1 begincodespacerange
+<0000><FFFF>
+endcodespacerange
+13 beginbfrange
+<0006><0006><0045>
+<0014><0014><0053>
+<001c><001c><0061>
+<0020><0020><0065>
+<0022><0022><0067>
+<0024><0024><0069>
+<0027><0027><006c>
+<0028><0028><006d>
+<0029><0029><006e>
+<002d><002d><0072>
+<002f><002f><0074>
+<0030><0030><0075>
+<0477><0477><003a>
+endbfrange
+endcmap
+CMapName currentdict /CMap defineresource pop
+end end
+endstream
+endobj
+
+50 0 obj
+562
+endobj
+
+51 0 obj
<<
- /BaseFont /GHNQNE+SourceSansPro-Regular
+ /BaseFont /TSVYHU+AdobeHand-A
/DescendantFonts [
- 38 0 R
+ 58 0 R
]
/Encoding /Identity-H
/Subtype /Type0
- /ToUnicode 39 0 R
+ /ToUnicode 59 0 R
/Type /Font
>>
endobj
-32 0 obj
+52 0 obj
<<
- /BaseFont /TQLPTX+AdobeHand-A
+ /BaseFont /GMUSAL+SourceSansPro-Regular
/DescendantFonts [
- 41 0 R
+ 61 0 R
]
/Encoding /Identity-H
/Subtype /Type0
- /ToUnicode 42 0 R
+ /ToUnicode 62 0 R
/Type /Font
>>
endobj
-33 0 obj
+53 0 obj
<<
- /BBox [
- 0
- 0
- 90
- 16
+ /BaseFont /PJPZND+AdobeHand-B
+ /DescendantFonts [
+ 64 0 R
]
- /FormType 1
- /Matrix [
- 1
- 0
- 0
- 1
- 0
- 0
+ /Encoding /Identity-H
+ /Subtype /Type0
+ /ToUnicode 65 0 R
+ /Type /Font
+>>
+endobj
+
+54 0 obj
+<<
+ /DefaultRGB [
+ /ICCBased
+ 67 0 R
]
- /Resources <<
- /XObject <<
- /img0 44 0 R
- /img1 46 0 R
- >>
- >>
- /Subtype /Form
- /Type /XObject
- /Length 34 0 R
>>
-stream
-q 38.23 0 0 16 0 0 cm /img1 Do Q
-endstream
endobj
-34 0 obj
-33
+55 0 obj
+<<
+ /F19 69 0 R
+>>
endobj
-35 0 obj
+56 0 obj
<<
- /DefaultRGB [
- /ICCBased
- 48 0 R
+ /Im1 70 0 R
+ /Im2 72 0 R
+ /Im3 74 0 R
+ /Im4 76 0 R
+ /Im5 78 0 R
+ /Im6 80 0 R
+ /Im7 82 0 R
+ /Im8 84 0 R
+ /Im9 86 0 R
+>>
+endobj
+
+57 0 obj
+<<
+ /Ascent 750
+ /CapHeight 660
+ /Descent -250
+ /Flags 262176
+ /FontBBox [
+ -457
+ -315
+ 2157
+ 1009
]
+ /FontFile2 88 0 R
+ /FontName /HGHMVV+SourceSansPro-Bold
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
>>
endobj
-36 0 obj
+58 0 obj
<<
- /F19 50 0 R
+ /BaseFont /TSVYHU+AdobeHand-A
+ /CIDSystemInfo <<
+ /Ordering (Identity)
+ /Registry (Adobe)
+ /Supplement 0
+ >>
+ /CIDToGIDMap /Identity
+ /DW 1000
+ /FontDescriptor 90 0 R
+ /Subtype /CIDFontType2
+ /Type /Font
+ /W [
+ 3
+ [
+ 208
+ ]
+ 58
+ [
+ 416
+ ]
+ 63
+ [
+ 349
+ ]
+ 68
+ [
+ 400
+ 416
+ ]
+ 72
+ [
+ 363
+ ]
+ 76
+ [
+ 222
+ 195
+ 398
+ 239
+ ]
+ 81
+ [
+ 398
+ ]
+ 85
+ [
+ 340
+ ]
+ ]
>>
endobj
-37 0 obj
+59 0 obj
<<
- /Im1 51 0 R
- /Im2 53 0 R
- /Im3 55 0 R
- /Im4 57 0 R
- /Im5 59 0 R
- /Im6 61 0 R
- /Im7 63 0 R
- /Im8 65 0 R
- /Im9 67 0 R
+ /Length 60 0 R
>>
+stream
+/CIDInit /ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo
+<< /Registry (TTX+0)
+/Ordering (T42UV)
+/Supplement 0
+>> def
+/CMapName /TTX+0 def
+/CMapType 2 def
+1 begincodespacerange
+<0000><FFFF>
+endcodespacerange
+12 beginbfrange
+<0003><0003><0020>
+<003a><003a><0054>
+<003f><003f><0059>
+<0044><0044><0061>
+<0045><0045><0062>
+<0048><0048><0065>
+<004c><004c><0069>
+<004d><004d><006a>
+<004e><004e><006b>
+<004f><004f><006c>
+<0051><0051><006e>
+<0055><0055><0072>
+endbfrange
+endcmap
+CMapName currentdict /CMap defineresource pop
+end end
+endstream
endobj
-38 0 obj
+60 0 obj
+543
+endobj
+
+61 0 obj
<<
- /BaseFont /GHNQNE+SourceSansPro-Regular
+ /BaseFont /GMUSAL+SourceSansPro-Regular
/CIDSystemInfo <<
/Ordering (Identity)
/Registry (Adobe)
@@ -817,7 +1473,7 @@ endobj
>>
/CIDToGIDMap /Identity
/DW 1000
- /FontDescriptor 69 0 R
+ /FontDescriptor 91 0 R
/Subtype /CIDFontType2
/Type /Font
/W [
@@ -825,27 +1481,22 @@ endobj
[
200
]
- 3
- [
- 588
- ]
5
[
615
527
]
- 11
+ 18
[
- 480
+ 664
]
20
[
534
536
]
- 28
+ 29
[
- 504
553
456
]
@@ -853,6 +1504,10 @@ endobj
[
496
]
+ 34
+ [
+ 504
+ ]
36
[
246
@@ -866,28 +1521,24 @@ endobj
[
547
]
- 45
+ 44
[
+ 555
347
]
- 47
- [
- 338
- ]
- 52
+ 1087
[
- 467
+ 497
]
- 1087
+ 1089
[
497
497
497
]
- 1092
+ 1094
[
497
- 497
]
1142
[
@@ -903,9 +1554,9 @@ endobj
>>
endobj
-39 0 obj
+62 0 obj
<<
- /Length 40 0 R
+ /Length 63 0 R
>>
stream
/CIDInit /ProcSet findresource begin
@@ -921,30 +1572,28 @@ begincmap
1 begincodespacerange
<0000><FFFF>
endcodespacerange
-27 beginbfrange
+25 beginbfrange
<0001><0001><0020>
-<0003><0003><0042>
<0005><0005><0044>
<0006><0006><0045>
-<000b><000b><004a>
+<0012><0012><0051>
<0014><0014><0053>
<0015><0015><0054>
-<001c><001c><0061>
<001d><001d><0062>
<001e><001e><0063>
<0020><0020><0065>
+<0022><0022><0067>
<0024><0024><0069>
<0026><0026><006b>
<0027><0027><006c>
<0029><0029><006e>
+<002c><002c><0071>
<002d><002d><0072>
-<002f><002f><0074>
-<0034><0034><0079>
<043f><043f><0030>
-<0440><0440><0031>
<0441><0441><0032>
-<0444><0444><0035>
-<0445><0445><0036>
+<0442><0442><0033>
+<0443><0443><0034>
+<0446><0446><0037>
<0476><0476><002c>
<0477><0477><003a>
<0497><0497><0028>
@@ -956,13 +1605,13 @@ end end
endstream
endobj
-40 0 obj
-828
+63 0 obj
+790
endobj
-41 0 obj
+64 0 obj
<<
- /BaseFont /TQLPTX+AdobeHand-A
+ /BaseFont /PJPZND+AdobeHand-B
/CIDSystemInfo <<
/Ordering (Identity)
/Registry (Adobe)
@@ -970,63 +1619,54 @@ endobj
>>
/CIDToGIDMap /Identity
/DW 1000
- /FontDescriptor 70 0 R
+ /FontDescriptor 92 0 R
/Subtype /CIDFontType2
/Type /Font
/W [
3
[
- 208
+ 285
]
- 40
+ 55
[
- 418
+ 529
]
- 48
+ 58
[
- 476
+ 528
]
- 68
+ 69
[
- 400
- 416
+ 410
]
72
[
- 363
+ 369
]
76
[
- 222
+ 280
]
78
[
- 398
- 239
+ 479
+ 295
]
81
[
- 398
+ 491
]
85
[
- 340
- ]
- 87
- [
- 332
- ]
- 92
- [
- 413
+ 377
]
]
>>
endobj
-42 0 obj
+65 0 obj
<<
- /Length 43 0 R
+ /Length 66 0 R
>>
stream
/CIDInit /ProcSet findresource begin
@@ -1042,11 +1682,10 @@ begincmap
1 begincodespacerange
<0000><FFFF>
endcodespacerange
-13 beginbfrange
+10 beginbfrange
<0003><0003><0020>
-<0028><0028><0042>
-<0030><0030><004a>
-<0044><0044><0061>
+<0037><0037><0051>
+<003a><003a><0054>
<0045><0045><0062>
<0048><0048><0065>
<004c><004c><0069>
@@ -1054,8 +1693,6 @@ endcodespacerange
<004f><004f><006c>
<0051><0051><006e>
<0055><0055><0072>
-<0057><0057><0074>
-<005c><005c><0079>
endbfrange
endcmap
CMapName currentdict /CMap defineresource pop
@@ -1063,157 +1700,14 @@ end end
endstream
endobj
-43 0 obj
-562
-endobj
-
-44 0 obj
-<<
- /BitsPerComponent 8
- /ColorSpace /DeviceGray
- /Height 303
- /Subtype /Image
- /Type /XObject
- /Width 724
- /Length 45 0 R
->>
-stream
-
- 
- 
-
-,f–ÈÛõþÿÿÿÿÿÿÿÿÿÿÿÿýÈq1
-7o»éôèˇ5
-
-&Wz´×äõúöï‡<
-
-
-<†ÛûÿÿÿÿÿÑ0
-
-'‘Û÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿíÌm
-
-5{êöÿÿÿÿÿÿÿÿÿüð¡A
-
-+w¾òþÿÿÿþýÍ“`(
-
-
- 
-<ŒÖúÿÿÿÿÿÿÿôÈŽ.
-
-
-
-4ƒëÿÿÿÿÿÿÿÿÿÿüß?
-
-
-
-%ŒáøÿÿÿÿÿÿÿÝ =
-†Íøÿÿÿÿÿþüüþÿÿÿð¼
-
-V¬ñÿÿÿÿÿÿÿÿÿÿá£tzµæúÿÿÿþý÷àžZ 
-&šÞþÿÿÿÿþþÿÿÿÿÿþÛ†F
-<vÚÿÿÿÿÿÿÿÿì®l;EšÅðÿÿÿÿÿÿÿÿÿÿÿÿð¼ˆ/ 
-)m°èÿÿÿÿõÛ{$
-]¶òÿÿÿÿè³M
-%:RWR8"
-]–áÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿùÀa%
-.`žÐùýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖ®e7
-&053-#
-
- 
-M–ÚùÿÿÿÿÿÜ¥^ QÞÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûé¯]*
-
-
-
-4]~ªÏúÿÿÿÿÿÿÿÿÿÿüå¼["
-
-
-$C`ƒ£Ç×öüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøêÓŸj 
-1rŸÓêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûפ8
-
-+d¬îüÿÿÿÿÿÿî¶5
-
-,o­äÿÿÿÿÿÿÿÿÿÿÿä¾W
- AUy’³×öÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿòÑn0
-  
-/[·îÿÿÿÿÿþï¯d
-,;B8, 
- %aÌüþÿÿÿç®h&
-
- B•Òÿÿÿÿÿÿþúöûýÿÿÿÿÿÿÿÿÿÿÿöϱ£»éîïâÀ„R
-
-&AWglppmleP7
- 4Tesy„£¾éÿÿÿÿÿÿÿëŸX
-
--T|ÛõýÿÿÿÿÿÿÿÿÿñÔš†|ry·âÿÿÿÿÿÿÿÿÿóßm
- 9Z‡—Ç×éñóïëßØÈ·ƒY
-8r¡ÜôÿÿÿÿÿþþþþÿÿÿÿÿÿüøõõøüþÿÿÿþþØ¢h/#L…Ùþÿÿÿÿÿÿÿ÷Ív"
-
-
-
-
-
-
-
-
-
-4ƒòúÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿìÓ«~V*p·ïÿÿÿÿÿÿæ»J
-1Q‹ªçýÿÿÿÿÿÿÿÿÿÿôÒ¦‹‰¹è÷øøøø÷óÅ”]2 
-7R^jpŠŠŒ¢˜ª»¼½¼ÀÂÈÒÕÚÚÙØØÙÖÓÓÌÆÀ™seQ?
-
-/†¨Óêþÿÿÿÿøì¿´‹eG* 
- "###$####!! 
-Ee„Ÿ¨¢q_*
-&;D'
-H{¦¯°°“Š_7
-
-
-7wÒòÿÿÿÿÿÇ9
-6sÏúÿÿÿÿÿÿÿÿèP
-
-
-/s¤ëýÿÿÿÿÿÞ±g/
-
-
-
-8ªëÿÿÿÿÿÿÿ¬i
-
-
-Qìýÿÿÿÿÿõ¿I
-
-1_ÅöÿÿÿÿÿÿÿÕ™B
-endstream
-endobj
-
-%QDF: ignore_newline
-45 0 obj
-219372
-endobj
-
-46 0 obj
-<<
- /BitsPerComponent 8
- /ColorSpace /DeviceRGB
- /Height 303
- /SMask 44 0 R
- /Subtype /Image
- /Type /XObject
- /Width 724
- /Length 47 0 R
->>
-stream
-
-endstream
-endobj
-
-%QDF: ignore_newline
-47 0 obj
-658116
+66 0 obj
+505
endobj
-48 0 obj
+67 0 obj
<<
/N 3
- /Length 49 0 R
+ /Length 68 0 R
>>
stream
@@ -1270,24 +1764,24 @@ endstream
endobj
%QDF: ignore_newline
-49 0 obj
+68 0 obj
6924
endobj
-50 0 obj
+69 0 obj
<<
/BaseFont /EAAAAA+ArialUnicodeMS
/DescendantFonts [
- 71 0 R
+ 93 0 R
]
/Encoding /Identity-H
/Subtype /Type0
- /ToUnicode 72 0 R
+ /ToUnicode 94 0 R
/Type /Font
>>
endobj
-51 0 obj
+70 0 obj
<<
/BitsPerComponent 8
/ColorSpace /DeviceGray
@@ -1296,7 +1790,7 @@ endobj
/Subtype /Image
/Type /XObject
/Width 24
- /Length 52 0 R
+ /Length 71 0 R
>>
stream
@@ -1304,24 +1798,24 @@ endstream
endobj
%QDF: ignore_newline
-52 0 obj
+71 0 obj
576
endobj
-53 0 obj
+72 0 obj
<<
/BitsPerComponent 8
/ColorSpace [
/ICCBased
- 48 0 R
+ 67 0 R
]
/Height 24
/Name /Im2
- /SMask 51 0 R
+ /SMask 70 0 R
/Subtype /Image
/Type /XObject
/Width 24
- /Length 54 0 R
+ /Length 73 0 R
>>
stream
@@ -1329,11 +1823,11 @@ endstream
endobj
%QDF: ignore_newline
-54 0 obj
+73 0 obj
1728
endobj
-55 0 obj
+74 0 obj
<<
/BitsPerComponent 8
/ColorSpace /DeviceGray
@@ -1342,44 +1836,46 @@ endobj
/Subtype /Image
/Type /XObject
/Width 24
- /Length 56 0 R
+ /Length 75 0 R
>>
stream
-
+
+
+ùÝ
endstream
endobj
%QDF: ignore_newline
-56 0 obj
+75 0 obj
576
endobj
-57 0 obj
+76 0 obj
<<
/BitsPerComponent 8
/ColorSpace [
/ICCBased
- 48 0 R
+ 67 0 R
]
/Height 24
/Name /Im4
- /SMask 55 0 R
+ /SMask 74 0 R
/Subtype /Image
/Type /XObject
/Width 24
- /Length 58 0 R
+ /Length 77 0 R
>>
stream
-
+
endstream
endobj
%QDF: ignore_newline
-58 0 obj
+77 0 obj
1728
endobj
-59 0 obj
+78 0 obj
<<
/BitsPerComponent 8
/ColorSpace /DeviceGray
@@ -1388,46 +1884,44 @@ endobj
/Subtype /Image
/Type /XObject
/Width 24
- /Length 60 0 R
+ /Length 79 0 R
>>
stream
-
-
-ùÝ
+
endstream
endobj
%QDF: ignore_newline
-60 0 obj
+79 0 obj
576
endobj
-61 0 obj
+80 0 obj
<<
/BitsPerComponent 8
/ColorSpace [
/ICCBased
- 48 0 R
+ 67 0 R
]
/Height 24
/Name /Im6
- /SMask 59 0 R
+ /SMask 78 0 R
/Subtype /Image
/Type /XObject
/Width 24
- /Length 62 0 R
+ /Length 81 0 R
>>
stream
-
+
endstream
endobj
%QDF: ignore_newline
-62 0 obj
+81 0 obj
1728
endobj
-63 0 obj
+82 0 obj
<<
/BitsPerComponent 8
/ColorSpace /DeviceGray
@@ -1436,7 +1930,7 @@ endobj
/Subtype /Image
/Type /XObject
/Width 24
- /Length 64 0 R
+ /Length 83 0 R
>>
stream
@@ -1445,24 +1939,24 @@ endstream
endobj
%QDF: ignore_newline
-64 0 obj
+83 0 obj
576
endobj
-65 0 obj
+84 0 obj
<<
/BitsPerComponent 8
/ColorSpace [
/ICCBased
- 48 0 R
+ 67 0 R
]
/Height 24
/Name /Im8
- /SMask 63 0 R
+ /SMask 82 0 R
/Subtype /Image
/Type /XObject
/Width 24
- /Length 66 0 R
+ /Length 85 0 R
>>
stream
@@ -1470,11 +1964,11 @@ endstream
endobj
%QDF: ignore_newline
-66 0 obj
+85 0 obj
1728
endobj
-67 0 obj
+86 0 obj
<<
/BitsPerComponent 8
/ColorSpace [
@@ -1488,7 +1982,7 @@ endobj
/Subtype /Image
/Type /XObject
/Width 353
- /Length 68 0 R
+ /Length 87 0 R
>>
stream
tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt9ettttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttE.rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrP`9ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttm.rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrlM$ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttJgCrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrd$ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt(:rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrkU$ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt^rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrN(ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt,Brrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr< tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt XrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrQ7ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt&rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrTtttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttrrrrrrrrrrrrrrrrrrttrrrrrrrrrrrrrrrrrrrrS tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttrrrrrrrrrrrrrrrrrrt%t#rrrrrrrrrrrrrrrrrrrrh&ttttttttttttttttttttttttttttttttt ssssttttttttttttttttttsssttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttsssstttttttttttttttttttttttttttttttttttttttttttttttttttttt s ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttrrrrrrrrrrrrrrrrrr"t'rtrrrrrrrrrrrrrrrrrrrtttttttttttt
@@ -1546,11 +2040,83 @@ endstream
endobj
%QDF: ignore_newline
-68 0 obj
+87 0 obj
21533
endobj
-69 0 obj
+88 0 obj
+<<
+ /Length1 32728
+ /Length 89 0 R
+>>
+stream
+
+
+ U
+
+
+ "*2:BHJPRY[]_bj€‚ˆ’˜¢¨¶ÆÖÝàòö     & / 2 5 9 < D G p t } € ” ¡ ¤ ¦ © « ® ± ´ ¸ ½!!! !"!&!.!P!S![!‰!""""""""+"H"`"d#% %²%¶%¼%À%Æ%É%Ì&&j''R'æ.".:û
+æ æ
+
+
+#$34ÍÎÏÐÑÒÓÔIJÖ×ØÙÚÛÜÝUVßàáâãäåæñò?<@óG‘’‰ŠÌonpz}KHLS•–žÕtvx¯°§¨uwy,-./ +0ÀÁ»¼¹{|rWTX;_³´ÄÅÞsqŒ‘¦€„‚ƒ…¢£“’À§«•–¨ª©&ƒ01ˆ²ªº·¸=·ÌÑÒëÕØèõ”•“
+
+
+
+
+
+
+
+˜
+ +9$(G5,*] "TE)I7!
+ F$N< )6 NX!'a$msþä3#rW *
+/¹
+
+
+¹
+E2561&]›³&-#5 #C`><aC$$@W3$ 63!Y:*4.
+!*P\a'Hf5'''')2@'%3 <Ó0!<( (1C,-C- k "+?)
+ ;C'A/É)*')((*)þ“#
+Ð0133"&54632A“J%00%&//ðþ9+""**""+
+
+¹
+F15A!I2PK“ %0“ &.ð@-+("1k]þÌ!6(0þ±!6(0þ±
+ L3QI“ (ð?-j^þÌ!6(þ±
+L& =ðW30(3þà
+6 2G+Ém„„sÇ*%k
+ó
+{eþ7þÅmñ
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+89 0 obj
+32728
+endobj
+
+90 0 obj
+<<
+ /Ascent 750
+ /CapHeight 650
+ /Descent -250
+ /Flags 32
+ /FontBBox [
+ -153
+ -396
+ 1019
+ 996
+ ]
+ /FontFile2 96 0 R
+ /FontName /TSVYHU+AdobeHand-A
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+91 0 obj
<<
/Ascent 750
/CapHeight 660
@@ -1562,41 +2128,41 @@ endobj
2159
968
]
- /FontFile2 74 0 R
- /FontName /GHNQNE+SourceSansPro-Regular
+ /FontFile2 98 0 R
+ /FontName /GMUSAL+SourceSansPro-Regular
/ItalicAngle 0
/StemV 80
/Type /FontDescriptor
>>
endobj
-70 0 obj
+92 0 obj
<<
- /Ascent 750
- /CapHeight 650
- /Descent -250
+ /Ascent 700
+ /CapHeight 530
+ /Descent -300
/Flags 32
/FontBBox [
- -153
- -396
- 1019
- 996
+ -226
+ -375
+ 980
+ 897
]
- /FontFile2 76 0 R
- /FontName /TQLPTX+AdobeHand-A
+ /FontFile2 100 0 R
+ /FontName /PJPZND+AdobeHand-B
/ItalicAngle 0
/StemV 80
/Type /FontDescriptor
>>
endobj
-71 0 obj
+93 0 obj
<<
/BaseFont /EAAAAA+ArialUnicodeMS
- /CIDSystemInfo 78 0 R
+ /CIDSystemInfo 102 0 R
/CIDToGIDMap /Identity
/DW 0
- /FontDescriptor 79 0 R
+ /FontDescriptor 103 0 R
/Subtype /CIDFontType2
/Type /Font
/W [
@@ -1623,15 +2189,18 @@ endobj
556
556
556
+ 556
+ 556
722
277
666
500
- 500
- 500
+ 610
556
- 333
+ 500
+ 666
222
+ 333
1015
500
556
@@ -1641,38 +2210,36 @@ endobj
666
500
556
- 610
277
722
+ 500
722
+ 666
+ 777
+ 666
+ 722
+ 777
556
666
+ 666
610
- 943
- 556
- 777
+ 277
0
354
556
833
- 777
- 666
556
556
556
- 277
666
- 722
- 556
- 556
]
]
>>
endobj
-72 0 obj
+94 0 obj
<<
- /Length 73 0 R
+ /Length 95 0 R
>>
stream
/CIDInit /ProcSet findresource begin
@@ -1688,7 +2255,7 @@ end def
1 begincodespacerange
<0000> <FFFF>
endcodespacerange
-61 beginbfchar
+62 beginbfchar
<0000> <ffff>
<0001> <0020>
<0002> <002d>
@@ -1708,51 +2275,52 @@ endcodespacerange
<0010> <006f>
<0011> <0072>
<0012> <0032>
-<0015> <0043>
-<0016> <003a>
-<0017> <0042>
-<0018> <0079>
-<0019> <004a>
-<001a> <006b>
-<001b> <0062>
-<001c> <0028>
-<001d> <006a>
-<001e> <0040>
-<001f> <0076>
-<0020> <0068>
-<0021> <002e>
-<0022> <0063>
-<0023> <0029>
-<0024> <0053>
-<0025> <0073>
-<0026> <0067>
-<0027> <0054>
-<0028> <0049>
-<0029> <0044>
-<002a> <0048>
-<002b> <0035>
-<002c> <0056>
-<002d> <005a>
-<002e> <0057>
-<002f> <0039>
-<0030> <004f>
-<0031> <200b>
-<0032> <0022>
-<0033> <0038>
-<0034> <004d>
-<0035> <0047>
-<0036> <0050>
-<0037> <0037>
-<0038> <0033>
-<0039> <0071>
-<003a> <0066>
-<003b> <0045>
-<003c> <0077>
-<003d> <0036>
-<003e> <0034>
+<0013> <0030>
+<0014> <0033>
+<0015> <0031>
+<0016> <0034>
+<0017> <0043>
+<0018> <003a>
+<0019> <0042>
+<001a> <0079>
+<001b> <0054>
+<001c> <0062>
+<001d> <006b>
+<001e> <0059>
+<001f> <006a>
+<0020> <0028>
+<0021> <0040>
+<0022> <0076>
+<0023> <0068>
+<0024> <002e>
+<0025> <0063>
+<0026> <0029>
+<0027> <0053>
+<0028> <0073>
+<0029> <0067>
+<002a> <0049>
+<002b> <0044>
+<002c> <004a>
+<002d> <0048>
+<0030> <004b>
+<0031> <0077>
+<0032> <0047>
+<0033> <0071>
+<0034> <0056>
+<0035> <0058>
+<0036> <005a>
+<0037> <0066>
+<0038> <200b>
+<0039> <0022>
+<003a> <0036>
+<003b> <004d>
+<003c> <0037>
+<003d> <0039>
+<003e> <0035>
+<003f> <0045>
endbfchar
1 beginbfrange
-<0013> <0014> <0030>
+<002e> <002f> <0050>
endbfrange
endcmap
CMapName currentdict /CMap defineresource pop
@@ -1761,105 +2329,28 @@ end
endstream
endobj
-73 0 obj
-1259
-endobj
-
-74 0 obj
-<<
- /Length1 34244
- /Length 75 0 R
->>
-stream
-
-
-„ X
-
-
- "*2:BHJPRY[]_bj€‚ˆ’˜¢¨¶ÆÖÝàòö     & / 2 5 9 < D G p t } € ” ¡ ¤ ¦ © « ® ± ´ ¸ ½!!! !"!&!.!P!S![!‰!""""""""+"H"`"d#% %²%¶%¼%À%Æ%É%Ì&&j''R'æ.".:û
-æ æ
-
-
-#$34ÍÎÏÐÑÒÓÔIJÖ×ØÙÚÛÜÝUVßàáâãäåæñò?<@óG‘’‰ŠÌonpz}KHLS•–žÕtvx¯°§¨uwy,-./ +0ÀÁ»¼¹{|rWTX;_³´ÄÅÞsqŒ‘¦€„‚ƒ…¢£“’À§«•–¨ª©&ƒ01ˆ²ªº·¸=·ÌÑÒëÕØèõ”•“
-
-
-
-
-
-
-
-
-/¹
-
-(7$%@/-$6!3-!( )7$'D3
-
-¹
-/¹
-
-¹
-/¹
-
-
-¹
-Ð0133"&54632RR(!!!!æþJ
-
-H2>þÈ
-Eƒƒ!*  / *<$ >ˆˆCþò-1>
-WP· ,8ÑA;-$çþó G"!H  ýò$>-
-Ð01353#5>733O’t,A?„DÖ5ýÆD
-/¹
-
-¹
-ú
-{kþ:þÜoÈ
-
-
-*
-
-y
-
-
-ñÿññ
-ñ
-
-
-
-
-
-
-
-endstream
-endobj
-
-%QDF: ignore_newline
-75 0 obj
-34244
+95 0 obj
+1273
endobj
-76 0 obj
+96 0 obj
<<
- /Length1 8384
- /Length 77 0 R
+ /Length1 7672
+ /Length 97 0 R
>>
stream
-
+
+phead ð?
-
-<   
-)# 
- ';Ip  
- 'V' !
- / (#%':
- 
-›,+(
-!&&&)% S,QK      
-9   JP à $ 4 ¼jQ !%) 
-"  
-# !) [ 
-
-L(
-S™Š, 8  $K3PW9'#  & #IOQ¡M$"
+
+*
+ 0)  0%*%0## 0(a%R$, O
+#M!Oˆ" 
+Px-3
+
+ 
+ ! ç=B _&EC$EV? ¸C|%(@,È$.&5"
=ž    
L Ÿ7$T7N*
%
@@ -1882,7 +2373,9 @@ $.% ! &  ' ; 
   # %  $
©!
 
-ýé1.  0!(p*r= )@
+ýé1.  0!(p*r= )@
+Ê # 
+        G8  —"† 50R;  ,kU , &*Ja#,$
   ½  . 6'R*(% n'y,  MQ'>'&•%& !;??G(
/75? 5 4* 1 /) K
@@ -1901,33 +2394,243 @@ $.% ! &  ' ; 
/?'?5'??
3x&$!-/' 
 # 1 $ !‚ %@F6 3,&GR( $$ $N= <
- 
-$ /'(  *1(# %&,)&
-!
- R$+:%%#)($&"
-(*';-'/'( "4#;2++T)<'&&''2 /%"-   &:8!))*L&
+ 
d
Žÿö
-;
-
-
-
-
-œœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœ
+;
endstream
endobj
%QDF: ignore_newline
-77 0 obj
-8384
+97 0 obj
+7672
endobj
-78 0 obj
+98 0 obj
+<<
+ /Length1 34216
+ /Length 99 0 R
+>>
+stream
+
+
+„ X
+
+
+ "*2:BHJPRY[]_bj€‚ˆ’˜¢¨¶ÆÖÝàòö     & / 2 5 9 < D G p t } € ” ¡ ¤ ¦ © « ® ± ´ ¸ ½!!! !"!&!.!P!S![!‰!""""""""+"H"`"d#% %²%¶%¼%À%Æ%É%Ì&&j''R'æ.".:û
+æ æ
+
+
+#$34ÍÎÏÐÑÒÓÔIJÖ×ØÙÚÛÜÝUVßàáâãäåæñò?<@óG‘’‰ŠÌonpz}KHLS•–žÕtvx¯°§¨uwy,-./ +0ÀÁ»¼¹{|rWTX;_³´ÄÅÞsqŒ‘¦€„‚ƒ…¢£“’À§«•–¨ª©&ƒ01ˆ²ªº·¸=·ÌÑÒëÕØèõ”•“
+
+
+
+
+
+
+
+
+
+(7$%@/-$6!3-!( )7$'D3
+
+¹
+/¹
+
+¹
+/¹
+
+
+¹
+Ð0133"&54632RR(!!!!æþJ
+
+H2>þÈ
+
+ú
+{kþ:þÜoÈ
+
+
+*
+
+y
+
+
+ñÿññ
+ñ
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+99 0 obj
+34216
+endobj
+
+100 0 obj
+<<
+ /Length1 11824
+ /Length 101 0 R
+>>
+stream
+
+
+NâÞ
+
+
+  ' 
+) 4
+ 
+ 
+ "(  
+   
+    
+         
+ 
+ Â
+ & '
+  
+
+ 
+   
+         
+  !    
+/ 
+ , +
+ $
+     
+        
+ 
+
+ C3
+
+    
+")"/ 
+ 
+  -' :   
+
+
+ 
+
+ 
+  $
+       %    ä 
+    
+   
+  
+   )
+ -   
+ 
+4   
+        
+   '    4 
+ ,  
+'
+  
+       ž 
+   
+ 
+    
+
+
+ 
+ 
+ 
+     
+   
+      
+   
+
+       
+ 
+
+ 
+  ¡    ?     
+
+  
+7 
+       
+       
+  
+  
+  
+
+ 
+        
+   
+ 
+
+ 
+
+  
+ _   $    
+  .            
+
+  
+ 
+  
+  
+      
+
+ $     
+ 
+   
+ 
+  
+ 
+  
+    Y       
+   
+
+  
+   H      
+  %     
+ 
+   
+  
+
+   
+
+ 
+     
+   ƒ
+
+     
+   !
+   
+          
+ !
+    
+        
+    ! "   
+   
+
+ 
+  h   ,  
+  
+ 
+     '
+  
+  
+
+LÿõL
+ø
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+101 0 obj
+11824
+endobj
+
+102 0 obj
<<
/Ordering (UCS)
/Registry (Adobe)
@@ -1935,10 +2638,10 @@ endobj
>>
endobj
-79 0 obj
+103 0 obj
<<
/Ascent 1078
- /CIDSet 80 0 R
+ /CIDSet 104 0 R
/CapHeight 715
/Descent -329
/Flags 33
@@ -1948,7 +2651,7 @@ endobj
2260
1078
]
- /FontFile2 82 0 R
+ /FontFile2 106 0 R
/FontName /EAAAAA+ArialUnicodeMS
/ItalicAngle 0
/MissingWidth 500
@@ -1957,28 +2660,28 @@ endobj
>>
endobj
-80 0 obj
+104 0 obj
<<
- /Length 81 0 R
+ /Length 105 0 R
>>
stream
-”ßüü·dÿÿè
+”ßìþŸ\ÿÿè
endstream
endobj
%QDF: ignore_newline
-81 0 obj
+105 0 obj
405
endobj
-82 0 obj
+106 0 obj
<<
- /Length1 34184
- /Length 83 0 R
+ /Length1 34520
+ /Length 107 0 R
>>
stream
-
-I
+
+J
¤ÿöþ`m+

@@ -1993,7 +2696,7 @@ Y-,
C#C Y-,
Y-, i°@a°
+# <°+-,°%¸ÿð8°(+Š# Ð#°+°CXÀ<Y °
… …@å e#:#$ …d0($H$$$7$g$
  • 
… @
@@ -2032,9 +2735,22 @@ X
ü5­í‘äxy¤¹ÇØñËþÑŸ4Ñ|þ¿tÿo‘•”ÎÚï©þßò\
87
 ™
-™ ‰‰@|{++Míí
-¸ÿð@-6G—§×
-“
+™ ‰‰@|{++Míí
+
+
+ ™@(
+¸ÿð@7 6!!7! 
+‹ @,|+ {++MíÖííÄ+Mí9/3_^]_]^]+_^]
+
+
+
+
+ÅÕ
+
+ ¸È78¸È
+
+•  ˜¨ƒB … @i e++MýäÄí_^]_^]^]

‡
@@ -2054,18 +2770,10 @@ w

-
-
-
-
-ÅÕ
-
- ¸È78¸È
-
-•  ˜¨ƒB … @i e++MýäÄí_^]_^]^]
+
+
š   '  —   (
-`¦¾Êš²yþRÔööÞÌþÜþHãþ
+`¦¾Êš²yþRÔööÞÌþÜþHãþ
w
+Ï
8 ;•
@@ -2095,56 +2803,35 @@ g
 !
@¶!ø!UZjz e u • å %÷%'÷'÷‡"'"#'#H#X#GWõú#••w
-ypŒ‚u²Ïûôؼv¦þ3s²ª}€¡©âß| ¶TTr¤‹2éê8—ün·×¾ËеÑÁ
-
-@×Ue7 W g WgXh¸ÿÐ@246Zj8x
-Ç
-w‡º Ê Ú ê ú j z Š š ª  * : J Z 
- ú  
-
-
-
-¸ÿð@*6
-“  “
-Wg—
-
- 
-
- ‡.M+‡}ÄY10
- 
-
- ((¸ÿÐ@K 6
-
-g
-·
-
-'
-/3Æ_]29/339/]339/]33_]]
-Õå(Uexˆ˜78HXè
-
-¯
-—
-
-/_]í3/]]q+Mí9999
-jš ˜(¨(gh ))H)—###G#HxGww‡
-
-w
-gwWgGWWX
+ypŒ‚u²Ïûôؼv¦þ3s²ª}€¡©âß| ¶TTr¤‹2éê8—ün·×¾ËеÑÁ
+¸ÿð@-6G—§×
+“
+
(

- “
-
-
-
- ™@(
-¸ÿð@7 6!!7! 
-‹ @,|+ {++MíÖííÄ+Mí9/3_^]_]^]+_^]
-• X'
-7md‹üfš‹sP‚i
-“
-@
+ “
+
+÷×÷
+è 
+
+
+  ˆ÷
+ 
+
+•
+
+7
+Õ
+g
+w
+
+

—˜÷
@@ -2162,14 +2849,59 @@ h
¸ÿð@

-  
+  
+w
+gwWgGWWX
+w‡º Ê Ú ê ú j z Š š ª  * : J Z 
+ ú  
+
+ 
+
+ 
+ 
+
+
+W
+g
+Wg
+
+
+¸ÿÀ@6
+
+@ 6x
+ç52'uÓýþ ™4ý¥ü¾þJG0CêýN
+
+
+
+¸ÿð@*6
+“  “
+Wg—
+
+ 
+
+ ‡.M+‡}ÄY10
+• X'
+7md‹üfš‹sP‚i
+
+¯
+—
+
+/_]í3/]]q+Mí9999
8
*"Ê"Ú"'X—È
-Ç
-
-
-u,÷éý] 
-s
+Ç
+
+
+Õå(Uexˆ˜78HXè
+@×Ue7 W g WgXh¸ÿÐ@246Zj8x
+Ç
+“
+@
+
+u,÷éý] 
+Çÿ¤ª
+9
+ã
@@ -2223,102 +2955,126 @@ endstream
endobj
%QDF: ignore_newline
-83 0 obj
-34184
+107 0 obj
+34520
endobj
xref
-0 84
+0 108
0000000000 65535 f
0000000025 00000 n
-0000000281 00000 n
-0000000393 00000 n
-0000000564 00000 n
-0000005762 00000 n
-0000005783 00000 n
-0000005866 00000 n
-0000005905 00000 n
-0000006298 00000 n
-0000035717 00000 n
-0000036003 00000 n
-0000036297 00000 n
-0000036592 00000 n
-0000036651 00000 n
-0000036693 00000 n
-0000036752 00000 n
-0000036794 00000 n
-0000036895 00000 n
-0000036938 00000 n
-0000037037 00000 n
-0000037080 00000 n
-0000037179 00000 n
-0000037199 00000 n
-0000037306 00000 n
-0000037973 00000 n
-0000037994 00000 n
-0000038302 00000 n
-0000038345 00000 n
-0000045928 00000 n
-0000045950 00000 n
-0000046087 00000 n
-0000046264 00000 n
-0000046431 00000 n
-0000046743 00000 n
-0000046763 00000 n
-0000046831 00000 n
-0000046868 00000 n
-0000047017 00000 n
-0000047881 00000 n
-0000048766 00000 n
-0000048787 00000 n
-0000049381 00000 n
-0000050000 00000 n
-0000050021 00000 n
-0000269582 00000 n
-0000269606 00000 n
-0000927926 00000 n
-0000927950 00000 n
-0000934960 00000 n
-0000934982 00000 n
-0000935152 00000 n
-0000935928 00000 n
-0000935949 00000 n
-0000937912 00000 n
-0000937934 00000 n
-0000938710 00000 n
-0000938731 00000 n
-0000940694 00000 n
-0000940716 00000 n
-0000941492 00000 n
-0000941513 00000 n
-0000943476 00000 n
-0000943498 00000 n
-0000944274 00000 n
-0000944295 00000 n
-0000946258 00000 n
-0000946280 00000 n
-0000969587 00000 n
-0000969610 00000 n
-0000969860 00000 n
-0000970100 00000 n
-0000970938 00000 n
-0000972254 00000 n
-0000972276 00000 n
-0001006616 00000 n
-0001006639 00000 n
-0001015118 00000 n
-0001015140 00000 n
-0001015217 00000 n
-0001015499 00000 n
-0001015983 00000 n
-0001016004 00000 n
-0001050284 00000 n
+0000000348 00000 n
+0000000460 00000 n
+0000000634 00000 n
+0000005832 00000 n
+0000005853 00000 n
+0000005937 00000 n
+0000006926 00000 n
+0000007999 00000 n
+0000008030 00000 n
+0000008525 00000 n
+0000008811 00000 n
+0000009061 00000 n
+0000009236 00000 n
+0000009295 00000 n
+0000009337 00000 n
+0000009396 00000 n
+0000009438 00000 n
+0000009497 00000 n
+0000009539 00000 n
+0000009640 00000 n
+0000009683 00000 n
+0000010164 00000 n
+0000010208 00000 n
+0000010386 00000 n
+0000010430 00000 n
+0000010610 00000 n
+0000010631 00000 n
+0000010738 00000 n
+0000010912 00000 n
+0000011522 00000 n
+0000011543 00000 n
+0000011939 00000 n
+0000011960 00000 n
+0000012383 00000 n
+0000012404 00000 n
+0000013068 00000 n
+0000013089 00000 n
+0000013576 00000 n
+0000013597 00000 n
+0000014153 00000 n
+0000014197 00000 n
+0000021876 00000 n
+0000021898 00000 n
+0000022035 00000 n
+0000058135 00000 n
+0000058158 00000 n
+0000058188 00000 n
+0000058772 00000 n
+0000059391 00000 n
+0000059412 00000 n
+0000059579 00000 n
+0000059756 00000 n
+0000059923 00000 n
+0000059991 00000 n
+0000060028 00000 n
+0000060177 00000 n
+0000060429 00000 n
+0000060956 00000 n
+0000061556 00000 n
+0000061577 00000 n
+0000062405 00000 n
+0000063252 00000 n
+0000063273 00000 n
+0000063799 00000 n
+0000064361 00000 n
+0000064382 00000 n
+0000071392 00000 n
+0000071414 00000 n
+0000071584 00000 n
+0000072360 00000 n
+0000072381 00000 n
+0000074344 00000 n
+0000074366 00000 n
+0000075142 00000 n
+0000075163 00000 n
+0000077126 00000 n
+0000077148 00000 n
+0000077924 00000 n
+0000077945 00000 n
+0000079908 00000 n
+0000079930 00000 n
+0000080706 00000 n
+0000080727 00000 n
+0000082690 00000 n
+0000082712 00000 n
+0000106019 00000 n
+0000106042 00000 n
+0000138866 00000 n
+0000138889 00000 n
+0000139129 00000 n
+0000139379 00000 n
+0000139619 00000 n
+0000140469 00000 n
+0000141799 00000 n
+0000141821 00000 n
+0000149588 00000 n
+0000149610 00000 n
+0000183922 00000 n
+0000183945 00000 n
+0000195867 00000 n
+0000195891 00000 n
+0000195969 00000 n
+0000196254 00000 n
+0000196740 00000 n
+0000196762 00000 n
+0000231380 00000 n
trailer <<
/Info 2 0 R
/Root 1 0 R
- /Size 84
+ /Size 108
/ID [<42841c13bbf709d79a200fa1691836f8><31415926535897932384626433832795>]
>>
startxref
-1050307
+231404
%%EOF