Objects json: write incrementally and in numeric order

The following script was used to adjust test data:

----------
#!/usr/bin/env python3
import json
import sys
import re

def json_dumps(data):
    return json.dumps(data, ensure_ascii=False,
                      indent=2, separators=(',', ': '))

for filename in sys.argv[1:]:
    with open(filename, 'r') as f:
        data = json.loads(f.read())
    if 'objects' not in data:
        continue
    trailer = None
    to_sort = []
    for k, v in data['objects'].items():
        if k == 'trailer':
            trailer = v
        else:
            m = re.match(r'^(\d+) \d+ R', k)
            if m:
                to_sort.append([int(m.group(1)), k, v])
    newobjects = {x[1]: x[2] for x in sorted(to_sort)}
    if trailer is not None:
        newobjects['trailer'] = trailer
    data['objects'] = newobjects
print(json_dumps(data))
----------
This commit is contained in:
Jay Berkenbilt 2022-05-06 19:04:20 -04:00
parent f50274ef46
commit 948de60990
16 changed files with 3377 additions and 3363 deletions

View File

@ -92,6 +92,11 @@ class JSON
std::string const& key,
JSON const& value,
size_t depth = 0);
// Write just the key of a new dictionary item, useful if writing
// nested structures. Calls writeNext.
QPDF_DLL
static void writeDictionaryKey(
Pipeline* p, bool& first, std::string const& key, size_t depth = 0);
QPDF_DLL
static void writeArrayItem(
Pipeline*, bool& first, JSON const& element, size_t depth = 0);
@ -101,7 +106,7 @@ class JSON
// for the parent object. Then start a new first for the nested
// item.
QPDF_DLL
static void writeNext(Pipeline* p, bool& first, size_t depth);
static void writeNext(Pipeline* p, bool& first, size_t depth = 0);
// The JSON spec calls dictionaries "objects", but that creates
// too much confusion when referring to instances of the JSON

View File

