Skip to content

Instantly share code, notes, and snippets.

@fabiovalse
Last active April 27, 2016 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiovalse/cd8e12c7a18495980bd0 to your computer and use it in GitHub Desktop.
Save fabiovalse/cd8e12c7a18495980bd0 to your computer and use it in GitHub Desktop.
DBpedia ATLAS (GOSPER curve)

This experiment shows a little part of DBpedia: the Event sub-hierarchy. It represents it as a map in which the regions are the ontological classes in the sub-hierarchy. Moreover, in order to create the regions, a GOSPER curve has been used for the cell displacement. Each cell has an hexagonal shape and it represents a DBpedia entity. Hence, the area of each region shows the size of a class in the overall Event hierarchy. The different region lines (solid, dashed and with different thickness) give the class depth in the hierarchy.

The map shows 45377 cells (entities) and 24 regions (ontological classes).

Future works will include:

  • Information about the cells;

  • Region labeling;

  • Semantic Zoom.

/* read dbpedia-imports data and provide it in form of tree (for the package hierarchy) and links (for the imports)
*/
/* code adapted from http://bl.ocks.org/mbostock/4341134
*/
(function() {
window.dbpedia_reader = {
// Lazily construct the package hierarchy from class names.
tree1: function(classes) {
var map = {};
function find(name, data) {
var node = map[name], i;
if (!node) {
node = map[name] = data || {name: name, children: []};
if (name.length) {
node.parent = find(name.substring(0, i = name.lastIndexOf(".")));
node.parent.children.push(node);
node.key = name.substring(i + 1);
}
}
return node;
}
classes.forEach(function(d) {
find(d.name, d);
});
var dbpedia = map['dbpedia'];
delete dbpedia.parent; // CHANGED root node is not ""
return dbpedia;
},
tree: function(classes) {
function treeVisit(node, parent) {
node.key = node.name.replace("http://dbpedia.org/ontology/", "");
for (var i = 0; i < node.size; i++) {
newNode = {"name": ""+(i+1)+"", "size": 0};
if (!node.children)
node.children = [];
node.children.push(newNode);
}
if (parent != null) {
node.parent = parent;
node.name = parent.name + "." + node.key;
} else
node.name = node.key;
if (node.children) {
node.children.forEach(function(d) {
treeVisit(d, node);
});
}
return node;
}
return treeVisit(classes, null);
},
// Return a list of imports for the given array of nodes.
imports: function(nodes) {
var map = {},
imports = [];
// Compute a map from name to node.
nodes.forEach(function(d) {
map[d.name] = d;
});
// For each import, construct a link from the source to target node.
nodes.forEach(function(d) {
if (d.imports) d.imports.forEach(function(i) {
imports.push({source: map[d.name], target: map[i]});
});
});
return imports;
}
};
;
}).call(this);
@font-face {
font-family: "Lacuna";
src: url("lacuna.ttf");
}
/* CELL
*/
.cell {
shape-rendering: crispEdges;
}
.cell:hover {
fill: "FFF";
}
/* LAND
*/
#land {
vector-effect: non-scaling-stroke;
shape-rendering: crispEdges;
}
.land-glow-outer {
fill: none;
stroke: #eeeeee;
stroke-width: 16px;
}
.land-glow-inner {
fill: none;
stroke: #dddddd;
stroke-width: 8px;
}
.land-fill {
fill: teal;
stroke: #444444;
stroke-width: 2px;
}
/* REGION
*/
.region {
fill: none;
stroke: #303030;
/*shape-rendering: crispEdges;*/
vector-effect: non-scaling-stroke;
}
.region_label, .leaf_label {
fill: #333333;
text-anchor: middle;
pointer-events: none;
font-family: "Lacuna", sans-serif;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.region_label {
fill: #1d183f;
font-weight: bold;
font-size: 20px;
}
.label {
fill: #333333;
text-anchor: middle;
pointer-events: none;
font-family: "Lacuna";
text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.graph_link {
stroke: teal;
stroke-width: 0.05;
fill: none;
pointer-events: none;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DBpedia ATLAS (GOSPER curve)</title>
<link type="text/css" href="index.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://jsclipper.sourceforge.net/6.1.3.1/clipper.js"></script>
<script src="zip.js"></script>
<script src="dbpedia_reader.js"></script>
<script src="tree_utils.js"></script>
<script src="sfc_layout.js"></script>
<script src="jigsaw.js"></script>
</head>
<body>
</body>
<script src="index.js"></script>
</html>
(function() {
var height, map, svg, vis, width, zoom, levels;
width = document.body.clientWidth;
height = document.body.clientHeight;
/* create the SVG
*/
svg = d3.select('body').append('svg').attr('width', width).attr('height', height);
vis = svg.append('g');
map = vis.append('g').attr('transform', "translate(" + (width / 2) + "," + (height / 2) + ")scale(.13,.13)");
/* define a zoom behavior
*/
zoom = d3.behavior.zoom().scaleExtent([0, 5]).on('zoom', function() {
/* whenever the user zooms, modify translation and scale of the zoom group accordingly
*/
return vis.attr('transform', "translate(" + (zoom.translate()) + ")scale(" + (zoom.scale()) + ")");
});
/* bind the zoom behavior to the main SVG
*/
svg.call(zoom);
d3.json('weighted_ontology.json', function(data) {
var defs, depth_color, hierarchy, leaves, nodes, scale, tree;
tree = dbpedia_reader.tree(data.children[14]);
hierarchy = d3.layout.hierarchy();
nodes = hierarchy(tree);
/* this tree is unordered, we need a canonical ordering for it
*/
tree_utils.canonical_sort(tree);
tree_utils.compute_leaf_descendants(tree);
/* tree height
*/
tree_utils.compute_height(tree);
/* obtain the sequence of leaves
*/
leaves = tree_utils.get_leaves(tree);
/* VISUALIZATION
*/
/* compute the space-filling curve layout
*/
/*spiral = {
tiling: 'hex',
base: 3,
angle: Math.PI / 3,
axiom: '-Y',
rules: {
X: 'XF',
Y: 'Y+XF+X+XF+XF+XF+XF'
}
};*/
scale = 25;
//translation = sfc_layout.displace(leaves, spiral, scale, scale, -Math.PI/6);
translation = sfc_layout.displace(leaves, sfc_layout.GOSPER, scale, scale, -Math.PI/6);
//translation = sfc_layout.displace(leaves, sfc_layout.HILBERT, scale, scale, 0);
/* compute also the position of internal nodes
*/
//sfc_layout.displace_tree(tree);
/* translate cells to label font size
*/
/*cells2fontsize = function(x) {
return Math.log(x) * scale;
}*/
/*d3.scale.pow()
.exponent(3)
.domain([1, leaves.length])
.range([4, 100]);*/
/* define a color scale for leaf depth
*/
depth_color = d3.scale.linear()
.domain([0, d3.max(leaves, function(d) {return d.depth;})])
.range(['#FFF7DB', '#F0A848'])
.interpolate(d3.interpolateHcl);
/* group leaves by depth
*/
levels = [];
for (depth = 0, _ref3 = tree.height; 0 <= _ref3 ? depth <= _ref3 : depth >= _ref3; 0 <= _ref3 ? depth++ : depth--) {
levels.push([]);
}
for (_l = 0, _len4 = nodes.length; _l < _len4; _l++) {
node = nodes[_l];
levels[node.depth].push(node);
}
/* compute all the internal nodes regions
*/
jigsaw.treemap(tree, scale, jigsaw.HEX_CELL);
//jigsaw.treemap(tree, scale, jigsaw.SQUARE_CELL);
/* define the level zero region (the land)
*/
/*defs = svg.append('defs');
defs.append('path')
.attr('id', 'land')
.attr('d', jigsaw.get_svg_path(tree.region, scale/scale));*/
/* faux land glow (using filters takes too much resources)
*/
map.append('use').attr('class', 'land-glow-outer').attr('xlink:href', '#land');
map.append('use').attr('class', 'land-glow-inner').attr('xlink:href', '#land');
/* DRAW the CELLS
*/
cells = map.selectAll('.cell')
.data(leaves)
.enter().append('path')
.attr('class', 'cell')
.attr('d', jigsaw.hex_generate_svg_path(scale))
//.attr('d', jigsaw.square_generate_svg_path(scale))
.attr('transform', function(d) {
return "translate(" + d.x + "," + d.y + ")";
})
.attr('fill', function(d) {
return depth_color(d.depth);
//return '#F0A848';
})
.attr('opacity', 0.5);
cells.append("title")
.text(function(d) {
return d.name;
});
/* DRAW BOUNDARIES
*/
/*depth2width = function(x) {
//return (20 - 0.2) / Math.pow(2, x) + 0.2;
return Math.pow(6 - x, 3)/3;
};*/
depth2width = d3.scale.pow()
.exponent(-2)
.domain([1, 4])
.range([8, 1]);
old_highlighted_depth = null;
regions_g = map.append('g');
regions_levels = regions_g.selectAll('.level')
.data(levels).enter()
.append('g')
.attr('class', 'level');
regions_levels.selectAll('.region').data(function(level) {
return level.filter(function(d) {
return true;
});
}).enter().append('path').attr('class', 'region').attr('d', function(d) {
if (d.height > 1) {
return jigsaw.get_svg_path(d.region);
}
}).attr('stroke-width', function(d) {
switch(d.depth) {
case 1:
return 3;
case 2:
return 2.2;
case 3:
return 1;
case 4:
return 0.5;
case 5:
return 0.5;
}
}).attr('stroke', 'white')
.style("stroke-dasharray", function(d) {
switch(d.depth) {
case 2:
return "3, 4";
case 3:
return "3, 3";
case 4:
return "1, 4";
}
});
/* draw the level one region boundaries
*/
/* draw the land border (above cells)
*/
map.append('use').attr('class', 'land-fill').attr('xlink:href', '#land');
/* draw labels
*/
/*return map.selectAll('.label').data(nodes.filter(function(d) {
return d.depth === 1;
})).enter().append('text').attr('class', 'label').attr('font-size', function(d) {
return cells2fontsize(d.leaf_descendants.length);
}).attr('dy', '0.35em').attr('transform', function(d) {
return "translate(" + d.x + "," + d.y + ")";
}).text(function(d) {
return d.name.split('.').reverse()[0];
});*/
/* draw the leaf labels
*/
/*return map.selectAll('.label')
.data(leaves).enter()
.append('text')
.attr('class', 'label')
.attr('font-size', '2px')
.attr('dy', '0.35em')
.attr('transform', function(d) {
return "translate(" + d.x + "," + d.y + ")";
}).text(function(d) {
return d.key;
});*/
});
}).call(this);
(function() {
window.jigsaw = {
hex_generate_svg_path: function(scale) {
var a, r;
a = scale / 2;
r = a / Math.sin(Math.PI / 3);
return "M" + r + " 0 L" + (r / 2) + " " + a + " L" + (-r / 2) + " " + a + " L" + (-r) + " 0 L" + (-r / 2) + " " + (-a) + " L" + (r / 2) + " " + (-a) + " Z";
},
square_generate_svg_path: function(scale) {
var a;
a = scale / 2;
return "M" + (-a) + " " + (-a) + " L" + (-a) + " " + a + " L" + a + " " + a + " L" + a + " " + (-a) + " Z";
},
iso_generate_svg_path: function(scale) {
var rx, ry;
rx = scale * Math.sqrt(2) / 2;
ry = scale * Math.sqrt(2) / (2 * Math.sqrt(3));
return "M" + 0 + " " + (-ry) + " L" + rx + " " + 0 + " L" + 0 + " " + ry + " L" + (-rx) + " " + 0 + " Z";
},
HEX_CELL: function(node, scale) {
var a, r, region;
a = scale / 2;
r = a / Math.sin(Math.PI / 3);
region = [
[
{
X: node.x + r,
Y: node.y
}, {
X: node.x + r / 2,
Y: node.y + a
}, {
X: node.x - r / 2,
Y: node.y + a
}, {
X: node.x - r,
Y: node.y
}, {
X: node.x - r / 2,
Y: node.y - a
}, {
X: node.x + r / 2,
Y: node.y - a
}
]
];
return region;
},
SQUARE_CELL: function(node, scale) {
var a, region;
a = scale / 2;
region = [
[
{
X: node.x - a,
Y: node.y - a
}, {
X: node.x - a,
Y: node.y + a
}, {
X: node.x + a,
Y: node.y + a
}, {
X: node.x + a,
Y: node.y - a
}
]
];
return region;
},
ISO_CELL: function(node, scale) {
var region, rx, ry;
rx = scale * Math.sqrt(2) / 2;
ry = scale * Math.sqrt(2) / (2 * Math.sqrt(3));
return region = [
[
{
X: node.x,
Y: node.y - ry
}, {
X: node.x + rx,
Y: node.y
}, {
X: node.x,
Y: node.y + ry
}, {
X: node.x - rx,
Y: node.y
}
]
];
},
treemap: function(node, scale, base) {
var child, children_paths, cpr, upscale, _i, _len, _ref;
if (!(node.children != null)) {
node.region = base(node, scale);
return node.region;
}
_ref = node.children;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
child = _ref[_i];
jigsaw.treemap(child, scale, base);
}
children_paths = node.children.map(function(d) {
return d.region;
}).reduce(function(a, d) {
return a.concat(d);
});
upscale = 1000;
ClipperLib.JS.ScaleUpPaths(children_paths, upscale);
cpr = new ClipperLib.Clipper();
cpr.AddPaths(children_paths, ClipperLib.PolyType.ptSubject, true);
node.region = new ClipperLib.Paths();
cpr.Execute(ClipperLib.ClipType.ctUnion, node.region, ClipperLib.PolyFillType.pftNonZero, ClipperLib.PolyFillType.pftNonZero);
ClipperLib.JS.ScaleDownPaths(children_paths, upscale);
return ClipperLib.JS.ScaleDownPaths(node.region, upscale);
},
/* Converts Paths to SVG path string
*/
/* and scales down the coordinates
*/
/* from http://jsclipper.sourceforge.net/6.1.3.1/index.html?p=starter_boolean.html
*/
get_svg_path: function(paths, scale) {
var i, p, path, svgpath, _i, _len, _len2;
svgpath = '';
if (!(scale != null)) scale = 1;
for (_i = 0, _len = paths.length; _i < _len; _i++) {
path = paths[_i];
for (i = 0, _len2 = path.length; i < _len2; i++) {
p = path[i];
if (i === 0) {
svgpath += 'M';
} else {
svgpath += 'L';
}
svgpath += p.X / scale + ", " + p.Y / scale;
}
svgpath += 'Z';
}
if (svgpath === '') svgpath = 'M0,0';
return svgpath;
},
hilbert_labels: function(node, scale) {
/* create a sort of bitmap of this node's cells
*/
var box, boxes, cell, child, grow, ix, ixg, iy, iyg, last_box, matrix, max_area, max_ix, max_iy, max_x, max_y, min_ix, min_iy, min_x, min_y, original_area, x_boxes, y_boxes, _i, _j, _k, _l, _len, _len2, _len3, _len4, _ref, _ref2, _ref3, _ref4, _ref5, _ref6, _results;
matrix = {};
_ref = node.leaf_descendants;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
cell = _ref[_i];
if (!(cell.ix in matrix)) matrix[cell.ix] = {};
matrix[cell.ix][cell.iy] = cell;
}
/* compute the matrix boundaries
*/
min_ix = d3.min(node.leaf_descendants, function(d) {
return d.ix;
});
max_ix = d3.max(node.leaf_descendants, function(d) {
return d.ix;
});
min_iy = d3.min(node.leaf_descendants, function(d) {
return d.iy;
});
max_iy = d3.max(node.leaf_descendants, function(d) {
return d.iy;
});
/* scan X to create tall boxes
*/
x_boxes = [];
for (ix = min_ix; min_ix <= max_ix ? ix <= max_ix : ix >= max_ix; min_ix <= max_ix ? ix++ : ix--) {
x_boxes.push({});
for (iy = min_iy; min_iy <= max_iy ? iy <= max_iy : iy >= max_iy; min_iy <= max_iy ? iy++ : iy--) {
last_box = x_boxes[x_boxes.length - 1];
if (ix in matrix && iy in matrix[ix]) {
if (!('topleft' in last_box)) {
last_box.bottomright = last_box.topleft = matrix[ix][iy];
last_box.area = 1;
} else {
last_box.bottomright = matrix[ix][iy];
last_box.area += 1;
}
} else if ('topleft' in last_box) {
x_boxes.push({});
}
}
}
/* scan Y to create wide boxes
*/
y_boxes = [];
for (iy = min_iy; min_iy <= max_iy ? iy <= max_iy : iy >= max_iy; min_iy <= max_iy ? iy++ : iy--) {
y_boxes.push({});
for (ix = min_ix; min_ix <= max_ix ? ix <= max_ix : ix >= max_ix; min_ix <= max_ix ? ix++ : ix--) {
last_box = y_boxes[y_boxes.length - 1];
if (ix in matrix && iy in matrix[ix]) {
if (!('topleft' in last_box)) {
last_box.topleft = matrix[ix][iy];
last_box.bottomright = matrix[ix][iy];
last_box.area = 1;
} else {
last_box.bottomright = matrix[ix][iy];
last_box.area += 1;
}
} else if ('topleft' in last_box) {
y_boxes.push({});
}
}
}
/* grow boxes along X
*/
for (_j = 0, _len2 = x_boxes.length; _j < _len2; _j++) {
box = x_boxes[_j];
if (!(box.topleft != null)) continue;
grow = true;
original_area = box.area;
while (grow) {
ixg = box.bottomright.ix + 1;
for (iyg = _ref2 = box.topleft.iy, _ref3 = box.bottomright.iy; _ref2 <= _ref3 ? iyg <= _ref3 : iyg >= _ref3; _ref2 <= _ref3 ? iyg++ : iyg--) {
grow = ixg in matrix && iyg in matrix[ixg];
if (!grow) break;
}
if (grow) {
box.bottomright = matrix[ixg][box.bottomright.iy];
box.area += original_area;
}
}
}
/* grow boxes along Y
*/
for (_k = 0, _len3 = y_boxes.length; _k < _len3; _k++) {
box = y_boxes[_k];
if (!(box.topleft != null)) continue;
grow = true;
original_area = box.area;
while (grow) {
iyg = box.bottomright.iy + 1;
for (ixg = _ref4 = box.topleft.ix, _ref5 = box.bottomright.ix; _ref4 <= _ref5 ? ixg <= _ref5 : ixg >= _ref5; _ref4 <= _ref5 ? ixg++ : ixg--) {
grow = ixg in matrix && iyg in matrix[ixg];
if (!grow) break;
}
if (grow) {
box.bottomright = matrix[box.bottomright.ix][iyg];
box.area += original_area;
}
}
}
/* select the biggest box
*/
boxes = x_boxes.concat(y_boxes);
max_area = d3.max(boxes, function(b) {
return b.area;
});
box = boxes.filter(function(d) {
return d.area === max_area;
})[0];
/* convert into x,y coordinates
*/
min_x = box.topleft.ix * scale - scale / 2;
max_x = box.bottomright.ix * scale + scale / 2;
min_y = box.topleft.iy * scale - scale / 2;
max_y = box.bottomright.iy * scale + scale / 2;
node.label_bbox = {
x: min_x,
y: min_y,
width: max_x - min_x,
height: max_y - min_y
};
if (node.children != null) {
_ref6 = node.children;
_results = [];
for (_l = 0, _len4 = _ref6.length; _l < _len4; _l++) {
child = _ref6[_l];
_results.push(jigsaw.hilbert_labels(child, scale));
}
return _results;
}
}
};
}).call(this);
0001 0000 000f 0030 0003 00c0 4f53 2f32
839c 3fd3 0000 dd04 0000 004e 636d 6170
0913 6b2e 0000 a550 0000 0482 6376 7420
ea0a 9447 0000 03fc 0000 058e 6670 676d
8333 c24f 0000 03e8 0000 0014 676c 7966
9c3b bc67 0000 09c8 0000 927e 6864 6d78
9d59 94cb 0000 ce7c 0000 0e88 6865 6164
d944 802e 0000 dd54 0000 0036 6868 6561
0929 03d5 0000 dd8c 0000 0024 686d 7478
e699 37ef 0000 9fd8 0000 038c 6b65 726e
8937 8e7c 0000 a9d4 0000 24a8 6c6f 6361
003d ab0c 0000 9c48 0000 0390 6d61 7870
0198 01e7 0000 ddb0 0000 0020 6e61 6d65
6613 0742 0000 00fc 0000 02eb 706f 7374
3567 77f0 0000 a364 0000 01ec 7072 6570
85ee fc36 0000 098c 0000 0039 0000 0015
0102 0000 0000 0000 0000 003e 001f 0000
0000 0000 0001 001c 006b 0000 0000 0000
0002 000e 008e 0000 0000 0000 0003 0058
00f2 0000 0000 0000 0004 001c 00aa 0000
0000 0000 0005 0050 0172 0000 0000 0000
0006 001a 01cf 0001 0000 0000 0000 001f
0000 0001 0000 0000 0001 000e 005d 0001
0000 0000 0002 0007 0087 0001 0000 0000
0003 002c 00c6 0001 0000 0000 0004 000e
009c 0001 0000 0000 0005 0028 014a 0001
0000 0000 0006 000d 01c2 0003 0001 0409
0000 003e 001f 0003 0001 0409 0001 001c
006b 0003 0001 0409 0002 000e 008e 0003
0001 0409 0003 0058 00f2 0003 0001 0409
0004 001c 00aa 0003 0001 0409 0005 0050
0172 0003 0001 0409 0006 001a 01cf 4c61
6375 6e61 202d 2032 3030 3120 6279 2050
6574 6572 2048 6f66 666d 616e 6e00 4c00
6100 6300 7500 6e00 6100 2020 1000 2000
3200 3000 3000 3100 2000 6200 7900 2000
5000 6500 7400 6500 7200 2000 4800 6f00
6600 6600 6d00 6100 6e00 6e4c 6163 756e
6120 5265 6775 6c61 7200 4c00 6100 6300
7500 6e00 6100 2000 5200 6500 6700 7500
6c00 6100 7252 6567 756c 6172 0052 0065
0067 0075 006c 0061 0072 4c61 6375 6e61
2052 6567 756c 6172 004c 0061 0063 0075
006e 0061 0020 0052 0065 0067 0075 006c
0061 0072 4d61 6372 6f6d 6564 6961 2046
6f6e 746f 6772 6170 6865 7220 342e 312e
3220 4c61 6375 6e61 2052 6567 756c 6172
004d 0061 0063 0072 006f 006d 0065 0064
0069 0061 0020 0046 006f 006e 0074 006f
0067 0072 0061 0070 0068 0065 0072 0020
0034 002e 0031 002e 0032 0020 004c 0061
0063 0075 006e 0061 0020 0052 0065 0067
0075 006c 0061 0072 4d61 6372 6f6d 6564
6961 2046 6f6e 746f 6772 6170 6865 7220
342e 312e 3220 3137 2e30 322e 3230 3033
004d 0061 0063 0072 006f 006d 0065 0064
0069 0061 0020 0046 006f 006e 0074 006f
0067 0072 0061 0070 0068 0065 0072 0020
0034 002e 0031 002e 0032 0020 0031 0037
002e 0030 0032 002e 0032 0030 0030 0033
4c61 6375 6e61 5265 6775 6c61 7200 4c00
6100 6300 7500 6e00 6100 5200 6500 6700
7500 6c00 6100 7200 4001 002c 7645 20b0
0325 4523 6168 1823 6860 442d fee8 fffb
0216 0310 0332 0056 006b 0044 004b 4a73
9c46 ec9a 3afa 67b4 0925 ac8f 0ebf 2e4f
d18f 42ac 0d5e b8f3 336d 9354 9ce4 4432
aa12 d8fb 6a9a e77c 223a 43ac e80a 3026
51d5 e777 27a2 69c3 0272 89e1 77c9 c468
b71f 59be 8690 e722 d772 2652 2aeb 8b5b
ae2f 55bd b609 d9ef 4382 ed32 83ca 5bca
6afb b8c8 f41d c741 02cf 2da2 cb06 3326
52b6 f416 a535 21d5 c748 57f4 b7dd f76f
60b5 4e99 fd70 77e3 03c3 c945 7e27 f48d
d4b0 5653 2bff a491 162c 04da 8747 40f2
e29d 897d 4833 fdbf 6b5c 0e98 f09f 9e6f
19fd b366 2b1c 8bf4 af2d 0f1c 7667 b8b7
f9d3 9579 0c5d 9de4 5162 f0e7 89d7 2779
d4ea 6884 e216 9da2 3b2e ed8e d18f 7e63
5e29 f7aa 6040 0388 b1ad 4548 dbe4 796c
af2d cbc2 7679 56c2 f7b7 9458 0a86 bbb5
1c58 7cee 0f6f 8b0a 3eb5 b35e 13cf 322f
fb4b 94f1 0fd5 836c 50fa f26f 8f4f 26e1
db92 6e1c e1ae 9f3a 3aa6 eb26 f326 c217
1064 6db9 bc9d 9b93 8546 20a2 8a82 aa52
4db2 ded1 8979 3cec ce88 0f71 000b f9d1
2675 541c eebf 7b1f a619 c7cb 6c29 ac0c
c0e7 6c96 df3d b8c8 2b53 c1b3 00fd 2475
d316 46e2 a953 c53a 61dd aa2f 9a7f ea5f
68e6 4d48 e81c 97ae 7806 17f0 8191 2f07
c1d7 1dd7 2ce6 7b3b b608 894e ccc0 6fb1
1573 f5d3 94a3 3663 eb00 63aa 015f 99f9
7a20 3558 aea6 1086 234f b5ee 4dd0 8b56
bc38 36fe 96bf bb56 37c9 e866 7b0c 1683
8d3e 3fae e00b ae3c 5aab c04e 3cb0 01dc
eb68 8ab0 7e80 4ed0 8f72 b652 18f7 ec92
7f7c 3713 a18d 4330 f5dc 0a20 3b11 0f62
5ab7 9597 f099 9a48 39a8 e19c 836c 22ac
f7cf 9063 1516 a58e 666b 2901 d2df 3d4f
4f06 d9b9 5219 bf1f d0f1 5b37 8306 afe1
5b90 f73f 96d3 3568 a41e 55fe bcb0 d038
47a3 fd19 dd1c 71f7 fe66 de5a 2eaa 7eea
1c93 c133 64c7 0255 ecd1 8387 3a2a a3da
4a22 9222 a313 f760 c2b5 1d99 7897 e24a
81ae 699e 0b6e aaae 7fcd e87d 9d10 2d8c
ee75 a107 5add 8571 b718 41bb da1b 071d
28cf c335 0b08 27e3 c392 7c3b 0fb7 9d58
39c3 b065 145c 1af1 d764 7413 40fb f597
9f13 3efb 21db e174 95f3 246a af04 5bf4
8bb7 e517 c767 17b7 6c97 f6b2 8455 0dcb
b777 1715 2ef9 809c 553b e7e3 4f8c 3634
dbd9 4a77 9287 a3b6 f78b c2d8 1c3e 7b70
e2e1 81c3 6a63 0bf3 aad3 7e70 e81a 9d8f
2e29 ee90 a1a8 5976 85d6 b7bf 4e5e da80
0786 2768 c34e 0bef 2786 cc39 7fd4 e14a
8dd1 2ca5 dc65 072b 28c7 de44 45b0 a585
ca6c 660f a62e 87f3 a883 4e11 d9b2 7248
a298 e1f1 c633 3603 0658 46fa e271 8512
3bb9 a061 4a18 aa8a ce5e 75ec 5658 f93e
63d3 0d45 a399 3b99 0aa8 58f9 95ce e710
221e 4df3 eb31 d315 72e5 1425 8546 41e4
e499 7707 57e2 d89e 8064 6ec8 1c81 9730
2392 ee94 9e76 14bc f48d 877e 22e1 da84
5014 f9f5 676b 4756 c9f7 a26e 2915 97f5
a49a 5b1d e9b4 692e 018e c18d 3b31 0a08
555c 85e5 a88c 543c ffe0 b892 2622 c0ab
7258 58be e4db 964a 3fe2 da9e 053c 3ce0
e495 6334 fdd7 225b 4b00 e0a9 f735 c604
1c55 69aa a0ec e7a2 8957 2c9d 8eb1 ae41
5181 c2a2 8d48 38fd b29b 1346 1cfa c5c0
2a64 58ed ea8c 676e a228 c3da 6818 b01d
dcf4 6967 c302 84b9 2720 c582 0c8c 2064
d7e7 42dd ad60 c10b 6daa aecd 8f4e a020
47b2 d155 49ed aa25 e91c cd6c 3da0 0dfb
4d9f eb2c 9ab5 335c afbe 4dc7 b267 d7f3
7289 5d25 f2d3 6b76 12e6 baf6 42f6 73c7
4412 946e e2ae 2fe0 4e91 f453 d6f3 7783
1943 8ae0 448a e03f 7ad9 5b00 d438 8d86
71a6 002f 92ce 2f30 ea76 9b18 17de f853
9709 1ee0 b29f 542a f6b5 7515 5c1b f1d7
6774 1240 fc1d cf6d 1fbf 7f60 eff1 946b
3b1d b792 1836 2196 97b3 7452 fc84 beb6
5e52 c5f4 0608 3739 070c 575c a180 e88e
9263 3141 99e5 bb75 5a55 cff6 8794 2d09
bdb7 1e12 112e caf4 3558 4731 d1a0 6a02
b704 d8e6 52cc bb7c da1f 69b1 f36d a108
22a7 c126 6b88 ae86 de62 49e9 ecd7 cf6b
6e10 05b8 8764 6a44 46b4 9685 f687 8e67
2002 b4a9 4711 ef3e 89a6 3b47 ade9 31f5
7d94 1d23 8faa 7001 506b a0bb f19b 93a2
7404 11d0 bf6a 1fc2 30b4 a955 54cb f913
0513 4d72 3d04 c4c4 4376 ca1f 60ac 5926
f6e6 7189 f77b 000c 02be 0000 400b 0404
0303 0202 0101 0000 018d b801 ff85 4568
4445 6844 4568 4445 6844 4568 44b3 0605
4600 2bb3 0807 4600 2bb1 0505 4568 44b1
0707 4568 4400 0000 0002 003f 0000 01b6
0320 0003 0007 0056 4020 0108 0840 0902
0704 0501 0006 0505 0302 0504 0700 0706
0701 0201 0300 0101 0046 762f 3718 003f
3c2f 3c10 fd3c 10fd 3c01 2f3c fd3c 2f3c
fd3c 0031 3001 4968 b900 0000 0849 6861
b040 5258 3811 37b9 0008 ffc0 3859 3311
2111 2533 1123 3f01 77fe c7fa fa03 20fc
e03f 02a3 0002 0073 fff2 00f4 030c 0003
000f 0045 4016 0110 1040 1104 0201 0a04
0300 0d08 0707 0300 0301 0a46 762f 3718
003f 3c2f 10fd 012e 2e2e 2e00 2e2e 3130
0149 68b9 000a 0010 4968 61b0 4052 5838
1137 b900 10ff c038 5913 0323 0313 1406
2322 2635 3436 3332 16e2 0e44 0e72 261a
1b26 261b 1a26 030c fdc8 0238 fd27 1b26
261b 1a26 2600 0002 0005 0253 011f 0332
0003 0007 0046 4018 0108 0840 0900 0704
0300 0605 0203 0107 0403 0300 0401 0746
762f 3718 003f 173c 2f17 3c01 2e2e 2e2e
0031 3001 4968 b900 0700 0849 6861 b040
5258 3811 37b9 0008 ffc0 3859 0107 2327
2307 2327 011f 1633 1362 1633 1303 32df
dfdf df00 0002 003b 0000 0283 0356 001b
001f 0090 4046 0120 2040 2100 1e1c 1b1a
1916 1512 1110 0e0d 0c0b 0807 0403 0200
1d1c 1110 0105 0007 1b1a 1716 1305 121f
1e0f 0e03 0502 070d 0c09 0805 0504 1918
1503 140b 0a07 0306 0101 0d46 762f 3718
003f 173c 2f17 3c2f 173c fd17 3c2f 173c
fd17 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 0031 3001 4968 b900
0d00 2049 6861 b040 5258 3811 37b9 0020
ffc0 3859 0123 0733 1523 0323 1323 0323
1323 3533 3723 3533 1333 0333 1333 0333
0723 0733 0283 6f14 6871 2945 29cd 2945
2965 6e14 6871 2945 29cd 2945 2966 b4cd
14cd 01f0 8b40 fedb 0125 fedb 0125 408b
4001 26fe da01 26fe da40 8b00 0001 003c
ff89 022b 038a 002e 0059 401f 012f 2f40
3000 2422 0e0a 2821 1f1e 1d1c 1812 0907
0605 0400 1e1d 0605 0109 4676 2f37 1800
2f3c 2f3c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e00 2e2e 2e2e 3130 0149 68b9 0009
002f 4968 61b0 4052 5838 1137 b900 2fff
c038 5925 1407 0607 1523 3526 2737 1617
1633 3237 3635 3427 2627 2635 3437 3637
3533 1516 1707 2623 2207 0615 1417 1e01
1716 022b 4137 5644 7766 2b25 363c 3641
2834 431f 5acf 3b37 5843 6361 235b 553e
2d38 3e17 c52b 45bc 5834 2b0b 7170 0745
411c 1315 181f 423c 3518 306e 774c 322f
0b79 7705 3c44 3a18 1d38 332f 116d 2943
0005 003b ffec 0359 034e 000b 000f 001b
0027 0033 005f 4024 0134 3440 3510 2b19
2e28 221c 1610 0e0c 0600 0307 2531 0713
1f07 090f 0c0e 0d13 0101 0646 762f 3718
003f 2f3c 2f3c 2ffd 10fd 2ffd 012e 2e2e
2e2e 2e2e 2e2e 2e00 2e2e 3130 0149 68b9
0006 0034 4968 61b0 4052 5838 1137 b900
34ff c038 5901 1406 2322 2635 3436 3332
1625 0123 0113 1406 2322 2635 3436 3332
1601 3426 2322 0615 1416 3332 3601 3426
2322 0615 1416 3332 3601 a469 4c4b 6969
4b4c 6901 4afd fb4f 0205 ba69 4c4b 6969
4b4c 69fe 0841 3130 4141 3031 4101 b541
3130 4141 3031 4102 984c 6768 4b4c 6767
6afc 9e03 62fd 634c 6768 4b4c 6767 019b
323e 3f31 313f 3efe 4b32 3f3f 3231 3f3e
0002 003b fff8 025d 0312 0022 002a 005a
4021 012b 2b40 2c00 2924 201f 1917 0226
2322 211c 1611 0d09 0014 0306 0101 0001
0109 4676 2f37 1800 3f3c 3f3f 012e 2e2e
2e2e 2e2e 2e2e 2e00 2e2e 2e2e 2e2e 2e31
3001 4968 b900 0900 2b49 6861 b040 5258
3811 37b9 002b ffc0 3859 2123 2706 0706
2322 2635 3437 3637 2627 2635 3436 3732
1707 2623 2206 1514 1713 3717 072f 0106
1514 1633 3202 5d5c 3532 1336 435b 7832
184a 340c 1d6b 4a59 3d30 2e39 2b38 54c6
412b 4560 ab6e 4d36 4b4d 2b0b 1f71 5f4b
401e 3e49 1534 3041 5f01 3f2e 2e36 2930
76fe e840 3443 06ef 4e5e 3f4e 0001 003b
0253 0097 0332 0003 003a 4010 0104 0440
0500 0300 0201 0300 0401 0346 762f 3718
003f 3c2f 3c01 2e2e 0031 3001 4968 b900
0300 0449 6861 b040 5258 3811 37b9 0004
ffc0 3859 1307 2327 9716 3313 0332 dfdf
0001 003b ff23 010b 0347 0009 0039 400f
010a 0a40 0b00 0806 0300 0501 0103 4676
2f37 1800 2f2f 012e 2e2e 2e00 3130 0149
68b9 0003 000a 4968 61b0 4052 5838 1137
b900 0aff c038 5905 0726 1110 3717 0615
1401 0b41 8f8f 3f7b ba23 fa01 1801 19f9
25f2 fbfb 0001 003b ff23 010b 0347 0009
0039 400f 010a 0a40 0b00 0705 0300 0802
0103 4676 2f37 1800 2f2f 012e 2e2e 2e00
3130 0149 68b9 0003 000a 4968 61b0 4052
5838 1137 b900 0aff c038 5901 1007 2736
3534 2737 1601 0b8f 417c 7a3f 8f01 35fe
e8fa 23f4 fbfb f225 f900 0001 005f 01c3
01b8 0331 0011 0052 401c 0112 1240 1300
1110 0d0c 0807 0403 0b0a 0902 0100 0605
0f0e 0401 0b46 762f 3718 003f 3c2f 3c01
2e2e 2e2e 2e2e 002e 2e2e 2e2e 2e2e 2e31
3001 4968 b900 0b00 1249 6861 b040 5258
3811 37b9 0012 ffc0 3859 0107 1707 2707
2327 0727 3727 3717 3733 1737 01b8 706f
1b72 0337 0373 1a6e 6f1b 7303 3703 7302
be44 442f 3e82 823d 2d45 442f 3e82 823e
0001 003b 005c 01ad 01ce 000b 005e 4024
010c 0c40 0d00 0b0a 0908 0706 0504 0302
0100 0b0a 0703 0607 0504 0103 0009 0803
0201 0546 762f 3718 002f 3c2f 3c2f 173c
fd17 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
0031 3001 4968 b900 0500 0c49 6861 b040
5258 3811 37b9 000c ffc0 3859 2523 1523
3523 3533 3533 1533 01ad 9940 9999 4099
f599 9940 9999 0001 005f ff8e 00e0 0076
000f 0039 400f 0110 1040 1100 0a06 0300
0d02 010a 4676 2f37 1800 2f2f 012e 2e2e
2e00 3130 0149 68b9 000a 0010 4968 61b0
4052 5838 1137 b900 10ff c038 5937 1407
273e 0135 3427 2635 3436 3332 16e0 4e18
0b1b 0938 261b 1a26 3151 5214 0a36 100c
0108 341a 212a 0001 003b 00f5 010b 0135
0003 003d 4011 0104 0440 0500 0302 0100
0302 0100 0101 4676 2f37 1800 2f3c 2f3c
012e 2e2e 2e00 3130 0149 68b9 0001 0004
4968 61b0 4052 5838 1137 b900 04ff c038
5925 2335 3301 0bd0 d0f5 4000 0001 003b
fff2 00bc 0073 000b 0035 400d 010c 0c40
0d00 0600 0903 0106 4676 2f37 1800 2f2f
012e 2e00 3130 0149 68b9 0006 000c 4968
61b0 4052 5838 1137 b900 0cff c038 5937
1406 2322 2635 3436 3332 16bc 261a 1b26
261b 1a26 331b 2626 1b1a 2626 0001 003b
0000 019d 0356 0003 003a 4010 0104 0440
0500 0200 0300 0201 0101 0246 762f 3718
003f 3c2f 3c01 2e2e 0031 3001 4968 b900
0200 0449 6861 b040 5258 3811 37b9 0004
ffc0 3859 0901 2301 019d feed 4f01 1303
56fc aa03 5600 0002 0050 fff2 024d 0240
000f 001f 003d 4011 0120 2040 2100 1c14
1810 0800 0c04 0108 4676 2f37 1800 2f2f
012e 2e2e 2e00 2e2e 3130 0149 68b9 0008
0020 4968 61b0 4052 5838 1137 b900 20ff
c038 5901 1407 0623 2227 2635 3437 3633
3217 1607 3427 2623 2207 0615 1417 1633
3237 3602 4d54 4665 6545 5454 4664 6546
5456 1f2b 5f5f 2b1e 1e2b 5f5f 2b1f 0119
9650 4141 4f97 9650 4141 4f97 5739 5050
3957 5739 5050 3900 0001 0050 0000 01b1
023a 000a 0052 401c 010b 0b40 0c00 0a09
0504 0302 0a09 0806 0302 0100 0807 0100
0101 0646 762f 3718 003f 3c2f 3c01 2e2e
2e2e 2e2e 2e2e 002e 2e2e 2e2e 2e31 3001
4968 b900 0600 0b49 6861 b040 5258 3811
37b9 000b ffc0 3859 2901 3533 0307 2737
3311 3301 b1fe ab88 017d 169b 4d79 4801
9b30 3e49 fe0e 0001 0050 0000 01f8 0241
0018 004f 401b 0119 1940 1a00 1817 0b18
1714 0c07 0201 0009 0710 1001 0001 0101
4676 2f37 1800 3f3c 2f10 fd01 2e2e 2e2e
2e2e 2e2e 002e 2e2e 3130 0149 68b9 0001
0019 4968 61b0 4052 5838 1137 b900 19ff
c038 5929 0135 3736 3736 3534 2322 0727
3637 3633 3217 1615 140f 0121 01f8 fe58
d241 0c28 7b54 4332 1e2f 3d43 6336 3389
a201 374e a132 0c2b 346e 4e31 261b 2335
3151 6565 7800 0001 0050 ff1d 0204 0241
002d 0056 401e 012e 2e40 2f00 1d12 1110
0f08 062a 261e 1611 100c 0500 1907 2222
0301 0546 762f 3718 002f 2f10 fd01 2e2e
2e2e 2e2e 2e2e 2e00 2e2e 2e2e 2e2e 2e31
3001 4968 b900 0500 2e49 6861 b040 5258
3811 37b9 002e ffc0 3859 2514 0623 2227
3716 3332 3736 3534 262b 0135 3332 3736
3534 2623 2207 0607 2736 3736 3332 1716
1514 0706 0716 1716 0204 7a63 8651 3545
563a 282c 5245 3333 4927 224a 382b 2a25
1335 1b2b 3b40 603d 3a22 202f 2f22 2703
6482 6735 5525 2947 4a5c 4d2c 273e 3845
1714 1a2f 2119 2338 364f 4337 3312 0f32
3800 0001 0050 ff18 0232 0232 000e 0069
402a 010f 0f40 1000 0c0b 0e0d 0c0b 0a09
0806 0504 0302 0100 0e0d 0a03 0908 0008
0703 0205 0401 0300 0101 0546 762f 3718
003f 173c 2f3c 2f3c 10fd 173c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 3130
0149 68b9 0005 000f 4968 61b0 4052 5838
1137 b900 0fff c038 5921 2315 2337 2135
0133 0333 3533 1533 0232 5d55 01fe cf01
0158 efc7 545d e8e8 3202 00fe 17ed ed00
0001 0050 ff1d 01ed 0234 001e 0059 4020
011f 1f40 2000 1914 130b 0719 1817 1614
0f06 0018 1708 1511 081b 1615 0401 0646
762f 3718 002f 2f3c 2ffd 10fd 3c01 2e2e
2e2e 2e2e 2e2e 002e 2e2e 2e2e 3130 0149
68b9 0006 001f 4968 61b0 4052 5838 1137
b900 1fff c038 5925 1407 0623 2227 3716
1716 3332 3736 3534 2322 0723 1321 1523
1536 3332 1716 01ed 3038 6d78 5039 2311
2430 4423 1e82 352a 4401 014d f82a 3766
342b 266d 4755 6730 280d 1b36 3053 bb20
017c 4ae0 1653 4400 0002 0050 fff2 021e
02ef 0020 002e 004d 401a 012f 2f40 3000
2d19 1129 2119 1008 0015 070c 2507 1d0c
0401 0846 762f 3718 002f 2f2f fd10 fd01
2e2e 2e2e 2e2e 002e 2e2e 3130 0149 68b9
0008 002f 4968 61b0 4052 5838 1137 b900
2fff c038 5925 1407 0623 2227 2635 3437
3633 3217 1617 0726 2726 2322 0706 1536
3736 3332 1716 0734 2726 2322 0706 1514
1716 3332 021e 513d 5959 3856 3f41 7b2a
2e28 0e23 1413 1a26 4830 351a 352a 254f
3e51 551d 2651 5025 1b1e 274c 93f0 8a42
3235 50c1 cf72 7615 1213 330e 0d0e 474e
8826 1612 313f 8045 2c39 3e2d 4540 303e
0001 0050 ff20 01d0 022e 0006 0048 4017
0107 0740 0800 0605 0403 0200 0403 0805
0605 0201 0104 4676 2f37 1800 2f3c 2f3c
10fd 3c01 2e2e 2e2e 2e2e 0031 3001 4968
b900 0400 0749 6861 b040 5258 3811 37b9
0007 ffc0 3859 0103 2313 2135 2101 d0e7
58e9 fed6 0180 01fb fd25 02c6 4800 0003
0050 fff0 0212 02f8 0015 0025 0035 0053
401d 0136 3640 3700 2a22 2e26 1e16 1412
0a08 0600 3208 031a 080e 0e03 0106 4676
2f37 1800 2f2f 10fd 10fd 012e 2e2e 2e2e
2e2e 2e2e 2e00 2e2e 3130 0149 68b9 0006
0036 4968 61b0 4052 5838 1137 b900 36ff
c038 5925 1406 2322 2635 3437 2635 3437
3633 3217 1615 1407 1627 3427 2623 2207
0615 1417 1633 3237 3613 3427 2623 2207
0615 1417 1633 3237 3602 127c 6565 7c6c
523f 3750 5138 3f56 7065 2c23 2e2d 232b
2b25 2c2c 242c 1938 2736 3627 3838 2835
3627 38ce 627c 7d62 8a43 376d 5833 2d2d
3358 6044 3ddc 3b20 1a1a 203b 3c23 1e1e
24fe d45b 2a1e 1d2a 5b58 281d 1d28 0002
0050 ff1b 021e 0241 0018 0024 0050 401c
0125 2540 2600 0d07 1f19 130d 0600 0907
0421 070f 1d07 1717 0401 1346 762f 3718
002f 2f10 fd2f fd10 fd01 2e2e 2e2e 2e2e
002e 2e31 3001 4968 b900 1300 2549 6861
b040 5258 3811 37b9 0025 ffc0 3859 2514
0706 2322 2737 1633 3237 3635 0623 2227
2635 3437 3633 3207 3427 2623 2215 1433
3237 3602 1e3a 4183 423b 2034 2551 302e
3267 533f 5043 3c64 eb55 1e28 4b93 9450
251b fada 7b8a 253c 1d5c 5885 4233 4079
8142 3cf5 4030 3eb4 aa3e 2e00 0002 003b
fff2 00bc 021d 000b 0017 0043 4015 0118
1840 1900 120c 0600 0308 0915 080f 090f
0106 4676 2f37 1800 2f2f 10fd 10fd 012e
2e2e 2e00 3130 0149 68b9 0006 0018 4968
61b0 4052 5838 1137 b900 18ff c038 5913
1406 2322 2635 3436 3332 1611 1406 2322
2635 3436 3332 16bc 261a 1b26 261b 1a26
261a 1b26 261b 1a26 01dc 1a26 261a 1b26
26fe 3c1b 2626 1b1a 2626 0002 003b ff8e
00bf 021d 000b 001b 0044 4015 011c 1c40
1d00 1916 120f 0c06 0003 0809 090e 0116
4676 2f37 1800 2f2f 10fd 012e 2e2e 2e2e
2e00 2e31 3001 4968 b900 1600 1c49 6861
b040 5258 3811 37b9 001c ffc0 3859 1314
0623 2226 3534 3633 3216 0314 0727 3e01
3534 2726 3534 3633 3216 bf26 1a1b 2626
1b1a 2603 4e18 0b1b 0938 261b 1a26 01dc
1a26 261a 1b26 26fe 3a51 5214 0a36 100c
0108 341a 212a 0001 0019 fff6 0234 027f
0009 004a 4018 010a 0a40 0b00 0908 0100
0908 0705 0402 0100 0603 0101 0446 762f
3718 003f 2f01 2e2e 2e2e 2e2e 2e2e 002e
2e2e 2e31 3001 4968 b900 0400 0a49 6861
b040 5258 3811 37b9 000a ffc0 3859 0121
1707 0335 1317 0721 0234 fe58 8c43 bcbc
3d80 01a2 0113 fb22 0140 1401 3529 ef00
0002 0069 00ec 01de 01c3 0003 0007 0053
401d 0108 0840 0900 0706 0504 0302 0100
0100 0702 0706 0704 0302 0504 0101 4676
2f37 1800 2f3c 2f3c 10fd 3c10 fd3c 012e
2e2e 2e2e 2e2e 2e00 3130 0149 68b9 0001
0008 4968 61b0 4052 5838 1137 b900 08ff
c038 5901 2135 2115 2135 2101 defe 8b01
75fe 8b01 7501 8340 d740 0001 003b fff6
0256 027f 0009 004a 4018 010a 0a40 0b00
0605 0403 0907 0605 0403 0200 0801 0101
0446 762f 3718 003f 2f01 2e2e 2e2e 2e2e
2e2e 002e 2e2e 2e31 3001 4968 b900 0400
0a49 6861 b040 5258 3811 37b9 000a ffc0
3859 0103 2737 2135 2127 3713 0256 bc43
8cfe 5801 a280 3dbc 0136 fec0 22fb 54ef
29fe cb00 0002 003e fff0 01dd 0313 0018
0024 0051 401c 0125 2540 2600 2213 0807
1f19 140f 0908 0706 0011 0816 1c16 0301
1446 762f 3718 003f 2f10 fd01 2e2e 2e2e
2e2e 2e2e 2e00 2e2e 2e2e 3130 0149 68b9
0014 0025 4968 61b0 4052 5838 1137 b900
25ff c038 5901 1407 0e02 1d01 2335 3437
3637 3635 3423 2207 2736 3332 1603 1406
2322 2635 3436 3332 1601 dd29 2b55 2150
5b22 2220 8649 4a2b 6061 6678 b625 1a1a
2425 191a 2502 533f 2b24 4a3b 2757 5f64
4f1b 1b20 2f6c 3241 3f64 fd7f 1a24 241a
1a24 2400 0002 0055 ff2c 03b4 02e0 003f
0048 007d 4035 0149 4940 4a28 3d2f 1909
0802 4844 403e 3d37 2820 1a13 0b08 0703
0007 050f 0724 1707 1c46 0733 4207 3b24
1c33 012d 2c01 0502 0120 4676 2f37 1800
3f3f 3c3f 2f2f 2ffd 10fd 10fd 10fd 10fd
012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00
2e2e 2e2e 2e2e 3130 0149 68b9 0020 0049
4968 61b0 4052 5838 1137 b900 49ff c038
5901 2207 2736 3332 1511 3336 3534 2726
2322 0706 1514 1716 3332 3717 0623 2227
2635 3437 3633 3217 1615 1407 0607 2326
2706 0706 2322 2726 3534 3736 3332 1735
3415 2623 2215 1433 3237 020b 4230 1b46
52ad 772f 5a5f a9a8 615b 5b60 a92c 2507
3c1c ca76 7272 76ca ca74 6f15 1726 e807
0418 0a25 374f 2f34 3b36 4d48 2a25 3e73
653d 3401 d420 4224 b1fe da5b 68b4 6d73
736e b3b4 6d73 0544 0785 82d3 d382 8585
81d4 4547 4e2c 0b1c 1506 1526 2a51 4d2e
2a12 4267 eb11 6857 3600 0002 0020 0000
0296 0311 0007 000c 0050 401d 010d 0d40
0e00 0a09 0c08 0500 0c08 0703 0207 0603
0504 0103 0001 0105 4676 2f37 1800 3f17
3c3f 3c2f 3cfd 3c01 2e2e 2e2e 002e 2e31
3001 4968 b900 0500 0d49 6861 b040 5258
3811 37b9 000d ffc0 3859 2123 2721 0723
0133 1303 2307 0302 9654 56fe de57 5301
1350 5277 070d 6af6 f603 11fe 2b01 6c2f
fec3 0003 0075 0000 0271 030c 000d 0015
001d 0065 4027 011e 1e40 1f00 1a19 1413
1b1a 1613 120e 0c0b 0904 0300 1c1b 0802
1211 0804 0504 0303 0201 0103 4676 2f37
1800 3f3c 3f3c 10fd 3c10 fd3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e 3130
0149 68b9 0003 001e 4968 61b0 4052 5838
1137 b900 1eff c038 5925 1421 2311 2132
1716 1514 0715 1627 3426 2b01 1133 3217
3426 2b01 1133 3202 71ff 00fc 0107 6b3e
3a73 8567 4e4c aba3 a210 5c4b aec1 94d3
d303 0c3b 3551 8331 0631 e33a 44fe f0da
4751 fedc 0001 0057 fff8 027b 0314 001b
0043 4015 011c 1c40 1d00 1b19 110f 150e
0800 0c03 0401 0108 4676 2f37 1800 3f3f
012e 2e2e 2e00 2e2e 2e2e 3130 0149 68b9
0008 001c 4968 61b0 4052 5838 1137 b900
1cff c038 5925 0607 0623 2227 2635 3437
3633 3217 0726 2322 0706 1514 1716 3332
3702 7b2d 353f 5a77 535f 6151 73a4 5649
3573 6b38 3139 3b64 6e42 8f4a 2429 5f6e
c0c8 6d5a 9324 6c60 568e 8e59 5c71 0002
0075 0000 0298 030c 000a 0015 0051 401d
0116 1640 1700 1110 0b06 0500 1211 0804
100f 0806 0706 0305 0401 0105 4676 2f37
1800 3f3c 3f3c 10fd 3c10 fd3c 012e 2e2e
2e2e 2e00 3130 0149 68b9 0005 0016 4968
61b0 4052 5838 1137 b900 16ff c038 5901
1407 062b 0111 3332 1716 0734 2726 2b01
1133 3237 3602 985d 4f8b ecef 7e4f 675a
2e38 8785 8585 3a2e 018b d165 5503 0c4a
62d5 9649 59fd 8560 4e00 0001 0075 0000
023f 030c 000b 0064 4027 010c 0c40 0d00
0b0a 0908 0706 0504 0302 0005 0408 0209
0808 0706 0b0a 0800 0302 0301 0001 0102
4676 2f37 1800 3f3c 3f3c 10fd 3c2f 3cfd
3c10 fd3c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
0031 3001 4968 b900 0200 0c49 6861 b040
5258 3811 37b9 000c ffc0 3859 2901 0321
1521 1121 1521 1121 023f fe37 0101 b9fe
9e01 3bfe c501 7303 0c48 fef1 48fe db00
0001 0075 0000 0236 030c 0009 005b 4022
010a 0a40 0b00 0908 0706 0504 0302 0100
0504 0803 0201 0008 0809 0803 0706 0101
0746 762f 3718 003f 3c3f 3c10 fd3c 2f3c
fd3c 012e 2e2e 2e2e 2e2e 2e2e 2e00 3130
0149 68b9 0007 000a 4968 61b0 4052 5838
1137 b900 0aff c038 5901 2111 2115 2111
2311 2102 36fe 9901 3bfe c55a 01c1 02c4
fef1 48fe 9303 0c00 0001 0057 fff8 02b3
0312 0023 0062 4026 0124 2440 2500 1b11
0223 2221 201f 1710 0a02 0100 1308 0e23
2208 2120 0e03 0601 0100 0101 0a46 762f
3718 003f 3c3f 3f2f 3cfd 3c10 fd01 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e31 3001
4968 b900 0a00 2449 6861 b040 5258 3811
37b9 0024 ffc0 3859 2123 3506 0706 2322
2726 3534 3736 3332 1707 2623 2207 0615
1417 1633 3237 363d 0123 3521 02b3 4017
3341 4f7e 5a6a 6d58 7ea5 5548 3976 753f
373c 416d 5c35 30bb 0111 6127 1e24 5b6d
c3cb 6c58 9424 6f65 5988 875a 613d 3753
4248 0001 0075 0000 0283 030c 000b 0060
4026 010c 0c40 0d00 0b0a 0908 0706 0504
0302 0100 0302 0809 080b 0a07 0306 0305
0401 0300 0101 0546 762f 3718 003f 173c
3f17 3c2f 3cfd 3c01 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 0031 3001 4968 b900 0500 0c49
6861 b040 5258 3811 37b9 000c ffc0 3859
2123 1121 1123 1133 1121 1133 0283 56fe
9f57 5701 6156 016b fe95 030c feab 0155
0001 0039 0000 0107 030c 000b 0063 4028
010c 0c40 0d00 0b0a 0908 0706 0504 0302
0009 0805 0304 0706 0b0a 0303 0207 0007
0603 0100 0101 0246 762f 3718 003f 3c3f
3c10 fd17 3c10 fd17 3c01 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 3130 0149 68b9 0002 000c
4968 61b0 4052 5838 1137 b900 0cff c038
5921 2327 3311 2335 3315 2311 3301 07cd
013c 3cce 3c3c 3802 9c38 38fd 6400 0001
0030 ff40 00f3 030c 0009 003e 4012 010a
0a40 0b00 0908 0705 0004 0908 0301 0546
762f 3718 003f 3c2f 012e 2e2e 2e2e 0031
3001 4968 b900 0500 0a49 6861 b040 5258
3811 37b9 000a ffc0 3859 3714 0706 0727
3635 1133 f32b 2f58 1170 5338 6341 460e
4611 9702 de00 0001 0075 0000 0293 030c
000b 0055 4020 010c 0c40 0d00 0802 0b0a
0807 0605 0403 000a 0907 0306 0305 0401
0300 0101 0546 762f 3718 003f 173c 3f17
3c01 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 3130
0149 68b9 0005 000c 4968 61b0 4052 5838
1137 b900 0cff c038 5921 2301 0711 2311
3311 0133 0302 9360 fefd 6457 5701 3662
ff01 907d feed 030c fe7f 0181 fec4 0001
0075 0000 021c 030c 0005 0048 4018 0106
0640 0700 0504 0302 0005 0408 0003 0203
0100 0101 0246 762f 3718 003f 3c3f 3c10
fd3c 012e 2e2e 2e2e 0031 3001 4968 b900
0200 0649 6861 b040 5258 3811 37b9 0006
ffc0 3859 2901 0333 1121 021c fe5a 0157
0150 030c fd3c 0001 0075 fffb 02f7 030c
000f 0060 4026 0110 1040 1100 0d0c 0706
0302 0f0a 0908 0702 0100 0f0e 0b03 0a03
0504 0109 0801 0300 0101 0946 762f 3718
003f 173c 3f3c 3f17 3c01 2e2e 2e2e 2e2e
2e2e 002e 2e2e 2e2e 2e31 3001 4968 b900
0900 1049 6861 b040 5258 3811 37b9 0010
ffc0 3859 2123 1123 0323 0323 1123 1133
1333 1333 02f7 4c06 d13c d106 4c7e c006
c17d 02b3 fd48 02bf fd46 030c fd6b 0295
0001 0075 0000 0285 030c 000b 0057 4021
010c 0c40 0d00 0908 0302 0b0a 0906 0504
0300 0b0a 0703 0603 0504 0103 0001 0105
4676 2f37 1800 3f17 3c3f 173c 012e 2e2e
2e2e 2e2e 2e00 2e2e 2e2e 3130 0149 68b9
0005 000c 4968 61b0 4052 5838 1137 b900
0cff c038 5921 2301 2311 2311 3301 3311
3302 856e feb2 084c 7a01 4407 4b02 b1fd
4f03 0cfd 5b02 a500 0002 0057 fff8 02e7
0314 000f 001f 0042 4015 0120 2040 2100
1418 1008 001c 0804 0c03 0401 0108 4676
2f37 1800 3f3f 10fd 012e 2e2e 2e00 2e31
3001 4968 b900 0800 2049 6861 b040 5258
3811 37b9 0020 ffc0 3859 0114 0706 2322
2726 3534 3736 3332 1716 0734 2726 2322
0706 1514 1716 3332 3736 02e7 695a 8485
5a6a 6a5a 8584 5a69 5a39 4075 7540 3939
4075 7540 3901 86c6 6c5c 5c6b c7c7 6b5c
5c6b c787 5864 6458 8787 5865 6558 0002
0076 0000 0260 030c 000c 0017 0056 401f
0118 1840 1900 1413 0504 1312 0d08 0706
0500 1211 0808 0908 0307 0601 0107 4676
2f37 1800 3f3c 3f3c 10fd 3c01 2e2e 2e2e
2e2e 2e2e 002e 2e2e 2e31 3001 4968 b900
0700 1849 6861 b040 5258 3811 37b9 0018
ffc0 3859 0114 0706 2b01 1123 1121 3217
1607 3427 262b 0111 3332 3736 0260 3f41
779d 5601 0270 3f39 5525 2a4a a6a3 4e29
2502 3268 3b3e feaf 030c 423c 5c3c 292d
fed5 2d29 0002 0057 ffc9 0308 0313 0012
0025 0052 401d 0126 2640 2700 2423 1702
2221 1b13 1210 0800 1f08 0401 0c03 0401
0108 4676 2f37 1800 3f3f 2f10 fd01 2e2e
2e2e 2e2e 2e2e 002e 2e2e 2e31 3001 4968
b900 0800 2649 6861 b040 5258 3811 37b9
0026 ffc0 3859 2507 2706 2322 2726 3534
3736 3332 1716 1514 0703 3427 2623 2207
0615 1417 1633 3237 2737 1736 0308 3970
546b 855a 6a6a 5a85 845a 6950 0a39 4075
7540 3939 4075 4b3b 6f39 6a34 0138 6f40
5c6b c7c6 6c5b 5b6c c6ad 6801 1587 5863
6358 8787 5865 2e6e 3869 5a00 0002 0075
0000 0277 030c 000d 0016 005e 4024 0117
1740 1800 1514 0302 1413 0e0d 0b06 0504
0300 1312 0806 0706 0305 0401 0300 0101
0546 762f 3718 003f 173c 3f3c 10fd 3c01
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 0500 1749 6861 b040 5258
3811 37b9 0017 ffc0 3859 2123 0323 1123
1121 3217 1615 1407 3734 2726 2b01 1133
3202 7756 b5a0 5701 066b 3e3a a149 2529
4ba1 a496 015b fea5 030c 3e39 5aa8 2ed3
3c26 2afe e000 0001 003e fff8 022d 0314
0028 004a 4019 0129 2940 2a00 1c0b 0722
1b15 0f06 001e 0819 1903 0401 0106 4676
2f37 1800 3f3f 10fd 012e 2e2e 2e2e 2e00
2e2e 2e31 3001 4968 b900 0600 2949 6861
b040 5258 3811 37b9 0029 ffc0 3859 2514
0706 2322 2737 1617 1633 3237 3635 3427
2627 2635 3437 3633 3217 0726 2322 0706
1514 171e 0117 1602 2d52 4562 8472 2b25
363c 3641 2834 431f 5acf 4c46 696b 6b23
5b55 3e2d 383e 17c5 2b45 bc64 342c 4d41
1c13 1518 1f42 3c35 1830 6e77 5734 3042
443a 181d 3833 2f11 6d29 4300 0001 002f
0000 024e 030c 0007 0052 401e 0108 0840
0900 0706 0504 0302 0100 0504 0103 0008
0607 0603 0302 0101 0546 762f 3718 003f
3c3f 3c10 fd17 3c01 2e2e 2e2e 2e2e 2e2e
0031 3001 4968 b900 0500 0849 6861 b040
5258 3811 37b9 0008 ffc0 3859 0123 1123
1123 3521 024e e456 e502 1f02 c4fd 3c02
c448 0001 0062 fff8 027e 030c 0015 004b
401a 0116 1640 1700 0f15 1413 0b0a 0908
0015 140a 0309 0304 0101 0846 762f 3718
003f 3f17 3c01 2e2e 2e2e 2e2e 2e2e 002e
3130 0149 68b9 0008 0016 4968 61b0 4052
5838 1137 b900 16ff c038 5901 1407 0623
2227 2635 1133 1114 1716 3332 3736 3511
3302 7e58 486e 7047 5756 3b30 4d4b 2f3d
5701 1495 4b3c 3c4a 9601 f8fe 0972 362c
2a37 7301 f700 0001 001c 0000 025d 030c
0008 0043 4016 0109 0940 0a00 0605 0300
0201 0108 0403 0300 0301 0346 762f 3718
003f 173c 3f3c 012e 2e00 2e2e 3130 0149
68b9 0003 0009 4968 61b0 4052 5838 1137
b900 09ff c038 5901 0323 0333 1333 3713
025d ed67 ed5b c208 14af 030c fcf4 030c
fd5b 4d02 5800 0001 001c 0000 0399 030c
0012 0051 401f 0113 1340 1400 100f 0b0a
0403 0800 0706 0203 0101 120e 0d09 0805
0003 0108 4676 2f37 1800 3f17 3c3f 173c
012e 2e00 2e2e 2e2e 2e2e 3130 0149 68b9
0008 0013 4968 61b0 4052 5838 1137 b900
13ff c038 5901 0323 0323 0703 2303 3313
3337 1333 1333 3713 0399 b360 a806 0d9b
61b3 5396 060a 9b55 a606 0a8c 030c fcf4
0292 3dfd ab03 0cfd 6638 0262 fd66 3802
6200 0001 0022 0000 026f 030c 000b 004f
401d 010c 0c40 0d00 0802 0b0a 0605 0400
0a09 0703 0603 0403 0103 0001 0104 4676
2f37 1800 3f17 3c3f 173c 012e 2e2e 2e2e
2e00 2e2e 3130 0149 68b9 0004 000c 4968
61b0 4052 5838 1137 b900 0cff c038 5921
230b 0123 1303 331b 0133 0302 6f5f c6c9
5ffc e85e bbab 5edf 0152 feae 019e 016e
fed7 0129 fe92 0001 001d 0000 0279 030c
0009 004b 401a 010a 0a40 0b00 0807 0504
0302 0100 0302 0109 0605 0300 0301 0546
762f 3718 003f 173c 3f3c 012e 2e2e 2e2e
2e00 2e2e 3130 0149 68b9 0005 000a 4968
61b0 4052 5838 1137 b900 0aff c038 5909
0111 2311 0133 1333 1302 79fe fd57 fefe
63c7 07c7 030c fe36 febe 0142 01ca fe97
0169 0001 0025 0000 0238 030c 0009 0057
4020 010a 0a40 0b00 0908 0706 0504 0302
0004 0308 0509 0808 0006 0503 0100 0101
0246 762f 3718 003f 3c3f 3c10 fd3c 10fd
3c01 2e2e 2e2e 2e2e 2e2e 2e00 3130 0149
68b9 0002 000a 4968 61b0 4052 5838 1137
b900 0aff c038 5929 0127 0121 3521 1501
2102 38fd ee01 019c fe75 01fb fe5b 01ac
4302 8148 3afd 7600 0001 003b ff39 0113
0332 0007 0054 401e 0108 0840 0900 0706
0504 0302 0100 0706 0700 0504 0702 0100
0302 0401 0146 762f 3718 003f 3c2f 3c10
fd3c 10fd 3c01 2e2e 2e2e 2e2e 2e2e 0031
3001 4968 b900 0100 0849 6861 b040 5258
3811 37b9 0008 ffc0 3859 0523 1133 1523
1133 0113 d8d8 8383 c703 f946 fc93 0001
003b 0000 019d 0356 0003 003a 4010 0104
0440 0500 0200 0302 0100 0101 0246 762f
3718 003f 3c2f 3c01 2e2e 0031 3001 4968
b900 0200 0449 6861 b040 5258 3811 37b9
0004 ffc0 3859 2123 0133 019d 4ffe ed4f
0356 0001 003b ff39 0113 0332 0007 0054
401e 0108 0840 0900 0706 0504 0302 0100
0302 0700 0504 0706 0100 0706 0401 0146
762f 3718 003f 3c2f 3c10 fd3c 10fd 3c01
2e2e 2e2e 2e2e 2e2e 0031 3001 4968 b900
0100 0849 6861 b040 5258 3811 37b9 0008
ffc0 3859 0523 3533 1123 3533 0113 d883
83d8 c746 036d 4600 0001 0005 0273 0119
0305 0006 003f 4013 0107 0740 0800 0204
0006 0504 0301 0300 0104 4676 2f37 1800
2f17 3c2f 3c01 2e2e 002e 3130 0149 68b9
0004 0007 4968 61b0 4052 5838 1137 b900
07ff c038 5901 2327 0723 3733 0119 4743
4347 6a40 0273 5656 9200 0001 003b ffc0
01c9 0000 0003 003d 4011 0104 0440 0500
0302 0100 0302 0100 0101 4676 2f37 1800
2f3c 2f3c 012e 2e2e 2e00 3130 0149 68b9
0001 0004 4968 61b0 4052 5838 1137 b900
04ff c038 5905 2135 2101 c9fe 7201 8e40
4000 0001 003b 026d 00bb 0307 0003 003c
4011 0104 0440 0500 0200 0308 0002 0100
0102 4676 2f37 1800 2f3c 2f10 fd01 2e2e
0031 3001 4968 b900 0200 0449 6861 b040
5258 3811 37b9 0004 ffc0 3859 1323 2717
bb42 3e4b 026d 9a01 0002 002d fff7 01c1
021a 001d 0026 0061 4026 0127 2740 2800
140f 0323 1f1e 1a19 1510 0f09 0012 0717
2507 0521 070d 1702 0501 0100 0101 0946
762f 3718 003f 3c3f 3f2f fd10 fd10 fd01
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 3130
0149 68b9 0009 0027 4968 61b0 4052 5838
1137 b900 27ff c038 5921 2326 2706 2322
2726 3534 3736 3332 1735 3423 2207 2736
3332 1d01 1417 1627 3526 2322 1514 3332
01c1 580a 0230 4e4f 2f34 3c36 4d48 2962
4330 1c46 52ae 0301 5925 3e73 663d 0d1a
3026 2a51 4d2e 2a12 4267 2042 24b1 f43d
1404 5178 1168 5700 0002 005a fff8 01f9
0332 0010 001b 0054 401f 011c 1c40 1d00
0b16 1511 0b0a 0908 0018 0704 1307 0d0d
020a 0904 0401 0108 4676 2f37 1800 3f3f
3c3f 10fd 10fd 012e 2e2e 2e2e 2e2e 2e00
2e31 3001 4968 b900 0800 1c49 6861 b040
5258 3811 37b9 001c ffc0 3859 0114 0706
2322 2726 3511 3311 3633 3217 1607 3423
2207 1514 3332 3736 01f9 4837 5954 3241
5532 5352 3241 5b77 5127 723b 1c26 010e
9b46 352e 3a7f 0253 feb8 3035 4497 c93a
c19d 242f 0001 0032 fff7 01a3 021a 0015
0049 4019 0116 1640 1700 150d 110c 0600
1307 020f 070a 0a02 0201 0106 4676 2f37
1800 3f3f 10fd 10fd 012e 2e2e 2e00 2e2e
3130 0149 68b9 0006 0016 4968 61b0 4052
5838 1137 b900 16ff c038 5925 0623 2227
2635 3437 3633 3217 0726 2322 1514 3332
3701 a33f 605c 373f 3c36 6056 3831 2835
7878 442a 3f48 3f46 8b8c 4740 3e31 29cd
cb34 0002 0032 fff9 01d1 0332 0010 001b
005c 4023 011c 1c40 1d00 1a0e 0216 1211
100f 0e08 0201 0014 080c 100f 040c 0204
0101 0001 0108 4676 2f37 1800 3f3c 3f3f
3f3c 10fd 012e 2e2e 2e2e 2e2e 2e2e 2e00
2e2e 2e31 3001 4968 b900 0800 1c49 6861
b040 5258 3811 37b9 001c ffc0 3859 2123
3506 2322 2726 3534 3736 3332 1711 3303
1126 2322 1514 1716 3332 01d1 552c 5753
3440 4036 4c55 3355 552c 4f75 241f 3d4c
272e 3b48 9284 4a3e 3201 4afd 4901 1640
c771 3029 0002 0032 fff7 01cd 021b 0016
001c 0056 4020 011d 1d40 1e00 071c 1716
0e08 0100 0100 071c 1705 080a 1a07 1212
020a 0101 0e46 762f 3718 003f 3f10 fd10
fd2f 3cfd 3c01 2e2e 2e2e 2e2e 2e00 2e31
3001 4968 b900 0e00 1d49 6861 b040 5258
3811 37b9 001d ffc0 3859 2521 1617 1633
3237 1706 2322 2726 3534 3736 3332 1716
1527 2e01 2322 0701 cdfe c001 2926 3e49
3030 4b5f 633e 4742 3a5c 5535 3957 0532
356f 0df7 5b31 2c39 3150 3e47 898b 4a41
3c43 7a11 534e a100 0001 002d 0000 012e
0331 0015 007a 4034 0116 1640 1700 0908
0100 1514 1311 100c 0b0a 0908 0706 0504
0302 0100 0706 0303 0207 0411 0710 1004
1514 0b03 0a02 0504 0101 0946 762f 3718
003f 3c3f 173c 3f10 fd10 fd17 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
002e 2e2e 2e31 3001 4968 b900 0900 1649
6861 b040 5258 3811 37b9 0016 ffc0 3859
0123 1133 1523 3533 1123 3533 3534 3736
3315 221d 0133 012e 644a d334 4848 3a30
4f64 6401 cffe 7140 4001 8f43 8750 2820
4452 8900 0003 0032 fee3 0205 0268 002d
0035 003d 0065 4026 013e 3e40 3f00 3c38
3430 2a28 2422 153a 3632 2e26 1f1d 1a19
100e 0c0a 0800 1913 0204 0001 0846 762f
3718 003f 3f2f 012e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 002e 2e2e 2e2e 2e2e 2e2e
3130 0149 68b9 0008 003e 4968 61b0 4052
5838 1137 b900 3eff c038 5905 1407 0623
2227 2635 3437 2635 3437 2635 3436 3332
1736 3736 3715 2206 0716 1514 0623 2227
0615 1417 3633 3217 1603 3423 2215 1433
3213 3423 2215 1433 3202 0548 3d64 653d
4841 2024 3573 5a37 2c10 1221 3d1e 3103
3e75 5a34 2b14 1c2f 3564 3d48 7b7b 7a7a
7b2e 9c9d 9d9c 7856 2b24 242b 5551 2b30
3238 2a37 5458 6f16 2612 230a 4a26 1435
5d57 6f14 1a1f 2b1c 0c24 2b01 7587 8786
febc 6364 6300 0001 005f 0000 01f8 0332
0013 0059 4022 0114 1440 1500 0d13 0d0c
0b0a 0908 0201 0006 080f 0f02 0c0b 040a
0901 0300 0101 0a46 762f 3718 003f 173c
3f3c 3f10 fd01 2e2e 2e2e 2e2e 2e2e 2e2e
002e 3130 0149 68b9 000a 0014 4968 61b0
4052 5838 1137 b900 14ff c038 5921 2311
3427 2623 2207 1123 1133 1136 3332 1716
1501 f855 1317 394c 4055 5542 5350 2936
0154 3e1d 2247 fe76 0332 feab 3d25 3175
0002 0028 0000 00f8 02d8 000b 0013 005d
4024 0114 1440 150c 1312 1110 0f0e 0d0c
0600 0308 0913 120f 030e 070c 0911 1002
0d0c 0101 0d46 762f 3718 003f 3c3f 3c2f
10fd 173c 10fd 012e 2e2e 2e2e 2e2e 2e2e
2e00 3130 0149 68b9 000d 0014 4968 61b0
4052 5838 1137 b900 14ff c038 5913 1406
2322 2635 3436 3332 1613 2335 3311 3311
33c3 2016 161f 1f16 171f 35d0 3b55 4002
a216 2020 1616 201f fd47 4001 d1fe 2f00
0002 0000 fef1 00b4 02d8 000b 0015 0047
4017 0116 1640 1700 0315 1413 0f0c 0600
0915 1402 0e00 010f 4676 2f37 1800 3f3f
3c2f 012e 2e2e 2e2e 2e2e 002e 3130 0149
68b9 000f 0016 4968 61b0 4052 5838 1137
b900 16ff c038 5913 1406 2322 2635 3436
3332 1603 1407 2736 3736 3511 33b4 2016
161f 1f16 171f 0d81 2633 1010 5402 a216
1f1f 1616 201f fd2f c92e 3f18 2a27 5f02
1900 0001 005f 0000 0201 0332 000b 0056
4020 010c 0c40 0d00 0802 0b0a 0807 0605
0403 000a 0902 0706 0405 0401 0300 0101
0546 762f 3718 003f 173c 3f3c 3f3c 012e
2e2e 2e2e 2e2e 2e2e 002e 2e31 3001 4968
b900 0500 0c49 6861 b040 5258 3811 37b9
000c ffc0 3859 2123 0307 1523 1133 1137
3307 0201 5ca8 4955 55ce 68b5 0123 48db
0332 fe10 cfb5 0001 005a fff5 00e6 0332
0009 0046 4017 010a 0a40 0b00 0905 0403
0200 0908 0004 0304 0001 0102 4676 2f37
1800 3f3f 3c10 fd01 2e2e 2e2e 2e2e 0031
3001 4968 b900 0200 0a49 6861 b040 5258
3811 37b9 000a ffc0 3859 1722 3511 3311
1417 1617 e68c 5508 0b24 0b94 02a9 fd6c
3411 1503 0001 005f 0000 0316 021a 001c
0069 402b 011d 1d40 1e00 1612 1c12 1110
0f0e 0d09 0807 0602 0100 0b04 0814 1814
0211 1002 0f0e 0807 0105 0001 010f 4676
2f37 1800 3f17 3c3f 3c3f 3c10 fd3c 012e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e
3130 0149 68b9 000f 001d 4968 61b0 4052
5838 1137 b900 1dff c038 5921 2311 3423
2207 1123 1134 2322 0711 2311 3315 3633
3217 3633 3217 1615 0316 5563 4d2c 5562
4733 5555 3655 5e30 3d60 492e 3501 4d84
4ffe 7e01 4d84 47fe 7602 1235 3d49 492b
3260 0001 005f 0000 01f8 021a 0013 0059
4022 0114 1440 1500 0d13 0d0c 0b0a 0908
0201 0006 080f 0f02 0c0b 020a 0901 0300
0101 0a46 762f 3718 003f 173c 3f3c 3f10
fd01 2e2e 2e2e 2e2e 2e2e 2e2e 002e 3130
0149 68b9 000a 0014 4968 61b0 4052 5838
1137 b900 14ff c038 5921 2311 3427 2623
2207 1123 1133 1536 3332 1716 1501 f855
1216 394c 4255 5542 5351 2836 0154 3f1c
2247 fe76 0211 343d 232e 7500 0002 0032
fff8 01e1 021a 000f 0017 0045 4017 0118
1840 1900 1410 0800 1607 0412 070c 0c02
0401 0108 4676 2f37 1800 3f3f 10fd 10fd
012e 2e2e 2e00 3130 0149 68b9 0008 0018
4968 61b0 4052 5838 1137 b900 18ff c038
5901 1407 0623 2227 2635 3437 3633 3217
1607 3423 2215 1433 3201 e141 385e 6237
3f3f 3861 5e38 4158 7f80 807f 0108 8d46
3d3f 468b 8c47 3f3e 478d cece cc00 0002
005f fee4 01fe 021a 0010 001b 005c 4023
011c 1c40 1d00 130b 0616 1511 0b0a 0908
0706 0018 0704 0d02 0a09 0208 0700 0401
0108 4676 2f37 1800 3f3f 3c3f 3c3f 10fd
012e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e31
3001 4968 b900 0800 1c49 6861 b040 5258
3811 37b9 001c ffc0 3859 0114 0706 2322
2711 2311 3315 3633 3217 1607 3423 2207
1116 3332 3736 01fe 3f34 534f 3555 5535
514b 3544 5b72 5429 244e 3d1d 2301 0f92
483b 29fe c103 2e2e 3638 488f c741 fee3
3429 3000 0002 0032 fee3 01d1 021a 0010
0019 005c 4023 011a 1a40 1b00 140e 0216
1211 100f 0e08 0201 0018 0704 100f 020c
0204 0101 0000 0108 4676 2f37 1800 3f3c
3f3f 3f3c 10fd 012e 2e2e 2e2e 2e2e 2e2e
2e00 2e2e 2e31 3001 4968 b900 0800 1a49
6861 b040 5258 3811 37b9 001a ffc0 3859
0123 1106 2322 2726 3534 3736 3332 1735
3303 1126 2322 1514 3332 01d1 552d 5a52
333e 4036 4c60 2855 552b 4e76 7b4d fee3
0145 2e3f 4b93 8346 3a37 2efe 6c01 1441
bfd3 0001 003b 0000 0192 021a 0011 0061
4026 0112 1240 1300 0e03 010e 0d0c 0b0a
0908 0706 0500 0b0a 0703 0607 0810 020d
0c02 0908 0101 0946 762f 3718 003f 3c3f
3c3f 10fd 173c 012e 2e2e 2e2e 2e2e 2e2e
2e2e 002e 2e2e 3130 0149 68b9 0009 0012
4968 61b0 4052 5838 1137 b900 12ff c038
5901 0726 2322 0711 3315 2335 3311 3315
3633 3201 9224 2321 3d2a 4bd3 3355 2f40
3401 fe3e 113e fead 4040 01d2 2b33 0001
0028 fff8 018b 021b 0029 004a 4019 012a
2a40 2b00 1c0b 0922 1b15 0d08 001e 0719
1902 0401 0108 4676 2f37 1800 3f3f 10fd
012e 2e2e 2e2e 2e00 2e2e 2e31 3001 4968
b900 0800 2a49 6861 b040 5258 3811 37b9
002a ffc0 3859 2514 0706 2322 2726 2737
1633 3235 3427 2627 2627 2635 3437 3633
3217 0726 2322 0706 1514 1716 1716 1716
018b 3932 4c38 2e14 3228 4140 6221 133d
431a 3337 3048 534c 2146 3026 191e 210f
3f47 1831 8848 2622 1308 1e3f 2f42 261b
101f 2216 2b38 4526 222c 3e23 0f12 211e
1a0b 2327 162c 0001 0026 fff8 0127 028c
0012 0066 4028 0113 1340 1400 0e0d 0605
120f 0e0d 0c0b 0a09 0807 0605 0400 1208
000a 090c 0b08 0307 0200 0101 0646 762f
3718 003f 3f17 3c2f 3c10 fd01 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 0600 1349 6861 b040 5258
3811 37b9 0013 ffc0 3859 0522 2726 3511
2335 1735 3315 3315 2311 1416 3301 274f
3139 4848 5564 6433 3108 272c 5201 3342
017b 7a42 fecc 2834 0001 005f fff8 01ec
0212 0013 0059 4022 0114 1440 1500 0213
1211 0b0a 0908 0201 000f 0804 1312 0a03
0902 0401 0100 0101 0846 762f 3718 003f
3c3f 3f17 3c10 fd01 2e2e 2e2e 2e2e 2e2e
2e2e 002e 3130 0149 68b9 0008 0014 4968
61b0 4052 5838 1137 b900 14ff c038 5921
2335 0623 2227 2635 1133 1114 1716 3332
3711 3301 ec55 3853 5028 3555 1215 3a4d
3555 2f37 2531 7501 4ffe ac45 1a1e 4101
9000 0001 0014 0000 01dc 0212 0009 0043
4016 010a 0a40 0b00 0706 0300 0201 0109
0403 0300 0201 0346 762f 3718 003f 173c
3f3c 012e 2e00 2e2e 3130 0149 68b9 0003
000a 4968 61b0 4052 5838 1137 b900 0aff
c038 5901 0323 0333 1317 3337 1301 dcb8
58b8 5b77 1004 1277 0212 fdee 0212 fe95
4141 016b 0001 0020 0000 02e9 0212 0012
0051 401f 0113 1340 1400 100f 0b0a 0403
0800 0706 0203 0101 120e 0d09 0805 0002
0108 4676 2f37 1800 3f17 3c3f 173c 012e
2e00 2e2e 2e2e 2e2e 3130 0149 68b9 0008
0013 4968 61b0 4052 5838 1137 b900 13ff
c038 5901 0323 0323 0703 2303 3313 3337
1333 1333 3713 02e9 9e52 7104 125f 51a2
5772 030f 6350 7203 0f63 0212 fdee 018c
46fe ba02 12fe 5442 016a fe54 4201 6a00
0001 000f 0000 01d6 0212 000b 004f 401d
010c 0c40 0d00 0802 0b0a 0605 0400 0a09
0703 0602 0403 0103 0001 0104 4676 2f37
1800 3f17 3c3f 173c 012e 2e2e 2e2e 2e00
2e2e 3130 0149 68b9 0004 000c 4968 61b0
4052 5838 1137 b900 0cff c038 5921 2327
0723 1327 3317 3733 0701 d664 8380 60b0
9a63 6f6a 5f99 d6d6 011c f6b6 b6fd 0001
0014 fedf 01cd 0211 000e 004a 401a 010f
0f40 1000 0d0c 0a09 0400 0407 0303 000e
0b0a 0300 0201 0a46 762f 3718 003f 173c
3f10 fd01 2e2e 2e2e 002e 2e31 3001 4968
b900 0a00 0f49 6861 b040 5258 3811 37b9
000f ffc0 3859 0103 0607 2736 3736 3f01
0333 1333 1301 cdcf 3f9d 083d 2423 190f
b25b 7d04 8702 11fd 98bd 0d42 0628 2552
3102 1afe 5901 a700 0001 0032 0000 019c
0212 0009 0059 4021 010a 0a40 0b00 0908
0706 0504 0302 0100 0908 0700 0403 0705
0605 0201 0001 0101 4676 2f37 1800 3f3c
3f3c 10fd 3c10 fd3c 012e 2e2e 2e2e 2e2e
2e2e 2e00 3130 0149 68b9 0001 000a 4968
61b0 4052 5838 1137 b900 0aff c038 5929
0135 0123 3521 1501 2101 9cfe 9601 03ef
0156 fef7 0109 3c01 9442 33fe 6400 0001
003b ff39 011e 0332 001b 0069 4029 011c
1c40 1d00 1b18 1715 1412 110e 0d0a 0907
0604 0300 1b1a 0700 0607 070f 0e07 0c01
000d 0c04 0106 4676 2f37 1800 3f3c 2f3c
10fd 3c2f fd10 fd3c 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 3130 0149 68b9
0006 001c 4968 61b0 4052 5838 1137 b900
1cff c038 5905 2322 3511 3423 3532 3511
343b 0115 2322 1511 1407 1516 1511 143b
0101 1e48 5d3e 3e5d 4826 2d4a 4a2d 26c7
6e01 354e 344e 0118 6e39 38fe d343 0c02
0c43 feb6 3800 0001 0069 ff38 00ad 0356
0003 003d 4011 0104 0440 0500 0302 0100
0302 0100 0101 4676 2f37 1800 2f3c 2f3c
012e 2e2e 2e00 3130 0149 68b9 0001 0004
4968 61b0 4052 5838 1137 b900 04ff c038
5917 2311 33ad 4444 c804 1e00 0001 003b
ff39 011e 0332 001b 005e 4022 011c 1c40
1d00 1413 0807 1b19 1815 1411 100e 0d0b
0a07 0603 0200 0605 1615 0401 0646 762f
3718 003f 3c2f 3c01 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e31 3001
4968 b900 0600 1c49 6861 b040 5258 3811
37b9 001c ffc0 3859 0122 1511 142b 0135
3332 3511 3437 3526 3511 342b 0135 3332
1511 1433 011e 3e5d 4826 2d4a 4a2d 2648
5d3e 012a 4efe cb6e 3938 014a 430c 020c
4301 2d38 396e fee8 4e00 0001 000b 027c
013c 02df 0011 0040 4013 0112 1240 1300
110d 0708 0005 070a 0a02 0108 4676 2f37
1800 2f2f 10fd 012e 2e00 2e2e 2e31 3001
4968 b900 0800 1249 6861 b040 5258 3811
37b9 0012 ffc0 3859 0106 2322 2623 2207
2736 3332 1633 3237 3637 013c 312f 1646
1522 1c22 3035 1747 0d13 060f 1a02 a226
1f19 3429 2102 0414 0001 003d 0000 01ed
0332 000b 0060 4026 010c 0c40 0d00 0b0a
0908 0706 0504 0302 0100 0504 0103 0007
0b0a 0703 0609 0804 0302 0101 0546 762f
3718 003f 3c3f 3c2f 173c fd17 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 0031 3001 4968
b900 0500 0c49 6861 b040 5258 3811 37b9
000c ffc0 3859 0123 1123 1123 3533 1133
1133 01ed b050 b0b0 50b0 01ce fe32 01ce
4201 22fe de00 0001 0032 ff93 01a3 027b
001b 0055 401d 011c 1c40 1d00 1b19 1513
1712 100f 0e0d 0905 0403 0200 0f0e 0403
0109 4676 2f37 1800 2f3c 2f3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e 3130
0149 68b9 0009 001c 4968 61b0 4052 5838
1137 b900 1cff c038 5925 0607 1523 3526
2726 3534 3736 3735 3315 1617 0726 2322
1514 3332 3701 a333 473d 5330 3735 2f56
3d3e 2b31 2637 7878 4628 3f3a 0b67 6509
3e47 8182 4741 0862 640b 3031 27cb c831
0001 003d fff6 024a 02dc 002b 0075 4031
012c 2c40 2d00 2b28 1906 2624 2322 2120
1f18 0e0d 0c0b 0908 0009 0708 2120 0f03
0e07 2322 0d03 0c1d 0714 1408 0201 0108
4676 2f37 1800 3f3c 2f10 fd2f 173c fd17
3c10 fd01 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e00 2e2e 2e2e 3130 0149 68b9 0008
002c 4968 61b0 4052 5838 1137 b900 2cff
c038 5925 0623 2227 2627 0607 3536 3d01
2335 3337 3637 3633 3217 1617 0726 2726
2322 1d01 3315 2315 1407 1633 3236 3702
4a1e a235 2a18 3e2f 6965 5e5e 0101 282f
5d39 2a22 272f 240e 1c2b 6a63 6302 523b
423e 0da5 af11 0923 3902 4001 54bd 3d7b
5a3a 461a 1632 2e2d 0b16 957e 3db6 100a
3c34 3e00 0002 003d ff7c 019d 02ff 0033
0043 005b 4021 0144 4440 4500 4038 2009
3c34 322e 261f 1917 150d 0800 0b07 0422
071d 1d04 0115 4676 2f37 1800 2f2f 10fd
10fd 012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00
2e2e 2e2e 3130 0149 68b9 0015 0044 4968
61b0 4052 5838 1137 b900 44ff c038 5925
1407 0623 2227 2627 3716 3332 3534 2726
2726 2726 3534 3726 3534 3736 3332 1707
2623 2207 0615 1417 1617 1617 1615 1407
0607 1627 3427 2623 2207 0615 1417 1633
3237 3601 9d38 324c 3227 1f30 263f 4065
2609 3e53 212b 7b6a 352f 4752 4a1f 462e
271a 1f2b 2323 3e1d 2f18 1c34 684c 1e1a
2829 1c20 201c 2928 1a1e 0a46 2721 0e0c
1e3a 2d45 281e 0824 3027 3147 7a2b 3a4d
4426 222b 3a23 1013 2320 1e15 1528 2137
4634 2c33 1c36 df3b 201c 1c20 3b3b 201c
1c20 0001 003b 00da 0147 01e6 000b 0035
400d 010c 0c40 0d00 0600 0903 0106 4676
2f37 1800 2f2f 012e 2e00 3130 0149 68b9
0006 000c 4968 61b0 4052 5838 1137 b900
0cff c038 5901 1406 2322 2635 3436 3332
1601 474e 3837 4f4f 3738 4e01 6037 4f4f
3738 4e4e 0002 0055 ffa9 01fd 0331 0008
000e 0055 401f 010f 0f40 1009 0100 0e0d
0b0a 0908 0400 090a 0707 0c0b 0e0d 0803
0704 0104 4676 2f37 1800 3f17 3c2f 3c10
fd3c 012e 2e2e 2e2e 2e2e 2e00 2e2e 3130
0149 68b9 0004 000f 4968 61b0 4052 5838
1137 b900 0fff c038 5901 2322 2635 3436
3b01 1707 1123 0333 010b 0948 6565 4809
f258 5401 ad01 d765 4848 6543 01fc bc03
8800 0001 005f ff39 0200 032c 002a 0055
401e 012b 2b40 2c00 0806 2825 1e1d 1c1b
1411 0b05 0017 0721 211d 1c03 0101 1d46
762f 3718 003f 2f3c 2f10 fd01 2e2e 2e2e
2e2e 2e2e 2e2e 2e00 2e2e 3130 0149 68b9
001d 002b 4968 61b0 4052 5838 1137 b900
2bff c038 5925 1406 2322 2737 1633 3236
3534 2726 2726 3534 3635 3426 2322 0706
1511 2311 3436 3332 1716 1514 0615 1416
0200 5d47 3f33 271d 2723 3021 1f1f 214c
2e2b 321c 1955 6453 6233 284f 7cae 5165
1d3f 1338 2b26 2b27 2631 3138 7b30 2839
2520 2bfc c103 3d57 5f39 2d37 4284 1c2d
9800 0001 003b 026d 00bb 0307 0003 0037
400e 0104 0440 0500 0200 0002 0101 0246
762f 3718 002f 3c2f 012e 2e00 3130 0149
68b9 0002 0004 4968 61b0 4052 5838 1137
b900 04ff c038 5913 0723 37bb 3e42 3503
079a 9900 0002 003b 026b 0163 02d7 000b
0017 003d 4011 0118 1840 1900 120c 0600
1509 0f03 0112 4676 2f37 1800 2f3c 2f3c
012e 2e2e 2e00 3130 0149 68b9 0012 0018
4968 61b0 4052 5838 1137 b900 18ff c038
5901 1406 2322 2635 3436 3332 1607 1406
2322 2635 3436 3332 1601 6320 1616 1f1f
1617 1fbc 2016 1620 2016 171f 02a1 1620
2016 1620 1f17 1620 2016 171f 1f00 0002
0020 0000 0375 030c 000f 0012 007d 4035
0113 1340 1400 1112 1110 0f0e 0d0c 0b0a
0908 0705 0201 0009 0808 060d 0c08 0b0a
0f0e 0800 1210 0703 0207 0603 0504 0103
0001 0105 4676 2f37 1800 3f17 3c3f 3c2f
3cfd 3c10 fd3c 2f3c fd3c 10fd 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 002e
3130 0149 68b9 0005 0013 4968 61b0 4052
5838 1137 b900 13ff c038 5929 0135 2307
2301 2115 2111 2115 2111 2125 1103 0375
fe6e dd8e 5801 b801 8cfe d501 05fe fb01
3cfe 6eb9 f6f6 030c 48fe f148 fedb f401
49fe b700 0003 0057 ffc5 02e7 0348 0015
001e 0027 005e 4023 0128 2840 2900 2721
1811 0625 1f19 1614 130b 0908 001b 0804
1312 0807 0f03 0401 010b 4676 2f37 1800
3f3f 2f3c 2f3c 10fd 012e 2e2e 2e2e 2e2e
2e2e 2e00 2e2e 2e2e 2e31 3001 4968 b900
0b00 2849 6861 b040 5258 3811 37b9 0028
ffc0 3859 0114 0706 2322 2707 2337 2635
3437 3633 3217 3733 0716 0734 2701 1633
3237 3603 2623 2207 0615 1417 02e7 695a
844a 4127 4f39 816a 5a85 433d 254f 3689
5a53 fefb 2f3b 7540 398e 2b35 7540 394c
0186 c66c 5c20 537a 6add c76b 5c1b 4f73
6ae5 a859 fdd6 1b64 5901 b416 6458 879f
5a00 0001 001d 0000 0279 030c 000f 0068
402b 0110 1040 1100 0e0d 0b0a 0908 0706
0504 0302 0100 0a09 0203 0107 0807 0403
0306 0501 0f0c 0b03 0003 010b 4676 2f37
1800 3f17 3c3f 3c2f 173c fd17 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e31 3001
4968 b900 0b00 1049 6861 b040 5258 3811
37b9 0010 ffc0 3859 0103 3315 2311 2311
2335 3303 3313 3313 0279 f58a 9857 9083
f563 c707 c703 0cfe 4e3f fee5 011b 3f01
b2fe 9701 6900 0002 003b 01b6 0174 0335
001d 0026 005b 4021 0127 2740 280c 241b
0f0d 0c02 2622 1e1c 1b15 0c08 0703 0007
0520 0719 0511 0115 4676 2f37 1800 2f2f
2ffd 10fd 012e 2e2e 2e2e 2e2e 2e2e 2e00
2e2e 2e2e 2e2e 3130 0149 68b9 0015 0027
4968 61b0 4052 5838 1137 b900 27ff c038
5913 2207 2736 3332 1d01 1417 1617 2326
2706 2322 2726 3534 3736 3332 1735 3415
2623 2215 1433 3237 d731 2813 3440 8505
0605 4307 0534 3438 2327 2f29 3832 2725
2b57 4b35 2702 ff18 341a 7da0 2914 100f
0916 251b 1d39 3521 1d0e 3043 a70e 4339
2e00 0002 003b 01b5 0187 0333 000f 001f
0040 4013 0120 2040 2100 1c18 1008 0014
070c 0c04 0108 4676 2f37 1800 2f2f 10fd
012e 2e2e 2e00 2e31 3001 4968 b900 0800
2049 6861 b040 5258 3811 37b9 0020 ffc0
3859 0114 0706 2322 2726 3534 3736 3332
1716 0734 2726 2322 0706 1514 1716 3332
3736 0187 352d 4446 2c34 342c 4644 2d35
3e1f 1b2e 2e1b 1f1f 1b2e 2e1b 1f02 7361
332a 2c32 6060 332d 2b33 6248 2622 2226
4848 2522 2225 0003 002d fff7 02da 021b
0027 002e 0036 0074 4031 0137 3740 3800
211c 0c07 0332 2f2e 2827 1d17 1208 0100
302f 0103 0007 2e28 1703 1634 070a 2c1a
071f 231f 020e 0a01 0112 4676 2f37 1800
3f3c 3f3c 10fd 3c10 fd2f 173c fd17 3c01
2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e
2e31 3001 4968 b900 1200 3749 6861 b040
5258 3811 37b9 0037 ffc0 3859 2521 1433
3237 3637 1706 2322 2706 2322 2726 3534
3736 3b01 2726 2322 0727 3633 3217 3633
3217 1615 2726 2726 2322 0f01 2322 1514
3332 3702 dafe c97f 2626 2013 304b 646c
3237 6e4f 2f34 4138 505e 0102 6142 301c
4652 6e29 325e 5430 3557 0613 1633 6f0d
524e 7e66 3d28 f7b8 1310 1631 504d 4d26
2a51 4b2b 253a 6720 4224 4d4e 3c42 7b11
5623 28a1 3c65 5736 0003 0032 ffc4 01e1
0248 0015 001c 0023 0061 4025 0124 2440
2500 2318 1106 211d 1916 1413 0b09 0800
1b07 041f 070f 1312 0807 0f02 0401 010b
4676 2f37 1800 3f3f 2f3c 2f3c 10fd 10fd
012e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e
3130 0149 68b9 000b 0024 4968 61b0 4052
5838 1137 b900 24ff c038 5901 1407 0623
2227 0723 3726 3534 3736 3332 1737 3307
1607 3427 0316 3332 0326 2322 1514 1701
e141 385e 2c25 204a 314e 3f38 6137 2c22
4a37 3f58 119f 161b 7f3c 1c27 801c 0108
8d46 3d0d 4163 459c 8c47 3f17 456e 488a
4c30 fec1 0901 8614 ce62 3200 0002 003d
fff0 01dc 0314 000b 0025 004f 401b 0126
2640 270c 2523 1a19 211b 1918 110c 0600
0308 090e 0903 0111 4676 2f37 1800 3f2f
10fd 012e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e
3130 0149 68b9 0011 0026 4968 61b0 4052
5838 1137 b900 26ff c038 5901 1406 2322
2635 3436 3332 1613 0623 2226 3534 3736
373e 013d 0133 1716 0706 0706 1514 3332
3701 7024 1a1a 2425 191a 246c 5f62 6678
292b 2c29 2150 0101 5d22 2220 864a 4a02
d61a 2525 1a1a 2424 fd3e 3e64 5b3f 2b25
2524 3c27 565f 6251 1b1b 1f2f 6d32 0002
0073 0000 00f4 0313 000b 000f 0046 4017
0110 1040 1100 0f0e 0d0c 0600 0308 090d
0c01 0903 0106 4676 2f37 1800 3f3f 3c10
fd01 2e2e 2e2e 002e 2e31 3001 4968 b900
0600 1049 6861 b040 5258 3811 37b9 0010
ffc0 3859 1314 0623 2226 3534 3633 3216
0323 1333 f426 1a1b 2626 1b1a 260f 600e
4402 d21b 2525 1b1b 2626 fd13 0248 0001
003b ff61 0197 0332 001d 006d 402d 011e
1e40 1f00 0118 1716 1514 1311 100c 0b0a
0908 0700 0307 1c15 140b 030a 0717 1609
0308 1107 1010 1c04 0110 4676 2f37 1800
3f2f 10fd 2f17 3cfd 173c 10fd 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 002e 3130
0149 68b9 0010 001e 4968 61b0 4052 5838
1137 b900 1eff c038 5901 0726 2322 0706
1d01 3315 2311 1407 0623 3532 3511 2335
3335 3437 3633 3201 971b 222b 260c 0864
643a 3050 6548 4824 1e43 4003 0e42 201d
1538 af42 fe68 5028 2044 5201 9a42 ad65
2a23 0002 003b 003c 025a 0212 0006 000d
0050 401d 010e 0e40 0f00 0d0c 0a09 0706
0502 0008 0701 0300 0c0b 0503 0402 0109
4676 2f37 1800 3f17 3c2f 173c 012e 2e2e
2e2e 2e2e 2e2e 0031 3001 4968 b900 0900
0e49 6861 b040 5258 3811 37b9 000e ffc0
3859 2523 273f 0133 0f01 2327 3537 3307
025a 5dcf 01ce 5dce 255d cfcf 5dce 3ce4
11e1 e8ee e411 e1e8 0002 003b 003c 025a
0212 0006 000d 0052 401e 010e 0e40 0f00
0d0b 0a09 0706 0403 0200 0908 0203 010c
0b05 0304 0201 0946 762f 3718 003f 173c
2f17 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 0031
3001 4968 b900 0900 0e49 6861 b040 5258
3811 37b9 000e ffc0 3859 0107 2337 2733
170f 0123 3727 3317 025a cf5d cece 5dcf
f4ce 5dce ce5d ce01 20e4 eee8 e111 e4ee
e8e1 0003 0055 fff2 02cd 0073 000b 0017
0023 0045 4015 0124 2440 2500 1e18 120c
0600 2115 091b 0f03 011e 4676 2f37 1800
2f3c 3c2f 3c3c 012e 2e2e 2e2e 2e00 3130
0149 68b9 001e 0024 4968 61b0 4052 5838
1137 b900 24ff c038 5925 1406 2322 2635
3436 3332 1607 1406 2322 2635 3436 3332
1607 1406 2322 2635 3436 3332 1602 cd26
1b1a 2626 1a1b 26fb 261a 1b26 261b 1a26
fc26 1a1b 2626 1b1a 2633 1b26 261b 1a26
261a 1b26 261b 1a26 261a 1b26 261b 1a26
2600 0002 0057 fff7 0403 0313 001a 002a
007e 4035 012b 2b40 2c00 271f 1002 231b
1a19 1817 1615 1413 1211 1008 0201 0014
1308 1118 1708 1615 1a19 0800 1211 030c
0304 0101 0001 0108 4676 2f37 1800 3f3c
3f3f 3f3c 10fd 3c2f 3cfd 3c10 fd3c 012e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
002e 2e2e 2e31 3001 4968 b900 0800 2b49
6861 b040 5258 3811 37b9 002b ffc0 3859
2901 3506 2322 2726 3534 3736 3332 1716
1735 2115 2111 2115 2111 2101 3427 2623
2207 0615 1417 1633 3237 3604 03fe 3751
7576 5057 574f 753a 3438 2201 b8fe 9e01
3bfe c501 73fe 3b2a 376b 6933 2525 3369
6b37 2a6a 7364 6ebc bc6e 641e 213a 7248
fef1 48fe db01 3d76 5974 7455 7a7a 5574
7359 0003 0032 fff7 0319 021b 001e 0024
002c 0066 4028 012d 2d40 2e00 180c 0705
2925 241f 1e12 0801 0001 0007 241f 2b07
0e27 2207 1a1a 1602 0e0a 0101 1246 762f
3718 003f 3c3f 3c10 fd3c 10fd 2f3c fd3c
012e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 1200 2d49 6861 b040 5258
3811 37b9 002d ffc0 3859 2521 1617 1633
3237 1706 2322 2706 2322 2726 3534 3736
3332 1736 3332 1716 1527 2e01 2322 0f01
3423 2215 1433 3203 19fe c001 2926 3e4b
2e31 4e5c 773e 396f 6237 3f3f 3861 6e39
3c6a 5534 3956 0532 3570 0d51 7f80 807f
f75b 312c 3931 505d 5c3f 468b 8c47 3f5c
5d3c 437a 1153 4ea1 2bce cecc 0001 003b
00f4 01c9 0134 0003 003d 4011 0104 0440
0500 0302 0100 0302 0100 0101 4676 2f37
1800 2f3c 2f3c 012e 2e2e 2e00 3130 0149
68b9 0001 0004 4968 61b0 4052 5838 1137
b900 04ff c038 5925 2135 2101 c9fe 7201
8ef4 4000 0001 003b 00f4 024a 0134 0003
003d 4011 0104 0440 0500 0302 0100 0302
0100 0101 4676 2f37 1800 2f3c 2f3c 012e
2e2e 2e00 3130 0149 68b9 0001 0004 4968
61b0 4052 5838 1137 b900 04ff c038 5925
2135 2102 4afd f102 0ff4 4000 0002 003b
024b 0174 0333 0010 0021 0045 4015 0122
2240 2300 1d1a 1711 0c09 0600 1908 1403
0117 4676 2f37 1800 2f3c 2f3c 012e 2e2e
2e2e 2e2e 2e00 3130 0149 68b9 0017 0022
4968 61b0 4052 5838 1137 b900 22ff c038
5901 1406 2322 2635 3437 170e 0115 1417
1e01 0714 0623 2226 3534 3717 0e01 1514
171e 0101 7425 1c1b 264f 170b 1a09 1820
b825 1b1b 264e 180b 1b09 1820 0287 1b21
2b1b 5052 130a 360f 0d01 0321 181a 222b
1b51 5113 0a36 100c 0103 2100 0002 003b
024c 017a 0334 0010 0021 0045 4015 0122
2240 2300 1c17 1411 0b06 0300 1f0e 1302
011c 4676 2f37 1800 2f3c 2f3c 012e 2e2e
2e2e 2e2e 2e00 3130 0149 68b9 001c 0022
4968 61b0 4052 5838 1137 b900 22ff c038
5901 1407 273e 0135 3427 2e01 3534 3633
3216 0714 0727 3e01 3534 272e 0135 3436
3332 1601 7a4e 180b 1b09 1820 261b 1a26
be4e 180b 1b09 1820 261b 1a26 02ee 5151
130a 3610 0c01 0322 181a 212b 1b51 5113
0a36 100c 0103 2218 1a21 2b00 0001 003b
024b 00bc 0333 0010 0039 400f 0111 1140
1200 0c09 0600 0803 0106 4676 2f37 1800
2f2f 012e 2e2e 2e00 3130 0149 68b9 0006
0011 4968 61b0 4052 5838 1137 b900 11ff
c038 5913 1406 2322 2635 3437 170e 0115
1417 1e01 bc25 1b1b 264e 180b 1b09 1820
0287 1a22 2b1b 5151 130a 3610 0c01 0321
0001 003b 024c 00bc 0334 0010 0039 400f
0111 1140 1200 0b06 0300 0e02 010b 4676
2f37 1800 2f2f 012e 2e2e 2e00 3130 0149
68b9 000b 0011 4968 61b0 4052 5838 1137
b900 11ff c038 5913 1407 273e 0135 3427
2e01 3534 3633 3216 bc4e 180b 1b09 1820
261b 1a26 02ee 5151 130a 3610 0c01 0322
181a 212b 0001 003b 0000 019d 0356 0003
003a 4010 0104 0440 0500 0200 0300 0201
0101 0246 762f 3718 003f 3c2f 3c01 2e2e
0031 3001 4968 b900 0200 0449 6861 b040
5258 3811 37b9 0004 ffc0 3859 0901 2301
019d feed 4f01 1303 56fc aa03 5600 0001
003d fff8 0278 0313 002e 0082 403a 012f
2f40 3000 2e2a 1c1a 2827 2623 201f 1e19
1110 0f0d 0b0a 0900 2625 0b03 0a07 2827
0903 0821 2010 030f 071f 1e12 0311 0608
0416 0304 0101 0946 762f 3718 003f 3f10
fd2f 173c fd17 3c2f 173c fd17 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 002e
2e2e 2e31 3001 4968 b900 0900 2f49 6861
b040 5258 3811 37b9 002f ffc0 3859 2506
0706 2322 2726 2723 3533 2635 3437 2335
3336 3736 3332 1617 0726 2322 0721 1521
0615 1417 2115 2116 3332 3736 3702 782e
2f3b 5965 4a52 1732 2c01 022d 3419 5348
5e53 6f2d 4838 6798 2801 4ffe aa02 0101
57fe af2a 9c44 2f15 1f8f 4c22 2949 5094
3a0e 180e 263a 924c 4246 4d24 6cd5 3a13
2118 0e3a e32b 1432 0001 003b 003c 0167
0212 0006 0040 4013 0107 0740 0800 0605
0302 0001 0005 0402 0102 4676 2f37 1800
3f3c 2f3c 012e 2e2e 2e2e 0031 3001 4968
b900 0200 0749 6861 b040 5258 3811 37b9
0007 ffc0 3859 2523 2735 3733 0701 675d
cfcf 5dce 3ce4 11e1 e800 0001 003b 003c
0166 0212 0006 0040 4013 0107 0740 0800
0604 0302 0002 0105 0402 0102 4676 2f37
1800 3f3c 2f3c 012e 2e2e 2e2e 0031 3001
4968 b900 0200 0749 6861 b040 5258 3811
37b9 0007 ffc0 3859 0107 2337 2733 1701
66ce 5dce ce5d ce01 20e4 eee8 e100 0003
002d 0000 0257 0331 000b 0013 0029 009d
404a 012a 2a40 2b0c 1d1c 1514 2928 2725
2420 1f1e 1d1c 1b1a 1918 1716 1514 1312
1110 0f0e 0d0c 0600 0308 091b 1a17 1613
120f 070e 070c 2507 2424 0429 281f 1e11
0510 0219 180d 030c 0101 1d46 762f 3718
003f 173c 3f17 3c3f 10fd 10fd 173c 2ffd
012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e
2e2e 3130 0149 68b9 001d 002a 4968 61b0
4052 5838 1137 b900 2aff c038 5901 1406
2322 2635 3436 3332 1613 2335 3311 3311
3301 2311 3315 2335 3311 2335 3335 3437
3633 1522 1d01 3302 221f 1616 2020 1616
1f35 d03c 553f fed7 644a d334 4848 3a30
4f64 6402 a216 2020 1617 1f20 fd48 4001
d1fe 2f01 8ffe 7140 4001 8f43 8750 2820
4452 8900 0002 002d fff5 0243 0332 0009
001f 008e 403f 0120 2040 2100 1312 0b0a
1f1e 1d1b 1a16 1514 1312 1110 0f0e 0d0c
0b0a 0905 0403 0200 1110 0d09 040c 070e
1b07 1a1f 1e15 0314 020f 0e01 1a04 0304
0001 0113 4676 2f37 1800 3f3f 3c3c 3f3c
3f17 3c10 fd10 fd17 3c01 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 002e 2e2e 2e31 3001 4968 b900 1300
2049 6861 b040 5258 3811 37b9 0020 ffc0
3859 0522 3511 3311 1417 1617 0123 1133
1523 3533 1123 3533 3534 3736 3315 221d
0133 0243 8c55 080b 24fe eb64 4ad3 3448
483a 304f 6464 0b94 02a9 fd6c 3411 1503
018e fe71 4040 018f 4387 5028 2044 5289
0001 0057 ff38 0207 0332 0013 007f 4035
0114 1440 1500 1312 0706 0504 0100 1312
1110 0f0e 0d0c 0b0a 0908 0706 0504 0302
0100 1110 0903 0807 0f0e 0b03 0a03 020d
0c04 0105 4676 2f37 1800 3f3c 2f3c 2f17
3cfd 173c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e 2e2e
2e2e 3130 0149 68b9 0005 0014 4968 61b0
4052 5838 1137 b900 14ff c038 5925 2311
2311 2335 3311 2335 3311 3311 3315 2311
3302 07b0 50b0 b0b0 b050 b0b0 b07f feb9
0147 4101 0e42 0122 fede 42fe f200 0001
003b 00e1 00bc 0162 000b 0035 400d 010c
0c40 0d00 0600 0903 0106 4676 2f37 1800
2f2f 012e 2e00 3130 0149 68b9 0006 000c
4968 61b0 4052 5838 1137 b900 0cff c038
5913 1406 2322 2635 3436 3332 16bc 261a
1b26 261b 1a26 0122 1b26 261b 1a26 2600
0001 003b ff8d 00bc 0075 000f 0039 400f
0110 1040 1100 0a06 0300 0d02 010a 4676
2f37 1800 2f2f 012e 2e2e 2e00 3130 0149
68b9 000a 0010 4968 61b0 4052 5838 1137
b900 10ff c038 5937 1407 273e 0135 3427
2635 3436 3332 16bc 4e18 0b1b 0938 261b
1a26 3051 5214 0a36 100c 0108 341a 212a
0002 005f ff8d 019e 0075 000f 001f 0045
4015 0120 2040 2100 1a16 1310 0a06 0300
1d0d 1202 011a 4676 2f37 1800 2f3c 2f3c
012e 2e2e 2e2e 2e2e 2e00 3130 0149 68b9
001a 0020 4968 61b0 4052 5838 1137 b900
20ff c038 5925 1407 273e 0135 3427 2635
3436 3332 1607 1407 273e 0135 3427 2635
3436 3332 1601 9e4e 180b 1b09 3826 1b1a
26be 4e18 0b1b 0938 261b 1a26 3051 5214
0a36 100c 0108 341a 212a 1b51 5214 0a36
100c 0108 341a 212a 0007 0055 ffec 0543
034e 000b 0017 001b 0027 0033 003f 004b
006f 402c 014c 4c40 4d00 432b 2509 4640
3a34 2e28 221c 1a18 120c 0600 0f07 3d49
3107 0337 0715 1b18 1a19 1f03 0101 1246
762f 3718 003f 3c2f 3c2f 3c2f fd10 fd3c
2ffd 012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e00 2e2e 2e2e 3130 0149 68b9 0012 004c
4968 61b0 4052 5838 1137 b900 4cff c038
5925 1406 2322 2635 3436 3332 1601 1406
2322 2635 3436 3332 1625 0123 0113 1406
2322 2635 3436 3332 1605 3426 2322 0615
1416 3332 3601 3426 2322 0615 1416 3332
3601 3426 2322 0615 1416 3332 3605 4369
4b4c 6969 4c4b 69fc 7b69 4c4b 6969 4b4c
6901 4afd fb4f 0205 ba69 4c4b 6969 4b4c
6901 8d41 3031 4141 3130 41fc 7b41 3130
4141 3031 4101 b541 3130 4141 3031 41b1
4b68 674c 4c67 6701 9b4c 6768 4b4c 6767
6afc 9e03 62fd 634c 6768 4b4c 6767 4c32
3f3f 3232 3e3f 0218 323e 3f31 313f 3efe
4b32 3f3f 3231 3f3e 0001 0028 0000 00f8
0211 0007 0052 401e 0108 0840 0900 0706
0504 0302 0100 0706 0303 0207 0005 0402
0100 0101 0146 762f 3718 003f 3c3f 3c10
fd17 3c01 2e2e 2e2e 2e2e 2e2e 0031 3001
4968 b900 0100 0849 6861 b040 5258 3811
37b9 0008 ffc0 3859 3323 3533 1133 1133
f8d0 3b55 4040 01d1 fe2f 0001 003b 0273
014f 0305 0006 003f 4013 0107 0740 0800
0204 0006 0504 0301 0300 0104 4676 2f37
1800 2f17 3c2f 3c01 2e2e 002e 3130 0149
68b9 0004 0007 4968 61b0 4052 5838 1137
b900 07ff c038 5901 2327 0723 3733 014f
4743 4347 6a40 0273 5656 9200 0001 003b
027c 016c 02df 000f 0040 4013 0110 1040
1100 0f0d 0708 0005 070a 0a02 0108 4676
2f37 1800 2f2f 10fd 012e 2e00 2e2e 2e31
3001 4968 b900 0800 1049 6861 b040 5258
3811 37b9 0010 ffc0 3859 0106 2322 2623
2207 2736 3332 1633 3237 016c 3130 1546
1621 1c22 2f35 1748 0d1f 2302 a226 1f19
3429 211a 0001 003b 0297 0133 02d7 0003
003d 4011 0104 0440 0500 0302 0100 0302
0100 0101 4676 2f37 1800 2f3c 2f3c 012e
2e2e 2e00 3130 0149 68b9 0001 0004 4968
61b0 4052 5838 1137 b900 04ff c038 5901
2335 3301 33f8 f802 9740 0001 003b 027b
0186 0308 000d 003c 4011 010e 0e40 0f00
0600 0a07 030d 0703 0106 4676 2f37 1800
2f2f 3c10 fd01 2e2e 0031 3001 4968 b900
0600 0e49 6861 b040 5258 3811 37b9 000e
ffc0 3859 010e 0123 2226 2737 1e01 3332
3637 0186 105e 3838 5815 330e 4024 2340
0e02 f434 453f 3a14 262e 2e26 0001 003b
027c 00bc 02fd 000b 0035 400d 010c 0c40
0d00 0600 0903 0106 4676 2f37 1800 2f2f
012e 2e00 3130 0149 68b9 0006 000c 4968
61b0 4052 5838 1137 b900 0cff c038 5913
1406 2322 2635 3436 3332 16bc 261a 1b26
261b 1a26 02bc 1b25 251b 1b26 2600 0002
003b 0241 0102 0309 000b 0017 0040 4013
0118 1840 1900 1512 0c06 000f 0709 0903
0106 4676 2f37 1800 2f2f 10fd 012e 2e2e
2e00 2e31 3001 4968 b900 0600 1849 6861
b040 5258 3811 37b9 0018 ffc0 3859 0114
0623 2226 3534 3633 3216 0734 2623 2206
1514 1633 3236 0102 3a29 293b 3b29 293a
2f1e 1616 1f1f 1616 1e02 a529 3b3b 2929
3b3b 2916 1f1f 1616 1e1e 0001 003b ff07
00df 001a 0013 004a 4018 0114 1440 1500
0f0d 0612 110f 0b05 0008 0703 1110 0301
0546 762f 3718 002f 2f3c 10fd 012e 2e2e
2e2e 2e00 2e2e 2e31 3001 4968 b900 0500
1449 6861 b040 5258 3811 37b9 0014 ffc0
3859 1714 0623 2227 3716 3332 3635 3427
2607 3733 0716 df35 2b25 1f1d 1314 191d
2c12 1722 3219 448f 2d3d 1d1e 1125 1b36
0a04 0469 4713 0002 003b 0262 01bf 0332
0003 0007 0046 4018 0108 0840 0900 0604
0200 0605 0203 0107 0403 0300 0401 0646
762f 3718 003f 173c 2f17 3c01 2e2e 2e2e
0031 3001 4968 b900 0600 0849 6861 b040
5258 3811 37b9 0008 ffc0 3859 0107 2337
2307 2337 01bf a933 814d a933 8103 32d0
d0d0 d000 0001 003b ff07 00df 001a 0012
0047 4016 0113 1340 1400 1210 0c0a 0e0a
0807 0500 0908 0201 0546 762f 3718 002f
2f3c 012e 2e2e 2e2e 2e00 2e2e 2e2e 3130
0149 68b9 0005 0013 4968 61b0 4052 5838
1137 b900 13ff c038 5917 0623 2226 3534
3727 3317 2607 0615 1433 3237 df1f 252b
3544 1932 2116 122c 3615 11dc 1d3d 2d4f
1347 6904 040a 3640 1100 0001 003b 0273
014f 0305 0006 003f 4013 0107 0740 0800
0503 0006 0403 0300 0201 0103 4676 2f37
1800 2f3c 2f17 3c01 2e2e 002e 3130 0149
68b9 0003 0007 4968 61b0 4052 5838 1137
b900 07ff c038 5901 0723 2733 1737 014f
6a40 6a47 4343 0305 9292 5656 0002 003b
0000 02b7 02ec 0007 000c 004f 401c 010d
0d40 0e00 0a09 0c08 0500 0c08 0803 0207
0605 0401 0300 0101 0546 762f 3718 003f
173c 2f3c 2f3c fd3c 012e 2e2e 2e00 2e2e
3130 0149 68b9 0005 000d 4968 61b0 4052
5838 1137 b900 0dff c038 5921 2327 2107
2301 3313 0323 0703 02b7 5e49 fed1 475f
010f 5e50 7e03 106e d3d3 02ec fe34 0173
2efe bb00 0004 0020 0000 029b 0385 000b
0017 001f 0024 0062 4026 0125 2540 2618
2221 1f1e 2420 1d18 120c 0600 0f03 0809
2420 081b 1a15 091d 1c19 0318 0101 1d46
762f 3718 003f 173c 2f3c 2f3c fd3c 10fd
3c01 2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 1d00 2549 6861 b040 5258
3811 37b9 0025 ffc0 3859 0114 0623 2226
3534 3633 3216 0714 0623 2226 3534 3633
3216 0123 2721 0723 0133 1303 2307 0302
0120 1616 2020 1616 20de 1f16 1620 2016
161f 0178 5d4b fed4 495e 010f 5d50 7d03
106e 034f 1620 2016 171f 2016 1620 2016
171f 20fc 9bd8 d802 ecfe 3401 732e febb
0004 0020 0000 029b 03e3 000b 0013 001f
0024 005f 4024 0125 2540 260c 2221 1d17
1312 0324 201a 1411 0c06 0024 2008 0f0e
0911 100d 030c 0101 1146 762f 3718 003f
173c 2f2f 3cfd 3c01 2e2e 2e2e 2e2e 2e2e
002e 2e2e 2e2e 2e2e 3130 0149 68b9 0011
0025 4968 61b0 4052 5838 1137 b900 25ff
c038 5901 1406 2322 2635 3436 3332 1613
2327 2107 2301 3337 3426 2322 0615 1416
3332 3613 0323 0703 01c2 3b29 293a 3a29
293b d95d 4bfe d449 5e01 0f5d 071f 1616
1e1e 1616 1f49 7d03 106e 037f 293b 3b29
293b 3bfc 58d8 d802 ec93 161e 1e16 161e
1efd b701 732e febb 0001 0057 fef8 027b
0314 002c 0056 401e 012d 2d40 2e00 2c2a
2220 1412 0d0b 261f 1915 140f 0a05 0300
081d 0301 1946 762f 3718 003f 2f01 2e2e
2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e2e 2e2e
2e31 3001 4968 b900 1900 2d49 6861 b040
5258 3811 37b9 002d ffc0 3859 2506 0f01
1615 1406 2322 2737 1633 3235 3426 2726
0737 2627 2635 3437 3633 3217 0726 2322
0706 1514 1716 3332 3702 7b54 8a13 4436
2b24 1f1d 1412 3719 1313 161c 714c 5761
5173 a456 4935 736b 3831 393b 646e 428f
8b0b 3612 4f2d 3d1d 1d11 4117 2504 0405
5809 5f6c b8c8 6d5a 9324 6c60 568e 8e59
5c71 0002 0075 0000 023f 03b9 0003 000f
006f 402c 0110 1040 1104 0201 0f0e 0d0c
0b0a 0908 0706 0504 0200 0f0e 0704 0908
0807 060b 0a08 0d0c 0300 0504 0101 0546
762f 3718 003f 3c2f 3c2f 3cfd 3c2f 3cfd
3c10 fd3c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e00 2e2e 3130 0149 68b9 0005 0010
4968 61b0 4052 5838 1137 b900 10ff c038
5901 0723 3713 2111 2115 2115 2115 2111
2101 be3f 4236 ccfe 3601 b8fe a401 36fe
ca01 6e03 b999 99fc 4702 d648 f048 fef1
0002 0075 0000 028a 037b 0011 001d 0069
4029 011e 1e40 1f12 1d1c 1b1a 1918 1514
110d 0702 1d1c 1b18 1716 1512 0800 0507
0a0a 1716 1303 1201 0117 4676 2f37 1800
3f17 3c2f 10fd 012e 2e2e 2e2e 2e2e 2e2e
2e00 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 3130
0149 68b9 0017 001e 4968 61b0 4052 5838
1137 b900 1eff c038 5901 0623 2226 2322
0727 3633 3216 3332 3736 3713 2301 2311
2311 3301 3311 3302 1f2f 3116 4615 221c
2230 3417 480d 1306 0f1a 8a74 feae 034c
7301 5503 4a03 3e26 1f19 3429 2102 0414
fc8c 027b fd85 02da fd7c 0284 0004 0057
fff8 02ce 038a 000b 0017 0027 0037 0052
401d 0138 3840 3918 3430 2820 1812 0c06
000f 0308 092c 0824 1509 1c01 0120 4676
2f37 1800 3f2f 3c2f fd10 fd3c 012e 2e2e
2e2e 2e2e 2e00 2e31 3001 4968 b900 2000
3849 6861 b040 5258 3811 37b9 0038 ffc0
3859 0114 0623 2226 3534 3633 3216 0714
0623 2226 3534 3633 3216 0114 0706 2322
2726 3534 3736 3332 1716 0734 2726 2322
0706 1514 1716 3332 3736 0238 1f17 1620
2016 171f e51f 1716 2020 1617 1f01 7b5c
5789 8857 5c5c 5788 8957 5c5f 2d3c 7473
3c2d 2d3c 7374 3c2d 0354 1620 2016 171f
1f17 1620 2016 171f 1ffd feab 6660 6166
abab 6660 6166 ab6a 516c 6b52 6969 526c
6b52 0003 0062 fff8 027e 0384 000b 0017
002d 005d 4022 012e 2e40 2f18 2d2c 2722
212d 2c2b 2322 2120 1812 0c06 000f 0308
0915 091c 0101 2046 762f 3718 003f 2f3c
10fd 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
002e 2e2e 2e2e 3130 0149 68b9 0020 002e
4968 61b0 4052 5838 1137 b900 2eff c038
5901 1406 2322 2635 3436 3332 1607 1406
2322 2635 3436 3332 1601 1407 0623 2227
2635 1133 1114 1716 3332 3736 3511 3302
0420 1616 2020 1617 1fbe 1f16 1620 2016
161f 0138 5848 6e70 4757 563b 304d 4b2f
3d57 034e 1620 2016 171f 1f17 1620 2016
171f 20fd b095 4b3c 3c4a 9601 e3fe 1e72
362c 2a37 7301 e200 0003 002d fff7 01c1
0307 0003 0021 002a 006e 402d 012b 2b40
2c10 1f13 062a 2622 201f 1910 0c0b 0702
0002 0108 0004 0709 2807 151d 0724 0015
0111 1001 0902 0119 4676 2f37 1800 3f3f
3c3f 2f2f fd10 fd10 fd10 fd3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e31 3001
4968 b900 1900 2b49 6861 b040 5258 3811
37b9 002b ffc0 3859 0107 2337 0322 0727
3633 321d 0114 1716 1723 2627 0623 2227
2635 3437 3633 3217 3534 1526 2322 1514
3332 3701 623e 4235 1d42 301c 4652 ae03
010b 580a 0230 4e4f 2f34 3c36 4d48 2925
3e73 663d 3303 079a 99fe ce20 4224 b1f4
3d14 0420 0d1a 3026 2a51 4d2e 2a12 4267
eb11 6857 3600 0003 002d fff7 01c1 0306
0003 0021 002a 0070 402e 012b 2b40 2c10
1f13 062a 2622 201f 1910 0c0b 0702 0001
0008 0204 0709 2807 151d 0724 0302 1501
1110 0109 0201 1946 762f 3718 003f 3f3c
3f2f 3c2f fd10 fd10 fd10 fd3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e31 3001
4968 b900 1900 2b49 6861 b040 5258 3811
37b9 002b ffc0 3859 0123 2733 1322 0727
3633 321d 0114 1716 1723 2627 0623 2227
2635 3437 3633 3217 3534 1526 2322 1514
3332 3701 2b42 3e4b 0442 301c 4652 ae03
010b 580a 0230 4e4f 2f34 3c36 4d48 2925
3e73 663d 3302 6d99 fece 2042 24b1 f43d
1404 200d 1a30 262a 514d 2e2a 1242 67eb
1168 5736 0003 002d fff7 01c1 0305 0006
0024 002d 0073 402f 012e 2e40 2f13 2216
0904 0302 0100 2d29 2523 221c 130f 0e0a
0400 0707 0c2b 0718 2007 2706 0518 0114
1301 0c02 011c 4676 2f37 1800 3f3f 3c3f
2f3c 2ffd 10fd 10fd 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 2e2e 2e2e 2e2e 2e2e 3130
0149 68b9 001c 002e 4968 61b0 4052 5838
1137 b900 2eff c038 5901 2327 0723 3733
0322 0727 3633 321d 0114 1716 1723 2627
0623 2227 2635 3437 3633 3217 3534 1526
2322 1514 3332 3701 8947 4343 476a 4025
4230 1c46 52ae 0301 0b58 0a02 304e 4f2f
343c 364d 4829 253e 7366 3d33 0273 5656
92fe cf20 4224 b1f4 3d14 0420 0d1a 3026
2a51 4d2e 2a12 4267 eb11 6857 3600 0004
002d fff7 01c1 02d7 000b 0017 0035 003e
0074 4030 013f 3f40 4024 3327 1a3e 3a36
3433 2d24 201f 1b12 0c06 000f 0308 0918
071d 3c07 2931 0738 1509 2901 2524 011d
0201 2d46 762f 3718 003f 3f3c 3f2f 3c2f
fd10 fd10 fd10 fd3c 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e00 2e2e 2e31 3001 4968
b900 2d00 3f49 6861 b040 5258 3811 37b9
003f ffc0 3859 0114 0623 2226 3534 3633
3216 0714 0623 2226 3534 3633 3216 1722
0727 3633 321d 0114 1716 1723 2627 0623
2227 2635 3437 3633 3217 3534 1526 2322
1514 3332 3701 9b20 1616 2020 1617 1fbd
2016 161f 1f16 171f 1c42 301c 4652 ae03
010b 580a 0230 4e4f 2f34 3c36 4d48 2925
3e73 663d 3302 a116 2020 1617 1f1f 1716
2020 1616 201f e420 4224 b1f4 3d14 0420
0d1a 3026 2a51 4d2e 2a12 4267 eb11 6857
3600 0003 002d fff7 01c1 02df 000f 002d
0036 0074 4030 0137 3740 381c 2b1f 120f
0d07 0236 322e 2c2b 251c 1817 1308 0010
0715 3407 2129 0730 0507 0a0a 2101 1d1c
0115 0201 2546 762f 3718 003f 3f3c 3f2f
10fd 2ffd 10fd 10fd 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 2e2e 2e2e 2e2e 2e31 3001
4968 b900 2500 3749 6861 b040 5258 3811
37b9 0037 ffc0 3859 0106 2322 2623 2207
2736 3332 1633 3237 0322 0727 3633 321d
0114 1716 1723 2627 0623 2227 2635 3437
3633 3217 3534 1526 2322 1514 3332 3701
9431 3015 4616 211c 222f 3517 480d 1f23
7b42 301c 4652 ae03 010b 580a 0230 4e4f
2f34 3c36 4d48 2925 3e73 663d 3302 a226
1f19 3429 211a fefc 2042 24b1 f43d 1404
200d 1a30 262a 514d 2e2a 1242 67eb 1168
5736 0004 002d fff7 01c1 0313 000b 0029
0035 003e 0075 4031 013f 3f40 4018 3327
1b0e 033e 3a36 302a 2827 2118 1413 0f06
002d 0709 0c07 113c 071d 2507 381d 0119
1801 1102 0903 0121 4676 2f37 1800 3f3f
3f3c 3f2f fd10 fd10 fd10 fd01 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 2e2e
3130 0149 68b9 0021 003f 4968 61b0 4052
5838 1137 b900 3fff c038 5901 1406 2322
2635 3436 3332 1603 2207 2736 3332 1d01
1417 1617 2326 2706 2322 2726 3534 3736
3332 1735 3427 3426 2322 0615 1416 3332
3613 2623 2215 1433 3237 016a 3b29 293a
3a29 293b 7042 301c 4652 ae03 010b 580a
0230 4e4f 2f34 3c36 4d48 2922 1f16 161e
1e16 161f 2225 3e73 663d 3302 af29 3b3b
2929 3b3b fefc 2042 24b1 f43d 1404 200d
1a30 262a 514d 2e2a 1242 67db 161f 1f16
161e 1efe 5011 6857 3600 0001 0032 fef9
01a3 021a 0028 0059 4020 0129 2940 2a00
2826 2014 120d 0b24 1f19 1514 0f0a 0503
0022 081d 081d 0201 1946 762f 3718 003f
2f10 fd01 2e2e 2e2e 2e2e 2e2e 2e2e 002e
2e2e 2e2e 2e2e 3130 0149 68b9 0019 0029
4968 61b0 4052 5838 1137 b900 29ff c038
5925 060f 0116 1514 0623 2227 3716 3332
3534 2627 2607 3726 2726 3534 3736 3332
1707 2623 2215 1433 3237 01a3 354b 1344
352b 251f 1e13 1337 1a13 1612 1b55 3238
3c36 6056 3831 2637 7878 4628 3f3d 0935
124f 2d3d 1d1d 1141 1724 0405 0556 063f
4783 8c47 403e 3127 cbc8 3100 0003 0032
fff7 01cd 0307 0003 001a 0020 0063 4027
0121 2140 2204 0b20 1b1a 120c 0504 0200
0201 0800 201b 0705 0409 080e 1e07 1600
1602 0e01 0112 4676 2f37 1800 3f3f 2f10
fd10 fd2f 3cfd 3c10 fd3c 012e 2e2e 2e2e
2e2e 2e2e 002e 3130 0149 68b9 0012 0021
4968 61b0 4052 5838 1137 b900 21ff c038
5901 0723 3713 2116 1716 3332 3717 0623
2227 2635 3437 3633 3217 1615 272e 0123
2207 0176 3e42 35a2 fec0 0129 263e 4930
304b 5f63 3e47 423a 5c55 3539 5705 3235
6f0d 0307 9a99 fdf1 5b31 2c39 3150 3e47
898b 4a41 3c43 7a11 534e a100 0003 0032
fff7 01cd 0307 0003 001a 0020 0063 4027
0121 2140 2204 0b20 1b1a 120c 0504 0200
0100 0803 201b 0705 0409 080e 1e07 1602
1602 0e01 0112 4676 2f37 1800 3f3f 2f10
fd10 fd2f 3cfd 3c2f fd3c 012e 2e2e 2e2e
2e2e 2e2e 002e 3130 0149 68b9 0012 0021
4968 61b0 4052 5838 1137 b900 21ff c038
5901 2327 1713 2116 1716 3332 3717 0623
2227 2635 3437 3633 3217 1615 272e 0123
2207 013a 423e 4bc8 fec0 0129 263e 4930
304b 5f63 3e47 423a 5c55 3539 5705 3235
6f0d 026d 9a01 fdf1 5b31 2c39 3150 3e47
898b 4a41 3c43 7a11 534e a100 0003 0032
fff7 01cd 0305 0006 001d 0023 0068 4029
0124 2440 2507 0e04 0302 0100 231e 1d15
0f08 0704 0023 1e07 0807 0c08 1121 0719
0605 1902 1101 0115 4676 2f37 1800 3f3f
2f3c 10fd 10fd 2f3c fd3c 012e 2e2e 2e2e
2e2e 2e2e 002e 2e2e 2e2e 2e31 3001 4968
b900 1500 2449 6861 b040 5258 3811 37b9
0024 ffc0 3859 0123 2707 2337 3313 2116
1716 3332 3717 0623 2227 2635 3437 3633
3217 1615 272e 0123 2207 019a 4743 4347
6a40 9dfe c001 2926 3e49 3030 4b5f 633e
4742 3a5c 5535 3957 0532 356f 0d02 7356
5692 fdf2 5b31 2c39 3150 3e47 898b 4a41
3c43 7a11 534e a100 0004 0032 fff7 01cd
02d7 000b 0017 002e 0034 0069 402a 0135
3540 3618 1f34 2f2e 2620 1918 120c 0600
0f03 0809 342f 0719 181d 0822 3207 2a15
092a 0222 0101 2646 762f 3718 003f 3f2f
3c10 fd10 fd2f 3cfd 3c10 fd3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 002e 3130 0149 68b9
0026 0035 4968 61b0 4052 5838 1137 b900
35ff c038 5901 1406 2322 2635 3436 3332
1607 1406 2322 2635 3436 3332 1613 2116
1716 3332 3717 0623 2227 2635 3437 3633
3217 1615 272e 0123 2207 01a9 2016 1620
2016 171f bd20 1616 1f1f 1617 1fe1 fec0
0129 263e 4930 304b 5f63 3e47 423a 5c55
3539 5705 3235 6f0d 02a1 1620 2016 171f
1f17 1620 2016 1620 1ffe 3f5b 312c 3931
503e 4789 8b4a 413c 437a 1153 4ea1 0002
003b 0000 010b 0307 0003 000b 005f 4025
010c 0c40 0d04 0b0a 0908 0706 0504 0200
0201 0800 0b0a 0703 0607 0400 0908 0205
0401 0105 4676 2f37 1800 3f3c 3f3c 2f10
fd17 3c10 fd3c 012e 2e2e 2e2e 2e2e 2e2e
2e00 3130 0149 68b9 0005 000c 4968 61b0
4052 5838 1137 b900 0cff c038 5901 0723
3713 2335 3311 3311 3301 043e 4235 52d0
3b55 4003 079a 99fc fa40 01d1 fe2f 0002
003b 0000 010b 0307 0003 000b 005f 4025
010c 0c40 0d04 0b0a 0908 0706 0504 0200
0100 0803 0b0a 0703 0607 0402 0908 0205
0401 0105 4676 2f37 1800 3f3c 3f3c 2f10
fd17 3c2f fd3c 012e 2e2e 2e2e 2e2e 2e2e
2e00 3130 0149 68b9 0005 000c 4968 61b0
4052 5838 1137 b900 0cff c038 5913 2327
1713 2335 3311 3311 33c3 423f 4c7d d03b
5540 026d 9a01 fcfa 4001 d1fe 2f00 0002
0041 0000 0155 0305 0006 000e 0064 4027
010f 0f40 1000 0403 0201 000e 0d0c 0b0a
0908 0704 000e 0d0a 0309 0707 0605 0c0b
0208 0701 0104 4676 2f37 1800 3f3c 3f3c
2f3c 10fd 173c 012e 2e2e 2e2e 2e2e 2e2e
2e00 2e2e 2e2e 2e31 3001 4968 b900 0400
0f49 6861 b040 5258 3811 37b9 000f ffc0
3859 0123 2707 2337 3313 2335 3311 3311
3301 5547 4343 476a 4046 d13c 5540 0273
5656 92fc fb40 01d1 fe2f 0003 001b 0000
0122 02d8 000b 0017 001f 0065 4028 0120
2040 2100 1f1e 1d1c 1b1a 1918 120c 0600
0f03 0809 1f1e 1b03 1a07 1815 091d 1c02
1918 0101 1246 762f 3718 003f 3c3f 3c2f
3c10 fd17 3c10 fd3c 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 3130 0149 68b9 0012 0020
4968 61b0 4052 5838 1137 b900 20ff c038
5901 1406 2322 2635 3436 3332 1607 1406
2322 2635 3436 3332 1613 2335 3311 3311
3301 2220 1616 2020 1617 1f9b 2016 1620
2016 171f 82d1 3c55 4002 a216 2020 1617
1f1f 1716 2020 1617 1f1f fd47 4001 d1fe
2f00 0002 005f 0000 01f8 02df 000f 0023
006c 402c 0124 2440 2510 1d0f 0d07 0223
1d1c 1b1a 1918 1211 1008 0016 081f 0507
0a0a 1f02 1c1b 021a 1911 0310 0101 1a46
762f 3718 003f 173c 3f3c 3f2f 10fd 10fd
012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e
2e2e 2e31 3001 4968 b900 1a00 2449 6861
b040 5258 3811 37b9 0024 ffc0 3859 0106
2322 2623 2207 2736 3332 1633 3237 1323
1134 2726 2322 0711 2311 3315 3633 3217
1615 01c4 3130 1546 1621 1c22 2f35 1748
0d1f 2353 5512 1639 4c42 5555 4253 5128
3602 a226 1f19 3429 211a fd28 0154 3f1c
2247 fe76 0211 343d 232e 7500 0003 0032
fff8 01e1 0307 0003 0013 001b 0052 401e
011c 1c40 1d04 1814 0c04 0200 0201 0800
1a07 0816 0710 0010 0208 0101 0c46 762f
3718 003f 3f2f 10fd 10fd 10fd 3c01 2e2e
2e2e 2e2e 0031 3001 4968 b900 0c00 1c49
6861 b040 5258 3811 37b9 001c ffc0 3859
0107 2337 1314 0706 2322 2726 3534 3736
3332 1716 0734 2322 1514 3332 0176 3e42
35b6 4138 5e62 373f 3f38 615e 3841 587f
8080 7f03 079a 99fe 028d 463d 3f46 8b8c
473f 3e47 8dce cecc 0003 0032 fff8 01e1
0307 0003 0013 001b 0052 401e 011c 1c40
1d04 1814 0c04 0200 0100 0803 1a07 0816
0710 0210 0208 0101 0c46 762f 3718 003f
3f2f 10fd 10fd 2ffd 3c01 2e2e 2e2e 2e2e
0031 3001 4968 b900 0c00 1c49 6861 b040
5258 3811 37b9 001c ffc0 3859 0123 2717
1314 0706 2322 2726 3534 3736 3332 1716
0734 2322 1514 3332 013f 413f 4bd7 4138
5e62 373f 3f38 615e 3841 587f 8080 7f02
6d9a 01fe 028d 463d 3f46 8b8c 473f 3e47
8dce cecc 0003 0032 fff8 01e1 0305 0006
0016 001e 0057 4020 011f 1f40 2007 0403
0201 001b 170f 0704 001d 070b 1907 1306
0513 020b 0101 0f46 762f 3718 003f 3f2f
3c10 fd10 fd01 2e2e 2e2e 2e2e 002e 2e2e
2e2e 3130 0149 68b9 000f 001f 4968 61b0
4052 5838 1137 b900 1fff c038 5901 2327
0723 3733 1314 0706 2322 2726 3534 3736
3332 1716 0734 2322 1514 3332 0190 4743
4347 6a40 bb41 385e 6237 3f3f 3861 5e38
4158 7f80 807f 0273 5656 92fe 038d 463d
3f46 8b8c 473f 3e47 8dce cecc 0004 0032
fff8 01e1 02d8 000b 0017 0027 002f 0055
401f 0130 3040 3118 0f03 2c28 2018 120c
0600 2e07 1c2a 0724 1509 2402 1c01 0120
4676 2f37 1800 3f3f 2f3c 10fd 10fd 012e
2e2e 2e2e 2e2e 2e00 2e2e 3130 0149 68b9
0020 0030 4968 61b0 4052 5838 1137 b900
30ff c038 5901 1406 2322 2635 3436 3332
1607 1406 2322 2635 3436 3332 1613 1407
0623 2227 2635 3437 3633 3217 1607 3423
2215 1433 3201 aa20 1616 2020 1617 1fbd
2016 161f 1f16 171f f441 385e 6237 3f3f
3861 5e38 4158 7f80 807f 02a2 161f 1f16
171f 1f17 161f 1f16 1620 1ffe 4f8d 463d
3f46 8b8c 473f 3e47 8dce cecc 0003 0032
fff8 01e1 02df 000f 001f 0027 0058 4021
0128 2840 2910 0f0d 0702 2420 1810 0800
2607 1422 071c 0507 0a0a 1c02 1401 0118
4676 2f37 1800 3f3f 2f10 fd10 fd10 fd01
2e2e 2e2e 2e2e 002e 2e2e 2e31 3001 4968
b900 1800 2849 6861 b040 5258 3811 37b9
0028 ffc0 3859 0106 2322 2623 2207 2736
3332 1633 3237 1314 0706 2322 2726 3534
3736 3332 1716 0734 2322 1514 3332 019e
3130 1546 1621 1c22 2f35 1748 0d1f 2362
4138 5e62 373f 3f38 615e 3841 587f 8080
7f02 a226 1f19 3429 211a fe30 8d46 3d3f
468b 8c47 3f3e 478d cece cc00 0002 005f
fff8 01ec 0307 0003 0017 0066 4029 0118
1840 1904 0617 1615 0f0e 0d0c 0605 0402
0002 0108 0013 0808 0017 160e 030d 0208
0105 0401 010c 4676 2f37 1800 3f3c 3f3f
173c 2f10 fd10 fd3c 012e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 2e31 3001 4968 b900 0c00
1849 6861 b040 5258 3811 37b9 0018 ffc0
3859 0107 2337 1323 3506 2322 2726 3511
3311 1417 1633 3237 1133 017f 3e42 35b8
5538 5350 2835 5512 153a 4d35 5503 079a
99fc fa2f 3725 3175 014f feac 451a 1e41
0190 0002 005f fff8 01ec 0307 0003 0017
0066 4029 0118 1840 1904 0617 1615 0f0e
0d0c 0605 0402 0001 0008 0313 0808 0217
160e 030d 0208 0105 0401 010c 4676 2f37
1800 3f3c 3f3f 173c 2f10 fd2f fd3c 012e
2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e31 3001
4968 b900 0c00 1849 6861 b040 5258 3811
37b9 0018 ffc0 3859 0123 2717 1323 3506
2322 2726 3511 3311 1417 1633 3237 1133
014d 423e 4bd4 5538 5350 2835 5512 153a
4d35 5502 6d9a 01fc fa2f 3725 3175 014f
feac 451a 1e41 0190 0002 005f fff8 01ec
0305 0006 001a 006b 402b 011b 1b40 1c07
0904 0302 0100 1a19 1812 1110 0f09 0807
0400 1608 0b06 051a 1911 0310 020b 0108
0701 010f 4676 2f37 1800 3f3c 3f3f 173c
2f3c 10fd 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e00 2e2e 2e2e 2e2e 3130 0149 68b9 000f
001b 4968 61b0 4052 5838 1137 b900 1bff
c038 5901 2327 0723 3733 1323 3506 2322
2726 3511 3311 1417 1633 3237 1133 01ae
4743 4347 6a40 a855 3853 5028 3555 1215
3a4d 3555 0273 5656 92fc fb2f 3725 3175
014f feac 451a 1e41 0190 0003 005f fff8
01ec 02d6 000b 0017 002b 006c 402c 012c
2c40 2d18 1a2b 2a29 2322 2120 1a19 1812
0c06 000f 0308 0927 081c 1509 2b2a 2203
2102 1c01 1918 0101 2046 762f 3718 003f
3c3f 3f17 3c2f 3c10 fd10 fd3c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e31 3001
4968 b900 2000 2c49 6861 b040 5258 3811
37b9 002c ffc0 3859 0114 0623 2226 3534
3633 3216 0714 0623 2226 3534 3633 3216
1323 3506 2322 2726 3511 3311 1417 1633
3237 1133 01be 2016 161f 1f16 171f bc20
1616 2020 1617 1fea 5538 5350 2835 5512
153a 4d35 5502 a016 2020 1616 201f 1716
2020 1617 1f1f fd49 2f37 2531 7501 4ffe
ac45 1a1e 4101 9000 0002 003b 01e5 01a4
034b 000b 0017 0043 4015 0118 1840 1900
120c 0600 1507 030f 0709 0903 0106 4676
2f37 1800 2f2f 10fd 10fd 012e 2e2e 2e00
3130 0149 68b9 0006 0018 4968 61b0 4052
5838 1137 b900 18ff c038 5901 1406 2322
2635 3436 3332 1607 3426 2322 0615 1416
3332 3601 a469 4c4b 6969 4b4c 6943 4131
3041 4130 3141 0298 4c67 684b 4c67 674c
323e 3f31 313f 3e00 0004 003b ff29 039f
02dd 000f 001f 002b 0034 0075 4031 0135
3540 3600 302f 2c2b 2926 2524 2320 1810
0800 1c08 0414 080c 3130 0823 222f 2e08
260c 0427 2602 2524 2103 2001 0108 4676
2f37 1800 3f17 3c3f 3c2f 2f10 fd3c 2f3c
fd3c 10fd 10fd 012e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 3130 0149 68b9 0008 0035
4968 61b0 4052 5838 1137 b900 35ff c038
5901 1407 0623 2227 2635 3437 3633 3217
1607 3427 2623 2207 0615 1417 1633 3237
3607 2327 2315 2311 3332 1514 0737 342b
0115 3332 3736 039f 7176 cbca 7672 7276
cacb 7671 5358 5ea9 a85e 5959 5da9 a95e
588f 5b58 7d52 b2cb 610e 6d6b 6838 191f
0103 d481 8585 82d3 d382 8585 81d4 b46b
7071 6bb3 b46b 7071 6b50 caca 0211 a36b
2e9a 58b3 1114 0003 003b ff29 039f 02dd
000f 001f 0035 005f 4025 0136 3640 3700
352d 312c 2620 1810 0800 1c08 0414 080c
3308 222f 082a 0c04 2a02 2201 0108 4676
2f37 1800 3f3f 2f2f 10fd 10fd 10fd 10fd
012e 2e2e 2e2e 2e2e 2e00 2e2e 3130 0149
68b9 0008 0036 4968 61b0 4052 5838 1137
b900 36ff c038 5901 1407 0623 2227 2635
3437 3633 3217 1607 3427 2623 2207 0615
1417 1633 3237 3607 0623 2227 2635 3437
3633 3217 0726 2322 1514 3332 3703 9f71
76cb ca76 7272 76ca cb76 7153 585e a9a8
5e59 595d a9a9 5e58 b83f 605c 373f 3c36
6056 3831 2439 7878 4628 0103 d481 8585
82d3 d382 8585 81d4 b46b 7071 6bb3 b46b
7071 6b14 473e 478a 8c47 403e 3127 cbc7
3000 0002 003b 01ae 033e 0332 000f 0017
007d 4034 0118 1840 1900 1514 1312 1110
0908 0706 0302 0100 1716 1514 1312 1110
0f0a 0908 0702 0100 0504 0d0c 0217 160f
0e0b 050a 0401 1546 762f 3718 003f 173c
3f3c 2f3c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e00 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 3130 0149 68b9 0015 0018 4968
61b0 4052 5838 1137 b900 18ff c038 5901
2335 2307 2327 2315 2311 3313 3313 3305
2311 2311 2335 2103 3e43 036b 236b 0443
4979 047b 45fe 4f8a 4385 0152 01b1 f6f9
fbf8 0181 fee6 011a 3bfe ba01 463b 0001
003b 008a 01b5 022c 0013 0073 4031 0114
1440 1500 1312 100f 0e0d 0a09 0806 0504
0300 1312 0703 0607 0504 0103 0011 1009
0308 070f 0e0b 030a 0d0c 0302 0105 4676
2f37 1800 2f3c 2f3c 2f17 3cfd 173c 2f17
3cfd 173c 012e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e00 3130 0149 68b9 0005 0014 4968
61b0 4052 5838 1137 b900 14ff c038 5925
2307 2337 2335 3337 2335 3337 3307 3315
2307 3301 b5d2 233d 236b 8320 a3ba 273d
2783 9a20 baec 6262 4057 4069 6940 5700
0002 003b 0061 01ae 023a 000b 000f 0071
402e 0110 1040 110c 0302 0f0e 0d0c 0b0a
0908 0706 0504 0302 0100 0504 0103 0007
0b0a 0703 060f 0e07 0c09 080d 0c01 0546
762f 3718 002f 3c2f 3c10 fd3c 2f17 3cfd
173c 012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e00 2e2e 3130 0149 68b9 0005 0010
4968 61b0 4052 5838 1137 b900 10ff c038
5901 2315 2335 2335 3335 3315 3313 2135
2101 ad99 4099 9940 9901 fe8e 0172 0161
9999 4099 99fe c040 0001 003b fffc 02c4
0217 0009 004b 4019 010a 0a40 0b00 0605
0201 0705 0403 0200 0908 0204 0301 0107
4676 2f37 1800 3f3c 3f3c 012e 2e2e 2e2e
2e00 2e2e 2e2e 3130 0149 68b9 0007 000a
4968 61b0 4052 5838 1137 b900 0aff c038
5901 0727 1123 1107 2725 3302 c423 fb53
ef29 0134 1401 5b43 8bfe 5901 a281 3ebc
0001 003b fff9 02c4 0215 0009 004b 4019
010a 0a40 0b00 0908 0504 0807 0605 0300
0706 0202 0101 0103 4676 2f37 1800 3f3c
3f3c 012e 2e2e 2e2e 2e00 2e2e 2e2e 3130
0149 68b9 0003 000a 4968 61b0 4052 5838
1137 b900 0aff c038 5925 0523 2537 1711
3311 3702 c4fe cb13 febf 22fc 53ef b6bd
bd42 8b01 a8fe 5d81 0001 005f fed8 01fe
0212 0017 0061 4026 0118 1840 1900 0703
1514 1312 0c0b 0a09 0807 0010 0805 0908
1413 0b03 0a02 0501 0100 0101 0946 762f
3718 003f 3c3f 3f17 3c2f 3c10 fd01 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 3130 0149
68b9 0009 0018 4968 61b0 4052 5838 1137
b900 18ff c038 5921 2326 2706 2322 2711
2311 3311 1417 1633 3237 1133 1114 1601
fe58 0a05 3853 3523 5555 1416 374d 3555
0b0d 2237 10fe d003 3afe 9d3b 181b 4101
90fe 633c 2700 0001 003b ffe6 02de 030c
0011 0062 4027 0112 1240 1300 110f 0e0d
0c0b 0a09 0807 0605 0400 0e0d 0a09 0505
0608 0b00 0c0b 0308 0701 010a 4676 2f37
1800 3f3c 3f3c 2f10 fd17 3c01 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 0031 3001 4968
b900 0a00 1249 6861 b040 5258 3811 37b9
0012 ffc0 3859 0522 2726 3511 2511 2311
2335 2115 2311 1433 02de 5d37 3ffe f95c
6d02 a378 781a 2e34 6b02 0601 fd46 02ba
5252 fe0e 9200 0001 003b ffe6 0231 0212
0011 0067 402a 0112 1240 1300 1110 0f0e
0d0c 0b0a 0907 0602 0100 0608 070f 0e0b
0a01 0500 0710 0711 1002 0d0c 0101 0f46
762f 3718 003f 3c3f 3c2f 10fd 173c 10fd
012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e00
3130 0149 68b9 000f 0012 4968 61b0 4052
5838 1137 b900 12ff c038 5901 2311 1417
1617 1522 3511 2311 2311 2335 2102 3143
080b 248c c455 4501 f601 d2fe bd34 1115
034c 9401 58fe 2e01 d240 0001 003b ff61
0197 0332 0015 004c 401a 0116 1640 1700
0110 0f0d 0c08 0700 0307 140d 070c 0c14
0401 0c46 762f 3718 003f 2f10 fd10 fd01
2e2e 2e2e 2e2e 2e00 2e31 3001 4968 b900
0c00 1649 6861 b040 5258 3811 37b9 0016
ffc0 3859 0107 2623 2207 0615 1114 0706
2335 3235 1134 3736 3332 0197 1b22 2b26
0c08 3a30 5065 241e 4340 030e 4220 1d15
38fd 7750 2820 4452 0289 652a 2300 0001
003b 00ae 01b7 0166 0005 0048 4017 0106
0640 0700 0504 0302 0100 0302 0704 0504
0100 0103 4676 2f37 1800 2f3c 2f3c 10fd
3c01 2e2e 2e2e 2e2e 0031 3001 4968 b900
0300 0649 6861 b040 5258 3811 37b9 0006
ffc0 3859 2523 3521 3521 01b7 40fe c401
7cae 7840 0005 0055 fffb 0362 0328 000b
001a 0026 0032 003e 005f 4024 013f 3f40
4000 3834 1739 332d 2721 1b13 0c06 002a
1e08 3024 1007 093b 0736 0903 0101 0646
762f 3718 003f 2f2f fd10 fd2f 3cfd 3c01
2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e 3130
0149 68b9 0006 003f 4968 61b0 4052 5838
1137 b900 3fff c038 5901 1406 2322 2635
3436 3332 1607 3427 2623 2206 1514 1716
3332 3736 0314 0623 2226 3534 3633 3216
0714 0623 2226 3534 3633 3216 0107 2623
2207 2736 3332 1716 0362 e2a5 a4e2 e2a4
a5e2 4e57 5a88 87b1 575a 8788 5a57 a71e
1616 1e1e 1616 1eae 1e16 151f 1f15 161e
010b 2b57 6867 562d 7971 4a45 2401 91a8
eeee a8a8 efef a88c 6164 c58c 8c61 6464
6101 0d16 1e1e 1616 1e1e 1616 1e1e 1616
1e1e fee5 2d5a 5c2d 7028 1500 001c 0064
ff50 04b7 038e 000d 0014 0019 001d 0021
0025 0029 002d 0033 0037 003b 0040 0045
0049 004d 0051 0055 005b 0060 0064 0068
006c 0071 0076 007a 007e 0083 0087 011c
4081 0188 8840 8900 8684 8280 7d7b 7a78
7673 706e 6b69 6866 6462 5d5a 5755 5351
4f4d 4b48 4644 413f 3c3b 3937 3532 2f2d
2b28 2625 2321 1f1d 1b18 1614 1009 0886
8480 7f7d 7b79 7774 7270 6d6b 6967 6562
615f 5c59 5654 5250 4e4c 4a48 4643 413e
3c3a 3836 3431 2e2c 2a28 2624 2220 1e1c
1a18 1513 120e 0b08 0703 0200 0c06 5f01
010b 4676 2f37 1800 3f2f 2f01 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e31 3001 4968 b900 0b00 8849 6861 b040
5258 3811 37b9 0088 ffc0 3859 010f 0117
0301 0727 3707 2703 2505 072f 010f 0115
1737 270f 0137 2f01 071f 0127 0717 0327
0717 050f 0137 0327 0717 0527 0f01 1737
0127 0717 0527 071f 010f 0117 3f01 0f01
1737 030f 0137 0327 0717 2f01 0717 0127
0717 3727 0f01 1737 2f01 0f01 3701 271f
0227 0717 012f 0117 0127 0f01 3701 2707
1f02 2707 1701 2f01 1705 271f 0137 2f02
1704 b73d 1c10 73fe e119 ad01 30fe 8502
5c01 e110 087e 083e 8b4b 0249 3a4a 6995
75a3 b3ac 83c0 868e 839b 0165 6633 5e81
a696 b701 540b 332a 0b2f fea4 9da8 ac01
97c4 afdd d160 290f 4750 4527 0b2a 2183
2978 a9b9 c7cf 20ae ddc1 01d3 d907 bbc3
0c46 1f0f 4219 076a 1f65 fed4 cd16 b3cc
b707 a2fe 8818 be2b 029d 0a58 1458 fef4
8427 0a9d b1a0 0493 feb2 12a9 2501 439a
0d4d 3f9b 0f96 1d02 8e95 1b0b feb9 fec6
025c 3419 8d02 81b9 c726 1836 0524 1e3b
1a06 3c9e 48fc 3c31 455b 494c 5401 303a
2941 ca55 b062 0117 4640 51a2 0735 7707
3001 b842 354c c857 6667 0161 8108 5246
4d7c 0531 0144 6cc6 7b01 3b52 5462 c14d
455a ff00 67ce 6012 0954 6809 4eb0 066e
9971 0176 62d6 5c81 5fa6 5701 87d5 5ad8
fe6f 0762 7163 0123 4426 6f55 7256 7b4f
0144 ad57 b5c0 5481 2922 0f82 5187 0002
0059 0001 02c3 0320 0005 000e 004a 4018
010f 0f40 1000 0c09 060c 0603 000e 0d08
0105 0402 0101 0346 762f 3718 002f 3c2f
3c10 fd3c 012e 2e2e 2e00 2e2e 2e31 3001
4968 b900 0300 0f49 6861 b040 5258 3811
37b9 000f ffc0 3859 2507 2127 0133 1327
0327 0703 0737 2102 c30a fdaa 0a01 2a16
c416 a613 12a5 1733 0137 0d0c 0c03 13fd
232b 01cd 4646 fe33 2b08 0003 0020 0000
029b 03bb 0003 000b 0010 005e 4024 0111
1140 1204 0e0d 0b0a 100c 0904 0200 0100
0802 100c 0807 0603 0209 0805 0304 0101
0946 762f 3718 003f 173c 2f3c 2f3c fd3c
10fd 3c01 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 0900 1149 6861 b040 5258
3811 37b9 0011 ffc0 3859 0123 2733 0123
2721 0723 0133 1303 2307 0301 7c42 3e4b
0154 5d4b fed4 495e 010f 5d50 7d03 106e
0322 99fc 45d8 d802 ecfe 3401 732e febb
0003 0020 0000 029b 037e 000f 0017 001c
005f 4024 011d 1d40 1e10 1a19 1716 0f0d
0705 021c 1815 1008 001c 1808 1312 0a15
1411 0310 0101 1546 762f 3718 003f 173c
2f2f 3cfd 3c01 2e2e 2e2e 2e2e 002e 2e2e
2e2e 2e2e 2e2e 3130 0149 68b9 0015 001d
4968 61b0 4052 5838 1137 b900 1dff c038
5901 0623 2226 2322 0727 3633 3216 3332
3713 2327 2107 2301 3313 0323 0703 01f6
312f 1646 1520 1e22 3035 1747 0d1e 24c4
5d4b fed4 495e 010f 5d50 7d03 106e 0341
2620 1933 2921 1afc 89d8 d802 ecfe 3401
732e febb 0003 0057 fff8 02ce 0360 0011
0021 0031 004f 401b 0132 3240 3312 2e11
0d07 0502 2a22 1a12 0800 2608 1e0a 1601
011a 4676 2f37 1800 3f2f 2ffd 012e 2e2e
2e2e 2e00 2e2e 2e2e 2e2e 3130 0149 68b9
001a 0032 4968 61b0 4052 5838 1137 b900
32ff c038 5901 0623 2226 2322 0727 3633
3216 3332 3736 3713 1407 0623 2227 2635
3437 3633 3217 1607 3427 2623 2207 0615
1417 1633 3237 3602 2b30 3016 4615 201e
2230 3517 470d 1306 0f1a c25c 5789 8857
5c5c 5788 8957 5c5f 2d3c 7473 3c2d 2d3c
7374 3c2d 0323 251f 1933 2920 0204 14fe
0fab 6660 6166 abab 6660 6166 ab6a 516c
6b52 6969 526c 6b52 0003 003b 0038 0197
01f4 000b 000f 001b 0054 401e 011c 1c40
1d0c 1610 0f0e 0d0c 0600 0308 0919 0813
0f0e 070d 0c09 1301 0d46 762f 3718 002f
2f2f 3cfd 3c10 fd10 fd01 2e2e 2e2e 2e2e
2e2e 0031 3001 4968 b900 0d00 1c49 6861
b040 5258 3811 37b9 001c ffc0 3859 0114
0623 2226 3534 3633 3216 1721 3521 0714
0623 2226 3534 3633 3216 012a 261a 1b26
261b 1a26 6dfe a401 5c6d 261a 1b26 261b
1a26 01b4 1b26 261b 1a26 26da 40bc 1b25
251b 1b26 2600 0003 0014 fedf 01cd 02d7
000b 0017 0026 005d 4024 0127 2740 2818
2524 2221 1c18 120c 0600 0f03 0809 1c07
1b15 091b 0026 2322 0318 0201 2246 762f
3718 003f 173c 3f2f 3c10 fd10 fd3c 012e
2e2e 2e2e 2e2e 2e00 2e2e 3130 0149 68b9
0022 0027 4968 61b0 4052 5838 1137 b900
27ff c038 5901 1406 2322 2635 3436 3332
1607 1406 2322 2635 3436 3332 1605 0306
0727 3637 363f 0103 3313 3313 0186 2016
1620 2016 171f bd20 1616 1f1f 1617 1f01
04cf 3f9d 083d 2423 190f b25b 7d04 8702
a116 2020 1617 1f1f 1716 2020 1616 201f
a7fd 98bd 0d42 0628 2552 3102 1afe 5901
a700 0003 001d 0000 0279 0382 000b 0017
0021 005b 4022 0122 2240 2318 201f 0f03
1d1c 1b1a 1918 120c 0600 1509 1b1a 0121
1e1d 0318 0301 1d46 762f 3718 003f 173c
3f3c 2f3c 012e 2e2e 2e2e 2e2e 2e2e 2e00
2e2e 2e2e 3130 0149 68b9 001d 0022 4968
61b0 4052 5838 1137 b900 22ff c038 5901
1406 2322 2635 3436 3332 1607 1406 2322
2635 3436 3332 1605 0111 2311 0133 1333
1301 d31e 1615 1e1e 1516 1eaa 1e15 151e
1e15 151e 0150 fefd 57fe fe63 c707 c703
4e16 1e1e 1615 1f1f 1516 1e1e 1615 1f1f
57fe 36fe be01 4201 cafe 9701 6900 0003
0020 0000 029b 03ab 0006 000e 0013 0061
4025 0114 1440 1507 1110 0e0d 0403 0201
0013 0f0c 0704 0013 0f08 0a09 0605 0c0b
0803 0701 010c 4676 2f37 1800 3f17 3c2f
3c2f 3cfd 3c01 2e2e 2e2e 2e2e 002e 2e2e
2e2e 2e2e 2e2e 3130 0149 68b9 000c 0014
4968 61b0 4052 5838 1137 b900 14ff c038
5901 2327 0723 3733 0123 2721 0723 0133
1303 2307 0301 ea47 4343 476a 4001 1b5d
4bfe d449 5e01 0f5d 507d 0310 6e03 1956
5692 fc55 d8d8 02ec fe34 0173 2efe bb00
0002 0075 0000 023f 03b2 0006 0012 0075
402f 0113 1340 1407 0403 0201 0012 1110
0f0e 0d0c 0b0a 0908 0704 0012 1107 070c
0b08 0a09 0e0d 0810 0f06 0508 0701 0108
4676 2f37 1800 3f3c 2f3c 2f3c fd3c 2f3c
fd3c 10fd 3c01 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 002e 2e2e 2e2e 3130 0149 68b9
0008 0013 4968 61b0 4052 5838 1137 b900
13ff c038 5901 2327 0723 3733 1321 1121
1521 1521 1521 1121 01e5 4743 4347 6a40
c4fe 3601 b8fe a401 36fe ca01 6e03 2056
5692 fc4e 02d6 48f0 48fe f100 0003 0020
0000 029b 03b8 0003 000b 0010 005c 4023
0111 1140 1204 0e0d 0b0a 100c 0904 0200
0201 0800 100c 0807 0600 0908 0503 0401
0109 4676 2f37 1800 3f17 3c2f 2f3c fd3c
10fd 3c01 2e2e 2e2e 2e2e 002e 2e2e 2e31
3001 4968 b900 0900 1149 6861 b040 5258
3811 37b9 0011 ffc0 3859 0107 2737 0123
2721 0723 0133 1303 2307 0301 bb3e 4235
012b 5d4b fed4 495e 010f 5d50 7d03 106e
03b8 9a01 98fc 49d8 d802 ecfe 3401 732e
febb 0003 0075 0000 023f 0386 000b 0017
0023 0076 4030 0124 2440 2518 2322 2120
1f1e 1d1c 1b1a 1918 120c 0600 0f03 0809
2322 0718 1d1c 081b 1a1f 1e08 2120 1509
1918 0101 1946 762f 3718 003f 3c2f 3c2f
3cfd 3c2f 3cfd 3c10 fd3c 10fd 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 0031
3001 4968 b900 1900 2449 6861 b040 5258
3811 37b9 0024 ffc0 3859 0114 0623 2226
3534 3633 3216 0714 0623 2226 3534 3633
3216 0121 1121 1521 1521 1521 1121 01f3
1f17 1620 2016 171f c91f 1716 2020 1617
1f01 15fe 3601 b8fe a401 36fe ca01 6e03
5016 2020 1616 201f 1716 2020 1617 1f1f
fc99 02d6 48f0 48fe f100 0002 0075 0000
023f 03b9 000b 000f 006a 4028 0110 1040
1100 0e0d 0b0a 0908 0706 0504 0302 0e0c
0b0a 0908 0706 0504 0302 0100 0f0c 0100
0101 0146 762f 3718 003f 3c2f 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e2e 002e 2e2e
2e2e 2e2e 2e2e 2e2e 2e31 3001 4968 b900
0100 1049 6861 b040 5258 3811 37b9 0010
ffc0 3859 2901 1121 1521 1521 1521 1121
0117 3327 023f fe36 01b8 fea4 0136 feca
016e fed6 3e42 3602 d648 f048 fef1 0372
9999 0002 0039 0000 0107 03b9 0003 000f
006e 402d 0110 1040 1104 0201 0f0e 0d0c
0b0a 0908 0706 0504 0200 0d0c 0903 0807
0b0a 0f0e 0703 0607 0403 0005 0401 0105
4676 2f37 1800 3f3c 2f3c 10fd 173c 2f3c
fd17 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e2e 002e 2e31 3001 4968 b900 0500 1049
6861 b040 5258 3811 37b9 0010 ffc0 3859
1307 2337 1323 3533 1123 3533 1523 1133
fd3e 4235 55ce 3c3c ce3c 3c03 b999 99fc
4738 0266 3838 fd9a 0002 0033 0000 0147
03b2 0006 0012 0074 4030 0113 1340 1400
0403 0201 0012 1110 0f0e 0d0c 0b0a 0908
0704 0010 0f0c 030b 070e 0d12 110a 0309
0707 0605 0807 0101 0446 762f 3718 003f
3c2f 3c10 fd17 3c2f 3cfd 173c 012e 2e2e
2e2e 2e2e 2e2e 2e2e 2e2e 2e00 2e2e 2e2e
2e31 3001 4968 b900 0400 1349 6861 b040
5258 3811 37b9 0013 ffc0 3859 0123 2707
2337 3313 2335 3311 2335 3315 2311 3301
4747 4343 476a 4047 cd3c 3ccd 3b3b 0320
5656 92fc 4e38 0266 3838 fd9a 0003 0023
0000 0156 0385 000b 0017 0023 0075 4031
0124 2440 2500 2322 2120 1f1e 1d1c 1b1a
1918 120c 0600 0f03 0809 2120 1d03 1c07
1f1e 2322 1b03 1a07 1815 0919 1801 0112
4676 2f37 1800 3f3c 2f3c 10fd 173c 2f3c
fd17 3c10 fd3c 012e 2e2e 2e2e 2e2e 2e2e
2e2e 2e2e 2e2e 2e00 3130 0149 68b9 0012
0024 4968 61b0 4052 5838 1137 b900 24ff
c038 5901 1406 2322 2635 3436 3332 1607
1406 2322 2635 3436 3332 1613 2335 3311
2335 3315 2311 3301 561f 1716 2020 1616
20c7 1f17 1620 2016 1620 95cd 3c3c cd3b
3b03 4f16 2020 1616 2020 1616 2020 1616
2020 fc9b 3802 6638 38fd 9a00 0002 004d
0000 011e 03b9 0003 000f 0071 402f 0110
1040 1104 0f0e 0d0c 0b0a 0908 0706 0504
0200 0100 0802 0d0c 0903 0807 0b0a 0f0e
0703 0607 0403 0205 0401 0102 4676 2f37
1800 3f3c 2f3c 10fd 173c 2f3c fd17 3c10
fd3c 012e 2e2e 2e2e 2e2e 2e2e 2e2e 2e2e
2e00 3130 0149 68b9 0002 0010 4968 61b0
4052 5838 1137 b900 10ff c038 5913 2327
3313 2335 3311 2335 3315 2311 33ce 423f
4c85 cd3c 3ccd 3b3b 0320 99fc 4738 0266
3838 fd9a 0003 0057 fff8 02ce 03ba 0003
0013 0023 004c 401a 0124 2440 2504 201c
140c 0402 0002 0108 0018 0810 0008 0101
0c46 762f 3718 003f 2f2f fd10 fd3c 012e
2e2e 2e2e 2e00 2e31 3001 4968 b900 0c00
2449 6861 b040 5258 3811 37b9 0024 ffc0
3859 0107 2337 0114 0706 2322 2726 3534
3736 3332 1716 0734 2726 2322 0706 1514
1716 3332 3736 01e6 3f41 3501 335c 5789
8857 5c5c 5788 8957 5c5f 2d3c 7473 3c2d
2d3c 7374 3c2d 03ba 9a99 fdb0 ab66 6061
66ab ab66 6061 66ab 6a51 6c6b 5269 6952
6c6b 5200 0003 0057 fff8 02ce 03b2 0006
0016 0026 0054 401e 0127 2740 2807 0403
0201 001f 170f 0704 0023 080b 1b08 1306
050b 0101 0f46 762f 3718 003f 2f3c 2ffd
10fd 012e 2e2e 2e2e 2e00 2e2e 2e2e 2e31
3001 4968 b900 0f00 2749 6861 b040 5258
3811 37b9 0027 ffc0 3859 0123 2707 2337
3301 1407 0623 2227 2635 3437 3633 3217
1607 3427 2623 2207 0615 1417 1633 3237
3602 1b47 4343 476a 4001 1d5c 5789 8857
5c5c 5788 8957 5c5f 2d3c 7473 3c2d 2d3c
7374 3c2d 0320 5656 92fd b7ab 6660 6166
abab 6660 6166 ab6a 516c 6b52 696a 526c
6c51 0005 0055 fff6 0362 0328 000b 0019
0025 0031 003f 005f 4024 0140 4040 4100
3f3b 163a 322c 2620 1a13 0c06 0029 1d08
2f23 1007 093d 0736 0903 0101 0646 762f
3718 003f 2f2f fd10 fd2f 3cfd 3c01 2e2e
2e2e 2e2e 2e2e 2e2e 002e 2e2e 3130 0149
68b9 0006 0040 4968 61b0 4052 5838 1137
b900 40ff c038 5901 1406 2322 2635 3436
3332 1607 3427 2623 2206 1514 1633 3237
3603 1406 2322 2635 3436 3332 1607 1406
2322 2635 3436 3332 1617 0607 0623 2227
2627 3716 3332 3703 62e2 a5a4 e2e2 a4a5
e24e 575a 8887 b1b1 8787 5b57 a71e 1616
1e1e 1616 1eae 1e16 151f 1f15 161e ff1d
1a3f 6869 4025 103a 2c78 782a 0191 a8f3
f3a8 a8ef efa8 8c61 64c5 8c8c ca66 6401
0d16 1e1e 1616 1e1e 1616 1e1e 1616 1e1e
c04d 2352 5230 4018 9998 0003 0057 fff8
02ce 03b9 0003 0013 0023 0051 401d 0124
2440 2504 1c14 0c04 0200 0100 0802 2008
0818 0810 0302 0801 010c 4676 2f37 1800
3f2f 3c2f fd10 fd10 fd3c 012e 2e2e 2e2e
2e00 3130 0149 68b9 000c 0024 4968 61b0
4052 5838 1137 b900 24ff c038 5901 2327
3301 1407 0623 2227 2635 3437 3633 3217
1607 3427 2623 2207 0615 1417 1633 3237
3601 b942 3e4b 014a 5c57 8988 575c 5c57
8889 575c 5f2d 3c74 733c 2d2d 3c73 743c
2d03 2099 fdb0 ab66 6061 66ab ab66 6061
66ab 6a51 6c6b 5269 6a52 6c6c 5100 0002
0062 fff8 027e 03ba 0003 0019 0057 401f
011a 1a40 1b04 1918 130e 0d19 1817 0f0e
0d0c 0402 0002 0108 0000 0801 010c 4676
2f37 1800 3f2f 10fd 3c01 2e2e 2e2e 2e2e
2e2e 2e2e 002e 2e2e 2e2e 3130 0149 68b9
000c 001a 4968 61b0 4052 5838 1137 b900
1aff c038 5901 0723 3713 1407 0623 2227
2635 1133 1114 1716 3332 3736 3511 3301
cd3f 4135 fc58 486e 7047 5756 3b30 4d4b
2f3d 5703 ba9a 99fd 5b95 4b3c 3c4a 9601
e3fe 1e72 362c 2a37 7301 e200 0002 0062
fff8 027e 03b2 0006 001c 005c 4021 011d
1d40 1e07 1c1b 1611 1004 0302 0100 1c1b
1a12 1110 0f07 0400 0605 0b01 010f 4676
2f37 1800 3f2f 3c01 2e2e 2e2e 2e2e 2e2e
2e2e 002e 2e2e 2e2e 2e2e 2e2e 2e31 3001
4968 b900 0f00 1d49 6861 b040 5258 3811
37b9 001d ffc0 3859 0123 2707 2337 3313
1407 0623 2227 2635 1133 1114 1716 3332
3736 3511 3302 0147 4343 476a 40e7 5848
6e70 4757 563b 304d 4b2f 3d57 0320 5656
92fd 6295 4b3c 3c4a 9601 e3fe 1e72 362c
2a37 7301 e200 0002 0062 fff8 027e 03b9
0003 0019 0059 4020 011a 1a40 1b04 1918
130e 0d19 1817 0f0e 0d0c 0402 0001 0008
0203 0208 0101 0c46 762f 3718 003f 2f3c
10fd 3c01 2e2e 2e2e 2e2e 2e2e 2e2e 002e
2e2e 2e2e 3130 0149 68b9 000c 001a 4968
61b0 4052 5838 1137 b900 1aff c038 5901
2327 3301 1407 0623 2227 2635 1133 1114
1716 3332 3736 3511 3301 9642 3e4b 011d
5848 6e70 4757 563b 304d 4b2f 3d57 0320
99fd 5b95 4b3c 3c4a 9601 e3fe 1e72 362c
2a37 7301 e200 0000 0000 0000 0000 007c
0000 007c 0000 007c 0000 007c 0000 00fe
0000 016c 0000 0264 0000 0348 0000 0448
0000 0524 0000 0578 0000 05dc 0000 0642
0000 06d8 0000 075e 0000 07ce 0000 0824
0000 0884 0000 08de 0000 0980 0000 09fe
0000 0a9e 0000 0b7a 0000 0c18 0000 0cd0
0000 0da8 0000 0e16 0000 0f06 0000 0fc4
0000 1052 0000 10ee 0000 1168 0000 11e2
0000 125c 0000 131c 0000 1462 0000 14ea
0000 15ac 0000 1646 0000 16e2 0000 1778
0000 1800 0000 18ca 0000 1958 0000 19e6
0000 1a4e 0000 1ad6 0000 1b3e 0000 1bd8
0000 1c60 0000 1d06 0000 1dac 0000 1e74
0000 1f1e 0000 1fe4 0000 205a 0000 20ee
0000 215e 0000 21fa 0000 227e 0000 22fa
0000 2380 0000 23f6 0000 244a 0000 24c0
0000 2522 0000 257a 0000 25d0 0000 26a0
0000 274c 0000 27da 0000 288c 0000 2940
0000 29fc 0000 2b0e 0000 2ba8 0000 2c48
0000 2cda 0000 2d5e 0000 2dcc 0000 2e8a
0000 2f24 0000 2fb6 0000 306c 0000 311a
0000 31b6 0000 327e 0000 3320 0000 33ba
0000 342c 0000 34c8 0000 3546 0000 35d0
0000 3656 0000 370e 0000 3764 0000 3812
0000 3890 0000 391e 0000 39c8 0000 3abc
0000 3bda 0000 3c3c 0000 3cca 0000 3d9a
0000 3dec 0000 3e76 0000 3f3c 0000 401a
0000 40be 0000 418a 0000 422e 0000 4340
0000 4414 0000 44d6 0000 4556 0000 461a
0000 46a0 0000 472a 0000 47da 0000 48da
0000 49c4 0000 4a1c 0000 4a74 0000 4b24
0000 4bd4 0000 4c48 0000 4cbc 0000 4d16
0000 4e20 0000 4e82 0000 4ee6 0000 4ffc
0000 50e8 0000 51a6 0000 5208 0000 5278
0000 5320 0000 5470 0000 54e2 0000 5544
0000 55bc 0000 5612 0000 5684 0000 56e6
0000 5772 0000 57fe 0000 586c 0000 58f2
0000 5954 0000 59dc 0000 5ab8 0000 5b90
0000 5c6a 0000 5d18 0000 5de4 0000 5eda
0000 5fc0 0000 60ae 0000 619c 0000 6296
0000 63ba 0000 64ca 0000 65f2 0000 66c4
0000 6794 0000 6864 0000 6940 0000 6a46
0000 6ad6 0000 6b66 0000 6c02 0000 6cca
0000 6da4 0000 6e50 0000 6efc 0000 6fb4
0000 7094 0000 7164 0000 721a 0000 72d0
0000 7392 0000 7480 0000 7510 0000 761e
0000 771a 0000 77e6 0000 7898 0000 7898
0000 7940 0000 79b8 0000 7a30 0000 7ade
0000 7ade 0000 7ade 0000 7b7e 0000 7c22
0000 7cb6 0000 7cb6 0000 7d1c 0000 7e34
0000 8146 0000 81d2 0000 81d2 0000 8278
0000 833c 0000 8420 0000 84ce 0000 84ce
0000 85aa 0000 8676 0000 8728 0000 87e4
0000 888a 0000 8972 0000 8a1a 0000 8ac0
0000 8b74 0000 8c54 0000 8cfc 0000 8dbc
0000 8e8a 0000 8fa2 0000 9066 0000 9114
0000 91ce 0000 927e 01f4 003f 0000 0000
00d2 0000 00d2 0000 0167 0073 014c 0005
02be 003b 0267 003c 0394 003b 0298 003b
00d2 003b 0146 003b 0146 003b 0217 005f
01e8 003b 013f 005f 0146 003b 00f7 003b
01a2 003b 0293 0050 01f7 0050 023e 0050
024a 0050 0278 0050 0233 0050 0264 0050
0216 0050 0258 0050 0264 0050 00f7 003b
00fa 003b 0291 0019 0247 0069 0291 003b
021a 003e 0409 0055 02c4 0020 02ba 0075
02ac 0057 02e6 0075 0282 0075 0248 0075
031f 0057 02f9 0075 0140 0039 0168 0030
029d 0075 0237 0075 036c 0075 02fb 0075
033e 0057 027c 0076 034d 0057 029e 0075
0266 003e 020f 002f 02df 0062 0279 001c
03b5 001c 0291 0022 0250 001d 025d 0025
014e 003b 0138 003b 014e 003b 018a 0005
0204 003b 00f6 003b 0211 002d 023f 005a
01c6 0032 0230 0032 020e 0032 0156 002d
0228 0032 0257 005f 0120 0028 0104 0000
0210 005f 011d 005a 0375 005f 0257 005f
0213 0032 0235 005f 0230 0032 01a1 003b
01b3 0028 015e 0026 024b 005f 01f0 0014
0308 0020 01e5 000f 01e1 0014 01ce 0032
0159 003b 0116 0069 0159 003b 01a7 000b
022a 003d 01c6 0032 0288 003d 01db 003d
0182 003b 0252 0055 022d 005f 0138 003b
019e 003b 03b9 0020 033e 0057 0250 001d
01af 003b 01c2 003b 030c 002d 0213 0032
021a 003d 0167 0073 01d2 003b 0295 003b
0295 003b 0322 0055 0446 0057 035a 0032
0204 003b 0285 003b 01af 003b 01b5 003b
00f7 003b 00f7 003b 01a2 003b 02ca 003d
01a2 003b 01a1 003b 027f 002d 027a 002d
025e 0057 00f7 003b 00f7 003b 01d9 005f
0598 0055 0120 0028 018a 003b 01a7 003b
016e 003b 01c1 003b 00f7 003b 013d 003b
011a 003b 01fa 003b 011a 003b 018a 003b
0138 003b 02c9 0020 02c9 0020 02ac 0057
0283 0075 0300 0075 0325 0057 02e4 0062
0211 002d 0211 002d 0211 002d 0211 002d
0211 002d 0211 002d 01c6 0032 020e 0032
020e 0032 020e 0032 020e 0032 0120 003b
0120 003b 0120 0041 0120 001b 0257 005f
0213 0032 0213 0032 0213 0032 0213 0032
0213 0032 024b 005f 024b 005f 024b 005f
024b 005f 01df 003b 03da 003b 03da 003b
0379 003b 01f0 003b 0138 0000 01e9 003b
02ff 003b 02ff 003b 025d 005f 0138 0000
0138 0000 0319 003b 026c 003b 01d2 003b
0138 0000 01f2 003b 03b7 0055 052f 0064
031d 0059 0138 0000 02c9 0020 02c9 0020
0325 0057 01d2 003b 0138 0000 01e1 0014
0250 001d 02c9 0020 0283 0075 02c9 0020
0283 0075 0283 0075 0140 0039 0182 0033
0179 0023 0158 004d 0325 0057 0325 0057
03b7 0055 0325 0057 02e4 0062 02e4 0062
02e4 0062 0002 0000 0000 0000 ff7b 0014
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 00e3 0000 0001 0002 0003 0004
0005 0006 0007 0008 0009 000a 000b 000c
000d 000e 000f 0010 0011 0012 0013 0014
0015 0016 0017 0018 0019 001a 001b 001c
001d 001e 001f 0020 0021 0022 0023 0024
0025 0026 0027 0028 0029 002a 002b 002c
002d 002e 002f 0030 0031 0032 0033 0034
0035 0036 0037 0038 0039 003a 003b 003c
003d 003e 003f 0040 0041 0042 0043 0044
0045 0046 0047 0048 0049 004a 004b 004c
004d 004e 004f 0050 0051 0052 0053 0054
0055 0056 0057 0058 0059 005a 005b 005c
005d 005e 005f 0060 0061 0082 0084 0085
0086 0087 0088 0089 008d 008e 0090 0091
0096 009d 009e 00a0 00a1 00a2 00a3 00a6
00a9 00aa 00ab 00b0 00b1 00b2 00b3 00b4
00b5 00b6 00b7 00bc 00bd 00be 00bf 00c0
00c1 00c2 00c3 00c4 00c5 00c6 00d7 00d8
00d9 00da 00db 00dc 00dd 00de 00df 00e0
00e1 0102 0062 0063 0064 0065 0066 0067
0068 0069 006a 006b 006c 006d 006e 006f
0070 0071 0072 0073 0074 0075 0076 0077
0078 0079 007a 007b 007c 007d 007e 007f
0080 0081 0083 008a 008b 008c 008f 0092
0093 0094 0095 0097 0098 0099 009a 009b
009c 009f 00a4 00a5 00a7 00a8 00ac 00ad
00ae 00af 00b8 00b9 00ba 00bb 00c7 00c8
00c9 00ca 00cb 00cc 00cd 00ce 00cf 00d0
00d1 00d2 00d3 00d4 00d5 00d6 0344 454c
0000 0003 0000 0000 0000 0124 0001 0000
0000 001c 0003 0001 0000 0124 0000 0106
0000 0100 0000 0000 0000 0103 0000 0002
0000 0000 0000 0000 0000 0000 0000 0001
0000 0304 0506 0708 097f 0b0c 0d0e 0f10
1112 1314 1516 1718 191a 1b1c 1d1e 1f20
2122 2324 2526 2728 292a 2b2c 2d2e 2f30
3132 3334 3536 3738 393a 3b3c 3d3e 3f40
4142 7e44 4546 4748 494a 4b4c 4d4e 4f50
5152 5354 5556 5758 595a 5b5c 5d5e 5f60
6100 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0073 6364 806d 7465 810a 7c75 8283
8485 007a 6286 8700 6766 8889 7d76 778a
0072 0043 698c 8d8e 8f90 6a00 9192 0093
9495 7b00 0000 0000 0000 0000 0000 0000
0000 006b 006e 0000 0000 006c 786f 0000
0000 0070 0000 008b 0000 0071 7968 9697
9899 0000 0004 035e 0000 0060 0040 0005
0020 007e 00a5 00ac 00b1 00b8 00bb 00cf
00d6 00dc 00ef 00fc 00ff 0131 0153 0178
0192 02c7 02c9 02dd 0394 03a9 03bc 03c0
2010 2014 201a 201e 2022 2026 2030 203a
2044 2122 2126 2202 2206 220f 2211 221a
221e 222b 2248 2260 2265 22f2 25ca f002
ffff 0000 0020 00a0 00a7 00ae 00b4 00ba
00bf 00d1 00d8 00df 00f1 00ff 0131 0152
0178 0192 02c6 02c9 02d8 0394 03a9 03bc
03c0 2010 2013 2018 201c 2020 2026 2030
2039 2044 2122 2126 2202 2206 220f 2211
2219 221e 222b 2248 2260 2264 22f2 25ca
f000 ffff 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0001 0060 011c 0126 0130 0136 013e
0140 0160 016a 0172 0192 01a8 01a8 01a8
01aa 01aa 01aa 01ac 01ac 01b6 01b6 01b6
01b6 01b6 01b6 01b8 01bc 01c0 01c4 01c4
01c4 01c6 01c6 01c6 01c6 01c6 01c6 01c6
01c6 01c8 01c8 01c8 01c8 01c8 01ca 01ca
01ca ffff 0003 0004 0005 0006 0007 0008
0009 000a 000b 000c 000d 000e 000f 0010
0011 0012 0013 0014 0015 0016 0017 0018
0019 001a 001b 001c 001d 001e 001f 0020
0021 0022 0023 0024 0025 0026 0027 0028
0029 002a 002b 002c 002d 002e 002f 0030
0031 0032 0033 0034 0035 0036 0037 0038
0039 003a 003b 003c 003d 003e 003f 0040
0041 0042 0043 0044 0045 0046 0047 0048
0049 004a 004b 004c 004d 004e 004f 0050
0051 0052 0053 0054 0055 0056 0057 0058
0059 005a 005b 005c 005d 005e 005f 0060
0061 00cb 0073 0063 0064 0081 006d 0065
006a 00b9 006e 0075 00c7 00b8 008e 00b7
00bd 0069 00c0 0067 0087 0092 006f 0076
0072 00cc 00d5 00d3 00cd 0097 0098 006b
0099 00d7 009a 00d4 00d6 00db 00d8 00d9
00da 009b 00df 00dc 00dd 00ce 009c 006c
00e2 00e0 00e1 009d 0068 009f 009e 00a0
00a2 00a1 00a3 0070 00a4 00a6 00a5 00a7
00a8 00aa 00a9 00ab 00ac 00ad 00af 00ae
00b0 00b2 00b1 00cf 0071 00b4 00b3 00b5
00b6 00d1 008b 0078 0079 00d2 0074 008c
0095 008e 008f 0090 0091 0094 008d 0093
00ca 00c6 00c0 00c4 0010 007a 007b 007e
007f 0088 007c 007d 0089 0062 0086 0066
0077 008a 0082 0083 0080 00ba 00c6 00c1
00ca 00c3 00c2 0087 00c8 00bc 00c5 00c9
00bb 00be 00bf 00c9 00d0 00de 0084 0085
0000 0000 0000 0001 0000 24a4 0001 0619
003c 000a 245a 0003 006d 0096 0005 0024
ffce 0005 002c 0032 0005 0037 0032 0005
0039 0032 0005 003a 0032 0005 003b 001e
0005 003c 0032 0005 0097 ffce 0005 0098
ffce 0005 00cc ffce 0005 00cd ffce 0005
00d2 0032 0005 00d3 ffce 0005 00d5 ffce
0005 00d8 0032 0005 00d9 0032 0005 00da
0032 0005 00db 0032 0009 0037 ffa6 0009
003c ffa6 0009 00d2 ffa6 000a 0024 ffce
0010 0037 ff9c 0010 003c ffb0 0010 00d2
ffb0 0012 0024 ffba 0012 003a 0032 0012
003c 0032 0012 0046 ffd8 0012 0047 ffd8
0012 0048 ffd8 0012 0052 ffd8 0012 0054
ffd8 0012 0055 ffe2 0012 0056 ffe2 0012
005d ffe2 0012 00a4 ffd8 0012 00a5 ffd8
0012 00a6 ffd8 0012 00a7 ffd8 0012 00a8
ffd8 0012 00ae ffd8 0012 00af ffd8 0012
00b0 ffd8 0012 00b1 ffd8 0012 00b2 ffd8
0013 0013 0014 0013 0016 fff6 0013 0017
ffec 0013 0019 0014 0013 001a ffe2 0013
001b 0014 0013 001c 0014 0014 0015 0014
0014 0017 0014 0014 0018 000a 0014 001a
ffd8 0014 001c ffec 0015 0016 ffec 0015
0017 fff6 0015 0018 fff6 0015 0019 000a
0015 001a ffec 0016 001a ffec 0017 0013
ffec 0017 0016 ffec 0017 0018 ffd8 0017
0019 ffe2 0017 001a ffc4 0017 001b ffe2
0017 001c ffce 0018 0018 fff6 0018 001a
ffec 0018 001c ffe2 0019 0005 0032 0019
0013 001e 0019 0016 ffec 0019 0018 000a
0019 0019 001e 0019 001a ffd8 0019 001b
001e 0019 001c 0014 001a 0005 0032 001a
000f ffce 001a 0015 ffec 001a 0017 ffb0
001a 001b ffec 001a 001c ffec 001b 0005
0032 001b 0016 ffe2 001b 0017 ffe2 001b
0018 ffec 001b 0019 000a 001b 001a ffe2
001c 0013 000a 001c 0019 0014 001c 001a
ffe2 001c 001b 000a 001c 001c 000a 0023
0037 ffb0 0023 003c ffba 0023 00d2 ffba
0024 0005 ffce 0024 0026 ffdd 0024 002a
ffdd 0024 002d ffce 0024 0032 ffdd 0024
0034 ffdd 0024 0037 ffa1 0024 0039 ffce
0024 003a ffec 0024 003c ff9c 0024 0045
fff1 0024 0057 ffe7 0024 0058 ffec 0024
0059 ffe2 0024 005a ffe2 0024 005b 000a
0024 005c ffe2 0024 006c ffdd 0024 0078
ffdd 0024 0099 ffdd 0024 009c ffdd 0024
00b3 ffec 0024 00b4 ffec 0024 00b5 ffec
0024 00b6 ffec 0024 00ce ffdd 0024 00d1
ffe2 0024 00d2 ff9c 0024 00dc ffdd 0024
00dd ffdd 0024 00df ffdd 0025 0005 001e
0025 002d ffe2 0025 0037 ffec 0025 003c
ffec 0025 005b fff1 0025 00d2 ffec 0026
0005 0032 0026 0025 0014 0026 0027 0014
0026 0028 0014 0026 0029 0014 0026 002b
0014 0026 002e 0014 0026 002f 0014 0026
0030 0014 0026 0031 0014 0026 0033 0014
0026 0035 0014 0026 003d 001e 0026 0059
fff6 0026 005a fff6 0026 005c fff6 0026
009a 0014 0026 00d1 fff6 0026 00d4 0014
0026 00d6 0014 0026 00d7 0014 0027 000f
ffce 0027 0024 ffd8 0027 002d ffd8 0027
0037 ffd8 0027 003c ffd3 0027 003d ffec
0027 0042 ffb0 0027 0055 fff6 0027 005b
fff1 0027 005d fff6 0027 0097 ffd8 0027
0098 ffd8 0027 00cc ffd8 0027 00cd ffd8
0027 00d2 ffd3 0027 00d3 ffd8 0027 00d5
ffd8 0028 0005 003c 0028 0026 ffe2 0028
002a ffe2 0028 002d ffec 0028 0032 ffe2
0028 0034 ffe2 0028 0045 fff1 0028 0057
fff1 0028 0058 fff1 0028 006c ffe2 0028
0078 ffe2 0028 0099 ffe2 0028 009c ffe2
0028 00b3 fff1 0028 00b4 fff1 0028 00b5
fff1 0028 00b6 fff1 0028 00ce ffe2 0028
00dc ffe2 0028 00dd ffe2 0028 00df ffe2
0029 0005 005a 0029 000f ffc4 0029 0022
0032 0029 0024 ffce 0029 0025 001e 0029
0027 001e 0029 0028 001e 0029 0029 001e
0029 002b 001e 0029 002c 0032 0029 002e
001e 0029 002f 001e 0029 0030 001e 0029
0031 001e 0029 0033 001e 0029 0035 001e
0029 0036 001e 0029 0037 0028 0029 0038
0014 0029 0039 0032 0029 003a 0032 0029
003b 001e 0029 003c 0032 0029 003d 0032
0029 0042 ffb0 0029 0044 fff1 0029 0058
fff1 0029 005b fff6 0029 0070 fff1 0029
007d 0050 0029 007f 0032 0029 0097 ffce
0029 0098 ffce 0029 009a 001e 0029 009d
0014 0029 009e fff1 0029 009f fff1 0029
00a0 fff1 0029 00a1 fff1 0029 00a2 fff1
0029 00a3 fff1 0029 00b3 fff1 0029 00b4
fff1 0029 00b5 fff1 0029 00b6 fff1 0029
00cc ffce 0029 00cd ffce 0029 00d2 0032
0029 00d3 ffce 0029 00d4 001e 0029 00d5
ffce 0029 00d6 001e 0029 00d7 001e 0029
00d8 0032 0029 00d9 0032 0029 00da 0032
0029 00db 0032 0029 00e0 0014 0029 00e1
0014 0029 00e2 0014 002a 002d ffce 002a
0037 ffd8 002a 003c ffe2 002a 0046 fff2
002a 0047 fff2 002a 0048 fff2 002a 0052
fff2 002a 0054 fff2 002a 00a4 fff2 002a
00a5 fff2 002a 00a6 fff2 002a 00a7 fff2
002a 00a8 fff2 002a 00ae fff2 002a 00af
fff2 002a 00b0 fff2 002a 00b1 fff2 002a
00b2 fff2 002a 00d2 ffe2 002b 002d ffd8
002c 0005 003c 002c 002d ffe2 002c 003c
001e 002c 003d 0028 002c 00d2 001e 002d
0024 ffe2 002d 0026 ffec 002d 002a ffec
002d 002d ffe2 002d 0032 ffec 002d 0034
ffec 002d 0037 ffec 002d 003b ffec 002d
003c ffec 002d 0058 fff6 002d 0059 fff1
002d 005a fff1 002d 005c fff1 002d 006c
ffec 002d 0078 ffec 002d 0097 ffe2 002d
0098 ffe2 002d 0099 ffec 002d 009c ffec
002d 00cc ffe2 002d 00cd ffe2 002d 00ce
ffec 002d 00d1 fff1 002d 00d2 ffec 002d
00d3 ffe2 002d 00d5 ffe2 002d 00dc ffec
002d 00dd ffec 002d 00df ffec 002e 0005
003c 002e 0024 0028 002e 0026 ffd8 002e
002a ffd8 002e 002c 001e 002e 0032 ffd8
002e 0034 ffd8 002e 003b 0028 002e 003d
0032 002e 0044 000f 002e 004c 0014 002e
0057 fff1 002e 0059 ffec 002e 005a ffec
002e 005b 0028 002e 005c ffec 002e 005d
0019 002e 006c ffd8 002e 0078 ffd8 002e
008b 0014 002e 0097 0028 002e 0098 0028
002e 0099 ffd8 002e 009c ffd8 002e 009e
000f 002e 009f 000f 002e 00a0 000f 002e
00a1 000f 002e 00a2 000f 002e 00a3 000f
002e 00a9 0014 002e 00aa 0014 002e 00ab
0014 002e 00ac 0014 002e 00cc 0028 002e
00cd 0028 002e 00ce ffd8 002e 00d1 ffec
002e 00d3 0028 002e 00d5 0028 002e 00d8
001e 002e 00d9 001e 002e 00da 001e 002e
00db 001e 002e 00dc ffd8 002e 00dd ffd8
002e 00df ffd8 002f 0005 ffe2 002f 0024
001e 002f 0026 ffce 002f 002a ffce 002f
002c 001e 002f 0032 ffce 002f 0034 ffce
002f 0037 ff9c 002f 0038 ffec 002f 0039
ffba 002f 003a ffce 002f 003b 001e 002f
003c ff9c 002f 003d 001e 002f 004c 000f
002f 0056 0014 002f 0057 ffec 002f 0059
ffe2 002f 005a ffe2 002f 005b 0014 002f
005c ffe2 002f 006c ffce 002f 0078 ffce
002f 008b 000f 002f 0097 001e 002f 0098
001e 002f 0099 ffce 002f 009c ffce 002f
009d ffec 002f 00a9 000f 002f 00aa 000f
002f 00ab fff1 002f 00ac 000f 002f 00cc
001e 002f 00cd 001e 002f 00ce ffce 002f
00d1 ffe2 002f 00d2 ff9c 002f 00d3 001e
002f 00d5 001e 002f 00d8 001e 002f 00d9
001e 002f 00da 001e 002f 00db 001e 002f
00dc ffce 002f 00dd ffce 002f 00df ffce
002f 00e0 ffec 002f 00e1 ffec 002f 00e2
ffec 0030 002d ffd8 0031 002d ffd8 0032
000f ffce 0032 0012 ffce 0032 0024 ffce
0032 002d ffe2 0032 0037 ffba 0032 003b
ffd8 0032 003c ffce 0032 003d ffec 0032
0042 ffb0 0032 005b fff1 0032 005d fff1
0032 0097 ffce 0032 0098 ffce 0032 00cc
ffce 0032 00cd ffce 0032 00d2 ffce 0032
00d3 ffce 0032 00d5 ffce 0033 0005 005a
0033 0008 001e 0033 000f ff9c 0033 0012
ffce 0033 0024 ffce 0033 0025 0019 0033
0027 0019 0033 0028 0019 0033 0029 0019
0033 002b 0019 0033 002c 0014 0033 002e
0019 0033 002f 0019 0033 0030 0019 0033
0031 0019 0033 0033 0019 0033 0035 0019
0033 0039 001e 0033 003a 001e 0033 0042
ff9c 0033 0044 ffec 0033 0049 000a 0033
004a fff1 0033 0055 fff1 0033 0057 000f
0033 0059 000f 0033 005a 000f 0033 005c
000f 0033 0084 000a 0033 0085 000a 0033
0097 ffce 0033 0098 ffce 0033 009a 0019
0033 009e ffec 0033 009f ffec 0033 00a0
ffec 0033 00a1 ffec 0033 00a2 ffec 0033
00a3 ffec 0033 00cc ffce 0033 00cd ffce
0033 00d1 000f 0033 00d3 ffce 0033 00d4
0019 0033 00d5 ffce 0033 00d6 0019 0033
00d7 0019 0033 00d8 0014 0033 00d9 0014
0033 00da 0014 0033 00db 0014 0034 0037
ffba 0034 0039 ffe2 0034 003c ffba 0034
00d2 ffba 0035 0005 0046 0035 002d ffec
0035 0037 ffec 0035 003b 001e 0035 003c
fff1 0035 003d 001e 0035 005b 0019 0035
00d2 fff1 0036 0005 0032 0036 0024 fff1
0036 0026 fff6 0036 002a fff6 0036 002d
ffe2 0036 0032 fff6 0036 0034 fff6 0036
0059 ffec 0036 005a ffec 0036 005c ffec
0036 006c fff6 0036 0078 fff6 0036 0097
fff1 0036 0098 fff1 0036 0099 fff6 0036
009c fff6 0036 00cc fff1 0036 00cd fff1
0036 00ce fff6 0036 00d1 ffec 0036 00d3
fff1 0036 00d5 fff1 0036 00dc fff6 0036
00dd fff6 0036 00df fff6 0037 0004 005a
0037 0005 00be 0037 0007 0050 0037 0008
005a 0037 0009 0046 0037 000c 005a 0037
000d 005a 0037 0022 0078 0037 0025 006e
0037 0026 001e 0037 0027 006e 0037 0028
006e 0037 0029 006e 0037 002a 001e 0037
002b 006e 0037 002c 0082 0037 002d 003c
0037 002e 006e 0037 002f 006e 0037 0030
006e 0037 0031 006e 0037 0032 001e 0037
0033 006e 0037 0034 001e 0037 0035 006e
0037 0036 005a 0037 0037 0082 0037 0038
0050 0037 0039 0082 0037 003a 0082 0037
003b 0078 0037 003c 0078 0037 003d 0078
0037 0040 0078 0037 0044 fff1 0037 0045
0046 0037 0046 ffec 0037 0047 ffec 0037
0048 ffec 0037 0049 0032 0037 004a fff1
0037 004b 0046 0037 004c 0032 0037 004d
003c 0037 004e 0046 0037 004f 0046 0037
0052 ffec 0037 0054 ffec 0037 0057 000a
0037 005f 0050 0037 0060 0064 0037 0062
0032 0037 0065 0032 0037 0067 0050 0037
0068 0032 0037 006c 001e 0037 006e 0050
0037 006f 0050 0037 0073 005a 0037 0078
001e 0037 007d 0064 0037 007f 0064 0037
0084 0032 0037 0085 0032 0037 0099 001e
0037 009a 006e 0037 009c 001e 0037 009d
0050 0037 009e fff1 0037 009f fff1 0037
00a4 ffec 0037 00a5 ffec 0037 00a6 ffec
0037 00a7 ffec 0037 00a8 ffec 0037 00a9
001e 0037 00aa 0046 0037 00ab 0032 0037
00ac 0064 0037 00ae ffec 0037 00af ffec
0037 00b0 ffec 0037 00b1 ffec 0037 00b2
ffec 0037 00ba 0096 0037 00ce 001e 0037
00d2 0078 0037 00d4 006e 0037 00d6 006e
0037 00d7 006e 0037 00d8 0082 0037 00d9
0082 0037 00da 0082 0037 00db 0082 0037
00dc 001e 0037 00dd 001e 0037 00df 001e
0037 00e0 0050 0037 00e1 0050 0037 00e2
0050 0038 0005 0032 0038 0024 ffe2 0038
002d ffec 0038 0059 fff1 0038 005a fff1
0038 005b fff1 0038 005c fff1 0038 005d
fff1 0038 0097 ffe2 0038 0098 ffe2 0038
00cc ffe2 0038 00cd ffe2 0038 00d1 fff1
0038 00d3 ffe2 0038 00d5 ffe2 0039 0005
0050 0039 000f ffa6 0039 0024 ffb0 0039
0026 ffe2 0039 002a ffe2 0039 002c 001e
0039 002d ffe2 0039 0032 ffe2 0039 0034
ffe2 0039 0037 001e 0039 0039 001e 0039
003a 001e 0039 003c 001e 0039 003d 0014
0039 0042 ffb0 0039 0044 ffba 0039 0046
ffd8 0039 0047 ffd8 0039 0048 ffd8 0039
004a ffce 0039 0050 ffec 0039 0051 ffec
0039 0052 ffd8 0039 0053 ffd8 0039 0054
ffd8 0039 0055 ffce 0039 0056 ffd8 0039
0058 ffd8 0039 005b ffec 0039 005d ffd8
0039 006c ffe2 0039 0078 ffe2 0039 0097
ffb0 0039 0098 ffb0 0039 0099 ffe2 0039
009c ffe2 0039 009e ffba 0039 009f ffba
0039 00a0 ffba 0039 00a1 ffba 0039 00a2
ffba 0039 00a3 ffba 0039 00a4 ffd8 0039
00a5 ffd8 0039 00a6 ffd8 0039 00a7 ffd8
0039 00a8 ffd8 0039 00ad ffec 0039 00ae
ffd8 0039 00af ffd8 0039 00b0 ffd8 0039
00b1 ffd8 0039 00b2 ffd8 0039 00b3 ffd8
0039 00b4 ffd8 0039 00b5 ffd8 0039 00b6
ffd8 0039 00cc ffb0 0039 00cd ffb0 0039
00ce ffe2 0039 00d2 001e 0039 00d3 ffb0
0039 00d5 ffb0 0039 00d8 001e 0039 00d9
001e 0039 00da 001e 0039 00db 001e 0039
00dc ffe2 0039 00dd ffe2 0039 00df ffe2
003a 0005 0050 003a 000f ffc4 003a 0024
ffc4 003a 0026 ffe2 003a 002a ffe2 003a
002d ffe2 003a 0032 ffe2 003a 0034 ffe2
003a 0037 001e 003a 0039 001e 003a 003a
001e 003a 003c 001e 003a 0042 ffb0 003a
0044 ffec 003a 0046 ffec 003a 0047 ffec
003a 0048 ffec 003a 004a ffec 003a 0052
ffec 003a 0054 ffec 003a 0056 ffec 003a
0058 ffec 003a 005d ffec 003a 006c ffe2
003a 0078 ffe2 003a 0097 ffc4 003a 0098
ffc4 003a 0099 ffe2 003a 009c ffe2 003a
009e ffec 003a 009f ffec 003a 00a0 ffec
003a 00a1 ffec 003a 00a2 ffec 003a 00a3
ffec 003a 00a4 ffec 003a 00a5 ffec 003a
00a6 ffec 003a 00a7 ffec 003a 00a8 ffec
003a 00ae ffec 003a 00af ffec 003a 00b0
ffec 003a 00b1 ffec 003a 00b2 ffec 003a
00cc ffc4 003a 00cd ffc4 003a 00ce ffe2
003a 00d2 001e 003a 00d3 ffc4 003a 00d5
ffc4 003a 00dc ffe2 003a 00dd ffe2 003a
00df ffe2 003b 0005 0032 003b 0026 ffc4
003b 002a ffc4 003b 0032 ffc4 003b 0034
ffc4 003b 0057 ffec 003b 0059 ffe2 003b
005a ffe2 003b 005b 0014 003b 005c ffe2
003b 006c ffc4 003b 0078 ffc4 003b 0099
ffc4 003b 009c ffc4 003b 00ce ffc4 003b
00d1 ffe2 003b 00dc ffc4 003b 00dd ffc4
003b 00df ffc4 003c 0005 0096 003c 0007
0028 003c 0008 003c 003c 0009 003c 003c
000c 005a 003c 000d 0032 003c 000f ffc4
003c 0022 003c 003c 0024 ffd8 003c 0025
0046 003c 0027 0046 003c 0028 0046 003c
0029 0046 003c 002b 0046 003c 002c 0046
003c 002e 0046 003c 002f 0046 003c 0030
0046 003c 0031 0046 003c 0033 0046 003c
0035 0046 003c 0036 0028 003c 0037 0050
003c 0038 0032 003c 0039 005a 003c 003a
005a 003c 003b 0046 003c 003c 005a 003c
003d 005a 003c 0040 0064 003c 0042 ffb0
003c 0044 ffce 003c 0045 0014 003c 0046
ffd8 003c 0047 ffd8 003c 0048 ffd8 003c
004a ffd8 003c 004b 0014 003c 004e 0014
003c 004f 0014 003c 0050 ffec 003c 0051
ffec 003c 0052 ffd8 003c 0053 ffe2 003c
0054 ffd8 003c 0055 ffe2 003c 0056 ffe2
003c 0058 ffe2 003c 005b ffec 003c 005d
ffec 003c 005f 0032 003c 0060 0064 003c
006e 0032 003c 006f 0050 003c 007d 0064
003c 007f 0064 003c 0097 ffd8 003c 0098
ffd8 003c 009a 0046 003c 009d 0032 003c
009e ffce 003c 009f ffd8 003c 00a0 ffce
003c 00a1 ffe2 003c 00a2 ffec 003c 00a3
ffec 003c 00a4 ffd8 003c 00a5 ffd8 003c
00a6 ffd8 003c 00a7 ffd8 003c 00a8 ffd8
003c 00ad ffec 003c 00ae ffd8 003c 00af
ffd8 003c 00b0 ffd8 003c 00b1 ffd8 003c
00b2 ffd8 003c 00ba 005a 003c 00cc ffd8
003c 00cd ffd8 003c 00d2 005a 003c 00d3
ffd8 003c 00d4 0046 003c 00d5 ffd8 003c
00d6 0046 003c 00d7 0046 003c 00d8 0046
003c 00d9 0046 003c 00da 0046 003c 00db
0046 003c 00e0 0032 003c 00e1 0032 003c
00e2 0032 003d 0005 005a 003d 0026 ffce
003d 002a ffce 003d 002c 0028 003d 002d
ffec 003d 0032 ffce 003d 0034 ffce 003d
0037 001e 003d 0039 0014 003d 003a 0014
003d 003b 0014 003d 003c 0014 003d 003d
001e 003d 0059 ffe2 003d 005a ffe2 003d
005c ffe2 003d 006c ffce 003d 0078 ffce
003d 0099 ffce 003d 009c ffce 003d 00ce
ffce 003d 00d1 ffe2 003d 00d8 0028 003d
00d9 0028 003d 00da 0028 003d 00db 0028
003d 00dc ffce 003d 00dd ffce 003d 00df
ffce 003e 0016 001e 0042 0026 ffb0 0042
002a ffb0 0042 0032 ffb0 0042 0034 ffb0
0042 0037 ff6a 0042 0038 ff9c 0042 0039
ff7e 0042 003a ff7e 0042 003c ff38 0042
0046 ffd8 0042 0047 ffd8 0042 0048 ffd8
0042 0052 ffd8 0042 0054 ffd8 0042 0057
ffc4 0042 0059 ff9c 0042 005a ff9c 0042
005c ff9c 0042 006c ffb0 0042 0078 ffb0
0042 0099 ffb0 0042 009c ffb0 0042 00a4
ffd8 0042 00a5 ffd8 0042 00a6 ffd8 0042
00a7 ffd8 0042 00a8 ffd8 0042 00ae ffd8
0042 00af ffd8 0042 00b0 ffd8 0042 00b1
ffd8 0042 00b2 ffd8 0042 00ce ffb0 0042
00d1 ff9c 0042 00d2 ff38 0042 00dc ffb0
0042 00dd ffb0 0042 00df ffb0 0045 0059
fff6 0045 005a fff6 0045 005c fff6 0045
005d fff1 0045 00d1 fff6 0047 0005 0032
0048 0045 fff6 0048 0053 fff6 0048 0056
000a 0048 0059 fff1 0048 005a fff1 0048
005c fff1 0048 008c 001e 0048 008d 001e
0048 008e 001e 0048 008f 001e 0048 0090
001e 0048 0091 001e 0048 0092 001e 0048
0093 001e 0048 0094 001e 0048 0095 001e
0049 0005 005a 0049 004c 0006 0049 007c
ffba 0049 008b fff9 004a 0005 0032 004a
004d 000f 004c 0005 0032 004d 0005 0032
004e 0005 0028 004e 004c 0010 004e 005b
000a 004e 008b 0011 004f 0005 0032 0052
0059 fff6 0052 005a fff6 0052 005c fff6
0052 005d fff1 0052 00d1 fff6 0053 0048
000f 0053 0059 fff6 0053 005a fff6 0053
005c fff6 0053 005d fff1 0053 00a5 000f
0053 00a6 000f 0053 00a7 000f 0053 00a8
000f 0053 00d1 fff6 0055 0005 005a 0055
000f ffce 0055 0049 000f 0055 0057 000f
0055 0059 001e 0055 005a 001e 0055 005b
0014 0055 005c 001e 0055 0084 000f 0055
0085 000f 0055 00d1 001e 0056 0044 001e
0056 0070 001e 0056 009e 001e 0056 009f
001e 0056 00a0 001e 0056 00a1 001e 0056
00a2 001e 0056 00a3 001e 0058 0049 0014
0058 0055 000a 0058 0084 0014 0058 0085
0014 0059 0011 ffce 0059 0049 0019 0059
004d 000a 0059 0056 000f 0059 0057 0019
0059 0059 0023 0059 005a 0023 0059 005b
0014 0059 005c 0023 0059 0084 0019 0059
0085 0019 0059 00d1 0023 005a 0011 ffce
005a 0049 0019 005a 004d 000f 005a 0056
000a 005a 0057 0019 005a 0059 0023 005a
005a 0023 005a 005b 0014 005a 005c 0023
005a 0084 0019 005a 0085 0019 005a 00d1
0023 005c 0005 0032 005c 0011 ffce 005c
0042 ffce 005c 0049 0019 005c 004d 000f
005c 0056 000f 005c 0057 0019 005c 0059
0023 005c 005a 0023 005c 005b 0014 005c
005c 0023 005c 00d1 0023 005d 0049 0014
005d 0056 0014 005d 0057 000f 005d 0059
0014 005d 005a 0014 005d 005b 0014 005d
005c 0014 005d 0084 0014 005d 0085 0014
005d 00d1 0014 0068 0044 000a 0068 0046
000f 0068 0047 000f 0068 0048 000f 0068
0052 000f 0068 0054 000f 0068 009e 000a
0068 009f 000a 0068 00a0 000a 0068 00a1
000a 0068 00a2 000a 0068 00a3 000a 0068
00a4 000f 0068 00a5 000f 0068 00a6 000f
0068 00a7 000f 0068 00a8 000f 0068 00ae
000f 0068 00af 000f 0068 00b0 000f 0068
00b1 000f 0068 00b2 000f 006b 0005 003c
006b 0026 ffe2 006b 002a ffe2 006b 002d
ffec 006b 0032 ffe2 006b 0034 ffe2 006b
006c ffe2 006b 0078 ffe2 006b 0099 ffe2
006b 009c ffe2 006b 00ce ffe2 006b 00dc
ffe2 006b 00dd ffe2 006b 00df ffe2 006c
0012 ffce 006c 0024 ffce 006c 002d ffe2
006c 0037 ffba 006c 0097 ffce 006c 0098
ffce 006c 00cc ffce 006c 00cd ffce 006c
00d3 ffce 006c 00d5 ffce 0076 0037 ff9c
0076 003c ff9c 0076 00d2 ff9c 0078 0005
003c 0078 0026 ffe2 0078 002a ffe2 0078
002d ffec 0078 0032 ffe2 0078 0034 ffe2
0078 006c ffe2 0078 0078 ffe2 0078 0099
ffe2 0078 009c ffe2 0078 00ce ffe2 0078
00dc ffe2 0078 00dd ffe2 0078 00df ffe2
007a 0037 ff9c 007a 003c ffce 007a 00d2
ffb0 0080 0039 0032 0080 003a 0032 0080
003c 0032 0080 00d2 0032 0082 0037 ff9c
0082 003c ff9c 0082 00d2 ffba 0087 0037
ff9c 0087 003c ff9c 0087 00d2 ff9c 0088
0037 ff9c 0088 003c ff9c 0088 00d2 ff9c
0097 0005 ffce 0097 0026 ffdd 0097 002a
ffdd 0097 002d ffce 0097 0032 ffdd 0097
0034 ffdd 0097 0037 ffa1 0097 0039 ffce
0097 003a ffec 0097 003c ff9c 0097 006c
ffdd 0097 0078 ffdd 0097 0099 ffdd 0097
009c ffdd 0097 00ce ffdd 0097 00d2 ff9c
0097 00dc ffdd 0097 00dd ffdd 0097 00df
ffdd 0098 0005 ffce 0098 0026 ffdd 0098
002a ffdd 0098 002d ffce 0098 0032 ffdd
0098 0034 ffdd 0098 0037 ffa1 0098 0039
ffce 0098 003a ffec 0098 003c ff9c 0098
006c ffdd 0098 0078 ffdd 0098 0099 ffdd
0098 009c ffdd 0098 00ce ffdd 0098 00d2
ff9c 0098 00dc ffdd 0098 00dd ffdd 0098
00df ffdd 009a 0005 003c 009a 0026 ffe2
009a 002a ffe2 009a 002d ffec 009a 0032
ffe2 009a 0034 ffe2 009a 006c ffe2 009a
0078 ffe2 009a 0099 ffe2 009a 009c ffe2
009a 00ce ffe2 009a 00dc ffe2 009a 00dd
ffe2 009a 00df ffe2 009c 0012 ffce 009c
0024 ffce 009c 002d ffe2 009c 0037 ffba
009c 003d ffec 009c 0042 ffb0 009c 0097
ffce 009c 0098 ffce 009c 00cc ffce 009c
00cd ffce 009c 00d3 ffce 009c 00d5 ffce
009d 0005 0032 009d 0024 ffe2 009d 002d
ffec 009d 0097 ffe2 009d 0098 ffe2 009d
00cc ffe2 009d 00cd ffe2 009d 00d3 ffe2
009d 00d5 ffe2 00a5 0053 fff6 00a5 0056
000a 00a5 008c 001e 00a5 008d 001e 00a5
008e 001e 00a5 008f 001e 00a5 0090 001e
00a5 0091 001e 00a5 0092 001e 00a5 0093
001e 00a5 0094 001e 00a5 0095 001e 00a6
0053 fff6 00a6 0056 000a 00a6 008c 001e
00a6 008d 001e 00a6 008e 001e 00a6 008f
001e 00a6 0090 001e 00a6 0091 001e 00a6
0092 001e 00a6 0093 001e 00a6 0094 001e
00a6 0095 001e 00a7 0053 fff6 00a7 0056
000a 00a8 0053 fff6 00a8 0056 000a 00a8
008c 001e 00a8 008d 001e 00a8 008e 001e
00a8 008f 001e 00a8 0090 001e 00a8 0091
001e 00a8 0092 001e 00a8 0093 001e 00a8
0094 001e 00a8 0095 001e 00ae 0059 fff6
00ae 005a fff6 00ae 005c fff6 00ae 005d
fff1 00ae 00d1 fff6 00af 0059 fff6 00af
005a fff6 00af 005c fff6 00af 005d fff1
00af 00d1 fff6 00b0 0059 fff6 00b0 005a
fff6 00b0 005c fff6 00b0 005d fff1 00b0
00d1 fff6 00b1 0059 fff6 00b1 005a fff6
00b1 005c fff6 00b1 005d fff1 00b1 00d1
fff6 00b2 0059 fff6 00b2 005a fff6 00b2
005c fff6 00b2 005d fff1 00b2 00d1 fff6
00b3 0049 0014 00b3 0055 000a 00b4 0049
0014 00b4 0055 000a 00b5 0049 0014 00b5
0055 000a 00b6 0049 0014 00b6 0055 000a
00cc 0005 ffce 00cc 0026 ffdd 00cc 002a
ffdd 00cc 002d ffce 00cc 0032 ffdd 00cc
0034 ffdd 00cc 0037 ffa1 00cc 0039 ffce
00cc 003a ffec 00cc 003c ff9c 00cc 006c
ffdd 00cc 0078 ffdd 00cc 0099 ffdd 00cc
009c ffdd 00cc 00ce ffdd 00cc 00d2 ff9c
00cc 00dc ffdd 00cc 00dd ffdd 00cc 00df
ffdd 00cd 0005 ffce 00cd 0026 ffdd 00cd
002a ffdd 00cd 002d ffce 00cd 0032 ffdd
00cd 0034 ffdd 00cd 0037 ffa1 00cd 0039
ffce 00cd 003a ffec 00cd 003c ff9c 00cd
006c ffdd 00cd 0078 ffdd 00cd 0099 ffdd
00cd 009c ffdd 00cd 00ce ffdd 00cd 00d2
ff9c 00cd 00dc ffdd 00cd 00dd ffdd 00cd
00df ffdd 00ce 0012 ffce 00ce 0024 ffce
00ce 002d ffe2 00ce 0037 ffba 00ce 003c
ffce 00ce 003d ffec 00ce 0042 ffb0 00ce
0097 ffce 00ce 0098 ffce 00ce 00cc ffce
00ce 00cd ffce 00ce 00d2 ffce 00ce 00d3
ffce 00ce 00d5 ffce 00d1 0005 0032 00d1
0011 ffce 00d1 0042 ffce 00d1 0049 0019
00d1 004d 000f 00d1 0056 000f 00d1 0057
0019 00d1 0059 0023 00d1 005a 0023 00d1
005b 0014 00d1 005c 0023 00d2 0005 0096
00d2 0008 0046 00d2 0009 003c 00d2 000c
005a 00d2 000d 0032 00d2 000f ffc4 00d2
0022 003c 00d2 0024 ffd8 00d2 0025 0046
00d2 0027 0046 00d2 0028 0046 00d2 0029
0046 00d2 002b 0046 00d2 002c 0046 00d2
002e 0046 00d2 002f 0046 00d2 0030 0046
00d2 0031 0046 00d2 0033 0046 00d2 0035
0046 00d2 0036 0028 00d2 0037 0050 00d2
0038 0032 00d2 0039 005a 00d2 003a 005a
00d2 003b 0046 00d2 003c 005a 00d2 003d
005a 00d2 0040 0064 00d2 0042 ffb0 00d2
005f 0032 00d2 0060 0064 00d2 006e 0050
00d2 006f 0050 00d2 007d 0050 00d2 007f
0064 00d2 0097 ffd8 00d2 0098 ffd8 00d2
009a 0046 00d2 009d 0032 00d2 00ba 005a
00d2 00cc ffd8 00d2 00cd ffd8 00d2 00d2
005a 00d2 00d3 ffd8 00d2 00d4 0046 00d2
00d5 ffd8 00d2 00d6 0046 00d2 00d7 0046
00d2 00d8 0046 00d2 00d9 0046 00d2 00da
0046 00d2 00db 0046 00d2 00e0 0032 00d2
00e1 0032 00d2 00e2 0032 00d3 0005 ffce
00d3 0026 ffdd 00d3 002a ffdd 00d3 002d
ffce 00d3 0032 ffdd 00d3 0034 ffdd 00d3
0037 ffa1 00d3 0039 ffce 00d3 003a ffec
00d3 003c ff9c 00d3 006c ffdd 00d3 0078
ffdd 00d3 0099 ffdd 00d3 009c ffdd 00d3
00ce ffdd 00d3 00d2 ff9c 00d3 00dc ffdd
00d3 00dd ffdd 00d3 00df ffdd 00d4 0005
003c 00d4 0026 ffe2 00d4 002a ffe2 00d4
002d ffec 00d4 0032 ffe2 00d4 0034 ffe2
00d4 006c ffe2 00d4 0078 ffe2 00d4 0099
ffe2 00d4 009c ffe2 00d4 00ce ffe2 00d4
00dc ffe2 00d4 00dd ffe2 00d4 00df ffe2
00d5 0005 ffce 00d5 0026 ffdd 00d5 002a
ffdd 00d5 002d ffce 00d5 0032 ffdd 00d5
0034 ffdd 00d5 0037 ffa1 00d5 0039 ffce
00d5 003a ffec 00d5 003c ff9c 00d5 006c
ffdd 00d5 0078 ffdd 00d5 0099 ffdd 00d5
009c ffdd 00d5 00ce ffdd 00d5 00d2 ff9c
00d5 00dc ffdd 00d5 00dd ffdd 00d5 00df
ffdd 00d6 0005 003c 00d6 0026 ffe2 00d6
002a ffe2 00d6 002d ffec 00d6 0032 ffe2
00d6 0034 ffe2 00d6 006c ffe2 00d6 0078
ffe2 00d6 0099 ffe2 00d6 009c ffe2 00d6
00ce ffe2 00d6 00dc ffe2 00d6 00dd ffe2
00d6 00df ffe2 00d7 0005 003c 00d7 0026
ffe2 00d7 002a ffe2 00d7 002d ffec 00d7
0032 ffe2 00d7 0034 ffe2 00d7 006c ffe2
00d7 0078 ffe2 00d7 0099 ffe2 00d7 009c
ffe2 00d7 00ce ffe2 00d7 00dc ffe2 00d7
00dd ffe2 00d7 00df ffe2 00d8 0005 003c
00d8 002d ffe2 00d8 003c 001e 00d8 003d
0028 00d8 00d2 001e 00d9 0005 003c 00d9
002d ffe2 00d9 003c 001e 00d9 003d 0028
00d9 00
/* FIXME update this code to the optimized version
*/
/* compute a Lindenmayer system given an axiom, a number of steps and rules
*/
(function() {
var base_log, execute, fractalize, int_execute;
fractalize = function(config) {
var char, i, input, output, _i, _len, _ref;
input = config.axiom;
for (i = 0, _ref = config.steps; 0 <= _ref ? i < _ref : i > _ref; 0 <= _ref ? i++ : i--) {
output = '';
for (_i = 0, _len = input.length; _i < _len; _i++) {
char = input[_i];
if (char in config.rules) {
output += config.rules[char];
} else {
output += char;
}
}
input = output;
}
return output;
};
/* execute a curve string and return all the generated points
*/
execute = function(curve_string, angle, scale_x, scale_y, orientation) {
var char, last_point, points, _i, _len;
points = [
{
x: 0,
y: 0
}
];
for (_i = 0, _len = curve_string.length; _i < _len; _i++) {
char = curve_string[_i];
if (char === '+') {
orientation += angle;
} else if (char === '-') {
orientation -= angle;
} else if (char === 'F') {
last_point = points[points.length - 1];
points.push({
x: last_point.x + scale_x * Math.cos(orientation),
y: last_point.y + scale_y * Math.sin(orientation)
});
}
}
return points;
};
/* execute a curve string and return all the generated points
*/
/* returns integer coordinates (works only for 0-oriented, clockwise square tilings)
*/
int_execute = function(curve_string) {
var char, dir_i, dirs, last_point, points, _i, _len;
points = [
{
ix: 0,
iy: 0
}
];
dirs = [[+1, 0], [0, +1], [-1, 0], [0, -1]];
dir_i = 0;
for (_i = 0, _len = curve_string.length; _i < _len; _i++) {
char = curve_string[_i];
if (char === '+') {
dir_i = (dir_i + 1) % dirs.length;
} else if (char === '-') {
dir_i = dir_i === 0 ? dirs.length - 1 : dir_i - 1;
} else if (char === 'F') {
last_point = points[points.length - 1];
points.push({
ix: last_point.ix + dirs[dir_i][0],
iy: last_point.iy + dirs[dir_i][1]
});
}
}
return points;
};
/* custom base for logarithm (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log)
*/
base_log = function(x, base) {
return Math.log(x) / Math.log(base);
};
window.sfc_layout = {
GOSPER: {
tiling: 'hex',
base: 7,
angle: Math.PI / 3,
axiom: 'A',
rules: {
A: 'A+BF++BF-FA--FAFA-BF+',
B: '-FA+BFBF++BF+FA--FA-B'
}
},
HILBERT: {
tiling: 'square',
base: 4,
angle: Math.PI / 2,
axiom: 'A',
rules: {
A: '-BF+AFA+FB-',
B: '+AF-BFB-FA+'
}
},
PEANO: {
tiling: 'square',
base: 9,
angle: Math.PI / 2,
axiom: 'L',
rules: {
L: 'LFRFL-F-RFLFR+F+LFRFL',
R: 'RFLFR+F+LFRFL-F-RFLFR'
}
},
displace: function(seq, curve_cfg, scale_x, scale_y, orientation) {
var curve, curve_string, d, int_curve, max_x, max_y, min_x, min_y, point, steps, translation, _i, _j, _k, _len, _len2, _len3, _ref, _ref2, _ref3, _ref4;
scale_x = scale_x != null ? scale_x : 10;
scale_y = scale_y != null ? scale_y : 10;
orientation = orientation != null ? orientation : 0;
/* create the minimal curve that can accommodate the whole sequence
*/
steps = Math.ceil(base_log(seq.length, curve_cfg.base));
/* generate the Lindenmayer system string for the requested curve
*/
curve_string = fractalize({
steps: steps,
axiom: curve_cfg.axiom,
rules: curve_cfg.rules
});
/* execute the string, producing the actual points of the curve
*/
curve = execute(curve_string, curve_cfg.angle, scale_x, scale_y, orientation);
/* stores the coordinates in the given sequence
*/
_ref = zip(seq, curve);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
_ref2 = _ref[_i], d = _ref2[0], point = _ref2[1];
d.x = point.x;
d.y = point.y;
}
/* center the layout coordinates in the center of its bounding box
*/
max_x = d3.max(seq, function(d) {
return d.x;
});
max_y = d3.max(seq, function(d) {
return d.y;
});
min_x = d3.min(seq, function(d) {
return d.x;
});
min_y = d3.min(seq, function(d) {
return d.y;
});
translation = {
dx: -(max_x + min_x) / 2,
dy: -(max_y + min_y) / 2
};
for (_j = 0, _len2 = seq.length; _j < _len2; _j++) {
d = seq[_j];
d.x += translation.dx;
d.y += translation.dy;
}
/* if the curve uses a square tiling, also compute integer coordinates
*/
if (curve_cfg.tiling === 'square') {
int_curve = int_execute(curve_string);
_ref3 = zip(seq, int_curve);
for (_k = 0, _len3 = _ref3.length; _k < _len3; _k++) {
_ref4 = _ref3[_k], d = _ref4[0], point = _ref4[1];
d.ix = point.ix;
d.iy = point.iy;
}
}
return translation;
},
/* recursively assign positions to internal nodes too
*/
displace_tree: function(node) {
var child, _i, _len, _ref, _results;
if (!(node.children != null)) {
/* this is a leaf
*/
return;
}
/* an internal node's position is the centroid of its leaf descendants
*/
node.x = d3.mean(node.leaf_descendants, function(d) {
return d.x;
});
node.y = d3.mean(node.leaf_descendants, function(d) {
return d.y;
});
_ref = node.children;
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
child = _ref[_i];
_results.push(sfc_layout.displace_tree(child));
}
return _results;
}
};
}).call(this);
(function() {
var namegen, randlen, randsy, rsort, syllables, tcmp, final_seq = [];
tcmp = function(a, b) {
var ai, bi, children_a, children_b, ci, _i, _len, _ref, _ref2;
children_a = (a.children != null ? a.children : []);
children_b = (b.children != null ? b.children : []);
_ref = zip(children_a, children_b);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
_ref2 = _ref[_i], ai = _ref2[0], bi = _ref2[1];
ci = tcmp(ai, bi);
if (ci !== 0) return ci;
}
return children_b.length - children_a.length;
};
rsort = function(t) {
var c, children, _i, _len;
children = (t.children != null ? t.children : []);
for (_i = 0, _len = children.length; _i < _len; _i++) {
c = children[_i];
rsort(c);
}
return children.sort(tcmp);
};
/* random name generation
*/
syllables = ['bi', 'bo', 'bu', 'ta', 'se', 'tri', 'su', 'ke', 'ka', 'flo', 'ko', 'pi', 'pe', 'no', 'go', 'zo', 'fu', 'fo', 'si', 'pa', 'ar', 'es', 'i', 'kya', 'kyu', 'fle', 'o', 'ne', 'na', 'le', 'lu', 'ma', 'an'];
randlen = function() {
return 2 + Math.floor(Math.random() * 4);
};
randsy = function() {
return syllables[Math.floor(Math.random() * syllables.length)];
};
namegen = function() {
var j;
return ((function() {
var _ref, _results;
_results = [];
for (j = 0, _ref = randlen(); 0 <= _ref ? j < _ref : j > _ref; 0 <= _ref ? j++ : j--) {
_results.push(randsy());
}
return _results;
})()).join('');
};
window.tree_utils = {
/* sort the given unordered tree using a canonical ordering
*/
/* see Constant time generation of free trees - Wright et al. 1986
*/
canonical_sort: function(tree) {
return rsort(tree);
},
/* return the ordered sequence of leaves of a given tree
*/
get_leaves: function(tree) {
var parse_leaves, seq;
seq = [];
parse_leaves = function(node) {
var c, _i, _len, _ref, _results;
if (!(node.children != null)) {
return seq.push(node);
} else {
_ref = node.children;
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
c = _ref[_i];
_results.push(parse_leaves(c));
}
return _results;
}
};
parse_leaves(tree);
return seq;
},
/* compute the height of each node
*/
compute_height: function(node) {
var c;
if (!(node.children != null)) {
node.height = 1;
} else {
node.height = d3.max((function() {
var _i, _len, _ref, _results;
_ref = node.children;
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
c = _ref[_i];
_results.push(tree_utils.compute_height(c));
}
return _results;
})()) + 1;
}
return node.height;
},
/* compute leaf descendants
*/
compute_leaf_descendants: function(node) {
var c, child, _i, _len, _ref;
if (!(node.children != null)) {
/* this is a leaf
*/
node.leaf_descendants = [node];
return;
}
_ref = node.children;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
child = _ref[_i];
tree_utils.compute_leaf_descendants(child);
}
return node.leaf_descendants = ((function() {
var _j, _len2, _ref2, _results;
_ref2 = node.children;
_results = [];
for (_j = 0, _len2 = _ref2.length; _j < _len2; _j++) {
c = _ref2[_j];
_results.push(c.leaf_descendants);
}
return _results;
})()).reduce(function(a, d) {
return a.concat(d);
});
},
/* generate a random tree
*/
random_tree: function(d, MAX_D, MAX_N) {
/* return a tree with maximum depth MAX_D that branches with probability p at most N times for each internal node. p starts from 1 and decreases linearly with d, reaching zero at MAX_D
*/
/* this still seems to be necessary to avoid infinte recursion (floating point precision?)
*/
var children, i, n, p;
if (d === MAX_D) {
return {
name: namegen()
};
}
p = (MAX_D - d) / MAX_D;
/* if the tree branches, at least one branch is made
*/
n = Math.floor(Math.random() * MAX_N) + 1;
children = [];
for (i = 0; 0 <= n ? i < n : i > n; 0 <= n ? i++ : i--) {
if (p >= Math.random()) {
children.push(tree_utils.random_tree(d + 1, MAX_D, MAX_N));
} else {
children.push({
name: namegen()
});
}
}
return {
children: children,
name: namegen()
};
}
};
}).call(this);
{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Single","size":45433},{"children":[],"name":"http://dbpedia.org/ontology/Album","size":123374},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/EurovisionSongContestEntry","size":1121}],"name":"http://dbpedia.org/ontology/Song","size":6011},{"children":[],"name":"http://dbpedia.org/ontology/ArtistDiscography","size":3494},{"children":[],"name":"http://dbpedia.org/ontology/ClassicalMusicComposition","size":599}],"name":"http://dbpedia.org/ontology/MusicalWork","size":276},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/VideoGame","size":19301},{"children":[],"name":"http://dbpedia.org/ontology/ProgrammingLanguage","size":1136}],"name":"http://dbpedia.org/ontology/Software","size":10964},{"children":[],"name":"http://dbpedia.org/ontology/Film","size":87282},{"children":[],"name":"http://dbpedia.org/ontology/TelevisionSeason","size":2883},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Newspaper","size":5956},{"children":[],"name":"http://dbpedia.org/ontology/AcademicJournal","size":5678},{"children":[],"name":"http://dbpedia.org/ontology/Magazine","size":4274}],"name":"http://dbpedia.org/ontology/PeriodicalLiterature","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Novel","size":671}],"name":"http://dbpedia.org/ontology/Book","size":30358},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Manga","size":3361},{"children":[],"name":"http://dbpedia.org/ontology/ComicStrip","size":387}],"name":"http://dbpedia.org/ontology/Comics","size":2092},{"children":[],"name":"http://dbpedia.org/ontology/Poem","size":376},{"children":[],"name":"http://dbpedia.org/ontology/Play","size":1755}],"name":"http://dbpedia.org/ontology/WrittenWork","size":1304},{"children":[],"name":"http://dbpedia.org/ontology/TelevisionEpisode","size":7991},{"children":[],"name":"http://dbpedia.org/ontology/Artwork","size":3753},{"children":[],"name":"http://dbpedia.org/ontology/TelevisionShow","size":29466},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Anime","size":4188},{"children":[],"name":"http://dbpedia.org/ontology/HollywoodCartoon","size":1586}],"name":"http://dbpedia.org/ontology/Cartoon","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Website","size":3639},{"children":[],"name":"http://dbpedia.org/ontology/RadioProgram","size":988},{"children":[],"name":"http://dbpedia.org/ontology/Musical","size":1265},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/BiologicalDatabase","size":333}],"name":"http://dbpedia.org/ontology/Database","size":0}],"name":"http://dbpedia.org/ontology/Work","size":226},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Town","size":43038},{"children":[],"name":"http://dbpedia.org/ontology/Village","size":160111},{"children":[],"name":"http://dbpedia.org/ontology/City","size":20893}],"name":"http://dbpedia.org/ontology/Settlement","size":225437},{"children":[],"name":"http://dbpedia.org/ontology/Country","size":3108},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Diocese","size":3049}],"name":"http://dbpedia.org/ontology/ClericalAdministrativeRegion","size":0}],"name":"http://dbpedia.org/ontology/AdministrativeRegion","size":18599}],"name":"http://dbpedia.org/ontology/Region","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Island","size":4099},{"children":[],"name":"http://dbpedia.org/ontology/Continent","size":17}],"name":"http://dbpedia.org/ontology/PopulatedPlace","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Glacier","size":642},{"children":[],"name":"http://dbpedia.org/ontology/MountainRange","size":2220},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/River","size":26295},{"children":[],"name":"http://dbpedia.org/ontology/Canal","size":287}],"name":"http://dbpedia.org/ontology/Stream","size":39},{"children":[],"name":"http://dbpedia.org/ontology/Lake","size":10669}],"name":"http://dbpedia.org/ontology/BodyOfWater","size":597},{"children":[],"name":"http://dbpedia.org/ontology/MountainPass","size":976},{"children":[],"name":"http://dbpedia.org/ontology/Mountain","size":13772},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/LunarCrater","size":0}],"name":"http://dbpedia.org/ontology/Crater","size":2129},{"children":[],"name":"http://dbpedia.org/ontology/Volcano","size":786},{"children":[],"name":"http://dbpedia.org/ontology/Cave","size":402},{"children":[],"name":"http://dbpedia.org/ontology/Valley","size":123}],"name":"http://dbpedia.org/ontology/NaturalPlace","size":0},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Road","size":18765},{"children":[],"name":"http://dbpedia.org/ontology/Bridge","size":3543},{"children":[],"name":"http://dbpedia.org/ontology/RailwayLine","size":2791},{"children":[],"name":"http://dbpedia.org/ontology/RoadJunction","size":134},{"children":[],"name":"http://dbpedia.org/ontology/RoadTunnel","size":191},{"children":[],"name":"http://dbpedia.org/ontology/RailwayTunnel","size":132},{"children":[],"name":"http://dbpedia.org/ontology/WaterwayTunnel","size":19}],"name":"http://dbpedia.org/ontology/RouteOfTransportation","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RailwayStation","size":6816}],"name":"http://dbpedia.org/ontology/Station","size":21434},{"children":[],"name":"http://dbpedia.org/ontology/Airport","size":13649},{"children":[],"name":"http://dbpedia.org/ontology/Dam","size":2769},{"children":[],"name":"http://dbpedia.org/ontology/PowerStation","size":2435},{"children":[],"name":"http://dbpedia.org/ontology/LaunchPad","size":83}],"name":"http://dbpedia.org/ontology/Infrastructure","size":0},{"children":[],"name":"http://dbpedia.org/ontology/MilitaryStructure","size":3537},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Prison","size":885},{"children":[],"name":"http://dbpedia.org/ontology/ShoppingMall","size":2444},{"children":[],"name":"http://dbpedia.org/ontology/Museum","size":4195},{"children":[],"name":"http://dbpedia.org/ontology/Hospital","size":2618},{"children":[],"name":"http://dbpedia.org/ontology/Hotel","size":1111},{"children":[],"name":"http://dbpedia.org/ontology/Restaurant","size":1213},{"children":[],"name":"http://dbpedia.org/ontology/ReligiousBuilding","size":3464},{"children":[],"name":"http://dbpedia.org/ontology/HistoricBuilding","size":6250},{"children":[],"name":"http://dbpedia.org/ontology/Library","size":816},{"children":[],"name":"http://dbpedia.org/ontology/Castle","size":1282},{"children":[],"name":"http://dbpedia.org/ontology/Skyscraper","size":3}],"name":"http://dbpedia.org/ontology/Building","size":44301},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RollerCoaster","size":692},{"children":[],"name":"http://dbpedia.org/ontology/WaterRide","size":73}],"name":"http://dbpedia.org/ontology/AmusementParkAttraction","size":500},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Theatre","size":1333}],"name":"http://dbpedia.org/ontology/Venue","size":818},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Lighthouse","size":1535}],"name":"http://dbpedia.org/ontology/Tower","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Tunnel","size":59}],"name":"http://dbpedia.org/ontology/ArchitecturalStructure","size":364},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Stadium","size":8623},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Racecourse","size":215}],"name":"http://dbpedia.org/ontology/RaceTrack","size":0},{"children":[],"name":"http://dbpedia.org/ontology/GolfCourse","size":366},{"children":[],"name":"http://dbpedia.org/ontology/CricketGround","size":265}],"name":"http://dbpedia.org/ontology/SportFacility","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Mountain","size":13772},{"children":[],"name":"http://dbpedia.org/ontology/ProtectedArea","size":8305},{"children":[],"name":"http://dbpedia.org/ontology/WorldHeritageSite","size":1025},{"children":[],"name":"http://dbpedia.org/ontology/HistoricPlace","size":14012},{"children":[],"name":"http://dbpedia.org/ontology/Park","size":2844},{"children":[],"name":"http://dbpedia.org/ontology/Garden","size":379},{"children":[],"name":"http://dbpedia.org/ontology/WineRegion","size":345},{"children":[],"name":"http://dbpedia.org/ontology/SkiArea","size":605},{"children":[],"name":"http://dbpedia.org/ontology/Monument","size":360},{"children":[],"name":"http://dbpedia.org/ontology/SiteOfSpecialScientificInterest","size":1008}],"name":"http://dbpedia.org/ontology/Place","size":17455},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RugbyPlayer","size":12500},{"children":[],"name":"http://dbpedia.org/ontology/BaseballPlayer","size":20686},{"children":[],"name":"http://dbpedia.org/ontology/SoccerPlayer","size":96693},{"children":[],"name":"http://dbpedia.org/ontology/Gymnast","size":1180},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/BeachVolleyballPlayer","size":128}],"name":"http://dbpedia.org/ontology/VolleyballPlayer","size":1211},{"children":[],"name":"http://dbpedia.org/ontology/Cricketer","size":13504},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/AmericanFootballPlayer","size":13909}],"name":"http://dbpedia.org/ontology/GridironFootballPlayer","size":6842},{"children":[],"name":"http://dbpedia.org/ontology/BasketballPlayer","size":8152},{"children":[],"name":"http://dbpedia.org/ontology/GolfPlayer","size":2704},{"children":[],"name":"http://dbpedia.org/ontology/IceHockeyPlayer","size":13866},{"children":[],"name":"http://dbpedia.org/ontology/AustralianRulesFootballPlayer","size":6837},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/NascarDriver","size":920},{"children":[],"name":"http://dbpedia.org/ontology/FormulaOneRacer","size":852}],"name":"http://dbpedia.org/ontology/RacingDriver","size":2019},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SpeedwayRider","size":654}],"name":"http://dbpedia.org/ontology/MotorcycleRider","size":1035}],"name":"http://dbpedia.org/ontology/MotorsportRacer","size":0},{"children":[],"name":"http://dbpedia.org/ontology/FigureSkater","size":2770},{"children":[],"name":"http://dbpedia.org/ontology/Swimmer","size":3638},{"children":[],"name":"http://dbpedia.org/ontology/Canoeist","size":523},{"children":[],"name":"http://dbpedia.org/ontology/Cyclist","size":4779},{"children":[],"name":"http://dbpedia.org/ontology/ChessPlayer","size":1220},{"children":[],"name":"http://dbpedia.org/ontology/GaelicGamesPlayer","size":3179},{"children":[],"name":"http://dbpedia.org/ontology/Skier","size":2141},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SnookerChamp","size":24}],"name":"http://dbpedia.org/ontology/SnookerPlayer","size":281},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SumoWrestler","size":457}],"name":"http://dbpedia.org/ontology/Wrestler","size":3371},{"children":[],"name":"http://dbpedia.org/ontology/TennisPlayer","size":4025},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/AmateurBoxer","size":407}],"name":"http://dbpedia.org/ontology/Boxer","size":3350},{"children":[],"name":"http://dbpedia.org/ontology/DartsPlayer","size":469},{"children":[],"name":"http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete","size":308},{"children":[],"name":"http://dbpedia.org/ontology/PokerPlayer","size":636},{"children":[],"name":"http://dbpedia.org/ontology/MartialArtist","size":2768},{"children":[],"name":"http://dbpedia.org/ontology/HorseRider","size":436},{"children":[],"name":"http://dbpedia.org/ontology/Rower","size":280},{"children":[],"name":"http://dbpedia.org/ontology/TableTennisPlayer","size":469},{"children":[],"name":"http://dbpedia.org/ontology/Jockey","size":475},{"children":[],"name":"http://dbpedia.org/ontology/Bodybuilder","size":217},{"children":[],"name":"http://dbpedia.org/ontology/BadmintonPlayer","size":595},{"children":[],"name":"http://dbpedia.org/ontology/LacrossePlayer","size":350},{"children":[],"name":"http://dbpedia.org/ontology/Curler","size":591},{"children":[],"name":"http://dbpedia.org/ontology/Skater","size":316},{"children":[],"name":"http://dbpedia.org/ontology/SquashPlayer","size":372},{"children":[],"name":"http://dbpedia.org/ontology/NetballPlayer","size":248},{"children":[],"name":"http://dbpedia.org/ontology/HandballPlayer","size":1226}],"name":"http://dbpedia.org/ontology/Athlete","size":25160},{"children":[],"name":"http://dbpedia.org/ontology/OfficeHolder","size":47550},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Senator","size":928},{"children":[],"name":"http://dbpedia.org/ontology/MemberOfParliament","size":9139},{"children":[],"name":"http://dbpedia.org/ontology/Mayor","size":1789},{"children":[],"name":"http://dbpedia.org/ontology/President","size":2206},{"children":[],"name":"http://dbpedia.org/ontology/Governor","size":2558},{"children":[],"name":"http://dbpedia.org/ontology/PrimeMinister","size":1505},{"children":[],"name":"http://dbpedia.org/ontology/Congressman","size":3296},{"children":[],"name":"http://dbpedia.org/ontology/Chancellor","size":86}],"name":"http://dbpedia.org/ontology/Politician","size":18836},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ScreenWriter","size":683},{"children":[],"name":"http://dbpedia.org/ontology/Poet","size":322}],"name":"http://dbpedia.org/ontology/Writer","size":24990},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ClassicalMusicArtist","size":332},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Guitarist","size":149}],"name":"http://dbpedia.org/ontology/Instrumentalist","size":0}],"name":"http://dbpedia.org/ontology/MusicalArtist","size":44608},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/AdultActor","size":1497},{"children":[],"name":"http://dbpedia.org/ontology/VoiceActor","size":571}],"name":"http://dbpedia.org/ontology/Actor","size":4433},{"children":[],"name":"http://dbpedia.org/ontology/ComicsCreator","size":2542},{"children":[],"name":"http://dbpedia.org/ontology/Painter","size":2885},{"children":[],"name":"http://dbpedia.org/ontology/Comedian","size":1158},{"children":[],"name":"http://dbpedia.org/ontology/FashionDesigner","size":656},{"children":[],"name":"http://dbpedia.org/ontology/Photographer","size":453}],"name":"http://dbpedia.org/ontology/Artist","size":11003},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SoccerManager","size":14578}],"name":"http://dbpedia.org/ontology/SportsManager","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Entomologist","size":375},{"children":[],"name":"http://dbpedia.org/ontology/Medician","size":301}],"name":"http://dbpedia.org/ontology/Scientist","size":17557},{"children":[],"name":"http://dbpedia.org/ontology/Monarch","size":2726},{"children":[],"name":"http://dbpedia.org/ontology/Philosopher","size":1515},{"children":[],"name":"http://dbpedia.org/ontology/MilitaryPerson","size":25621},{"children":[],"name":"http://dbpedia.org/ontology/Noble","size":4811},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ChristianBishop","size":5818},{"children":[],"name":"http://dbpedia.org/ontology/Saint","size":3302},{"children":[],"name":"http://dbpedia.org/ontology/Cardinal","size":927},{"children":[],"name":"http://dbpedia.org/ontology/Pope","size":394}],"name":"http://dbpedia.org/ontology/Cleric","size":2141},{"children":[],"name":"http://dbpedia.org/ontology/BeautyQueen","size":2073},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/AnimangaCharacter","size":232}],"name":"http://dbpedia.org/ontology/ComicsCharacter","size":4246},{"children":[],"name":"http://dbpedia.org/ontology/SoapCharacter","size":2524}],"name":"http://dbpedia.org/ontology/FictionalCharacter","size":3933},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SportsTeamMember","size":279134}],"name":"http://dbpedia.org/ontology/OrganisationMember","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Model","size":1484},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Baronet","size":582}],"name":"http://dbpedia.org/ontology/BritishRoyalty","size":8089}],"name":"http://dbpedia.org/ontology/Royalty","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/CollegeCoach","size":6166},{"children":[],"name":"http://dbpedia.org/ontology/AmericanFootballCoach","size":329},{"children":[],"name":"http://dbpedia.org/ontology/VolleyballCoach","size":29}],"name":"http://dbpedia.org/ontology/Coach","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RadioHost","size":318},{"children":[],"name":"http://dbpedia.org/ontology/TelevisionHost","size":43}],"name":"http://dbpedia.org/ontology/Presenter","size":101},{"children":[],"name":"http://dbpedia.org/ontology/Economist","size":798},{"children":[],"name":"http://dbpedia.org/ontology/Ambassador","size":470},{"children":[],"name":"http://dbpedia.org/ontology/Architect","size":2269},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Murderer","size":92}],"name":"http://dbpedia.org/ontology/Criminal","size":2198},{"children":[],"name":"http://dbpedia.org/ontology/Judge","size":2274},{"children":[],"name":"http://dbpedia.org/ontology/Engineer","size":758},{"children":[],"name":"http://dbpedia.org/ontology/MythologicalFigure","size":791},{"children":[],"name":"http://dbpedia.org/ontology/BusinessPerson","size":954},{"children":[],"name":"http://dbpedia.org/ontology/Astronaut","size":637},{"children":[],"name":"http://dbpedia.org/ontology/Chef","size":462},{"children":[],"name":"http://dbpedia.org/ontology/PlayboyPlaymate","size":295},{"children":[],"name":"http://dbpedia.org/ontology/Religious","size":751},{"children":[],"name":"http://dbpedia.org/ontology/Historian","size":680},{"children":[],"name":"http://dbpedia.org/ontology/Journalist","size":1848},{"children":[],"name":"http://dbpedia.org/ontology/HorseTrainer","size":230}],"name":"http://dbpedia.org/ontology/Person","size":587300},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/MilitaryUnit","size":15091},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/School","size":30141},{"children":[],"name":"http://dbpedia.org/ontology/University","size":17538},{"children":[],"name":"http://dbpedia.org/ontology/Library","size":816},{"children":[],"name":"http://dbpedia.org/ontology/College","size":88}],"name":"http://dbpedia.org/ontology/EducationalInstitution","size":589},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/HockeyTeam","size":2016},{"children":[],"name":"http://dbpedia.org/ontology/BaseballTeam","size":443},{"children":[],"name":"http://dbpedia.org/ontology/SoccerClub","size":19012},{"children":[],"name":"http://dbpedia.org/ontology/CricketTeam","size":544},{"children":[],"name":"http://dbpedia.org/ontology/RugbyClub","size":2080},{"children":[],"name":"http://dbpedia.org/ontology/BasketballTeam","size":1214},{"children":[],"name":"http://dbpedia.org/ontology/SpeedwayTeam","size":76},{"children":[],"name":"http://dbpedia.org/ontology/AustralianFootballTeam","size":379},{"children":[],"name":"http://dbpedia.org/ontology/FormulaOneTeam","size":115},{"children":[],"name":"http://dbpedia.org/ontology/CyclingTeam","size":255},{"children":[],"name":"http://dbpedia.org/ontology/HandballTeam","size":372},{"children":[],"name":"http://dbpedia.org/ontology/AmericanFootballTeam","size":32},{"children":[],"name":"http://dbpedia.org/ontology/CanadianFootballTeam","size":25}],"name":"http://dbpedia.org/ontology/SportsTeam","size":1794},{"children":[],"name":"http://dbpedia.org/ontology/TradeUnion","size":1564},{"children":[],"name":"http://dbpedia.org/ontology/Band","size":30572},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RadioStation","size":18520},{"children":[],"name":"http://dbpedia.org/ontology/TelevisionStation","size":7473},{"children":[],"name":"http://dbpedia.org/ontology/BroadcastNetwork","size":1231}],"name":"http://dbpedia.org/ontology/Broadcaster","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Publisher","size":1141},{"children":[],"name":"http://dbpedia.org/ontology/Brewery","size":364},{"children":[],"name":"http://dbpedia.org/ontology/BusCompany","size":1328},{"children":[],"name":"http://dbpedia.org/ontology/Airline","size":3387},{"children":[],"name":"http://dbpedia.org/ontology/RecordLabel","size":3014},{"children":[],"name":"http://dbpedia.org/ontology/Winery","size":309},{"children":[],"name":"http://dbpedia.org/ontology/LawFirm","size":479}],"name":"http://dbpedia.org/ontology/Company","size":48378},{"children":[],"name":"http://dbpedia.org/ontology/PoliticalParty","size":5290},{"children":[],"name":"http://dbpedia.org/ontology/ComedyGroup","size":56},{"children":[],"name":"http://dbpedia.org/ontology/Non-ProfitOrganisation","size":4119},{"children":[],"name":"http://dbpedia.org/ontology/GovernmentAgency","size":4175},{"children":[],"name":"http://dbpedia.org/ontology/PublicTransitSystem","size":1524},{"children":[],"name":"http://dbpedia.org/ontology/Legislature","size":1449},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/IceHockeyLeague","size":274},{"children":[],"name":"http://dbpedia.org/ontology/SoccerLeague","size":1443},{"children":[],"name":"http://dbpedia.org/ontology/RugbyLeague","size":450},{"children":[],"name":"http://dbpedia.org/ontology/BaseballLeague","size":211},{"children":[],"name":"http://dbpedia.org/ontology/AmericanFootballLeague","size":86},{"children":[],"name":"http://dbpedia.org/ontology/BasketballLeague","size":407},{"children":[],"name":"http://dbpedia.org/ontology/SpeedwayLeague","size":16},{"children":[],"name":"http://dbpedia.org/ontology/PoloLeague","size":18},{"children":[],"name":"http://dbpedia.org/ontology/SoftballLeague","size":20},{"children":[],"name":"http://dbpedia.org/ontology/FieldHockeyLeague","size":24},{"children":[],"name":"http://dbpedia.org/ontology/MotorcycleRacingLeague","size":21},{"children":[],"name":"http://dbpedia.org/ontology/HandballLeague","size":26},{"children":[],"name":"http://dbpedia.org/ontology/LacrosseLeague","size":32},{"children":[],"name":"http://dbpedia.org/ontology/VolleyballLeague","size":82},{"children":[],"name":"http://dbpedia.org/ontology/CricketLeague","size":9},{"children":[],"name":"http://dbpedia.org/ontology/AutoRacingLeague","size":7},{"children":[],"name":"http://dbpedia.org/ontology/InlineHockeyLeague","size":24},{"children":[],"name":"http://dbpedia.org/ontology/CanadianFootballLeague","size":7},{"children":[],"name":"http://dbpedia.org/ontology/GolfLeague","size":14},{"children":[],"name":"http://dbpedia.org/ontology/TennisLeague","size":11},{"children":[],"name":"http://dbpedia.org/ontology/VideogamesLeague","size":7},{"children":[],"name":"http://dbpedia.org/ontology/BowlingLeague","size":1},{"children":[],"name":"http://dbpedia.org/ontology/AustralianFootballLeague","size":4},{"children":[],"name":"http://dbpedia.org/ontology/MixedMartialArtsLeague","size":1},{"children":[],"name":"http://dbpedia.org/ontology/CurlingLeague","size":3}],"name":"http://dbpedia.org/ontology/SportsLeague","size":281}],"name":"http://dbpedia.org/ontology/Organisation","size":10814}],"name":"http://dbpedia.org/ontology/Agent","size":1874},{"children":[],"name":"http://dbpedia.org/ontology/PersonFunction","size":126794},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/YearInSpaceflight","size":60},{"children":[],"name":"http://dbpedia.org/ontology/Year","size":2037}],"name":"http://dbpedia.org/ontology/TimePeriod","size":83905},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Fish","size":17420},{"children":[],"name":"http://dbpedia.org/ontology/Insect","size":93578},{"children":[],"name":"http://dbpedia.org/ontology/Bird","size":12740},{"children":[],"name":"http://dbpedia.org/ontology/Reptile","size":5273},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/RaceHorse","size":3349}],"name":"http://dbpedia.org/ontology/Mammal","size":8845},{"children":[],"name":"http://dbpedia.org/ontology/Amphibian","size":5893},{"children":[],"name":"http://dbpedia.org/ontology/Arachnid","size":3967},{"children":[],"name":"http://dbpedia.org/ontology/Mollusca","size":27691},{"children":[],"name":"http://dbpedia.org/ontology/Crustacean","size":2545}],"name":"http://dbpedia.org/ontology/Animal","size":5415},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/GreenAlga","size":355},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Grape","size":370}],"name":"http://dbpedia.org/ontology/FloweringPlant","size":642},{"children":[],"name":"http://dbpedia.org/ontology/Conifer","size":722},{"children":[],"name":"http://dbpedia.org/ontology/Fern","size":884},{"children":[],"name":"http://dbpedia.org/ontology/Moss","size":412},{"children":[],"name":"http://dbpedia.org/ontology/CultivatedVariety","size":1541},{"children":[],"name":"http://dbpedia.org/ontology/Gnetophytes","size":30},{"children":[],"name":"http://dbpedia.org/ontology/Cycad","size":183},{"children":[],"name":"http://dbpedia.org/ontology/ClubMoss","size":96},{"children":[],"name":"http://dbpedia.org/ontology/Ginkgo","size":7}],"name":"http://dbpedia.org/ontology/Plant","size":45176},{"children":[],"name":"http://dbpedia.org/ontology/Fungus","size":9122}],"name":"http://dbpedia.org/ontology/Eukaryote","size":952},{"children":[],"name":"http://dbpedia.org/ontology/Archaea","size":226},{"children":[],"name":"http://dbpedia.org/ontology/Bacteria","size":538}],"name":"http://dbpedia.org/ontology/Species","size":4194},{"children":[],"name":"http://dbpedia.org/ontology/CareerStation","size":643162},{"children":[],"name":"http://dbpedia.org/ontology/Drug","size":5590},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/MusicGenre","size":1142}],"name":"http://dbpedia.org/ontology/Genre","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Fashion","size":483}],"name":"http://dbpedia.org/ontology/TopicalConcept","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Disease","size":6078},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Weapon","size":5409},{"children":[],"name":"http://dbpedia.org/ontology/AutomobileEngine","size":22907},{"children":[],"name":"http://dbpedia.org/ontology/InformationAppliance","size":1035}],"name":"http://dbpedia.org/ontology/Device","size":985},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Ship","size":27131},{"children":[],"name":"http://dbpedia.org/ontology/Train","size":1214},{"children":[],"name":"http://dbpedia.org/ontology/Automobile","size":8485},{"children":[],"name":"http://dbpedia.org/ontology/Aircraft","size":9678},{"children":[],"name":"http://dbpedia.org/ontology/Motorcycle","size":926},{"children":[],"name":"http://dbpedia.org/ontology/Locomotive","size":3093},{"children":[],"name":"http://dbpedia.org/ontology/Spacecraft","size":159},{"children":[],"name":"http://dbpedia.org/ontology/Rocket","size":249},{"children":[],"name":"http://dbpedia.org/ontology/SpaceShuttle","size":18},{"children":[],"name":"http://dbpedia.org/ontology/SpaceStation","size":31}],"name":"http://dbpedia.org/ontology/MeanOfTransportation","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Nerve","size":336},{"children":[],"name":"http://dbpedia.org/ontology/Brain","size":550},{"children":[],"name":"http://dbpedia.org/ontology/Bone","size":415},{"children":[],"name":"http://dbpedia.org/ontology/Ligament","size":194},{"children":[],"name":"http://dbpedia.org/ontology/Vein","size":234},{"children":[],"name":"http://dbpedia.org/ontology/Muscle","size":280},{"children":[],"name":"http://dbpedia.org/ontology/Artery","size":368},{"children":[],"name":"http://dbpedia.org/ontology/Lymph","size":81},{"children":[],"name":"http://dbpedia.org/ontology/Embryology","size":188}],"name":"http://dbpedia.org/ontology/AnatomicalStructure","size":1780},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Protein","size":13359},{"children":[],"name":"http://dbpedia.org/ontology/Enzyme","size":4992},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/HumanGene","size":15},{"children":[],"name":"http://dbpedia.org/ontology/MouseGene","size":10}],"name":"http://dbpedia.org/ontology/Gene","size":0}],"name":"http://dbpedia.org/ontology/Biomolecule","size":0},{"children":[{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/OlympicEvent","size":3614}],"name":"http://dbpedia.org/ontology/Olympics","size":58},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/HorseRace","size":1975},{"children":[],"name":"http://dbpedia.org/ontology/CyclingRace","size":590}],"name":"http://dbpedia.org/ontology/Race","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SoccerTournament","size":4911},{"children":[],"name":"http://dbpedia.org/ontology/GolfTournament","size":1716},{"children":[],"name":"http://dbpedia.org/ontology/TennisTournament","size":4354},{"children":[],"name":"http://dbpedia.org/ontology/WomensTennisAssociationTournament","size":61}],"name":"http://dbpedia.org/ontology/Tournament","size":0},{"children":[],"name":"http://dbpedia.org/ontology/GrandPrix","size":1234},{"children":[],"name":"http://dbpedia.org/ontology/MixedMartialArtsEvent","size":805},{"children":[],"name":"http://dbpedia.org/ontology/FootballMatch","size":2403},{"children":[],"name":"http://dbpedia.org/ontology/WrestlingEvent","size":963},{"children":[],"name":"http://dbpedia.org/ontology/NationalFootballLeagueEvent","size":9}],"name":"http://dbpedia.org/ontology/SportsEvent","size":974},{"children":[],"name":"http://dbpedia.org/ontology/MusicFestival","size":462},{"children":[],"name":"http://dbpedia.org/ontology/MilitaryConflict","size":12289},{"children":[],"name":"http://dbpedia.org/ontology/Election","size":6934},{"children":[],"name":"http://dbpedia.org/ontology/FilmFestival","size":734},{"children":[],"name":"http://dbpedia.org/ontology/Convention","size":908},{"children":[],"name":"http://dbpedia.org/ontology/SpaceMission","size":1}],"name":"http://dbpedia.org/ontology/SocietalEvent","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SolarEclipse","size":382}],"name":"http://dbpedia.org/ontology/NaturalEvent","size":0}],"name":"http://dbpedia.org/ontology/Event","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ChemicalCompound","size":9427},{"children":[],"name":"http://dbpedia.org/ontology/Mineral","size":1198}],"name":"http://dbpedia.org/ontology/ChemicalSubstance","size":0},{"children":[{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/SupremeCourtOfTheUnitedStatesCase","size":2564}],"name":"http://dbpedia.org/ontology/LegalCase","size":0}],"name":"http://dbpedia.org/ontology/Case","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ResearchProject","size":25}],"name":"http://dbpedia.org/ontology/Project","size":0}],"name":"http://dbpedia.org/ontology/UnitOfWork","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/MotorsportSeason","size":2390},{"children":[{"children":[{"children":[],"name":"http://dbpedia.org/ontology/NationalFootballLeagueSeason","size":3108}],"name":"http://dbpedia.org/ontology/FootballLeagueSeason","size":6195},{"children":[],"name":"http://dbpedia.org/ontology/SoccerClubSeason","size":7100},{"children":[],"name":"http://dbpedia.org/ontology/NCAATeamSeason","size":7925},{"children":[],"name":"http://dbpedia.org/ontology/BaseballSeason","size":293}],"name":"http://dbpedia.org/ontology/SportsTeamSeason","size":0}],"name":"http://dbpedia.org/ontology/SportsSeason","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Sales","size":6626},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Cheese","size":322},{"children":[],"name":"http://dbpedia.org/ontology/Beverage","size":806}],"name":"http://dbpedia.org/ontology/Food","size":5209},{"children":[],"name":"http://dbpedia.org/ontology/Holiday","size":938},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/OlympicResult","size":765}],"name":"http://dbpedia.org/ontology/SportCompetitionResult","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/GivenName","size":3345},{"children":[],"name":"http://dbpedia.org/ontology/Surname","size":1084}],"name":"http://dbpedia.org/ontology/Name","size":0},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Star","size":3249},{"children":[],"name":"http://dbpedia.org/ontology/Planet","size":11894},{"children":[],"name":"http://dbpedia.org/ontology/Galaxy","size":635},{"children":[],"name":"http://dbpedia.org/ontology/Asteroid","size":17086}],"name":"http://dbpedia.org/ontology/CelestialBody","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Language","size":7928},{"children":[],"name":"http://dbpedia.org/ontology/Award","size":3801},{"children":[],"name":"http://dbpedia.org/ontology/EthnicGroup","size":4595},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/Game","size":1354},{"children":[],"name":"http://dbpedia.org/ontology/Sport","size":207}],"name":"http://dbpedia.org/ontology/Activity","size":0},{"children":[],"name":"http://dbpedia.org/ontology/SnookerWorldRanking","size":34},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/ArtificialSatellite","size":1909}],"name":"http://dbpedia.org/ontology/Satellite","size":0},{"children":[],"name":"http://dbpedia.org/ontology/Currency","size":355},{"children":[],"name":"http://dbpedia.org/ontology/Colour","size":1019},{"children":[{"children":[],"name":"http://dbpedia.org/ontology/HumanGeneLocation","size":9},{"children":[],"name":"http://dbpedia.org/ontology/MouseGeneLocation","size":8}],"name":"http://dbpedia.org/ontology/GeneLocation","size":0}],"name":"owl:Thing","size":0}
/* python-like zip
*/
(function() {
window.zip = function() {
var args, shortest;
args = [].slice.call(arguments);
shortest = args.length === 0 ? [] : args.reduce((function(a, b) {
if (a.length < b.length) {
return a;
} else {
return b;
}
}));
return shortest.map((function(_, i) {
return args.map(function(array) {
return array[i];
});
}));
};
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment