Commit 649709a80089f707a1a55897cb1e319af4f5efb2
1 parent
f84bf977
Refactor xref table reconstruction (Fixes #1362)
Split reconstruction into three passes - scanning of input for objects and trailer, insertion of objects into the xref table, and loading the trailer. This allows insertion to take place in the usual reverse order and removes the need for a separate insertReconstructedXrefEntry method. It also allows trailer to be tried from most recent to oldest. Ignore any found trailers without /Root entry.
Showing
11 changed files
with
1114 additions
and
969 deletions
include/qpdf/QPDF.hh
| ... | ... | @@ -779,7 +779,6 @@ class QPDF |
| 779 | 779 | std::function<QPDFExc(std::string_view)> damaged); |
| 780 | 780 | void insertXrefEntry(int obj, int f0, qpdf_offset_t f1, int f2); |
| 781 | 781 | void insertFreeXrefEntry(QPDFObjGen); |
| 782 | - void insertReconstructedXrefEntry(int obj, qpdf_offset_t f1, int f2); | |
| 783 | 782 | void setLastObjectDescription(std::string const& description, QPDFObjGen og); |
| 784 | 783 | QPDFObjectHandle readTrailer(); |
| 785 | 784 | QPDFObjectHandle readObject(std::string const& description, QPDFObjGen og); | ... | ... |
libqpdf/QPDF.cc
| ... | ... | @@ -556,16 +556,19 @@ QPDF::reconstruct_xref(QPDFExc& e) |
| 556 | 556 | warn(damagedPDF("", 0, "Attempting to reconstruct cross-reference table")); |
| 557 | 557 | |
| 558 | 558 | // Delete all references to type 1 (uncompressed) objects |
| 559 | - std::set<QPDFObjGen> to_delete; | |
| 559 | + std::vector<QPDFObjGen> to_delete; | |
| 560 | 560 | for (auto const& iter: m->xref_table) { |
| 561 | 561 | if (iter.second.getType() == 1) { |
| 562 | - to_delete.insert(iter.first); | |
| 562 | + to_delete.emplace_back(iter.first); | |
| 563 | 563 | } |
| 564 | 564 | } |
| 565 | 565 | for (auto const& iter: to_delete) { |
| 566 | 566 | m->xref_table.erase(iter); |
| 567 | 567 | } |
| 568 | 568 | |
| 569 | + std::vector<std::tuple<int, int, qpdf_offset_t>> found_objects; | |
| 570 | + std::vector<qpdf_offset_t> trailers; | |
| 571 | + | |
| 569 | 572 | m->file->seek(0, SEEK_END); |
| 570 | 573 | qpdf_offset_t eof = m->file->tell(); |
| 571 | 574 | m->file->seek(0, SEEK_SET); |
| ... | ... | @@ -576,12 +579,12 @@ QPDF::reconstruct_xref(QPDFExc& e) |
| 576 | 579 | qpdf_offset_t token_start = m->file->tell() - toO(t1.getValue().length()); |
| 577 | 580 | if (t1.isInteger()) { |
| 578 | 581 | auto pos = m->file->tell(); |
| 579 | - QPDFTokenizer::Token t2 = readToken(*m->file, MAX_LEN); | |
| 580 | - if ((t2.isInteger()) && (readToken(*m->file, MAX_LEN).isWord("obj"))) { | |
| 582 | + auto t2 = readToken(*m->file, MAX_LEN); | |
| 583 | + if (t2.isInteger() && readToken(*m->file, MAX_LEN).isWord("obj")) { | |
| 581 | 584 | int obj = QUtil::string_to_int(t1.getValue().c_str()); |
| 582 | 585 | int gen = QUtil::string_to_int(t2.getValue().c_str()); |
| 583 | 586 | if (obj <= m->xref_table_max_id) { |
| 584 | - insertReconstructedXrefEntry(obj, token_start, gen); | |
| 587 | + found_objects.emplace_back(obj, gen, token_start); | |
| 585 | 588 | } else { |
| 586 | 589 | warn(damagedPDF( |
| 587 | 590 | "", 0, "ignoring object with impossibly large id " + std::to_string(obj))); |
| ... | ... | @@ -589,20 +592,35 @@ QPDF::reconstruct_xref(QPDFExc& e) |
| 589 | 592 | } |
| 590 | 593 | m->file->seek(pos, SEEK_SET); |
| 591 | 594 | } else if (!m->trailer && t1.isWord("trailer")) { |
| 592 | - auto pos = m->file->tell(); | |
| 593 | - QPDFObjectHandle t = readTrailer(); | |
| 594 | - if (!t.isDictionary()) { | |
| 595 | - // Oh well. It was worth a try. | |
| 596 | - } else { | |
| 597 | - setTrailer(t); | |
| 598 | - } | |
| 599 | - m->file->seek(pos, SEEK_SET); | |
| 595 | + trailers.emplace_back(m->file->tell()); | |
| 600 | 596 | } |
| 601 | 597 | check_warnings(); |
| 602 | 598 | m->file->findAndSkipNextEOL(); |
| 603 | 599 | } |
| 600 | + | |
| 601 | + auto rend = found_objects.rend(); | |
| 602 | + for (auto it = found_objects.rbegin(); it != rend; it++) { | |
| 603 | + auto [obj, gen, token_start] = *it; | |
| 604 | + insertXrefEntry(obj, 1, token_start, gen); | |
| 605 | + check_warnings(); | |
| 606 | + } | |
| 604 | 607 | m->deleted_objects.clear(); |
| 605 | 608 | |
| 609 | + for (auto it = trailers.rbegin(); it != trailers.rend(); it++) { | |
| 610 | + m->file->seek(*it, SEEK_SET); | |
| 611 | + auto t = readTrailer(); | |
| 612 | + if (!t.isDictionary()) { | |
| 613 | + // Oh well. It was worth a try. | |
| 614 | + } else { | |
| 615 | + if (t.hasKey("/Root")) { | |
| 616 | + m->trailer = t; | |
| 617 | + break; | |
| 618 | + } | |
| 619 | + warn(damagedPDF("trailer", *it, "recovered trailer has no /Root entry")); | |
| 620 | + } | |
| 621 | + check_warnings(); | |
| 622 | + } | |
| 623 | + | |
| 606 | 624 | if (!m->trailer) { |
| 607 | 625 | qpdf_offset_t max_offset{0}; |
| 608 | 626 | size_t max_size{0}; |
| ... | ... | @@ -612,7 +630,7 @@ QPDF::reconstruct_xref(QPDFExc& e) |
| 612 | 630 | if (entry.getType() != 1) { |
| 613 | 631 | continue; |
| 614 | 632 | } |
| 615 | - auto oh = getObjectByObjGen(iter.first); | |
| 633 | + auto oh = getObject(iter.first); | |
| 616 | 634 | try { |
| 617 | 635 | if (!oh.isStreamOfType("/XRef")) { |
| 618 | 636 | continue; |
| ... | ... | @@ -1305,8 +1323,13 @@ QPDF::insertXrefEntry(int obj, int f0, qpdf_offset_t f1, int f2) |
| 1305 | 1323 | |
| 1306 | 1324 | // If there is already an entry for this object and generation in the table, it means that a |
| 1307 | 1325 | // later xref table has registered this object. Disregard this one. |
| 1326 | + int new_gen = f0 == 2 ? 0 : f2; | |
| 1308 | 1327 | |
| 1309 | - if (obj > m->xref_table_max_id) { | |
| 1328 | + if (!(obj > 0 && obj <= m->xref_table_max_id && 0 <= f2 && new_gen < 65535)) { | |
| 1329 | + // We are ignoring invalid objgens. Most will arrive here from xref reconstruction. There | |
| 1330 | + // is probably no point having another warning but we could count invalid items in order to | |
| 1331 | + // decide when to give up. | |
| 1332 | + QTC::TC("qpdf", "QPDF xref overwrite invalid objgen"); | |
| 1310 | 1333 | // ignore impossibly large object ids or object ids > Size. |
| 1311 | 1334 | return; |
| 1312 | 1335 | } |
| ... | ... | @@ -1352,25 +1375,6 @@ QPDF::insertFreeXrefEntry(QPDFObjGen og) |
| 1352 | 1375 | } |
| 1353 | 1376 | } |
| 1354 | 1377 | |
| 1355 | -// Replace uncompressed object. This is used in xref recovery mode, which reads the file from | |
| 1356 | -// beginning to end. | |
| 1357 | -void | |
| 1358 | -QPDF::insertReconstructedXrefEntry(int obj, qpdf_offset_t f1, int f2) | |
| 1359 | -{ | |
| 1360 | - if (!(obj > 0 && obj <= m->xref_table_max_id && 0 <= f2 && f2 < 65535)) { | |
| 1361 | - QTC::TC("qpdf", "QPDF xref overwrite invalid objgen"); | |
| 1362 | - return; | |
| 1363 | - } | |
| 1364 | - | |
| 1365 | - QPDFObjGen og(obj, f2); | |
| 1366 | - if (!m->deleted_objects.count(obj)) { | |
| 1367 | - // deleted_objects stores the uncompressed objects removed from the xref table at the start | |
| 1368 | - // of recovery. | |
| 1369 | - QTC::TC("qpdf", "QPDF xref overwrite object"); | |
| 1370 | - m->xref_table[QPDFObjGen(obj, f2)] = QPDFXRefEntry(f1); | |
| 1371 | - } | |
| 1372 | -} | |
| 1373 | - | |
| 1374 | 1378 | void |
| 1375 | 1379 | QPDF::showXRefTable() |
| 1376 | 1380 | { | ... | ... |
libqpdf/QPDFWriter.cc
| ... | ... | @@ -1711,7 +1711,6 @@ QPDFWriter::writeObjectStream(QPDFObjectHandle object) |
| 1711 | 1711 | if (obj_to_write.isStream()) { |
| 1712 | 1712 | // This condition occurred in a fuzz input. Ideally we should block it at parse |
| 1713 | 1713 | // time, but it's not clear to me how to construct a case for this. |
| 1714 | - QTC::TC("qpdf", "QPDFWriter stream in ostream"); | |
| 1715 | 1714 | obj_to_write.warnIfPossible("stream found inside object stream; treating as null"); |
| 1716 | 1715 | obj_to_write = QPDFObjectHandle::newNull(); |
| 1717 | 1716 | } | ... | ... |
manual/release-notes.rst
| ... | ... | @@ -15,6 +15,12 @@ more detail. |
| 15 | 15 | |
| 16 | 16 | .. _r12-0-0: |
| 17 | 17 | |
| 18 | +12.0.1: not yet released | |
| 19 | + - Other enhancements | |
| 20 | + | |
| 21 | + - There have been further enhancements to how files with damaged xref | |
| 22 | + tables are recovered. | |
| 23 | + | |
| 18 | 24 | .. cSpell:ignore substract |
| 19 | 25 | |
| 20 | 26 | 12.0.0: March 9, 2025 | ... | ... |
qpdf/qpdf.testcov
| ... | ... | @@ -107,7 +107,6 @@ QPDFWriter not recompressing /FlateDecode 0 |
| 107 | 107 | QPDF_encryption xref stream from encrypted file 0 |
| 108 | 108 | QPDFJob unable to filter 0 |
| 109 | 109 | QUtil non-trivial UTF-16 0 |
| 110 | -QPDF xref overwrite object 0 | |
| 111 | 110 | QPDF xref overwrite invalid objgen 0 |
| 112 | 111 | QPDF decoding error warning 0 |
| 113 | 112 | qpdf-c called qpdf_init 0 |
| ... | ... | @@ -439,7 +438,6 @@ QPDF xref skipped space 0 |
| 439 | 438 | QPDF eof skipping spaces before xref 1 |
| 440 | 439 | QPDF_encryption user matches owner V < 5 0 |
| 441 | 440 | QPDF_encryption same password 1 |
| 442 | -QPDFWriter stream in ostream 0 | |
| 443 | 441 | QPDFParser duplicate dict key 0 |
| 444 | 442 | QPDFWriter no encryption sig contents 0 |
| 445 | 443 | QPDFPageObjectHelper colorspace lookup 0 | ... | ... |
qpdf/qtest/qpdf/fuzz-16214.out
| ... | ... | @@ -16,11 +16,9 @@ WARNING: fuzz-16214.pdf (object 1 0, offset 7189): expected n n obj |
| 16 | 16 | WARNING: fuzz-16214.pdf: Attempting to reconstruct cross-reference table |
| 17 | 17 | WARNING: fuzz-16214.pdf (offset 7207): error decoding stream data for object 2 0: stream inflate: inflate: data: invalid code lengths set |
| 18 | 18 | WARNING: fuzz-16214.pdf (offset 7207): getStreamData called on unfilterable stream |
| 19 | -WARNING: fuzz-16214.pdf (object 8 0, offset 7207): supposed object stream 5 has wrong type | |
| 20 | -WARNING: fuzz-16214.pdf (object 8 0, offset 7207): object stream 5 has incorrect keys | |
| 19 | +WARNING: fuzz-16214.pdf (object 7 0, offset 7207): supposed object stream 5 has wrong type | |
| 20 | +WARNING: fuzz-16214.pdf (object 7 0, offset 7207): object stream 5 has incorrect keys | |
| 21 | 21 | WARNING: fuzz-16214.pdf (object 21 0, offset 3639): expected endstream |
| 22 | 22 | WARNING: fuzz-16214.pdf (object 21 0, offset 3112): attempting to recover stream length |
| 23 | 23 | WARNING: fuzz-16214.pdf (object 21 0, offset 3112): recovered stream length: 340 |
| 24 | -WARNING: fuzz-16214.pdf, stream object 8 0: stream found inside object stream; treating as null | |
| 25 | -WARNING: fuzz-16214.pdf, stream object 8 0: stream found inside object stream; treating as null | |
| 26 | 24 | qpdf: operation succeeded with warnings; resulting file may have some problems | ... | ... |
qpdf/qtest/qpdf/issue-100.out
| 1 | 1 | WARNING: issue-100.pdf: file is damaged |
| 2 | 2 | WARNING: issue-100.pdf (offset 736): xref not found |
| 3 | 3 | WARNING: issue-100.pdf: Attempting to reconstruct cross-reference table |
| 4 | +WARNING: issue-100.pdf (trailer, offset 953): dictionary ended prematurely; using null as value for last key | |
| 5 | +WARNING: issue-100.pdf (trailer, offset 953): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 6 | +WARNING: issue-100.pdf (trailer, offset 950): recovered trailer has no /Root entry | |
| 4 | 7 | WARNING: issue-100.pdf (trailer, offset 488): stream keyword found in trailer |
| 8 | +WARNING: issue-100.pdf (trailer, offset 418): recovered trailer has no /Root entry | |
| 9 | +WARNING: issue-100.pdf (object 1 0, offset 83): unexpected dictionary close token | |
| 10 | +WARNING: issue-100.pdf (object 1 0, offset 87): expected endobj | |
| 5 | 11 | WARNING: issue-100.pdf (object 5 0, offset 268): unknown token while reading object; treating as string |
| 6 | 12 | WARNING: issue-100.pdf (object 5 0, offset 286): unknown token while reading object; treating as string |
| 7 | 13 | WARNING: issue-100.pdf (object 5 0, offset 289): unknown token while reading object; treating as string |
| ... | ... | @@ -10,4 +16,11 @@ WARNING: issue-100.pdf (object 5 0, offset 297): unknown token while reading obj |
| 10 | 16 | WARNING: issue-100.pdf (object 5 0, offset 304): unknown token while reading object; treating as string |
| 11 | 17 | WARNING: issue-100.pdf (object 5 0, offset 304): too many errors; giving up on reading object |
| 12 | 18 | WARNING: issue-100.pdf (object 5 0, offset 308): expected endobj |
| 13 | -qpdf: issue-100.pdf: unable to find /Root dictionary | |
| 19 | +WARNING: issue-100.pdf (object 8 0, offset 107): invalid character ()) in hexstring | |
| 20 | +WARNING: issue-100.pdf (object 8 0, offset 109): expected endobj | |
| 21 | +WARNING: issue-100.pdf (object 9 0, offset 527): unknown token while reading object; treating as string | |
| 22 | +WARNING: issue-100.pdf (object 9 0, offset 529): expected endobj | |
| 23 | +WARNING: issue-100.pdf (object 10 0, offset 573): expected endobj | |
| 24 | +WARNING: issue-100.pdf (object 11 0, offset 596): unknown token while reading object; treating as string | |
| 25 | +WARNING: issue-100.pdf (object 11 0, offset 598): expected endobj | |
| 26 | +qpdf: issue-100.pdf: unable to find trailer dictionary while recovering damaged file | ... | ... |
qpdf/qtest/qpdf/issue-101.out
| 1 | 1 | WARNING: issue-101.pdf: file is damaged |
| 2 | 2 | WARNING: issue-101.pdf (offset 3526): xref not found |
| 3 | 3 | WARNING: issue-101.pdf: Attempting to reconstruct cross-reference table |
| 4 | +WARNING: issue-101.pdf (object 11 0, offset 591): unknown token while reading object; treating as string | |
| 5 | +WARNING: issue-101.pdf (object 11 0, offset 625): treating unexpected brace token as null | |
| 6 | +WARNING: issue-101.pdf (object 11 0, offset 626): unknown token while reading object; treating as string | |
| 7 | +WARNING: issue-101.pdf (object 11 0, offset 637): unknown token while reading object; treating as string | |
| 8 | +WARNING: issue-101.pdf (object 11 0, offset 639): unknown token while reading object; treating as string | |
| 9 | +WARNING: issue-101.pdf (object 11 0, offset 644): unknown token while reading object; treating as string | |
| 10 | +WARNING: issue-101.pdf (object 11 0, offset 644): too many errors; giving up on reading object | |
| 11 | +WARNING: issue-101.pdf (object 11 0, offset 647): expected endobj | |
| 12 | +WARNING: issue-101.pdf (trailer, offset 4433): recovered trailer has no /Root entry | |
| 13 | +WARNING: issue-101.pdf (trailer, offset 4183): stream keyword found in trailer | |
| 14 | +WARNING: issue-101.pdf (trailer, offset 4113): recovered trailer has no /Root entry | |
| 15 | +WARNING: issue-101.pdf (trailer, offset 3630): stream keyword found in trailer | |
| 16 | +WARNING: issue-101.pdf (trailer, offset 3560): recovered trailer has no /Root entry | |
| 17 | +WARNING: issue-101.pdf (trailer, offset 3409): stream keyword found in trailer | |
| 18 | +WARNING: issue-101.pdf (trailer, offset 3339): recovered trailer has no /Root entry | |
| 19 | +WARNING: issue-101.pdf (trailer, offset 2928): unknown token while reading object; treating as string | |
| 20 | +WARNING: issue-101.pdf (trailer, offset 2930): unknown token while reading object; treating as string | |
| 21 | +WARNING: issue-101.pdf (trailer, offset 2928): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 22 | +WARNING: issue-101.pdf (trailer, offset 2928): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 23 | +WARNING: issue-101.pdf (trailer, offset 2928): expected dictionary key but found non-name object; inserting key /QPDFFake3 | |
| 24 | +WARNING: issue-101.pdf (trailer, offset 2995): stream keyword found in trailer | |
| 25 | +WARNING: issue-101.pdf (trailer, offset 2925): recovered trailer has no /Root entry | |
| 26 | +WARNING: issue-101.pdf (trailer, offset 2683): stream keyword found in trailer | |
| 27 | +WARNING: issue-101.pdf (trailer, offset 2613): recovered trailer has no /Root entry | |
| 28 | +WARNING: issue-101.pdf (trailer, offset 2096): stream keyword found in trailer | |
| 29 | +WARNING: issue-101.pdf (trailer, offset 2026): recovered trailer has no /Root entry | |
| 30 | +WARNING: issue-101.pdf (trailer, offset 1701): stream keyword found in trailer | |
| 31 | +WARNING: issue-101.pdf (trailer, offset 1631): recovered trailer has no /Root entry | |
| 4 | 32 | WARNING: issue-101.pdf (trailer, offset 1508): stream keyword found in trailer |
| 33 | +WARNING: issue-101.pdf (trailer, offset 1438): recovered trailer has no /Root entry | |
| 34 | +WARNING: issue-101.pdf (object 2 0, offset 244): unknown token while reading object; treating as string | |
| 35 | +WARNING: issue-101.pdf (object 2 0, offset 29): dictionary has duplicated key /Parent; last occurrence overrides earlier ones | |
| 5 | 36 | WARNING: issue-101.pdf (object 5 0, offset 1242): dictionary ended prematurely; using null as value for last key |
| 6 | 37 | WARNING: issue-101.pdf (object 5 0, offset 1242): expected dictionary key but found non-name object; inserting key /QPDFFake1 |
| 7 | -qpdf: issue-101.pdf: unable to find /Root dictionary | |
| 38 | +WARNING: issue-101.pdf (object 7 0, offset 3855): unknown token while reading object; treating as string | |
| 39 | +WARNING: issue-101.pdf (object 7 0, offset 3863): treating unexpected brace token as null | |
| 40 | +WARNING: issue-101.pdf (object 7 0, offset 3864): unknown token while reading object; treating as string | |
| 41 | +WARNING: issue-101.pdf (object 7 0, offset 3866): unknown token while reading object; treating as string | |
| 42 | +WARNING: issue-101.pdf (object 7 0, offset 3873): unknown token while reading object; treating as string | |
| 43 | +WARNING: issue-101.pdf (object 7 0, offset 3879): unknown token while reading object; treating as string | |
| 44 | +WARNING: issue-101.pdf (object 7 0, offset 3879): too many errors; giving up on reading object | |
| 45 | +WARNING: issue-101.pdf (object 7 0, offset 3888): expected endobj | |
| 46 | +WARNING: issue-101.pdf (object 8 0, offset 4067): invalid character ()) in hexstring | |
| 47 | +WARNING: issue-101.pdf (object 8 0, offset 4069): expected endobj | |
| 48 | +WARNING: issue-101.pdf (object 9 0, offset 2832): unknown token while reading object; treating as string | |
| 49 | +WARNING: issue-101.pdf (object 9 0, offset 2834): expected endobj | |
| 50 | +qpdf: issue-101.pdf: unable to find trailer dictionary while recovering damaged file | ... | ... |
qpdf/qtest/qpdf/issue-147.out
| ... | ... | @@ -2,6 +2,7 @@ WARNING: issue-147.pdf: can't find PDF header |
| 2 | 2 | WARNING: issue-147.pdf: file is damaged |
| 3 | 3 | WARNING: issue-147.pdf: can't find startxref |
| 4 | 4 | WARNING: issue-147.pdf: Attempting to reconstruct cross-reference table |
| 5 | -WARNING: issue-147.pdf (trailer, offset 9): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 6 | 5 | WARNING: issue-147.pdf: ignoring object with impossibly large id 62 |
| 7 | -qpdf: issue-147.pdf: unable to find objects while recovering damaged file | |
| 6 | +WARNING: issue-147.pdf (trailer, offset 9): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 7 | +WARNING: issue-147.pdf (trailer, offset 7): recovered trailer has no /Root entry | |
| 8 | +qpdf: issue-147.pdf: unable to find trailer dictionary while recovering damaged file | ... | ... |
qpdf/qtest/qpdf/issue-335a.out
| ... | ... | @@ -2,793 +2,377 @@ WARNING: issue-335a.pdf: can't find PDF header |
| 2 | 2 | WARNING: issue-335a.pdf: file is damaged |
| 3 | 3 | WARNING: issue-335a.pdf: can't find startxref |
| 4 | 4 | WARNING: issue-335a.pdf: Attempting to reconstruct cross-reference table |
| 5 | -WARNING: issue-335a.pdf (trailer, offset 26): treating unexpected brace token as null | |
| 6 | -WARNING: issue-335a.pdf (trailer, offset 27): unexpected ) | |
| 7 | -WARNING: issue-335a.pdf (trailer, offset 28): unknown token while reading object; treating as string | |
| 8 | -WARNING: issue-335a.pdf (trailer, offset 29): unexpected ) | |
| 9 | -WARNING: issue-335a.pdf (trailer, offset 30): unexpected ) | |
| 10 | -WARNING: issue-335a.pdf (trailer, offset 63): unexpected ) | |
| 11 | -WARNING: issue-335a.pdf (trailer, offset 63): too many errors; giving up on reading object | |
| 12 | -WARNING: issue-335a.pdf (trailer, offset 44): unknown token while reading object; treating as string | |
| 13 | -WARNING: issue-335a.pdf (trailer, offset 61): unknown token while reading object; treating as string | |
| 14 | -WARNING: issue-335a.pdf (trailer, offset 62): unexpected ) | |
| 15 | -WARNING: issue-335a.pdf (trailer, offset 63): unexpected ) | |
| 16 | -WARNING: issue-335a.pdf (trailer, offset 64): name with stray # will not work with PDF >= 1.2 | |
| 17 | -WARNING: issue-335a.pdf (trailer, offset 67): unexpected ) | |
| 18 | -WARNING: issue-335a.pdf (trailer, offset 68): unexpected ) | |
| 19 | -WARNING: issue-335a.pdf (trailer, offset 68): too many errors; giving up on reading object | |
| 20 | -WARNING: issue-335a.pdf (trailer, offset 59): treating unexpected brace token as null | |
| 21 | -WARNING: issue-335a.pdf (trailer, offset 60): unexpected ) | |
| 22 | -WARNING: issue-335a.pdf (trailer, offset 61): unknown token while reading object; treating as string | |
| 23 | -WARNING: issue-335a.pdf (trailer, offset 62): unexpected ) | |
| 24 | -WARNING: issue-335a.pdf (trailer, offset 63): unexpected ) | |
| 25 | -WARNING: issue-335a.pdf (trailer, offset 64): name with stray # will not work with PDF >= 1.2 | |
| 26 | -WARNING: issue-335a.pdf (trailer, offset 67): unexpected ) | |
| 27 | -WARNING: issue-335a.pdf (trailer, offset 67): too many errors; giving up on reading object | |
| 28 | -WARNING: issue-335a.pdf (trailer, offset 96): unknown token while reading object; treating as string | |
| 29 | -WARNING: issue-335a.pdf (trailer, offset 113): unknown token while reading object; treating as string | |
| 30 | -WARNING: issue-335a.pdf (trailer, offset 114): unexpected ) | |
| 31 | -WARNING: issue-335a.pdf (trailer, offset 115): unexpected ) | |
| 32 | -WARNING: issue-335a.pdf (trailer, offset 116): name with stray # will not work with PDF >= 1.2 | |
| 33 | -WARNING: issue-335a.pdf (trailer, offset 119): unexpected ) | |
| 34 | -WARNING: issue-335a.pdf (trailer, offset 120): unexpected ) | |
| 35 | -WARNING: issue-335a.pdf (trailer, offset 120): too many errors; giving up on reading object | |
| 36 | -WARNING: issue-335a.pdf (trailer, offset 111): treating unexpected brace token as null | |
| 37 | -WARNING: issue-335a.pdf (trailer, offset 112): unexpected ) | |
| 38 | -WARNING: issue-335a.pdf (trailer, offset 113): unknown token while reading object; treating as string | |
| 39 | -WARNING: issue-335a.pdf (trailer, offset 114): unexpected ) | |
| 40 | -WARNING: issue-335a.pdf (trailer, offset 115): unexpected ) | |
| 41 | -WARNING: issue-335a.pdf (trailer, offset 116): name with stray # will not work with PDF >= 1.2 | |
| 42 | -WARNING: issue-335a.pdf (trailer, offset 119): unexpected ) | |
| 43 | -WARNING: issue-335a.pdf (trailer, offset 119): too many errors; giving up on reading object | |
| 44 | -WARNING: issue-335a.pdf (trailer, offset 134): unknown token while reading object; treating as string | |
| 45 | -WARNING: issue-335a.pdf (trailer, offset 150): unexpected ) | |
| 46 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 47 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 48 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 49 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 50 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 51 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 52 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 53 | -WARNING: issue-335a.pdf (trailer, offset 148): treating unexpected brace token as null | |
| 54 | -WARNING: issue-335a.pdf (trailer, offset 149): unexpected ) | |
| 55 | -WARNING: issue-335a.pdf (trailer, offset 150): unexpected ) | |
| 56 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 57 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 58 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 59 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 60 | -WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object | |
| 61 | -WARNING: issue-335a.pdf (trailer, offset 164): unknown token while reading object; treating as string | |
| 62 | -WARNING: issue-335a.pdf (trailer, offset 217): unexpected ) | |
| 63 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 64 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 65 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 66 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 67 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 68 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 69 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 70 | -WARNING: issue-335a.pdf (trailer, offset 178): invalid character (<) in hexstring | |
| 71 | -WARNING: issue-335a.pdf (trailer, offset 212): treating unexpected brace token as null | |
| 72 | -WARNING: issue-335a.pdf (trailer, offset 213): unexpected ) | |
| 73 | -WARNING: issue-335a.pdf (trailer, offset 214): unknown token while reading object; treating as string | |
| 74 | -WARNING: issue-335a.pdf (trailer, offset 215): unexpected ) | |
| 75 | -WARNING: issue-335a.pdf (trailer, offset 216): unexpected ) | |
| 76 | -WARNING: issue-335a.pdf (trailer, offset 217): unexpected ) | |
| 77 | -WARNING: issue-335a.pdf (trailer, offset 217): too many errors; giving up on reading object | |
| 78 | -WARNING: issue-335a.pdf (trailer, offset 231): unknown token while reading object; treating as string | |
| 79 | -WARNING: issue-335a.pdf (trailer, offset 247): unexpected ) | |
| 80 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 81 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 82 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 83 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 84 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 85 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 86 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 87 | -WARNING: issue-335a.pdf (trailer, offset 245): treating unexpected brace token as null | |
| 88 | -WARNING: issue-335a.pdf (trailer, offset 246): unexpected ) | |
| 89 | -WARNING: issue-335a.pdf (trailer, offset 247): unexpected ) | |
| 90 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 91 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 92 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 93 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 94 | -WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object | |
| 95 | -WARNING: issue-335a.pdf (trailer, offset 261): unknown token while reading object; treating as string | |
| 96 | -WARNING: issue-335a.pdf (trailer, offset 278): unknown token while reading object; treating as string | |
| 97 | -WARNING: issue-335a.pdf (trailer, offset 279): unexpected ) | |
| 98 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 99 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 100 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 101 | -WARNING: issue-335a.pdf (trailer, offset 285): unexpected ) | |
| 102 | -WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object | |
| 103 | -WARNING: issue-335a.pdf (trailer, offset 276): treating unexpected brace token as null | |
| 104 | -WARNING: issue-335a.pdf (trailer, offset 277): unexpected ) | |
| 105 | -WARNING: issue-335a.pdf (trailer, offset 278): unknown token while reading object; treating as string | |
| 106 | -WARNING: issue-335a.pdf (trailer, offset 279): unexpected ) | |
| 107 | -WARNING: issue-335a.pdf (trailer, offset 280): unexpected ) | |
| 108 | -WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2 | |
| 109 | -WARNING: issue-335a.pdf (trailer, offset 284): unexpected ) | |
| 110 | -WARNING: issue-335a.pdf (trailer, offset 284): too many errors; giving up on reading object | |
| 111 | -WARNING: issue-335a.pdf (trailer, offset 299): unknown token while reading object; treating as string | |
| 112 | -WARNING: issue-335a.pdf (trailer, offset 315): unexpected ) | |
| 113 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 114 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 115 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 116 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 117 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 118 | -WARNING: issue-335a.pdf (trailer, offset 313): treating unexpected brace token as null | |
| 119 | -WARNING: issue-335a.pdf (trailer, offset 314): unexpected ) | |
| 120 | -WARNING: issue-335a.pdf (trailer, offset 315): unexpected ) | |
| 121 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 122 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 123 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 124 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 125 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 126 | -WARNING: issue-335a.pdf (trailer, offset 329): unknown token while reading object; treating as string | |
| 127 | -WARNING: issue-335a.pdf (trailer, offset 403): unexpected ) | |
| 128 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 129 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 130 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 131 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 132 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 133 | -WARNING: issue-335a.pdf (trailer, offset 361): unknown token while reading object; treating as string | |
| 134 | -WARNING: issue-335a.pdf (trailer, offset 379): unknown token while reading object; treating as string | |
| 135 | -WARNING: issue-335a.pdf (trailer, offset 380): unexpected ) | |
| 136 | -WARNING: issue-335a.pdf (trailer, offset 381): unexpected ) | |
| 137 | -WARNING: issue-335a.pdf (trailer, offset 403): unexpected ) | |
| 138 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 139 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 140 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 141 | -WARNING: issue-335a.pdf (trailer, offset 377): treating unexpected brace token as null | |
| 142 | -WARNING: issue-335a.pdf (trailer, offset 378): unexpected ) | |
| 143 | -WARNING: issue-335a.pdf (trailer, offset 379): unknown token while reading object; treating as string | |
| 144 | -WARNING: issue-335a.pdf (trailer, offset 380): unexpected ) | |
| 145 | -WARNING: issue-335a.pdf (trailer, offset 381): unexpected ) | |
| 146 | -WARNING: issue-335a.pdf (trailer, offset 403): unexpected ) | |
| 147 | -WARNING: issue-335a.pdf (trailer, offset 403): too many errors; giving up on reading object | |
| 148 | -WARNING: issue-335a.pdf (trailer, offset 395): unknown token while reading object; treating as string | |
| 149 | -WARNING: issue-335a.pdf (trailer, offset 401): unknown token while reading object; treating as string | |
| 150 | -WARNING: issue-335a.pdf (trailer, offset 402): unexpected ) | |
| 151 | -WARNING: issue-335a.pdf (trailer, offset 403): unexpected ) | |
| 152 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 153 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 154 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 155 | -WARNING: issue-335a.pdf (trailer, offset 417): unknown token while reading object; treating as string | |
| 156 | -WARNING: issue-335a.pdf (trailer, offset 433): unexpected ) | |
| 157 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 158 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 159 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 160 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 161 | -WARNING: issue-335a.pdf (trailer, offset 601): unexpected ) | |
| 162 | -WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object | |
| 163 | -WARNING: issue-335a.pdf (trailer, offset 431): treating unexpected brace token as null | |
| 164 | -WARNING: issue-335a.pdf (trailer, offset 432): unexpected ) | |
| 165 | -WARNING: issue-335a.pdf (trailer, offset 433): unexpected ) | |
| 166 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 167 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 168 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 169 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 170 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 171 | -WARNING: issue-335a.pdf (trailer, offset 447): unknown token while reading object; treating as string | |
| 172 | -WARNING: issue-335a.pdf (trailer, offset 450): unknown token while reading object; treating as string | |
| 173 | -WARNING: issue-335a.pdf (trailer, offset 461): invalid character (<) in hexstring | |
| 174 | -WARNING: issue-335a.pdf (trailer, offset 464): invalid character (ยจ) in hexstring | |
| 175 | -WARNING: issue-335a.pdf (trailer, offset 499): unexpected ) | |
| 176 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 177 | -WARNING: issue-335a.pdf (trailer, offset 563): too many errors; giving up on reading object | |
| 178 | -WARNING: issue-335a.pdf (trailer, offset 461): invalid character (<) in hexstring | |
| 179 | -WARNING: issue-335a.pdf (trailer, offset 479): unknown token while reading object; treating as string | |
| 180 | -WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string | |
| 181 | -WARNING: issue-335a.pdf (trailer, offset 498): unexpected ) | |
| 182 | -WARNING: issue-335a.pdf (trailer, offset 499): unexpected ) | |
| 183 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 184 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 185 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 186 | -WARNING: issue-335a.pdf (trailer, offset 495): treating unexpected brace token as null | |
| 187 | -WARNING: issue-335a.pdf (trailer, offset 496): unexpected ) | |
| 188 | -WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string | |
| 189 | -WARNING: issue-335a.pdf (trailer, offset 498): unexpected ) | |
| 190 | -WARNING: issue-335a.pdf (trailer, offset 499): unexpected ) | |
| 191 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 192 | -WARNING: issue-335a.pdf (trailer, offset 563): too many errors; giving up on reading object | |
| 193 | -WARNING: issue-335a.pdf (trailer, offset 513): unknown token while reading object; treating as string | |
| 194 | -WARNING: issue-335a.pdf (trailer, offset 529): unexpected ) | |
| 195 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 196 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 197 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 198 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 199 | -WARNING: issue-335a.pdf (trailer, offset 601): unexpected ) | |
| 200 | -WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object | |
| 201 | -WARNING: issue-335a.pdf (trailer, offset 527): treating unexpected brace token as null | |
| 202 | -WARNING: issue-335a.pdf (trailer, offset 528): unexpected ) | |
| 203 | -WARNING: issue-335a.pdf (trailer, offset 529): unexpected ) | |
| 204 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 205 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 206 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 207 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 208 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 209 | -WARNING: issue-335a.pdf (trailer, offset 543): unknown token while reading object; treating as string | |
| 210 | -WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string | |
| 211 | -WARNING: issue-335a.pdf (trailer, offset 562): unexpected ) | |
| 212 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 213 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 214 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 215 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 216 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 217 | -WARNING: issue-335a.pdf (trailer, offset 559): treating unexpected brace token as null | |
| 218 | -WARNING: issue-335a.pdf (trailer, offset 560): unexpected ) | |
| 219 | -WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string | |
| 220 | -WARNING: issue-335a.pdf (trailer, offset 562): unexpected ) | |
| 221 | -WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 222 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 223 | -WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 224 | -WARNING: issue-335a.pdf (trailer, offset 577): unknown token while reading object; treating as string | |
| 225 | -WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string | |
| 226 | -WARNING: issue-335a.pdf (trailer, offset 595): unexpected ) | |
| 227 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 228 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 229 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 230 | -WARNING: issue-335a.pdf (trailer, offset 601): unexpected ) | |
| 231 | -WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object | |
| 232 | -WARNING: issue-335a.pdf (trailer, offset 592): treating unexpected brace token as null | |
| 233 | -WARNING: issue-335a.pdf (trailer, offset 593): unexpected ) | |
| 234 | -WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string | |
| 235 | -WARNING: issue-335a.pdf (trailer, offset 595): unexpected ) | |
| 236 | -WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 237 | -WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 238 | -WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 239 | -WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 240 | -WARNING: issue-335a.pdf (trailer, offset 629): unknown token while reading object; treating as string | |
| 241 | -WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string | |
| 242 | -WARNING: issue-335a.pdf (trailer, offset 647): unexpected ) | |
| 243 | -WARNING: issue-335a.pdf (trailer, offset 648): unexpected ) | |
| 244 | -WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2 | |
| 245 | -WARNING: issue-335a.pdf (trailer, offset 652): unexpected ) | |
| 246 | -WARNING: issue-335a.pdf (trailer, offset 653): unexpected ) | |
| 247 | -WARNING: issue-335a.pdf (trailer, offset 653): too many errors; giving up on reading object | |
| 248 | -WARNING: issue-335a.pdf (trailer, offset 644): treating unexpected brace token as null | |
| 249 | -WARNING: issue-335a.pdf (trailer, offset 645): unexpected ) | |
| 250 | -WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string | |
| 251 | -WARNING: issue-335a.pdf (trailer, offset 647): unexpected ) | |
| 252 | -WARNING: issue-335a.pdf (trailer, offset 648): unexpected ) | |
| 253 | -WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2 | |
| 254 | -WARNING: issue-335a.pdf (trailer, offset 652): unexpected ) | |
| 255 | -WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object | |
| 256 | -WARNING: issue-335a.pdf (trailer, offset 667): unknown token while reading object; treating as string | |
| 257 | -WARNING: issue-335a.pdf (trailer, offset 683): unexpected ) | |
| 258 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 259 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 260 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 261 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 262 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 263 | -WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 264 | -WARNING: issue-335a.pdf (trailer, offset 681): treating unexpected brace token as null | |
| 265 | -WARNING: issue-335a.pdf (trailer, offset 682): unexpected ) | |
| 266 | -WARNING: issue-335a.pdf (trailer, offset 683): unexpected ) | |
| 267 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 268 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 269 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 270 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 271 | -WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 272 | -WARNING: issue-335a.pdf (trailer, offset 697): unknown token while reading object; treating as string | |
| 273 | -WARNING: issue-335a.pdf (trailer, offset 758): unexpected ) | |
| 274 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 275 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 276 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 277 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 278 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 279 | -WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 280 | -WARNING: issue-335a.pdf (trailer, offset 711): invalid character (<) in hexstring | |
| 281 | -WARNING: issue-335a.pdf (trailer, offset 753): treating unexpected brace token as null | |
| 282 | -WARNING: issue-335a.pdf (trailer, offset 754): unexpected ) | |
| 283 | -WARNING: issue-335a.pdf (trailer, offset 755): unknown token while reading object; treating as string | |
| 284 | -WARNING: issue-335a.pdf (trailer, offset 756): unexpected ) | |
| 285 | -WARNING: issue-335a.pdf (trailer, offset 757): unexpected ) | |
| 286 | -WARNING: issue-335a.pdf (trailer, offset 758): unexpected ) | |
| 287 | -WARNING: issue-335a.pdf (trailer, offset 758): too many errors; giving up on reading object | |
| 288 | -WARNING: issue-335a.pdf (trailer, offset 772): unknown token while reading object; treating as string | |
| 289 | -WARNING: issue-335a.pdf (trailer, offset 788): unexpected ) | |
| 290 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 291 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 292 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 293 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 294 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 295 | -WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 296 | -WARNING: issue-335a.pdf (trailer, offset 786): treating unexpected brace token as null | |
| 297 | -WARNING: issue-335a.pdf (trailer, offset 787): unexpected ) | |
| 298 | -WARNING: issue-335a.pdf (trailer, offset 788): unexpected ) | |
| 299 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 300 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 301 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 302 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 303 | -WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 304 | -WARNING: issue-335a.pdf (trailer, offset 802): unknown token while reading object; treating as string | |
| 305 | -WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string | |
| 306 | -WARNING: issue-335a.pdf (trailer, offset 820): unexpected ) | |
| 307 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 308 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 309 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 310 | -WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 311 | -WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 312 | -WARNING: issue-335a.pdf (trailer, offset 817): treating unexpected brace token as null | |
| 313 | -WARNING: issue-335a.pdf (trailer, offset 818): unexpected ) | |
| 314 | -WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string | |
| 315 | -WARNING: issue-335a.pdf (trailer, offset 820): unexpected ) | |
| 316 | -WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 317 | -WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 318 | -WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 319 | -WARNING: issue-335a.pdf (trailer, offset 825): too many errors; giving up on reading object | |
| 320 | -WARNING: issue-335a.pdf (trailer, offset 840): unknown token while reading object; treating as string | |
| 321 | -WARNING: issue-335a.pdf (trailer, offset 856): unexpected ) | |
| 322 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 323 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 324 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 325 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 326 | -WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 327 | -WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object | |
| 328 | -WARNING: issue-335a.pdf (trailer, offset 854): treating unexpected brace token as null | |
| 329 | -WARNING: issue-335a.pdf (trailer, offset 855): unexpected ) | |
| 330 | -WARNING: issue-335a.pdf (trailer, offset 856): unexpected ) | |
| 331 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 332 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 333 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 334 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 335 | -WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 336 | -WARNING: issue-335a.pdf (trailer, offset 870): unknown token while reading object; treating as string | |
| 337 | -WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 338 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 339 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 340 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 341 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 342 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 343 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 344 | -WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 345 | -WARNING: issue-335a.pdf (trailer, offset 902): unknown token while reading object; treating as string | |
| 346 | -WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string | |
| 347 | -WARNING: issue-335a.pdf (trailer, offset 921): unexpected ) | |
| 348 | -WARNING: issue-335a.pdf (trailer, offset 922): unexpected ) | |
| 349 | -WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 350 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 351 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 352 | -WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object | |
| 353 | -WARNING: issue-335a.pdf (trailer, offset 918): treating unexpected brace token as null | |
| 354 | -WARNING: issue-335a.pdf (trailer, offset 919): unexpected ) | |
| 355 | -WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string | |
| 356 | -WARNING: issue-335a.pdf (trailer, offset 921): unexpected ) | |
| 357 | -WARNING: issue-335a.pdf (trailer, offset 922): unexpected ) | |
| 358 | -WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 359 | -WARNING: issue-335a.pdf (trailer, offset 953): too many errors; giving up on reading object | |
| 360 | -WARNING: issue-335a.pdf (trailer, offset 936): unknown token while reading object; treating as string | |
| 361 | -WARNING: issue-335a.pdf (trailer, offset 952): unexpected ) | |
| 362 | -WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 363 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 364 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 365 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 366 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 367 | -WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object | |
| 368 | -WARNING: issue-335a.pdf (trailer, offset 950): treating unexpected brace token as null | |
| 369 | -WARNING: issue-335a.pdf (trailer, offset 951): unexpected ) | |
| 370 | -WARNING: issue-335a.pdf (trailer, offset 952): unexpected ) | |
| 371 | -WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 372 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 373 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 374 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 375 | -WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 376 | -WARNING: issue-335a.pdf (trailer, offset 980): treating unexpected brace token as null | |
| 377 | -WARNING: issue-335a.pdf (trailer, offset 981): unexpected ) | |
| 378 | -WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 379 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 380 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 381 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 382 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 383 | -WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object | |
| 384 | -WARNING: issue-335a.pdf (trailer, offset 995): unknown token while reading object; treating as string | |
| 385 | -WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string | |
| 386 | -WARNING: issue-335a.pdf (trailer, offset 1013): unexpected ) | |
| 387 | -WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 388 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 389 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 390 | -WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 391 | -WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 392 | -WARNING: issue-335a.pdf (trailer, offset 1010): treating unexpected brace token as null | |
| 393 | -WARNING: issue-335a.pdf (trailer, offset 1011): unexpected ) | |
| 394 | -WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string | |
| 395 | -WARNING: issue-335a.pdf (trailer, offset 1013): unexpected ) | |
| 396 | -WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 397 | -WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 398 | -WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 399 | -WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object | |
| 400 | -WARNING: issue-335a.pdf (trailer, offset 1033): unknown token while reading object; treating as string | |
| 401 | -WARNING: issue-335a.pdf (trailer, offset 1049): unexpected ) | |
| 402 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 403 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 404 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 405 | -WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 406 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 407 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 408 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 409 | -WARNING: issue-335a.pdf (trailer, offset 1332): too many errors; giving up on reading object | |
| 410 | -WARNING: issue-335a.pdf (trailer, offset 1047): treating unexpected brace token as null | |
| 411 | -WARNING: issue-335a.pdf (trailer, offset 1048): unexpected ) | |
| 412 | -WARNING: issue-335a.pdf (trailer, offset 1049): unexpected ) | |
| 413 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 414 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 415 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 416 | -WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 417 | -WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object | |
| 418 | -WARNING: issue-335a.pdf (trailer, offset 1159): treating unexpected brace token as null | |
| 419 | -WARNING: issue-335a.pdf (trailer, offset 1160): unexpected ) | |
| 420 | -WARNING: issue-335a.pdf (trailer, offset 1161): unknown token while reading object; treating as string | |
| 421 | -WARNING: issue-335a.pdf (trailer, offset 1162): unexpected ) | |
| 422 | -WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 423 | -WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 424 | -WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 425 | -WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 426 | -WARNING: issue-335a.pdf (trailer, offset 1182): unknown token while reading object; treating as string | |
| 427 | -WARNING: issue-335a.pdf (trailer, offset 1198): unexpected ) | |
| 428 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 429 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 430 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 431 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 432 | -WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 433 | -WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 434 | -WARNING: issue-335a.pdf (trailer, offset 1196): treating unexpected brace token as null | |
| 435 | -WARNING: issue-335a.pdf (trailer, offset 1197): unexpected ) | |
| 436 | -WARNING: issue-335a.pdf (trailer, offset 1198): unexpected ) | |
| 437 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 438 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 439 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 440 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 441 | -WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 442 | -WARNING: issue-335a.pdf (trailer, offset 1212): unknown token while reading object; treating as string | |
| 443 | -WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 444 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 445 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 446 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 447 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 448 | -WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 449 | -WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 450 | -WARNING: issue-335a.pdf (trailer, offset 1226): invalid character (<) in hexstring | |
| 451 | -WARNING: issue-335a.pdf (trailer, offset 1244): unknown token while reading object; treating as string | |
| 452 | -WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string | |
| 453 | -WARNING: issue-335a.pdf (trailer, offset 1263): unexpected ) | |
| 454 | -WARNING: issue-335a.pdf (trailer, offset 1264): unexpected ) | |
| 455 | -WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 456 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 457 | -WARNING: issue-335a.pdf (trailer, offset 1328): too many errors; giving up on reading object | |
| 458 | -WARNING: issue-335a.pdf (trailer, offset 1260): treating unexpected brace token as null | |
| 459 | -WARNING: issue-335a.pdf (trailer, offset 1261): unexpected ) | |
| 460 | -WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string | |
| 461 | -WARNING: issue-335a.pdf (trailer, offset 1263): unexpected ) | |
| 462 | -WARNING: issue-335a.pdf (trailer, offset 1264): unexpected ) | |
| 463 | -WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 464 | -WARNING: issue-335a.pdf (trailer, offset 1265): too many errors; giving up on reading object | |
| 465 | -WARNING: issue-335a.pdf (trailer, offset 1279): unknown token while reading object; treating as string | |
| 466 | -WARNING: issue-335a.pdf (trailer, offset 1295): unexpected ) | |
| 467 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 468 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 469 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 470 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 471 | -WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 472 | -WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 473 | -WARNING: issue-335a.pdf (trailer, offset 1293): treating unexpected brace token as null | |
| 474 | -WARNING: issue-335a.pdf (trailer, offset 1294): unexpected ) | |
| 475 | -WARNING: issue-335a.pdf (trailer, offset 1295): unexpected ) | |
| 476 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 477 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 478 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 479 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 480 | -WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 481 | -WARNING: issue-335a.pdf (trailer, offset 1309): unknown token while reading object; treating as string | |
| 482 | -WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string | |
| 483 | -WARNING: issue-335a.pdf (trailer, offset 1327): unexpected ) | |
| 484 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 485 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 486 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 487 | -WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 488 | -WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 489 | -WARNING: issue-335a.pdf (trailer, offset 1324): treating unexpected brace token as null | |
| 490 | -WARNING: issue-335a.pdf (trailer, offset 1325): unexpected ) | |
| 491 | -WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string | |
| 492 | -WARNING: issue-335a.pdf (trailer, offset 1327): unexpected ) | |
| 493 | -WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 494 | -WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 495 | -WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 496 | -WARNING: issue-335a.pdf (trailer, offset 1332): too many errors; giving up on reading object | |
| 497 | -WARNING: issue-335a.pdf (trailer, offset 1358): unknown token while reading object; treating as string | |
| 498 | -WARNING: issue-335a.pdf (trailer, offset 1395): unexpected ) | |
| 499 | -WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 500 | -WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 501 | -WARNING: issue-335a.pdf (trailer, offset 1436): unexpected ) | |
| 502 | -WARNING: issue-335a.pdf (trailer, offset 1437): unexpected ) | |
| 503 | -WARNING: issue-335a.pdf (trailer, offset 1437): too many errors; giving up on reading object | |
| 504 | -WARNING: issue-335a.pdf (trailer, offset 1372): invalid character (<) in hexstring | |
| 505 | -WARNING: issue-335a.pdf (trailer, offset 1390): invalid character ({) in hexstring | |
| 506 | -WARNING: issue-335a.pdf (trailer, offset 1392): unexpected ) | |
| 507 | -WARNING: issue-335a.pdf (trailer, offset 1393): unknown token while reading object; treating as string | |
| 508 | -WARNING: issue-335a.pdf (trailer, offset 1394): unexpected ) | |
| 509 | -WARNING: issue-335a.pdf (trailer, offset 1395): unexpected ) | |
| 510 | -WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 511 | -WARNING: issue-335a.pdf (trailer, offset 1428): too many errors; giving up on reading object | |
| 512 | -WARNING: issue-335a.pdf (trailer, offset 1409): unknown token while reading object; treating as string | |
| 513 | -WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string | |
| 514 | -WARNING: issue-335a.pdf (trailer, offset 1427): unexpected ) | |
| 515 | -WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 516 | -WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 517 | -WARNING: issue-335a.pdf (trailer, offset 1436): unexpected ) | |
| 518 | -WARNING: issue-335a.pdf (trailer, offset 1436): too many errors; giving up on reading object | |
| 519 | -WARNING: issue-335a.pdf (trailer, offset 1424): treating unexpected brace token as null | |
| 520 | -WARNING: issue-335a.pdf (trailer, offset 1425): unexpected ) | |
| 521 | -WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string | |
| 522 | -WARNING: issue-335a.pdf (trailer, offset 1427): unexpected ) | |
| 523 | -WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 524 | -WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 525 | -WARNING: issue-335a.pdf (trailer, offset 1434): too many errors; giving up on reading object | |
| 526 | -WARNING: issue-335a.pdf (trailer, offset 1454): unknown token while reading object; treating as string | |
| 527 | -WARNING: issue-335a.pdf (trailer, offset 1473): unexpected ) | |
| 528 | -WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 529 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 530 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 531 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 532 | -WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 533 | -WARNING: issue-335a.pdf (trailer, offset 1487): unknown token while reading object; treating as string | |
| 534 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 535 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 536 | -WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 537 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 538 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 539 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 540 | -WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 541 | -WARNING: issue-335a.pdf (trailer, offset 1503): treating unexpected brace token as null | |
| 542 | -WARNING: issue-335a.pdf (trailer, offset 1504): unknown token while reading object; treating as string | |
| 543 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 544 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 545 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 546 | -WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 547 | -WARNING: issue-335a.pdf (trailer, offset 1713): too many errors; giving up on reading object | |
| 548 | -WARNING: issue-335a.pdf (trailer, offset 1519): unknown token while reading object; treating as string | |
| 549 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 550 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 551 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 552 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 553 | -WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 554 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 555 | -WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object | |
| 556 | -WARNING: issue-335a.pdf (trailer, offset 1533): invalid character (<) in hexstring | |
| 557 | -WARNING: issue-335a.pdf (trailer, offset 1551): unknown token while reading object; treating as string | |
| 558 | -WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string | |
| 559 | -WARNING: issue-335a.pdf (trailer, offset 1570): unexpected ) | |
| 560 | -WARNING: issue-335a.pdf (trailer, offset 1571): unexpected ) | |
| 561 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 562 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 563 | -WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object | |
| 564 | -WARNING: issue-335a.pdf (trailer, offset 1567): treating unexpected brace token as null | |
| 565 | -WARNING: issue-335a.pdf (trailer, offset 1568): unexpected ) | |
| 566 | -WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string | |
| 567 | -WARNING: issue-335a.pdf (trailer, offset 1570): unexpected ) | |
| 568 | -WARNING: issue-335a.pdf (trailer, offset 1571): unexpected ) | |
| 569 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 570 | -WARNING: issue-335a.pdf (trailer, offset 1671): too many errors; giving up on reading object | |
| 571 | -WARNING: issue-335a.pdf (trailer, offset 1585): unknown token while reading object; treating as string | |
| 572 | -WARNING: issue-335a.pdf (trailer, offset 1604): unexpected ) | |
| 573 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 574 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 575 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 576 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 577 | -WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 578 | -WARNING: issue-335a.pdf (trailer, offset 1621): unknown token while reading object; treating as string | |
| 579 | -WARNING: issue-335a.pdf (trailer, offset 1637): unexpected ) | |
| 580 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 581 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 582 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 583 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 584 | -WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 585 | -WARNING: issue-335a.pdf (trailer, offset 1635): treating unexpected brace token as null | |
| 586 | -WARNING: issue-335a.pdf (trailer, offset 1636): unexpected ) | |
| 587 | -WARNING: issue-335a.pdf (trailer, offset 1637): unexpected ) | |
| 588 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 589 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 590 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 591 | -WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 592 | -WARNING: issue-335a.pdf (trailer, offset 1651): unknown token while reading object; treating as string | |
| 593 | -WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string | |
| 594 | -WARNING: issue-335a.pdf (trailer, offset 1670): unexpected ) | |
| 595 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 596 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 597 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 598 | -WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 599 | -WARNING: issue-335a.pdf (trailer, offset 1667): treating unexpected brace token as null | |
| 600 | -WARNING: issue-335a.pdf (trailer, offset 1668): unexpected ) | |
| 601 | -WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string | |
| 602 | -WARNING: issue-335a.pdf (trailer, offset 1670): unexpected ) | |
| 603 | -WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 604 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 605 | -WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object | |
| 606 | -WARNING: issue-335a.pdf (trailer, offset 1685): unknown token while reading object; treating as string | |
| 607 | -WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string | |
| 608 | -WARNING: issue-335a.pdf (trailer, offset 1703): unexpected ) | |
| 609 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 610 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 611 | -WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 612 | -WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 613 | -WARNING: issue-335a.pdf (trailer, offset 1700): treating unexpected brace token as null | |
| 614 | -WARNING: issue-335a.pdf (trailer, offset 1701): unexpected ) | |
| 615 | -WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string | |
| 616 | -WARNING: issue-335a.pdf (trailer, offset 1703): unexpected ) | |
| 617 | -WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 618 | -WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 619 | -WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 620 | -WARNING: issue-335a.pdf (trailer, offset 1730): unknown token while reading object; treating as string | |
| 621 | -WARNING: issue-335a.pdf (trailer, offset 1749): unexpected ) | |
| 622 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 623 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 624 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 625 | -WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 626 | -WARNING: issue-335a.pdf (trailer, offset 1763): unknown token while reading object; treating as string | |
| 627 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 628 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 629 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 630 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 631 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 632 | -WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 633 | -WARNING: issue-335a.pdf (trailer, offset 1779): treating unexpected brace token as null | |
| 634 | -WARNING: issue-335a.pdf (trailer, offset 1780): unknown token while reading object; treating as string | |
| 635 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 636 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 637 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 638 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 639 | -WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object | |
| 640 | -WARNING: issue-335a.pdf (trailer, offset 1795): unknown token while reading object; treating as string | |
| 641 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 642 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 643 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 644 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 645 | -WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 646 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 647 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 648 | -WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 649 | -WARNING: issue-335a.pdf (trailer, offset 1809): invalid character (<) in hexstring | |
| 650 | -WARNING: issue-335a.pdf (trailer, offset 1827): unknown token while reading object; treating as string | |
| 651 | -WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string | |
| 652 | -WARNING: issue-335a.pdf (trailer, offset 1846): unexpected ) | |
| 653 | -WARNING: issue-335a.pdf (trailer, offset 1847): unexpected ) | |
| 654 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 655 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 656 | -WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object | |
| 657 | -WARNING: issue-335a.pdf (trailer, offset 1843): treating unexpected brace token as null | |
| 658 | -WARNING: issue-335a.pdf (trailer, offset 1844): unexpected ) | |
| 659 | -WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string | |
| 660 | -WARNING: issue-335a.pdf (trailer, offset 1846): unexpected ) | |
| 661 | -WARNING: issue-335a.pdf (trailer, offset 1847): unexpected ) | |
| 662 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 663 | -WARNING: issue-335a.pdf (trailer, offset 1947): too many errors; giving up on reading object | |
| 664 | -WARNING: issue-335a.pdf (trailer, offset 1861): unknown token while reading object; treating as string | |
| 665 | -WARNING: issue-335a.pdf (trailer, offset 1880): unexpected ) | |
| 666 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 667 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 668 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 669 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 670 | -WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 671 | -WARNING: issue-335a.pdf (trailer, offset 1897): unknown token while reading object; treating as string | |
| 672 | -WARNING: issue-335a.pdf (trailer, offset 1913): unexpected ) | |
| 673 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 674 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 675 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 676 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 677 | -WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 678 | -WARNING: issue-335a.pdf (trailer, offset 1911): treating unexpected brace token as null | |
| 679 | -WARNING: issue-335a.pdf (trailer, offset 1912): unexpected ) | |
| 680 | -WARNING: issue-335a.pdf (trailer, offset 1913): unexpected ) | |
| 681 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 682 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 683 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 684 | -WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 685 | -WARNING: issue-335a.pdf (trailer, offset 1927): unknown token while reading object; treating as string | |
| 686 | -WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string | |
| 687 | -WARNING: issue-335a.pdf (trailer, offset 1946): unexpected ) | |
| 688 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 689 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 690 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 691 | -WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 692 | -WARNING: issue-335a.pdf (trailer, offset 1943): treating unexpected brace token as null | |
| 693 | -WARNING: issue-335a.pdf (trailer, offset 1944): unexpected ) | |
| 694 | -WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string | |
| 695 | -WARNING: issue-335a.pdf (trailer, offset 1946): unexpected ) | |
| 696 | -WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 697 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 698 | -WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object | |
| 699 | -WARNING: issue-335a.pdf (trailer, offset 1961): unknown token while reading object; treating as string | |
| 700 | -WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string | |
| 701 | -WARNING: issue-335a.pdf (trailer, offset 1979): unexpected ) | |
| 702 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 703 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 704 | -WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 705 | -WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 706 | -WARNING: issue-335a.pdf (trailer, offset 1976): treating unexpected brace token as null | |
| 707 | -WARNING: issue-335a.pdf (trailer, offset 1977): unexpected ) | |
| 708 | -WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string | |
| 709 | -WARNING: issue-335a.pdf (trailer, offset 1979): unexpected ) | |
| 710 | -WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 711 | -WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 712 | -WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 713 | -WARNING: issue-335a.pdf (trailer, offset 2006): unknown token while reading object; treating as string | |
| 714 | -WARNING: issue-335a.pdf (trailer, offset 2022): unexpected ) | |
| 715 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 716 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 717 | -WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string | |
| 718 | -WARNING: issue-335a.pdf (trailer, offset 3073): too many errors; giving up on reading object | |
| 719 | -WARNING: issue-335a.pdf (trailer, offset 2020): treating unexpected brace token as null | |
| 720 | -WARNING: issue-335a.pdf (trailer, offset 2021): unexpected ) | |
| 721 | -WARNING: issue-335a.pdf (trailer, offset 2022): unexpected ) | |
| 722 | -WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 723 | -WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 724 | -WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string | |
| 725 | -WARNING: issue-335a.pdf (trailer, offset 3073): too many errors; giving up on reading object | |
| 726 | -WARNING: issue-335a.pdf (trailer, offset 3585): treating unexpected brace token as null | |
| 727 | -WARNING: issue-335a.pdf (trailer, offset 3586): unknown token while reading object; treating as string | |
| 728 | -WARNING: issue-335a.pdf (trailer, offset 3588): unexpected ) | |
| 729 | -WARNING: issue-335a.pdf (trailer, offset 3589): unexpected ) | |
| 730 | -WARNING: issue-335a.pdf (trailer, offset 3602): unknown token while reading object; treating as string | |
| 731 | -WARNING: issue-335a.pdf (trailer, offset 3610): unknown token while reading object; treating as string | |
| 732 | -WARNING: issue-335a.pdf (trailer, offset 3610): too many errors; giving up on reading object | |
| 733 | -WARNING: issue-335a.pdf (trailer, offset 16485): unknown token while reading object; treating as string | |
| 734 | -WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 735 | -WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 736 | -WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 737 | -WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 738 | -WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string | |
| 739 | -WARNING: issue-335a.pdf (trailer, offset 16546): too many errors; giving up on reading object | |
| 740 | -WARNING: issue-335a.pdf (trailer, offset 16498): unknown token while reading object; treating as string | |
| 741 | -WARNING: issue-335a.pdf (trailer, offset 16513): unexpected ) | |
| 742 | -WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 743 | -WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 744 | -WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 745 | -WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 746 | -WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object | |
| 747 | -WARNING: issue-335a.pdf (trailer, offset 16511): unknown token while reading object; treating as string | |
| 748 | -WARNING: issue-335a.pdf (trailer, offset 16512): unexpected ) | |
| 749 | -WARNING: issue-335a.pdf (trailer, offset 16513): unexpected ) | |
| 750 | -WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 751 | -WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 752 | -WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 753 | -WARNING: issue-335a.pdf (trailer, offset 16530): too many errors; giving up on reading object | |
| 754 | -WARNING: issue-335a.pdf (trailer, offset 16526): unknown token while reading object; treating as string | |
| 755 | -WARNING: issue-335a.pdf (trailer, offset 16527): unexpected ) | |
| 756 | -WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 757 | -WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 758 | -WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 759 | -WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 760 | -WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object | |
| 761 | -WARNING: issue-335a.pdf (trailer, offset 16543): unknown token while reading object; treating as string | |
| 762 | -WARNING: issue-335a.pdf (trailer, offset 16544): unexpected ) | |
| 763 | -WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 764 | -WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string | |
| 765 | -WARNING: issue-335a.pdf (trailer, offset 16547): treating unexpected brace token as null | |
| 766 | -WARNING: issue-335a.pdf (trailer, offset 16548): unknown token while reading object; treating as string | |
| 767 | -WARNING: issue-335a.pdf (trailer, offset 16548): too many errors; giving up on reading object | |
| 768 | -WARNING: issue-335a.pdf (trailer, offset 16561): unknown token while reading object; treating as string | |
| 769 | -WARNING: issue-335a.pdf (trailer, offset 16562): unexpected ) | |
| 770 | -WARNING: issue-335a.pdf (trailer, offset 16563): unexpected ) | |
| 5 | +WARNING: issue-335a.pdf (trailer, offset 23508): unknown token while reading object; treating as string | |
| 6 | +WARNING: issue-335a.pdf (trailer, offset 23513): unexpected ) | |
| 7 | +WARNING: issue-335a.pdf (trailer, offset 23514): unexpected ) | |
| 8 | +WARNING: issue-335a.pdf (trailer, offset 23516): unknown token while reading object; treating as string | |
| 9 | +WARNING: issue-335a.pdf (trailer, offset 23518): invalid character (R) in hexstring | |
| 10 | +WARNING: issue-335a.pdf (trailer, offset 23525): unexpected > | |
| 11 | +WARNING: issue-335a.pdf (trailer, offset 23525): too many errors; giving up on reading object | |
| 12 | +WARNING: issue-335a.pdf (trailer, offset 23411): dictionary ended prematurely; using null as value for last key | |
| 13 | +WARNING: issue-335a.pdf (object 5 0, offset 23451): invalid character (รฟ) in hexstring | |
| 14 | +WARNING: issue-335a.pdf (object 5 0, offset 23458): unknown token while reading object; treating as string | |
| 15 | +WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 16 | +WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 17 | +WARNING: issue-335a.pdf (object 5 0, offset 23440): stream dictionary lacks /Length key | |
| 18 | +WARNING: issue-335a.pdf (object 5 0, offset 23485): attempting to recover stream length | |
| 19 | +WARNING: issue-335a.pdf (object 5 0, offset 23485): unable to recover stream data; treating stream as empty | |
| 20 | +WARNING: issue-335a.pdf (object 5 0, offset 24974): expected endobj | |
| 21 | +WARNING: issue-335a.pdf (object 5 0, offset 24974): EOF after endobj | |
| 22 | +WARNING: issue-335a.pdf (trailer, offset 23407): recovered trailer has no /Root entry | |
| 23 | +WARNING: issue-335a.pdf (trailer, offset 23108): unknown token while reading object; treating as string | |
| 24 | +WARNING: issue-335a.pdf (trailer, offset 23130): unknown token while reading object; treating as string | |
| 25 | +WARNING: issue-335a.pdf (trailer, offset 23147): unknown token while reading object; treating as string | |
| 26 | +WARNING: issue-335a.pdf (trailer, offset 23155): unknown token while reading object; treating as string | |
| 27 | +WARNING: issue-335a.pdf (trailer, offset 23196): unknown token while reading object; treating as string | |
| 28 | +WARNING: issue-335a.pdf (trailer, offset 23324): unknown token while reading object; treating as string | |
| 29 | +WARNING: issue-335a.pdf (trailer, offset 23324): too many errors; giving up on reading object | |
| 30 | +WARNING: issue-335a.pdf (trailer, offset 23098): invalid character (t) in hexstring | |
| 31 | +WARNING: issue-335a.pdf (trailer, offset 23101): unknown token while reading object; treating as string | |
| 32 | +WARNING: issue-335a.pdf (trailer, offset 23108): unknown token while reading object; treating as string | |
| 33 | +WARNING: issue-335a.pdf (trailer, offset 23130): unknown token while reading object; treating as string | |
| 34 | +WARNING: issue-335a.pdf (trailer, offset 23147): unknown token while reading object; treating as string | |
| 35 | +WARNING: issue-335a.pdf (trailer, offset 23155): unknown token while reading object; treating as string | |
| 36 | +WARNING: issue-335a.pdf (trailer, offset 23155): too many errors; giving up on reading object | |
| 37 | +WARNING: issue-335a.pdf (trailer, offset 22845): unknown token while reading object; treating as string | |
| 38 | +WARNING: issue-335a.pdf (trailer, offset 22869): unknown token while reading object; treating as string | |
| 39 | +WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 40 | +WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 41 | +WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake3 | |
| 42 | +WARNING: issue-335a.pdf (trailer, offset 22880): stream keyword found in trailer | |
| 43 | +WARNING: issue-335a.pdf (trailer, offset 22840): recovered trailer has no /Root entry | |
| 44 | +WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string | |
| 45 | +WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 46 | +WARNING: issue-335a.pdf (trailer, offset 22746): stream keyword found in trailer | |
| 47 | +WARNING: issue-335a.pdf (trailer, offset 22697): recovered trailer has no /Root entry | |
| 48 | +WARNING: issue-335a.pdf (trailer, offset 22687): unknown token while reading object; treating as string | |
| 49 | +WARNING: issue-335a.pdf (trailer, offset 22690): unknown token while reading object; treating as string | |
| 50 | +WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string | |
| 51 | +WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 52 | +WARNING: issue-335a.pdf (trailer, offset 22740): unknown token while reading object; treating as string | |
| 53 | +WARNING: issue-335a.pdf (trailer, offset 22748): unknown token while reading object; treating as string | |
| 54 | +WARNING: issue-335a.pdf (trailer, offset 22761): unknown token while reading object; treating as string | |
| 55 | +WARNING: issue-335a.pdf (trailer, offset 22791): unknown token while reading object; treating as string | |
| 56 | +WARNING: issue-335a.pdf (trailer, offset 22794): unexpected > | |
| 57 | +WARNING: issue-335a.pdf (trailer, offset 22794): too many errors; giving up on reading object | |
| 58 | +WARNING: issue-335a.pdf (trailer, offset 22650): unknown token while reading object; treating as string | |
| 59 | +WARNING: issue-335a.pdf (trailer, offset 22656): unknown token while reading object; treating as string | |
| 60 | +WARNING: issue-335a.pdf (trailer, offset 22675): unknown token while reading object; treating as string | |
| 61 | +WARNING: issue-335a.pdf (trailer, offset 22687): unknown token while reading object; treating as string | |
| 62 | +WARNING: issue-335a.pdf (trailer, offset 22690): unknown token while reading object; treating as string | |
| 63 | +WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string | |
| 64 | +WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 65 | +WARNING: issue-335a.pdf (trailer, offset 22740): unknown token while reading object; treating as string | |
| 66 | +WARNING: issue-335a.pdf (trailer, offset 22748): unknown token while reading object; treating as string | |
| 67 | +WARNING: issue-335a.pdf (trailer, offset 22761): unknown token while reading object; treating as string | |
| 68 | +WARNING: issue-335a.pdf (trailer, offset 22791): unknown token while reading object; treating as string | |
| 69 | +WARNING: issue-335a.pdf (trailer, offset 22794): unexpected > | |
| 70 | +WARNING: issue-335a.pdf (trailer, offset 22794): too many errors; giving up on reading object | |
| 71 | +WARNING: issue-335a.pdf (trailer, offset 22437): unknown token while reading object; treating as string | |
| 72 | +WARNING: issue-335a.pdf (trailer, offset 22436): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 73 | +WARNING: issue-335a.pdf (trailer, offset 22482): stream keyword found in trailer | |
| 74 | +WARNING: issue-335a.pdf (trailer, offset 22432): recovered trailer has no /Root entry | |
| 75 | +WARNING: issue-335a.pdf (trailer, offset 22327): unknown token while reading object; treating as string | |
| 76 | +WARNING: issue-335a.pdf (trailer, offset 22336): unknown token while reading object; treating as string | |
| 77 | +WARNING: issue-335a.pdf (trailer, offset 22338): unknown token while reading object; treating as string | |
| 78 | +WARNING: issue-335a.pdf (trailer, offset 22355): unknown token while reading object; treating as string | |
| 79 | +WARNING: issue-335a.pdf (trailer, offset 22360): unknown token while reading object; treating as string | |
| 80 | +WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 81 | +WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 82 | +WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake3 | |
| 83 | +WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake4 | |
| 84 | +WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake5 | |
| 85 | +WARNING: issue-335a.pdf (trailer, offset 22371): stream keyword found in trailer | |
| 86 | +WARNING: issue-335a.pdf (trailer, offset 22322): recovered trailer has no /Root entry | |
| 87 | +WARNING: issue-335a.pdf (trailer, offset 22202): unknown token while reading object; treating as string | |
| 88 | +WARNING: issue-335a.pdf (trailer, offset 22218): unknown token while reading object; treating as string | |
| 89 | +WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 90 | +WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 91 | +WARNING: issue-335a.pdf (trailer, offset 22236): stream keyword found in trailer | |
| 92 | +WARNING: issue-335a.pdf (trailer, offset 22197): recovered trailer has no /Root entry | |
| 93 | +WARNING: issue-335a.pdf (trailer, offset 22178): unknown token while reading object; treating as string | |
| 94 | +WARNING: issue-335a.pdf (trailer, offset 22190): unknown token while reading object; treating as string | |
| 95 | +WARNING: issue-335a.pdf (trailer, offset 22202): unknown token while reading object; treating as string | |
| 96 | +WARNING: issue-335a.pdf (trailer, offset 22218): unknown token while reading object; treating as string | |
| 97 | +WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 98 | +WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 99 | +WARNING: issue-335a.pdf (trailer, offset 22230): unknown token while reading object; treating as string | |
| 100 | +WARNING: issue-335a.pdf (trailer, offset 22238): unknown token while reading object; treating as string | |
| 101 | +WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 102 | +WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 103 | +WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake3 | |
| 104 | +WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake4 | |
| 105 | +WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake5 | |
| 106 | +WARNING: issue-335a.pdf (trailer, offset 22275): stream keyword found in trailer | |
| 107 | +WARNING: issue-335a.pdf (trailer, offset 22173): recovered trailer has no /Root entry | |
| 108 | +WARNING: issue-335a.pdf (trailer, offset 22088): unknown token while reading object; treating as string | |
| 109 | +WARNING: issue-335a.pdf (trailer, offset 22087): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 110 | +WARNING: issue-335a.pdf (trailer, offset 22134): stream keyword found in trailer | |
| 111 | +WARNING: issue-335a.pdf (trailer, offset 22083): recovered trailer has no /Root entry | |
| 112 | +WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring | |
| 113 | +WARNING: issue-335a.pdf (trailer, offset 21937): unknown token while reading object; treating as string | |
| 114 | +WARNING: issue-335a.pdf (trailer, offset 21962): unknown token while reading object; treating as string | |
| 115 | +WARNING: issue-335a.pdf (trailer, offset 21991): unknown token while reading object; treating as string | |
| 116 | +WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring | |
| 117 | +WARNING: issue-335a.pdf (trailer, offset 22003): unknown token while reading object; treating as string | |
| 118 | +WARNING: issue-335a.pdf (trailer, offset 21936): dictionary has duplicated key /Length; last occurrence overrides earlier ones | |
| 119 | +WARNING: issue-335a.pdf (trailer, offset 22028): unexpected > | |
| 120 | +WARNING: issue-335a.pdf (trailer, offset 22030): unknown token while reading object; treating as string | |
| 121 | +WARNING: issue-335a.pdf (trailer, offset 22038): unknown token while reading object; treating as string | |
| 122 | +WARNING: issue-335a.pdf (trailer, offset 22038): too many errors; giving up on reading object | |
| 123 | +WARNING: issue-335a.pdf (trailer, offset 21918): unknown token while reading object; treating as string | |
| 124 | +WARNING: issue-335a.pdf (trailer, offset 21925): unknown token while reading object; treating as string | |
| 125 | +WARNING: issue-335a.pdf (trailer, offset 21937): unknown token while reading object; treating as string | |
| 126 | +WARNING: issue-335a.pdf (trailer, offset 21962): unknown token while reading object; treating as string | |
| 127 | +WARNING: issue-335a.pdf (trailer, offset 21991): unknown token while reading object; treating as string | |
| 128 | +WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring | |
| 129 | +WARNING: issue-335a.pdf (trailer, offset 22003): unknown token while reading object; treating as string | |
| 130 | +WARNING: issue-335a.pdf (trailer, offset 21936): dictionary has duplicated key /Length; last occurrence overrides earlier ones | |
| 131 | +WARNING: issue-335a.pdf (trailer, offset 22028): unexpected > | |
| 132 | +WARNING: issue-335a.pdf (trailer, offset 22030): unknown token while reading object; treating as string | |
| 133 | +WARNING: issue-335a.pdf (trailer, offset 22030): too many errors; giving up on reading object | |
| 134 | +WARNING: issue-335a.pdf (trailer, offset 21837): unknown token while reading object; treating as string | |
| 135 | +WARNING: issue-335a.pdf (trailer, offset 21850): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 136 | +WARNING: issue-335a.pdf (trailer, offset 21892): unknown token while reading object; treating as string | |
| 137 | +WARNING: issue-335a.pdf (trailer, offset 21900): unknown token while reading object; treating as string | |
| 138 | +WARNING: issue-335a.pdf (trailer, offset 21903): unknown token while reading object; treating as string | |
| 139 | +WARNING: issue-335a.pdf (trailer, offset 21906): unknown token while reading object; treating as string | |
| 140 | +WARNING: issue-335a.pdf (trailer, offset 21918): unknown token while reading object; treating as string | |
| 141 | +WARNING: issue-335a.pdf (trailer, offset 21925): unknown token while reading object; treating as string | |
| 142 | +WARNING: issue-335a.pdf (trailer, offset 21925): too many errors; giving up on reading object | |
| 143 | +WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring | |
| 144 | +WARNING: issue-335a.pdf (trailer, offset 21436): stream keyword found in trailer | |
| 145 | +WARNING: issue-335a.pdf (trailer, offset 21407): recovered trailer has no /Root entry | |
| 146 | +WARNING: issue-335a.pdf (trailer, offset 21287): unknown token while reading object; treating as string | |
| 147 | +WARNING: issue-335a.pdf (trailer, offset 21389): unexpected dictionary close token | |
| 148 | +WARNING: issue-335a.pdf (trailer, offset 21392): unknown token while reading object; treating as string | |
| 149 | +WARNING: issue-335a.pdf (trailer, offset 21400): unknown token while reading object; treating as string | |
| 150 | +WARNING: issue-335a.pdf (trailer, offset 21430): unknown token while reading object; treating as string | |
| 151 | +WARNING: issue-335a.pdf (trailer, offset 21438): unknown token while reading object; treating as string | |
| 152 | +WARNING: issue-335a.pdf (trailer, offset 21441): unknown token while reading object; treating as string | |
| 153 | +WARNING: issue-335a.pdf (trailer, offset 21444): unknown token while reading object; treating as string | |
| 154 | +WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring | |
| 155 | +WARNING: issue-335a.pdf (trailer, offset 21819): unknown token while reading object; treating as string | |
| 156 | +WARNING: issue-335a.pdf (trailer, offset 21819): too many errors; giving up on reading object | |
| 157 | +WARNING: issue-335a.pdf (trailer, offset 21277): unknown token while reading object; treating as string | |
| 158 | +WARNING: issue-335a.pdf (trailer, offset 21287): unknown token while reading object; treating as string | |
| 159 | +WARNING: issue-335a.pdf (trailer, offset 21389): unexpected dictionary close token | |
| 160 | +WARNING: issue-335a.pdf (trailer, offset 21392): unknown token while reading object; treating as string | |
| 161 | +WARNING: issue-335a.pdf (trailer, offset 21400): unknown token while reading object; treating as string | |
| 162 | +WARNING: issue-335a.pdf (trailer, offset 21430): unknown token while reading object; treating as string | |
| 163 | +WARNING: issue-335a.pdf (trailer, offset 21438): unknown token while reading object; treating as string | |
| 164 | +WARNING: issue-335a.pdf (trailer, offset 21441): unknown token while reading object; treating as string | |
| 165 | +WARNING: issue-335a.pdf (trailer, offset 21444): unknown token while reading object; treating as string | |
| 166 | +WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring | |
| 167 | +WARNING: issue-335a.pdf (trailer, offset 21819): unknown token while reading object; treating as string | |
| 168 | +WARNING: issue-335a.pdf (trailer, offset 21819): too many errors; giving up on reading object | |
| 169 | +WARNING: issue-335a.pdf (trailer, offset 21228): treating unexpected brace token as null | |
| 170 | +WARNING: issue-335a.pdf (trailer, offset 21229): unexpected ) | |
| 171 | +WARNING: issue-335a.pdf (trailer, offset 21230): unknown token while reading object; treating as string | |
| 172 | +WARNING: issue-335a.pdf (trailer, offset 21262): unknown token while reading object; treating as string | |
| 173 | +WARNING: issue-335a.pdf (trailer, offset 21267): unknown token while reading object; treating as string | |
| 174 | +WARNING: issue-335a.pdf (trailer, offset 21277): unknown token while reading object; treating as string | |
| 175 | +WARNING: issue-335a.pdf (trailer, offset 21277): too many errors; giving up on reading object | |
| 176 | +WARNING: issue-335a.pdf (trailer, offset 21172): unknown token while reading object; treating as string | |
| 177 | +WARNING: issue-335a.pdf (trailer, offset 21199): unknown token while reading object; treating as string | |
| 178 | +WARNING: issue-335a.pdf (trailer, offset 21201): unexpected ) | |
| 179 | +WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string | |
| 180 | +WARNING: issue-335a.pdf (trailer, offset 21205): treating unexpected brace token as null | |
| 181 | +WARNING: issue-335a.pdf (trailer, offset 21207): unknown token while reading object; treating as string | |
| 182 | +WARNING: issue-335a.pdf (trailer, offset 21207): too many errors; giving up on reading object | |
| 183 | +WARNING: issue-335a.pdf (trailer, offset 21154): treating unexpected brace token as null | |
| 184 | +WARNING: issue-335a.pdf (trailer, offset 21155): unexpected ) | |
| 185 | +WARNING: issue-335a.pdf (trailer, offset 21156): unknown token while reading object; treating as string | |
| 186 | +WARNING: issue-335a.pdf (trailer, offset 21157): unexpected ) | |
| 187 | +WARNING: issue-335a.pdf (trailer, offset 21158): unexpected ) | |
| 188 | +WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string | |
| 189 | +WARNING: issue-335a.pdf (trailer, offset 21202): too many errors; giving up on reading object | |
| 190 | +WARNING: issue-335a.pdf (trailer, offset 21132): unknown token while reading object; treating as string | |
| 191 | +WARNING: issue-335a.pdf (trailer, offset 21138): unknown token while reading object; treating as string | |
| 192 | +WARNING: issue-335a.pdf (trailer, offset 21156): unknown token while reading object; treating as string | |
| 193 | +WARNING: issue-335a.pdf (trailer, offset 21157): unexpected ) | |
| 194 | +WARNING: issue-335a.pdf (trailer, offset 21158): unexpected ) | |
| 195 | +WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string | |
| 196 | +WARNING: issue-335a.pdf (trailer, offset 21202): too many errors; giving up on reading object | |
| 197 | +WARNING: issue-335a.pdf (trailer, offset 21118): unknown token while reading object; treating as string | |
| 198 | +WARNING: issue-335a.pdf (trailer, offset 21158): unexpected ) | |
| 199 | +WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string | |
| 200 | +WARNING: issue-335a.pdf (trailer, offset 21205): treating unexpected brace token as null | |
| 201 | +WARNING: issue-335a.pdf (trailer, offset 21207): unknown token while reading object; treating as string | |
| 202 | +WARNING: issue-335a.pdf (trailer, offset 21212): unknown token while reading object; treating as string | |
| 203 | +WARNING: issue-335a.pdf (trailer, offset 21212): too many errors; giving up on reading object | |
| 204 | +WARNING: issue-335a.pdf (trailer, offset 21077): unexpected > | |
| 205 | +WARNING: issue-335a.pdf (trailer, offset 21085): unexpected > | |
| 206 | +WARNING: issue-335a.pdf (trailer, offset 21086): unknown token while reading object; treating as string | |
| 207 | +WARNING: issue-335a.pdf (trailer, offset 21088): unexpected > | |
| 208 | +WARNING: issue-335a.pdf (trailer, offset 21089): unknown token while reading object; treating as string | |
| 209 | +WARNING: issue-335a.pdf (trailer, offset 21100): treating unexpected brace token as null | |
| 210 | +WARNING: issue-335a.pdf (trailer, offset 21101): unexpected ) | |
| 211 | +WARNING: issue-335a.pdf (trailer, offset 21101): too many errors; giving up on reading object | |
| 212 | +WARNING: issue-335a.pdf (trailer, offset 21042): unknown token while reading object; treating as string | |
| 213 | +WARNING: issue-335a.pdf (trailer, offset 21026): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 214 | +WARNING: issue-335a.pdf (trailer, offset 21055): stream keyword found in trailer | |
| 215 | +WARNING: issue-335a.pdf (trailer, offset 21023): recovered trailer has no /Root entry | |
| 216 | +WARNING: issue-335a.pdf (trailer, offset 20949): unexpected > | |
| 217 | +WARNING: issue-335a.pdf (trailer, offset 20957): unexpected > | |
| 218 | +WARNING: issue-335a.pdf (trailer, offset 20958): unknown token while reading object; treating as string | |
| 219 | +WARNING: issue-335a.pdf (trailer, offset 20960): unexpected > | |
| 220 | +WARNING: issue-335a.pdf (trailer, offset 20961): unknown token while reading object; treating as string | |
| 221 | +WARNING: issue-335a.pdf (trailer, offset 20972): treating unexpected brace token as null | |
| 222 | +WARNING: issue-335a.pdf (trailer, offset 20973): unexpected ) | |
| 223 | +WARNING: issue-335a.pdf (trailer, offset 20973): too many errors; giving up on reading object | |
| 224 | +WARNING: issue-335a.pdf (trailer, offset 20914): unknown token while reading object; treating as string | |
| 225 | +WARNING: issue-335a.pdf (trailer, offset 20898): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 226 | +WARNING: issue-335a.pdf (trailer, offset 20927): stream keyword found in trailer | |
| 227 | +WARNING: issue-335a.pdf (trailer, offset 20895): recovered trailer has no /Root entry | |
| 228 | +WARNING: issue-335a.pdf (trailer, offset 20880): stream keyword found in trailer | |
| 229 | +WARNING: issue-335a.pdf (trailer, offset 20851): recovered trailer has no /Root entry | |
| 230 | +WARNING: issue-335a.pdf (trailer, offset 20812): unknown token while reading object; treating as string | |
| 231 | +WARNING: issue-335a.pdf (trailer, offset 20803): dictionary has duplicated key /Length; last occurrence overrides earlier ones | |
| 232 | +WARNING: issue-335a.pdf (trailer, offset 20803): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 233 | +WARNING: issue-335a.pdf (trailer, offset 20842): stream keyword found in trailer | |
| 234 | +WARNING: issue-335a.pdf (trailer, offset 20800): recovered trailer has no /Root entry | |
| 235 | +WARNING: issue-335a.pdf (trailer, offset 20785): stream keyword found in trailer | |
| 236 | +WARNING: issue-335a.pdf (trailer, offset 20756): recovered trailer has no /Root entry | |
| 237 | +WARNING: issue-335a.pdf (trailer, offset 20684): unknown token while reading object; treating as string | |
| 238 | +WARNING: issue-335a.pdf (trailer, offset 20683): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 239 | +WARNING: issue-335a.pdf (trailer, offset 20747): stream keyword found in trailer | |
| 240 | +WARNING: issue-335a.pdf (trailer, offset 20679): recovered trailer has no /Root entry | |
| 241 | +WARNING: issue-335a.pdf (trailer, offset 20598): unknown token while reading object; treating as string | |
| 242 | +WARNING: issue-335a.pdf (trailer, offset 20600): unexpected ) | |
| 243 | +WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 244 | +WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 245 | +WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 246 | +WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null | |
| 247 | +WARNING: issue-335a.pdf (trailer, offset 20606): too many errors; giving up on reading object | |
| 248 | +WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string | |
| 249 | +WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 250 | +WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 251 | +WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 252 | +WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null | |
| 253 | +WARNING: issue-335a.pdf (trailer, offset 20607): treating unexpected brace token as null | |
| 254 | +WARNING: issue-335a.pdf (trailer, offset 20607): too many errors; giving up on reading object | |
| 255 | +WARNING: issue-335a.pdf (trailer, offset 20424): unknown token while reading object; treating as string | |
| 256 | +WARNING: issue-335a.pdf (trailer, offset 20431): unknown token while reading object; treating as string | |
| 257 | +WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string | |
| 258 | +WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 259 | +WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 260 | +WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 261 | +WARNING: issue-335a.pdf (trailer, offset 20604): too many errors; giving up on reading object | |
| 262 | +WARNING: issue-335a.pdf (trailer, offset 20230): unknown token while reading object; treating as string | |
| 263 | +WARNING: issue-335a.pdf (trailer, offset 20232): unexpected ) | |
| 264 | +WARNING: issue-335a.pdf (trailer, offset 20233): unexpected ) | |
| 265 | +WARNING: issue-335a.pdf (trailer, offset 20234): unknown token while reading object; treating as string | |
| 266 | +WARNING: issue-335a.pdf (trailer, offset 20236): invalid character ({) in hexstring | |
| 267 | +WARNING: issue-335a.pdf (trailer, offset 20238): treating unexpected brace token as null | |
| 268 | +WARNING: issue-335a.pdf (trailer, offset 20238): too many errors; giving up on reading object | |
| 269 | +WARNING: issue-335a.pdf (trailer, offset 20164): unexpected > | |
| 270 | +WARNING: issue-335a.pdf (trailer, offset 20170): unknown token while reading object; treating as string | |
| 271 | +WARNING: issue-335a.pdf (trailer, offset 20173): unknown token while reading object; treating as string | |
| 272 | +WARNING: issue-335a.pdf (trailer, offset 20186): unknown token while reading object; treating as string | |
| 273 | +WARNING: issue-335a.pdf (trailer, offset 20189): unknown token while reading object; treating as string | |
| 274 | +WARNING: issue-335a.pdf (trailer, offset 20219): unknown token while reading object; treating as string | |
| 275 | +WARNING: issue-335a.pdf (trailer, offset 20219): too many errors; giving up on reading object | |
| 276 | +WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 277 | +WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 278 | +WARNING: issue-335a.pdf (trailer, offset 20092): unknown token while reading object; treating as string | |
| 279 | +WARNING: issue-335a.pdf (trailer, offset 20103): unknown token while reading object; treating as string | |
| 280 | +WARNING: issue-335a.pdf (trailer, offset 20110): unknown token while reading object; treating as string | |
| 281 | +WARNING: issue-335a.pdf (trailer, offset 20114): unknown token while reading object; treating as string | |
| 282 | +WARNING: issue-335a.pdf (trailer, offset 20114): too many errors; giving up on reading object | |
| 283 | +WARNING: issue-335a.pdf (trailer, offset 19920): unknown token while reading object; treating as string | |
| 284 | +WARNING: issue-335a.pdf (trailer, offset 19954): unexpected ) | |
| 285 | +WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 286 | +WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 287 | +WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 288 | +WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 289 | +WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object | |
| 290 | +WARNING: issue-335a.pdf (trailer, offset 19904): treating unexpected brace token as null | |
| 291 | +WARNING: issue-335a.pdf (trailer, offset 19905): unexpected ) | |
| 292 | +WARNING: issue-335a.pdf (trailer, offset 19906): unexpected ) | |
| 293 | +WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 294 | +WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 295 | +WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 296 | +WARNING: issue-335a.pdf (trailer, offset 19968): too many errors; giving up on reading object | |
| 297 | +WARNING: issue-335a.pdf (trailer, offset 19890): unknown token while reading object; treating as string | |
| 298 | +WARNING: issue-335a.pdf (trailer, offset 19906): unexpected ) | |
| 299 | +WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 300 | +WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 301 | +WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 302 | +WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 303 | +WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object | |
| 304 | +WARNING: issue-335a.pdf (trailer, offset 19867): treating unexpected brace token as null | |
| 305 | +WARNING: issue-335a.pdf (trailer, offset 19868): unexpected ) | |
| 306 | +WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string | |
| 307 | +WARNING: issue-335a.pdf (trailer, offset 19870): unexpected ) | |
| 308 | +WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 309 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 310 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 311 | +WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 312 | +WARNING: issue-335a.pdf (trailer, offset 19852): unknown token while reading object; treating as string | |
| 313 | +WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string | |
| 314 | +WARNING: issue-335a.pdf (trailer, offset 19870): unexpected ) | |
| 315 | +WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 316 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 317 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 318 | +WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 319 | +WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object | |
| 320 | +WARNING: issue-335a.pdf (trailer, offset 19837): treating unexpected brace token as null | |
| 321 | +WARNING: issue-335a.pdf (trailer, offset 19838): unexpected ) | |
| 322 | +WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 323 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 324 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 325 | +WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 326 | +WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 327 | +WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object | |
| 328 | +WARNING: issue-335a.pdf (trailer, offset 16819): unknown token while reading object; treating as string | |
| 329 | +WARNING: issue-335a.pdf (trailer, offset 16820): unexpected ) | |
| 330 | +WARNING: issue-335a.pdf (trailer, offset 16821): unexpected ) | |
| 331 | +WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 332 | +WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 333 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 334 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 335 | +WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 336 | +WARNING: issue-335a.pdf (trailer, offset 16806): unknown token while reading object; treating as string | |
| 337 | +WARNING: issue-335a.pdf (trailer, offset 16821): unexpected ) | |
| 338 | +WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 339 | +WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 340 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 341 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 342 | +WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 343 | +WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object | |
| 344 | +WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string | |
| 345 | +WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 346 | +WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 347 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 348 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 349 | +WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 350 | +WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 351 | +WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object | |
| 352 | +WARNING: issue-335a.pdf (trailer, offset 16779): unknown token while reading object; treating as string | |
| 353 | +WARNING: issue-335a.pdf (trailer, offset 16782): unknown token while reading object; treating as string | |
| 354 | +WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string | |
| 355 | +WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 356 | +WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 357 | +WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 358 | +WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 359 | +WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 360 | +WARNING: issue-335a.pdf (trailer, offset 16752): unknown token while reading object; treating as string | |
| 361 | +WARNING: issue-335a.pdf (trailer, offset 16761): unknown token while reading object; treating as string | |
| 362 | +WARNING: issue-335a.pdf (trailer, offset 16762): unexpected ) | |
| 771 | 363 | WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null |
| 772 | 364 | WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string |
| 773 | 365 | WARNING: issue-335a.pdf (trailer, offset 16766): treating unexpected brace token as null |
| 774 | 366 | WARNING: issue-335a.pdf (trailer, offset 16766): too many errors; giving up on reading object |
| 775 | -WARNING: issue-335a.pdf (trailer, offset 16575): unknown token while reading object; treating as string | |
| 776 | -WARNING: issue-335a.pdf (trailer, offset 16599): unknown token while reading object; treating as string | |
| 777 | -WARNING: issue-335a.pdf (trailer, offset 16613): unknown token while reading object; treating as string | |
| 778 | -WARNING: issue-335a.pdf (trailer, offset 16614): treating unexpected brace token as null | |
| 779 | -WARNING: issue-335a.pdf (trailer, offset 16615): unknown token while reading object; treating as string | |
| 780 | -WARNING: issue-335a.pdf (trailer, offset 16739): unexpected ) | |
| 781 | -WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null | |
| 782 | -WARNING: issue-335a.pdf (trailer, offset 16763): too many errors; giving up on reading object | |
| 783 | -WARNING: issue-335a.pdf (trailer, offset 16674): unknown token while reading object; treating as string | |
| 784 | -WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string | |
| 785 | -WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null | |
| 786 | -WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string | |
| 367 | +WARNING: issue-335a.pdf (trailer, offset 16732): unknown token while reading object; treating as string | |
| 368 | +WARNING: issue-335a.pdf (trailer, offset 16733): unexpected ) | |
| 787 | 369 | WARNING: issue-335a.pdf (trailer, offset 16734): unexpected ) |
| 788 | 370 | WARNING: issue-335a.pdf (trailer, offset 16739): unexpected ) |
| 789 | -WARNING: issue-335a.pdf (trailer, offset 16739): too many errors; giving up on reading object | |
| 790 | -WARNING: issue-335a.pdf (trailer, offset 16687): unknown token while reading object; treating as string | |
| 791 | -WARNING: issue-335a.pdf (trailer, offset 16702): unexpected ) | |
| 371 | +WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null | |
| 372 | +WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string | |
| 373 | +WARNING: issue-335a.pdf (trailer, offset 16764): too many errors; giving up on reading object | |
| 374 | +WARNING: issue-335a.pdf (trailer, offset 16715): unknown token while reading object; treating as string | |
| 375 | +WARNING: issue-335a.pdf (trailer, offset 16716): unexpected ) | |
| 792 | 376 | WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string |
| 793 | 377 | WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null |
| 794 | 378 | WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string |
| ... | ... | @@ -801,156 +385,622 @@ WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading obj |
| 801 | 385 | WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null |
| 802 | 386 | WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string |
| 803 | 387 | WARNING: issue-335a.pdf (trailer, offset 16719): too many errors; giving up on reading object |
| 804 | -WARNING: issue-335a.pdf (trailer, offset 16715): unknown token while reading object; treating as string | |
| 805 | -WARNING: issue-335a.pdf (trailer, offset 16716): unexpected ) | |
| 388 | +WARNING: issue-335a.pdf (trailer, offset 16687): unknown token while reading object; treating as string | |
| 389 | +WARNING: issue-335a.pdf (trailer, offset 16702): unexpected ) | |
| 806 | 390 | WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string |
| 807 | 391 | WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null |
| 808 | 392 | WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string |
| 809 | 393 | WARNING: issue-335a.pdf (trailer, offset 16734): unexpected ) |
| 810 | 394 | WARNING: issue-335a.pdf (trailer, offset 16734): too many errors; giving up on reading object |
| 811 | -WARNING: issue-335a.pdf (trailer, offset 16732): unknown token while reading object; treating as string | |
| 812 | -WARNING: issue-335a.pdf (trailer, offset 16733): unexpected ) | |
| 395 | +WARNING: issue-335a.pdf (trailer, offset 16674): unknown token while reading object; treating as string | |
| 396 | +WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string | |
| 397 | +WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null | |
| 398 | +WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string | |
| 813 | 399 | WARNING: issue-335a.pdf (trailer, offset 16734): unexpected ) |
| 814 | 400 | WARNING: issue-335a.pdf (trailer, offset 16739): unexpected ) |
| 401 | +WARNING: issue-335a.pdf (trailer, offset 16739): too many errors; giving up on reading object | |
| 402 | +WARNING: issue-335a.pdf (trailer, offset 16599): unknown token while reading object; treating as string | |
| 403 | +WARNING: issue-335a.pdf (trailer, offset 16613): unknown token while reading object; treating as string | |
| 404 | +WARNING: issue-335a.pdf (trailer, offset 16614): treating unexpected brace token as null | |
| 405 | +WARNING: issue-335a.pdf (trailer, offset 16615): unknown token while reading object; treating as string | |
| 406 | +WARNING: issue-335a.pdf (trailer, offset 16739): unexpected ) | |
| 815 | 407 | WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null |
| 816 | -WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string | |
| 817 | -WARNING: issue-335a.pdf (trailer, offset 16764): too many errors; giving up on reading object | |
| 818 | -WARNING: issue-335a.pdf (trailer, offset 16752): unknown token while reading object; treating as string | |
| 819 | -WARNING: issue-335a.pdf (trailer, offset 16761): unknown token while reading object; treating as string | |
| 820 | -WARNING: issue-335a.pdf (trailer, offset 16762): unexpected ) | |
| 408 | +WARNING: issue-335a.pdf (trailer, offset 16763): too many errors; giving up on reading object | |
| 409 | +WARNING: issue-335a.pdf (trailer, offset 16575): unknown token while reading object; treating as string | |
| 410 | +WARNING: issue-335a.pdf (trailer, offset 16561): unknown token while reading object; treating as string | |
| 411 | +WARNING: issue-335a.pdf (trailer, offset 16562): unexpected ) | |
| 412 | +WARNING: issue-335a.pdf (trailer, offset 16563): unexpected ) | |
| 821 | 413 | WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null |
| 822 | 414 | WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string |
| 823 | 415 | WARNING: issue-335a.pdf (trailer, offset 16766): treating unexpected brace token as null |
| 824 | 416 | WARNING: issue-335a.pdf (trailer, offset 16766): too many errors; giving up on reading object |
| 825 | -WARNING: issue-335a.pdf (trailer, offset 16779): unknown token while reading object; treating as string | |
| 826 | -WARNING: issue-335a.pdf (trailer, offset 16782): unknown token while reading object; treating as string | |
| 827 | -WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string | |
| 828 | -WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 829 | -WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 830 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 831 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 832 | -WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 833 | -WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string | |
| 834 | -WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 835 | -WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 836 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 837 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 838 | -WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 839 | -WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 840 | -WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object | |
| 841 | -WARNING: issue-335a.pdf (trailer, offset 16806): unknown token while reading object; treating as string | |
| 842 | -WARNING: issue-335a.pdf (trailer, offset 16821): unexpected ) | |
| 843 | -WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 844 | -WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 845 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 846 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 847 | -WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 848 | -WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object | |
| 849 | -WARNING: issue-335a.pdf (trailer, offset 16819): unknown token while reading object; treating as string | |
| 850 | -WARNING: issue-335a.pdf (trailer, offset 16820): unexpected ) | |
| 851 | -WARNING: issue-335a.pdf (trailer, offset 16821): unexpected ) | |
| 852 | -WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string | |
| 853 | -WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string | |
| 854 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 855 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 856 | -WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 857 | -WARNING: issue-335a.pdf (trailer, offset 19837): treating unexpected brace token as null | |
| 858 | -WARNING: issue-335a.pdf (trailer, offset 19838): unexpected ) | |
| 859 | -WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 860 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 861 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 862 | -WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 863 | -WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 864 | -WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object | |
| 865 | -WARNING: issue-335a.pdf (trailer, offset 19852): unknown token while reading object; treating as string | |
| 866 | -WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string | |
| 867 | -WARNING: issue-335a.pdf (trailer, offset 19870): unexpected ) | |
| 868 | -WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 869 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 870 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 871 | -WARNING: issue-335a.pdf (trailer, offset 19876): unexpected ) | |
| 872 | -WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object | |
| 873 | -WARNING: issue-335a.pdf (trailer, offset 19867): treating unexpected brace token as null | |
| 874 | -WARNING: issue-335a.pdf (trailer, offset 19868): unexpected ) | |
| 875 | -WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string | |
| 876 | -WARNING: issue-335a.pdf (trailer, offset 19870): unexpected ) | |
| 877 | -WARNING: issue-335a.pdf (trailer, offset 19871): unexpected ) | |
| 878 | -WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2 | |
| 879 | -WARNING: issue-335a.pdf (trailer, offset 19875): unexpected ) | |
| 880 | -WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object | |
| 881 | -WARNING: issue-335a.pdf (trailer, offset 19890): unknown token while reading object; treating as string | |
| 882 | -WARNING: issue-335a.pdf (trailer, offset 19906): unexpected ) | |
| 883 | -WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 884 | -WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 885 | -WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 886 | -WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 887 | -WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object | |
| 888 | -WARNING: issue-335a.pdf (trailer, offset 19904): treating unexpected brace token as null | |
| 889 | -WARNING: issue-335a.pdf (trailer, offset 19905): unexpected ) | |
| 890 | -WARNING: issue-335a.pdf (trailer, offset 19906): unexpected ) | |
| 891 | -WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 892 | -WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 893 | -WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 894 | -WARNING: issue-335a.pdf (trailer, offset 19968): too many errors; giving up on reading object | |
| 895 | -WARNING: issue-335a.pdf (trailer, offset 19920): unknown token while reading object; treating as string | |
| 896 | -WARNING: issue-335a.pdf (trailer, offset 19954): unexpected ) | |
| 897 | -WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string | |
| 898 | -WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string | |
| 899 | -WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 900 | -WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 901 | -WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object | |
| 902 | -WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring | |
| 903 | -WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string | |
| 904 | -WARNING: issue-335a.pdf (trailer, offset 20092): unknown token while reading object; treating as string | |
| 905 | -WARNING: issue-335a.pdf (trailer, offset 20103): unknown token while reading object; treating as string | |
| 906 | -WARNING: issue-335a.pdf (trailer, offset 20110): unknown token while reading object; treating as string | |
| 907 | -WARNING: issue-335a.pdf (trailer, offset 20114): unknown token while reading object; treating as string | |
| 908 | -WARNING: issue-335a.pdf (trailer, offset 20114): too many errors; giving up on reading object | |
| 909 | -WARNING: issue-335a.pdf (trailer, offset 20164): unexpected > | |
| 910 | -WARNING: issue-335a.pdf (trailer, offset 20170): unknown token while reading object; treating as string | |
| 911 | -WARNING: issue-335a.pdf (trailer, offset 20173): unknown token while reading object; treating as string | |
| 912 | -WARNING: issue-335a.pdf (trailer, offset 20186): unknown token while reading object; treating as string | |
| 913 | -WARNING: issue-335a.pdf (trailer, offset 20189): unknown token while reading object; treating as string | |
| 914 | -WARNING: issue-335a.pdf (trailer, offset 20219): unknown token while reading object; treating as string | |
| 915 | -WARNING: issue-335a.pdf (trailer, offset 20219): too many errors; giving up on reading object | |
| 916 | -WARNING: issue-335a.pdf (trailer, offset 20230): unknown token while reading object; treating as string | |
| 917 | -WARNING: issue-335a.pdf (trailer, offset 20232): unexpected ) | |
| 918 | -WARNING: issue-335a.pdf (trailer, offset 20233): unexpected ) | |
| 919 | -WARNING: issue-335a.pdf (trailer, offset 20234): unknown token while reading object; treating as string | |
| 920 | -WARNING: issue-335a.pdf (trailer, offset 20236): invalid character ({) in hexstring | |
| 921 | -WARNING: issue-335a.pdf (trailer, offset 20238): treating unexpected brace token as null | |
| 922 | -WARNING: issue-335a.pdf (trailer, offset 20238): too many errors; giving up on reading object | |
| 923 | -WARNING: issue-335a.pdf (trailer, offset 20424): unknown token while reading object; treating as string | |
| 924 | -WARNING: issue-335a.pdf (trailer, offset 20431): unknown token while reading object; treating as string | |
| 925 | -WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string | |
| 926 | -WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 927 | -WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 928 | -WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 929 | -WARNING: issue-335a.pdf (trailer, offset 20604): too many errors; giving up on reading object | |
| 930 | -WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string | |
| 931 | -WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 932 | -WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 933 | -WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 934 | -WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null | |
| 935 | -WARNING: issue-335a.pdf (trailer, offset 20607): treating unexpected brace token as null | |
| 936 | -WARNING: issue-335a.pdf (trailer, offset 20607): too many errors; giving up on reading object | |
| 937 | -WARNING: issue-335a.pdf (trailer, offset 20598): unknown token while reading object; treating as string | |
| 938 | -WARNING: issue-335a.pdf (trailer, offset 20600): unexpected ) | |
| 939 | -WARNING: issue-335a.pdf (trailer, offset 20601): unexpected ) | |
| 940 | -WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string | |
| 941 | -WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring | |
| 942 | -WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null | |
| 943 | -WARNING: issue-335a.pdf (trailer, offset 20606): too many errors; giving up on reading object | |
| 944 | -WARNING: issue-335a.pdf (trailer, offset 20684): unknown token while reading object; treating as string | |
| 945 | -WARNING: issue-335a.pdf (trailer, offset 20683): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 946 | -WARNING: issue-335a.pdf (trailer, offset 20747): stream keyword found in trailer | |
| 947 | -WARNING: issue-335a.pdf (object 5 0, offset 23451): invalid character (รฟ) in hexstring | |
| 948 | -WARNING: issue-335a.pdf (object 5 0, offset 23458): unknown token while reading object; treating as string | |
| 949 | -WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 950 | -WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 951 | -WARNING: issue-335a.pdf (object 5 0, offset 23440): stream dictionary lacks /Length key | |
| 952 | -WARNING: issue-335a.pdf (object 5 0, offset 23485): attempting to recover stream length | |
| 953 | -WARNING: issue-335a.pdf (object 5 0, offset 23485): unable to recover stream data; treating stream as empty | |
| 954 | -WARNING: issue-335a.pdf (object 5 0, offset 24974): expected endobj | |
| 955 | -WARNING: issue-335a.pdf (object 5 0, offset 24974): EOF after endobj | |
| 956 | -qpdf: issue-335a.pdf: unable to find /Root dictionary | |
| 417 | +WARNING: issue-335a.pdf (trailer, offset 16543): unknown token while reading object; treating as string | |
| 418 | +WARNING: issue-335a.pdf (trailer, offset 16544): unexpected ) | |
| 419 | +WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 420 | +WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string | |
| 421 | +WARNING: issue-335a.pdf (trailer, offset 16547): treating unexpected brace token as null | |
| 422 | +WARNING: issue-335a.pdf (trailer, offset 16548): unknown token while reading object; treating as string | |
| 423 | +WARNING: issue-335a.pdf (trailer, offset 16548): too many errors; giving up on reading object | |
| 424 | +WARNING: issue-335a.pdf (trailer, offset 16526): unknown token while reading object; treating as string | |
| 425 | +WARNING: issue-335a.pdf (trailer, offset 16527): unexpected ) | |
| 426 | +WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 427 | +WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 428 | +WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 429 | +WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 430 | +WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object | |
| 431 | +WARNING: issue-335a.pdf (trailer, offset 16511): unknown token while reading object; treating as string | |
| 432 | +WARNING: issue-335a.pdf (trailer, offset 16512): unexpected ) | |
| 433 | +WARNING: issue-335a.pdf (trailer, offset 16513): unexpected ) | |
| 434 | +WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 435 | +WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 436 | +WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 437 | +WARNING: issue-335a.pdf (trailer, offset 16530): too many errors; giving up on reading object | |
| 438 | +WARNING: issue-335a.pdf (trailer, offset 16498): unknown token while reading object; treating as string | |
| 439 | +WARNING: issue-335a.pdf (trailer, offset 16513): unexpected ) | |
| 440 | +WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 441 | +WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 442 | +WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 443 | +WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 444 | +WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object | |
| 445 | +WARNING: issue-335a.pdf (trailer, offset 16485): unknown token while reading object; treating as string | |
| 446 | +WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string | |
| 447 | +WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null | |
| 448 | +WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string | |
| 449 | +WARNING: issue-335a.pdf (trailer, offset 16545): unexpected ) | |
| 450 | +WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string | |
| 451 | +WARNING: issue-335a.pdf (trailer, offset 16546): too many errors; giving up on reading object | |
| 452 | +WARNING: issue-335a.pdf (trailer, offset 3585): treating unexpected brace token as null | |
| 453 | +WARNING: issue-335a.pdf (trailer, offset 3586): unknown token while reading object; treating as string | |
| 454 | +WARNING: issue-335a.pdf (trailer, offset 3588): unexpected ) | |
| 455 | +WARNING: issue-335a.pdf (trailer, offset 3589): unexpected ) | |
| 456 | +WARNING: issue-335a.pdf (trailer, offset 3602): unknown token while reading object; treating as string | |
| 457 | +WARNING: issue-335a.pdf (trailer, offset 3610): unknown token while reading object; treating as string | |
| 458 | +WARNING: issue-335a.pdf (trailer, offset 3610): too many errors; giving up on reading object | |
| 459 | +WARNING: issue-335a.pdf (trailer, offset 2020): treating unexpected brace token as null | |
| 460 | +WARNING: issue-335a.pdf (trailer, offset 2021): unexpected ) | |
| 461 | +WARNING: issue-335a.pdf (trailer, offset 2022): unexpected ) | |
| 462 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 463 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 464 | +WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string | |
| 465 | +WARNING: issue-335a.pdf (trailer, offset 3073): too many errors; giving up on reading object | |
| 466 | +WARNING: issue-335a.pdf (trailer, offset 2006): unknown token while reading object; treating as string | |
| 467 | +WARNING: issue-335a.pdf (trailer, offset 2022): unexpected ) | |
| 468 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 469 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 470 | +WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string | |
| 471 | +WARNING: issue-335a.pdf (trailer, offset 3073): too many errors; giving up on reading object | |
| 472 | +WARNING: issue-335a.pdf (trailer, offset 1976): treating unexpected brace token as null | |
| 473 | +WARNING: issue-335a.pdf (trailer, offset 1977): unexpected ) | |
| 474 | +WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string | |
| 475 | +WARNING: issue-335a.pdf (trailer, offset 1979): unexpected ) | |
| 476 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 477 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 478 | +WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 479 | +WARNING: issue-335a.pdf (trailer, offset 1961): unknown token while reading object; treating as string | |
| 480 | +WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string | |
| 481 | +WARNING: issue-335a.pdf (trailer, offset 1979): unexpected ) | |
| 482 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 483 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 484 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 485 | +WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 486 | +WARNING: issue-335a.pdf (trailer, offset 1943): treating unexpected brace token as null | |
| 487 | +WARNING: issue-335a.pdf (trailer, offset 1944): unexpected ) | |
| 488 | +WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string | |
| 489 | +WARNING: issue-335a.pdf (trailer, offset 1946): unexpected ) | |
| 490 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 491 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 492 | +WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object | |
| 493 | +WARNING: issue-335a.pdf (trailer, offset 1927): unknown token while reading object; treating as string | |
| 494 | +WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string | |
| 495 | +WARNING: issue-335a.pdf (trailer, offset 1946): unexpected ) | |
| 496 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 497 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 498 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 499 | +WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 500 | +WARNING: issue-335a.pdf (trailer, offset 1911): treating unexpected brace token as null | |
| 501 | +WARNING: issue-335a.pdf (trailer, offset 1912): unexpected ) | |
| 502 | +WARNING: issue-335a.pdf (trailer, offset 1913): unexpected ) | |
| 503 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 504 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 505 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 506 | +WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object | |
| 507 | +WARNING: issue-335a.pdf (trailer, offset 1897): unknown token while reading object; treating as string | |
| 508 | +WARNING: issue-335a.pdf (trailer, offset 1913): unexpected ) | |
| 509 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 510 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 511 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 512 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 513 | +WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 514 | +WARNING: issue-335a.pdf (trailer, offset 1861): unknown token while reading object; treating as string | |
| 515 | +WARNING: issue-335a.pdf (trailer, offset 1880): unexpected ) | |
| 516 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 517 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 518 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 519 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 520 | +WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object | |
| 521 | +WARNING: issue-335a.pdf (trailer, offset 1843): treating unexpected brace token as null | |
| 522 | +WARNING: issue-335a.pdf (trailer, offset 1844): unexpected ) | |
| 523 | +WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string | |
| 524 | +WARNING: issue-335a.pdf (trailer, offset 1846): unexpected ) | |
| 525 | +WARNING: issue-335a.pdf (trailer, offset 1847): unexpected ) | |
| 526 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 527 | +WARNING: issue-335a.pdf (trailer, offset 1947): too many errors; giving up on reading object | |
| 528 | +WARNING: issue-335a.pdf (trailer, offset 1827): unknown token while reading object; treating as string | |
| 529 | +WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string | |
| 530 | +WARNING: issue-335a.pdf (trailer, offset 1846): unexpected ) | |
| 531 | +WARNING: issue-335a.pdf (trailer, offset 1847): unexpected ) | |
| 532 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 533 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 534 | +WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object | |
| 535 | +WARNING: issue-335a.pdf (trailer, offset 1809): invalid character (<) in hexstring | |
| 536 | +WARNING: issue-335a.pdf (trailer, offset 1795): unknown token while reading object; treating as string | |
| 537 | +WARNING: issue-335a.pdf (trailer, offset 1947): unexpected ) | |
| 538 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 539 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 540 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 541 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 542 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 543 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 544 | +WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 545 | +WARNING: issue-335a.pdf (trailer, offset 1779): treating unexpected brace token as null | |
| 546 | +WARNING: issue-335a.pdf (trailer, offset 1780): unknown token while reading object; treating as string | |
| 547 | +WARNING: issue-335a.pdf (trailer, offset 1980): unexpected ) | |
| 548 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 549 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 550 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 551 | +WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object | |
| 552 | +WARNING: issue-335a.pdf (trailer, offset 1763): unknown token while reading object; treating as string | |
| 553 | +WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring | |
| 554 | +WARNING: issue-335a.pdf (trailer, offset 1988): unexpected ) | |
| 555 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 556 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 557 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 558 | +WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 559 | +WARNING: issue-335a.pdf (trailer, offset 1730): unknown token while reading object; treating as string | |
| 560 | +WARNING: issue-335a.pdf (trailer, offset 1749): unexpected ) | |
| 561 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 562 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 563 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 564 | +WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 565 | +WARNING: issue-335a.pdf (trailer, offset 1700): treating unexpected brace token as null | |
| 566 | +WARNING: issue-335a.pdf (trailer, offset 1701): unexpected ) | |
| 567 | +WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string | |
| 568 | +WARNING: issue-335a.pdf (trailer, offset 1703): unexpected ) | |
| 569 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 570 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 571 | +WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 572 | +WARNING: issue-335a.pdf (trailer, offset 1685): unknown token while reading object; treating as string | |
| 573 | +WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string | |
| 574 | +WARNING: issue-335a.pdf (trailer, offset 1703): unexpected ) | |
| 575 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 576 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 577 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 578 | +WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 579 | +WARNING: issue-335a.pdf (trailer, offset 1667): treating unexpected brace token as null | |
| 580 | +WARNING: issue-335a.pdf (trailer, offset 1668): unexpected ) | |
| 581 | +WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string | |
| 582 | +WARNING: issue-335a.pdf (trailer, offset 1670): unexpected ) | |
| 583 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 584 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 585 | +WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object | |
| 586 | +WARNING: issue-335a.pdf (trailer, offset 1651): unknown token while reading object; treating as string | |
| 587 | +WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string | |
| 588 | +WARNING: issue-335a.pdf (trailer, offset 1670): unexpected ) | |
| 589 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 590 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 591 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 592 | +WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 593 | +WARNING: issue-335a.pdf (trailer, offset 1635): treating unexpected brace token as null | |
| 594 | +WARNING: issue-335a.pdf (trailer, offset 1636): unexpected ) | |
| 595 | +WARNING: issue-335a.pdf (trailer, offset 1637): unexpected ) | |
| 596 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 597 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 598 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 599 | +WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object | |
| 600 | +WARNING: issue-335a.pdf (trailer, offset 1621): unknown token while reading object; treating as string | |
| 601 | +WARNING: issue-335a.pdf (trailer, offset 1637): unexpected ) | |
| 602 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 603 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 604 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 605 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 606 | +WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 607 | +WARNING: issue-335a.pdf (trailer, offset 1585): unknown token while reading object; treating as string | |
| 608 | +WARNING: issue-335a.pdf (trailer, offset 1604): unexpected ) | |
| 609 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 610 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 611 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 612 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 613 | +WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object | |
| 614 | +WARNING: issue-335a.pdf (trailer, offset 1567): treating unexpected brace token as null | |
| 615 | +WARNING: issue-335a.pdf (trailer, offset 1568): unexpected ) | |
| 616 | +WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string | |
| 617 | +WARNING: issue-335a.pdf (trailer, offset 1570): unexpected ) | |
| 618 | +WARNING: issue-335a.pdf (trailer, offset 1571): unexpected ) | |
| 619 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 620 | +WARNING: issue-335a.pdf (trailer, offset 1671): too many errors; giving up on reading object | |
| 621 | +WARNING: issue-335a.pdf (trailer, offset 1551): unknown token while reading object; treating as string | |
| 622 | +WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string | |
| 623 | +WARNING: issue-335a.pdf (trailer, offset 1570): unexpected ) | |
| 624 | +WARNING: issue-335a.pdf (trailer, offset 1571): unexpected ) | |
| 625 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 626 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 627 | +WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object | |
| 628 | +WARNING: issue-335a.pdf (trailer, offset 1533): invalid character (<) in hexstring | |
| 629 | +WARNING: issue-335a.pdf (trailer, offset 1519): unknown token while reading object; treating as string | |
| 630 | +WARNING: issue-335a.pdf (trailer, offset 1671): unexpected ) | |
| 631 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 632 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 633 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 634 | +WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 635 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 636 | +WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object | |
| 637 | +WARNING: issue-335a.pdf (trailer, offset 1503): treating unexpected brace token as null | |
| 638 | +WARNING: issue-335a.pdf (trailer, offset 1504): unknown token while reading object; treating as string | |
| 639 | +WARNING: issue-335a.pdf (trailer, offset 1704): unexpected ) | |
| 640 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 641 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 642 | +WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 643 | +WARNING: issue-335a.pdf (trailer, offset 1713): too many errors; giving up on reading object | |
| 644 | +WARNING: issue-335a.pdf (trailer, offset 1487): unknown token while reading object; treating as string | |
| 645 | +WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring | |
| 646 | +WARNING: issue-335a.pdf (trailer, offset 1712): unexpected ) | |
| 647 | +WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 648 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 649 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 650 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 651 | +WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 652 | +WARNING: issue-335a.pdf (trailer, offset 1454): unknown token while reading object; treating as string | |
| 653 | +WARNING: issue-335a.pdf (trailer, offset 1473): unexpected ) | |
| 654 | +WARNING: issue-335a.pdf (trailer, offset 1713): unexpected ) | |
| 655 | +WARNING: issue-335a.pdf (trailer, offset 1989): unexpected ) | |
| 656 | +WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string | |
| 657 | +WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string | |
| 658 | +WARNING: issue-335a.pdf (trailer, offset 3064): too many errors; giving up on reading object | |
| 659 | +WARNING: issue-335a.pdf (trailer, offset 1424): treating unexpected brace token as null | |
| 660 | +WARNING: issue-335a.pdf (trailer, offset 1425): unexpected ) | |
| 661 | +WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string | |
| 662 | +WARNING: issue-335a.pdf (trailer, offset 1427): unexpected ) | |
| 663 | +WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 664 | +WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 665 | +WARNING: issue-335a.pdf (trailer, offset 1434): too many errors; giving up on reading object | |
| 666 | +WARNING: issue-335a.pdf (trailer, offset 1409): unknown token while reading object; treating as string | |
| 667 | +WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string | |
| 668 | +WARNING: issue-335a.pdf (trailer, offset 1427): unexpected ) | |
| 669 | +WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 670 | +WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 671 | +WARNING: issue-335a.pdf (trailer, offset 1436): unexpected ) | |
| 672 | +WARNING: issue-335a.pdf (trailer, offset 1436): too many errors; giving up on reading object | |
| 673 | +WARNING: issue-335a.pdf (trailer, offset 1390): invalid character ({) in hexstring | |
| 674 | +WARNING: issue-335a.pdf (trailer, offset 1392): unexpected ) | |
| 675 | +WARNING: issue-335a.pdf (trailer, offset 1393): unknown token while reading object; treating as string | |
| 676 | +WARNING: issue-335a.pdf (trailer, offset 1394): unexpected ) | |
| 677 | +WARNING: issue-335a.pdf (trailer, offset 1395): unexpected ) | |
| 678 | +WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 679 | +WARNING: issue-335a.pdf (trailer, offset 1428): too many errors; giving up on reading object | |
| 680 | +WARNING: issue-335a.pdf (trailer, offset 1372): invalid character (<) in hexstring | |
| 681 | +WARNING: issue-335a.pdf (trailer, offset 1358): unknown token while reading object; treating as string | |
| 682 | +WARNING: issue-335a.pdf (trailer, offset 1395): unexpected ) | |
| 683 | +WARNING: issue-335a.pdf (trailer, offset 1428): unexpected ) | |
| 684 | +WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring | |
| 685 | +WARNING: issue-335a.pdf (trailer, offset 1436): unexpected ) | |
| 686 | +WARNING: issue-335a.pdf (trailer, offset 1437): unexpected ) | |
| 687 | +WARNING: issue-335a.pdf (trailer, offset 1437): too many errors; giving up on reading object | |
| 688 | +WARNING: issue-335a.pdf (trailer, offset 1324): treating unexpected brace token as null | |
| 689 | +WARNING: issue-335a.pdf (trailer, offset 1325): unexpected ) | |
| 690 | +WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string | |
| 691 | +WARNING: issue-335a.pdf (trailer, offset 1327): unexpected ) | |
| 692 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 693 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 694 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 695 | +WARNING: issue-335a.pdf (trailer, offset 1332): too many errors; giving up on reading object | |
| 696 | +WARNING: issue-335a.pdf (trailer, offset 1309): unknown token while reading object; treating as string | |
| 697 | +WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string | |
| 698 | +WARNING: issue-335a.pdf (trailer, offset 1327): unexpected ) | |
| 699 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 700 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 701 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 702 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 703 | +WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 704 | +WARNING: issue-335a.pdf (trailer, offset 1293): treating unexpected brace token as null | |
| 705 | +WARNING: issue-335a.pdf (trailer, offset 1294): unexpected ) | |
| 706 | +WARNING: issue-335a.pdf (trailer, offset 1295): unexpected ) | |
| 707 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 708 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 709 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 710 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 711 | +WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 712 | +WARNING: issue-335a.pdf (trailer, offset 1279): unknown token while reading object; treating as string | |
| 713 | +WARNING: issue-335a.pdf (trailer, offset 1295): unexpected ) | |
| 714 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 715 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 716 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 717 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 718 | +WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 719 | +WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 720 | +WARNING: issue-335a.pdf (trailer, offset 1260): treating unexpected brace token as null | |
| 721 | +WARNING: issue-335a.pdf (trailer, offset 1261): unexpected ) | |
| 722 | +WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string | |
| 723 | +WARNING: issue-335a.pdf (trailer, offset 1263): unexpected ) | |
| 724 | +WARNING: issue-335a.pdf (trailer, offset 1264): unexpected ) | |
| 725 | +WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 726 | +WARNING: issue-335a.pdf (trailer, offset 1265): too many errors; giving up on reading object | |
| 727 | +WARNING: issue-335a.pdf (trailer, offset 1244): unknown token while reading object; treating as string | |
| 728 | +WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string | |
| 729 | +WARNING: issue-335a.pdf (trailer, offset 1263): unexpected ) | |
| 730 | +WARNING: issue-335a.pdf (trailer, offset 1264): unexpected ) | |
| 731 | +WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 732 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 733 | +WARNING: issue-335a.pdf (trailer, offset 1328): too many errors; giving up on reading object | |
| 734 | +WARNING: issue-335a.pdf (trailer, offset 1226): invalid character (<) in hexstring | |
| 735 | +WARNING: issue-335a.pdf (trailer, offset 1212): unknown token while reading object; treating as string | |
| 736 | +WARNING: issue-335a.pdf (trailer, offset 1265): unexpected ) | |
| 737 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 738 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 739 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 740 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 741 | +WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 742 | +WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 743 | +WARNING: issue-335a.pdf (trailer, offset 1196): treating unexpected brace token as null | |
| 744 | +WARNING: issue-335a.pdf (trailer, offset 1197): unexpected ) | |
| 745 | +WARNING: issue-335a.pdf (trailer, offset 1198): unexpected ) | |
| 746 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 747 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 748 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 749 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 750 | +WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object | |
| 751 | +WARNING: issue-335a.pdf (trailer, offset 1182): unknown token while reading object; treating as string | |
| 752 | +WARNING: issue-335a.pdf (trailer, offset 1198): unexpected ) | |
| 753 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 754 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 755 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 756 | +WARNING: issue-335a.pdf (trailer, offset 1333): unexpected ) | |
| 757 | +WARNING: issue-335a.pdf (trailer, offset 1344): unexpected ) | |
| 758 | +WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object | |
| 759 | +WARNING: issue-335a.pdf (trailer, offset 1159): treating unexpected brace token as null | |
| 760 | +WARNING: issue-335a.pdf (trailer, offset 1160): unexpected ) | |
| 761 | +WARNING: issue-335a.pdf (trailer, offset 1161): unknown token while reading object; treating as string | |
| 762 | +WARNING: issue-335a.pdf (trailer, offset 1162): unexpected ) | |
| 763 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 764 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 765 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 766 | +WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 767 | +WARNING: issue-335a.pdf (trailer, offset 1047): treating unexpected brace token as null | |
| 768 | +WARNING: issue-335a.pdf (trailer, offset 1048): unexpected ) | |
| 769 | +WARNING: issue-335a.pdf (trailer, offset 1049): unexpected ) | |
| 770 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 771 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 772 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 773 | +WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 774 | +WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object | |
| 775 | +WARNING: issue-335a.pdf (trailer, offset 1033): unknown token while reading object; treating as string | |
| 776 | +WARNING: issue-335a.pdf (trailer, offset 1049): unexpected ) | |
| 777 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 778 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 779 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 780 | +WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 781 | +WARNING: issue-335a.pdf (trailer, offset 1328): unexpected ) | |
| 782 | +WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2 | |
| 783 | +WARNING: issue-335a.pdf (trailer, offset 1332): unexpected ) | |
| 784 | +WARNING: issue-335a.pdf (trailer, offset 1332): too many errors; giving up on reading object | |
| 785 | +WARNING: issue-335a.pdf (trailer, offset 1010): treating unexpected brace token as null | |
| 786 | +WARNING: issue-335a.pdf (trailer, offset 1011): unexpected ) | |
| 787 | +WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string | |
| 788 | +WARNING: issue-335a.pdf (trailer, offset 1013): unexpected ) | |
| 789 | +WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 790 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 791 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 792 | +WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object | |
| 793 | +WARNING: issue-335a.pdf (trailer, offset 995): unknown token while reading object; treating as string | |
| 794 | +WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string | |
| 795 | +WARNING: issue-335a.pdf (trailer, offset 1013): unexpected ) | |
| 796 | +WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 797 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 798 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 799 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 800 | +WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 801 | +WARNING: issue-335a.pdf (trailer, offset 980): treating unexpected brace token as null | |
| 802 | +WARNING: issue-335a.pdf (trailer, offset 981): unexpected ) | |
| 803 | +WARNING: issue-335a.pdf (trailer, offset 1014): unexpected ) | |
| 804 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 805 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 806 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 807 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 808 | +WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object | |
| 809 | +WARNING: issue-335a.pdf (trailer, offset 950): treating unexpected brace token as null | |
| 810 | +WARNING: issue-335a.pdf (trailer, offset 951): unexpected ) | |
| 811 | +WARNING: issue-335a.pdf (trailer, offset 952): unexpected ) | |
| 812 | +WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 813 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 814 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 815 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 816 | +WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 817 | +WARNING: issue-335a.pdf (trailer, offset 936): unknown token while reading object; treating as string | |
| 818 | +WARNING: issue-335a.pdf (trailer, offset 952): unexpected ) | |
| 819 | +WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 820 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 821 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 822 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 823 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 824 | +WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object | |
| 825 | +WARNING: issue-335a.pdf (trailer, offset 918): treating unexpected brace token as null | |
| 826 | +WARNING: issue-335a.pdf (trailer, offset 919): unexpected ) | |
| 827 | +WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string | |
| 828 | +WARNING: issue-335a.pdf (trailer, offset 921): unexpected ) | |
| 829 | +WARNING: issue-335a.pdf (trailer, offset 922): unexpected ) | |
| 830 | +WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 831 | +WARNING: issue-335a.pdf (trailer, offset 953): too many errors; giving up on reading object | |
| 832 | +WARNING: issue-335a.pdf (trailer, offset 902): unknown token while reading object; treating as string | |
| 833 | +WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string | |
| 834 | +WARNING: issue-335a.pdf (trailer, offset 921): unexpected ) | |
| 835 | +WARNING: issue-335a.pdf (trailer, offset 922): unexpected ) | |
| 836 | +WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 837 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 838 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 839 | +WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object | |
| 840 | +WARNING: issue-335a.pdf (trailer, offset 870): unknown token while reading object; treating as string | |
| 841 | +WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string | |
| 842 | +WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2 | |
| 843 | +WARNING: issue-335a.pdf (trailer, offset 1018): unexpected ) | |
| 844 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 845 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 846 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 847 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 848 | +WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 849 | +WARNING: issue-335a.pdf (trailer, offset 854): treating unexpected brace token as null | |
| 850 | +WARNING: issue-335a.pdf (trailer, offset 855): unexpected ) | |
| 851 | +WARNING: issue-335a.pdf (trailer, offset 856): unexpected ) | |
| 852 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 853 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 854 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 855 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 856 | +WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object | |
| 857 | +WARNING: issue-335a.pdf (trailer, offset 840): unknown token while reading object; treating as string | |
| 858 | +WARNING: issue-335a.pdf (trailer, offset 856): unexpected ) | |
| 859 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 860 | +WARNING: issue-335a.pdf (trailer, offset 1163): unexpected ) | |
| 861 | +WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2 | |
| 862 | +WARNING: issue-335a.pdf (trailer, offset 1167): unexpected ) | |
| 863 | +WARNING: issue-335a.pdf (trailer, offset 1168): unexpected ) | |
| 864 | +WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object | |
| 865 | +WARNING: issue-335a.pdf (trailer, offset 817): treating unexpected brace token as null | |
| 866 | +WARNING: issue-335a.pdf (trailer, offset 818): unexpected ) | |
| 867 | +WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string | |
| 868 | +WARNING: issue-335a.pdf (trailer, offset 820): unexpected ) | |
| 869 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 870 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 871 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 872 | +WARNING: issue-335a.pdf (trailer, offset 825): too many errors; giving up on reading object | |
| 873 | +WARNING: issue-335a.pdf (trailer, offset 802): unknown token while reading object; treating as string | |
| 874 | +WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string | |
| 875 | +WARNING: issue-335a.pdf (trailer, offset 820): unexpected ) | |
| 876 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 877 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 878 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 879 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 880 | +WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 881 | +WARNING: issue-335a.pdf (trailer, offset 786): treating unexpected brace token as null | |
| 882 | +WARNING: issue-335a.pdf (trailer, offset 787): unexpected ) | |
| 883 | +WARNING: issue-335a.pdf (trailer, offset 788): unexpected ) | |
| 884 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 885 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 886 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 887 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 888 | +WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 889 | +WARNING: issue-335a.pdf (trailer, offset 772): unknown token while reading object; treating as string | |
| 890 | +WARNING: issue-335a.pdf (trailer, offset 788): unexpected ) | |
| 891 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 892 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 893 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 894 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 895 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 896 | +WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 897 | +WARNING: issue-335a.pdf (trailer, offset 753): treating unexpected brace token as null | |
| 898 | +WARNING: issue-335a.pdf (trailer, offset 754): unexpected ) | |
| 899 | +WARNING: issue-335a.pdf (trailer, offset 755): unknown token while reading object; treating as string | |
| 900 | +WARNING: issue-335a.pdf (trailer, offset 756): unexpected ) | |
| 901 | +WARNING: issue-335a.pdf (trailer, offset 757): unexpected ) | |
| 902 | +WARNING: issue-335a.pdf (trailer, offset 758): unexpected ) | |
| 903 | +WARNING: issue-335a.pdf (trailer, offset 758): too many errors; giving up on reading object | |
| 904 | +WARNING: issue-335a.pdf (trailer, offset 711): invalid character (<) in hexstring | |
| 905 | +WARNING: issue-335a.pdf (trailer, offset 697): unknown token while reading object; treating as string | |
| 906 | +WARNING: issue-335a.pdf (trailer, offset 758): unexpected ) | |
| 907 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 908 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 909 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 910 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 911 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 912 | +WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 913 | +WARNING: issue-335a.pdf (trailer, offset 681): treating unexpected brace token as null | |
| 914 | +WARNING: issue-335a.pdf (trailer, offset 682): unexpected ) | |
| 915 | +WARNING: issue-335a.pdf (trailer, offset 683): unexpected ) | |
| 916 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 917 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 918 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 919 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 920 | +WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object | |
| 921 | +WARNING: issue-335a.pdf (trailer, offset 667): unknown token while reading object; treating as string | |
| 922 | +WARNING: issue-335a.pdf (trailer, offset 683): unexpected ) | |
| 923 | +WARNING: issue-335a.pdf (trailer, offset 821): unexpected ) | |
| 924 | +WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2 | |
| 925 | +WARNING: issue-335a.pdf (trailer, offset 825): unexpected ) | |
| 926 | +WARNING: issue-335a.pdf (trailer, offset 826): unexpected ) | |
| 927 | +WARNING: issue-335a.pdf (trailer, offset 1019): unexpected ) | |
| 928 | +WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object | |
| 929 | +WARNING: issue-335a.pdf (trailer, offset 644): treating unexpected brace token as null | |
| 930 | +WARNING: issue-335a.pdf (trailer, offset 645): unexpected ) | |
| 931 | +WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string | |
| 932 | +WARNING: issue-335a.pdf (trailer, offset 647): unexpected ) | |
| 933 | +WARNING: issue-335a.pdf (trailer, offset 648): unexpected ) | |
| 934 | +WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2 | |
| 935 | +WARNING: issue-335a.pdf (trailer, offset 652): unexpected ) | |
| 936 | +WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object | |
| 937 | +WARNING: issue-335a.pdf (trailer, offset 629): unknown token while reading object; treating as string | |
| 938 | +WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string | |
| 939 | +WARNING: issue-335a.pdf (trailer, offset 647): unexpected ) | |
| 940 | +WARNING: issue-335a.pdf (trailer, offset 648): unexpected ) | |
| 941 | +WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2 | |
| 942 | +WARNING: issue-335a.pdf (trailer, offset 652): unexpected ) | |
| 943 | +WARNING: issue-335a.pdf (trailer, offset 653): unexpected ) | |
| 944 | +WARNING: issue-335a.pdf (trailer, offset 653): too many errors; giving up on reading object | |
| 945 | +WARNING: issue-335a.pdf (trailer, offset 592): treating unexpected brace token as null | |
| 946 | +WARNING: issue-335a.pdf (trailer, offset 593): unexpected ) | |
| 947 | +WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string | |
| 948 | +WARNING: issue-335a.pdf (trailer, offset 595): unexpected ) | |
| 949 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 950 | +WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 951 | +WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 952 | +WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 953 | +WARNING: issue-335a.pdf (trailer, offset 577): unknown token while reading object; treating as string | |
| 954 | +WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string | |
| 955 | +WARNING: issue-335a.pdf (trailer, offset 595): unexpected ) | |
| 956 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 957 | +WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 958 | +WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 959 | +WARNING: issue-335a.pdf (trailer, offset 601): unexpected ) | |
| 960 | +WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object | |
| 961 | +WARNING: issue-335a.pdf (trailer, offset 559): treating unexpected brace token as null | |
| 962 | +WARNING: issue-335a.pdf (trailer, offset 560): unexpected ) | |
| 963 | +WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string | |
| 964 | +WARNING: issue-335a.pdf (trailer, offset 562): unexpected ) | |
| 965 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 966 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 967 | +WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 968 | +WARNING: issue-335a.pdf (trailer, offset 543): unknown token while reading object; treating as string | |
| 969 | +WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string | |
| 970 | +WARNING: issue-335a.pdf (trailer, offset 562): unexpected ) | |
| 971 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 972 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 973 | +WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 974 | +WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 975 | +WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 976 | +WARNING: issue-335a.pdf (trailer, offset 527): treating unexpected brace token as null | |
| 977 | +WARNING: issue-335a.pdf (trailer, offset 528): unexpected ) | |
| 978 | +WARNING: issue-335a.pdf (trailer, offset 529): unexpected ) | |
| 979 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 980 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 981 | +WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 982 | +WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 983 | +WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object | |
| 984 | +WARNING: issue-335a.pdf (trailer, offset 513): unknown token while reading object; treating as string | |
| 985 | +WARNING: issue-335a.pdf (trailer, offset 529): unexpected ) | |
| 986 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 987 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 988 | +WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2 | |
| 989 | +WARNING: issue-335a.pdf (trailer, offset 600): unexpected ) | |
| 990 | +WARNING: issue-335a.pdf (trailer, offset 601): unexpected ) | |
| 991 | +WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object | |
| 992 | +WARNING: issue-335a.pdf (trailer, offset 495): treating unexpected brace token as null | |
| 993 | +WARNING: issue-335a.pdf (trailer, offset 496): unexpected ) | |
| 994 | +WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string | |
| 995 | +WARNING: issue-335a.pdf (trailer, offset 498): unexpected ) | |
| 996 | +WARNING: issue-335a.pdf (trailer, offset 499): unexpected ) | |
| 997 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 998 | +WARNING: issue-335a.pdf (trailer, offset 563): too many errors; giving up on reading object | |
| 999 | +WARNING: issue-335a.pdf (trailer, offset 479): unknown token while reading object; treating as string | |
| 1000 | +WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string | |
| 1001 | +WARNING: issue-335a.pdf (trailer, offset 498): unexpected ) | |
| 1002 | +WARNING: issue-335a.pdf (trailer, offset 499): unexpected ) | |
| 1003 | +WARNING: issue-335a.pdf (trailer, offset 563): unexpected ) | |
| 1004 | +WARNING: issue-335a.pdf (trailer, offset 596): unexpected ) | |
| 1005 | +WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object | |
| 1006 | +qpdf: issue-335a.pdf: too many errors while reconstructing cross-reference table | ... | ... |
qpdf/qtest/qpdf/issue-99.out
| 1 | 1 | WARNING: issue-99.pdf: file is damaged |
| 2 | 2 | WARNING: issue-99.pdf (offset 3526): xref not found |
| 3 | 3 | WARNING: issue-99.pdf: Attempting to reconstruct cross-reference table |
| 4 | -qpdf: issue-99.pdf: unable to find /Root dictionary | |
| 4 | +WARNING: issue-99.pdf (trailer, offset 4613): recovered trailer has no /Root entry | |
| 5 | +WARNING: issue-99.pdf (object 1 0, offset 775): unknown token while reading object; treating as string | |
| 6 | +WARNING: issue-99.pdf (object 1 0, offset 795): unknown token while reading object; treating as string | |
| 7 | +WARNING: issue-99.pdf (object 1 0, offset 815): unknown token while reading object; treating as string | |
| 8 | +WARNING: issue-99.pdf (object 1 0, offset 835): unknown token while reading object; treating as string | |
| 9 | +WARNING: issue-99.pdf (object 1 0, offset 855): unknown token while reading object; treating as string | |
| 10 | +WARNING: issue-99.pdf (object 1 0, offset 855): too many errors; giving up on reading object | |
| 11 | +WARNING: issue-99.pdf (object 1 0, offset 858): expected endobj | |
| 12 | +WARNING: issue-99.pdf (object 2 0, offset 64): expected endobj | |
| 13 | +WARNING: issue-99.pdf (object 5 0, offset 2452): unknown token while reading object; treating as string | |
| 14 | +WARNING: issue-99.pdf (object 6 0, offset 2506): treating unexpected array close token as null | |
| 15 | +WARNING: issue-99.pdf (object 6 0, offset 2507): unknown token while reading object; treating as string | |
| 16 | +WARNING: issue-99.pdf (object 6 0, offset 2551): unknown token while reading object; treating as string | |
| 17 | +WARNING: issue-99.pdf (object 6 0, offset 2475): dictionary has duplicated key /Type; last occurrence overrides earlier ones | |
| 18 | +WARNING: issue-99.pdf (object 6 0, offset 2475): dictionary has duplicated key /Parent; last occurrence overrides earlier ones | |
| 19 | +WARNING: issue-99.pdf (object 6 0, offset 2475): dictionary has duplicated key /Group; last occurrence overrides earlier ones | |
| 20 | +WARNING: issue-99.pdf (object 6 0, offset 2475): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 21 | +WARNING: issue-99.pdf (object 6 0, offset 2475): expected dictionary key but found non-name object; inserting key /QPDFFake2 | |
| 22 | +WARNING: issue-99.pdf (object 6 0, offset 2475): expected dictionary key but found non-name object; inserting key /QPDFFake3 | |
| 23 | +WARNING: issue-99.pdf (object 10 0, offset 3708): expected dictionary key but found non-name object; inserting key /QPDFFake1 | |
| 24 | +WARNING: issue-99.pdf (object 11 0, offset 4485): unknown token while reading object; treating as string | |
| 25 | +WARNING: issue-99.pdf (object 11 0, offset 4497): treating unexpected array close token as null | |
| 26 | +WARNING: issue-99.pdf (object 11 0, offset 4502): unexpected ) | |
| 27 | +WARNING: issue-99.pdf (object 11 0, offset 4504): unexpected > | |
| 28 | +WARNING: issue-99.pdf (object 11 0, offset 4508): unknown token while reading object; treating as string | |
| 29 | +WARNING: issue-99.pdf (object 11 0, offset 4520): unknown token while reading object; treating as string | |
| 30 | +WARNING: issue-99.pdf (object 11 0, offset 4520): too many errors; giving up on reading object | |
| 31 | +WARNING: issue-99.pdf (object 11 0, offset 4524): expected endobj | |
| 32 | +WARNING: issue-99.pdf: unable to find trailer dictionary while recovering damaged file | |
| 33 | +WARNING: object 1 0: Pages tree includes non-dictionary object; ignoring | |
| 34 | +WARNING: object 1 0: operation for dictionary attempted on object of type null: returning false for a key containment request | |
| 35 | +WARNING: object 1 0: operation for dictionary attempted on object of type null: ignoring key replacement request | |
| 36 | +WARNING: object 1 0: operation for dictionary attempted on object of type null: returning false for a key containment request | |
| 37 | +WARNING: object 1 0: operation for dictionary attempted on object of type null: ignoring key replacement request | |
| 38 | +qpdf: issue-99.pdf: unable to find any pages while recovering damaged file | ... | ... |