@ -77,6 +77,14 @@ JSON::writeArrayClose(Pipeline* p, bool first, size_t depth)
writeClose(p, first, depth, "]");
}
void
JSON::writeDictionaryKey(
Pipeline* p, bool& first, std::string const& key, size_t depth)
{
writeNext(p, first, depth);
*p << "\"" << key << "\": ";
}
void
JSON::writeDictionaryItem(
Pipeline* p,
@ -85,8 +93,7 @@ JSON::writeDictionaryItem(
JSON const& value,
size_t depth)
{
writeNext(p, first, depth);
*p << "\"" << key << "\": ";
writeDictionaryKey(p, first, key, depth);
value.write(p, 1 + depth);
}

View File

@ -1044,20 +1044,23 @@ QPDFJob::getWantedJSONObjects()
void
QPDFJob::doJSONObjects(Pipeline* p, bool& first, QPDF& pdf)
{
JSON::writeDictionaryKey(p, first, "objects", 0);
bool first_object = true;
JSON::writeDictionaryOpen(p, first_object, 1);
bool all_objects = m->json_objects.empty();
std::set<QPDFObjGen> wanted_og = getWantedJSONObjects();
JSON j_objects = JSON::makeDictionary();
if (all_objects || m->json_objects.count("trailer")) {
j_objects.addDictionaryMember(
"trailer", pdf.getTrailer().getJSON(true));
}
std::vector<QPDFObjectHandle> objects = pdf.getAllObjects();
for (auto& obj: objects) {
if (all_objects || wanted_og.count(obj.getObjGen())) {
j_objects.addDictionaryMember(obj.unparse(), obj.getJSON(true));
JSON::writeDictionaryItem(
p, first_object, obj.unparse(), obj.getJSON(true), 1);
}
}
JSON::writeDictionaryItem(p, first, "objects", j_objects, 0);
if (all_objects || m->json_objects.count("trailer")) {
JSON::writeDictionaryItem(
p, first_object, "trailer", pdf.getTrailer().getJSON(true), 1);
}
JSON::writeDictionaryClose(p, first_object, 1);
}
void
@ -1090,8 +1093,7 @@ QPDFJob::doJSONObjectinfo(Pipeline* p, bool& first, QPDF& pdf)
void
QPDFJob::doJSONPages(Pipeline* p, bool& first, QPDF& pdf)
{
JSON::writeNext(p, first, 0);
*p << "\"pages\": ";
JSON::writeDictionaryKey(p, first, "pages", 0);
bool first_page = true;
JSON::writeArrayOpen(p, first_page, 1);
QPDFPageDocumentHelper pdh(pdf);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -279,102 +279,6 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"2 0 R": {
"/Count": 9,
"/Kids": [
@ -390,69 +294,6 @@
],
"/Type": "/Pages"
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"3 0 R": {
"/Contents": "12 0 R",
"/MediaBox": [
@ -477,16 +318,6 @@
},
"/Type": "/Page"
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"4 0 R": {
"/Contents": "15 0 R",
"/MediaBox": [
@ -631,6 +462,175 @@
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"trailer": {
"/ID": [
"S¶Ł”łîð\u000e¢¬\u0007}_)\u0012¶",

View File

@ -279,107 +279,6 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Filter": "/FlateDecode",
"/Length": 97
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 51,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"15 0 R": {
"/Filter": "/FlateDecode",
"/Length": 102
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 454,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"17 0 R": {
"/Filter": "/FlateDecode",
"/Length": 108
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 7688,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"19 0 R": {
"/Filter": "/FlateDecode",
"/Length": 96
},
"2 0 R": {
"/Count": 9,
"/Kids": [
@ -395,76 +294,6 @@
],
"/Type": "/Pages"
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 46,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"21 0 R": {
"/Filter": "/FlateDecode",
"/Length": 99
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 849,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"23 0 R": {
"/Filter": "/FlateDecode",
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 6411,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"25 0 R": {
"/Filter": "/FlateDecode",
"/Length": 97
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 36,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"27 0 R": {
"/Filter": "/FlateDecode",
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 359,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"29 0 R": {
"/Filter": "/FlateDecode",
"/Length": 108
},
"3 0 R": {
"/Contents": "12 0 R",
"/MediaBox": [
@ -489,16 +318,6 @@
},
"/Type": "/Page"
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 37,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"4 0 R": {
"/Contents": "15 0 R",
"/MediaBox": [
@ -643,6 +462,187 @@
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Filter": "/FlateDecode",
"/Length": 97
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 51,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"15 0 R": {
"/Filter": "/FlateDecode",
"/Length": 102
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 454,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"17 0 R": {
"/Filter": "/FlateDecode",
"/Length": 108
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 7688,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"19 0 R": {
"/Filter": "/FlateDecode",
"/Length": 96
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 46,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"21 0 R": {
"/Filter": "/FlateDecode",
"/Length": 99
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 849,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"23 0 R": {
"/Filter": "/FlateDecode",
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 6411,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"25 0 R": {
"/Filter": "/FlateDecode",
"/Length": 97
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/FlateDecode",
"/Height": 48,
"/Length": 36,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"27 0 R": {
"/Filter": "/FlateDecode",
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 48,
"/Length": 359,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"29 0 R": {
"/Filter": "/FlateDecode",
"/Length": 108
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 48,
"/Length": 37,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 40
},
"trailer": {
"/ID": [
"Z§¯•Py»~46˛ı\u0011¢",

View File

@ -279,102 +279,6 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"2 0 R": {
"/Count": 9,
"/Kids": [
@ -390,69 +294,6 @@
],
"/Type": "/Pages"
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"3 0 R": {
"/Contents": "12 0 R",
"/MediaBox": [
@ -477,16 +318,6 @@
},
"/Type": "/Page"
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"4 0 R": {
"/Contents": "15 0 R",
"/MediaBox": [
@ -631,6 +462,175 @@
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"trailer": {
"/ID": [
"S¶Ł”łîð\u000e¢¬\u0007}_)\u0012¶",

View File

@ -279,102 +279,6 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"2 0 R": {
"/Count": 9,
"/Kids": [
@ -390,69 +294,6 @@
],
"/Type": "/Pages"
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"3 0 R": {
"/Contents": "12 0 R",
"/MediaBox": [
@ -477,16 +318,6 @@
},
"/Type": "/Page"
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"4 0 R": {
"/Contents": "15 0 R",
"/MediaBox": [
@ -631,6 +462,175 @@
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "27 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "28 0 R"
}
},
"/Type": "/Page"
},
"11 0 R": {
"/Contents": "29 0 R",
"/MediaBox": [
0,
0,
612,
392
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "13 0 R"
},
"/ProcSet": [
"/PDF",
"/Text",
"/ImageC"
],
"/XObject": {
"/Im1": "30 0 R"
}
},
"/Type": "/Page"
},
"12 0 R": {
"/Length": 95
},
"13 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
"/Name": "/F1",
"/Subtype": "/Type1",
"/Type": "/Font"
},
"14 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Height": 480,
"/Length": 768000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"15 0 R": {
"/Length": 101
},
"16 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 9364,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"17 0 R": {
"/Length": 107
},
"18 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceCMYK",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 768998,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"19 0 R": {
"/Length": 94
},
"20 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Height": 480,
"/Length": 576000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"21 0 R": {
"/Length": 100
},
"22 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 3650,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"23 0 R": {
"/Length": 106
},
"24 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceRGB",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 641497,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"25 0 R": {
"/Length": 95
},
"26 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Height": 480,
"/Length": 192000,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"27 0 R": {
"/Length": 101
},
"28 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/DCTDecode",
"/Height": 480,
"/Length": 2587,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"29 0 R": {
"/Length": 107
},
"30 0 R": {
"/BitsPerComponent": 8,
"/ColorSpace": "/DeviceGray",
"/Filter": "/RunLengthDecode",
"/Height": 480,
"/Length": 3001,
"/Subtype": "/Image",
"/Type": "/XObject",
"/Width": 400
},
"trailer": {
"/ID": [
"S¶Ł”łîð\u000e¢¬\u0007}_)\u0012¶",

View File

@ -629,6 +629,145 @@
"/Pages": "3 0 R",
"/Type": "/Catalog"
},
"2 0 R": {
"/Count": 6,
"/First": "4 0 R",
"/Last": "5 0 R",
"/Type": "/Outlines"
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"4 0 R": {
"/Count": 4,
"/Dest": [
"11 0 R",
"/XYZ",
null,
null,
null
],
"/First": "36 0 R",
"/Last": "37 0 R",
"/Next": "5 0 R",
"/Parent": "2 0 R",
"/Title": "Potato 1 -> 5: /XYZ null null null",
"/Type": "/Outline"
},
"5 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
66,
756,
3
],
"/Parent": "2 0 R",
"/Prev": "4 0 R",
"/Title": "Salad 2 -> 15: /XYZ 66 756 3",
"/Type": "/Outline"
},
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "48 0 R",
"/MediaBox": [
@ -646,118 +785,6 @@
},
"/Type": "/Page"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"18 0 R",
"/FitV",
100
],
"/First": "104 0 R",
"/Last": "105 0 R",
"/Next": "101 0 R",
"/Parent": "36 0 R",
"/Title": "Biherbadem 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"18 0 R",
"/XYZ",
null,
null,
null
],
"/First": "106 0 R",
"/Last": "106 0 R",
"/Parent": "36 0 R",
"/Prev": "100 0 R",
"/Title": "Gawehwehweh 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": "gabeebee",
"/Next": "103 0 R",
"/Parent": "37 0 R",
"/Title": "Gabeebeebee (name) 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"103 0 R": {
"/A": {
"/D": [
"6 0 R",
"/XYZ",
null,
null,
null
],
"/S": "/GoTo",
"/Type": "/Action"
},
"/Parent": "37 0 R",
"/Prev": "102 0 R",
"/Title": "Merschqaberschq (A) 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/A": {
"/D": "glarp",
"/S": "/GoTo",
"/Type": "/Action"
},
"/Next": "105 0 R",
"/Parent": "100 0 R",
"/Title": "Glarpenspliel (A, name) 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "104 0 R",
"/Title": "Hagoogamagoogle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": "108 0 R",
"/Parent": "101 0 R",
"/Title": "Jawarnianbvarwash 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"107 0 R": {
"/Names": [
"gabeebee",
[
"7 0 R",
"/FitR",
66,
714,
180,
770
],
"glarp",
[
"24 0 R",
"/XYZ",
null,
null,
null
]
]
},
"108 0 R": [
"28 0 R",
"/XYZ",
null,
null,
null
],
"11 0 R": {
"/Contents": "50 0 R",
"/MediaBox": [
@ -911,12 +938,6 @@
},
"/Type": "/Page"
},
"2 0 R": {
"/Count": 6,
"/First": "4 0 R",
"/Last": "5 0 R",
"/Type": "/Outlines"
},
"20 0 R": {
"/Contents": "68 0 R",
"/MediaBox": [
@ -1087,42 +1108,6 @@
},
"/Type": "/Page"
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"30 0 R": {
"/Contents": "88 0 R",
"/MediaBox": [
@ -1256,22 +1241,6 @@
"/Length": "39 0 R"
},
"39 0 R": 45,
"4 0 R": {
"/Count": 4,
"/Dest": [
"11 0 R",
"/XYZ",
null,
null,
null
],
"/First": "36 0 R",
"/Last": "37 0 R",
"/Next": "5 0 R",
"/Parent": "2 0 R",
"/Title": "Potato 1 -> 5: /XYZ null null null",
"/Type": "/Outline"
},
"40 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
@ -1299,19 +1268,6 @@
"/Length": "49 0 R"
},
"49 0 R": 45,
"5 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
66,
756,
3
],
"/Parent": "2 0 R",
"/Prev": "4 0 R",
"/Title": "Salad 2 -> 15: /XYZ 66 756 3",
"/Type": "/Outline"
},
"50 0 R": {
"/Length": "51 0 R"
},
@ -1332,23 +1288,6 @@
"/Length": "59 0 R"
},
"59 0 R": 45,
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"60 0 R": {
"/Length": "61 0 R"
},
@ -1369,23 +1308,6 @@
"/Length": "69 0 R"
},
"69 0 R": 46,
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"70 0 R": {
"/Length": "71 0 R"
},
@ -1406,23 +1328,6 @@
"/Length": "79 0 R"
},
"79 0 R": 46,
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"80 0 R": {
"/Length": "81 0 R"
},
@ -1443,23 +1348,6 @@
"/Length": "89 0 R"
},
"89 0 R": 46,
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"90 0 R": {
"/Length": "91 0 R"
},
@ -1480,6 +1368,118 @@
"/Length": "99 0 R"
},
"99 0 R": 46,
"100 0 R": {
"/Count": -2,
"/Dest": [
"18 0 R",
"/FitV",
100
],
"/First": "104 0 R",
"/Last": "105 0 R",
"/Next": "101 0 R",
"/Parent": "36 0 R",
"/Title": "Biherbadem 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"18 0 R",
"/XYZ",
null,
null,
null
],
"/First": "106 0 R",
"/Last": "106 0 R",
"/Parent": "36 0 R",
"/Prev": "100 0 R",
"/Title": "Gawehwehweh 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": "gabeebee",
"/Next": "103 0 R",
"/Parent": "37 0 R",
"/Title": "Gabeebeebee (name) 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"103 0 R": {
"/A": {
"/D": [
"6 0 R",
"/XYZ",
null,
null,
null
],
"/S": "/GoTo",
"/Type": "/Action"
},
"/Parent": "37 0 R",
"/Prev": "102 0 R",
"/Title": "Merschqaberschq (A) 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/A": {
"/D": "glarp",
"/S": "/GoTo",
"/Type": "/Action"
},
"/Next": "105 0 R",
"/Parent": "100 0 R",
"/Title": "Glarpenspliel (A, name) 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "104 0 R",
"/Title": "Hagoogamagoogle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": "108 0 R",
"/Parent": "101 0 R",
"/Title": "Jawarnianbvarwash 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"107 0 R": {
"/Names": [
"gabeebee",
[
"7 0 R",
"/FitR",
66,
714,
180,
770
],
"glarp",
[
"24 0 R",
"/XYZ",
null,
null,
null
]
]
},
"108 0 R": [
"28 0 R",
"/XYZ",
null,
null,
null
],
"trailer": {
"/ID": [
"Õ+\f\u0017Â\u0016Pib®gC¯ì&\u000f",

View File

@ -744,6 +744,145 @@
"/Pages": "3 0 R",
"/Type": "/Catalog"
},
"2 0 R": {
"/Count": 6,
"/First": "4 0 R",
"/Last": "5 0 R",
"/Type": "/Outlines"
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"4 0 R": {
"/Count": 4,
"/Dest": [
"11 0 R",
"/XYZ",
null,
null,
null
],
"/First": "36 0 R",
"/Last": "37 0 R",
"/Next": "5 0 R",
"/Parent": "2 0 R",
"/Title": "•Potato 1 -> 5: /XYZ null null null",
"/Type": "/Outline"
},
"5 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
66,
756,
3
],
"/Parent": "2 0 R",
"/Prev": "4 0 R",
"/Title": "•Salad 2 -> 15: /XYZ 66 756 3",
"/Type": "/Outline"
},
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "48 0 R",
"/MediaBox": [
@ -761,113 +900,6 @@
},
"/Type": "/Page"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"18 0 R",
"/FitV",
100
],
"/First": "104 0 R",
"/Last": "105 0 R",
"/Next": "101 0 R",
"/Parent": "36 0 R",
"/Title": "•Biherbadem 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"18 0 R",
"/XYZ",
null,
null,
null
],
"/First": "106 0 R",
"/Last": "106 0 R",
"/Parent": "36 0 R",
"/Prev": "100 0 R",
"/Title": "•Gawehwehweh 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": "/gabeebee",
"/Next": "103 0 R",
"/Parent": "37 0 R",
"/Title": "•Gabeebeebee (name) 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"103 0 R": {
"/A": {
"/D": [
"6 0 R",
"/XYZ",
null,
null,
null
],
"/S": "/GoTo",
"/Type": "/Action"
},
"/Parent": "37 0 R",
"/Prev": "102 0 R",
"/Title": "•Merschqaberschq (A) 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/A": {
"/D": "/glarp",
"/S": "/GoTo",
"/Type": "/Action"
},
"/Next": "105 0 R",
"/Parent": "100 0 R",
"/Title": "•Glarpenspliel (A, name) 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "104 0 R",
"/Title": "•Hagoogamagoogle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"28 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "•Jawarnianbvarwash 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"107 0 R": {
"/gabeebee": [
"7 0 R",
"/FitR",
66,
714,
180,
770
],
"/glarp": [
"24 0 R",
"/XYZ",
null,
null,
null
]
},
"11 0 R": {
"/Contents": "50 0 R",
"/MediaBox": [
@ -1021,12 +1053,6 @@
},
"/Type": "/Page"
},
"2 0 R": {
"/Count": 6,
"/First": "4 0 R",
"/Last": "5 0 R",
"/Type": "/Outlines"
},
"20 0 R": {
"/Contents": "68 0 R",
"/MediaBox": [
@ -1197,42 +1223,6 @@
},
"/Type": "/Page"
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"30 0 R": {
"/Contents": "88 0 R",
"/MediaBox": [
@ -1366,22 +1356,6 @@
"/Length": "39 0 R"
},
"39 0 R": 44,
"4 0 R": {
"/Count": 4,
"/Dest": [
"11 0 R",
"/XYZ",
null,
null,
null
],
"/First": "36 0 R",
"/Last": "37 0 R",
"/Next": "5 0 R",
"/Parent": "2 0 R",
"/Title": "•Potato 1 -> 5: /XYZ null null null",
"/Type": "/Outline"
},
"40 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
@ -1409,19 +1383,6 @@
"/Length": "49 0 R"
},
"49 0 R": 44,
"5 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
66,
756,
3
],
"/Parent": "2 0 R",
"/Prev": "4 0 R",
"/Title": "•Salad 2 -> 15: /XYZ 66 756 3",
"/Type": "/Outline"
},
"50 0 R": {
"/Length": "51 0 R"
},
@ -1442,23 +1403,6 @@
"/Length": "59 0 R"
},
"59 0 R": 44,
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"60 0 R": {
"/Length": "61 0 R"
},
@ -1479,23 +1423,6 @@
"/Length": "69 0 R"
},
"69 0 R": 45,
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"70 0 R": {
"/Length": "71 0 R"
},
@ -1516,23 +1443,6 @@
"/Length": "79 0 R"
},
"79 0 R": 45,
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"80 0 R": {
"/Length": "81 0 R"
},
@ -1553,23 +1463,6 @@
"/Length": "89 0 R"
},
"89 0 R": 45,
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"90 0 R": {
"/Length": "91 0 R"
},
@ -1590,6 +1483,113 @@
"/Length": "99 0 R"
},
"99 0 R": 45,
"100 0 R": {
"/Count": -2,
"/Dest": [
"18 0 R",
"/FitV",
100
],
"/First": "104 0 R",
"/Last": "105 0 R",
"/Next": "101 0 R",
"/Parent": "36 0 R",
"/Title": "•Biherbadem 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"18 0 R",
"/XYZ",
null,
null,
null
],
"/First": "106 0 R",
"/Last": "106 0 R",
"/Parent": "36 0 R",
"/Prev": "100 0 R",
"/Title": "•Gawehwehweh 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": "/gabeebee",
"/Next": "103 0 R",
"/Parent": "37 0 R",
"/Title": "•Gabeebeebee (name) 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"103 0 R": {
"/A": {
"/D": [
"6 0 R",
"/XYZ",
null,
null,
null
],
"/S": "/GoTo",
"/Type": "/Action"
},
"/Parent": "37 0 R",
"/Prev": "102 0 R",
"/Title": "•Merschqaberschq (A) 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/A": {
"/D": "/glarp",
"/S": "/GoTo",
"/Type": "/Action"
},
"/Next": "105 0 R",
"/Parent": "100 0 R",
"/Title": "•Glarpenspliel (A, name) 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "104 0 R",
"/Title": "•Hagoogamagoogle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"28 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "•Jawarnianbvarwash 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"107 0 R": {
"/gabeebee": [
"7 0 R",
"/FitR",
66,
714,
180,
770
],
"/glarp": [
"24 0 R",
"/XYZ",
null,
null,
null
]
},
"trailer": {
"/ID": [
"Õ+\f\u0017Â\u0016Pib®gC¯ì&\u000f",

View File

@ -70,6 +70,161 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"2 0 R": {
"/Count": 30,
"/Kids": [
"3 0 R",
"4 0 R",
"5 0 R",
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R"
],
"/Type": "/Pages"
},
"3 0 R": {
"/Contents": "33 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"4 0 R": {
"/Contents": "37 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"5 0 R": {
"/Contents": "39 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"6 0 R": {
"/Contents": "41 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"7 0 R": {
"/Contents": "43 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"8 0 R": {
"/Contents": "45 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"9 0 R": {
"/Contents": "47 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "49 0 R",
"/MediaBox": [
@ -87,101 +242,6 @@
},
"/Type": "/Page"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"15 0 R",
"/FitV",
100
],
"/First": "102 0 R",
"/Last": "103 0 R",
"/Next": "101 0 R",
"/Parent": "98 0 R",
"/Title": "Isosicle 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"15 0 R",
"/XYZ",
null,
null,
null
],
"/First": "104 0 R",
"/Last": "104 0 R",
"/Parent": "98 0 R",
"/Prev": "100 0 R",
"/Title": "Isosicle 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
null,
null,
null
],
"/Next": "103 0 R",
"/Parent": "100 0 R",
"/Title": "Isosicle 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"103 0 R": {
"/Dest": [
"22 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "102 0 R",
"/Title": "Isosicle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "Isosicle 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"4 0 R",
"/FitR",
66,
714,
180,
770
],
"/Next": "106 0 R",
"/Parent": "99 0 R",
"/Title": "Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"3 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "99 0 R",
"/Prev": "105 0 R",
"/Title": "Trepsicle 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"11 0 R": {
"/Contents": "51 0 R",
"/MediaBox": [
@ -335,42 +395,6 @@
},
"/Type": "/Page"
},
"2 0 R": {
"/Count": 30,
"/Kids": [
"3 0 R",
"4 0 R",
"5 0 R",
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R"
],
"/Type": "/Pages"
},
"20 0 R": {
"/Contents": "69 0 R",
"/MediaBox": [
@ -541,23 +565,6 @@
},
"/Type": "/Page"
},
"3 0 R": {
"/Contents": "33 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"30 0 R": {
"/Contents": "89 0 R",
"/MediaBox": [
@ -631,23 +638,6 @@
"39 0 R": {
"/Length": "40 0 R"
},
"4 0 R": {
"/Contents": "37 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"40 0 R": 46,
"41 0 R": {
"/Length": "42 0 R"
@ -668,23 +658,6 @@
"49 0 R": {
"/Length": "50 0 R"
},
"5 0 R": {
"/Contents": "39 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"50 0 R": 46,
"51 0 R": {
"/Length": "52 0 R"
@ -705,23 +678,6 @@
"59 0 R": {
"/Length": "60 0 R"
},
"6 0 R": {
"/Contents": "41 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"60 0 R": 47,
"61 0 R": {
"/Length": "62 0 R"
@ -742,23 +698,6 @@
"69 0 R": {
"/Length": "70 0 R"
},
"7 0 R": {
"/Contents": "43 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"70 0 R": 47,
"71 0 R": {
"/Length": "72 0 R"
@ -779,23 +718,6 @@
"79 0 R": {
"/Length": "80 0 R"
},
"8 0 R": {
"/Contents": "45 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"80 0 R": 47,
"81 0 R": {
"/Length": "82 0 R"
@ -816,23 +738,6 @@
"89 0 R": {
"/Length": "90 0 R"
},
"9 0 R": {
"/Contents": "47 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"90 0 R": 47,
"91 0 R": {
"/Length": "92 0 R"
@ -904,6 +809,101 @@
"/Title": "Sandy ÷Σανδι÷ 1.2 -> 13: /FitH 792",
"/Type": "/Outline"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"15 0 R",
"/FitV",
100
],
"/First": "102 0 R",
"/Last": "103 0 R",
"/Next": "101 0 R",
"/Parent": "98 0 R",
"/Title": "Isosicle 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"15 0 R",
"/XYZ",
null,
null,
null
],
"/First": "104 0 R",
"/Last": "104 0 R",
"/Parent": "98 0 R",
"/Prev": "100 0 R",
"/Title": "Isosicle 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
null,
null,
null
],
"/Next": "103 0 R",
"/Parent": "100 0 R",
"/Title": "Isosicle 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"103 0 R": {
"/Dest": [
"22 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "102 0 R",
"/Title": "Isosicle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "Isosicle 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"4 0 R",
"/FitR",
66,
714,
180,
770
],
"/Next": "106 0 R",
"/Parent": "99 0 R",
"/Title": "Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"3 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "99 0 R",
"/Prev": "105 0 R",
"/Title": "Trepsicle 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"trailer": {
"/Root": "1 0 R",
"/Size": 107

View File

@ -861,6 +861,161 @@
"/Pages": "2 0 R",
"/Type": "/Catalog"
},
"2 0 R": {
"/Count": 30,
"/Kids": [
"3 0 R",
"4 0 R",
"5 0 R",
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R"
],
"/Type": "/Pages"
},
"3 0 R": {
"/Contents": "33 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"4 0 R": {
"/Contents": "37 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"5 0 R": {
"/Contents": "39 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"6 0 R": {
"/Contents": "41 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"7 0 R": {
"/Contents": "43 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"8 0 R": {
"/Contents": "45 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"9 0 R": {
"/Contents": "47 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "49 0 R",
"/MediaBox": [
@ -878,101 +1033,6 @@
},
"/Type": "/Page"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"15 0 R",
"/FitV",
100
],
"/First": "102 0 R",
"/Last": "103 0 R",
"/Next": "101 0 R",
"/Parent": "98 0 R",
"/Title": "Isosicle 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"15 0 R",
"/XYZ",
null,
null,
null
],
"/First": "104 0 R",
"/Last": "104 0 R",
"/Parent": "98 0 R",
"/Prev": "100 0 R",
"/Title": "Isosicle 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
null,
null,
null
],
"/Next": "103 0 R",
"/Parent": "100 0 R",
"/Title": "Isosicle 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"103 0 R": {
"/Dest": [
"22 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "102 0 R",
"/Title": "Isosicle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "Isosicle 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"4 0 R",
"/FitR",
66,
714,
180,
770
],
"/Next": "106 0 R",
"/Parent": "99 0 R",
"/Title": "Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"3 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "99 0 R",
"/Prev": "105 0 R",
"/Title": "Trepsicle 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"11 0 R": {
"/Contents": "51 0 R",
"/MediaBox": [
@ -1126,42 +1186,6 @@
},
"/Type": "/Page"
},
"2 0 R": {
"/Count": 30,
"/Kids": [
"3 0 R",
"4 0 R",
"5 0 R",
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R"
],
"/Type": "/Pages"
},
"20 0 R": {
"/Contents": "69 0 R",
"/MediaBox": [
@ -1332,23 +1356,6 @@
},
"/Type": "/Page"
},
"3 0 R": {
"/Contents": "33 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"30 0 R": {
"/Contents": "89 0 R",
"/MediaBox": [
@ -1422,23 +1429,6 @@
"39 0 R": {
"/Length": "40 0 R"
},
"4 0 R": {
"/Contents": "37 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"40 0 R": 46,
"41 0 R": {
"/Length": "42 0 R"
@ -1459,23 +1449,6 @@
"49 0 R": {
"/Length": "50 0 R"
},
"5 0 R": {
"/Contents": "39 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"50 0 R": 46,
"51 0 R": {
"/Length": "52 0 R"
@ -1496,23 +1469,6 @@
"59 0 R": {
"/Length": "60 0 R"
},
"6 0 R": {
"/Contents": "41 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"60 0 R": 47,
"61 0 R": {
"/Length": "62 0 R"
@ -1533,23 +1489,6 @@
"69 0 R": {
"/Length": "70 0 R"
},
"7 0 R": {
"/Contents": "43 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"70 0 R": 47,
"71 0 R": {
"/Length": "72 0 R"
@ -1570,23 +1509,6 @@
"79 0 R": {
"/Length": "80 0 R"
},
"8 0 R": {
"/Contents": "45 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"80 0 R": 47,
"81 0 R": {
"/Length": "82 0 R"
@ -1607,23 +1529,6 @@
"89 0 R": {
"/Length": "90 0 R"
},
"9 0 R": {
"/Contents": "47 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "2 0 R",
"/Resources": {
"/Font": {
"/F1": "35 0 R"
},
"/ProcSet": "36 0 R"
},
"/Type": "/Page"
},
"90 0 R": 47,
"91 0 R": {
"/Length": "92 0 R"
@ -1695,6 +1600,101 @@
"/Title": "Sandy ÷Σανδι÷ 1.2 -> 13: /FitH 792",
"/Type": "/Outline"
},
"100 0 R": {
"/Count": -2,
"/Dest": [
"15 0 R",
"/FitV",
100
],
"/First": "102 0 R",
"/Last": "103 0 R",
"/Next": "101 0 R",
"/Parent": "98 0 R",
"/Title": "Isosicle 1.1.1 -> 12: /FitV 100",
"/Type": "/Outline"
},
"101 0 R": {
"/Count": 1,
"/Dest": [
"15 0 R",
"/XYZ",
null,
null,
null
],
"/First": "104 0 R",
"/Last": "104 0 R",
"/Parent": "98 0 R",
"/Prev": "100 0 R",
"/Title": "Isosicle 1.1.2 -> 12: /XYZ null null null",
"/Type": "/Outline"
},
"102 0 R": {
"/Dest": [
"21 0 R",
"/XYZ",
null,
null,
null
],
"/Next": "103 0 R",
"/Parent": "100 0 R",
"/Title": "Isosicle 1.1.1.1 -> 18: /XYZ null null null",
"/Type": "/Outline"
},
"103 0 R": {
"/Dest": [
"22 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "100 0 R",
"/Prev": "102 0 R",
"/Title": "Isosicle 1.1.1.2 -> 19: /XYZ null null null",
"/Type": "/Outline"
},
"104 0 R": {
"/Dest": [
"25 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "101 0 R",
"/Title": "Isosicle 1.1.2.1 -> 22: /XYZ null null null",
"/Type": "/Outline"
},
"105 0 R": {
"/Dest": [
"4 0 R",
"/FitR",
66,
714,
180,
770
],
"/Next": "106 0 R",
"/Parent": "99 0 R",
"/Title": "Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770",
"/Type": "/Outline"
},
"106 0 R": {
"/Dest": [
"3 0 R",
"/XYZ",
null,
null,
null
],
"/Parent": "99 0 R",
"/Prev": "105 0 R",
"/Title": "Trepsicle 1.2.2 -> 0: /XYZ null null null",
"/Type": "/Outline"
},
"trailer": {
"/Root": "1 0 R",
"/Size": 107

View File

@ -543,6 +543,154 @@
"/Pages": "3 0 R",
"/Type": "/Catalog"
},
"2 0 R": {
"/Kids": [
"4 0 R",
"5 0 R"
]
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"4 0 R": {
"/Kids": [
"36 0 R",
"37 0 R"
],
"/Limits": [
0,
19
]
},
"5 0 R": {
"/Limits": [
20,
29
],
"/Nums": [
20,
{
"/S": "/D",
"/St": 12
},
22,
{
"/S": "/D",
"/St": 16059
},
23,
{
"/S": "/R",
"/St": 50
},
29,
{
"/S": "/r",
"/St": 54
}
]
},
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"10 0 R": {
"/Contents": "48 0 R",
"/MediaBox": [
@ -713,12 +861,6 @@
},
"/Type": "/Page"
},
"2 0 R": {
"/Kids": [
"4 0 R",
"5 0 R"
]
},
"20 0 R": {
"/Contents": "68 0 R",
"/MediaBox": [
@ -889,42 +1031,6 @@
},
"/Type": "/Page"
},
"3 0 R": {
"/Count": 30,
"/Kids": [
"6 0 R",
"7 0 R",
"8 0 R",
"9 0 R",
"10 0 R",
"11 0 R",
"12 0 R",
"13 0 R",
"14 0 R",
"15 0 R",
"16 0 R",
"17 0 R",
"18 0 R",
"19 0 R",
"20 0 R",
"21 0 R",
"22 0 R",
"23 0 R",
"24 0 R",
"25 0 R",
"26 0 R",
"27 0 R",
"28 0 R",
"29 0 R",
"30 0 R",
"31 0 R",
"32 0 R",
"33 0 R",
"34 0 R",
"35 0 R"
],
"/Type": "/Pages"
},
"30 0 R": {
"/Contents": "88 0 R",
"/MediaBox": [
@ -1093,16 +1199,6 @@
"/Length": "39 0 R"
},
"39 0 R": 46,
"4 0 R": {
"/Kids": [
"36 0 R",
"37 0 R"
],
"/Limits": [
0,
19
]
},
"40 0 R": {
"/BaseFont": "/Helvetica",
"/Encoding": "/WinAnsiEncoding",
@ -1130,34 +1226,6 @@
"/Length": "49 0 R"
},
"49 0 R": 46,
"5 0 R": {
"/Limits": [
20,
29
],
"/Nums": [
20,
{
"/S": "/D",
"/St": 12
},
22,
{
"/S": "/D",
"/St": 16059
},
23,
{
"/S": "/R",
"/St": 50
},
29,
{
"/S": "/r",
"/St": 54
}
]
},
"50 0 R": {
"/Length": "51 0 R"
},
@ -1178,23 +1246,6 @@
"/Length": "59 0 R"
},
"59 0 R": 46,
"6 0 R": {
"/Contents": "38 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"60 0 R": {
"/Length": "61 0 R"
},
@ -1215,23 +1266,6 @@
"/Length": "69 0 R"
},
"69 0 R": 47,
"7 0 R": {
"/Contents": "42 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"70 0 R": {
"/Length": "71 0 R"
},
@ -1252,23 +1286,6 @@
"/Length": "79 0 R"
},
"79 0 R": 47,
"8 0 R": {
"/Contents": "44 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"80 0 R": {
"/Length": "81 0 R"
},
@ -1289,23 +1306,6 @@
"/Length": "89 0 R"
},
"89 0 R": 47,
"9 0 R": {
"/Contents": "46 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "40 0 R"
},
"/ProcSet": "41 0 R"
},
"/Type": "/Page"
},
"90 0 R": {
"/Length": "91 0 R"
},

View File

@ -8,7 +8,6 @@
"/Pages": "3 0 R",
"/Type": "/Catalog"
},
"10 0 R": 47,
"2 0 R": {
"/CreationDate": "D:20120621124041",
"/Producer": "Apex PDFWriter"
@ -75,6 +74,7 @@
"9 0 R": {
"/Length": "10 0 R"
},
"10 0 R": 47,
"trailer": {
"/ID": [
"û˘·ƒÿ{5\u0005ÚS*ºo",

View File

@ -40,27 +40,6 @@
"/Pages": "3 0 R",
"/Type": "/Catalog"
},
"10 0 R": 47,
"11 0 R": {
"/Contents": "6 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "8 0 R"
},
"/ProcSet": [
"/PDF",
"/Text"
]
},
"/Type": "/Page"
},
"2 0 R": {
"/CreationDate": "D:20120621124041",
"/Producer": "Apex PDFWriter"
@ -127,6 +106,27 @@
"9 0 R": {
"/Length": "10 0 R"
},
"10 0 R": 47,
"11 0 R": {
"/Contents": "6 0 R",
"/MediaBox": [
0,
0,
612,
792
],
"/Parent": "3 0 R",
"/Resources": {
"/Font": {
"/F1": "8 0 R"
},
"/ProcSet": [
"/PDF",
"/Text"
]
},
"/Type": "/Page"
},
"trailer": {
"/ID": [
"û˘·ƒÿ{5\u0005ÚS*ºo",