aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2019-01-03 23:00:56 +0100
committerJay Berkenbilt <ejb@ql.org>2019-01-04 05:18:13 +0100
commitb55567a0fa6708500cd0905f7a26a28d70979001 (patch)
tree622bcd3af070c593f84d673633a357ebaf1c0e29
parent1342612308cf7c9d38a1b87a42d353e8ef8ffdac (diff)
downloadqpdf-b55567a0fa6708500cd0905f7a26a28d70979001.tar.zst
Add special case setV code for button fields
-rw-r--r--include/qpdf/QPDFFormFieldObjectHelper.hh14
-rw-r--r--libqpdf/QPDFFormFieldObjectHelper.cc176
-rw-r--r--qpdf/qpdf.testcov8
-rw-r--r--qpdf/qtest/qpdf.test18
-rw-r--r--qpdf/qtest/qpdf/button-set-broken-out.pdf3883
-rw-r--r--qpdf/qtest/qpdf/button-set-broken.out7
-rw-r--r--qpdf/qtest/qpdf/button-set-broken.pdf3710
-rw-r--r--qpdf/qtest/qpdf/button-set-out.pdf3883
-rw-r--r--qpdf/qtest/qpdf/button-set.out5
-rw-r--r--qpdf/qtest/qpdf/button-set.pdf3710
-rw-r--r--qpdf/test_driver.cc49
11 files changed, 15458 insertions, 5 deletions
diff --git a/include/qpdf/QPDFFormFieldObjectHelper.hh b/include/qpdf/QPDFFormFieldObjectHelper.hh
index 5b8a2d0e..7ab9a1c0 100644
--- a/include/qpdf/QPDFFormFieldObjectHelper.hh
+++ b/include/qpdf/QPDFFormFieldObjectHelper.hh
@@ -163,10 +163,13 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper
void setFieldAttribute(std::string const& key,
std::string const& utf8_value);
- // Set /V (field value) to the given value. Optionally set
- // /NeedAppearances to true. You can explicitly tell this method
- // not to set /NeedAppearances if you are going to explicitly
- // generate an appearance stream yourself.
+ // Set /V (field value) to the given value. If need_appearances is
+ // true and the field type is either /Tx (text) or /Ch (choice),
+ // set /NeedAppearances to true. You can explicitly tell this
+ // method not to set /NeedAppearances if you are going to generate
+ // an appearance stream yourself. Starting with qpdf 8.3.0, this
+ // method handles fields of type /Btn (checkboxes, radio buttons,
+ // pushbuttons) specially.
QPDF_DLL
void setV(QPDFObjectHandle value, bool need_appearances = true);
@@ -177,6 +180,9 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper
void setV(std::string const& utf8_value, bool need_appearances = true);
private:
+ void setRadioButtonValue(QPDFObjectHandle name);
+ void setCheckBoxValue(bool value);
+
class Members
{
friend class QPDFFormFieldObjectHelper;
diff --git a/libqpdf/QPDFFormFieldObjectHelper.cc b/libqpdf/QPDFFormFieldObjectHelper.cc
index 1a04742a..de3d4e1b 100644
--- a/libqpdf/QPDFFormFieldObjectHelper.cc
+++ b/libqpdf/QPDFFormFieldObjectHelper.cc
@@ -272,6 +272,47 @@ void
QPDFFormFieldObjectHelper::setV(
QPDFObjectHandle value, bool need_appearances)
{
+ if (getFieldType() == "/Btn")
+ {
+ if (isCheckbox())
+ {
+ bool okay = false;
+ if (value.isName())
+ {
+ std::string name = value.getName();
+ if ((name == "/Yes") || (name == "/Off"))
+ {
+ okay = true;
+ setCheckBoxValue((name == "/Yes"));
+ }
+ }
+ if (! okay)
+ {
+ this->oh.warnIfPossible(
+ "ignoring attempt to set a checkbox field to a"
+ " value of other than /Yes or /Off");
+ }
+ }
+ else if (isRadioButton())
+ {
+ if (value.isName())
+ {
+ setRadioButtonValue(value);
+ }
+ else
+ {
+ this->oh.warnIfPossible(
+ "ignoring attempt to set a radio button field to"
+ " an object that is not a name");
+ }
+ }
+ else if (isPushbutton())
+ {
+ this->oh.warnIfPossible(
+ "ignoring attempt set the value of a pushbutton field");
+ }
+ return;
+ }
setFieldAttribute("/V", value);
if (need_appearances)
{
@@ -294,3 +335,138 @@ QPDFFormFieldObjectHelper::setV(
setV(QPDFObjectHandle::newUnicodeString(utf8_value),
need_appearances);
}
+
+void
+QPDFFormFieldObjectHelper::setRadioButtonValue(QPDFObjectHandle name)
+{
+ // Set the value of a radio button field. This has the following
+ // specific behavior:
+ // * If this is a radio button field that has a parent that is
+ // also a radio button field and has no explicit /V, call itself
+ // on the parent
+ // * If this is a radio button field with childen, set /V to the
+ // given value. Then, for each child, if the child has the
+ // specified value as one of its keys in the /N subdictionary of
+ // its /AP (i.e. its normal appearance stream dictionary), set
+ // /AS to name; otherwise, if /Off is a member, set /AS to /Off.
+ // Note that we never turn on /NeedAppearances when setting a
+ // radio button field.
+ QPDFObjectHandle parent = this->oh.getKey("/Parent");
+ if (parent.isDictionary() && parent.getKey("/Parent").isNull())
+ {
+ QPDFFormFieldObjectHelper ph(parent);
+ if (ph.isRadioButton())
+ {
+ // This is most likely one of the individual buttons. Try
+ // calling on the parent.
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper set parent radio button");
+ ph.setRadioButtonValue(name);
+ return;
+ }
+ }
+
+ QPDFObjectHandle kids = this->oh.getKey("/Kids");
+ if (! (isRadioButton() && parent.isNull() && kids.isArray()))
+ {
+ this->oh.warnIfPossible("don't know how to set the value"
+ " of this field as a radio button");
+ return;
+ }
+ setFieldAttribute("/V", name);
+ int nkids = kids.getArrayNItems();
+ for (int i = 0; i < nkids; ++i)
+ {
+ QPDFObjectHandle kid = kids.getArrayItem(i);
+ QPDFObjectHandle AP = kid.getKey("/AP");
+ QPDFObjectHandle annot;
+ if (AP.isNull())
+ {
+ // The widget may be below. If there is more than one,
+ // just find the first one.
+ QPDFObjectHandle grandkids = kid.getKey("/Kids");
+ if (grandkids.isArray())
+ {
+ int ngrandkids = grandkids.getArrayNItems();
+ for (int j = 0; j < ngrandkids; ++j)
+ {
+ QPDFObjectHandle grandkid = grandkids.getArrayItem(j);
+ AP = grandkid.getKey("/AP");
+ if (! AP.isNull())
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper radio button grandkid widget");
+ annot = grandkid;
+ break;
+ }
+ }
+ }
+ }
+ else
+ {
+ annot = kid;
+ }
+ if (! annot.isInitialized())
+ {
+ QTC::TC("qpdf", "QPDFObjectHandle broken radio button");
+ this->oh.warnIfPossible(
+ "unable to set the value of this radio button");
+ continue;
+ }
+ if (AP.isDictionary() &&
+ AP.getKey("/N").isDictionary() &&
+ AP.getKey("/N").hasKey(name.getName()))
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper turn on radio button");
+ annot.replaceKey("/AS", name);
+ }
+ else
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper turn off radio button");
+ annot.replaceKey("/AS", QPDFObjectHandle::newName("/Off"));
+ }
+ }
+}
+
+void
+QPDFFormFieldObjectHelper::setCheckBoxValue(bool value)
+{
+ // Set /AS to /Yes or /Off in addition to setting /V.
+ QPDFObjectHandle name =
+ QPDFObjectHandle::newName(value ? "/Yes" : "/Off");
+ setFieldAttribute("/V", name);
+ QPDFObjectHandle AP = this->oh.getKey("/AP");
+ QPDFObjectHandle annot;
+ if (AP.isNull())
+ {
+ // The widget may be below. If there is more than one, just
+ // find the first one.
+ QPDFObjectHandle kids = this->oh.getKey("/Kids");
+ if (kids.isArray())
+ {
+ int nkids = kids.getArrayNItems();
+ for (int i = 0; i < nkids; ++i)
+ {
+ QPDFObjectHandle kid = kids.getArrayItem(i);
+ AP = kid.getKey("/AP");
+ if (! AP.isNull())
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper checkbox kid widget");
+ annot = kid;
+ break;
+ }
+ }
+ }
+ }
+ else
+ {
+ annot = this->oh;
+ }
+ if (! annot.isInitialized())
+ {
+ QTC::TC("qpdf", "QPDFObjectHandle broken checkbox");
+ this->oh.warnIfPossible(
+ "unable to set the value of this checkbox");
+ return;
+ }
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper set checkbox AS");
+ annot.replaceKey("/AS", name);
+}
diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov
index 72290b46..780a4930 100644
--- a/qpdf/qpdf.testcov
+++ b/qpdf/qpdf.testcov
@@ -390,3 +390,11 @@ QPDFObjectHandle replace with copy 0
QPDFPageDocumentHelper indirect as resources 0
QPDFAnnotationObjectHelper forbidden flags 0
QPDFAnnotationObjectHelper missing required flags 0
+QPDFFormFieldObjectHelper set parent radio button 0
+QPDFFormFieldObjectHelper radio button grandkid widget 0
+QPDFFormFieldObjectHelper turn on radio button 0
+QPDFFormFieldObjectHelper turn off radio button 0
+QPDFFormFieldObjectHelper checkbox kid widget 0
+QPDFObjectHandle broken radio button 0
+QPDFFormFieldObjectHelper set checkbox AS 0
+QPDFObjectHandle broken checkbox 0
diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test
index 03be975d..85a794f0 100644
--- a/qpdf/qtest/qpdf.test
+++ b/qpdf/qtest/qpdf.test
@@ -188,7 +188,7 @@ my @form_tests = (
'form-errors',
);
-$n_tests += scalar(@form_tests) + 2;
+$n_tests += scalar(@form_tests) + 6;
# Many of the form*.pdf files were created by converting the
# LibreOffice document storage/form.odt to PDF and then manually
@@ -216,6 +216,22 @@ $td->runtest("compare files",
{$td->FILE => "a.pdf"},
{$td->FILE => "form-no-need-appearances-filled.pdf"});
+$td->runtest("button fields",
+ {$td->COMMAND => "test_driver 51 button-set.pdf"},
+ {$td->FILE => "button-set.out", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("compare files",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "button-set-out.pdf"});
+
+$td->runtest("broken button fields",
+ {$td->COMMAND => "test_driver 51 button-set-broken.pdf"},
+ {$td->FILE => "button-set-broken.out", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("compare files",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "button-set-broken-out.pdf"});
+
show_ntests();
# ----------
$td->notify("--- Stream Replacement Tests ---");
diff --git a/qpdf/qtest/qpdf/button-set-broken-out.pdf b/qpdf/qtest/qpdf/button-set-broken-out.pdf
new file mode 100644
index 00000000..b5ccb1fa
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set-broken-out.pdf
@@ -0,0 +1,3883 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+%% Original object ID: 1 0
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ /NeedAppearances true
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+%% Original object ID: 2 0
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+%% Original object ID: 3 0
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+%% Original object ID: 4 0
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 5 0
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+%% Original object ID: 6 0
+6 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Off
+ /FT /Btn
+ /Kids [
+ 25 0 R
+ ]
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /T (checkbox1)
+ /V /Yes
+>>
+endobj
+
+%% Original object ID: 7 0
+7 0 obj
+<<
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Off
+ /XP <<
+ /N <<
+ /Off 26 0 R
+ /Yes 28 0 R
+ >>
+ >>
+>>
+endobj
+
+%% Original object ID: 8 0
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 30 0 R
+ /Yes 32 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+%% Original object ID: 9 0
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 34 0 R
+ 35 0 R
+ 36 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /3
+>>
+endobj
+
+%% Original object ID: 10 0
+10 0 obj
+<<
+ /AP <<
+ /N 37 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+%% Original object ID: 11 0
+11 0 obj
+<<
+ /AP <<
+ /N 39 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 12 0
+12 0 obj
+<<
+ /AP <<
+ /N 41 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 13 0
+13 0 obj
+<<
+ /AP <<
+ /N 43 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 14 0
+14 0 obj
+<<
+ /AP <<
+ /N 45 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Page 1
+%% Original object ID: 15 0
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 47 0 R
+ 23 0 R
+ 25 0 R
+ 7 0 R
+ 8 0 R
+ 34 0 R
+ 35 0 R
+ 36 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ ]
+ /Contents 48 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+%% Original object ID: 16 0
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+%% Original object ID: 17 0
+17 0 obj
+<<
+ /K [
+ 50 0 R
+ ]
+ /ParentTree 51 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+%% Original object ID: 18 0
+18 0 obj
+<<
+ /F1 52 0 R
+ /F2 53 0 R
+ /F3 54 0 R
+ /F4 55 0 R
+ /ZaDi 24 0 R
+>>
+endobj
+
+%% Original object ID: 19 0
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+20 0 obj
+12
+endobj
+
+%% Original object ID: 21 0
+21 0 obj
+<<
+ /AS /1
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+ /XP <<
+ /N <<
+ /1 56 0 R
+ /Off 58 0 R
+ >>
+ >>
+>>
+endobj
+
+%% Original object ID: 22 0
+22 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /FT /Btn
+ /Kids [
+ 47 0 R
+ ]
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+>>
+endobj
+
+%% Original object ID: 23 0
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 28 0
+24 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+%% Original object ID: 198 0
+25 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 64 0 R
+ /Yes 66 0 R
+ >>
+ >>
+ /AS /Yes
+ /F 4
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 29 0
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+27 0 obj
+12
+endobj
+
+%% Original object ID: 31 0
+28 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 29 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+29 0 obj
+82
+endobj
+
+%% Original object ID: 33 0
+30 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 31 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+31 0 obj
+12
+endobj
+
+%% Original object ID: 35 0
+32 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 33 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+33 0 obj
+82
+endobj
+
+%% Original object ID: 37 0
+34 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 38 0
+35 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 39 0
+36 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /3
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 40 0
+37 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 38 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+38 0 obj
+12
+endobj
+
+%% Original object ID: 42 0
+39 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 40 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+40 0 obj
+46
+endobj
+
+%% Original object ID: 44 0
+41 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 42 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+42 0 obj
+46
+endobj
+
+%% Original object ID: 46 0
+43 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 44 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+44 0 obj
+47
+endobj
+
+%% Original object ID: 48 0
+45 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 46 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+46 0 obj
+45
+endobj
+
+%% Original object ID: 197 0
+47 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /2
+ /F 4
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+%% Original object ID: 50 0
+48 0 obj
+<<
+ /Length 49 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+49 0 obj
+4747
+endobj
+
+%% Original object ID: 52 0
+50 0 obj
+<<
+ /K [
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 53 0
+51 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 84 0 R
+ 86 0 R
+ 88 0 R
+ 95 0 R
+ 106 0 R
+ 117 0 R
+ 121 0 R
+ 121 0 R
+ 127 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ ]
+ ]
+>>
+endobj
+
+%% Original object ID: 54 0
+52 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 143 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 144 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+%% Original object ID: 55 0
+53 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 146 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+%% Original object ID: 56 0
+54 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 147 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 148 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+%% Original object ID: 57 0
+55 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 150 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+%% Original object ID: 58 0
+56 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 57 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+57 0 obj
+220
+endobj
+
+%% Original object ID: 60 0
+58 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 59 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+59 0 obj
+12
+endobj
+
+%% Original object ID: 66 0
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+%% Original object ID: 68 0
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+%% Original object ID: 24 0
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+65 0 obj
+12
+endobj
+
+%% Original object ID: 26 0
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+67 0 obj
+82
+endobj
+
+%% Original object ID: 70 0
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+%% Original object ID: 72 0
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+%% Original object ID: 74 0
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+%% Original object ID: 76 0
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+%% Original object ID: 78 0
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+%% Original object ID: 80 0
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+%% Original object ID: 62 0
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+%% Original object ID: 64 0
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+%% Original object ID: 82 0
+84 0 obj
+<<
+ /A 151 0 R
+ /K [
+ 0
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 83 0
+85 0 obj
+<<
+ /A 152 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 84 0
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 1
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 85 0
+87 0 obj
+<<
+ /A 154 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 86 0
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 2
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 87 0
+89 0 obj
+<<
+ /A 156 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 88 0
+90 0 obj
+<<
+ /A 157 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 89 0
+91 0 obj
+<<
+ /A 158 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 90 0
+92 0 obj
+<<
+ /A 159 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 91 0
+93 0 obj
+<<
+ /A 160 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 92 0
+94 0 obj
+<<
+ /A 161 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 93 0
+95 0 obj
+<<
+ /A 162 0 R
+ /K [
+ 3
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 94 0
+96 0 obj
+<<
+ /A 163 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 95 0
+97 0 obj
+<<
+ /A 164 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 96 0
+98 0 obj
+<<
+ /A 165 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 97 0
+99 0 obj
+<<
+ /A 166 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 98 0
+100 0 obj
+<<
+ /A 167 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 99 0
+101 0 obj
+<<
+ /A 168 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 100 0
+102 0 obj
+<<
+ /A 169 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 101 0
+103 0 obj
+<<
+ /A 170 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 102 0
+104 0 obj
+<<
+ /A 171 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 103 0
+105 0 obj
+<<
+ /A 172 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 104 0
+106 0 obj
+<<
+ /A 173 0 R
+ /K [
+ 4
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 105 0
+107 0 obj
+<<
+ /A 174 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 106 0
+108 0 obj
+<<
+ /A 175 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 107 0
+109 0 obj
+<<
+ /A 176 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 108 0
+110 0 obj
+<<
+ /A 177 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 109 0
+111 0 obj
+<<
+ /A 178 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 110 0
+112 0 obj
+<<
+ /A 179 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 111 0
+113 0 obj
+<<
+ /A 180 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 112 0
+114 0 obj
+<<
+ /A 181 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 113 0
+115 0 obj
+<<
+ /A 182 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 114 0
+116 0 obj
+<<
+ /A 183 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 115 0
+117 0 obj
+<<
+ /A 184 0 R
+ /K [
+ 5
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 116 0
+118 0 obj
+<<
+ /A 185 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 117 0
+119 0 obj
+<<
+ /A 186 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 118 0
+120 0 obj
+<<
+ /A 187 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 119 0
+121 0 obj
+<<
+ /A 188 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 120 0
+122 0 obj
+<<
+ /A 189 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 121 0
+123 0 obj
+<<
+ /A 190 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 122 0
+124 0 obj
+<<
+ /A 191 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 123 0
+125 0 obj
+<<
+ /A 192 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 124 0
+126 0 obj
+<<
+ /A 193 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 125 0
+127 0 obj
+<<
+ /A 194 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 126 0
+128 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 127 0
+129 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 128 0
+130 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 129 0
+131 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 130 0
+132 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 131 0
+133 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 132 0
+134 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 133 0
+135 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 134 0
+136 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 135 0
+137 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 136 0
+138 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 137 0
+139 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 138 0
+140 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 139 0
+141 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 140 0
+142 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 141 0
+143 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 195 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 142 0
+144 0 obj
+<<
+ /Length 145 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+145 0 obj
+702
+endobj
+
+%% Original object ID: 144 0
+146 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 145 0
+147 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 197 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 146 0
+148 0 obj
+<<
+ /Length 149 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+149 0 obj
+582
+endobj
+
+%% Original object ID: 148 0
+150 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 149 0
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 150 0
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 151 0
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 152 0
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 153 0
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 154 0
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 155 0
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 156 0
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 157 0
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 158 0
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 159 0
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 160 0
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 161 0
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 162 0
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 163 0
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 164 0
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 165 0
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 166 0
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 167 0
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 168 0
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 169 0
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 170 0
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 171 0
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 172 0
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 173 0
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 174 0
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 175 0
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 176 0
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 177 0
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 178 0
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 179 0
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 180 0
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 181 0
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 182 0
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 183 0
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 184 0
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 185 0
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 186 0
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 187 0
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 188 0
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 189 0
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 190 0
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 191 0
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 192 0
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 193 0
+195 0 obj
+<<
+ /Length1 16184
+ /Length 196 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+196 0 obj
+16184
+endobj
+
+%% Original object ID: 195 0
+197 0 obj
+<<
+ /Length1 11088
+ /Length 198 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+11088
+endobj
+
+xref
+0 199
+0000000000 65535 f
+0000000052 00000 n
+0000000493 00000 n
+0000000705 00000 n
+0000000805 00000 n
+0000001120 00000 n
+0000001278 00000 n
+0000001538 00000 n
+0000001954 00000 n
+0000002370 00000 n
+0000002529 00000 n
+0000002911 00000 n
+0000003354 00000 n
+0000003826 00000 n
+0000004267 00000 n
+0000004746 00000 n
+0000005178 00000 n
+0000005345 00000 n
+0000005523 00000 n
+0000005641 00000 n
+0000005808 00000 n
+0000005856 00000 n
+0000006248 00000 n
+0000006488 00000 n
+0000006882 00000 n
+0000006992 00000 n
+0000007224 00000 n
+0000007392 00000 n
+0000007440 00000 n
+0000007678 00000 n
+0000007726 00000 n
+0000007894 00000 n
+0000007942 00000 n
+0000008180 00000 n
+0000008228 00000 n
+0000008622 00000 n
+0000009016 00000 n
+0000009408 00000 n
+0000009577 00000 n
+0000009625 00000 n
+0000009826 00000 n
+0000009874 00000 n
+0000010075 00000 n
+0000010123 00000 n
+0000010326 00000 n
+0000010374 00000 n
+0000010573 00000 n
+0000010622 00000 n
+0000010873 00000 n
+0000015699 00000 n
+0000015749 00000 n
+0000016563 00000 n
+0000016992 00000 n
+0000017471 00000 n
+0000019416 00000 n
+0000019814 00000 n
+0000021756 00000 n
+0000022132 00000 n
+0000022181 00000 n
+0000022349 00000 n
+0000022397 00000 n
+0000022773 00000 n
+0000022822 00000 n
+0000022990 00000 n
+0000023038 00000 n
+0000023206 00000 n
+0000023254 00000 n
+0000023492 00000 n
+0000023540 00000 n
+0000023916 00000 n
+0000023965 00000 n
+0000024133 00000 n
+0000024181 00000 n
+0000024557 00000 n
+0000024606 00000 n
+0000024774 00000 n
+0000024822 00000 n
+0000025198 00000 n
+0000025247 00000 n
+0000025415 00000 n
+0000025463 00000 n
+0000025839 00000 n
+0000025888 00000 n
+0000026056 00000 n
+0000026104 00000 n
+0000026245 00000 n
+0000026369 00000 n
+0000026510 00000 n
+0000026634 00000 n
+0000026775 00000 n
+0000026899 00000 n
+0000027023 00000 n
+0000027147 00000 n
+0000027271 00000 n
+0000027395 00000 n
+0000027519 00000 n
+0000027660 00000 n
+0000027784 00000 n
+0000027908 00000 n
+0000028032 00000 n
+0000028156 00000 n
+0000028281 00000 n
+0000028407 00000 n
+0000028533 00000 n
+0000028659 00000 n
+0000028785 00000 n
+0000028911 00000 n
+0000029054 00000 n
+0000029180 00000 n
+0000029306 00000 n
+0000029432 00000 n
+0000029558 00000 n
+0000029684 00000 n
+0000029810 00000 n
+0000029936 00000 n
+0000030062 00000 n
+0000030188 00000 n
+0000030314 00000 n
+0000030457 00000 n
+0000030583 00000 n
+0000030709 00000 n
+0000030835 00000 n
+0000030984 00000 n
+0000031110 00000 n
+0000031236 00000 n
+0000031362 00000 n
+0000031488 00000 n
+0000031614 00000 n
+0000031763 00000 n
+0000031890 00000 n
+0000032017 00000 n
+0000032144 00000 n
+0000032271 00000 n
+0000032398 00000 n
+0000032525 00000 n
+0000032652 00000 n
+0000032779 00000 n
+0000032906 00000 n
+0000033033 00000 n
+0000033160 00000 n
+0000033287 00000 n
+0000033414 00000 n
+0000033541 00000 n
+0000033668 00000 n
+0000033942 00000 n
+0000034703 00000 n
+0000034754 00000 n
+0000034999 00000 n
+0000035272 00000 n
+0000035913 00000 n
+0000035964 00000 n
+0000036208 00000 n
+0000036294 00000 n
+0000036380 00000 n
+0000036466 00000 n
+0000036552 00000 n
+0000036638 00000 n
+0000036724 00000 n
+0000036810 00000 n
+0000036896 00000 n
+0000036982 00000 n
+0000037068 00000 n
+0000037154 00000 n
+0000037240 00000 n
+0000037326 00000 n
+0000037412 00000 n
+0000037498 00000 n
+0000037584 00000 n
+0000037670 00000 n
+0000037756 00000 n
+0000037842 00000 n
+0000037928 00000 n
+0000038014 00000 n
+0000038100 00000 n
+0000038186 00000 n
+0000038272 00000 n
+0000038358 00000 n
+0000038444 00000 n
+0000038530 00000 n
+0000038616 00000 n
+0000038702 00000 n
+0000038788 00000 n
+0000038874 00000 n
+0000038960 00000 n
+0000039046 00000 n
+0000039132 00000 n
+0000039218 00000 n
+0000039304 00000 n
+0000039390 00000 n
+0000039476 00000 n
+0000039562 00000 n
+0000039648 00000 n
+0000039734 00000 n
+0000039820 00000 n
+0000039906 00000 n
+0000039992 00000 n
+0000056274 00000 n
+0000056327 00000 n
+0000067513 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 199
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+67537
+%%EOF
diff --git a/qpdf/qtest/qpdf/button-set-broken.out b/qpdf/qtest/qpdf/button-set-broken.out
new file mode 100644
index 00000000..fa7c9e76
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set-broken.out
@@ -0,0 +1,7 @@
+setting r1 via parent
+WARNING: button-set-broken.pdf, object 5 0 at offset 995: unable to set the value of this radio button
+turning checkbox1 on
+turning checkbox2 off
+WARNING: button-set-broken.pdf, object 7 0 at offset 1354: unable to set the value of this checkbox
+setting r2 via child
+test 51 done
diff --git a/qpdf/qtest/qpdf/button-set-broken.pdf b/qpdf/qtest/qpdf/button-set-broken.pdf
new file mode 100644
index 00000000..6e87e410
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set-broken.pdf
@@ -0,0 +1,3710 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ /NeedAppearances true
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /1
+>>
+endobj
+
+6 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /FT /Btn
+ /Kids [ 198 0 R ]
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /T (checkbox1)
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /XP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 197 0 R
+ 23 0 R
+ 198 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ ]
+ /Contents 50 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 52 0 R
+ ]
+ /ParentTree 53 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 54 0 R
+ /F2 55 0 R
+ /F3 56 0 R
+ /F4 57 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+20 0 obj
+12
+endobj
+
+21 0 obj
+<<
+ /XP <<
+ /N <<
+ /1 58 0 R
+ /Off 60 0 R
+ >>
+ >>
+ /AS /1
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /FT /Btn
+ /Kids [ 197 0 R ]
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 66 0 R
+ /Off 68 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 70 0 R
+ /Off 72 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 74 0 R
+ /Off 76 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 78 0 R
+ /Off 80 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+41 0 obj
+12
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+43 0 obj
+46
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+45 0 obj
+46
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+47 0 obj
+47
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+49 0 obj
+45
+endobj
+
+%% Contents for page 1
+50 0 obj
+<<
+ /Length 51 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+51 0 obj
+4747
+endobj
+
+52 0 obj
+<<
+ /K [
+ 82 0 R
+ 83 0 R
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+53 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 82 0 R
+ 84 0 R
+ 86 0 R
+ 93 0 R
+ 104 0 R
+ 115 0 R
+ 119 0 R
+ 119 0 R
+ 125 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ ]
+>>
+endobj
+
+54 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 141 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 142 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+55 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 144 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 59 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+59 0 obj
+220
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+61 0 obj
+12
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+63 0 obj
+220
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+65 0 obj
+12
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+67 0 obj
+220
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+69 0 obj
+12
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+71 0 obj
+220
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+73 0 obj
+12
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+75 0 obj
+220
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+77 0 obj
+12
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+79 0 obj
+220
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+81 0 obj
+12
+endobj
+
+82 0 obj
+<<
+ /A 149 0 R
+ /K [
+ 0
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+83 0 obj
+<<
+ /A 150 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+84 0 obj
+<<
+ /A 151 0 R
+ /K [
+ 1
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+85 0 obj
+<<
+ /A 152 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 2
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /K [
+ 3
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /K [
+ 4
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /K [
+ 5
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 193 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+142 0 obj
+<<
+ /Length 143 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+143 0 obj
+702
+endobj
+
+144 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 195 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+582
+endobj
+
+148 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+150 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /Length1 16184
+ /Length 194 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+194 0 obj
+16184
+endobj
+
+195 0 obj
+<<
+ /Length1 11088
+ /Length 196 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+196 0 obj
+11088
+endobj
+
+197 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 62 0 R
+ /Off 64 0 R
+ >>
+ >>
+ /AS /Off
+ /F 4
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+198 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /F 4
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+xref
+0 199
+0000000000 65535 f
+0000000025 00000 n
+0000000439 00000 n
+0000000624 00000 n
+0000000697 00000 n
+0000000985 00000 n
+0000001116 00000 n
+0000001344 00000 n
+0000001733 00000 n
+0000002122 00000 n
+0000002253 00000 n
+0000002607 00000 n
+0000003022 00000 n
+0000003466 00000 n
+0000003879 00000 n
+0000004330 00000 n
+0000004736 00000 n
+0000004875 00000 n
+0000005025 00000 n
+0000005115 00000 n
+0000005282 00000 n
+0000005302 00000 n
+0000005666 00000 n
+0000005873 00000 n
+0000006239 00000 n
+0000006407 00000 n
+0000006427 00000 n
+0000006665 00000 n
+0000006685 00000 n
+0000006766 00000 n
+0000006934 00000 n
+0000006954 00000 n
+0000007192 00000 n
+0000007212 00000 n
+0000007380 00000 n
+0000007400 00000 n
+0000007638 00000 n
+0000007658 00000 n
+0000008024 00000 n
+0000008388 00000 n
+0000008754 00000 n
+0000008923 00000 n
+0000008943 00000 n
+0000009144 00000 n
+0000009164 00000 n
+0000009365 00000 n
+0000009385 00000 n
+0000009588 00000 n
+0000009608 00000 n
+0000009807 00000 n
+0000009850 00000 n
+0000014676 00000 n
+0000014698 00000 n
+0000015482 00000 n
+0000015883 00000 n
+0000016334 00000 n
+0000018251 00000 n
+0000018621 00000 n
+0000020535 00000 n
+0000020911 00000 n
+0000020932 00000 n
+0000021100 00000 n
+0000021120 00000 n
+0000021496 00000 n
+0000021517 00000 n
+0000021685 00000 n
+0000021705 00000 n
+0000022081 00000 n
+0000022102 00000 n
+0000022270 00000 n
+0000022290 00000 n
+0000022666 00000 n
+0000022687 00000 n
+0000022855 00000 n
+0000022875 00000 n
+0000023251 00000 n
+0000023272 00000 n
+0000023440 00000 n
+0000023460 00000 n
+0000023836 00000 n
+0000023857 00000 n
+0000024025 00000 n
+0000024045 00000 n
+0000024158 00000 n
+0000024254 00000 n
+0000024367 00000 n
+0000024463 00000 n
+0000024576 00000 n
+0000024672 00000 n
+0000024768 00000 n
+0000024864 00000 n
+0000024960 00000 n
+0000025056 00000 n
+0000025152 00000 n
+0000025265 00000 n
+0000025361 00000 n
+0000025457 00000 n
+0000025553 00000 n
+0000025649 00000 n
+0000025745 00000 n
+0000025841 00000 n
+0000025938 00000 n
+0000026035 00000 n
+0000026132 00000 n
+0000026229 00000 n
+0000026343 00000 n
+0000026440 00000 n
+0000026537 00000 n
+0000026634 00000 n
+0000026731 00000 n
+0000026828 00000 n
+0000026925 00000 n
+0000027022 00000 n
+0000027119 00000 n
+0000027216 00000 n
+0000027313 00000 n
+0000027427 00000 n
+0000027524 00000 n
+0000027621 00000 n
+0000027718 00000 n
+0000027838 00000 n
+0000027935 00000 n
+0000028032 00000 n
+0000028129 00000 n
+0000028226 00000 n
+0000028323 00000 n
+0000028443 00000 n
+0000028541 00000 n
+0000028639 00000 n
+0000028737 00000 n
+0000028835 00000 n
+0000028933 00000 n
+0000029031 00000 n
+0000029129 00000 n
+0000029227 00000 n
+0000029325 00000 n
+0000029423 00000 n
+0000029521 00000 n
+0000029619 00000 n
+0000029717 00000 n
+0000029815 00000 n
+0000029913 00000 n
+0000030158 00000 n
+0000030919 00000 n
+0000030941 00000 n
+0000031157 00000 n
+0000031401 00000 n
+0000032042 00000 n
+0000032064 00000 n
+0000032279 00000 n
+0000032336 00000 n
+0000032393 00000 n
+0000032450 00000 n
+0000032507 00000 n
+0000032564 00000 n
+0000032621 00000 n
+0000032678 00000 n
+0000032735 00000 n
+0000032792 00000 n
+0000032849 00000 n
+0000032906 00000 n
+0000032963 00000 n
+0000033020 00000 n
+0000033077 00000 n
+0000033134 00000 n
+0000033191 00000 n
+0000033248 00000 n
+0000033305 00000 n
+0000033362 00000 n
+0000033419 00000 n
+0000033476 00000 n
+0000033533 00000 n
+0000033590 00000 n
+0000033647 00000 n
+0000033704 00000 n
+0000033761 00000 n
+0000033818 00000 n
+0000033875 00000 n
+0000033932 00000 n
+0000033989 00000 n
+0000034046 00000 n
+0000034103 00000 n
+0000034160 00000 n
+0000034217 00000 n
+0000034274 00000 n
+0000034331 00000 n
+0000034388 00000 n
+0000034445 00000 n
+0000034502 00000 n
+0000034559 00000 n
+0000034616 00000 n
+0000034673 00000 n
+0000034730 00000 n
+0000034787 00000 n
+0000051069 00000 n
+0000051093 00000 n
+0000062279 00000 n
+0000062303 00000 n
+0000062506 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 199
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><ecae7a672bccf334835b54867b208438>]
+>>
+startxref
+62711
+%%EOF
diff --git a/qpdf/qtest/qpdf/button-set-out.pdf b/qpdf/qtest/qpdf/button-set-out.pdf
new file mode 100644
index 00000000..b7ceae01
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set-out.pdf
@@ -0,0 +1,3883 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+%% Original object ID: 1 0
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ /NeedAppearances true
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+%% Original object ID: 2 0
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+%% Original object ID: 3 0
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+%% Original object ID: 4 0
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 5 0
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+%% Original object ID: 6 0
+6 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Off
+ /FT /Btn
+ /Kids [
+ 25 0 R
+ ]
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /T (checkbox1)
+ /V /Yes
+>>
+endobj
+
+%% Original object ID: 7 0
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 26 0 R
+ /Yes 28 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+%% Original object ID: 8 0
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 30 0 R
+ /Yes 32 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+%% Original object ID: 9 0
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 34 0 R
+ 35 0 R
+ 36 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /3
+>>
+endobj
+
+%% Original object ID: 10 0
+10 0 obj
+<<
+ /AP <<
+ /N 37 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+%% Original object ID: 11 0
+11 0 obj
+<<
+ /AP <<
+ /N 39 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 12 0
+12 0 obj
+<<
+ /AP <<
+ /N 41 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 13 0
+13 0 obj
+<<
+ /AP <<
+ /N 43 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Original object ID: 14 0
+14 0 obj
+<<
+ /AP <<
+ /N 45 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Page 1
+%% Original object ID: 15 0
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 47 0 R
+ 23 0 R
+ 25 0 R
+ 7 0 R
+ 8 0 R
+ 34 0 R
+ 35 0 R
+ 36 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ ]
+ /Contents 48 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+%% Original object ID: 16 0
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+%% Original object ID: 17 0
+17 0 obj
+<<
+ /K [
+ 50 0 R
+ ]
+ /ParentTree 51 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+%% Original object ID: 18 0
+18 0 obj
+<<
+ /F1 52 0 R
+ /F2 53 0 R
+ /F3 54 0 R
+ /F4 55 0 R
+ /ZaDi 24 0 R
+>>
+endobj
+
+%% Original object ID: 19 0
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+20 0 obj
+12
+endobj
+
+%% Original object ID: 21 0
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 56 0 R
+ /Off 58 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 22 0
+22 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /FT /Btn
+ /Kids [
+ 47 0 R
+ ]
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+>>
+endobj
+
+%% Original object ID: 23 0
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 28 0
+24 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+%% Original object ID: 198 0
+25 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 64 0 R
+ /Yes 66 0 R
+ >>
+ >>
+ /AS /Yes
+ /F 4
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 29 0
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+27 0 obj
+12
+endobj
+
+%% Original object ID: 31 0
+28 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 29 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+29 0 obj
+82
+endobj
+
+%% Original object ID: 33 0
+30 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 31 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+31 0 obj
+12
+endobj
+
+%% Original object ID: 35 0
+32 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 33 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+33 0 obj
+82
+endobj
+
+%% Original object ID: 37 0
+34 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 38 0
+35 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 39 0
+36 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /3
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 24 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 40 0
+37 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 38 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+38 0 obj
+12
+endobj
+
+%% Original object ID: 42 0
+39 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 40 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+40 0 obj
+46
+endobj
+
+%% Original object ID: 44 0
+41 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 42 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+42 0 obj
+46
+endobj
+
+%% Original object ID: 46 0
+43 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 44 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+44 0 obj
+47
+endobj
+
+%% Original object ID: 48 0
+45 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 46 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+46 0 obj
+45
+endobj
+
+%% Original object ID: 197 0
+47 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /2
+ /F 4
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+%% Original object ID: 50 0
+48 0 obj
+<<
+ /Length 49 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+49 0 obj
+4747
+endobj
+
+%% Original object ID: 52 0
+50 0 obj
+<<
+ /K [
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 53 0
+51 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 84 0 R
+ 86 0 R
+ 88 0 R
+ 95 0 R
+ 106 0 R
+ 117 0 R
+ 121 0 R
+ 121 0 R
+ 127 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ ]
+ ]
+>>
+endobj
+
+%% Original object ID: 54 0
+52 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 143 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 144 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+%% Original object ID: 55 0
+53 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 146 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+%% Original object ID: 56 0
+54 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 147 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 148 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+%% Original object ID: 57 0
+55 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 150 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+%% Original object ID: 58 0
+56 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 57 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+57 0 obj
+220
+endobj
+
+%% Original object ID: 60 0
+58 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 59 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+59 0 obj
+12
+endobj
+
+%% Original object ID: 66 0
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+%% Original object ID: 68 0
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+%% Original object ID: 24 0
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+65 0 obj
+12
+endobj
+
+%% Original object ID: 26 0
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+67 0 obj
+82
+endobj
+
+%% Original object ID: 70 0
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+%% Original object ID: 72 0
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+%% Original object ID: 74 0
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+%% Original object ID: 76 0
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+%% Original object ID: 78 0
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+%% Original object ID: 80 0
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+%% Original object ID: 62 0
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+%% Original object ID: 64 0
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+%% Original object ID: 82 0
+84 0 obj
+<<
+ /A 151 0 R
+ /K [
+ 0
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 83 0
+85 0 obj
+<<
+ /A 152 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 84 0
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 1
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 85 0
+87 0 obj
+<<
+ /A 154 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 86 0
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 2
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 87 0
+89 0 obj
+<<
+ /A 156 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 88 0
+90 0 obj
+<<
+ /A 157 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 89 0
+91 0 obj
+<<
+ /A 158 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 90 0
+92 0 obj
+<<
+ /A 159 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 91 0
+93 0 obj
+<<
+ /A 160 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 92 0
+94 0 obj
+<<
+ /A 161 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 93 0
+95 0 obj
+<<
+ /A 162 0 R
+ /K [
+ 3
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 94 0
+96 0 obj
+<<
+ /A 163 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 95 0
+97 0 obj
+<<
+ /A 164 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 96 0
+98 0 obj
+<<
+ /A 165 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 97 0
+99 0 obj
+<<
+ /A 166 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 98 0
+100 0 obj
+<<
+ /A 167 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 99 0
+101 0 obj
+<<
+ /A 168 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 100 0
+102 0 obj
+<<
+ /A 169 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 101 0
+103 0 obj
+<<
+ /A 170 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 102 0
+104 0 obj
+<<
+ /A 171 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 103 0
+105 0 obj
+<<
+ /A 172 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 104 0
+106 0 obj
+<<
+ /A 173 0 R
+ /K [
+ 4
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 105 0
+107 0 obj
+<<
+ /A 174 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 106 0
+108 0 obj
+<<
+ /A 175 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 107 0
+109 0 obj
+<<
+ /A 176 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 108 0
+110 0 obj
+<<
+ /A 177 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 109 0
+111 0 obj
+<<
+ /A 178 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 110 0
+112 0 obj
+<<
+ /A 179 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 111 0
+113 0 obj
+<<
+ /A 180 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 112 0
+114 0 obj
+<<
+ /A 181 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 113 0
+115 0 obj
+<<
+ /A 182 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 114 0
+116 0 obj
+<<
+ /A 183 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 115 0
+117 0 obj
+<<
+ /A 184 0 R
+ /K [
+ 5
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 116 0
+118 0 obj
+<<
+ /A 185 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 117 0
+119 0 obj
+<<
+ /A 186 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 118 0
+120 0 obj
+<<
+ /A 187 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 119 0
+121 0 obj
+<<
+ /A 188 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 120 0
+122 0 obj
+<<
+ /A 189 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 121 0
+123 0 obj
+<<
+ /A 190 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 122 0
+124 0 obj
+<<
+ /A 191 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 123 0
+125 0 obj
+<<
+ /A 192 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 124 0
+126 0 obj
+<<
+ /A 193 0 R
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 125 0
+127 0 obj
+<<
+ /A 194 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 126 0
+128 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 127 0
+129 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 128 0
+130 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 129 0
+131 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 130 0
+132 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 131 0
+133 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 132 0
+134 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 133 0
+135 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 134 0
+136 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 135 0
+137 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 136 0
+138 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 137 0
+139 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 138 0
+140 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 139 0
+141 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 140 0
+142 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 50 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+%% Original object ID: 141 0
+143 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 195 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 142 0
+144 0 obj
+<<
+ /Length 145 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+145 0 obj
+702
+endobj
+
+%% Original object ID: 144 0
+146 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 145 0
+147 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 197 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 146 0
+148 0 obj
+<<
+ /Length 149 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+149 0 obj
+582
+endobj
+
+%% Original object ID: 148 0
+150 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 149 0
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 150 0
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 151 0
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 152 0
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 153 0
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 154 0
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 155 0
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 156 0
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 157 0
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 158 0
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 159 0
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 160 0
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 161 0
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 162 0
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 163 0
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 164 0
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 165 0
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 166 0
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 167 0
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 168 0
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 169 0
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 170 0
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 171 0
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 172 0
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 173 0
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 174 0
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 175 0
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 176 0
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 177 0
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 178 0
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 179 0
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 180 0
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 181 0
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 182 0
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 183 0
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 184 0
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 185 0
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 186 0
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 187 0
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 188 0
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 189 0
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 190 0
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 191 0
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 192 0
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+%% Original object ID: 193 0
+195 0 obj
+<<
+ /Length1 16184
+ /Length 196 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+196 0 obj
+16184
+endobj
+
+%% Original object ID: 195 0
+197 0 obj
+<<
+ /Length1 11088
+ /Length 198 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+11088
+endobj
+
+xref
+0 199
+0000000000 65535 f
+0000000052 00000 n
+0000000493 00000 n
+0000000705 00000 n
+0000000805 00000 n
+0000001120 00000 n
+0000001278 00000 n
+0000001538 00000 n
+0000001954 00000 n
+0000002370 00000 n
+0000002529 00000 n
+0000002911 00000 n
+0000003354 00000 n
+0000003826 00000 n
+0000004267 00000 n
+0000004746 00000 n
+0000005178 00000 n
+0000005345 00000 n
+0000005523 00000 n
+0000005641 00000 n
+0000005808 00000 n
+0000005856 00000 n
+0000006250 00000 n
+0000006490 00000 n
+0000006884 00000 n
+0000006994 00000 n
+0000007226 00000 n
+0000007394 00000 n
+0000007442 00000 n
+0000007680 00000 n
+0000007728 00000 n
+0000007896 00000 n
+0000007944 00000 n
+0000008182 00000 n
+0000008230 00000 n
+0000008624 00000 n
+0000009018 00000 n
+0000009410 00000 n
+0000009579 00000 n
+0000009627 00000 n
+0000009828 00000 n
+0000009876 00000 n
+0000010077 00000 n
+0000010125 00000 n
+0000010328 00000 n
+0000010376 00000 n
+0000010575 00000 n
+0000010624 00000 n
+0000010875 00000 n
+0000015701 00000 n
+0000015751 00000 n
+0000016565 00000 n
+0000016994 00000 n
+0000017473 00000 n
+0000019418 00000 n
+0000019816 00000 n
+0000021758 00000 n
+0000022134 00000 n
+0000022183 00000 n
+0000022351 00000 n
+0000022399 00000 n
+0000022775 00000 n
+0000022824 00000 n
+0000022992 00000 n
+0000023040 00000 n
+0000023208 00000 n
+0000023256 00000 n
+0000023494 00000 n
+0000023542 00000 n
+0000023918 00000 n
+0000023967 00000 n
+0000024135 00000 n
+0000024183 00000 n
+0000024559 00000 n
+0000024608 00000 n
+0000024776 00000 n
+0000024824 00000 n
+0000025200 00000 n
+0000025249 00000 n
+0000025417 00000 n
+0000025465 00000 n
+0000025841 00000 n
+0000025890 00000 n
+0000026058 00000 n
+0000026106 00000 n
+0000026247 00000 n
+0000026371 00000 n
+0000026512 00000 n
+0000026636 00000 n
+0000026777 00000 n
+0000026901 00000 n
+0000027025 00000 n
+0000027149 00000 n
+0000027273 00000 n
+0000027397 00000 n
+0000027521 00000 n
+0000027662 00000 n
+0000027786 00000 n
+0000027910 00000 n
+0000028034 00000 n
+0000028158 00000 n
+0000028283 00000 n
+0000028409 00000 n
+0000028535 00000 n
+0000028661 00000 n
+0000028787 00000 n
+0000028913 00000 n
+0000029056 00000 n
+0000029182 00000 n
+0000029308 00000 n
+0000029434 00000 n
+0000029560 00000 n
+0000029686 00000 n
+0000029812 00000 n
+0000029938 00000 n
+0000030064 00000 n
+0000030190 00000 n
+0000030316 00000 n
+0000030459 00000 n
+0000030585 00000 n
+0000030711 00000 n
+0000030837 00000 n
+0000030986 00000 n
+0000031112 00000 n
+0000031238 00000 n
+0000031364 00000 n
+0000031490 00000 n
+0000031616 00000 n
+0000031765 00000 n
+0000031892 00000 n
+0000032019 00000 n
+0000032146 00000 n
+0000032273 00000 n
+0000032400 00000 n
+0000032527 00000 n
+0000032654 00000 n
+0000032781 00000 n
+0000032908 00000 n
+0000033035 00000 n
+0000033162 00000 n
+0000033289 00000 n
+0000033416 00000 n
+0000033543 00000 n
+0000033670 00000 n
+0000033944 00000 n
+0000034705 00000 n
+0000034756 00000 n
+0000035001 00000 n
+0000035274 00000 n
+0000035915 00000 n
+0000035966 00000 n
+0000036210 00000 n
+0000036296 00000 n
+0000036382 00000 n
+0000036468 00000 n
+0000036554 00000 n
+0000036640 00000 n
+0000036726 00000 n
+0000036812 00000 n
+0000036898 00000 n
+0000036984 00000 n
+0000037070 00000 n
+0000037156 00000 n
+0000037242 00000 n
+0000037328 00000 n
+0000037414 00000 n
+0000037500 00000 n
+0000037586 00000 n
+0000037672 00000 n
+0000037758 00000 n
+0000037844 00000 n
+0000037930 00000 n
+0000038016 00000 n
+0000038102 00000 n
+0000038188 00000 n
+0000038274 00000 n
+0000038360 00000 n
+0000038446 00000 n
+0000038532 00000 n
+0000038618 00000 n
+0000038704 00000 n
+0000038790 00000 n
+0000038876 00000 n
+0000038962 00000 n
+0000039048 00000 n
+0000039134 00000 n
+0000039220 00000 n
+0000039306 00000 n
+0000039392 00000 n
+0000039478 00000 n
+0000039564 00000 n
+0000039650 00000 n
+0000039736 00000 n
+0000039822 00000 n
+0000039908 00000 n
+0000039994 00000 n
+0000056276 00000 n
+0000056329 00000 n
+0000067515 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 199
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+67539
+%%EOF
diff --git a/qpdf/qtest/qpdf/button-set.out b/qpdf/qtest/qpdf/button-set.out
new file mode 100644
index 00000000..11776aaa
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set.out
@@ -0,0 +1,5 @@
+setting r1 via parent
+turning checkbox1 on
+turning checkbox2 off
+setting r2 via child
+test 51 done
diff --git a/qpdf/qtest/qpdf/button-set.pdf b/qpdf/qtest/qpdf/button-set.pdf
new file mode 100644
index 00000000..fe96f336
--- /dev/null
+++ b/qpdf/qtest/qpdf/button-set.pdf
@@ -0,0 +1,3710 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ /NeedAppearances true
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /1
+>>
+endobj
+
+6 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /FT /Btn
+ /Kids [ 198 0 R ]
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /T (checkbox1)
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 197 0 R
+ 23 0 R
+ 198 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ ]
+ /Contents 50 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 52 0 R
+ ]
+ /ParentTree 53 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 54 0 R
+ /F2 55 0 R
+ /F3 56 0 R
+ /F4 57 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+20 0 obj
+12
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 58 0 R
+ /Off 60 0 R
+ >>
+ >>
+ /AS /1
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /FT /Btn
+ /Kids [ 197 0 R ]
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 66 0 R
+ /Off 68 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 70 0 R
+ /Off 72 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 74 0 R
+ /Off 76 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 78 0 R
+ /Off 80 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+41 0 obj
+12
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+43 0 obj
+46
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+45 0 obj
+46
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+47 0 obj
+47
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+49 0 obj
+45
+endobj
+
+%% Contents for page 1
+50 0 obj
+<<
+ /Length 51 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+51 0 obj
+4747
+endobj
+
+52 0 obj
+<<
+ /K [
+ 82 0 R
+ 83 0 R
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+53 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 82 0 R
+ 84 0 R
+ 86 0 R
+ 93 0 R
+ 104 0 R
+ 115 0 R
+ 119 0 R
+ 119 0 R
+ 125 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ ]
+>>
+endobj
+
+54 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 141 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 142 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+55 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 144 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 59 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+59 0 obj
+220
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+61 0 obj
+12
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+63 0 obj
+220
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+65 0 obj
+12
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+67 0 obj
+220
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+69 0 obj
+12
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+71 0 obj
+220
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+73 0 obj
+12
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+75 0 obj
+220
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+77 0 obj
+12
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+79 0 obj
+220
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+81 0 obj
+12
+endobj
+
+82 0 obj
+<<
+ /A 149 0 R
+ /K [
+ 0
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+83 0 obj
+<<
+ /A 150 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+84 0 obj
+<<
+ /A 151 0 R
+ /K [
+ 1
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+85 0 obj
+<<
+ /A 152 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 2
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /K [
+ 3
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /K [
+ 4
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /K [
+ 5
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 193 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+142 0 obj
+<<
+ /Length 143 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+143 0 obj
+702
+endobj
+
+144 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 195 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+582
+endobj
+
+148 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+150 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /Length1 16184
+ /Length 194 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+194 0 obj
+16184
+endobj
+
+195 0 obj
+<<
+ /Length1 11088
+ /Length 196 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+196 0 obj
+11088
+endobj
+
+197 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 62 0 R
+ /Off 64 0 R
+ >>
+ >>
+ /AS /Off
+ /F 4
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+198 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /F 4
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+xref
+0 199
+0000000000 65535 f
+0000000025 00000 n
+0000000439 00000 n
+0000000624 00000 n
+0000000697 00000 n
+0000000985 00000 n
+0000001116 00000 n
+0000001344 00000 n
+0000001733 00000 n
+0000002122 00000 n
+0000002253 00000 n
+0000002607 00000 n
+0000003022 00000 n
+0000003466 00000 n
+0000003879 00000 n
+0000004330 00000 n
+0000004736 00000 n
+0000004875 00000 n
+0000005025 00000 n
+0000005115 00000 n
+0000005282 00000 n
+0000005302 00000 n
+0000005666 00000 n
+0000005873 00000 n
+0000006239 00000 n
+0000006407 00000 n
+0000006427 00000 n
+0000006665 00000 n
+0000006685 00000 n
+0000006766 00000 n
+0000006934 00000 n
+0000006954 00000 n
+0000007192 00000 n
+0000007212 00000 n
+0000007380 00000 n
+0000007400 00000 n
+0000007638 00000 n
+0000007658 00000 n
+0000008024 00000 n
+0000008388 00000 n
+0000008754 00000 n
+0000008923 00000 n
+0000008943 00000 n
+0000009144 00000 n
+0000009164 00000 n
+0000009365 00000 n
+0000009385 00000 n
+0000009588 00000 n
+0000009608 00000 n
+0000009807 00000 n
+0000009850 00000 n
+0000014676 00000 n
+0000014698 00000 n
+0000015482 00000 n
+0000015883 00000 n
+0000016334 00000 n
+0000018251 00000 n
+0000018621 00000 n
+0000020535 00000 n
+0000020911 00000 n
+0000020932 00000 n
+0000021100 00000 n
+0000021120 00000 n
+0000021496 00000 n
+0000021517 00000 n
+0000021685 00000 n
+0000021705 00000 n
+0000022081 00000 n
+0000022102 00000 n
+0000022270 00000 n
+0000022290 00000 n
+0000022666 00000 n
+0000022687 00000 n
+0000022855 00000 n
+0000022875 00000 n
+0000023251 00000 n
+0000023272 00000 n
+0000023440 00000 n
+0000023460 00000 n
+0000023836 00000 n
+0000023857 00000 n
+0000024025 00000 n
+0000024045 00000 n
+0000024158 00000 n
+0000024254 00000 n
+0000024367 00000 n
+0000024463 00000 n
+0000024576 00000 n
+0000024672 00000 n
+0000024768 00000 n
+0000024864 00000 n
+0000024960 00000 n
+0000025056 00000 n
+0000025152 00000 n
+0000025265 00000 n
+0000025361 00000 n
+0000025457 00000 n
+0000025553 00000 n
+0000025649 00000 n
+0000025745 00000 n
+0000025841 00000 n
+0000025938 00000 n
+0000026035 00000 n
+0000026132 00000 n
+0000026229 00000 n
+0000026343 00000 n
+0000026440 00000 n
+0000026537 00000 n
+0000026634 00000 n
+0000026731 00000 n
+0000026828 00000 n
+0000026925 00000 n
+0000027022 00000 n
+0000027119 00000 n
+0000027216 00000 n
+0000027313 00000 n
+0000027427 00000 n
+0000027524 00000 n
+0000027621 00000 n
+0000027718 00000 n
+0000027838 00000 n
+0000027935 00000 n
+0000028032 00000 n
+0000028129 00000 n
+0000028226 00000 n
+0000028323 00000 n
+0000028443 00000 n
+0000028541 00000 n
+0000028639 00000 n
+0000028737 00000 n
+0000028835 00000 n
+0000028933 00000 n
+0000029031 00000 n
+0000029129 00000 n
+0000029227 00000 n
+0000029325 00000 n
+0000029423 00000 n
+0000029521 00000 n
+0000029619 00000 n
+0000029717 00000 n
+0000029815 00000 n
+0000029913 00000 n
+0000030158 00000 n
+0000030919 00000 n
+0000030941 00000 n
+0000031157 00000 n
+0000031401 00000 n
+0000032042 00000 n
+0000032064 00000 n
+0000032279 00000 n
+0000032336 00000 n
+0000032393 00000 n
+0000032450 00000 n
+0000032507 00000 n
+0000032564 00000 n
+0000032621 00000 n
+0000032678 00000 n
+0000032735 00000 n
+0000032792 00000 n
+0000032849 00000 n
+0000032906 00000 n
+0000032963 00000 n
+0000033020 00000 n
+0000033077 00000 n
+0000033134 00000 n
+0000033191 00000 n
+0000033248 00000 n
+0000033305 00000 n
+0000033362 00000 n
+0000033419 00000 n
+0000033476 00000 n
+0000033533 00000 n
+0000033590 00000 n
+0000033647 00000 n
+0000033704 00000 n
+0000033761 00000 n
+0000033818 00000 n
+0000033875 00000 n
+0000033932 00000 n
+0000033989 00000 n
+0000034046 00000 n
+0000034103 00000 n
+0000034160 00000 n
+0000034217 00000 n
+0000034274 00000 n
+0000034331 00000 n
+0000034388 00000 n
+0000034445 00000 n
+0000034502 00000 n
+0000034559 00000 n
+0000034616 00000 n
+0000034673 00000 n
+0000034730 00000 n
+0000034787 00000 n
+0000051069 00000 n
+0000051093 00000 n
+0000062279 00000 n
+0000062303 00000 n
+0000062506 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 199
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><ecae7a672bccf334835b54867b208438>]
+>>
+startxref
+62711
+%%EOF
diff --git a/qpdf/test_driver.cc b/qpdf/test_driver.cc
index 88149cf3..3cb286d4 100644
--- a/qpdf/test_driver.cc
+++ b/qpdf/test_driver.cc
@@ -1771,6 +1771,55 @@ void runtest(int n, char const* filename1, char const* arg2)
std::cout << *iter << std::endl;
}
}
+ else if (n == 51)
+ {
+ // Test radio button and checkbox field setting. The input
+ // files must have radios button called r1 and r2 and
+ // checkboxes called checkbox1 and checkbox2. The files
+ // button-set*.pdf are designed for this test case.
+ QPDFObjectHandle acroform = pdf.getRoot().getKey("/AcroForm");
+ QPDFObjectHandle fields = acroform.getKey("/Fields");
+ int n = fields.getArrayNItems();
+ for (int i = 0; i < n; ++i)
+ {
+ QPDFObjectHandle field = fields.getArrayItem(i);
+ QPDFObjectHandle T = field.getKey("/T");
+ if (! T.isString())
+ {
+ continue;
+ }
+ std::string Tval = T.getUTF8Value();
+ if (Tval == "r1")
+ {
+ std::cout << "setting r1 via parent\n";
+ QPDFFormFieldObjectHelper foh(field);
+ foh.setV(QPDFObjectHandle::newName("/2"));
+ }
+ else if (Tval == "r2")
+ {
+ std::cout << "setting r2 via child\n";
+ field = field.getKey("/Kids").getArrayItem(1);
+ QPDFFormFieldObjectHelper foh(field);
+ foh.setV(QPDFObjectHandle::newName("/3"));
+ }
+ else if (Tval == "checkbox1")
+ {
+ std::cout << "turning checkbox1 on\n";
+ QPDFFormFieldObjectHelper foh(field);
+ foh.setV(QPDFObjectHandle::newName("/Yes"));
+ }
+ else if (Tval == "checkbox2")
+ {
+ std::cout << "turning checkbox2 off\n";
+ QPDFFormFieldObjectHelper foh(field);
+ foh.setV(QPDFObjectHandle::newName("/Off"));
+ }
+ }
+ QPDFWriter w(pdf, "a.pdf");
+ w.setQDFMode(true);
+ w.setStaticID(true);
+ w.write();
+ }
else
{
throw std::runtime_error(std::string("invalid test ") +